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
⌀ |
---|---|---|---|---|---|---|---|---|
08 Jul, 2022
|
How to Deploy a Basic Static HTML Website to Heroku?
08 Jul, 2022
Heroku is a simple and one-stop solution to host any website or server. This article revolves around how you can host your own Static HTML webpage on Heroku. To demonstrate this we are going to build a simple webpage and host it.
Prerequisites
Git
Heroku Account
Heroku CLI
Let’s create a directory named “portfolio” for our project. We will connect this directory to our Heroku app so that whenever we update the local HTML file, changes reflect on the hosted website.
Step 1:
Create a directory with the name “portfolio” and change the working directory to it.
$ mkdir portfolio
$ cd portfolio
Step 2:
Create your own static HTML website and name it “home.html” (We are going to create a simple file with just “My portfolio” as text)
$ echo "<h1> My Portfolio </h1>" > home.html
Step 3:
Heroku by default does not allow you to deploy an application that does not have a backend. So we need to create a dummy backend or dynamic PHP file. We need to use a trick and tell Heroku that our website is a PHP application. To do this simply copy and paste the following commands in your terminal. composer.json has been included to provide support for PHP application on Heroku. If an app has no composer dependencies, we must include empty composer.json to recognize the PHP application.
$ echo '<?php include_once("home.html"); ?>' > index.php
$ echo '{}' > composer.json
Step 4:
Initialize the repository as a git repository.
$ git init
Step 5:
Create your Heroku app using the new button on the top right side of Heroku dashboard. We are going to name this app as “your-app-name-123″
Step 6:
Login to your Heroku account using the Heroku CLI
$ heroku login
Step 7:
Now that we have created our app, we just need to connect the local git repository to the Heroku app. To do this we add the remote of the Heroku app to the git repository. (Don’t forget to replace “your-app-name-123” with your own app name)
$ heroku git:remote -a your-app-name-123
Step 8:
Push the changes to your Heroku app.
$ git push heroku master
Step 9:
Your app is now live on Heroku. To view your app, click on the link that appears at the end of the previous step, which looks like https://your-app-name-123.herokuapp.com/ . To commit and save all the changes to your home.html file, execute the following commands from your “portfolio” directory.
$ git add .
$ git commit -m "your commit message"
$ git push heroku master
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?
|
https://www.geeksforgeeks.org/how-to-deploy-a-basic-static-html-website-to-heroku?ref=asr8
|
CSS
|
How to Deploy a Basic Static HTML Website to Heroku?
|
Node.js http.ServerResponse.getHeader() Method, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, How to Access Request Parameters in Postman?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props
|
GeeksforGeeks
|
[-0.0252602752, 0.00612573931, -0.016465595, 0.00457140151, 0.0386477336, 0.000464163692, 0.00899622496, 0.0308790989, -0.0292423125, 0.0224508643, 0.0285827108, -0.00725561101, -0.0189940669, -0.0965949073, 0.0142302811, -0.00922830682, -0.0565791093, 0.0062967469, -0.035032142, 0.000242578957, 0.0401868038, -0.0383301489, -0.0275078062, 0.021095017, 0.0145356525, 0.00616238359, -0.0145845115, 0.0292667411, 0.00550278276, 0.00139020081, 0.0403578095, 0.0066631916, -0.0245151706, -0.0174549967, -0.0184077546, 0.0282895546, 0.0252602752, -0.0177847985, -0.0696734115, -0.00503251143, 0.0144135039, 0.0209606551, 0.00826944225, 0.00674258824, 0.0238311402, -0.0112987217, 0.00410418399, -0.0243930221, 0.00340183126, -0.0251136981, -0.00776863424, 0.0239532888, 0.0456834771, 0.0223165, -0.0145234372, -0.0122331558, 0.0272390787, 0.00734722242, -0.0396737792, -0.00425381586, 0.0170641225, -0.0137050431, 0.0125446338, -0.0266771968, -0.000142856297, 0.0387698822, -0.00870306883, 0.000797781337, -0.019714741, -0.00833662413, 0.0415792949, -0.0184932575, 0.00233914074, 0.0169297587, 0.0042874068, -0.0570677035, -0.00715178531, -0.0015405959, -0.00530123804, 0.0264084712, -0.0295354687, -0.0176382195, -0.0566768274, -0.0113353655, 0.0100833457, 0.0350077152, 0.00941763725, -0.0440466888, 0.0172229148, 0.00765870092, -0.026823774, -0.0112559693, 0.0111887874, -0.0108956313, 0.0247716829, 0.0291445926, -0.0027758209, -0.000881758286, -0.0283872727, -0.00570127368, -0.007280041, 0.00356673147, -0.00792131945, -0.0339572392, -0.0546247363, 0.00178183883, 0.0212538112, 0.015757136, 0.00210400508, -0.0360826179, 0.0106269056, 0.00975354481, -0.0178336576, 0.0340793878, -0.0417503, 0.0179680213, 0.000566081202, -0.0635171384, 0.00465079816, -0.00698077725, 0.0145234372, -0.015708277, -0.0352520086, 0.0217424035, -0.00569822, 0.0184443984, -0.0132653099, -0.0523772053, 0.049885381, 0.0143646449, -0.014083703, -0.0107673761, -0.0049164705, 0.0125934938, -0.00445841439, -0.0228417385, 0.00980240386, -0.0268482044, -0.0137783326, 0.0108712018, -0.0328090452, -0.0023177648, -0.010144419, 0.0202644095, 0.0115735549, 0.0263351817, 0.00598526839, 0.00826333463, -0.0187986288, -0.0429717861, -0.0374262519, -0.0176870786, -0.00798850134, 0.0447307229, 0.0313432626, -0.0257000104, -0.0502762571, -0.0242220145, -0.0209850837, -0.0167098921, -0.00797017943, -0.0181512423, 0.025919877, 0.00062982738, -0.0183344651, 0.0424099043, 0.0292911716, -0.00358505361, -0.0215713959, 0.0181268137, -0.00687695155, 0.0309035294, -0.0153540457, -0.00240784907, -0.0866276, 0.0202033352, 0.0128744347, 0.011622414, 0.054331582, -0.0146333706, -0.0295843277, -0.0191528592, -0.00371330953, -0.00612573931, -0.00287353969, 0.0593640916, -0.00488287956, 0.0258710179, 0.00236357027, -0.0141936364, -0.0194704458, -0.0132042356, 0.0343236811, -0.0074144043, 0.0245151706, -0.0449994467, 0.00213148841, -0.00668151397, 0.0188719183, -0.0185176879, -0.027165791, -0.00244602049, -0.0258954484, 0.0207530018, 0.0131553756, -0.0109689208, 0.0389897488, -0.00524627091, 0.0813996494, -0.0190673564, -0.0176870786, 0.0210828036, -0.0163190179, -0.00746326335, -0.0177847985, 0.01283779, 0.0109017389, 0.0271169301, -0.0319784358, 0.00107490539, -0.0249304753, 0.0282162651, -0.00860535074, 0.0242830887, -0.0542827211, -0.0306103732, -0.029022444, -0.00684641441, 0.00985737052, 0.0365712121, 0.0173206348, -0.0129965832, 0.0200934019, 0.0496410839, -0.0074144043, -0.00734111527, -0.00404311, -0.0082327975, -0.0147799486, 0.0256267209, -0.0294377487, -0.00608909456, 0.0245151706, -0.000786329911, -0.0202277638, -0.00116193609, -0.016135795, -0.0179558061, -0.0120560406, 0.00444619963, 0.032173872, 0.007164, 0.0317585692, -0.00809843466, -0.014987601, 0.0252114162, -0.0179069471, -0.0325158872, 0.0309035294, 0.0401868038, 0.0115124807, 0.0081472937, 0.00495006144, -0.00198949105, 0.0353253, 0.000382667844, 0.0101993866, -0.0129232937, -0.0216691159, -0.0100161638, 0.0139004812, -0.0252847057, 0.0186886955, 0.0419701673, -0.00629063928, 0.014987601, 0.0275322348, 0.00878857262, 0.00326746795, -0.0429717861, 0.0491524898, -0.00199254486, 0.0461720712, 0.00662654731, -0.00519435806, -0.0387943126, -0.0211316627, -0.0215469673, 0.0163923074, -0.0421167463, -0.0126423528, -0.0161113665, 0.0442177, -0.00954589248, 0.0357894637, 0.00224447576, -0.0133019537, 0.00917334, -0.0138271917, -0.00111231324, -0.0214858931, -0.00172839896, 0.00347512029, 0.0148776677, -0.0125812786, 0.00796407182, 0.0369620882, 0.00417136587, 0.00228570076, -0.00556385657, 0.0400157943, -0.00481264433, -0.0170641225, -0.0231471099, -0.00587228127, 0.0466118045, 0.0341771059, 0.0448773, -0.0221210644, -0.0144501487, 0.000684794097, -0.0412617065, -0.0659601, 0.0229883175, 0.0358627513, -0.0353497304, -0.0232081842, 0.0190429259, -0.0114514064, 0.000233799554, -0.0286315698, -0.0630285442, 0.0124835605, 0.0235257689, 0.0293644611, -0.00148104865, 0.0194093715, 0.00138943736, 0.054185003, 0.0305859428, -0.00637003593, 0.0292667411, 0.031074537, 0.00382935046, 0.0342015326, -0.0446574315, -0.0262130331, 0.0136439689, -0.00552415848, -0.0212171655, 0.000819920737, 0.0385500155, 0.0328090452, 0.0250892676, 0.0298286248, -0.0244174525, 0.0212293807, -0.0206919275, 0.000678305, 0.0121415444, 0.0195925925, -0.0115918769, -0.00704795914, 0.000874887453, 0.0191284288, -0.0558950789, -0.0413594283, -0.0639080107, 0.0218279082, -0.0177725833, -0.0325647481, 0.00030327143, -0.0117628844, -0.022915028, -0.0501296781, -0.0127400719, -0.0488593355, 0.0113414731, -0.0269459225, 0.0112865064, 0.0501296781, 0.0286804289, 0.00161388493, -0.00124820333, 0.0296820458, -0.0115613397, 0.0269214939, -0.0318807177, 0.0272146501, -0.0050935857, -0.0159892179, 0.0110422093, -0.0288270079, -0.00191467523, 0.00317280297, 0.00375300762, 0.0332487784, -0.0130576575, 0.0193605106, -0.0247472525, -6.42233063e-05, 0.00341404602, 0.0254312847, 0.0149509562, -0.0153784761, -0.0151586086, 0.0287537184, -0.018615406, 0.00870917644, -0.0285094213, -0.0160136465, -0.0172962043, -0.0048737186, 0.00469355, 0.0384522974, 0.0175527167, -0.0153296161, 0.0637125745, -0.000125297476, 0.0167709664, 0.0162579436, 0.000231318409, -0.00729836337, -0.0142180668, -0.010455898, 0.00142302818, 0.0172229148, 0.00152761769, -0.024490742, -0.00462942198, -0.0446085744, -0.0315387025, 0.0319540054, -0.0301217791, -0.0270436425, -0.0114819435, 0.00605855742, 0.00557301799, -0.010932276, 0.0265306197, -0.016086936, -0.0201789048, 0.0141447773, -0.0222676415, -0.0528169423, 0.0217424035, -0.0532078147, 0.020386558, 0.0118361739, -0.0379637033, -0.0159403589, -0.00603718171, -0.0277276728, -0.00601885933, 0.00417441921, -0.015708277, -0.0413349979, 0.0353985876, 0.0205819942, -0.0167587511, 0.0435336679, -0.0121293301, 0.0249060467, 0.0214858931, -0.000807705859, 0.0152318981, 0.0224997234, -0.0305370837, -0.00101841171, -0.000916112505, 0.0164289512, -0.0116834883, 0.0417747311, 0.00232081837, -0.000578296, 0.00161083124, -0.0152563276, -0.0309768189, 0.00329189771, -0.0388920307, 0.00174519431, 0.0378904156, 0.024441883, -0.0138760507, 0.0194093715, 0.00903287, 0.0189207774, 0.0120438263, -0.0256267209, 0.0394050553, 0.00626010215, 0.0358138941, 0.0205819942, -0.0408464037, 0.0452681743, -0.0129721537, 0.00371330953, -0.0155250533, 0.0249304753, 0.0022185191, -0.00712124817, 0.0196536668, -0.0145967267, 0.013509606, -0.025724439, 0.0332976356, 0.0236723479, 0.0574097186, -0.00140775961, 0.0229028128, -0.00418663444, 0.0421900339, -0.00526459329, 0.0304882247, 0.0195315182, 0.0326624662, -0.0169664044, 0.0117140254, 0.00216813292, 0.0031269975, 0.0125446338, -0.0180779546, -0.0050935857, -0.0249915496, -0.00501724286, -0.0192017183, 0.0131798061, -0.0497143716, -0.000787856756, -0.00641889498, 0.0321983024, -0.00948481821, -0.0208995808, 0.0276055243, -0.0129477242, -0.00534093613, 0.00283231447, 0.0224875081, -0.0148654524, -0.011982752, -0.0511068627, -0.00502029667, -0.0192139335, 0.0061654374, -0.057312, 0.00236815098, -0.0141203478, 0.00176809717, 0.0496899448, 0.031123396, -0.00623872643, 0.00765870092, 0.0389653184, 0.00695024058, 0.00995509, 0.0139004812, -0.0268970635, -0.0465385169, 0.0115063731, -0.0127889309, 0.00623261882, -0.00495922239, 0.0322715901, -0.0342992544, 0.00872749835, -0.00751823, 0.0137783326, 0.00271627354, -0.00199101795, -0.00401868, -0.0155250533, 0.0100833457, -0.0126912119, 0.0180168804, 0.00583869033, 0.0208018627, 0.0160014313, -0.000167953971, -0.0292178821, 0.008043468, 0.0494700782, 0.0145234372, -0.0049622762, 0.00493479287, 0.0040644859, 0.00383240404, -0.00258801784, -0.0110849617, -0.00222309981, -0.00713957055, 0.00589671079, 0.0120010739, -0.011982752, 0.00106040027, -0.00288117398, 0.00655325828, -0.00717621483, 0.00417747302, -0.0104314676, -0.0226463024, -0.004522542, 0.00252847048, 0.00404005637, 0.00908172876, -0.00577150891, -0.00980240386, 0.0401868038, -0.0264329, -0.0258954484, 0.0169664044, -0.031074537, 0.00556385657, 0.0512045845, -0.00102680945, -0.00431489, -0.0255534314, -0.00351481838, 0.0392340459, -0.0391363278, -0.01766265, 0.0240143631, 0.00465690531, 0.0240876526, -0.0187253393, -0.0294621792, 0.0342992544, -0.00280177756, 0.00936877728, 0.0253335647, -0.000146196297, -0.0147188744, -0.000853511505, 0.00619902834, -0.0170763377, 0.000945122738, 0.0233059023, -0.00845266506, -0.0136561841, -0.0163068026, -0.00816561654, 0.00709681818, 0.0123491967, 0.0102787828, 0.113939971, -0.0102421381, 0.00972911529, 0.00626620976, 0.0234769098, 0.00536536565, -0.0362780578, 0.00978408195, -0.0163434483, 0.0315875597, 0.00511801522, -0.0206186399, 0.00408891542, -0.0407486856, -0.0155739132, 0.011146036, 0.00584174413, 0.0191650745, -0.0325891748, 0.00707238866, -0.00533177471, 0.0254557133, -0.0126301376, -0.00532566756, 0.0132897394, 0.00728614815, 0.0451460257, 0.00985126384, -0.0048309667, -0.0302683581, 0.0163312331, -0.00627842452, -0.00698688487, 0.0179924499, 0.0430695042, -0.00958864484, 0.0222432129, -0.0329800509, -0.0070601739, -0.00574097177, 0.0131553756, -0.0360826179, -0.0025666419, -0.00800682325, -0.0296576172, 0.00837937556, -0.000161464835, -0.00606161123, 0.00257885666, 0.0152074676, 0.0128500052, -0.0279963985, -0.0115857702, 0.0301950686, -0.0322715901, 0.00927105919, -0.0238433555, -0.0220477749, -0.00698688487, -0.028973585, 0.0109628132, -0.0202644095, 0.0596083887, -0.00359116122, -0.00364612788, -0.0278253909, -0.0289491564, 0.0303416476, 0.00922830682, 0.00210705888, 0.0289980154, 0.00976575911, 0.0298774838, 0.0031575344, -0.00390569307, -0.00685252156, 0.0115246959, -0.0417747311, -0.00600359077, -0.0162579436, 0.00637003593, -0.0169419739, -0.0216935445, 0.00499586714, -0.0269459225, -0.0544293, -0.0150242457, 0.0120255034, -0.0243685935, 0.0263351817, -0.00193147059, -0.0186276212, -0.0297064763, -0.00985737052, 0.0132408794, -0.011292614, 0.0388676, -0.0150975343, -0.0205453504, -0.0138149774, -0.0106391199, -0.0363024846, -0.0131798061, -0.00618376, 0.0143035706, 0.0241365116, -0.00740218908, 0.00688916631, 0.00109322765, -0.000379614125, -0.0631751195, -0.0507648475, -0.022194352, -0.0114208693, 0.00944817346, -0.000956574164, 0.0297309048, 0.0208385065, 0.0361559093, -0.0283628441, 0.0173450634, 0.00250862143, 0.00555774942, -0.0309279598, 0.0299752019, 0.0273612272, 0.0126545681, 0.00345069054, 0.0358383209, 0.0196903124, 0.0110361027, 0.0092160916, -0.0166854635, 0.00694413297, -0.0355451666, -0.0246617496, 0.00746937096, 0.0378415547, -0.032173872, -0.00224294886, 0.0085748136, 0.012935509, 0.00183527882, 0.0151586086, 0.0264329, 0.0210339446, 0.0183955394, 0.00266588735, 0.0321005844, 0.00276818662, 0.0272390787, 0.0220355596, -0.0297064763, 0.00540811755, -0.0212538112, 0.00959475152, -0.0305615142, 0.0142547106, -0.0150120305, 0.00501113571, 0.0201789048, 0.0231593251, 0.000971842732, -0.00266588735, -0.0443642773, 0.0105475085, 0.0158792846, 0.0161602255, -0.0255778618, -0.0296331868, 0.0246251039, 0.00854427647, -0.019238364, -0.0121537596, -0.00309798727, -0.00512717664, 0.00315142702, -0.0172962043, 0.00294530182, 0.046782814, 0.0266771968, -0.0146211563, 0.0159647875, -0.00161846553, -0.00458667, 0.0195193049, -0.0123858415, 0.00743883383, 0.0302683581, 9.78140961e-05, 0.0260908846, -0.0085870279, 0.0276299547, -0.01194, 0.0195559487, 0.00411945255, 0.00153754221, 0.00265061902, -0.0253579952, -0.0136928288, -0.0200323276, -0.0412128493, 0.0387454517, -0.00641889498, -0.00470576482, -0.0155739132, 0.00880078785, 0.0364246331, -0.0174916424, -0.0229516719, 0.014987601, 0.00369804096, 0.00127263297, -0.0192139335, -0.00758541189, 0.00420190301, -0.00427519158, 0.00895958, 0.0145845115, -0.0412372798, 0.00528596947, 0.0224020053, -0.0354963057, 0.00116728, 0.0252114162, 0.016661033, -0.0215225369, 0.0262130331, -0.0203621276, 0.0295354687, 0.0263351817, -0.00975965243, -0.00815950893, -0.0349588543, 0.00170091563, 0.00646775449, -0.0150486752, 0.0360581875, 0.0228295252, 0.0110238874, -0.000395455252, 0.0159037132, -0.00844655745, -0.0226829462, 0.011048317, 0.00484318146, -0.00947260391, -0.0242464449, -0.00222157291, -0.00350565719, -0.0113536883, 0.00994287431, 0.00575013319, -0.000943595893, -0.00422938634, -0.00272085425, 0.0086603174, 0.0141569925, 0.0106513351, -0.0296087563, -0.0310256779, 0.0204598457, 0.00646775449, -0.00153754221, 0.0235013403, -0.00340488483, 0.0116529511, -0.00687084394, 0.0100833457, -0.0187742, -0.014034844, 0.0028200997, -0.00548140658, -0.0165388845, -0.0358383209, 0.0267749149, -0.00927716587, -0.00189787976, -0.00544170849, -0.02019112, 0.03512986, -0.00108559337, 0.0339083783, -0.0169419739, 0.0103459638, 0.0172473453, -0.000544323528, 0.0164411664, 0.0108956313, -0.0236967783, 0.00411639875, -0.00607993361, 0.0178825166, -0.0358627513, 0.0158304237, -0.0491524898, -0.0142302811, 0.0357161723, 0.0201666914, -0.00828776509, -0.0113903321, -0.0224752948, -0.0274833757, 0.00277276733, 0.0149143124, -0.0117384549, -0.0353008695, 0.00766480807, 0.0178458728, 0.0206797142, -0.011029995, -0.035423018, 0.00767702283, 0.00744494097, -0.0174427833, -0.0210705884, -0.0318562873, 0.0322227329, 0.0137172583, -0.0158059951, 0.0242830887, 0.0307813808, 0.00322166248, -0.000730218, 0.000387439271, 0.020716358, 0.00653493591, 0.0014772315, -0.0161113665, 0.0197758153, -0.0254312847, -0.00334075699, -0.0286804289, -0.0158670694, -0.0302927885, -0.0258221589, -0.00786024518, -0.0172717758, 0.00106650766, -0.0447062925, 0.00657158066, 0.0343725421, -0.040675398, 0.0171618406, -0.00659601, -0.0021864553, -0.0113231512, -0.00936267, 0.0369132273, 0.00469355, -0.0286071412, 0.00980240386, 0.00414082874, 0.0214981083, -0.0303660762, -0.0322960205, -0.0160502922, -0.0193482973, -0.0512045845, -0.0097169, -0.00189787976, 0.0382568575, 0.00612879265, 0.00304607418, 0.015708277, -0.0129721537, 0.0207774322, -0.0174672119, -0.0239532888, 0.0145722963, -0.0269214939, -0.00431489, 0.0268970635, -0.0211927369, 0.0159403589, 0.00984515622, 0.0222065672, 0.0175893605, -0.0257733, 0.0257488694, -0.01503646, -0.000864962931, 0.00846487936, -0.0431183614, -0.0137050431, -0.018041309, -0.00523711, -0.0247106086, -0.00707849627, 0.00840380602, -0.0175527167, 0.029120164, 0.0207774322, -0.0159770027, -0.0381102823, 0.0073227929, -0.0139737697, 0.00688916631, 0.0164167359, -0.0153296161, 0.0189207774, -0.0159037132, -0.0075609819, 0.00641278783, -0.0093871, 0.00105200254, -0.00240326859, -0.0110361027, -0.0104803275, -0.00844655745, 0.00249335286, -0.00585090555, -0.0259931665, -0.00743883383, -0.00899011735, 0.0192017183, 0.040528819, 0.0059455703, 0.00228722766, -0.0287781488, 0.035178721, -0.0262130331, 0.0053134528, -0.00698077725, -0.00235440931, -0.0055943937, 0.0123430891, 0.0128011461, -0.0158304237, 0.0218279082, -0.0152441124, 0.0233181175, -0.00776252663, 0.0173817091, -0.0112681845, -0.0144867925, -0.00481264433, 0.001026046, -0.0229883175, 0.00568905892, -0.00317280297, -0.00595167791, -0.023770066, -0.0121171148, -0.00698688487, -0.0181268137, -0.0347145572, -0.0135218212, -0.00244602049, -0.023391407, 0.0164411664, 0.0192505773, 0.00499281334, -0.0120438263, 0.0333953537, -0.022292072, -0.0192261487, -0.0141081326, -0.00145432865, -0.0125446338, 0.00771366758, 0.00968025532, 0.0276788138, -0.0310989674, -0.000928327383, -0.0242220145, -0.00837326888, 0.0247228239, -0.0256511513, -0.000419503194, 0.0151952533, 0.0156838465, 0.0103948237, -0.0400646552, -0.0172595605, -0.0210705884, -0.0218401235, 0.00941153, 0.0128744347, -0.0313432626, 0.00174519431, -0.00244449358, -0.0259931665, -0.00176198978, 0.0146822305, 0.000108406646, 0.0219989158, -0.0185054727, 0.00394233782, 0.01250799, 0.00575013319, 0.00518825045, -0.000887102273, 0.0400890857, 0.0144257182, -0.0298530534, 0.0174549967, -0.0154884094, -0.0295843277, 0.00889239926, -0.0255778618, -0.00623567263, 0.0118972482, -0.00646775449, 0.0219622701, -0.0225119386, -0.0142302811, 0.00783581566, 0.000619902799, 0.0184077546, 0.0128866499, -0.00462026102, 0.0109994579, 0.00315448083, 0.0096436115, -0.0053562047, 0.00194063166, -0.0125812786, 0.0149020972, -0.0104375752, -0.0303172171, 0.00446452154, -0.00626010215, 0.0018413862, 0.000151922, 0.000407288375, -0.0181634575, -0.0112254322, -0.0249304753, -0.00875192881, -0.0257733, -0.0255290028, 0.00110696931, -0.0082327975, 0.0299019124, 0.0315387025, 0.00899011735, 0.0224264339, -0.0225730129, -7.0807866e-05, 0.003759115, -0.00995509, -0.0130698718, -0.0165999588, -0.00111994753, 0.00213148841, -0.00663265493, -0.00916723255, 0.0483951718, -0.0151586086, 0.000241052112, 0.0195070896, 0.00105658313, -0.0293156, 0.0126057081, 0.0199590381, 0.0182856061, -0.0196536668, 0.0151463943, -0.00246892334, 0.00737775955, 0.0138516212, -0.00235746289, 0.0235502, -0.00528902281, 0.0143524297, 0.00251625571, -0.00771366758, 0.00686473679, -0.00681587728, 0.00251320214, 0.00759151904, -0.00378049095, 0.0290957335, 0.00331327366, 0.0278009623, -0.000469889375, -0.011933893, 0.0193971563, -0.00961307436, -0.00127950381, 0.00979019, -0.0188841335, -0.000552721205, -0.00942374393, 0.00260023284, 0.0212049522, 0.00981461909, -0.00425686967, -0.0137661174, 0.00248877238, 0.0118239587, -0.0174183529, 0.0189696364, -0.0111826807, -0.000125297476, 0.0135584651, 0.00159098208, 0.0188230593, -0.0325891748, 0.00260634022, 0.000620666251, 0.0146455858, 5.79250336e-05, 0.00263687712, -0.0256022923, -0.00762205618, -0.00208568294, 0.0105780456, -0.0250037648, 0.0339328088, -0.0273612272, 0.00271169306, -0.0185787622, 0.0233181175, 0.0195925925, 0.0274589472, 0.03293119, 0.0296087563, 0.0177603681, 0.0047424091, 0.0227806643, 0.0307080913, 0.0167465378, 0.0138638364, 0.010523079, -0.00801293086, -0.00623872643, -0.00987569336, -0.0234891251, 0.0186642651, -0.014083703, -0.00363391312, -0.0265306197, -0.0132042356, -0.00729225576, -0.0385988764, -0.0180168804, -0.0377438366, -0.00909394398, -0.00612879265, -0.0101138819, 0.00786024518, 0.00473630195, 0.0106513351, 0.0228295252, -0.00635782117, -0.00729225576, 0.0155372685, 0.012935509, -0.00944817346, 0.0126667824, -0.00780527852, 0.0156960618, -0.0223531462, 0.00922830682, -0.00542949373, 0.0121110072, -0.0189452078, -0.01250799, -0.0248571858, -0.0253091361, 0.00422327872, -0.00385988737, 0.00499281334, -0.00903897732, -0.00878857262, -0.00319112535, 0.0457079075, 0.0204720609, 0.00671205111, -0.00925884396, 0.0257000104, 0.00470881863, 0.053794127, 0.00975354481, 0.0066631916, 0.00248571858, -0.0067059435, -0.000845113827, -0.0297797639, 0.023770066, -0.00414388254, 0.0267749149, -0.0408952646, 0.00512717664, 0.0212538112, -0.0292178821, 0.00324914581, 0.0190184955, 0.0153784761, 0.009552, -0.00674258824, 0.00851373933, -0.00493784668, 0.00730447052, 0.0154395495, 0.0106085828, 0.012556849, -0.00010344437, 0.0157693513, -0.0210095141, 0.00920998491, -0.0142180668, 0.00944817346, -0.00262008188, 0.0110055655, 0.00771366758, -0.00257885666, 0.0107063018, -0.00855038315, 0.00646775449, -0.0336640812, -0.0365223512, 0.014083703, -0.000792437349, 0.0284117032, 0.0008955, -0.0234524813, 0.0444375649, -0.00465690531, -0.0058997646, -0.0202277638, 0.000282468041, -0.0238555707, 0.0252358466, 0.00788467564, 0.00585395889, -0.00766480807, 0.0269214939, 0.00826944225, 0.0330044813, -0.0309035294, -0.013985985, 0.0043301587, -0.0143157849, 0.00753655238, -0.00458972389, -0.0174183529, 0.034128245, -0.00207346794, 0.00847098697, -0.0457079075, -0.00526153948, 0.00653493591, 0.0267260559, 0.0142302811, 0.0168931149, -0.0255290028, -0.00849541649, 0.0076464857, 0.0328334719, -0.011817852, 0.0221699234, 0.00726782624, 0.0148532381, -0.0197758153, 0.0242464449, 0.0100589152, -0.00326746795, -0.0162335131, 0.00680366252, 0.00990012288, -0.00977797434, 0.0146700153, -0.0361314788, -0.0190795697, 0.0017116036, -0.00646164687, 0.0127034271, 0.00256053451, 0.0034659591, 0.00466606626, -0.0158182103, -0.00653493591, 0.0246251039, 0.042874068, -0.0236357041, -0.00715178531, -0.00751823, 0.0404555276, 0.0163434483, 0.015134179, 0.0144379335, -0.0224875081, -0.0113231512, -0.0184321832, 0.023916645, 0.00472714053, -0.0230249614, 0.00390263926, -0.00187497702, 0.002985, -0.000748158549, -0.00540811755, 0.0101505267, -0.00448284391, -0.00598526839, 0.00858092, -0.0180168804, 0.0271169301, 0.0248083267, -0.0190062821, -0.0155739132, -0.0238433555, -0.0175282862, -0.0123247672, -0.00332548842, 0.00292850635, 0.00822669081, -0.0146333706, 0.00687084394, -0.0255534314, -0.00163373398, 0.0138516212, 0.017137412, -0.0223531462, -0.00757930428, 0.0062967469, -0.00775641948, -0.00278498209, -0.0252602752, 0.0305859428, 0.0321250111, -0.0225852281, 0.00788467564, 0.0342503935, 0.00108024932, 0.00311325584, 0.00474546291, 0.0268726349, 0.0206064247, -0.00259565213, -0.00641278783, -0.0152074676, 0.0167221073, -0.0113536883, 0.000912295422, -0.0268970635, 0.0135706803, -0.00693191821, -0.0195803791, 0.00542949373, 0.00384461903, -0.00331938104, 0.0125934938, -0.00169633504, 0.00836105365, -0.0232692584, -0.00208415603, -0.0249549057, 0.00595473126, -0.00786024518, 0.000223493291, 0.0054447623, -0.000514168176, -0.00473019434, -0.0053134528, 0.0200934019, -0.0159647875, 0.014328, -0.0079396423, -0.00105047575, -0.0226463024, -0.00999173429, 0.0171496272, -0.0327113234, -0.00853816886, 0.00389958569, 0.00576540129, -0.00917944778, 0.00024276982, 0.0116651664, -0.00945428107, 0.0112559693, -0.0175893605, -0.000840533234, -0.00529207662, 0.0143157849, -0.031416554, 0.0300973505, -0.0149265267, 0.0179191604, -0.000193624204, 0.00245976215, -0.00137187855, 0.00778695662, -0.0134973917, -0.00760984141, 0.00713957055, 0.0183711108, -0.00246892334, 0.00545086944, 0.00608604075, 0.0108773094, 0.00936877728, -0.00256206142, 0.00394844497, -0.00212080055, 0.0225485824, 0.00726782624, 0.00628453214, 0.002273486, -0.0115613397, -0.00769534521, 0.011310936, -0.0272635091, 0.020765217, -0.00687084394, 0.00825112, 0.0215347521, -0.0202644095, 0.0250648391, 0.00423854729, -0.00834273174, -0.011408655, -0.00283078779, -0.0198735353, 0.00252999738, -0.00789078232, -0.0112254322, 0.0059455703, 0.0261397436, 0.0297309048, 0.0173572786, -0.0128255757, 0.00983904861, -0.00735943718, 0.0041988492, 0.00046836253, -0.0250892676, 0.0117873149, -0.0118422816, 0.00409807684, 0.00649218401, -0.0020536189, -0.0031575344, 0.02271959, 0.0152196828, 0.0456346199, 0.0135706803, -0.00320334, 0.0109689208, 0.00122988108, 0.0143035706, 0.00736554479, -0.0019650613, -0.0225974433, -0.00607993361, 0.00622040406, 0.000633262796, -0.00142150128, -0.0041530435, -0.0316608474, 0.00916112494, 0.00629063928, 0.000990164932, 0.0108467722, 0.0111093912, 0.0236479174, -0.0144012887, 0.0147433039, 0.0127645014, 0.0163434483, 0.0184566136, -0.024441883, 0.00238036574, -0.000545468647, 0.0109200617, -0.0235868432, -0.0112254322, -0.0296576172, 0.00776252663, 0.01508532, 0.0285094213, -2.45728097e-05, 0.0107368389, -0.0307080913, -0.0130943013, -0.00129324547, 0.00721285911, 0.016086936, 0.0390386097, 0.00942374393, -0.0078541385, 0.00618070597, -0.00320028653, 1.85846784e-05, 0.00315142702, 0.00650439877, 0.00767091569, -0.00762205618, 0.00925884396, 0.0154517647, 0.00588144222, 0.0137050431, -0.00203071604, -0.0209850837, -0.00729225576, -0.00128790154, 0.00539284898, -0.00605245028, -0.00632728403, 0.00966804102, 0.00243227882, -0.00345069054, -0.025919877, -4.76426212e-05, 0.029022444, 0.00433321204, -0.00476989243, -0.0042416011, -0.0366933607, -0.00647996925, -0.0116407368, 0.0152563276, 0.0122392634, 0.012984368, -0.00314837345, -0.0193971563, -0.00555164181, -0.0022307341, -0.016086936, 0.00642500259, -0.00146959722, 0.0478088595, -0.00108864706, -0.00640668, 0.0137294736, 0.0171007663, -0.0164900254, -0.0163678769, -1.17734771e-05, 0.00706628151, -0.0203621276, -0.0159159284, -0.00200170581, 0.00587228127, 0.000312050834, 0.0127767157, 0.0126423528, 0.00669372873, -0.0241242964, 0.0332732089, -0.00449811248, -0.00373773905, -0.0304637961, 0.00369193358, -0.0119277854, -0.0160502922, 0.00823890511, -0.0127767157, 0.00643110974, 0.00845266506, -0.0352275819, 0.011292614, 0.00782360137, 0.00190551404, 0.00485234288, -0.00864199456, -0.0135828955, -0.0163312331, -0.036473494, 0.028265126, 0.0213393141, -0.0176504347, 0.00293308706, -0.0102238161, 0.0127400719, 0.000116995201, 0.0049622762, 0.00568905892, -0.0184566136, 0.00361253717, -0.0155494837, 0.0041560973, 0.00339877745, 0.00245670835, -0.00536231184, 0.00468744244, 0.0058142608, 0.00281551923, -0.00241548335, -0.0126667824, 0.00166427111, 0.0110361027, -0.0100405933, -0.011292614, -0.0124163786, 0.0033315958, -0.0105169723, -0.0218523368, -0.0183711108, -0.00477294624, 0.0224508643, 0.00632728403, -0.0235135555, -0.0182123166, -0.00587228127, 0.0024811381, 0.0103093199, 0.00833051652, -0.0128133604, -0.00864810217, -0.000967262138, 0.0474179834, -0.0202155504, -0.0180290937, -0.0102299228, -0.0145356525, 0.00501418905, 0.00049164705, 0.0161113665, -0.0362047665, 0.0169419739, 0.00881300215, -0.011029995, 0.00444925297, 0.00383545784, -0.0108773094, -0.0164167359, 0.0093809925, -0.00968025532, 0.0134973917, -0.00689527346, 0.0110605322, -0.0162701588, -0.00398203591, -0.00643721735, 0.00571043463, -0.000804652169, 0.0108895246, -0.0165511, -0.00103520718, -0.00666929921, -0.00280330423, 0.00896568783, -0.005227949, 0.00247350382, -0.0110177798, 0.0127645014, -0.0224020053, -0.0214492474, -0.0374018215, -0.0254557133, -0.0051821433, -0.0179313757, 0.00626010215, -0.0175527167, -0.0420678891, -0.0224264339, 0.0213026702, 0.0274589472, -0.00585395889, 0.00448589772, 0.00212538103, -0.00340183126, 0.0220477749, 0.0129110795, 0.00844045, -0.0236601327, 0.0131187318, 0.0149387419, -0.00068937469, 0.0105658313, -0.00892293639, -0.0174672119, 0.0019238363, 0.00353619433, 0.0146455858, 0.0177359395, 0.0239777192, 0.0219378415, -0.00895958, -0.00236662407, -0.00552110467, -0.0148288086, 0.0100467009, 0.00570127368, 0.01026046, 0.00984515622, -0.0319540054, 0.0130698718, 0.0157327056, 0.00836716127, 0.0180290937, 0.00135661, 0.00983904861, -1.79643939e-05, 0.0114025474, -0.0147310896, 0.0052676471, 0.0338106602, 0.0100528086, 0.00697467, -0.0230005328, -0.0164289512, -0.00641278783, 0.00837937556, -0.00448589772, -0.0164900254, 0.00127415988, -0.00677923253, 0.00341099221, 0.0060341279, 0.0122087263, -0.00981461909, -0.0344946906, 0.0102726752, -0.0105352942, -0.0128500052, 0.0182733908, 0.0166732483, 0.00936267, 0.0135462508, -0.0164533816, -0.0150731048, 0.000388011831, -0.0215347521, -0.00141310354, -0.00611352408, 0.000389347813, -0.0144745782, -0.0117995292, -0.011817852, 0.00855038315, 0.0110849617, -0.00617154455, 0.0173084196, 0.0079579642, 0.0024368593, -0.0011543018, 0.00135355629, 0.0066204397, 0.0229516719, -0.017137412, -0.00917944778, 0.00369804096, 0.0253824238, -0.00527986186, 0.0118361739, 0.010620798, 0.00999784097, 0.00455613295, 0.014608941, 0.0193727259, 0.00782970805, -0.000646241067, -0.00834273174, 0.0141936364, 0.0210583732, 0.00545392325, 0.0262130331, -0.00944817346, -0.00897179544, -0.00596083887, -0.00223226077, -0.0243075192, -0.00756708952, -0.0247838981, -0.00571348844, 0.0219500568, -0.0101749562, -0.0216569, 0.00773809711, 0.00345374434, -0.00176351657, -0.00279719685, -0.022340931, -0.01766265, -0.00183833251, -0.00072792772, 0.00238952693, 0.00942374393, 0.000145242011, -0.0177603681, 0.0103826085, 0.0041102916, 0.00986958575, -0.0211805217, 0.0141081326, -0.00337129412, -0.01026046, -0.00815340132, -0.000874887453, 0.0100467009, -0.0299263429, -0.00197880296, -0.000233608691, 0.00126423524, 0.0170030482, -0.0215836111, 0.00010678437, 0.0125690643, -0.0175282862, -0.00431489, 0.0182978213, -0.0151463943, -0.00212385412, 0.0142180668, 0.0263596121, -0.00885575451, -0.00729225576, -0.0114391921, 0.00533788232, -0.0115857702, 0.0183344651, -0.0195315182, 0.0160747208, 0.00257274928, 0.0211194474, -0.0164167359, 0.0222187825, -0.013411887, -0.0166243892, 0.0115491254, 0.0255534314, -0.000907714828, -0.0101138819, -0.00111994753, -0.0060310741, -0.0180535242, 0.0031575344, 0.0074144043, -0.00477294624, 0.0188841335, 0.00879468, -0.007780849, -0.00405532494, 0.00679144775, 0.00775641948, -0.0142180668, -0.0067975549, -0.0245762449, -0.00421717158, -0.0167709664, 0.00661433255, -0.0271413606, 0.00432099728, -0.0149998162, 0.0347145572, 0.0161480103, -0.00915501826, 0.00592724793, 0.00400035782, -0.00528596947, -0.0118239587, -0.00449505867, 0.000947413035, 0.0206430685, 0.00434542727, 0.00414082874, 0.00331021985, 0.0118544959, 0.00352397957, 0.0134729613, 0.0132042356, 0.00627842452, -0.0109628132, 0.000862672634, 0.0152441124, -0.00570738129, 0.0162335131, 0.00877025072, -0.0200078972, 0.0163068026, -0.000856565195, 0.0142424963, 0.00539284898, -0.00865421, -0.00352703314, -0.00829997938, 0.00302164443, 0.000984821, 0.000310714822, 0.0102299228, -0.0306836627, -0.0106757646, -0.00297889253, 0.0118606035, -0.00521878758, 0.0240387935, -0.00993676763, 0.014034844, -0.00744494097, -0.00465079816, 0.0115430178, -0.0120499339, 0.00141997437, -0.0104009314, -0.0106085828, 0.0036278055, -0.00807400513, 0.00141463045, -0.00764037855, -0.0219500568, -0.0181756727, 0.0128133604, 0.00614711503, 0.00215744507, -0.00788467564, 0.00508137094, -0.0360581875, 0.0162335131, -0.000518367, 0.0149143124, -0.00189024548, -0.00498059858, 0.00925884396, -0.00855038315, -0.00180168799, -0.00116346288, -0.00600969838, 0.0267749149, -0.0079579642, 0.00242006383, -0.0131431613, 0.0248327572, 0.0317341387, -0.0131920204, -0.00152990792, -0.00347512029, 0.00189940666, -0.0130943013, -0.0109078465, -0.00161388493, -0.0044187163, -0.0169664044, -0.012935509, -0.0123247672, 0.0165266693, -0.00638225069, 0.0180290937, -0.0119949663, -0.00740829669, -0.00980240386, -0.0319784358, -0.0110910693, 0.00710903341, 0.000305370835, 0.00885575451, -0.0198002458, -0.00854427647, -0.0128255757, -0.00495616859, 0.0209972989, 0.000788620207, -0.00993676763, -0.00294072111, -0.000541269837, -0.00517603569, 0.00173297955, 0.0124713453, 0.00611047074, 0.0219744854, 0.0162945874, -0.00275902567, -0.00789689, -0.0176992938, -0.00733500766, -0.00309188, 0.0103703942, 0.00374690024, -0.020239979, 0.0196536668, -0.0120316111, -0.00066723529, -0.0257000104, -0.0113659026, -0.00903897732, 0.00704795914, -0.00803736, -0.00892293639, -0.00993676763, 2.20678157e-05, -0.0064738621, -0.000923746789, 0.0173572786, 0.00172534527, 0.0110544246, -9.45695356e-05, 0.0119033558, -0.00431183632, 0.00558523275, -0.00488287956, -0.00664486969, 0.0134851765, 0.0161724407, -0.00927105919, -0.0037285781, 0.0111216065, -0.00138409331, 0.00537147326, -0.0281674061, 0.00110238872, 0.010455898, -0.009832941, -0.00506304856, 0.0162335131, 0.00815340132, -0.0092160916, -0.015134179, 0.012196511, -0.00189635297, 0.0035972686, 0.0143157849, 0.00527986186, -0.00437901774, 0.0332487784, 0.0248083267, 0.00111536705, 0.015708277, 0.00102680945, -0.0123003377, -0.0055943937, -0.028656, -0.00360948336, 0.00202766247, 0.0123736262, -0.00351176481, -0.0237456374, -0.0283139851, -0.00237273145, 0.0147433039, 0.00183985929, -2.57895226e-05, -0.00775031187, 0.0206064247, -0.00605550362, 0.029169023, 0.00255900761, -0.00996730477, -0.00748769287, -0.00811675657, 0.0119277854, -0.00183222501, 0.0150120305, -0.00856870599, -0.0172717758, -0.0201300457, 0.0127034271, -0.00963750388, 0.0201056171, -0.000343542197, 0.00904508401, -0.0143768592, -0.0182733908, -0.0170396939, -0.000336289639, 0.0238677859, -0.00922219921, -0.0139493402, -0.000622956548, -0.0299996324, -0.0198002458, 0.00353924814, -0.0137783326, 0.0103276419, 0.0088374326, 0.0322960205, -0.0223653615, 0.00605855742, 0.0247472525, 0.0276543833, 0.00683419965, -0.00230249623, -0.00897179544, 0.0159159284, -0.0181145985, -0.00210858579, -0.0116040921, -0.0143402144, 0.000338961632, -0.0194215849, 0.0145234372, -0.00930159632, -0.00225516362, -0.00151005876, 0.0124652376, 0.00996119715, 0.00190093345, 0.0169541892, 0.00690748869, -0.0085870279, 0.018713126, 0.00655936589, -0.0197391715, 0.017711509, 0.00971079245, 0.00387210236, -0.00408586208, -0.0194948744, 0.0126667824, -0.00961918198, 0.022866169, 0.0026124476, 0.020337699, -0.00983904861, 0.0136317546, 0.0129477242, -0.000958864461, 0.0112437541, 0.00493173907, -0.00859313551, -0.00228722766, 0.0137294736, -0.0253335647, -0.00783581566, 0.0195803791, -0.0221088491, -0.000597, -0.0347878449, 0.00809232704, 0.0042416011, -0.011671274, -0.00301401014, -0.0124835605, 0.0225607976, 0.00319417892, -0.00407059351, -0.000321975385, 0.0236234888, 0.0268726349, -1.65926103e-05, -0.011048317, 0.00226737862, -0.018041309, 0.0221332796, 0.0183222499, -0.00740829669, -0.0108284503, -0.00908783637, -0.0150486752, 0.00913669541, -0.00363085931, -0.00659601, -0.0108773094, -0.00161235803, 0.00506304856, 0.00537758041, -0.0145234372, 0.00769534521, -0.0151708238, 0.00156807923, 0.00577761652, -0.0122026186, -0.00851984695, 0.0104925418, -0.000477905356, 0.00239868788, 0.00877635833, -0.00408280827, -0.0163068026, 0.00151692971, -0.000880994892, -0.0143402144, -0.0039331764, -0.00718232244, 0.0147921639, -0.0200445428, -0.00715789245, 0.00813507941, 0.00307050394, -0.0172717758, -0.010883417, -0.000556920073, 0.000230936697, 0.0272146501, -0.0105169723, 0.0133019537, 0.0112376474, -0.0105047571, 0.0160502922, -0.000888629176, -0.000294492, 0.00327052176, -0.00568295131, 0.00479126861, 0.00872749835, 0.00584479794, 0.00926495157, -0.0126179233, -0.00700520724, 0.011146036, -0.0153784761, -0.00738386717, -0.00640057307, -0.00842823554, 0.0021742403, -0.00110620586, 0.0100650229, 0.0029941611, -0.0280941185, -0.00915501826, -0.0134485317, 0.01503646, -0.0180779546, 0.0117140254, 0.000498899608, 0.0101871714, 0.010669657, -0.00587533507, 0.0039789821, 0.0110116722, 0.0171251968, -0.0196903124, 0.00345069054, 0.00321555487, 0.00784803089, 0.0166243892, 0.0115369102, 0.00715789245, 0.0106146904, 0.0154029056, -0.019287223, -0.00231318409, 0.0344702601, -0.00899011735, 0.0253824238, -0.0107918056, -0.00770145282, 0.00703574438, 0.00812897179, 0.00254679285, -0.00469355, -0.0196780972, 0.0131920204, -0.0224752948, 0.0113292579, 0.00281093852, 0.0106757646, -0.00115124811, -0.02271959, 0.0167221073, -0.000716476352, 0.0264329, -0.0199956819, -0.000979477, 0.0196780972, -0.0159037132, -0.0134729613, 0.0273612272, 0.00354535552, -0.0117751, 0.00702963676, 0.0301462095, 0.000897026854, 0.012935509, 0.00597610744, -0.0168564711, 0.0136561841, -0.0206552837, -0.0276788138, 0.0143157849, -0.0186642651, -0.024820542, 0.00619597454, -0.00826944225, -0.00850763172, 0.0165633149, 0.0218401235, 0.0277276728, -0.0143157849, -0.0197636, 0.00555774942, -0.0174549967, 0.000896263402, 0.00357589265, -0.0320028625, -0.0317341387, -0.00499281334, 0.0262374636, 0.015757136, -0.0175771452, 0.0048279129, 0.0049164705, 0.0114819435, -0.00595473126, -0.000470652798, -0.00233914074, -0.00212538103, -0.00896568783, -0.0135951098, 0.0154273352, -0.016612174, 0.00528596947, -0.0102665676, -0.00922219921, 0.000846640673, -0.0129232937, 0.0138760507, 0.0155983428, 0.00744494097, -0.00726171862, -0.000538979541, -0.0189085621, -0.00969247054, -0.0211560912, 0.0153051866, -0.0165266693, -0.0220844187, 0.00628453214, 0.0144501487, 0.0328823328, 0.00589671079, -0.0173939224, -0.0221332796, 0.00904508401, 0.0114880512, -0.024295304, 0.00623261882, -0.00578067, 0.0184077546, -0.0253091361, -0.0126912119, 0.0135706803, 0.0150242457, 0.022866169, -0.00575318653, 0.00982683338, 0.01283779, 0.00114972121, 0.014083703, 0.00707849627, -0.00695024058, -0.0166976769, 0.0108345579, 0.0113048283, 0.00652272115, 0.0120743634, -0.0102238161, -0.00110009848, -0.00355757028, 0.00545392325, -0.00686473679, -0.000822974427, 0.0026139745, -0.000746631704, 0.0304637961, 0.0188230593, -0.0231593251, -0.0104009314, -0.0081472937, 0.0100467009, -0.015757136, -0.0417991616, 0.00204140414, -0.000484012795, -0.00771366758, 0.0048279129, -0.0178703014, -0.00915501826, -0.00136042712, -0.0260175951, -0.000271589204, 0.00781138614, -0.00377438357, 0.0136928288, 0.0201666914, -0.0135462508, 0.00699909963, -0.00853206124, -0.00110315217, -0.0224875081, 0.007780849, 0.0257000104, 0.00171465729, -0.0126789976, -0.0102299228, 0.0129721537, 0.0150731048, -0.00294224801, -0.00183985929, -0.00558523275, -0.00118025835, -0.00477905385, 0.0167709664, 0.0064738621, -0.0043729106, -0.0117384549, 0.011885033, 0.0127400719, -0.00373468548, 0.00756708952, -0.0125690643, -0.00897179544, -0.00640057307, -0.0169175453, -0.00398814306, -0.0374018215, -0.0138760507, 0.0140592735, 0.00840380602, 0.000996272429, -0.00124362274, -0.00336213293, 0.022915028, 0.011310936, 0.0135828955, 0.00780527852, -0.00425076205, -0.0256022923, 0.0138027621, 0.015610557, -0.0188597031, -0.0283628441, -0.0102848904, -0.00247350382, 0.000264909206, 0.00642500259, 0.0154517647, -0.00243380573, 0.006516614, 0.00726782624, 0.0421167463, 0.0143768592, -0.00552721228, -0.00284605636, 0.0275566652, 0.00147875829, 0.00602191314, 0.000687466119, -0.0023498286, -0.00879468, 0.00475462386, -0.0103276419, -0.00751823, 0.0182611756, 0.00968025532, -0.00330716628, 0.0180168804, -0.0174549967, -0.00592724793, -0.0159159284, -0.0111826807, 0.02238979, -0.00331021985, 0.0034629053, 0.00341709983, 0.00686473679, 0.0126667824, -0.0156349875, -0.0082327975, -0.0223287158, -0.024869401, -0.00425381586, -0.0251869876, 0.0176015757, 0.0130576575, 0.0185299031, -0.0115674473, 0.0138027621, -0.00287812017, 0.00169633504, 0.0086603174, 0.00887407642, 0.0100100562, 0.00400951924, 0.00751212286, 0.0155983428, -0.00583258318, 0.00154517649, -0.00326136057, -0.0102909971, 0.0220599901, -0.00969857816, 0.000671052432, -0.00443703821, 0.0225241538, 0.00318501797, 0.00300484919, 0.00216507935, 0.0188230593, 0.00409196923, -0.0014329527, -0.0101016676, 0.000423320336, 0.0134851765, -0.0217179749, -0.0317829959, -0.00332243484, 0.0118911406, 0.00520657282, -0.00495006144, 0.00858092, -0.023965504, 0.00175893609, -0.003582, 0.021620255, -0.0153051866, -0.0157204904, -0.0128866499, -0.00347206648, 0.00841602, -0.00524016377, -0.00922219921, 0.0217424035, -0.00352703314, 0.00935656298, 0.0146333706, 0.0134241022, -0.000961154758, -0.0100344857, -0.00636392832, -0.0014772315, -0.00129324547, 0.0113353655, 0.0136317546, -0.00975354481, -0.00144287723, -0.0137905469, -0.00703574438, -0.00966193341, -0.00859313551, -0.00645553973, 0.0136683993, 0.0257977284, 0.0185543317, 0.0218523368, 0.00701131439, -0.00606771884, 0.00709071103, -0.0156716313, 0.00520046568, 0.00376522238, 0.021290455, 0.0160991512, -0.0130454423, -0.00304149371, -3.54993608e-05, -0.0160014313, 9.35198186e-05, 0.0156227723, 0.00793353468, 0.00872139167, -0.0129721537, 0.0125812786, -0.0150242457, -0.00915501826, 0.0103703942, -0.0162945874, 0.00180474168, -0.0201544762, 0.00906340685, 0.00234066742, 0.00827555, 0.0211438779, -0.00470881863, -0.0161846541, 0.0241242964, 0.0165999588, 0.00743883383, 0.0201789048, 0.00105047575, -0.000456147711, 0.00140623271, -0.00419579539, 0.00347206648, 0.00440039393, 0.00912448112, 0.0126057081, 0.00303538609, 0.0198491048, -0.00227501267, 0.00922830682, 0.00349344243, 0.0149387419, -0.0170763377, 0.00613184646, 0.00263229664, 0.0220355596, 0.0126667824, 0.00355757028, -0.00834273174, 0.00547835277, 0.0216691159, 0.0224508643, 0.00123904215, -0.0203132685, 0.00825112, 0.0240143631, -0.00480042957, 0.0231959689, -0.0162090845, 0.0204842761, 0.00768313045, 0.019336082, -0.00675480301, -0.0242464449, 8.47404081e-05, 0.0299752019, 0.0240876526, -0.00729225576, 0.0127034271, 0.00799460895, 0.0115979845, 0.0167709664, -0.0145478668, 0.00163068029, -0.00476683909, -0.0133141689, -0.0122392634, -0.0138027621, -0.0229761023, -0.00590892602, -0.0213393141, -0.0125812786, 0.0340549573, 0.00635171356, -0.00117338751, -0.0131309461, -0.0023483017, -0.01766265, 0.0021437034, -0.0284605622, 0.00661433255, -0.000239906964, -0.0142547106, -0.00873971358, 0.00657158066, -0.00505694095, -0.0144012887, 0.0118361739, -0.00408280827, -0.0204720609, -0.0258465875, -0.0215713959, -0.0193238668, -0.00349649624, -0.00624788739, -0.000765335688, -0.0404311, 4.92410472e-05, -0.00139936188, 0.000551576086, 0.000867253169, -0.00351176481, 0.0107918056, -0.00112147443, -0.0289247259, -0.00480348337, -0.0120560406, 0.0107918056, 0.0161968693, -0.0158670694, -0.0135706803, -0.00389653188, 0.00866642408, 0.00819615368, 0.014328, -0.0130210128, -0.00931991823, -0.0439001136, -0.0168931149, -0.0134363174, -0.00758541189, 0.00391790783, -0.0152318981, 0.00144287723, -0.00260023284, 0.001497844, 0.0137661174, -0.0156227723, 0.0190184955, 0.00590892602, -0.00845877267, 0.0193238668, -0.0014375333, -0.0155494837, -0.0122026186, -0.0111093912, 0.00976575911, -0.0144379335, -0.0161724407, 0.0135218212, 0.00204445771, 0.0109505989, -0.0108712018, 0.0102726752, -0.00242922502, 0.000467599108, -0.00311172893, -0.0127278566, -0.00972300768, -0.000475615088, -0.0107063018, 0.0266771968, 0.00398814306, -0.0102421381, 0.0150242457, 0.00211621984, -0.00737165194, 0.00459583104, 0.0107307313, -0.0169786196, -0.0166732483, 0.00762816379, 0.0214248188, 0.00449811248, 0.0189329926, -0.0135951098, 0.00537758041, -0.019091785, 0.0195559487, -0.0133263832, -0.0255778618, -0.0247594677, -0.0150608895, -0.0171618406, 0.00300179538, -0.0168442558, 0.0143402144, -0.0117812073, 0.00193299749, 0.0120560406, -0.00696856249, 0.003582, 0.0114941588, 0.0111216065, 0.0105291866, 0.00589060364, -0.0149753857, 0.00097413297, 0.00282620708, -0.0189452078, 0.0346412696, 0.00808011275, 0.00024124296, -0.000289338874, 0.00358810741, -0.00971079245, 0.0213515293, -0.022011131, -0.0289980154, 0.009552, -0.00254373904, 0.00947871059, 0.00632728403, -0.0123614119, -0.00950924773, 0.0205331352, -0.00569516607, -0.0127034271, -0.00589060364, 0.00207194127, 0.00986347813, -0.0110055655, 0.00240632216, -0.0106757646, 0.00787246, 0.0142913554, -0.00945428107, -0.0172107015, 0.0159892179, 0.0153906904, 0.00476683909, 0.0205819942, -0.00358505361, 0.013460747, 0.033224348, -0.0058997646, 0.00197269558, 0.0185787622, 0.0209850837, -0.000159365416, -0.0286071412, 0.0188352745, 0.00581731461, -0.000904661138, 0.00968636293, -0.0181634575, -0.022340931, 0.000357474753, 0.0348367058, 0.0139249107, 0.000490120205, 0.00911226589, -0.0111277131, -0.000186848789, 0.00798239373, 0.00411639875, 0.0146578, -0.0191772897, 0.00145127496, -0.0218889825, 0.00393623, -0.000520275556, 0.028069688, 0.00292697945, -0.0179924499, -0.0112559693, -0.00291934516, 0.00486150384, -0.00602802029, 0.00930159632, 0.00469049625, -0.00392706925, 0.0170763377, 0.00141310354, 0.0207530018, -0.0184199698, 0.00690748869, -0.00928327348, -0.024967121, -0.00947260391, 0.0158670694, -0.0127034271, -0.00344458316, -0.00459583104, 0.0238067117, -0.0198246744, 0.0108467722, 0.000896263402, 0.00020440761, -0.00813507941, -0.00784192327, 0.0175282862, -0.0104253609, 0.0260908846, -0.0146333706, 0.0147799486, -0.00254373904, -0.00894736592, 0.016465595, 0.00291934516, 0.0174672119, 0.0041102916, 0.0193727259, -0.00674258824, 0.00284605636, 0.00553026609, 0.0318318568, 0.00176657038, 0.00104894885, 0.0137050431, 0.00202766247, 0.010620798, 0.00656547304, -0.0035942148, 0.00867863931, 0.0117140254, 0.00794574898, 0.013509606, -0.0152196828, 0.00749380048, -0.00344458316, -0.00430572871, -0.00950314105, 0.00774420472, -0.0163556617, 0.00859924313, -0.0067059435, 0.0189818516, 0.0253335647, -0.0218401235, 0.00151692971, -0.0216813292, -0.00351176481, -0.0114758359, 0.005227949, 0.0269459225, 0.00373163167, 0.00377133, 0.0148043782, -0.00266283378, -0.00735943718, 0.0157449208, -0.0140959183, -0.0050050281, -0.0133508136, -0.0017986343, -0.025968736, -0.0104375752, 0.0138149774, -0.00334991817, -0.0204842761, -0.0255290028, -0.0016291535, 0.00196048082, 0.0027010052, 0.0341038145, -0.00820226129, 0.0165999588, 0.0159525722, 0.0165388845, -0.0148898819, -0.00497143716, 0.0104314676, 0.0299019124, 0.0142669259, -0.000517221866, 0.022194352, 0.0126789976, -0.00940542202, 0.0017100767, -0.00557301799, -0.00630896166, -0.00529207662, -0.00728614815, 0.00734722242, 0.00926495157, 0.00656547304, -0.00368887978, -0.0154639799, 0.000693191832, 0.00648607686, 0.00125202048, 0.0362780578, 0.0125018824, 0.0357406028, 0.00726782624, -0.0184321832, 0.015610557, 0.00922219921, 0.011097176, 0.0325403176, -0.00269184401, -0.0185909774, -0.00887407642, 0.00769534521, -0.0024811381, 0.0148898819, -0.00644943211, -0.0249915496, -0.00888018403, 0.0055058361, 0.0133263832, -0.00271932734, 0.0129232937]
|
13 Mar, 2024
|
How to use Azure Static Web Apps to Deploy an Angular App ?
13 Mar, 2024
In this article, we will learn how to deploy Angular applications using Azure Static Web Apps.
Microsoft Azure: Microsoft Azure is a public cloud computing platform. It provides a lot of cloud services to access, manage, and deploy applications.
Azure Static Web Apps: Azure Static Web App is one of the services of Microsoft Azure. It automatically builds and deploys full-stack web apps from the code repository to azure.
Deploy Angular app using Azure Static Web Apps:
Requirements:
GitHub Account
Microsoft Azure account
Node.js
Angular CLI
Step 1: Install Node.js
Node.js
Download and install https://nodejs.org/en/download/.
Run the below command in your terminal or command prompt to check whether Node.js is installed or not.
node --version
node version
Skip this step, if already installed.
Step 2: Install Angular CLI
Run the following command in your terminal or command prompt to install Angular CLI globally on your PC.
npm install -g @angular/cli
Make sure you have installed Node.js on your PC before running this command.
For more information, refer to https://angular.io/cli.
Angular CLI install
Skip this step, if already installed.
Step 3: Create an Angular App
Open Terminal in the folder where you want to create an Angular app.
Run the following commands one by one to create an Angular app and open the angular app folder.
ng new angular-app
cd angular-app
ng serve
Here “angular-app” is the name of the application.
Create angular app
“cd angular-app” will navigate the terminal to the newly created “angular-app” folder.
The “ng serve” command will start the local server.
Testing on localhost
Now, the Angular app is running at http://localhost:4200/
Copy and paste the link in the browser to open the Angular app.
Running on localhost
Enter Ctrl+C in the terminal to quit the server.
Step 4: Create a GitHub repository to store the angular application
Create GitHub Repository
Step 5: Commit local files to the GitHub repository
Run the following commands to commit files to your GitHub repository.
Note: Replace <replace with repo> with your repository.
git init
git add .
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/<replace with repo>.git
git push -u origin main
Upload to GitHub
Note: Make sure you have installed and authorized it on your PC.
Step 6: Open Microsoft Azure Static Web App
Visit https://portal.azure.com/.
Microsoft Azure Home page
Sign in with your login credential.
Click the following link to navigate the Azure Static Web App creation page.
Visit https://portal.azure.com/#create/Microsoft.StaticApp .
Or search for ” static web app ” in the search bar of the azure home page.
Search static web app
Select Static Web App and click create.
Create Static Web App
Step 7: Create a Static Web App
Project Details
Select subscription.
Create a new or select an existing resource group.
Enter the name of your application.
Select plan and region.
Project details
Deployment Details
Select the repository source. In this case, GitHub is a source.
Sign in with your GitHub account.
Select the Organization, Repository, and Branch of your Angular app.
Deployment details
Build details
Select Angular for Build Presets.
Enter the output location in the following format.
dist/app-name
Build details
Click Review + create.
Verify the summary and click create.
Wait for the app to be deployed.
Deployment
Step 8: Navigate to the GitHub repository
Click Actions.
Wait until the progress completion.
GitHub Actions
Step 9: Return back to azure
Come back to the Azure Static Web App Deployment page.
Click Go to resource on the deployment page.
Resource details
Step 10: Explore the URL (output)
Click on the URL and check the working condition.
Output
Congratulations! we deployed the Angular app using Azure Static Web Apps.
Note: The page displayed in the demo URL is the default page of angular application. It can be replaced with an actual application.
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?
|
https://www.geeksforgeeks.org/how-to-use-azure-static-web-apps-to-deploy-an-angular-app?ref=asr10
|
CSS
|
How to use Azure Static Web Apps to Deploy an Angular App ?
|
Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, How to Access Request Parameters in Postman?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props
|
GeeksforGeeks
|
[-0.0302978363, -0.00921474118, -0.00774942245, 0.0151489181, 0.0393667743, -0.0142011987, 0.0117517114, 0.0369172841, 0.00429753959, 0.0162861794, 0.0265215412, -0.0215350837, -0.00717350096, -0.0419037417, 0.0116350688, -0.0118537731, -0.0321641117, 7.25027494e-05, -0.0150468554, -0.0231680758, 0.0191876572, 0.00085887, -0.0344677977, 0.0285773613, -0.00657935441, 0.0100822682, -0.0043595056, 0.0272505563, -0.00753071811, -0.0041772523, 0.00161658926, 0.0134648941, 0.00463653123, -0.0302103534, -0.0198291894, 0.021753788, 0.0313476175, -0.0145292552, -0.0401832685, 0.00442876201, -0.00495000742, 0.00438502105, 0.0313476175, 0.022001652, -0.011992286, -0.00497552287, 0.0151489181, -0.0458695814, -0.00516506657, 0.0209518708, -0.0154696843, 0.0163882412, 0.0330389291, 0.00737762498, 0.0100895585, 0.0180358142, 0.00738856, 0.0134576047, -0.0133263823, -0.000974145369, 0.032630682, -0.033942908, 0.00284497836, -0.0218558498, -0.00372344069, 0.0167964902, 0.0192897189, 0.00596698234, -0.0390460081, 0.020018734, -0.0195813254, 0.0198729299, -0.00967402, -0.0153530417, 0.00157649349, -0.0189835336, -0.00638616551, -0.0118319029, -0.0432159677, 0.0326015204, 0.00476775365, -0.0103884544, -0.0557550155, -0.00349562359, 0.00907622837, 0.0288252272, -0.00870443135, -0.0459279, 0.036509037, 0.00760361925, -0.00513226073, 0.00393667724, 0.042778559, -0.0377629437, 0.00245313323, 0.0263465773, 0.0041736071, -0.00157102582, -0.0392501317, -0.00625494309, -0.0121453786, 0.031726703, 0.0175984055, -0.0715017244, -0.0289272889, -0.0127650406, 0.0289272889, 0.00432670023, 0.0430410057, -0.0244948808, 0.0130712269, -0.0347594023, 0.00416631671, 0.0265069604, -0.0430701673, -0.00130858074, 0.00832534395, -0.0874817222, 0.00715527544, 0.00201390218, 0.0194209423, 0.00228546, -0.0312601328, -0.00848572701, 0.00490262127, 0.0335638188, 0.0161549579, -0.0341761932, 0.043770019, 0.019858351, 0.00169404701, 0.00402415916, -0.0337096229, 0.000934960844, -0.00468027219, -0.031814184, -0.0183420014, -0.0207769088, -0.0129400045, 0.000257433188, -0.0244219806, -0.0333888568, -0.00975421164, 0.0163736623, 0.0342928357, 0.0244511403, 0.0246406849, 0.0279941503, -0.0120433168, -0.00351567147, -0.0682357401, -0.00697666733, 0.0201645363, 0.0377629437, 0.0418162607, -0.0257342048, -0.0365382, -0.0203395, -0.00119649479, -0.00419547735, 0.0208789706, -0.0264340602, 0.0048625255, 0.0170006137, 0.0217829477, 0.0216079839, 0.0298604276, 0.00904706772, -0.0538595766, 0.0311143305, 0.0270610116, 0.00515413145, -0.0268568881, 0.0298166852, -0.0502145067, -0.00676889811, 0.00795354601, -0.00489533134, 0.0449656025, -0.00365600688, -0.0267110858, -0.00620755693, 0.00789522473, -0.00349197863, 0.0158779323, 0.0421370268, 0.0165048838, -0.0239116699, -0.0307935644, 0.00677983323, -0.0172484796, -0.0148281511, 0.0518766604, 0.0141501678, 0.00297255581, -0.0127504608, -0.0321932733, 0.00902519748, -0.0137054697, -0.0215496626, 0.00154459907, -0.0157175492, 0.00312382635, 0.0361007899, 0.0419329032, 0.0309976898, 0.030326996, -0.00754529843, 0.0340887085, -0.00469849724, -0.0373546928, 0.0202665981, -0.0199166723, -0.00763278, 0.0104103247, 0.0237950273, 0.00921474118, 0.0039111618, -0.0432159677, 0.017554665, -0.0325140394, 0.0105561279, -0.00489168614, 0.0238533486, -0.0621703416, -0.0285627805, -0.00836179405, -0.0451988876, 0.0159362536, 0.0197854489, 0.00212325412, -0.015746709, 0.0179337524, 0.02547176, 0.0100385277, -0.0401541106, 0.0152655598, -0.0150031149, -0.0323099159, 0.0493105277, 0.0111976601, 0.00342636742, -0.0112997219, -0.0217100475, -0.00890126452, -0.0351384915, -0.00497552287, 0.0619953796, 0.0152072385, -0.00141428784, 0.0126338182, 0.0245532021, 0.0151780779, 0.00850030687, 0.00881378353, -0.00556602422, -1.08569029e-05, 0.00323500112, 0.0484648719, -0.00185625278, 0.0216225646, 0.0202811789, -0.00722817704, 0.0388418846, 0.0235325824, 0.00537283579, -0.00262080645, 0.0115184262, -0.0279941503, 0.000337852573, 0.0357800238, -0.0218266882, 0.0175255053, 0.0181670375, -0.0285044611, 0.00128579896, -0.00596698234, 0.0191293359, -0.00593053177, -0.0196104851, 0.0307060834, -0.0212143175, 0.0480857864, 0.0323390737, -0.0436242186, -0.0333888568, 0.00242397259, -0.0308518857, -0.0346136019, 0.0211414155, -0.0399499834, -0.0034117871, 0.0196979679, -0.00772026181, 0.0378212631, 0.0050593596, -0.00232191058, 0.0189397931, 0.00285591371, 0.00270464318, -0.020018734, 0.000603715, -0.020106215, 0.0183420014, -0.0128233619, 0.0280962121, 0.017554665, -0.0268277265, 0.0203832407, 0.00482607493, 0.0694604814, 0.0274546798, -0.0391334891, -0.0332722142, 0.00737762498, 0.0678858161, 0.0398916639, 0.0085367579, -0.0426327586, 0.00938970409, 0.0137127591, -0.0189397931, -0.0550843216, 0.0357800238, 0.0503894687, -0.0235180017, -0.00926577207, -0.0119558349, -0.0160091538, -0.0222349372, -0.00911996886, -0.0392209701, -0.0207477473, -0.000199112037, 0.0126192383, -0.00130949193, -0.0203103386, 0.0193334594, 0.0198000297, 0.0311726518, -0.0239116699, -0.00799728744, 0.0014543836, -0.013144128, 0.0346427597, -0.0202811789, -0.0167381689, 0.00411528582, 0.0174088627, -0.0130274864, 0.00136052293, 0.0123859532, 0.0383169912, -0.0157904495, 0.0260987133, 0.0208789706, 0.0101260087, -0.0335055, -0.020193696, 0.029175153, 0.0385211185, -0.0281545334, -0.0292043146, 0.0232847184, 0.0335055, -0.0339137465, 0.0127577512, -0.0448489599, 0.0212143175, -0.0179337524, -0.0381420292, 0.0187356677, -0.0157175492, 0.00515777618, -0.0410872474, -0.0469485223, -0.0177004673, 0.0276442226, -0.0198729299, 0.0215496626, 0.0321349502, 0.0150905969, -0.00540928636, 0.0546760745, 0.0404165536, 0.0152218193, 0.0207185876, -0.0146386074, -0.0134721845, 0.0137710804, -0.00244037551, 0.0243344977, -0.0174088627, -0.029175153, 0.00171865127, -0.0335346572, 0.0358675048, 0.0111830793, 0.0413496941, -0.0433617719, -0.00237658666, 0.0131951589, 0.0342345126, 0.0300353896, -0.0095355073, 0.0083909547, 0.00702040782, -0.0189252123, 0.0264632199, -0.0321932733, -0.010840443, -0.0380253866, -0.0157175492, -0.0109643759, 0.0505061112, 0.0349635258, 0.0204124, 0.00777858263, -0.00302176434, -0.00830347277, -0.00506300433, 0.00552592846, -0.0259237494, 0.0325140394, -0.0307352431, -0.0031001335, -0.0067725433, -0.00615652604, -0.0131076779, -0.00871172082, -0.0311143305, -0.029758364, 0.0146823488, -0.0355175771, -0.0211268347, -0.00310924603, 0.0577379353, -0.00303816725, -0.00318032503, 0.00263720937, -0.0134648941, 0.0162278581, 0.0233284589, -0.0445573553, -0.0566006713, -0.000278848, -0.0409706049, 0.0157612897, 0.0207623281, -0.0253405385, -0.0188814718, 0.0295542404, -0.0485231951, -0.00671786722, 0.00685637956, -0.0408831239, -0.030414477, 0.0170297753, -0.0158779323, -0.0489606038, 0.0261570346, -0.00370157021, 0.00788793527, 0.00961569883, 0.0245969426, -0.01425952, -0.0226140246, -0.0557258539, -0.0113507528, 0.0114382347, -0.00602530362, 0.0211559962, 0.0664861053, 0.0494854935, 0.0104176151, 0.00444698753, -0.0195813254, -0.0507393964, -0.00299078133, -0.0219141711, 0.0180358142, 0.0542386658, 0.0311434921, -0.0378795862, 0.00319490535, -0.00204306259, -0.00384555059, 0.00616381597, -0.011620488, 0.0297875255, 0.0104540652, 0.00785148423, -0.0403290726, -0.0234305207, 0.0160674751, -0.0495438129, 0.00188450201, -0.00654654857, -0.0149010532, 0.0230660141, -0.0249177106, 0.0480274633, -0.0271776542, 0.0157904495, -0.0178608503, -0.00829618331, -0.0222203564, 0.0469193608, -0.00185534148, 0.0146750584, -0.00611643028, 0.00541657628, 0.00493178191, 0.0225702841, -0.00391845219, 0.0207185876, -0.0347885638, 0.0177004673, -7.11358516e-05, 0.0109352153, 0.00427202415, -0.0143032614, -0.0115767475, -0.0160966367, 0.0113143027, -0.0348468833, 0.0221328754, -0.0379087441, -0.00585034, 0.00683815451, -0.0128452322, -0.00929493271, 0.0116569391, 0.0221037138, -0.0164319836, -0.0124224043, -0.0143324221, 0.00400957884, -0.0156154865, 0.0174088627, -0.0447323173, 0.00500103831, -0.027367197, 0.0276150629, -0.0362174325, 0.0211268347, 0.0163007602, -0.0333013758, -0.000118464828, 0.0202520173, -0.0049828128, -0.00387471123, 0.0264486391, -0.00259893597, -0.0322224349, 0.00849301647, -0.0219287518, -0.0184878036, 0.00184167246, 0.011496556, -0.00936783385, -0.0193334594, 0.0269735307, -0.0314934179, -0.0101770395, -0.0368589647, 0.0112341112, 0.0136471484, 0.00860965904, -0.00973963179, 0.00310742366, -0.0150176948, 0.0125536267, -0.00359039544, 0.0209372919, 0.0285627805, 0.0392501317, -0.0174088627, 0.0217100475, -0.0131222578, 0.0107456716, 0.0168402307, 0.0132097397, 0.00707508391, 0.0170297753, 0.0110810176, -0.000777311507, -0.012079767, -0.00277936715, -0.0174380224, 0.0280378908, 0.00254426, -0.00836179405, 0.00464017596, -0.000675705145, 0.000391161739, 0.0271193329, 0.013391993, 0.020514464, -0.0103592938, 0.00907622837, -0.00668506138, 0.00922932103, 0.0319599882, -0.00885752402, -0.000872994657, 0.027440099, 0.00618204148, 0.0128452322, 0.00101515243, -0.0207185876, 0.0152072385, 0.0440324657, -0.0113288825, -0.0102134906, -0.0277608652, -0.00156282447, 0.0197417084, -0.0415246561, -0.00915642, 0.0005458495, 0.0211268347, 0.0392792933, -0.0188231505, -0.013924174, -0.00607997971, 0.0110664377, 0.00377629418, -0.00260804873, -0.00644813152, 0.000766376324, -0.0133992834, -0.000711700239, -0.0163445, -0.00277936715, 0.0240137316, 0.0301228724, 0.00251145428, -0.00161932304, -0.0227306671, -0.00367969973, 0.0170880966, 0.00556602422, 0.131689146, -0.0117079699, 0.0125171756, -0.0089231357, -0.00358128292, 0.0085367579, -0.00297255581, 0.00860236865, -0.0035995082, 0.0372672118, 0.0237075463, -0.0145000946, 0.0035995082, -0.0236638058, 0.0155280055, 0.000428979372, 0.0367131606, -0.0289564487, -0.0367714837, 0.0160674751, -0.0036323138, 0.00370339281, -0.00876275264, 0.00621849205, 0.0320474692, 0.0233138781, 0.0352259725, -0.0056279907, -0.0219141711, 0.00310195587, 0.0232701376, -0.000466113532, -0.0176858883, 0.0112997219, -0.0105852876, -0.00549676782, 0.0187794082, -0.0291022528, -0.0042902492, 0.0202228576, 0.018793989, -0.00586492, -0.00868256, -0.0467152372, -0.0235763229, -0.00962298922, -0.000388655753, 0.00200296682, 0.0101114288, 0.0426619202, -0.00248229387, 0.0115913274, -0.0127285905, -0.00263174181, -0.0364798754, 0.00501926383, -0.0167090092, -0.0101916203, -0.0266673435, -0.0237950273, -0.00345735042, -0.0217683669, 0.0411747284, 0.000528991048, 0.0257779472, -0.00277754455, -0.0168402307, 0.0375296585, 0.000765465, -0.00113361725, 0.0515850522, 0.0242178552, 0.0581170209, -0.0340012275, -0.0161986984, -0.0259820707, 0.0135596665, -0.0127942013, -0.0119412551, -0.0123567926, -0.0236783847, -0.0452572107, -0.018954372, -0.0130930971, -0.0218558498, -0.0358091854, -0.00712611526, 0.0188523103, -0.0183128398, 0.0244803019, 0.00496458774, -0.0125025958, -0.0254863407, 0.0229639504, -0.0108477334, -0.00591230625, 0.010468646, -0.0137054697, -0.0104249045, 0.00229275017, -0.0114673954, -0.00874088146, -0.00380545482, -0.0226286054, 0.00101970881, 0.00308008562, 0.0083472142, -0.00634606974, -0.0253696982, 0.00955008809, -0.0483482294, -0.0245240424, -0.0109060546, -0.0145729966, 0.0250197724, -0.00598156266, 0.0329806097, 0.00901790708, 0.0361299515, -0.0371505693, 0.0434492528, 0.00751613779, -0.00987085421, -0.0300353896, 0.00710059935, 0.0104540652, 0.000475226203, 0.0174963437, 0.0303561557, 0.0204561427, -0.0100603979, 0.00120743, -0.00118464825, 0.019450102, -0.0336221419, -0.0159362536, -0.00767652085, 0.0235617422, -0.00412622094, -0.0068891854, -0.00936054438, 0.0052452581, -0.00163572584, 0.00151726103, -0.0201207958, 0.0318725072, 0.0281982739, 0.00714798551, 0.0227306671, 0.00117189053, 0.0257487856, 0.0348468833, -0.0134721845, -0.0203978214, -0.0291168317, 0.0100458171, -0.0354884192, -0.00583940465, -0.044819802, -0.00041303219, 0.0232847184, 0.00407154486, -0.0158633515, 0.000690741057, 0.00624765269, 0.0175984055, 0.0162861794, 0.0242761765, -0.00269370782, -0.0428368822, 0.047560893, 0.0251947343, -0.00358128292, 0.000494818494, 0.0102645215, 0.00706414878, -0.00453082426, 0.00588314561, 0.00403873948, 0.0228181481, 0.00609091483, -0.0484357104, 0.0281982739, 0.00610185, 0.012808782, 0.0227744076, -0.0217975285, -0.00840553548, -0.0184878036, -0.0392501317, 0.0430701673, -0.0164465625, 0.0157029685, -0.00479326909, 0.0147989905, -0.0079608364, 0.013144128, 0.00414809166, 0.0174234416, 0.0209372919, -0.0236783847, -0.0412622094, 0.0358966663, -0.000106846164, -0.000559974113, 0.0149302138, -0.00583575945, 0.0265798625, 0.0168839712, -0.00680899387, 0.0138002411, -0.00942615513, 0.0378212631, -0.0390168466, 0.00253150216, 0.0239116699, -0.0162716, -0.0110955983, -0.000436725153, 0.00887939427, -0.00369245745, 0.0325723588, 0.00421734806, -0.0163882412, -0.00998020638, 0.00338444905, -0.00649551768, 0.00576650351, -0.0215788241, -0.00102244259, 0.0247281659, -0.00511039048, 0.00738127, -0.0255738217, 0.0183128398, -0.0157904495, -0.0274692606, 0.0245240424, 0.0145219658, 0.0162716, -0.00468027219, 0.0120506072, 0.00804102793, -0.0222203564, -0.0199166723, 0.00253150216, -0.0273817778, -0.0302978363, 0.0130347759, -0.00799728744, 0.00120013987, 0.0241012145, 0.0106071588, 0.00730107864, -0.0167527497, -0.0196396466, 0.00825973228, 0.0070823743, 0.0387544, -0.0256758854, -0.0304727983, 0.0332722142, -0.0236200634, -0.0291605722, 0.00773484213, -0.0267110858, 0.0385211185, 0.0246990062, 0.00963756908, -0.0222786777, -0.0327473246, -0.0176567268, 0.000569542462, -0.055871658, -0.0165486261, 0.0219724923, 0.00769110117, -0.0185898654, 0.0437117, -0.0210830942, 0.0233284589, -0.016563205, 0.0249177106, 0.00607268931, 0.0245240424, 0.00386742107, 0.0122401509, 0.0106071588, 0.0128889736, -0.0265507, -0.00597791746, -0.00530722411, -0.00253697, -0.0156446472, 0.0372672118, -0.0322224349, -0.00833263341, 0.0228618886, 0.0286211018, -0.00189725973, -0.0104103247, -0.00279030227, -0.00495365215, -0.00771297142, 0.0201353766, -0.0295105, 0.0187210888, -0.00782961398, 0.0128233619, 0.0252822172, -0.00421734806, -0.0273526181, -0.0131368386, -0.00852217712, 0.0173505414, -0.0137200495, 0.00641897134, 0.0067032869, 0.00749426708, -0.0025260346, 0.00936054438, 0.0443240702, -0.0188377295, 0.0220891349, -0.0230951738, 0.014791701, 0.00395854795, -0.000532180478, -0.0240428932, 0.0185169633, -0.0195667446, -0.012276601, -0.0183128398, -0.0056243455, -0.00682721939, -0.0205582045, -0.0353426151, -0.0405623578, -0.0146240275, 0.0044360524, -0.0132461907, 0.0420203842, -0.0512059666, 0.0287814848, 0.00597062754, -0.0289127082, 0.0135815367, -0.0270026904, 0.0120943477, 0.00846385676, -0.0259237494, -0.0144053232, 0.00519787194, 0.0229347907, -0.000102517639, -0.0128525225, -0.00994375534, 0.011000826, -0.0440324657, -0.00608362444, -0.00273927138, 0.0318725072, 0.0109279249, 0.024888549, 0.0100166565, 0.00261716149, -0.00346099562, -0.0161403771, 0.00303269969, -0.00615652604, 0.0294230189, 0.00342089962, 0.0302978363, -0.019858351, -0.010840443, -0.0127869109, 0.0106873503, -0.00252238964, -0.0162424389, 0.0263903178, -0.0145657063, -0.00026654586, 0.0135086356, -0.0235909037, -0.0140845571, -0.00507029472, -0.00535461027, -0.0198729299, 0.0103592938, -0.00597427227, -0.0254863407, 0.017058935, -0.0106436089, -0.00431941, -0.042778559, -0.00750155747, 0.00460737059, 0.0289564487, 0.0183711611, -0.00353571959, 0.0185023844, -0.0244219806, -0.0130347759, 0.00247135852, -0.000884841138, 0.000893498189, -0.00372890825, 0.00976879243, 0.00352296163, -0.00511768041, -0.0161403771, -0.0143324221, -0.0151926586, -0.00257888809, 0.00221984857, 0.0102791023, 0.022001652, 0.00768381078, -0.00447614817, -0.0233867802, -0.00188085693, -0.0202228576, 0.0193480402, 0.017467184, -0.0176275671, -0.00168857945, 0.00532909483, 0.0306186024, 0.00682721939, 0.0138658527, -0.0132170301, 0.0159945749, -0.00434492528, -0.0077712927, 0.0159216728, -0.00167035405, -0.0139970751, -0.00340085174, -0.0155863259, 0.0402415916, 0.0338262655, -0.00683086412, -0.0208352301, -0.00213965704, 0.0223078392, -0.0324265584, -0.0420787074, -0.00374713354, 0.00990001485, -0.0403582342, -0.0158341918, 0.00123476796, -0.00350655895, -0.0125390468, 0.0471526459, -0.0202665981, -0.00265543466, -0.0290001892, -0.0114673954, -0.00955008809, -0.00888668466, 0.0378212631, 0.00701311789, -0.0195521638, 0.0218850095, -0.0195230041, -0.0118975136, 0.0133118015, -0.00957195833, -0.00763278, 0.0227889884, 0.00238934439, 0.0265215412, -0.0118173221, -0.0105634173, -0.00817225, 0.00815038, 0.0212143175, -0.00751613779, -0.00519422721, 0.0134138633, 0.0103301331, -0.0446739979, -0.00523796771, 0.00356670259, 0.0358383432, 0.0202228576, -0.00879191235, 0.00640439102, 0.0209227111, -0.0102863917, -0.00179519772, 0.0143032614, 0.0237221271, 0.0183274206, -0.0125536267, -0.00973234139, 0.00209044851, -0.0152655598, 0.00153184135, -0.0120870573, -0.0269006286, -0.0108185727, 0.00286138128, -0.016402822, -0.000258800079, 0.0123203425, -0.0195667446, -0.00199932186, 0.00933138374, 0.00864611, 0.00622942764, -0.0015746709, -0.0181961972, 0.0060107233, 0.00527806394, 0.0056243455, -0.0195521638, -0.00253332476, 0.000947718625, -0.0137565006, -0.00514319586, -0.0278046057, 0.0080045769, 0.0232118163, 0.00828889292, -0.0161841176, -0.000163344768, -0.0357217, -0.0104467757, -0.0177296288, -0.00649551768, 0.00928035192, -0.0170151945, 0.0148135712, 0.021258058, -0.00745781651, 0.0132243196, -0.0174380224, -0.0122037, -0.00782961398, -0.015571746, -0.00427931407, -0.0246406849, -0.0051723565, -0.0172338989, -0.0103520034, 0.0118756434, 0.0261570346, -0.0146969287, 0.017715048, 0.0234305207, 0.00554779917, -0.00882836338, 0.0235034227, 0.0297729447, 0.0175109245, -0.0187794082, 0.0335929804, 0.0146240275, 0.00871901121, 0.0258508474, -0.0150176948, 0.0121818297, -0.00857320894, 0.0110883079, 0.00488075102, -0.0106071588, 0.011372623, -0.0217246264, 0.038637761, 0.00948447641, -0.0063898107, 0.00331337, 0.000479782553, 0.00118464825, 0.00241121487, -0.0163590815, 0.00739585049, 0.00868985057, -0.0149302138, -0.0105998684, 0.0129254237, 0.0185023844, -0.00656841928, 0.0131149674, 0.014879182, -0.0124442745, 0.0123786628, -0.00223625149, -0.00915642, 0.0221182946, -0.012079767, -0.00108532, -0.0225411225, 0.0223078392, 0.00498645799, -0.0108550237, 0.00594511162, -0.0398333445, -0.010009367, -0.00464382116, 0.00528170867, -0.0100458171, -0.00434857048, -0.0241741147, -0.0149593735, -0.00733752921, 0.0231826548, -0.0219870713, 0.00866798, -0.00397312827, -0.00463653123, 0.00743230106, 0.00578837376, 0.0307935644, 0.0407373197, 0.0065064528, 0.0161986984, 0.0127942013, -0.00100148341, -0.00221255841, 0.00158925122, 0.00906164851, 0.0235180017, -0.0102718119, -0.0252530556, -0.00359039544, 0.0153238811, -0.0313767754, 0.0359258242, -0.0196104851, 0.0124807255, 0.0103009725, -0.0168693922, -0.0173213799, -0.0122328606, -0.0295542404, -0.012079767, -0.0257925261, -0.0195813254, 0.0190855954, 0.010629029, 0.0134648941, -0.0110372771, 0.0238825101, -0.0103520034, 0.00503384415, 0.0195959043, 0.00483701, -0.0188377295, -0.00730107864, -0.0135669569, 0.0116861, -0.0240137316, -0.00930951256, 0.00178699638, 0.000419866701, -0.00526712835, 0.00443969714, -0.042603597, 0.00836179405, -0.00637523038, 0.00661945, 0.00825973228, -0.00182162458, -0.00323682372, -0.0289710294, 0.00448708329, 0.0142449401, 0.0182691, -0.0346719213, 0.0139095932, -0.010840443, 0.0338554271, -0.0185898654, -0.0182836801, 0.00175783574, -0.0222349372, -0.0197417084, -0.00616381597, 0.000768654456, 0.0064371964, 0.0282565951, -0.0363632329, 0.0287960656, 0.0392501317, -0.0273526181, 0.00691470085, 0.0183274206, 0.0335638188, -0.0146604776, -0.0166798476, -0.00617475156, 0.00671422202, 0.00585398497, -0.0155425854, 0.00382003514, 0.000596424856, -9.30062815e-05, 0.0180649757, -0.0149229234, -0.0225265436, 0.0149302138, -0.00219251052, -0.00228181481, 0.00987814367, -0.020018734, 0.0171026755, 0.00296526588, -0.00900332723, -0.00619297661, -0.0221620351, -0.0280670524, 0.0114892656, 0.00618933141, 0.0122401509, 0.0023729417, -0.0199749917, 0.0182545185, -0.00954279769, -0.00598885259, -0.0104394853, 0.0206165258, -0.00990001485, 0.000213464504, -0.00187174429, -0.00793896616, 0.0096886, 0.000145119411, 0.0115475869, -0.0159654133, -0.0201645363, -0.00990001485, -0.00404967461, 0.0202520173, 0.0102499416, 0.030326996, -0.0179629121, 0.0173942819, -0.0146386074, -0.00438137632, -0.00956466794, -0.00308008562, 0.014543836, 0.014295971, -0.0040679, 0.0164611433, -0.018298259, -0.0144271934, 0.00248958403, 0.0161841176, -0.0100603979, 0.00845656637, 0.0195667446, 0.0117662912, -0.0151343374, 0.00703863334, 0.00345735042, -0.0247135852, 0.00344277, 0.00468756212, 0.0119558349, 0.00901790708, 0.00353025179, -0.0350510105, -0.0244074, -0.0161695369, -0.00784419384, -0.0158779323, 0.0222057756, -0.0100676883, -0.00478597917, -0.023649225, -0.00535096508, 0.00539470604, -2.87618923e-06, 0.0174963437, 0.000757719274, -0.0124078235, 0.0143542923, -0.010629029, 0.0173942819, 0.00405696454, -0.0215059221, -0.0266673435, -0.00470943237, 0.0205436237, 0.0148718925, -0.00839824509, 0.00522703258, 0.00481514, -0.0188523103, 0.00254608248, -0.00258800085, 0.0201645363, -0.0108550237, -0.00156282447, 0.0233576186, -0.0214038603, 0.000269507495, 0.0166506879, -0.0141793285, 0.00250963192, -0.0157758705, 0.00641897134, -0.0114236549, 0.0139679145, 0.0345844403, 0.0236346442, -0.00672515715, 0.0254280195, -0.0148281511, -0.00893042516, -0.00338627165, 0.0217100475, -0.0130785173, -0.00475681853, -0.0190126933, -0.038725242, -0.0302978363, -0.0118902232, 0.0305311196, 0.0196979679, -0.0394542553, 0.00487346062, 0.0286648441, 0.00452353386, -0.017642146, 0.0216225646, 0.0313476175, 0.00258800085, 0.00292881508, -0.0175838247, -0.0129764546, 0.00599978771, -0.0171755776, -0.00954279769, -0.0162861794, -0.00755258836, -0.00825244188, -0.00840553548, -0.0162424389, -0.000146600229, 0.0106727695, 0.0115913274, -0.0118464828, 0.0214038603, -0.0284753, 0.0172047373, -0.00607268931, 0.0186190251, -0.0152509799, 0.00303269969, -0.00266819238, -0.0139314635, 0.00113635103, 0.000691196707, -0.00308737578, -0.0102718119, -0.0126775587, -0.0236054845, -0.00141702162, -0.0250635128, 0.0267256647, -0.00844927598, -0.0305894408, -0.0299479086, 0.0184586421, 0.0153384618, -0.018793989, 0.0167673286, 0.0335055, 0.0292043146, 0.0103592938, -0.00294521777, 0.00793167576, 0.00552957365, -0.0184149016, -0.0192897189, 0.040679, 0.00203395, 0.00901790708, 0.00903977733, 0.0042938944, 0.000691652356, 0.0211705752, -0.00186809921, -0.0251072533, 0.0148427319, -0.001282154, 0.014419903, 0.0101041384, 0.00400593365, -0.00535461027, 0.0226431843, -0.00797541719, -0.00229092757, 0.00182709214, 0.00770568149, 0.00808476843, 0.0150614362, 0.00423921831, -0.00852217712, 0.0149885342, 0.005128616, -0.0260112304, 0.0113580432, -0.00990001485, -0.00189179217, 0.0162132792, -0.00782961398, 0.0149083426, -0.00804831833, -0.0171464179, -0.0232263971, -0.0134721845, -0.00852217712, 0.00905435812, -0.00341725466, -0.00164666108, -0.0143980328, 0.00747968676, 0.0300062299, 0.0219287518, -0.0449364446, -0.00310742366, -0.00812851, 0.00792438537, 0.0172338989, -0.0143397115, -0.00130584696, -0.00354483211, -0.0034409475, -0.00431576464, 0.00641168095, -0.00135870045, 0.00261716149, 0.0301811937, 0.042778559, 0.00331883761, -0.0152655598, 0.0125682065, -0.009725051, 0.0197271276, -0.0124151139, 0.00111265806, -0.0107456716, -0.00823786203, -0.0241886955, -0.00927306246, 0.00863882, -0.00483336486, -0.0221474543, -0.00736304466, 0.015746709, -0.0195959043, 0.0291314125, -0.0116715189, 0.0194209423, -0.015411363, 0.0160237346, -0.00161385548, 0.0185169633, 0.0245386213, -0.0308810472, -0.013676309, 0.0102863917, 0.0136544388, -0.000508031866, -0.0145000946, -0.0140626859, -0.00605081907, -0.000954097486, 0.0341470316, -0.0138512719, 0.00918558054, -0.0293501168, -0.0063205543, 0.0137273399, 0.00979066268, 0.0111028878, 0.0184586421, 0.00294157281, 0.000605993147, 0.00159107381, -0.00563892582, -0.00998020638, 0.0128306523, -0.00274109398, 0.00238569942, 0.00801915769, 0.00516142137, 0.027279716, 0.00216881768, 0.0128889736, -0.000394806819, -0.026536122, -0.0185461249, 0.00132407225, 0.0174234416, -0.00297802361, 0.00532544963, -0.00775671238, -0.000724913611, 0.00330425752, -0.0104978066, 0.00809205882, 0.0202374384, 0.0110226963, -0.0284607187, -0.00545302732, -0.00474952813, -0.0135888271, -0.0345844403, -0.00244402047, 0.0103520034, 0.00772026181, -0.00287778396, -0.00760361925, -0.00556237949, -0.0122838914, -0.0134503143, -0.0131076779, -0.00309466571, 0.034934368, -0.00318761519, 0.00807747897, 0.011285142, 0.0219724923, -0.0194209423, -0.00307826302, 0.0129691651, -0.017802529, -0.0101551693, -0.0116933901, -0.0150176948, -0.00893042516, 0.0184878036, 0.0231826548, 0.0107675418, 0.0233430378, -0.0343511552, 0.0130493566, -0.0139752049, -0.00130766944, -0.0130420662, -0.00278665731, -0.00569360191, -0.00797541719, 0.00981253292, -0.0197708681, -0.00795354601, -0.00450530834, -0.0180795547, 0.00694386149, 0.00776400277, -0.00343548, -0.000164028228, -0.00484794518, -0.000605993147, -0.0169277135, -0.0446448363, 0.00922203157, 0.000183392665, -0.0147989905, 0.012488015, -0.0177004673, 0.027367197, -0.00281035015, 0.00301994174, -0.0101843299, -0.00624765269, 0.0117954519, -0.000982346828, 0.0221766159, 0.0172922201, 0.010592578, 0.00281217275, -0.0136981793, 0.00657935441, -0.00603623874, -0.0192605592, -0.00570453703, 0.0198875107, 0.00263538677, 0.00479691429, -0.0225702841, -0.0107383812, 0.0179337524, -0.00673973747, -0.0280816313, -0.0162716, 0.00495365215, 0.0260549728, 0.00664132042, -0.0067725433, -0.0205290429, -0.00354300952, 0.0107019302, -0.0120068658, -0.00734117441, 0.0112924315, -0.0126921395, 0.00780774327, 0.0391043276, -0.00704227854, -0.00439231144, -0.00492813671, -0.0169422925, -0.00250963192, 0.0113872038, 0.00349015603, -0.016315341, -0.00291787973, 0.00348468847, -0.00828889292, 0.00279941503, 0.000315298705, -0.0118173221, 0.0198146086, 0.00401322404, -0.0116496487, 0.0130639365, -0.0228035673, -0.0080045769, -0.0016266132, -0.0144782243, -0.0200478937, 0.0152363991, 0.0191439167, 0.0132389, -0.0168256499, 0.00880649313, -0.0187356677, 0.0160383154, 0.0115548773, 0.00390022667, 0.00153822021, -0.0134648941, 0.0212143175, -0.00828889292, -0.0213892795, -0.00288871932, -0.00655019376, -0.00185534148, -0.0142886806, -0.00369428, 0.00894500595, -0.0277171247, -0.0203103386, 0.0175838247, -0.00107894116, -0.0102353608, 0.016898552, 0.00339902937, -0.016563205, 0.00311106863, 0.0153093012, 0.0108185727, -0.0213747, 0.00724275736, 0.0131878695, 0.00710059935, -0.00216517248, -0.00999478623, -0.0167090092, 0.0130712269, -0.0155280055, 0.00132224977, -0.0164465625, 0.00993646495, 0.0241303742, 0.00903977733, -0.00932409335, -0.00291241216, -0.00665954594, 0.00462195091, -0.0129400045, -0.00744323619, 0.00792438537, -0.040387392, 0.0109060546, 0.0151197575, -0.0107675418, 0.00549312308, -0.00152455119, -0.000160838783, -1.31564302e-05, 0.00385648571, -0.0187502485, 0.00276296423, 0.016898552, 0.0156883877, 0.017715048, 0.00597062754, -0.00496094255, 0.00500468351, -0.0029087672, 0.00831805356, 0.00984169357, 0.0107310908, 0.000365190615, 0.0168548115, 0.00482242974, -0.00732659409, 0.0249031298, -0.0186773464, 0.0219433308, -0.00551863853, -0.00862424, 0.0044834381, -0.00513955113, -0.0119558349, 0.00564257102, -0.0199749917, -0.0108987642, -0.000949541165, -0.00993646495, -0.00766923092, -0.00113270606, 0.00723911216, -0.00465475628, 0.000814673491, -0.00852217712, -0.00684908964, 0.0288689677, -0.0170880966, -0.00777858263, -0.000257433188, -0.00200843439, -0.0101916203, 0.00352296163, -0.0143542923, 0.0162861794, 0.00488804094, -0.00270646578, 0.0126994299, 0.0353134535, -0.00394761236, 0.0022162036, 0.0277317055, 0.00915642, 0.00232191058, -0.00548218796, 0.00134685391, 0.014667768, 0.00343730254, -0.00265361206, 0.00831076317, 0.0134576047, 0.0165777858, -0.00323135592, -0.00395490276, 0.00315845455, -0.0146531882, -0.00146258494, -0.0265069604, -0.0019555809, -0.0241741147, 0.0023729417, 0.0231243353, 0.00278665731, -0.0147042191, 0.0305602811, -0.00155006675, -0.0163299218, 0.00644084159, -0.00814309, -0.026127873, -0.00513955113, -0.00246042339, 0.00742501114, 0.0194938425, 0.0187502485, -0.0249177106, 0.00550041301, 0.00182800344, -0.000983258127, -0.0251218341, 0.0234742612, -0.00990730431, -0.0137565006, -0.00680170348, -0.000940428465, -0.00650280761, -0.0230222717, 0.00192095269, -0.0126994299, 0.0201499555, 0.00742865587, 0.00753071811, -0.0121380882, -0.0029926037, -0.00279759243, 0.0265215412, 0.0232555568, -0.0145219658, 0.0029105898, 0.00153093, 0.00847843662, -0.0263611581, -0.0101260087, 0.00134047505, 0.00419912254, 0.00120925251, -0.0183711611, -0.00762549, 0.0107967025, -0.00288689672, 0.0133628324, -0.0134065738, -0.0232847184, -0.00766923092, 0.00312018138, 0.0194646828, 0.00515777618, 0.0256029833, -0.0115548773, 0.00261351629, -0.0167819094, -0.0187210888, 0.00657935441, 0.0153238811, 0.00460737059, 0.00623671757, 0.00490626646, -0.0140553964, 0.00302540953, -0.00278848, -0.00860236865, -0.0225411225, -0.0151489181, -0.0139095932, -0.00013623455, -0.0010907877, -0.0163007602, -0.000643810781, 0.00445427746, -0.00787335448, 0.040679, 0.00816496089, 2.81211578e-05, 0.00755987875, -0.00971776061, 0.0109352153, -0.0063132639, -0.0155571653, 0.0131003875, 0.0246698447, 0.00925119221, -0.00155462301, -0.0115986178, 0.00591959618, -0.0146021573, -0.00472765788, 0.00478233397, -0.00586127536, -0.00649187248, 0.00177788374, 0.0129327141, 0.000763186894, 0.000906255911, 0.0034792209, -0.018866891, 0.00637523038, 0.00147989905, -0.00571182743, 0.00825244188, -0.0136981793, -0.0037197955, 0.010592578, 0.0143834529, -0.00326780672, 0.00244402047, 0.00113817363, -0.0191730764, 0.00198291894, 0.0235471632, 0.0263028368, -0.000549950171, 0.00841282494, 0.0169422925, 0.00771297142, -0.00205764291, -0.00248776143, 0.0103665842, -0.0169131327, 0.0035976856, -0.00114637509, -0.0159799941, 0.000494818494, -0.00793167576, 0.000352660689, -0.00987814367, -0.0284023974, -0.00327691948, 0.0164757241, -0.0191584956, 0.0101260087, -0.000283176516, -0.00460372539, -0.0172047373, -0.00804102793, 0.0144344838, 0.00209773867, -0.00404602941, -0.00713340519, -0.0087700421, -0.0130056152, 0.00286867144, 0.0074651069, -0.00998020638, 0.0187356677, -0.020689426, -0.0016621527, 0.00632784422, 0.0114455251, 0.0355467387, -0.0163736623, 0.00877733249, -0.00254426, -0.0161257964, 0.00343365758, 0.00166488648, -0.00411164062, -0.00188450201, -0.00737398, 0.00628774846, 0.00684544444, 0.0179337524, -0.0186190251, 0.0157904495, -0.0303853173, -0.000181228403, -0.0100822682, -0.0143324221, -0.00281217275, 0.00728649832, -0.0127577512, 0.0190710146, -0.0185023844, 0.00090580032, -0.013924174, 0.00894500595, -0.00945531577, 0.00595240202, 0.00571547216, -0.00770568149, -0.0224536415, 0.0171318371, 0.00876275264, -0.00238934439, 0.00715163071, 0.0316683836, -0.00101150735, 0.0143615818, -0.0104030343, 0.00504113408, -0.0048625255, 0.0135815367, 0.00981253292, 0.0111612091, -0.0155571653, 0.0145365456, -0.0123932436, 0.0212288965, -0.0153967822, -0.00490626646, -0.0116933901, 0.00784419384, -0.0118027423, 0.00582482433, 0.00428295927, -0.00589408074, 0.00477868877, 0.00194100069, 0.013428444, -0.0176713075, 0.0174526032, 0.015659228, -0.0311434921, -0.00249505159, 0.0010907877, -0.0104759354, -0.0312601328, -0.00107073982, 0.0181670375, -0.0158633515, 0.00584305, 0.0191876572, -0.0122328606, 0.0155134248, -0.000135209382, 0.00147443148, 0.012611948, -0.00367240957, 0.00433399, 0.00639345543, 0.0104394853, -0.00239481195, 0.00244948803, 0.0147042191, -0.0140845571, -0.0078150332, 0.00364324916, -0.00609455956, -0.0116642294, 0.0167673286, 0.0224244799, 0.0130493566, 0.0174963437, 0.00729014305, -0.0162570197, -0.00792438537, -0.00889397506, 0.00483336486, -0.0132753504, 0.0304727983, -0.0118319029, -0.0132972216, -0.0142886806, 0.0051723565, 0.0167090092, 0.00500103831, 0.00553321885, -0.0105779981, 0.024392819, -0.00692563597, 0.0303853173, 0.0150031149, 0.00692199124, 0.00192642037, -0.0164903048, 0.00534732, -0.00457456475, -0.000617384, -0.00946989655, -0.00515777618, -0.028431559, -0.00671786722, 0.016563205, 0.0285773613, -0.00637158519, -0.000299807143, 0.0104905162, -0.00484065525, -0.0169422925, 0.00157375971, 0.0167673286, -0.0139460443, -0.0136544388, -0.0197125468, -0.035284292, 0.0144053232, 0.00324229128, -0.0142303593, 0.00285955868, 0.00470578764, -0.00245313323, -0.0153530417, -0.00842011534, 0.0323390737, 0.0245386213, -0.0034464153, 0.0104176151, -0.00678347843, 0.0263903178, -0.0259820707, -0.00711882487, -0.00115639903, 0.00252238964, 0.00835450459, -0.0115621677, 0.000634242489, -0.00785877462, -0.0178171098, -0.00532180443, 0.0247135852, 0.027279716, -0.00567902159, 0.00799728744, 0.00593053177, -0.00597062754, 0.0149447937, -0.00027611418, -0.0234742612, 0.0310268495, 0.0164903048, -0.00412622094, 0.00850759726, -0.00433763536, 0.00371797313, -0.00131860469, 0.0251218341, 0.00672151195, 0.00825973228, 0.00235653878, 0.00882836338, 0.0103228427, -0.00044834381, 0.0219724923, -0.00670693163, -0.0172922201, 0.00495365215, 0.00549312308, -0.00949905626, -0.00427931407, 0.00460008, -0.0159945749, 0.00940428488, -0.0135377962, 0.0123932436, 0.025544662, -0.00525619322, -0.00604717387, 0.0111903697, -0.00265907985, 0.00909080822, 0.00339902937, 0.0159799941, 0.0250780936, 0.00199567666, -2.21409628e-05, -0.0161403771, -0.00337898149, -0.00438502105, 0.0353717767, 0.00548218796, -0.00844198558, -0.0116277784, 0.0137346303, -0.00831805356, 0.00255155, -0.00511039048, -0.000909901, -0.000241258182, 0.00153822021, -0.0112414006, -0.00946260616, -0.0138512719, 0.0122911818, 0.00606175419, -0.00386013091, -0.00492449198, -0.0196688063, -0.0187210888, -0.00282310788, -0.00946989655, 0.00238023186, -0.00142977934, -0.00117918069, -0.025384279, -0.00661945, 0.00471672276, -0.0122838914, -0.00357399276, -0.007271918, 0.0176713075, 0.00637887558, 0.00195011334, 0.00646635704, -0.00575921312, -0.0243344977, -0.0216371454, -0.000457912131, 0.0138148218, 0.0256904643, 0.00535461027, 0.00780045334, -0.00124934828, -0.0023364909, 0.0203540791, -0.0105634173, 0.00154459907, 0.00136416801, 0.0114746857, 0.00278483471, 0.0141793285, -0.00909809861, -0.000568175514, -0.00345006026, -0.00771297142, 0.0238825101, -0.0176129863, -0.00985627342, 0.00759632932, -0.00112359331, -0.000158788433, 0.0356925428, 0.00418089703, -0.00803373754, -0.0106946398, -0.00663038529, -0.0249177106, 0.0208643898, -0.00543115661, 0.0118173221, 0.0225557033, -0.00503019895, 0.0137054697, -0.0114819752, 0.0132243196, 0.0166652668, 0.000765920675, -0.0202811789, -0.0116423592, -0.00263538677, -0.00261716149, 0.0238970891, -0.00170862733, -0.000478871283, -0.005748278, 0.0188523103, -0.0153676216, 0.00040756457, 0.0248593893, -0.0284898803, 0.0103520034, -0.00494636223, -0.00311653619, 0.00539106084, 0.00437773112, -7.52507958e-06, -0.0063205543, -0.00987085421, 0.021097675, -0.0194646828, 0.0377046205, -0.00264085433, 0.0242470168, -0.000223032825, 0.00561341038, 0.0145219658, -0.00274656154, 0.022497382, -0.0124588553, -0.010752961, 0.0122984713, 0.00321495323, -0.00125025958, -0.0119120944, 0.010592578, 0.00820870139, 0.00435221568, 0.0254863407, -0.00907622837, 0.00917829, 0.00842740573, -0.0148427319, 0.00682721939, -0.0196104851, -0.00680170348, 0.0258508474, 0.000753618544, -0.0161257964, -0.00958653819, -0.00352842943, -0.00268824026, 0.0137346303, 0.00473130308, 0.0178171098, -0.0128014917, -0.00406060973, -0.0060107233, -0.00246953592, 0.0254280195, 0.0147333797, -0.0348177254, -0.0207185876, -0.00228181481, -0.00103428913, 0.029758364, -0.027367197, 0.0116423592, 0.00644448679, 0.00664132042, -0.0176129863, 0.0017997541, -0.000409159285, 0.000902610889, -0.00820141099, -0.019450102, -0.00132316095, -0.0206748471, 0.00119102711, -0.0218850095, -0.0139824944, -0.00982711278, -0.0219287518, 0.0119704148, -0.0331264101, -0.0191147551, -0.00790980551, -0.0231097545, 0.0124588553, 0.00193371053, 0.00273015862, -0.00335711101, -0.0241741147, -0.00501197344, 0.00795354601, -0.00365053932, 0.0151343374, -0.027687965, -0.00742136594, 0.00127030746, 0.00848572701, -0.00117826939, -0.0043595056, 0.00619662181, -0.0215059221, -0.00768381078, -0.0168256499, 0.00766923092, 0.0243199188, -0.00062604103, 0.0270464309, -0.0198729299, -0.0175400842, 0.0106363194, -0.00847843662, 0.0145657063, 0.00879191235, -0.0127577512, -0.0194792636, 0.0127140097, 0.00170042587, 0.00191913021, -0.0121672489, 0.00228728238, -0.00958653819, -0.00888668466, 0.00540928636, -0.0110226963, -0.0268277265, -0.00013987963, -0.0018006654, 0.0145729966, 0.0257779472, -0.00928035192, 0.0102062, -0.00825973228, -0.00544209173, -0.0175109245, -0.0702769831, -0.00886481442, -0.0179191716, -0.00140699768, 0.00604717387, 0.012648399, 0.00977608189, 0.00450530834, -0.00955737755, 0.0190855954, 0.0241595339, -0.0102645215, -0.00993646495, -0.00358310551, -0.00377993938, -0.00473859301, 0.000211641978, -0.00072354672, -0.00391480699, -0.00196651625, -0.000649278401, 0.0160966367, 0.00266090222, -0.00100421719, 0.00213054428, 0.0406206772, 0.000121312543, 0.00742136594, -0.0165048838, -0.0203686599, 0.00373619841, 0.0238533486, 0.00534732, 0.00318032503, -0.00598156266, -0.0068891854, 0.00963756908, -0.0134357344, 0.00861694943, -0.0139897848, 0.00326962932, 0.00660122465, 0.00468756212, 0.0023018627, -0.00801915769, -0.00831076317, 0.00105251442, 0.00850030687, -0.00718443608, -0.00843469612, -0.00804102793, 0.0328639671, 0.018123297, 0.0148573117, -0.00910538901, 0.00779316295, 0.00101059605, -0.000789613638, 0.00940428488, 0.0195084233, -0.0139314635, -0.00413351133, -0.0150905969, -0.00905435812, 0.0135086356, 0.0123276319, 0.00740678562, 0.00291605736, -0.0141210072, 0.00779316295, 0.00763278, -0.00168857945, 0.0160237346, 0.00976879243, 0.00620755693, -0.00404602941, -0.017467184, -0.00511768041, 0.0164465625, 0.00458550034, -0.0113070123, 0.0133409621, 0.0330680907, 0.00332248281, -0.0163445, -0.00133045111, -0.0220745541, -0.00286502624, 0.00282675307, -0.0120287361, 0.0197854489, -0.00775671238, 0.00553686358, -0.00460372539, 0.00196287106, 0.004676627, -0.00776400277, -0.00239116699, -0.00487346062, 0.00518693682, 0.00495365215, -0.0225702841, 0.00783690438, -0.0126994299, 0.0300937109, -0.0206311047, 0.00472036796, -0.0211559962, 0.0192168169, 0.0127067193, 0.027367197, 0.00163572584, 0.0204853024, -0.00493178191, 0.0177004673, 0.0061273654, -0.00319855032, 0.00403509429, 0.0114236549, -0.00148718921, -0.0240283124, -0.0141647486, 0.00433763536, 0.0140991369, -0.000549950171, 0.0102791023, -0.0055550891, 0.014667768, -0.000850668584, -0.0130712269, -0.0170443542, -0.00748697715, 0.0267985668, -0.0110372771, -0.00782232359, -0.00197016122, 0.0142886806, 0.0132170301, -0.0159216728, 0.0111539196, -0.00649916288, -0.016315341, 0.00883565377, 0.0061310106, -0.00978337228, -0.0313476175, 0.00690012053, 0.00457456475, 0.000220185102, 0.00191730773, -0.0209227111, 0.0272359755, -0.0146531882, 0.000400957884, -0.0170443542, -0.00137510325, -0.00925848167, -0.0179045927, -0.00799728744, 0.0138221113, 0.000210730708, -0.00287960656, 0.0104905162, 0.018954372, -0.00205764291, -0.00964485947, -0.0102791023, 0.0195084233, -0.0184732229, -0.00438866625, 0.0154696843, 0.0210685134, 0.012983745, 0.0225119628, 0.000322588836, 0.0021779302, -0.00503748888, -0.0282711759, 0.000629230519, 0.00315663195, 0.0225557033, 0.00556237949, -0.0102062, -0.0137273399, -0.00377264922, -0.0193480402, 0.00629503885, 0.0415538177, -0.00131495961, -0.00875546224, -0.00348468847, 0.0250343513, 0.0178316906, -0.00913455, 0.0265215412, -0.0105561279, -0.0140189454, 0.00148445542, 0.0148864724, -0.00760361925, 0.0172193181, 0.0100676883, -0.011285142, 0.00362502364, 0.00469485205, -0.00523432298, 0.0129764546, 0.0176858883, 0.000576377, 0.0208060686, 0.014507385, -0.00438866625, 0.00104340177, 0.00301629677, 0.0164611433, 0.00102062011, 0.00180431048, 0.010344713, -0.00529628899, 0.0026463219, 0.0169568732, 0.0115548773, 0.0207914878, 0.0109279249, -0.00985627342, -0.0151343374, 0.037325535, 0.0136106974, 0.00723546697, -0.0048625255, -0.00194100069, 0.0180358142, 0.00458185514, -0.00413715653, 0.0180358142, 0.0141939092, -0.0203832407, 0.0217246264, 0.0113288825, 0.0134357344, 0.020193696, 0.00418089703, 0.00558789494, -0.00203030487, 0.00889397506, 0.0205290429, 0.0138804326, -0.00231826562, 0.027279716, 0.0038273253, 0.000559518521, 0.000874361547, -0.0135523761, 0.00653561344, -0.00346464058, -0.0166652668, 0.00123659056, -0.00128488778, -0.0147042191, -0.00532544963, -0.0111830793, 0.00106800604, 0.0153676216, -0.0154842641, 0.00295068556, -0.000461329386, -0.00913455, -0.0201791171, -0.00069712, -0.0257050451, 0.0118975136, 0.0083836643, -0.0157612897, -0.0111028878, -0.00207951339, 0.00736669, 0.00326962932, 0.00661945, 0.00215423736, -0.0179337524, -0.0301520322, -0.035021849, -0.0212726388, 0.00303816725, -0.0089231357, -0.00924390182, -0.034030389, -0.0031001335, -0.00336804613, -0.00270646578, 0.00346099562, -0.0255592428, 0.00081604044, 0.0113288825, -0.0181961972, -0.0193480402, 0.00978337228, 0.00590137113, 0.0039804182, -0.000859781285, -0.00659757946, -0.00594511162, 0.00115093135, -0.00755987875, -0.00589772593, -0.0439449847, -0.0100603979, -0.0308518857, -0.00901790708, -0.0239116699, -0.0027192235, 0.00121836516, 0.00719172647, 0.00318579259, -0.0122109903, -0.0116788093, -0.00427202415, -0.0254280195, 0.00920745078, 0.0228910502, -0.0164465625, 0.00470578764, 0.003635959, -0.0218850095, 0.00189725973, 0.0160091538, 0.0158341918, -0.0100895585, 0.00302358693, 0.0109352153, -0.00472765788, 0.00836908445, -0.00979795214, 0.00897416659, -0.00161567796, -0.0113434633, -0.0230660141, -0.0175400842, -0.0139897848, -0.0258945897, -0.00604352867, 0.0257633664, 0.0101697501, -0.0170297753, 0.0122109903, -0.0161986984, -0.0060107233, 0.00481149461, 0.0158341918, -0.0140043655, -0.0166069455, 0.0235034227, 0.0119777052, 0.00200661202, -9.26076e-05, -0.0179191716, 0.00675796298, -0.0315225795, 0.0158341918, -0.0192459784, -0.00292517, -0.0407956429, -0.00941886473, -0.0190418549, -0.0166652668, -0.00488804094, 0.016811071, 0.00493178191, -0.0164611433, 0.0041772523, 0.00142340048, -0.00320766307, 0.0181087162, 0.073193036, 0.00283039804, 0.00542022148, -0.0233867802, -0.0121380882, -0.00151908363, -0.0177296288, 0.0430410057, 0.00243855291, 0.013887723, 0.00354300952, -0.000994193251, -0.0120651871, 0.011868353, -0.0180795547, -0.0123422127, 0.0165340453, -0.00261533889, -0.0200624745, -0.00967402, -0.00157011463, -0.00776400277, 0.0111684995, -0.0117152603, -0.00885023363, -0.00799728744, -0.00831805356, 0.00662674, -0.0078150332, 0.0162278581, 0.000877095386, 0.0338262655, -0.00488804094, 0.0019574035, -0.0124661447, -0.000916279852, 0.012276601, 0.00583940465, 0.0224828012, -0.0147625403, 0.014419903, 0.0125463363, 0.00426837895, -0.00291423476, 0.0120141562, 0.00400228845, -0.00773484213, -0.0205436237, 0.0193917807, -0.0168693922, -0.0050593596, 0.0138804326, -0.00289236428, -0.01121224, 0.00381274498, 0.0131659983, 0.0346719213, 0.0163590815, 0.00140426389, -0.00979795214, 0.00618204148, -0.00897416659, 0.00187174429, -0.00266637, -0.0119120944, -0.0217100475, -0.0110955983, 0.00388564635, 0.0143032614, 0.0114892656, -0.000662491773, -0.0255300812, 0.000175419074, -0.00414080126, 0.00356123503, 0.00211596419, 0.00209773867, 0.00758903893, 0.000520334, 0.00294521777, 0.00179337524, 0.0278629269, -0.0196979679, -0.0074614617, -0.00158104987, -0.00501926383, -0.0134357344, 0.0214184411, -0.00823786203, 0.0336513, 0.00777858263, 0.0368881263, -0.00969589, 0.014011655, 0.00658299914, 0.00416267198, -0.00804102793, 0.0133701228, 0.0301811937, -0.00899603684, 0.0120433168, -0.00102517637, 0.0105488375, -0.00275567407, -0.00919287093, 0.0274546798, 0.0222786777, 0.0215350837, 0.00242944015, 0.0100458171, -0.0250343513, 0.00893771555, 0.00447250297, 0.0441782698, -0.00736669, 0.00846385676, 0.00164848368, -0.00522338785, 0.0169131327, -0.00408977037, -2.29525613e-05, 0.0032568716, 0.000990548171, 0.00379816466, 0.00560247526, -0.0166215263, 0.00903977733, 0.00124023564, -0.000320766296, 0.000575465674, 0.000101492464, -0.00966673, 0.0207185876, 0.0116277784, 0.0416996181, 0.0209956132, -0.000641077, 0.0191730764, 0.00266637, -0.0110737272, 0.0083836643, -0.00482242974, 0.0198291894, 0.0137200495, -0.0123786628, 0.0161695369, 0.00456727482, -0.0112341112, 0.00040938711, 0.0071990164, 0.00545302732, -0.00229275017, 0.0106873503, -0.0087700421, -0.0112268208, 0.0179337524, -0.00285409112, -0.0189689528, 0.00984898396, -0.00868985057, -0.00839824509, -0.00106800604, 0.0164465625, -0.00807018857, 0.0215788241, 0.0190564338, 0.013515926, -0.0146386074, 0.0139387539, 0.0111466292, -0.0102718119, 0.0252238959, 0.00555873429, 0.0178608503, 0.0110372771, 0.00409341557, 0.00312200375, -0.0349052064, -0.012648399, -3.91560425e-05, 0.00257888809, 1.54346e-05, 0.00893042516, 0.0477358587, -0.0105196768, -0.0199312512, -0.00725004729, 0.00479691429, 0.000603715, 0.0128525225, -0.0176275671, 0.023736706, 0.000754529843, -0.0173213799, 0.0220308136, 0.00142704556, 0.00759632932, 0.018050395, -0.00144253706, -0.0179045927, 0.0164465625, 0.00225994433, 0.00457092, 0.00062604103, -0.00211596419, 0.000330562441, 0.0163590815, -0.00472036796, 0.00556966942, 0.00232737814, 0.0158050302]
|
29 Sep, 2021
|
How to deploy simple frontend server-less (static) React applications on Netlify
29 Sep, 2021
Netlify is one of the most popular hosting services that specialize in hosting server-less services for web applications and static websites. It is a web development program that quadruples productivity. By unifying the elements of the modern decoupled web, from local development to advanced edge logic, Netlify enables a faster path to much more performant, secure, and scalable websites and apps. Therefore it is not a stretch to say that it is one of the best services out there for hosting frontend React applications that may or may not have a dedicated database or backend.
Pre-requisites for this task:
Having node.js installed on your computer.
Have git installed on your computer.
A Github account.(for method 2)
A Netlify account.
An IDE like VS code.
Now we will create a dummy React application using the following steps.
Creating React Application:
Step 1: Create a React application using the following command:
npx create-react-app foldername
Step 2: After creating your project folder i.e. foldername, move to it using the following command:
cd foldername
Project Structure: It will look like the following.
Dummy React app project structure
This is how the structure of the newly created React application will look like. As you can see, React, being user-friendly, creates a dummy template for us to use so that we can make changes and add more javascript components with ease. You can easily create a simple calculator application or rock-paper-scissors and that too, without ever needing to create a node server, this is what it means to be a server-less(static) application or website.
Here, we should only concern ourselves with two of these files that have been created namely App.js and index.js. The App.js file is referred to as our default component, which that it will be executed first amongst all the other components that we may create going forward.
App.js
import logo from './logo.svg';
import './App.css';
function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
);
}
export default App;
The index.js is the file that will first be read by Netlify when deployed. Thus, the App.js component has been passed to index.js and it is rendered inside the ReactDOM.render function.
index.js
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);
// If you want to start measuring performance
// in your app, pass a function to log results
// (for example: reportWebVitals(console.log))
// or send to an analytics endpoint.
reportWebVitals();
Step to Run Application: Run the application using the following command from the root directory of the project:
npm start
Output: Now open your browser and go to http://localhost:3000/, you will see the following output:
Dummy app running on localhost:3000
Now we will see how to deploy our above create react application on netlify. There are mainly two methods for performing this task:
Method 1: Using the netlify-cli(may not work in some cases). Below is the step by step implementation:
Step 1: Open the terminal and run this command,
npm run build
Note: This command will create a production build for our app which can be then deployed by the Netlify-cli.
Creation of the production build
Step 2: Install the dependency,
npm install --save-dev netlify-cli -g
Installing the netlify-cli dependency
Step 3: First we need to initialize a project in Netlify so run the command:
netlify init
Here, select Create and configure a new site.
Here, if you don’t have a project, you would need to create one, otherwise use the previously created one. I am using my previously created project “MyProject”.
You will be asked to give a site name. After giving a site name, the site URL will be created but its still not deployed.
Step 4: Now we will deploy the app using the following command.
netlify deploy
Site is deployed after running the command
Now we use the previously created URL, to open our deployed site.
URL for site created using Method 1: https://hellofriend-v2.netlify.app
Method 2: Using github repository to deploy the app(the preferred method). Below is the step by step implementation:
Step 1: Open github on your default browser and sign-in to your account.
Click on “New” on the top-left
Step 2: Select “New Repository”. In the repository creation panel, give the repository a name and choose visibility to be “private”.
Repository creation panel
Step 3: After creating the repository, navigate to your project directory and open git bash, by right-clicking and selecting the option “Git Bash Here”.
Select Git Bash
Step 4: Inside git bash, type the following commands in the exact order.
git init
git add .
git commit -m "first commit"
git remote add origin <the SSH key for your newly created repo>
git push origin master
Your app will now be uploaded to Github.
Note: The SSH key will be available on the page of the newly created empty repository.
Your SSH key is present under the “Quick setup” panel
Step 5: Now go to Netlify.com on your default browser. Click on “New site from Git”
Select “New site from Git”
Step 6: In the following page, select the option Github.
Select GitHub from below
Step 7: Select the repository where you have uploaded the app.
Pick your repository from the list
Note: The repository that we pick is “hellofriend”.
Step 8: After that, simply click on Deploy. Netlify will start to deploy your app and you will have to wait for a few minutes.
Click on “Deploy site” to start deploying the app.
Step 9: After its done, you can view the app using the URL it creates.
Site deploy in-progressSite has been deployed. Use the link to view the app.The deployed app
Note: We had changed the name of the domain to “hello-f4iend”. You can do this by yourself in the Netlify site settings.
Check out the deployed site here(using Method 2): https://hello-f4iend.netlify.app/
This is a very useful bit of information that in my opinion, everyone should possess so they are able to deploy their creations with ease.
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify
|
https://www.geeksforgeeks.org/how-to-deploy-simple-frontend-server-less-static-react-applications-on-netlify?ref=asr10
|
CSS
|
How to deploy simple frontend server-less (static) React applications on Netlify
|
Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, How to Access Request Parameters in Postman?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props
|
GeeksforGeeks
|
[-0.0281413421, -0.00187127932, -0.0162221268, 0.014617905, 0.0396107733, -0.00543111423, -0.00290484, 0.0329540074, -0.00795364, 0.0374218374, 0.0293557514, -0.0148053141, -0.0149777308, -0.0880372673, -0.000788992038, 0.0071740183, -0.0202101916, -0.0171366818, -0.0221742373, -0.0260123741, 0.0242732186, -0.02857613, -0.0135834077, 0.00874825381, -0.0118217627, 0.00474144891, -0.0118592437, 0.0294307154, -0.0160871912, -0.0121216169, 0.0502855927, 0.0021027294, -0.00928799249, -0.0427292623, -0.00282612839, -0.00158641755, 0.00945291203, 0.00245505851, -0.0349330455, 0.0152550964, -0.00200152863, 0.0293857381, 0.0116793318, -0.00519497879, 0.00552107, -0.000205681426, 0.0038906117, -0.0551132523, -0.0104574244, -0.0407502204, 0.00263497117, 0.00902561937, 0.0639289692, 0.00359450537, -0.00080398476, -0.00754508795, 0.0121815875, -0.0186209623, -0.0307350829, 0.0148802781, 0.0240933057, -0.0505554639, 0.0238534231, -0.0329839922, 0.0110046584, 0.0567324646, -0.015352549, 0.0139282402, -0.0225790404, -0.00744013907, 0.00739890896, -0.0110346442, -0.0078187054, -0.0399406143, -0.00940043759, -0.0249029137, -0.00540862512, -0.00982023403, -0.00192281674, 0.0420995653, -0.00549483299, -0.00463649957, -0.0322343558, -0.0226090271, -0.00239883573, 0.0334337726, -0.00628944719, -0.0523246042, 0.0319644846, -0.0161621552, 0.0192506574, -0.018501021, 0.00290109194, -0.0215745289, -0.00685167452, 0.0398206748, 0.0386812277, 0.00838093273, -0.0335837, 0.0115294037, -0.0300304238, 0.0137708159, -0.013628385, -0.0532841384, -0.028905971, 0.000419796241, 0.043269, 0.0234186333, 0.0471371226, -0.021319652, 0.0420096107, -0.0212896671, -0.0183061156, 0.0205250382, -0.0374218374, 0.024288211, -0.0271068439, -0.0654282421, 0.0146478908, 0.0034839341, 0.00711029908, 0.00940043759, -0.0116643384, 0.0271368288, -0.0360125229, 0.0283362474, 0.00629319577, -0.0442285351, 0.0422195084, 0.00828347914, -0.00863580871, -0.00985771511, 0.0101950523, -0.0105848629, -0.00547234388, -0.00475269323, 0.0227439608, -0.00642063376, -0.0286660865, -0.0192506574, 0.003004167, -0.0334337726, -0.0111620827, 0.0325941816, 0.0249778777, 0.0161471628, 0.00316908699, -0.00852336362, -0.0159522574, -0.0222791862, -0.0750235841, 0.0060120821, 0.020075256, 0.0458177626, 0.041469872, -0.0183061156, -0.0354428, -0.0185459983, -0.00773624517, -0.0105698695, 0.0110871186, -0.0218294058, -0.00814104918, 0.0150377015, -0.0277815163, 0.0496858843, 0.0261473097, -0.00086161308, -0.0572422184, 0.0298355184, -0.0117467986, 0.017766377, -0.0158173237, 0.0114394482, -0.0418296978, 0.00350080081, 0.0145579344, -0.0170317329, 0.0674672574, -0.00218706345, -0.0370620117, -0.00224516029, -0.00703158742, -0.00992518291, -0.00552481832, 0.0579318814, -0.00384188537, 0.00305476738, -0.00778871961, -0.0149402488, 0.00162671052, 0.00377067, 0.04293916, 0.0338235833, 0.0136958528, -0.0290708896, -0.0127812969, 0.0467173271, 0.0222492013, -0.00353828259, -0.00520997122, 0.00517998589, -0.0202701613, 0.0259823892, 0.0196554605, 0.0140781673, 0.0189957805, -0.0238984, 0.0354128107, -0.000249488279, -0.024872927, 0.00487263501, -0.0216494929, -0.016012229, 0.021319652, 0.00573846465, -0.00366759486, 0.00876324717, -0.0374518223, 0.00843340717, -0.0117168128, 0.000725741498, 0.00783369783, 0.00257687434, -0.0325941816, -0.00317096105, 0.0117093166, -0.027586611, 0.0207649209, 0.0499257669, 0.00144211261, -0.0211847182, 0.0191157218, 0.0408701636, -0.00395433092, -0.0231787506, 0.014730351, -0.0314247496, -0.0467772968, 0.0598509498, -0.0241682697, 0.00108509837, -0.0105548771, 0.0106373373, -0.00575345755, -0.0292657949, -0.0280513857, 0.0300004389, 0.00293482561, -0.0319045149, 0.00727521908, 0.0223991293, 0.0224291142, 0.00965531357, -0.0390710384, -0.0113419956, -0.0148203066, 0.0223691426, 0.0197903942, 0.0173615739, 0.015862301, 0.000543017697, 0.0115144113, 0.0443184897, 0.0255775861, 0.00283737294, -0.016671909, -2.98683153e-05, -0.00349517865, 0.00876324717, 0.042639304, -0.0505554639, -0.00902561937, 0.0472270772, -0.00548358867, 0.0101575702, 0.0135234362, 0.0123165222, 0.0226839911, -0.0042391927, 0.0395807885, -0.00336586637, 0.0248279497, 0.0130736548, -0.0280513857, -0.0335837, 0.00545735145, -0.0133060422, -0.0294307154, -0.00130717806, -0.0296855923, 0.00796113629, 0.0229238737, 0.0169867557, 0.0548733659, -0.00535989879, -0.0193556063, 0.0195954889, -6.2430634e-05, 0.0273917057, 0.00603831932, -0.0134184873, 0.0173016023, 0.00449781679, -0.0276315883, 0.0187858827, 0.028171327, 0.0145879202, 0.000509284087, 0.0146778757, 0.0466873385, 0.00687041553, -0.0165369734, -0.0332838446, -0.0268669594, 0.0376017503, 0.0152251106, 0.0021214704, -0.00948289782, -0.010622344, 0.0110196518, -0.0274216905, -0.0597310103, 0.0294157229, 0.063449204, -0.0181411952, -0.0157423597, 0.0112370458, -0.02212926, -0.0149252564, -0.0173465814, -0.0476468727, -0.000122518657, 0.0033996, 0.0148802781, -0.0139507288, -0.0112895202, 0.0187409036, 0.0380215459, 0.0208398849, -0.0178113561, -0.00490262033, 0.0189358089, -0.00462900335, 0.0291308612, -0.0470471643, -0.0277665239, 0.0230288226, 0.0209148489, -0.00823850185, 0.00152644666, 0.00968529936, 0.00117411767, -0.0184110645, 0.0288160145, -0.0108847171, 0.0187259112, -0.040780209, -0.00275866105, 0.0510352291, 0.0395508036, 0.00568973832, -0.0131411217, 0.0414998569, 0.00443035, -0.0322343558, -0.0153975263, -0.051215142, 0.0181861725, -0.0148802781, -0.014363029, -0.00549483299, -0.0252327528, -0.0028336246, -0.043269, -0.0314847194, 0.000387936714, 0.0358026214, -0.033883553, 0.0163420681, 0.0506154336, 0.00898064114, 0.00756757706, 0.0416198, 0.0349330455, 0.00745887961, 0.0365822464, -0.0355027691, -0.00420171069, -0.00436288258, -0.0189957805, 0.0264471639, -0.028171327, -0.0340034962, 0.0021214704, -0.00460276613, -0.00439286791, -0.0268069897, 0.0319644846, -0.0367921442, -0.0141231455, 0.00495884335, 0.0228489097, 0.00544985477, -0.0124064786, -0.0118367551, -0.00701284641, -0.0105848629, 0.0295806434, -0.0114244549, 0.00438537169, -0.020734936, -0.00685167452, -0.00583966589, 0.047886759, 0.02015022, -0.00611328287, 0.0400905423, -0.00443409802, 7.29138264e-05, 0.00937045179, -0.00552481832, 0.0156673957, 0.0340634659, -0.0160272215, 0.0183361, -0.00504879933, -0.0193106271, 0.0153675415, 0.00213833712, -0.0504355207, -0.0114094624, 0.0189508013, -0.0516349375, -0.0219193622, -0.0225040782, 0.0551432371, -0.0101725627, -0.0319045149, 0.0346931629, 2.7071821e-05, 0.00711029908, 0.00350642321, -0.017106697, -0.0585915633, 0.0047039669, -0.0490861759, 0.0187259112, -0.00717776641, -0.05400379, -0.005532315, -0.00459526945, -0.0692064092, 0.00338648143, 0.00228264206, 0.00212521851, -0.0143180508, 0.00954286847, -0.00149552419, -0.0332538597, 0.0292058252, 0.00926550291, 0.0170017481, 0.0101725627, -0.00669799931, -0.0126838442, -0.0297005847, -0.0342133939, -0.00401430158, -0.0127663035, 0.0178263485, 0.0240033492, 0.0727446899, 0.0352328978, 0.0207649209, 0.00378004042, -0.0273017492, -0.0592812262, 0.00653682742, -0.0426992774, 0.0134109911, 0.0545135401, 0.00624821754, -0.028501166, -0.0015020835, 0.00946040824, 0.00835844316, 0.0179912671, 0.0201202352, -0.00641313754, 0.0305851549, 0.029490687, -0.0394908339, -0.0375717655, 0.0270618647, -0.0296855923, -0.00440411223, -0.00922052469, 0.00150395755, 0.0225940347, -0.0237934515, 0.0501356684, -0.0243331902, 0.0236435253, -0.0315446891, 0.0104724169, -0.0112670315, 0.056012813, -0.00543111423, -0.00970778801, -0.0230738018, 0.0249928702, -0.00341459271, 0.0250528399, 0.00438537169, 0.0271218363, -0.023958372, 0.0132835526, -0.0162970908, 0.0114244549, 0.00935545936, -0.00369008398, 0.0176164489, -0.026777003, 0.00620323932, -0.0235385764, 0.0126988366, -0.031064922, 0.0155624468, -0.00930298492, 0.00152644666, -0.0120616462, 0.00967780314, 0.044948183, 0.00197154307, -0.0132460706, 0.0128337713, 0.0325342081, -0.0218593907, -0.0066230353, -0.0272567701, -0.0037350622, -0.0212746747, -0.00125845172, -0.0178263485, 0.0300604105, 0.0175864641, -0.00931048114, 0.0230288226, 0.0173465814, 0.00471896, -0.000146998966, 0.0241832621, 0.0258924328, -0.000519123045, 0.0185160134, -0.00794614293, -0.0116643384, -0.00103074976, -0.00140837894, 0.0159222726, 0.00195280218, 0.0363723449, -0.0232237279, 0.0143030584, -0.0218743831, -0.00880072825, 0.0183361, -0.00883821, -0.0114544407, 0.0149702346, -0.00113663578, 0.00557729322, 0.00652558263, 0.0158023294, 0.0298655052, 0.0186509471, -0.00495884335, 0.00215895218, -0.0288609918, 0.0267020408, 0.014400511, -0.00503005879, 0.0105923591, 0.00560353044, 0.0367321707, -0.00290109194, -0.0274816621, 0.020225184, -0.00483515346, 0.0288160145, -0.0116568422, -0.0025824965, 0.000825068273, -0.0117393024, 0.00443784613, 0.011904222, 0.0203001481, 0.0197754018, -0.0367921442, -0.00391310081, -0.0124514569, 0.00151801319, 0.00356264575, 0.0053336611, -0.021394616, 0.00791615807, -0.00974527, -0.0159972366, -0.0238684155, -0.0388911255, 0.0173165947, 0.0306601189, 7.06883511e-05, 0.00464024767, -0.0186509471, -0.0109821698, 0.0125788944, -0.0409001485, -0.010772272, 0.000945010106, 0.0217544418, 0.0182611365, -0.00299104839, -0.00490636891, 0.024693016, 0.0145954164, 0.00652933121, 0.00311286421, -0.0111470893, -0.00931048114, -0.00244381395, 0.00193968357, -0.0240033492, 0.0121815875, 0.0144529855, 0.00978275202, -0.0249029137, -0.0079311505, -0.00901062693, 0.000904717133, 0.0167318787, -0.0112370458, 0.144529849, -0.0131861, 0.0264921412, -0.000863487134, 0.00769876316, 0.0211397391, -0.0208398849, 0.012676348, 0.00813355204, 0.0377216935, 0.0183810778, 0.00107572787, -0.015022709, -0.02146958, -0.0114244549, 0.0139732184, 0.0147153577, 0.00782620162, -0.0270168874, 0.0155474544, -0.00377629208, 0.00983522646, -0.0468372665, 0.0196854454, 0.0359825343, 0.0117692882, 0.0495359562, 0.00691914186, 0.00259561511, -0.027436683, 0.0285911225, -0.00886819605, -0.0171366818, -0.00232949434, 0.0297155771, 0.012016668, 0.00811106339, -0.0396107733, -0.00126501103, 0.00315971649, 0.0304352287, -0.0294607021, -0.000491011713, -0.0339735113, -0.0191157218, -0.0200152863, -0.00402179779, 0.00231075357, 0.0205250382, 0.0342733636, -0.00104855362, 0.00121534767, -0.0145654306, 0.00637940364, -0.0110121556, 0.0147003653, -0.0180962179, -0.00487638311, -0.0279014576, -0.0274666697, -0.0165519658, 0.00663802819, 0.019160701, -0.00398056814, 0.0112145571, -0.0162820984, -0.00821601227, 0.0336436704, 0.0137483273, 0.0155774392, 0.0252627395, 0.0204950534, 0.0373318791, -0.00417922158, -0.00162202527, -0.00421670359, -0.0129387202, -0.0247379933, -0.0158473086, -0.000860207481, -0.0306901038, -0.0145579344, -0.0193855911, -0.00367696537, -0.0170467272, -0.0705257729, -0.00517623778, 0.0117467986, -0.00231262762, 0.0176164489, -0.00399930915, -0.00229388662, -0.0201802049, 0.00893566292, -0.00889818091, -0.0034108446, 0.0440186337, 0.00744388718, -0.00532991299, 0.00330402143, 0.00146647578, -0.0162970908, -0.0226540044, -0.00730895251, 0.0224141218, 0.0190407578, -0.000985771534, 0.00861331914, -0.00110477628, 0.0134184873, -0.0555030629, -0.0239733644, 0.00511251856, -0.00401055347, 0.0170767121, 0.00187783863, 0.0336736552, 0.0134634655, 0.0121965799, -0.0170917045, 0.00349892676, 0.0105923591, -0.0201052427, -0.0515749678, -0.0144679779, 0.0129537126, -0.00666051731, 0.00425793324, 0.0473770052, 0.0338235833, -0.0135759106, 0.00491011702, 0.00913806446, 0.011319506, -0.0527144149, -0.0365822464, -0.0237334818, 0.024872927, 0.0108997095, 0.0119342078, 0.00885320269, 0.00971528422, 0.00785618741, 0.00763129629, 0.0119117182, 0.0114019662, 0.0264471639, 0.0122940326, 0.0216494929, 0.00585840642, 0.0414398871, 0.0311848652, -0.0346331894, 0.00660429476, -0.000448141858, -0.0131711075, -0.0217994191, 0.0298505127, -0.0348430872, 0.00359075726, 0.0189058241, 0.013958225, 0.00821601227, 0.0105173951, -0.0434489138, -0.0104124462, 0.0313347913, 0.0100076431, 0.00477893045, -0.034033481, 0.0536139794, 0.0297155771, -0.0190707445, 0.0157423597, -0.000308990653, -0.0080810776, 0.0381714739, 0.00709530618, 0.0199103374, 0.0362224206, -0.00485764211, -0.023043815, 0.02344862, 0.0158772934, -0.0118667409, 0.0280513857, -0.011102112, 0.00754508795, -0.0019565504, -0.03451325, 0.00848588161, -0.0176614281, 0.0106748194, 0.00397682, 0.0247529857, 0.00830596872, 0.0170167405, 0.0125713982, -0.00984272268, 0.005697235, -0.00506379222, -0.0469272248, 0.0435988382, -0.00639064843, -0.00503005879, 0.0152550964, 0.00386437448, 0.0126163764, 0.0089581525, -0.0120916311, -0.00120035489, 0.00666051731, -0.000581436558, -0.0426692888, 0.00990269333, 0.024723, 0.0024325694, 0.00823850185, 0.00895065535, 0.00254314067, 0.0155174686, 0.00303415232, -0.0132235819, -0.0244981106, 0.0152475992, -0.00831346493, -0.0269119386, 0.00968529936, -0.0522946194, 0.00643937476, 0.0307950526, -0.00868828315, 7.17791272e-06, -0.0336736552, -0.00965531357, -0.00273054978, -0.00700534973, 0.00844090339, 0.0259524044, 0.0183510929, -0.0223691426, 0.00135028211, 0.00465524057, -0.034663178, -0.0207799152, 0.0244381391, -0.0136058964, -0.00798362494, 0.00434039347, -0.00735018263, -0.0166869015, 0.021979332, 0.00554355932, 0.00535615, -0.00684417831, -0.0241532773, 0.0389810801, 0.00446783146, 0.0244081542, -0.0191007294, -0.0298804976, 0.0423694365, -0.0165369734, -0.0132910488, -0.000869577925, -0.000721993332, 0.0450681262, 0.0100301318, 0.019565504, -0.0305101927, -0.0232387204, -0.0158323161, 0.0187409036, -0.0309149958, -0.0114169586, 0.0369120836, -0.014730351, -0.0117542949, 0.0152101181, -0.0321144126, 0.0331039317, -0.0079986183, 0.0226989836, -0.0236735102, 0.014947745, -0.00343333371, 0.0155474544, 0.0242432337, 0.0135159399, -0.000424012949, -0.00863580871, -0.0112220533, 0.0214995649, -0.0356526971, 0.0148427961, -0.0408701636, -0.00218144129, 0.0235835537, 0.0488762781, -0.00203713635, -0.0397307165, 0.00361886853, -0.0361324623, -0.00399930915, 0.0153825339, -0.0263871923, 0.00787867606, -0.005678494, 0.00226015295, 0.029565651, -0.00401430158, -0.00506379222, -0.00522121601, -0.0137933055, -0.0143930139, -0.0103749642, 0.000967967673, 0.0296706, 0.0102775116, -0.00613577198, 0.0109596811, 0.028905971, -0.00362823904, -0.000126969622, -0.0155774392, 0.00112820242, 0.00199028407, -0.00337523688, -0.0208998565, 0.0244381391, -0.0089281667, -0.0129462164, -0.0296406131, -0.0198953431, -0.0300304238, -0.0107422862, -0.00104480539, -0.0130136842, 0.0159522574, -0.00838093273, -0.0164170321, 0.041469872, -0.0341834091, 0.00656681275, -0.0253377017, -0.0278864652, -0.0110196518, 0.0217544418, 0.0043553859, 0.00701659452, -0.00817853, -0.0298055336, 0.00336961448, 0.0121815875, -0.000868172385, -0.0301653594, -0.0185609907, -0.0173765663, -0.0311848652, -0.00236322801, -0.00467398157, 0.016447017, -0.00406302791, 0.0224740915, 0.00351204537, -0.00147678319, 0.0108247465, -0.00369383208, -0.0316946171, -0.0087107718, -0.0203601178, 0.0194305684, 0.0240633208, 0.00678420719, 0.0253976732, -0.00879323203, -0.00385313, 0.0138607724, -0.00922052469, 0.0337036401, -0.0131336255, 0.0106523298, -0.000851305551, -0.0328040794, 0.00265933434, -0.000185652083, -0.000759006594, -0.015022709, -0.00475644134, 0.00408176892, -0.0124139749, 0.026267251, -0.012931224, -0.00750010973, -0.0514250398, -0.0074513834, -0.0101350807, 0.0114544407, 0.0293557514, 0.00483890157, 0.00915305782, -0.0383214019, -0.00287298067, -0.0162371192, 0.00314847194, 0.000292826619, 0.0141456341, -0.00817103405, 0.000710280263, -0.00961033534, -0.0112145571, 0.00838842895, -0.0193406139, -0.00900313072, -0.00838093273, 0.0248279497, 0.0322643407, -0.00818602648, -0.00570847932, -0.0208099, 0.0216944702, -0.0206449796, 0.0171216894, 0.0045390469, -0.00146366458, -0.00721524796, -0.0027474165, 0.0235385764, 0.0173465814, -0.00083350169, 0.0019565504, 0.0131186331, -0.00564850867, -0.00953537226, -0.0113494918, -0.00804359559, -0.0115069151, 0.0175115, -0.0207649209, 0.0373618677, 0.0121965799, 4.34261892e-05, -0.0246780217, -0.0110571338, 0.00573471654, -0.0290558971, -0.035202913, -0.00529617956, 0.00880072825, -0.0412000045, 0.0235085897, 0.000859270454, 0.00985021889, 0.0152101181, 0.0739441141, -0.0071365363, -0.0193705987, -0.0272417776, 0.0163420681, -0.0108922133, 0.00410800613, 0.0156823881, 0.0400605574, -0.00936295558, 0.0197004378, -0.0184110645, -0.00754508795, -0.00180193793, -0.0268369745, 0.0226090271, 0.018755896, 0.0179462899, 0.00901062693, -0.0118067693, -0.0137783131, -0.0150826797, -0.00981273782, 0.0193256196, 0.00769876316, -0.0235835537, -0.00287485472, -0.0108247465, -0.0602407604, -0.00738766417, 0.00522121601, 0.028171327, 0.00872576516, -0.00702409074, 0.0241532773, 0.0297155771, 0.00917554647, 0.00357389031, -0.00530367577, 0.0310349371, 0.0139882108, -0.0321144126, -0.0137858093, 0.00198278762, -0.0238234363, 0.0024363175, -0.0180662312, -0.00504879933, -0.00985021889, 0.00752259884, 0.0102550229, -0.0151501466, -0.0135834077, 0.00334150321, 0.000168199607, 0.0325042233, 0.0218743831, -0.00747762062, -0.00205587712, -0.0205700155, -0.000110981295, -0.0179912671, 0.0132910488, -0.0123540042, 0.0152850812, -0.00196404685, -0.0315147042, 0.0101950523, -0.0255026221, 0.00770626, 0.00910058338, -0.00114788034, -0.015352549, 0.00686666742, -0.0280963629, -0.0124439606, -0.00715902541, -0.0249328986, 0.0264621563, -0.0137183415, 0.014730351, 0.0330139771, -0.00613577198, 0.00404803548, -0.0128487637, -0.00922802091, -0.00493260613, -0.00902561937, -0.0141831161, -0.0159522574, 0.00949789, -0.0230738018, -0.0060308231, -0.0100826062, 0.0301803518, -0.00495134667, 0.0128787495, 0.0258174688, 0.0136058964, 0.00443035, 0.00441160891, 0.0234186333, 0.0220093168, -0.024723, 0.0129911946, 0.015532461, 0.000878011342, 0.011904222, 0.00758631807, 0.0176914129, 0.00360762398, 0.0206149947, 0.0129237277, -0.0194755476, 0.00559978234, -0.00297792954, 0.0137108453, -0.00436663069, 0.00544235855, 0.0158323161, -0.0229688529, 0.0260873381, -0.0117542949, -0.0121291131, 0.0129612088, -0.0089581525, -0.00830596872, -0.00669799931, 0.0102775116, 0.0208398849, -0.00565600488, 0.00998515356, -0.00169511477, -0.00525120134, -0.0109147029, -0.0258024763, -0.00325342105, 0.0265371203, -0.00573846465, 0.00290296599, -0.0150077157, 0.0314247496, -0.0299254749, 0.00480891578, 0.0275716186, -0.0312448349, -0.0186059698, -0.0098877009, -0.00132123369, 0.00398056814, 0.0209448338, -0.0281413421, -0.00629694387, 0.0100076431, 0.017106697, -0.0278714728, 0.02278894, -0.0192956347, -0.00787118, -0.0130586624, 0.0099551687, 0.0202551689, 0.0296406131, 0.0130136842, 0.025532607, 0.00284112105, -0.000446736289, -0.00282238, 0.0271368288, 0.012893742, 0.00313910143, 0.0139057506, 0.00179163041, -0.0272417776, 0.0227589533, -0.0350529887, 0.0463874862, 0.00673548086, 0.0153300595, 0.00555855222, -0.0163870472, -0.0156524032, -0.0209298413, -0.00967030693, -0.0244681239, -0.00212709256, 0.00306038954, -0.0119941784, -0.00161265477, 0.000995142, -0.00866579451, 0.00924301427, 0.0243032053, -0.0033377551, 0.00567099778, -0.00652933121, -0.0296256207, 0.000239766436, -0.00685542263, 0.017181661, -0.0233886484, -0.00399181247, -0.0186359547, 0.021904368, -0.00325342105, -0.0267320257, -0.0361624472, -0.00912307203, 0.023628531, -0.00388686359, 0.0138008017, 0.0117767844, -0.00483890157, -0.0139057506, 0.0306601189, 0.0195954889, 0.0179912671, -0.00482765678, 0.016521981, -0.00100076431, 0.039460849, 0.0031822056, -0.0129537126, -0.0210197978, 0.00258999295, 0.0029160846, -0.00693413429, 0.0217094626, 0.0191157218, 0.0156224174, -0.0508853, 0.0369720571, 0.0383813716, -0.0183061156, 0.00160984369, 0.0103749642, 0.024288211, -0.012893742, -0.0140032033, -0.0143480366, 0.0258774403, 0.0127887931, -0.0125788944, -0.00162202527, -0.00803609937, 3.73353942e-06, 0.00978275202, -0.0187858827, -0.0108997095, 0.00221330067, -0.00378191448, -0.0131786037, 0.0199253298, -0.0055173221, 0.00552856689, -0.00163420686, -0.000622198044, -0.0120241642, -0.0162970908, -0.0381714739, 0.00122940331, 0.0095578609, 0.0110046584, 0.00657430897, -0.0324442536, 0.0213346444, -0.0179013107, 0.0047039669, 0.00505629601, 0.00335274776, -0.0143405395, 0.0149627374, -0.00467023347, 0.00903311558, -0.021394616, 0.0244231466, 0.0183660854, 6.37190751e-05, -0.0169117916, -0.0142131019, 0.00700534973, -0.00449406868, -0.00768377073, 8.42755e-05, -0.00653307931, 0.018426057, -0.00422045169, 0.0138382837, -0.0186209623, 0.0139732184, 0.011941704, 0.00812605582, 0.0398506597, 0.00967780314, -0.010112592, -0.00151988736, 0.0184860285, 0.00685542263, -0.0193406139, 0.0100975987, 0.0254276581, 0.0184860285, -0.0228189249, 0.0263722, 0.00794614293, 0.00248504383, 0.0037987812, -0.00053458428, 0.00237822067, 0.00647310819, 0.0195505116, -0.0408401787, -0.0151801324, -0.0241682697, -0.00414548814, 0.00104574242, 0.0156673957, -0.00151988736, 0.00950538646, -0.0190857369, -0.0222791862, 0.00861331914, 0.0146478908, 0.0086283125, 0.0170017481, -0.0315147042, 0.00213084091, -0.000181903903, 0.00832845736, 0.0155624468, -0.0168818068, -0.0226240195, -0.0109147029, 0.0549933091, 0.00562601956, -0.0216944702, 0.0173765663, 0.0059970892, 0.0133585166, -0.00756382896, -0.00102512748, -0.00582092488, -0.000184597899, -0.0179612823, 0.00874075759, -0.0297905412, 0.00693788286, 0.0254126657, -0.0124139749, 0.00399181247, -0.0105998553, -0.0183660854, -0.00989519712, 0.0060120821, 0.0116793318, 0.0151801324, -0.0151576428, 0.0145954164, -0.0287110656, 0.00590713276, -7.48464881e-05, 0.012893742, -0.0118442513, -0.0370020419, -0.00646936, -0.0101875551, 0.00398056814, -0.0181561876, 0.0347831175, 0.0195505116, -0.0221442524, 0.013665867, 0.0326541513, 0.0120466528, 0.0245580804, 0.0118667409, 0.0184710342, 0.012638866, -0.00878573582, -0.0316946171, -0.0111545864, -0.00570473121, -0.0154724903, -0.00361137232, -0.0320544429, -0.00026729214, -0.00646936, 0.0084109176, 0.0017785118, -0.00864330493, -0.00458402513, 0.00793864671, -0.00926550291, -0.00147397211, -0.020659972, 0.0133285308, -0.0233286768, 0.0118517475, -0.010952184, 0.0134184873, 0.00464024767, -0.00433289725, -0.00393184181, 0.00172228913, 0.00629694387, -0.000197013753, -0.0210347902, -0.0244831163, -0.00257500028, -0.0296855923, 0.00955036469, -0.00562227145, -0.0242132489, -0.0064768563, 0.0125189237, 0.0159822423, 0.00171947794, 0.012309026, 0.0122115733, 0.0124214711, 0.00535240211, 0.000825536845, 0.00490262033, -0.00437787501, 4.30162327e-05, -0.0174965076, 0.0283812247, -0.0247529857, -0.000856459315, -0.0120391566, 0.00600833399, 0.0021121, -0.00157142477, -0.001492713, -0.00139151211, 0.0182311516, 0.00442660134, -0.00286923232, 0.00727896718, 0.000674672541, 0.00580968, 0.0283362474, -0.0148053141, 0.00586590311, -0.000859738968, 0.00430291146, 0.0185160134, 0.0126463622, -0.0143030584, -0.00984272268, 0.00330214738, 0.0188758392, -0.0187259112, 0.00422794791, -0.00526244566, 0.0107422862, 0.00488013122, -0.0113869729, 0.0128112817, 0.000688259723, -0.025607571, -0.0207649209, -0.00961783156, -0.0154574979, 0.01949054, 0.00449781679, -0.00377067, -0.0183061156, 0.00634567, 0.0187708903, 0.00429916335, -0.0188458525, 0.00173540774, -0.00239133928, 0.00411925092, 0.00028860991, -0.0177813694, 0.00431415625, 0.0095578609, -0.000215520398, 0.00349892676, 0.00976776, 0.00492136134, 0.00775873428, 0.0257874839, 0.036522273, 0.0048501459, 0.00119285856, 0.0149702346, -0.00214208523, 0.0164020397, -0.0103974538, -0.00534490589, -0.0018197418, -0.0175414868, -0.000190688705, -0.000587527349, 0.00574970944, 0.00133247825, -0.0177813694, -0.00331526599, 0.000228404766, -0.0110796224, -0.0045390469, 0.00330776954, 0.0157273673, -0.0164919961, 0.0342433788, 0.0161771476, 0.00528868334, 0.0193106271, -0.0417397432, -0.00458402513, -0.00491386512, 0.00180381199, -0.0058321692, -0.0126313698, -0.0196404681, 0.0247080084, -0.00449406868, 0.0291458536, 0.00127906667, 0.00609829, -0.0302853, -0.00771375606, 0.0167768579, 0.0134184873, 0.00951288268, 0.0346931629, -0.00624821754, 0.0115893753, 0.00439286791, -0.00312785688, -0.0034783117, 0.0177813694, 0.00149739825, 0.00751510262, -0.00449781679, 0.0121366093, 0.0193855911, 0.00598959299, 0.0133435233, 0.003086627, -0.0240933057, -0.00994767155, -0.00709905429, 0.00770626, -0.00681794109, -0.00810356718, 0.00013716, 0.00913806446, -0.0232687071, -0.031574674, 0.00788617227, 0.0312748216, 0.00571597554, -0.0185160134, -0.0121890837, -0.0258474555, -0.00478642713, -0.0208698716, -0.00866579451, 0.0247080084, -0.00415673247, -0.00423544412, -0.00975276623, -0.00630444, -0.0174965076, -0.00673173275, -0.00271743117, -0.0195355192, 0.0298055336, -0.0123839891, 0.00251502939, 0.0121291131, 0.0132685602, -0.0119492, -0.0079311505, -0.00176820427, 0.00869577937, -0.00868078694, -0.0117617911, 0.00838842895, -0.0116943242, 0.0137708159, 0.016671909, 0.00425418513, 0.0218443982, -0.0190107729, 0.0277065523, -0.00763879251, 0.0024325694, -0.0174815152, 0.00595960766, -0.00423544412, 0.000639533333, -0.00109821698, -0.0136133926, 0.00931797735, -0.00344645232, -0.0185310058, 0.00175227458, -0.00204088446, -0.0110946149, 0.00628944719, -0.012309026, -0.0155774392, -0.00875575, -0.0157123748, 0.0167018939, 0.0122415582, -0.0126988366, -0.00754508795, -0.00985771511, 0.0231337715, -0.0107947607, 0.00793864671, -0.00315222, 0.00507503701, 0.00448657246, 0.00358700915, -0.005697235, -0.00738766417, -0.00587714743, 0.00702034263, -0.00404428691, -0.00411175424, -0.00609454187, 0.00136621192, 0.00156299141, 0.0131786037, 0.0134709617, -0.00267994939, -0.000658742792, 0.00272680144, 0.00453529879, -0.0172266383, -0.0211097542, -0.0110571338, 0.000549108488, 0.020884864, 0.0084484, 0.00579468766, -1.3140595e-05, 0.000586590322, 0.00643187808, -0.00672423653, -0.00661179097, 0.00184972724, 0.00081288669, 0.0157423597, 0.0313947611, -0.0165069886, -0.00577969477, -0.00644312287, -0.00684417831, 0.000892067037, 0.0079011647, 0.00241945079, -0.00560727855, 0.00733518973, 0.00817853, -0.0176014565, 0.0104574244, 0.00638315175, -0.0143780215, 0.0170917045, 0.0205400307, -0.00081288669, 0.0170017481, -0.0158023294, -0.0121890837, -0.0143030584, -0.0246180519, -0.0297605563, 0.00337148854, 0.00767627452, 0.00361699448, -0.00922802091, 9.74527e-05, -0.0154574979, 0.00359450537, 0.0263572074, -0.0128712533, 0.00167168863, -0.0209748205, 0.0135984, -0.0106823156, -0.0182161592, 0.000921583967, -0.0228339173, 0.000931891438, -0.0200902484, -0.0029985446, 0.00216082623, -0.0352928713, -0.0324442536, 0.00782620162, -0.00116662122, -0.000793208776, 0.0169567708, 0.000515374879, -0.00317845726, 0.0180362463, 0.0134859541, 0.0167168863, -0.0188158676, -0.00528493477, 0.0287560429, -0.00770626, -0.00904810894, -0.00614701631, -0.0204350818, -0.0059933411, -0.00787118, 0.0119342078, 0.00543111423, 0.0349930152, 0.0404203832, 0.00691914186, -0.0160272215, 0.00298167788, 0.00660804287, 0.00216457434, -0.00017077649, 0.005532315, 0.00303790066, -0.0245730728, 0.0180812236, 0.00757507328, -0.0126463622, 0.0130136842, 0.0183810778, -0.000928611786, -1.54466052e-05, -0.00467023347, -0.0189208165, 0.00699410541, 0.0155474544, 0.0207049511, 0.0151126655, -0.0233136844, 0.00278677233, -0.0161171779, -0.00242132484, 0.00466648489, 0.00220767851, -0.00547234388, -0.0246330444, 0.00726022618, 0.00481266435, 0.00653682742, 0.00497008767, -0.0169417765, 0.00284486916, -0.000593618141, -0.00570473121, 0.0144604817, 0.00808857381, 0.0139207439, -0.00382127031, -0.0319644846, -0.0181262027, 0.00368258776, -0.00447157957, 0.0128862457, -0.00425793324, -0.000901906, -0.00335837, -0.0056635011, -0.0129762022, 0.00334525132, 0.0186209623, -0.00229013851, 0.00135590439, 0.00859083049, 0.00884570647, 0.010037628, -0.00111602084, 0.0105623733, 0.0201951973, -0.0218893755, 0.00252439966, 0.0207499284, 0.0425793342, 0.0012134735, 0.000417687901, 0.0177064054, 0.0319944732, 0.00445658714, 0.00647310819, 0.024723, 0.00877074338, 0.00427292613, -0.000495696906, 0.0084109176, 0.00676546618, 0.00949039403, 0.00830596872, -0.00434788968, 0.0015086428, -0.0121815875, -0.0189208165, -0.0264021847, 0.00396557525, -0.0308850091, 0.000625477696, 0.00964032114, -0.00450531347, -0.0229838453, 0.0243931599, 0.00607205275, -0.00513125956, 0.00790866185, -0.0271668155, -0.00698286109, 0.00559603376, 0.00375567726, 0.0194455627, 0.00745887961, 0.00727147097, -0.0150526939, 0.000203924457, 0.00598584488, -0.0191307142, -0.0274666697, 0.0111470893, -0.0126163764, -0.00358138676, 0.00171947794, -0.00505629601, -0.0032365541, -0.0112895202, -0.0084484, 0.00754883606, 0.0130586624, 0.00428791903, 0.00496633956, 0.00806608517, 0.0161321703, 0.00913056824, 0.0170467272, 0.0211247467, -0.0149327526, 0.0158922859, 0.0190557521, 0.0171216894, -0.00417547347, -0.00760505907, -0.0100601176, 0.0131935962, 0.00114788034, -0.00217956724, -0.00396182714, 0.0118292589, 0.00216082623, 0.00974527, -0.0182761289, 0.00901062693, -0.0105923591, 0.00216644863, 0.0112595353, -1.34334214e-05, 0.0234935973, -0.0102325333, 0.0101950523, 0.0061432682, -0.0240933057, -0.00602707453, 0.00915305782, 0.0030810046, 0.000514437794, 0.0183361, -0.00416048057, 0.00115069153, 0.00160141021, 0.00335837, -0.0169117916, -0.019160701, -0.0287260581, 0.00500382157, -0.00411925092, 0.0108322427, -0.0285461452, 0.000557541905, -0.00741765, 0.0124364635, 0.00931048114, 0.01007511, 0.00383438892, -0.00439661602, 0.0133585166, 0.00898064114, -0.0126238726, 0.0127363186, 0.0100975987, 0.0156973805, 0.00342396321, -0.0301653594, 0.0130211804, 0.00384563347, 0.00904810894, -0.00363011309, 0.00723024085, -0.0167768579, -0.00245318445, 0.0141606275, 0.00792365428, 0.0161921419, 0.0203001481, -0.00922052469, 0.00392434513, 0.0209148489, 0.011319506, 0.0024325694, -0.0143330432, -0.0255775861, 0.00770626, 0.0012069142, 0.00520622311, 0.0128487637, 0.0228189249, -0.0228639022, 0.0132310782, 0.012309026, 0.0076350444, 0.00287110661, 0.00397307146, 0.012271544, 0.012271544, -0.00925051048, 0.00142524578, -0.00413049525, -0.016447017, 0.0020390104, -0.0135759106, -0.00276990561, 0.0178863183, -0.000466648518, -0.00167918496, -0.0159972366, -0.0272717644, -0.00592212565, 0.0245280955, -0.00424668891, 0.0058471621, -0.00740265707, -0.00442660134, -0.0244981106, 0.00918304268, -0.00973027758, 0.0128562599, -0.0196704529, -0.00576470187, -0.0040555317, -0.0207199436, 7.58420938e-05, 0.00575720565, -0.00159672508, 0.0118892295, -0.0233436693, 0.00652933121, -0.00881572161, 0.0286510941, 0.0173016023, -0.0239883568, -0.00206149952, 0.00589588843, -0.0179762747, -0.00370320259, 0.00100732362, 0.0188008752, 0.00351017131, -0.0343033522, 0.0237484742, 0.00498133246, 0.0123689966, -0.0119716898, 0.0107048042, -0.0195355192, -0.0031540941, 0.0107048042, -0.0226090271, -0.0246180519, 0.01949054, -0.0120316604, 0.00750385784, -0.005348654, 0.00837343559, -0.0282762758, 0.00414173957, 0.0123315146, 0.0157573521, 0.00157048774, -0.00276803155, -0.00615076488, -0.00272867572, -0.0214995649, 0.00911557581, 0.00839592516, 0.0238384306, 0.0227439608, 0.0138682686, 0.00510877045, -0.00860582292, -0.0072864634, -0.00267245295, 0.0018675311, 0.00325154676, -0.0178863183, 0.0132385744, 0.0116418498, 0.00880822446, -0.0122790402, -0.00192469079, -0.00298167788, 0.00764628872, -0.0111845713, 0.0198953431, -0.00584341399, -0.00356639409, 0.00200902484, 0.00808857381, 0.0231487639, -0.00771375606, 0.00780371251, 0.00492510945, 0.00152832072, 0.00961033534, -0.0192506574, 0.0115294037, 0.000755726942, 0.0119117182, 0.0185609907, -0.00345769688, 0.0138382837, 0.0153675415, -0.00067607814, 0.0101950523, 0.000787118, 0.00493260613, 0.0218593907, -0.0169117916, -0.00545735145, -0.00604206743, -0.00215145573, -0.0076013105, 0.00858333427, 0.0231037866, -0.0071740183, -0.00678045908, -0.00617325399, 0.0157423597, -0.0241382848, 0.0240483284, 0.0399406143, -0.00242132484, 0.0113120098, 0.0125788944, -0.00769126695, -0.00594461476, -0.00711404718, -0.0218593907, 0.0129612088, 0.0172116458, -0.00985771511, -0.0127588073, -0.016521981, -0.000479064358, 0.0222941786, 0.00340709626, -0.000446970575, -0.0118892295, 0.00499257678, -0.0131336255, 0.0168668143, 0.0182911232, 0.000491480227, 0.0238084439, -0.00652183453, 0.0134109911, -0.00615826109, 0.021904368, -0.00481266435, -0.00786368363, -0.0319045149, -0.000117599171, -0.00386062614, 0.0321443975, 0.0256225634, 0.0032271836, -0.00629319577, -0.016012229, -0.0230588075, -0.0178863183, 0.017331589, 0.00206524762, 0.0102400295, 0.00542736566, -0.0213496387, -0.00875575, -0.00605331222, 0.00709155807, -0.00211584801, 0.005697235, 0.00687041553, -0.00441910513, -0.00790866185, 0.0205250382, 0.0247979648, -0.0127438148, -0.00215332978, -0.00915305782, 0.015937265, -0.0434189253, -0.0160572063, 0.013958225, -0.0127513111, -0.0157123748, -0.0216195062, 0.00408926513, -0.000950632384, -0.0185609907, -0.0018197418, 0.0146029126, 0.0313947611, -0.00852336362, -0.000367790257, 0.0129237277, 0.00558104133, 0.0189358089, -0.00898813736, -0.0311548784, 0.0224890858, 0.0148727819, -0.00424294081, 0.00419421447, -0.0246180519, 0.00138870103, 0.00236510206, 0.00711404718, 0.0024325694, 0.00226015295, -0.00305101927, 0.025097819, 0.0269419234, -0.0107197976, 0.0267919973, -0.00705032796, 0.00428791903, -0.0124514569, 0.00598959299, -0.0203751102, 0.000994205, 0.0128787495, -0.00927299913, 0.0121590989, -0.0161921419, -0.00758631807, 0.0122115733, -0.0200902484, -0.015202621, 0.00971528422, 0.0171966534, 0.0125339171, -0.0148203066, -0.0019087611, 0.0319644846, 0.0106298411, -2.23133884e-05, -0.0197154302, -0.000954849063, 0.00204088446, 0.0321743824, 0.00936295558, -0.000621260959, -0.00562976766, -0.00248129573, -0.00288047688, 0.00787118, -0.0016548218, 0.00633067731, 0.00525869755, 0.00699410541, -0.00184785319, -0.0127438148, -0.0171516761, 0.00684792642, 0.00592587376, -0.0117093166, -0.00507503701, -0.023373656, -0.0123015298, 0.00191438338, -0.00500756968, -0.00594461476, 0.00124345894, 0.00455404, -0.0310349371, -0.0181411952, 0.00723024085, 0.00315596815, -0.00156018022, -0.0261173248, 0.0138008017, -0.00369008398, -0.00914556161, 0.00400680536, -0.0116343535, -0.0235685613, -0.0121516027, -0.002344487, 0.00253002206, 0.0246630292, -0.00103824609, 0.0138457799, 0.028846, -0.00358513487, 0.0148802781, -0.0131935962, 0.00820851605, 0.00363760954, 0.0100975987, -0.00591088133, 0.013590904, -0.0215895213, -0.000923926593, -0.012016668, -0.00874075759, 0.0180662312, -0.0252927244, -0.0182911232, -0.0118592437, -0.0138232913, 0.010989666, 0.0166269299, 0.0073052044, -0.00294607016, -0.0107123, -0.0157423597, -0.0320244581, 0.0226689968, -0.0144304959, 0.00953537226, 0.00351579371, 0.0116043678, 0.00850087404, -0.0125788944, 0.017106697, -0.00497008767, 0.00795364, -0.0272567701, -0.00403679069, 0.0114844264, 0.00742139807, 0.0101425769, 0.00852336362, 0.0114544407, 0.0124664493, 0.0151276579, -0.0165369734, -0.012638866, 0.0301203802, -0.0159072801, 0.0295506567, -0.0100601176, 0.00439286791, 0.000704189471, 0.0167768579, -0.0053336611, 0.00353078637, -0.0154275121, 0.0123839891, -0.0107123, 0.0403604098, -0.0104949065, 0.0239283871, 0.0258324631, 0.00104761659, 0.00375380297, 0.0103974538, 0.0182761289, -0.0204350818, -0.00670549553, 0.00945291203, -0.0132460706, 0.00786368363, 0.00223953812, 0.000845683273, 0.0169867557, -0.00477143424, 0.00233324245, 0.00459901802, 0.000534115767, 0.0220243111, -0.00448657246, 0.018755896, -0.0159972366, -0.0109072058, 0.0171516761, -0.00751135452, -0.0222492013, 0.00229576067, -0.005367395, -0.0180512387, 0.0145204524, -0.00248316978, 0.0156374108, -0.0161471628, -0.0210048053, 0.000633911055, -0.00154518755, 0.0150976721, 0.021979332, -0.0148128103, -0.0272867568, -0.00285798777, 0.024693016, 0.0256675426, -0.0279614292, -0.00309787155, 0.00922052469, 0.00068919675, -0.000360293867, -0.00435913447, -0.0067992, -0.0063419221, 0.00700534973, -0.00450531347, -0.000441348297, -0.0079686325, 0.00449781679, 0.00620698743, -0.0122190695, -0.00163045863, -0.0157573521, 0.0159222726, -0.00189283129, -0.0228489097, -0.0090780938, 0.00157704705, -0.0196554605, 0.00769876316, 0.00869577937, 0.0115593895, 0.00510877045, -0.00943042338, 0.0129911946, 0.0241982546, 0.0226989836, -0.0147378473, -0.0231637582, 0.00264808978, 0.0125788944, -0.00532616489, -0.00497008767, 0.00265558599, -0.00452780258, 0.0025824965, 0.00608329754, -0.0103149936, 0.0132535677, 0.00390560436, 0.0168518201, -5.51099693e-05, -0.00519497879, 0.0134709617, 0.0205850098, 0.0260873381, 0.0288759843, -0.00283737294, -0.0129537126, -0.00936295558, 0.0194455627, 0.011282024, -0.000259327266, -0.00837343559, 0.00578344287, 0.0126538584, 0.0128787495, -0.0140032033, -0.00796113629, 0.00296668522, -0.000909402384, 0.00783369783, 0.0124964351, -0.002610608, -0.00592587376, -0.00279426877, -0.000609547889, -0.0143930139, -0.0770626, -0.0127588073, -0.00889818091, 0.0246780217, -0.00138214172, -0.0117393024, -0.00866579451, -0.0113270022, -0.00076884561, 0.00979774445, 0.00981273782, -0.00398431625, -0.00322905788, 0.00304914499, -0.0078187054, -0.00525120134, 0.0105323885, 0.0173465814, -0.011027148, 0.000637190766, 0.0153450519, -0.0123240184, -0.0126088802, 0.00630444, 0.0104724169, 0.00526994234, -0.0161021855, 0.0215295497, -0.0188158676, -0.00896564871, 0.0114544407, 0.0166869015, 0.0136958528, 0.00993267912, -0.0115369009, -0.00859083049, 0.0155924326, -0.0264471639, 0.00768377073, -0.00705782464, 0.00135871558, 0.000344598375, 0.000114788039, -0.00235760584, -0.0193855911, -0.016012229, 0.00292920321, 0.0118967257, -0.0135684144, 0.00444534235, -0.0252327528, 0.0154724903, 0.00222454523, 0.0149552412, 0.00362261664, 0.000866298273, -0.0239433795, -0.0154724903, 0.0140631748, 0.00670924364, -0.00966281, 0.00229950901, -0.001451483, -0.0146703795, 0.00161640299, -0.000779153081, 0.0064918492, -0.00436288258, -0.00156673964, 0.0319345, 0.0144379921, -0.0176914129, -0.00097640109, 0.000609547889, -0.0195804965, 0.0180962179, -0.0100901024, -0.00443784613, 0.0105398847, 0.0115893753, 0.00605331222, 0.000408317457, 0.0195505116, 0.00426168181, -0.00979774445, 0.00945291203, -0.0323842838, -0.00532616489, -0.00681794109, -0.00208398863, 0.00900313072, -0.0125339171, -0.00253189611, 0.00258811889, 0.00712529151, 0.0132835526, -0.0155024761, -0.00513125956, 0.00835844316, -0.0203151405, -0.000466882775, -0.016372053, 0.0244531315, -0.00535615, 0.0259973817, -0.0178563334, -0.000108580112, -0.000181669646, 0.00186190882, 0.0129911946, 0.0336436704, -0.000207438381, 0.0110796224, 0.00627820287, 0.0281413421, -0.0150901759, -0.000678889279, 0.00775873428, 0.00982023403, -0.00469647069, -0.0330139771, -0.00628195098, -0.00538988411, 0.00768377073, 0.0114844264, 0.00528868334, -0.00164357724, 0.00691164564, 0.0105848629, -0.0125039313, -0.0104949065, -0.00555480411, 0.00578719098, -0.00852336362, -0.0153825339, -0.00642063376, 0.0114994189, 0.00223766384, -0.0068066963, -0.0102175409, -0.0121665951, -0.00496633956, 0.00817103405, 0.00823850185, -0.0172716174, -0.00912307203, -0.00839592516, -0.0122040771, -0.0133285308, -0.00399181247, -0.00494010234, 0.0216195062, -0.00276990561, 0.0135009475, -0.00655182, 0.015352549, 0.0164020397, -0.00829097629, -0.0100901024, 0.0102100447, 0.00365635031, -0.00885320269, 0.0217844266, -0.00712529151, -0.00084099808, -0.00518748211, -0.00688166, -0.00384188537, -0.0100826062, -0.00937045179, 0.0240783133, 0.0293857381, -0.00487638311, 0.0241682697, 0.00241945079, -0.00705782464, -0.00567099778, -0.021979332, 0.00879323203, 0.00105042767, 0.0101950523, 0.00453529879, -0.0119941784, -0.0162071344, 0.00159485091, -0.0342133939, 0.0154574979, 0.00777372718, 0.0117842807, 0.0100601176, -0.00579468766, 0.0105398847, -0.00579843577, -0.0158772934, 0.024872927, -0.00931797735, -0.00859083049, 0.010772272, 0.00105511292, -0.00625946186, 0.000381377409, 0.0211697258, 0.00706532085, 0.000805858872, 0.00930298492, -0.00238196901, 0.0054985811, 0.0152625926, -0.0101650665, 0.00925051048, 0.00636441121, -0.00991768669, -0.00588089554, 0.00970029179, 0.00523246033, 0.010150074, -0.00632318109, 0.00512751145, -0.00797612872, -0.00700534973, 0.010952184, 0.00853835605, -0.00041019154, -0.00420171069, 0.00881572161, -0.0135609182, 0.0188608468, 0.0163120832, 0.00467772968, -0.00917554647, 0.00462150713, 0.0129537126, -7.74819273e-05, -0.00867329072, -0.00371257309, 0.0063119363, -0.00239133928, 0.00918304268, -0.00337711093, 0.0173016023, 0.0185310058, 0.00581717677, -0.0165069886, -0.00598209677, -0.0002651838, 0.0205100458, 0.0174965076, -0.0157423597, 0.00553606311, 0.00410800613, 0.00529992767, 0.00730895251, -0.0142056057, 0.0195355192, -0.00269869016, -0.0170467272, -0.0123914862, -0.0135384295, -0.0166419223, 0.0076537854, -0.00797612872, 0.000340381666, 0.0289509483, 0.015937265, 0.00784119405, -0.00474894512, -0.00745887961, -0.0265221279, -0.00444534235, -0.020884864, 0.0037444327, -0.00817853, -0.00232387218, -0.0177813694, 0.0076013105, -0.00343145942, -0.0130136842, -0.00198841, -0.00170167407, -0.015240103, -0.023703495, -0.0410500765, -0.0120541491, 0.00564850867, 0.005678494, -0.0153225632, -0.0308550242, -0.00683668163, -0.012346508, -0.00585465832, 0.00820102, 0.00316908699, 0.00256000739, 0.00547609199, -0.0143705253, -0.0184710342, -0.0138232913, 0.00964781735, 0.00613577198, -0.00355889765, -0.00492510945, 0.00103543489, 0.00633817399, 0.0074551315, 0.000254642044, -0.0200452711, -0.0112070609, -0.0193556063, -0.014580423, -0.0169267841, -0.0107572787, -0.0115668857, 0.000812418177, -0.00918304268, 0.00305664144, 0.00404428691, 0.0102400295, -0.0238984, 0.0129537126, -0.00106823153, -0.00621073553, 0.00189751654, -0.00104105717, -0.0123689966, -0.0245880652, 0.00609829, 0.018755896, 0.00184035674, -0.0173915587, 0.0123390108, -0.0120766386, 0.0153675415, -0.00627070665, 0.0101725627, -0.00239321357, -0.0038943598, 0.0012575147, -0.0213046595, -0.0170617197, -0.0165819526, -0.00351766776, 0.00589588843, 0.00618449831, -0.0196554605, 0.0288160145, -0.0147453435, -0.00922802091, -0.00327216182, 0.0175264943, -0.00786368363, -0.000354671618, -0.0016135918, 0.0193106271, -0.00107010559, -0.00437787501, 0.00538613601, 0.0113719804, -0.0105398847, 0.0186059698, -0.00516124489, -0.00635316642, -0.0254876297, -0.0079986183, -0.0151426503, -0.00486513879, -0.0109671773, 0.00906310137, 0.00144117547, 0.00545360288, -0.00217019673, -0.00449406868, -0.0174515303, 0.00377441803, 0.0752035, -0.00693413429, 0.0149927232, -0.0126988366, -0.00471146312, -0.00600458588, -0.00684792642, 0.0467173271, 0.0125339171, 0.00660054618, 0.00319157587, 0.00530367577, -0.00737642, 0.0151351541, -0.00591088133, -0.0278115012, 0.011611864, -0.000240117835, 0.002528148, -0.0198503658, -0.0273017492, -0.00490636891, 0.00640564086, -0.00072621, -0.0111246007, -0.0115369009, -0.0138907582, -0.00271368283, -0.0228489097, 0.0137783131, -0.00156486547, 0.0134559693, -0.00381377409, 0.00622198032, -0.0181112103, 0.00231824978, 0.00143836439, 0.0045390469, 0.0239433795, 0.00175883388, 0.0101800589, 0.0250528399, 0.00447157957, 0.0209298413, 0.0210048053, -0.000694819, 0.00100357539, -0.020225184, 0.026777003, -0.0179013107, 0.0034970527, 0.00330964359, 0.00277177966, -0.0123165222, 0.000982960453, 0.0174215436, 0.0176464356, -0.00734643452, 0.0213646311, -0.00952787604, 0.00809607096, -0.00046243181, 0.00279052067, 0.015240103, 0.00991019048, -0.0181411952, -0.0238684155, 0.00295918877, -0.000771188177, 0.0250678342, -0.013298546, -0.0195505116, 0.00106167223, 0.0107422862, 0.00290671433, 0.00133247825, 0.00863580871, 0.0246480368, -0.0117617911, -0.00456528412, -0.000498976558, 0.0276465826, -0.020000292, -0.0113344984, -0.00343708182, -0.0273467265, -0.0215895213, -0.00161265477, -0.014947745, 0.0191457085, 0.0135234362, 0.0478567742, -0.00811106339, 0.0101800589, 0.00134091172, 0.0028336246, -0.0175564792, 0.0121216169, 0.0257425066, -0.0116343535, 0.0438387245, -0.00454654312, 0.0269869026, -0.000199239235, -0.0186359547, 0.0285461452, 0.0141531304, 0.0163570605, -0.00446408335, -0.000217628753, -0.00608329754, 0.00352329, -0.0058471621, 0.0202551689, -0.00689665275, 0.00419046637, 0.03121485, 0.00697911251, 0.0204950534, 0.00170073705, -0.00110665034, 0.00477893045, -0.00826099049, 0.00123221439, 0.00754134, 0.00621823175, 0.00606080843, 0.00446408335, 0.02212926, -0.00605331222, -0.00329277688, 0.00712904, 0.0113644842, -0.00109165767, 0.0038175222, 0.0248579346, -0.0230887942, 0.0261323173, -0.0141006559, -0.00541986944, 0.000586121751, 0.005532315, 0.0213646311, 0.0063081882, 0.00269494206, 0.018501021, -0.00566724921, -0.0119192153, -0.03319389, -0.0158772934, -0.000972652924, 0.00455404, 0.00147772033, -0.0235835537, -0.00555855222, 0.0173915587, 0.0147453435, -0.0201802049, -0.00219081179, 0.00510127423, 0.00528493477, 0.0060308231, 0.0324742384, -0.00778871961, 0.000341318722, 0.00651059, -0.00205025496, -0.0211547334, 0.0085608447, 0.0141081521, 0.0101800589, 0.0182911232, -4.24305799e-05, 0.0115893753, 0.00525869755, -0.00461401045, -0.00482765678, -0.00984272268, -0.00849337783, -0.00671299174, -0.011611864, 0.0176614281, 0.0126988366, 0.0367921442, -0.00896564871, 0.00302478182, -0.00571972411, 0.0120841349, 0.0111395931, 0.0113120098, -0.00186003477, 0.010659826, -0.00396182714, -0.00753759174, 0.00447532767, 0.00829097629, 0.0160721987, 0.00423544412, 0.00822350848, -0.0224591, 0.01106463, 0.00905560516, 0.00618449831, 0.00690414896, -0.00140650489, -0.0117542949, 0.0102100447, -0.00299292244, 0.00528118666, -0.00407802081, 0.0127288224]
|
11 Jan, 2025
|
How to make a Post request from frontend in react-native ?
11 Jan, 2025
The POST method is used to send data to the server to create a new resource or modify an existing resource on the server. we cannot make a POST request by using a web browser, as web browsers only directly support GET requests.
But What if we want to develop an application where we need to add some data to the backend or modify existing data whenever the user clicks the button from the UI side? In that case, we have to make a post request from the frontend (For example: On click of a button)
For learning purposes, we generally use tools such as Advanced Rest Client or Postman to Create or add new data.
Generally, whenever an API is triggered from the browser, a GET request is sent and the data is fetched.
Prerequisites:
Basic knowledge of ReactJS.Html, CSS, and javascript with ES6 syntax.Basic knowledge of HTTP methodsNodeJs should be installed in your system.Jdk and android studio for testing your app on the emulatorApproach: In this article, we will see how to make post requests in react native. We will trigger an API using the fetch method on click of a button and after getting a response from that API, we will show an Alert message. To trigger a Post request from the UI side in react -native, we can send the Request option as a second Parameter.
Making POST requests from the frontend involves sending data to a backend API. React Native offers built-in support with fetch() or axios libraries.
Creating React Native App:
Step 1: Create a react-native project :
npx react-native init DemoProjectStep 2: Now install react-native-paper
npm install react-native-paperStep 3: Start the server
npx react-native run-androidProject Structure: The project should look like this:
Example: Here, we are sending request options as a second parameter along with the body. This body is handled in API.
PostRequestExample.js
import React, { useState, useEffect } from "react";
import { Text, View, StyleSheet, Alert } from 'react-native';
import { Button } from "react-native-paper";
const PostRequestExample = () => {
const requestOptions = {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ postName: 'React updates ' })
};
const postExample = async () => {
try {
await fetch(
'https://reqres.in/api/posts', requestOptions)
.then(response => {
response.json()
.then(data => {
Alert.alert("Post created at : ",
data.createdAt);
});
})
}
catch (error) {
console.error(error);
}
}
return (
<View style={styles.btn}>
<Button mode="contained" onPress={postExample} >
Click to make a Post request</Button>
</View>
)
}
export default PostRequestExample;
const styles = StyleSheet.create({
btn: {
marginTop: 60,
marginLeft: 30,
marginRight: 30
}
})
App.js: Import this file into your App.js
App.js
import React from 'react';
import type { Node } from 'react';
import { Text, View } from 'react-native';
import PostRequestExample from './components/PostRequestExample';
const App: () => Node = () => {
return (
<View>
<PostRequestExample />
</View>
);
};
export default App;
Save it and restart the server by the following command:
npx react-native run-androidOutput:
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?
|
https://www.geeksforgeeks.org/how-to-make-a-post-request-from-frontend-in-react-native?ref=asr10
|
CSS
|
How to make a Post request from frontend in react-native ?
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, How to Access Request Parameters in Postman?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props
|
GeeksforGeeks
|
[-0.0442796797, 0.0158419739, -0.010556126, 0.0420376696, 0.035716448, -0.00806500483, 0.0034700539, 0.0293640904, -0.0263747443, 0.0205984581, 0.0453072637, 0.00464360556, 0.000440081843, -0.0500403941, 0.0285856146, -0.046148017, -0.0378961787, -0.0262346193, -0.0227159113, -0.0058346726, -0.00166301802, -0.00245219725, 0.0194930229, 0.0104782786, -0.0201469418, 0.0281029604, 0.0108363768, 0.0143005922, -0.0215949062, 0.00796769559, 0.00586581184, 0.0228093285, -0.00546489703, -0.0222488251, -0.0141993901, -0.0124400361, 0.00314698671, -0.00114435877, -0.0058735963, -0.0247866549, 0.0118951034, 0.0286478922, -0.00371916592, -0.0274801794, -0.0265304409, 0.00578796444, 0.00961417053, -0.0308743324, 0.0115370043, -0.012323265, 0.0209721252, -0.02841435, 0.00289592822, -0.00943512097, -0.0177648067, -0.0198044125, 0.0261723418, -0.0258609504, -0.0278227087, -0.0103692915, 0.00283170398, -0.0637104213, 0.0136311036, -0.0241015963, 0.00996448472, 0.06944, -0.00931056496, 0.0466462448, -0.00771079818, 0.020878708, -0.025767535, 0.0259543676, 0.00393130071, 0.0256896857, -0.0347511396, 0.00465528248, 0.00923271757, 0.0239926111, -0.0127047179, 0.0254717134, 0.0151958391, 0.0136778122, -0.0236967895, -0.0263436064, 0.0220775604, 0.0108441617, -0.0240237489, -0.0609701909, 0.00881234091, 0.00593976676, 0.0178115163, 0.00141877134, -0.00281418837, -0.0176246818, -0.00925607234, 0.0420376696, 0.0460857414, 0.0275580268, -0.0181229059, 0.0381141528, 0.0132652204, 0.0228248965, 0.0112801082, -0.0394531302, 0.03472, 0.00402471749, 0.0457432121, 0.000155816713, 0.00558556058, 0.00477983849, 0.048608, 0.0137245208, -0.0395154096, 0.0308431927, 0.00234321086, 0.00641074451, -0.0222332552, -0.0273400545, -0.00305356947, -0.0141916061, 0.00446844846, 0.0279939733, 0.0191660635, 0.059475515, -0.0328516588, 6.57446726e-05, 0.00172724214, 0.00911594648, 0.00500170421, 0.0210811123, -0.00677662808, -0.00555052934, 0.019617578, -0.0151958391, 0.0286946017, 0.0130083235, 0.0236189421, 0.0183253102, -0.0134676239, -0.0198355522, -0.0181851834, -0.0391728804, -0.00541040348, -0.0297066197, -0.00585802691, 0.0130316773, -0.00336690596, -0.00829076208, -0.00970758777, -0.0156317856, -0.0657033175, -0.0288035888, 0.0654542074, 0.0281185303, 0.0188079644, -0.0251758937, -0.00942733604, -0.0289748535, 0.0315438211, 0.00327154272, 0.01986669, -0.0470821895, 0.0089602517, -0.00180314353, -0.00451126462, 0.000721549324, 0.0336612724, -0.0329450779, -0.0812105462, 0.0351248085, -0.0306563601, -0.00718143489, -0.0264681615, 0.0506320372, -0.0423179194, 0.0160054527, 0.0248489324, -0.0352493636, 0.0329139382, -0.00310417055, -0.00132632733, 0.0132574355, 0.0182630327, -0.00804165, -0.0194618832, 0.0351559483, 0.00430886121, -0.027776001, -0.000934170443, -0.0218284484, -0.0345331654, -0.00924828742, 0.0305940807, 0.0298778843, 0.0173911396, -0.0134598389, -0.0106651122, 0.0255962703, 0.00596312108, 0.0313569866, -0.00394687, -0.0535902418, -0.0182786, -0.0217973106, 0.00327348895, -0.0115759289, 0.0390171856, -0.0305162333, 0.0375536494, -0.0241950136, -0.0204116236, -0.00291344407, 0.0080961436, -0.0328516588, 0.0261256322, -0.00655476237, -0.0269508176, 0.00464360556, -0.0223111045, -0.0072787446, -0.0148143861, 0.01960201, 0.00105288788, 0.0107663143, -0.0151646994, 0.010057902, 0.00253199111, -0.0186367, 0.0172354449, 0.0122532016, 0.0170797501, 0.00204739021, 0.00455797324, -0.0297221895, -0.019119354, 0.0126502244, 0.00685836794, -0.0236656498, -0.0497601442, 0.0535591058, 0.00652751559, 0.0108363768, -0.00513015268, -0.0164881088, 0.0232764129, 0.024771085, -0.0603474081, 0.0510679819, -0.00774193741, -0.0133430678, -0.0175779741, -0.0264993012, -0.0108830854, 0.0344708897, -0.0255339909, -0.0132340807, -0.00585024245, -0.0254405737, 0.00746557862, -0.0283209328, 0.034066081, 0.00618109433, 0.0240860265, 0.0331319124, 0.0391106, -0.00575682521, 0.0298934542, -0.0201469418, 0.00117063231, -0.00969201792, 0.0378027633, -0.0652051, -0.009676449, 0.0162078571, -0.016846206, 0.00568287028, 0.000816426, 0.00720868167, 0.00914708525, 0.0355607532, -0.00783924665, -0.0222021174, 0.0409478024, 0.010416, 0.00152775785, -0.0178115163, -0.00411035, -0.0070023858, -0.0219685752, 0.0360589772, -0.0249423496, -0.0105327712, 0.0186211299, 0.00406364119, 0.0480163582, 0.0372734, -0.0112956772, 0.0282119475, 0.0150012197, 0.0614061356, 0.0119106732, -0.0420376696, 0.0161144398, 0.0484211668, 0.000484114367, -0.000598939485, 0.0239303317, 0.00807279, 0.00706466381, 0.00596312108, 0.0624648631, -0.0140670491, -0.0384878218, -0.0494487546, -0.0383944027, 0.0331319124, 0.0115837129, 0.0282430854, -0.0329762176, -0.0595066547, -0.0126113007, -0.00739551568, -0.0604719669, 0.0614061356, 0.0535279661, 0.0128370589, -0.0057334709, -0.0198978297, 0.039608825, 0.00295820623, -0.0128059192, -0.0261879116, 0.00453072647, 0.00578017952, -0.00828297809, 0.00829854701, -0.0211745296, -0.0209565572, -0.0125568071, 0.0313414186, -0.00790152512, -0.00148007623, 0.00724371336, -0.0295976326, 0.0383944027, -0.00213886099, -0.0184031576, 0.0387680717, -0.00331435888, 0.0156473555, 0.00148494169, -0.00457354262, 0.0208475702, -0.0324157141, 0.0366817601, 0.0108830854, 0.0187456869, -0.0492307805, -0.0167683586, 0.0210344046, 0.0398890786, 0.0294419378, -0.00852430519, 0.048608, 0.0103459377, -0.0391106, -0.0335055776, -0.0196642876, 0.0171420276, -0.00458132755, 0.0235878024, 0.00240938133, 0.00573736336, -0.000947307213, -0.0300802868, -0.031792935, -0.019103786, -0.014331731, -0.0177180991, 0.0383632667, -0.0143239461, 0.031434834, -0.0229494534, 0.0529051833, 0.0166438036, 0.0136778122, 0.025144754, -0.0341595, 3.17471968e-05, -0.00233737216, -0.015211408, 0.00987106748, -0.00724760536, 5.75646045e-05, -0.0255339909, -0.0201002341, 0.000359315018, -0.0263436064, -0.00728263706, -0.0138023682, 0.0305785127, 0.0168773457, -0.00231596408, 0.0356230326, -0.00521189254, -0.0158030502, -0.0214547813, -0.0207385831, 0.000779935, 0.00276553375, -0.0202092193, -0.000643701816, -0.00679609, -0.0129304752, 0.0375847891, 0.0493864752, 0.0284610596, 0.0546489693, -0.0160833, -0.00462803617, 0.000118413402, 0.0109920716, 0.0107040359, 0.0288191568, -0.0150557132, 0.015709633, -0.0136311036, -0.00735659199, -0.00346616143, -0.0294419378, -0.036214672, -0.0342840552, 0.009676449, -0.0200535245, 0.00681944424, -0.0117004849, 0.0266238563, -0.00754731847, -0.0122999102, -0.00215832284, 0.00451126462, 0.0100345472, 0.00159100897, 0.0113657406, -0.0446844846, -0.0102447355, -0.0441862606, 0.000781881157, -0.0219841432, -0.0349691138, -0.000837347528, -0.0151646994, -0.0501649529, -0.00795212574, 0.01532818, -0.0219530053, -0.0208008606, 0.000184036442, 0.0271843597, -0.0325714089, 0.0204271935, -0.0035712556, -0.0188702419, 8.10100901e-05, 0.0319486298, -0.0429407, -0.0220619906, -0.0160521623, 0.0093650585, -0.00784703158, -0.00345643051, 0.00719700474, 0.0372734, 0.00753953354, 0.0187923945, 0.00660147099, -0.0230273, -0.032291159, 0.0168773457, -0.026016647, -0.000782367715, 0.010050117, 0.0119028883, -0.0297844671, -0.0342529155, -0.00155013904, -0.00248528249, 0.00290565914, -0.0185588524, -0.0175312646, 0.0413837507, 0.00120177132, -0.0516907647, -0.00915487, 0.0198044125, -0.0482966118, -0.0224045198, -0.0309054721, 0.0270753726, 0.024755517, 0.0042232289, -0.00496278051, 0.00983214378, 0.0159198213, -0.00246192841, 0.0127280718, -0.0372111201, 0.021875158, -0.00481097773, -0.00202208967, 0.00172334979, 0.0260633547, -0.0252848789, 0.0279939733, -0.0110777039, -0.0212056693, -0.00891354308, 0.0309833195, -0.00180314353, -0.000246436102, 0.0167839285, -0.0219841432, 0.00440227799, -0.0545555539, -0.0315438211, -0.0104704937, 0.0209876951, 0.0101279644, -0.0110777039, -0.000191091371, -0.00218556961, -0.00439838553, 0.0365572, 0.0406052731, 0.00108402688, -0.00259426911, -0.00990999117, 0.0327582434, 0.00891354308, 0.0042232289, -0.015211408, 0.0103848614, -0.040480718, -0.0278071389, -0.0171575975, 0.0398890786, 0.00625504926, 0.0113423858, 0.000514766842, -0.0054921438, -0.00733713, 0.0452449881, 0.0198978297, 0.0213769339, 0.00704520196, -0.00876563229, -0.00793655589, -0.0112489685, -0.0201780815, -0.0171575975, 0.00465528248, -0.0157719105, 0.0174534172, -0.0363080911, 0.0180294886, -0.0437814556, -0.0081350673, 0.0307809152, 0.0135921799, -0.0319797657, 0.013327498, -0.0163791217, -0.0129149063, -0.0236656498, 0.0249423496, 0.0506631769, 0.0266394261, -0.00318396417, 0.0112178298, -0.0268885382, 0.0196798574, 0.00691675348, -0.0083763944, 0.0092015788, -0.000140247197, 0.0262501892, -0.0155305834, -0.0172510147, -0.0232764129, -0.0312635712, 0.0200223867, -0.000476572866, -0.00145574892, 0.0275113191, 0.00437892368, 0.00592809, -0.00413759658, 0.0313414186, -0.0224979371, -0.0141215427, -0.0253004488, 0.0211901, 0.0139191393, 0.000420619966, 0.0138490768, -0.0204739012, 0.0336612724, -0.0182007533, 0.00360434083, 0.00206490583, -0.0244752653, 0.00433610752, 0.0293173809, 0.0220931303, -0.00049919734, -0.0035693096, 0.00769912126, 0.0115837129, -0.0192127712, 0.0194930229, 0.0279005561, 0.00224979385, 0.00747725554, 0.0293640904, -0.00783146173, -0.00241521979, -0.00252809864, -0.00435946183, 0.00763295079, 0.00821291469, -0.0342840552, -0.00712304935, 0.0189480893, -0.0206918754, 0.00598647539, 0.0301114265, 0.00929499604, -0.0168773457, -0.00887461938, -0.00180898211, -0.011062135, 0.0118561797, -0.0244129878, 0.105000757, -0.017858224, -0.00288425107, -0.0147053991, 0.015717417, 0.0164725389, -0.0205361806, 0.00265460089, 0.00572179398, -0.00626672665, 0.00233737216, -0.00123291032, -0.0257363953, 0.021252377, -0.00524692377, -0.00852430519, -0.0139191393, 0.0207385831, -0.0379273184, 0.00868, -0.0146820452, 0.0110154264, -0.0194151755, 0.0422245041, 0.0258453824, 0.0511302613, 0.0189480893, -0.0120118745, -0.0310611669, -0.0291149784, 0.0242105834, -0.0390483253, -0.022622494, -0.00708023319, -0.000113243834, 0.00874227844, -0.000359801576, -0.0108519467, 0.0121208616, 0.0120274443, 0.0108441617, -0.0300647188, 0.00155597762, -0.0077575068, -0.0352493636, -0.0156784933, -0.0116615612, 0.0064885919, -0.0120274443, 0.030298261, 0.0169551931, 0.00697513903, -0.0209098477, 0.034813419, -0.0270130951, 0.00832968671, -0.0578562878, -0.0140514802, -0.0365572, -0.0175468344, -0.0294886455, -0.0147287538, 0.0363703668, -1.43151274e-05, 0.0124633908, -0.0312324315, -0.00846981164, 0.041664, 0.0173132923, 0.0119885206, 0.0538393557, -0.0212835167, 0.0343151949, -0.0190726463, -0.00213302253, -0.0359967, 0.00553885195, 0.0140904039, -0.0201313719, 0.0217038933, 0.00401693303, -0.00213886099, -0.00230817939, 0.00506398221, 0.000836861, -0.0175935421, -0.00134578929, 0.0267795529, 0.00271104043, 0.00716586551, 0.00846981164, -0.0181540456, 0.0141137578, 0.0202870686, -0.0312947109, -0.0282742251, 0.025004629, 0.00693232287, -0.00724760536, -0.0179205034, 0.00217389246, -0.0168150682, 0.00491217943, -0.00102466822, 0.0267017037, 0.00200846652, -0.0480163582, 0.0262501892, -0.00684669055, 0.0171108879, -0.0445910692, 0.0175156947, 0.000625699584, -0.000942441693, 0.0203337763, 0.0347511396, 0.016846206, 0.0283365026, 0.0467396602, 0.00527027808, -0.00168150675, 0.0086488612, -0.00550771318, -0.0224823672, -0.0365260653, 0.0127125029, 0.0160833, -0.00750061, 0.0286790319, 0.0384878218, 0.0323534347, 0.0345643051, -0.0027090942, 0.00245414348, -0.0501649529, -0.0102758743, -0.000777502253, -0.00467085233, 0.00931056496, 0.0112723233, -0.00428161444, -0.0217817407, -0.0103303678, 0.0224200897, 0.0138490768, -0.0089602517, 0.0138646457, 0.0222643949, 0.0262346193, 0.0210966822, 0.0219685752, 0.00453072647, -0.0156317856, 0.0276670139, -0.0249579195, -0.00225173985, -0.0367128961, 0.0117705474, -0.0377093442, -0.00755899586, 0.000614995544, 0.00184595969, 0.0238991939, -0.0256741177, -0.0383009873, -0.0435946211, 0.0264214538, 0.0167527888, -0.0112256147, -0.0274957493, 0.0319174901, 0.00437503168, -0.0104627088, 0.0341595, 0.0120585831, 0.0144329332, 0.0124945296, 0.0191972014, 0.0109064393, 0.0285077672, -0.000261762325, -0.0378650427, 0.0164258294, 0.0309210401, -0.00155500451, 0.0173132923, 0.0113813095, -0.0175001267, -0.0047019911, -0.0440928452, 0.000634457392, -0.0252381712, 0.00556220626, 0.0285233371, 0.0239147637, 0.00966866408, -0.00695178472, -0.0317306556, -0.010190242, -0.0373979546, -0.00982435886, -0.0291928258, 0.0312791392, 0.00341556058, 0.0198355522, 0.0172821525, 0.00796769559, -0.00371332746, -0.0304072481, -0.0260633547, 0.0273556244, 0.0201158039, 0.0162234269, 0.010057902, 0.0306874979, 0.0525937937, -0.0118561797, 0.0113268159, -0.0215326287, 0.000927358749, 0.0118795335, 0.00759791955, 0.015211408, -0.022762619, -0.0290994085, -0.0441551208, -0.0329139382, 0.00145185657, -0.0212368071, -0.0212056693, -0.00596312108, 0.0166126639, -0.0253782962, -0.0294107981, 0.0253315885, -0.00339026, -0.0143628698, -0.00276553375, 0.0202247892, -0.00727485213, -0.0302204136, -0.00183525565, -0.0120819379, -0.0212679468, -0.0192750506, 0.0176246818, -0.0187923945, 0.00238018832, 0.0105483411, 0.0126190856, -0.00421544397, 0.0130083235, 0.0173288621, -0.0151880542, 0.0150323594, -0.0119340271, 0.034844555, 0.0174067095, 0.000344232074, -0.00790541712, 0.013202942, 0.0166438036, -0.010820807, -0.00253393734, -0.00553885195, 0.0171420276, 0.0513170958, 0.0192906186, 0.0176558215, -0.0349068344, 0.0116070677, 0.0129694, 0.0187612567, 0.00468252925, -0.00448791031, 0.0254405737, -0.0318863504, -0.011186691, 0.00405974872, -0.0155539373, 0.0221398398, 0.0195397306, 0.0273556244, -0.00699849334, 0.0202247892, 0.00220308523, 0.00306330039, 0.0147832474, 0.0132340807, -0.0128759826, -0.0043244306, -0.00402861, 0.000119933859, -0.0298623145, 0.00169026456, -0.0509745665, 0.0160365924, 0.0578251481, 0.0152814714, -0.0183253102, -0.0201313719, -0.00836082548, -0.0437191762, -0.00614995509, 0.0297221895, -0.0186834093, 0.0025767535, -0.0186367, -0.0337858312, 0.0360278375, -0.0112878922, -0.0138101531, -0.00853209, -0.0312480014, 0.0158030502, 0.0120975068, 0.0198822599, 0.00191894174, -0.0124556059, 0.00248528249, -0.000933197327, 0.0357787274, 0.014207175, -0.0121442154, -0.00377365923, 0.00460857386, -0.0201625116, -0.0150479283, -0.0196954273, 0.0266394261, 0.0102603054, 0.0041843052, -0.0257519651, 0.0165659562, -0.0166905113, -0.00549992826, 0.00835304055, 0.010556126, 0.0108753005, -0.00197148882, -0.000346908084, 0.0312791392, -0.0551160537, 0.0275424588, -0.00398968626, -0.00938062835, -0.0240704585, -0.00773804495, 0.00588916615, 0.0125645921, 0.0142149599, -0.00308081624, 0.00124556059, 0.0240860265, 0.0217661709, -0.0412903316, -0.00676884316, -0.00247165933, 0.00166496413, -0.0350625291, 0.0174534172, 0.0151102068, 0.0535902418, 0.0444353744, -0.00125723775, -0.00200068159, 0.00197538128, -0.0225290768, -0.0256741177, -0.00589305861, -0.0431898125, 0.00941955205, 0.0252537411, 0.015219193, 0.021252377, 0.0086877849, 0.0146197667, 0.00504841283, -0.00378728262, 0.0406364128, -0.0191816334, 0.00537537225, -0.0006003991, 0.00462414371, 0.00623948, 0.0107040359, 0.00419598212, -0.0251758937, -0.00685447548, -0.0098788524, -0.0135532562, 0.00480708526, 0.00170680718, -0.0240548886, -0.0487325564, 0.00116382062, 0.00660147099, 0.0281029604, 0.0045618657, -0.00729820644, 0.0221865475, -0.0124400361, -0.00980878901, -0.0127981352, 0.0140203414, -0.0157018472, -0.00136817049, 0.00948183, -0.00569065474, 0.029535355, 0.00831411686, 0.00812728237, 0.00510290591, -0.00977765, -0.00554663688, 0.0428472832, 0.02841435, -0.0206451658, -0.0141760362, 0.020614028, -0.0239303317, -0.00827519316, 0.00549992826, 0.0134676239, -0.0288814362, -0.0173444301, 0.00406753365, 0.0152814714, 0.0020240359, 0.00170486106, 0.00287257414, -0.00792098697, -0.0158964675, -0.0021310763, -0.0118795335, 0.000978932716, -0.00997227, 0.0244752653, -0.0134909777, 0.0331007726, 0.0444353744, -0.0163012743, -0.0136311036, 0.00755899586, -0.0225602165, -0.0101435343, -0.0340038, -0.00530530931, 0.0160833, -0.0309054721, 0.0207385831, -0.000663163664, -0.0256741177, -0.0151413456, 0.0741731301, -0.0151802693, -0.0121130766, -0.0301269963, 0.0109609328, -0.0107818833, -0.0032929508, 0.0269352477, 0.0429718383, 0.0026779552, 0.020489471, -0.01609887, 0.0235410947, 0.00370554277, -0.0192127712, 0.0217973106, 0.00291149784, 0.00227898662, 0.0133742066, -0.00219919276, -0.00101882964, 0.000211647988, -0.0113890944, 0.00231596408, 0.0204271935, 0.0101668881, 0.032291159, -0.0215326287, -0.0148299551, 0.0083763944, 0.0050795516, -0.0145263504, 0.0175935421, 0.00776139926, 0.0395465493, 0.0520021543, 0.00411813473, 0.000563908077, -0.0193996057, 0.022373382, 0.0184031576, -0.0156084308, -0.0115759289, -0.00814285222, -0.0155617222, 0.0131095247, -0.0115136504, 0.00772636803, -0.0267172735, 0.00627451111, 0.00122415251, -0.0300647188, -0.00161825563, 0.00546878949, 0.00856322888, 0.032695964, 0.0108753005, -0.0340349413, 0.0292551033, 0.000550284749, -0.00854765903, -0.00483043958, 0.0265615787, 0.0112645384, -0.0110777039, -0.0300491489, 0.0035712556, 0.00708412565, -0.0240237489, 0.0210499726, 0.0236500818, -0.0213613641, 0.000282683875, -0.0147754624, -0.0162078571, -0.0315126814, -0.0200223867, -0.013701166, 0.0161922872, -0.00467863679, -0.00914708525, 0.00250279834, -0.0252693091, -0.0227470491, -0.00704520196, 0.0111555522, -0.0162545647, -0.0207385831, 0.00793655589, 0.0171264578, 0.0173911396, -0.025004629, -0.00446844846, -0.00818177592, 0.0278694183, 0.00197051582, -0.00196954259, 0.0279628355, 0.00654308544, -0.0104237851, -0.0178893637, 0.0147365388, 0.0164102595, 0.000141220298, -0.0140748341, 0.00694400026, 0.0156707093, 0.0183720179, 0.0103303678, -0.000831995509, 0.0157952644, 0.00169707625, -0.00120566366, -0.00447234092, 0.000695275783, -0.019352898, 0.0277604312, -0.0186678395, 0.00541429594, 0.0123466188, -0.00289203599, 0.0258765202, 0.0145185655, -0.00428939937, 0.00175254268, -0.00550382072, -0.0119729508, -0.033941526, 0.00337858312, 0.0290215611, -0.00586191937, 0.0166905113, -0.0155305834, 0.00728652906, -0.00458911201, -0.00709580304, -0.0238680542, 0.0301114265, 0.0332564674, 0.00890575815, -0.0282275155, 0.0073410226, -0.0333810225, 0.0116615612, 0.0167527888, -0.0120274443, -0.0177648067, 0.0217194632, 0.0086877849, -0.00570622412, 0.0179516412, -0.0265771486, 0.023509955, 0.00640295958, 0.0252848789, -0.0235566646, -0.000591641292, -0.0156940632, -0.0246776678, 0.00346810766, -0.00746168615, 0.0184187274, 0.0234165378, -0.000955091964, 0.021252377, 0.0286167543, -0.0172354449, 0.00612270879, 0.0212368071, 0.00649637682, -0.00765241263, 0.00731377583, -0.00448401785, -0.00562448427, 0.0143940095, -0.019617578, 0.0314036943, -0.0151880542, 0.0385501, -0.00678441254, -0.0271999296, -0.00776918419, -0.0308120549, 0.00861772243, -0.0114747267, 0.0105950497, -0.0201313719, -0.0208942778, 0.0024697131, 0.0122843413, -0.00927164126, 0.0139347091, 0.015335964, 0.0320109054, -0.000390210771, -0.00780421542, -0.034066081, -0.000157884526, -0.0198355522, 0.0147443227, -0.0211589597, 0.0170486104, 0.00344864582, 0.0298778843, -0.00245608971, -0.0101668881, -0.0217350312, -0.0184965748, 0.0374290943, 0.00623169541, -0.00784314, 0.0213146545, -0.00117257854, 0.000691383437, 0.0452761278, -0.0172821525, 0.00472923787, -0.00214859191, 0.0133197131, -0.015335964, 0.0224045198, -0.00399357872, 0.00463971309, 0.00378533639, -0.0140592651, 0.00932613481, 0.00525081623, 0.0246465299, 0.00851652, 0.00783924665, -0.0375847891, 0.0306874979, 0.0154293813, -0.0210032649, 0.00583856506, 0.00183622877, 0.0274490416, -0.010190242, -0.00275969505, 0.0054960358, 0.0135921799, -0.00822848454, -0.00275774882, 0.00455018831, 0.029924592, -0.000121636775, 0.0174534172, -0.00122220628, -0.00241132732, 0.0151569154, -0.0104782786, -0.00946626067, 0.029037131, -0.0158808976, 0.0073410226, -0.0125568071, -0.00214859191, -0.00716197304, -0.0164881088, -0.0247866549, -0.0020551749, 0.00598647539, -0.00500559667, -0.0138957854, -0.0278227087, 0.0108675156, -0.0153203951, -0.00748504046, -0.00744611677, -0.0084075341, 0.00773804495, 0.0163324121, 0.00794823375, 0.00431275368, -0.00545321964, 0.0104782786, 0.046895355, 0.00801051129, -0.0129382601, -0.0126035158, 0.027916126, 0.0219530053, -0.00128448429, 0.0262190495, 0.000531795959, -0.00695956964, -0.010813023, 0.0204271935, -0.00931056496, 0.0131406635, 0.0137556596, -0.00119495962, 0.0159898829, -0.00450737216, -0.0268729683, 0.00764073571, 0.00934170466, 0.0192906186, -0.0219374355, 0.0187768247, 0.0129304752, 0.0224979371, -0.0216104761, 0.0321354643, -0.0200846642, -0.00700627826, 0.026405884, -0.020489471, -0.00699460087, 0.0129849687, -0.00170972652, -0.038332127, 0.0180450585, -0.0357787274, -0.0148844486, -0.00616941694, 0.0306407902, -0.00571011659, 0.00842310302, -0.011568144, -0.0229183137, -0.0147754624, -0.0163635518, 0.0194618832, -0.00670656515, -0.0334744416, -0.00423879828, -0.00379895978, -0.00285311206, -0.0143628698, -0.0230895784, -0.0105950497, -0.0313414186, 0.0115214353, 0.00479151588, 0.000536174921, -0.0157641266, -0.0333187468, -0.000327202928, -0.0116304215, -0.0171887353, 0.00018586099, 0.00307303155, -0.0030866547, 0.0336612724, -0.0165192466, 0.0080961436, 0.0154371662, 0.00123972201, -0.00407921104, -0.00958303176, 0.0173288621, 0.0182007533, 0.0109142242, -0.00477983849, -0.000115919844, -0.0188391041, 0.0321977399, -0.0155305834, 0.0259543676, -0.00799494144, -0.0061110314, -0.00282781175, -0.0288347267, -0.00832190178, -0.000648080721, -0.0141604664, 0.013708951, 0.02841435, 0.0396399647, -0.0129071213, 0.00330852019, 0.00590084307, -0.0196642876, 0.028663462, 0.0081350673, 0.00719311228, 0.0167839285, -0.00237824209, -0.00965309422, -0.0123933274, -0.0156084308, 0.00369191938, -0.00984771363, -0.0230740085, -0.028663462, -0.00875006337, -0.00217583869, -0.00633678958, 0.00651194621, 0.0117627624, 0.00536758732, 0.0114747267, 0.0171264578, -0.0368685909, 0.0191660635, -0.0195397306, -0.0247243773, -0.0216883235, 0.00428161444, 0.0035693096, 0.0223266724, -0.00799494144, 0.00546100456, 0.00514182961, 0.00839196425, 0.0166282337, -0.0139658479, 0.0257208254, -0.0168150682, 0.0170953181, 0.009676449, -0.0123076951, -0.0073410226, 0.0161300097, 0.00753564155, 0.0189325213, 0.0182941705, 0.0208475702, 0.020614028, 0.0200379547, 0.0116615612, 0.00431664567, -0.035716448, -0.0285700448, -0.00882012583, 0.0225602165, -0.0198511221, -0.021875158, 0.0225135069, 0.0182941705, 0.00478762342, 0.00147813011, 0.00667931838, 0.0184498653, 0.0230273, 0.0262346193, -0.00847759657, 0.000879190571, 0.0133430678, -0.0111633362, 0.0182474628, -0.00804943498, -0.00345448428, 0.0239303317, 0.0103303678, 0.00652751559, 0.0252070315, -0.0146820452, -0.0149233723, 0.00632121973, 0.00544543518, -0.0129771838, 0.0147365388, -0.015709633, 0.00799494144, -0.0063095428, -0.0247243773, 0.0237123594, 0.00472145295, -0.0201313719, -0.015203624, 0.00655865483, 0.00735269953, 0.0282119475, 0.00220503146, 0.0128993364, -0.014588628, -0.00969201792, 0.00411813473, 0.0110543501, -0.0258453824, -0.00077555608, 0.00316839479, 0.00116771308, 0.00293485215, -0.0007118184, 9.00112136e-05, -0.00203376682, -0.00564005412, 0.0195397306, 0.0212990865, 0.0195708703, 0.0211745296, 0.00600593723, 0.033567857, 0.0112411836, 0.00950518437, -0.00328711211, 0.0062083411, 0.0213925019, -0.00412981166, -0.0150557132, 0.0161144398, 0.00842310302, -0.00312947086, 0.00172043056, 0.0221554078, -0.00352260098, 0.00546878949, 0.0165659562, -0.0110854888, -0.00613049325, -0.0152814714, -0.0109998565, 0.0128837675, -0.00870335475, 0.0313569866, 0.00470977603, 0.00464749802, 0.0182474628, -0.0192439109, -0.014207175, 0.00551939, 0.000647594163, 0.0165348165, -0.00836082548, -0.0173755698, 0.0202559289, -0.00870335475, 0.0220931303, 0.0099567, 0.0132418657, -0.0222488251, 0.000359558297, 0.0183097403, -0.0015238655, -0.00370554277, -0.00145185657, -0.0341906361, 0.0228871759, 0.0107118208, -0.00500559667, 0.00309638563, 0.00824405439, -0.0172665827, 0.00263124658, -0.00183039019, 0.010057902, 0.00427772198, -0.00935727358, 0.0282430854, -0.0143862246, -0.00697513903, -0.00720868167, -0.00413370412, 0.0093650585, -0.0148688788, 0.00112197758, -0.0221087, 0.00479151588, -0.010937579, -0.0192906186, 0.0179672111, 0.00391767733, 0.0158575438, -0.00934170466, -0.0131562334, -0.0190726463, 0.026265759, -0.00160463236, 0.00872670859, 0.00845424272, 0.0152736865, -0.0148922335, 0.00771469064, 0.0128604127, -0.0178115163, 0.0136233186, 0.00204739021, -0.00611492386, 0.0300335791, -0.00147034531, 0.0078587085, 0.0202559289, 0.000741984346, -0.00956746191, 0.000406996638, -0.00677273562, 0.00296015246, 0.0150712831, -0.0201469418, 0.0116849151, -0.0140281254, -0.00660925591, 0.0129849687, -0.0190259367, 0.0255651306, -0.00377560547, 0.0283520725, 0.00700627826, 0.0242417231, -0.0187145472, 0.00105969957, -0.00858658273, 0.016721651, -0.0158341881, 0.0021933543, -0.0110076414, 0.0102758743, -0.00970758777, -0.00301853823, 0.00774972234, -0.00465139, 0.00163869059, -0.00623948, -0.0250357669, -0.00570233213, -0.0219062958, 0.00973872654, 0.0110309953, -0.0208008606, -0.00950518437, -0.0184342954, 0.0137400897, 0.00741108553, 0.00393324671, 0.00877341721, -0.00505619729, -0.0109064393, 0.0141137578, -0.003771713, -0.00708023319, -0.0247088075, 0.0225913543, 0.0083763944, 0.00601372216, -0.0116459914, -0.0144407181, -0.0080961436, 0.00398190133, -0.00381063693, -0.00350703136, 0.0017311346, -0.0113890944, -0.00762905832, -0.0245375428, -0.014456287, -0.00431664567, -0.0118717495, 0.00926385634, 0.0154060274, 0.00216610776, -0.0114124482, 0.0180606283, 0.00560891489, -0.00832190178, -0.014207175, -0.0168150682, 0.00787038542, 0.00846981164, 0.0160833, 0.00357514806, 0.0165192466, -0.0210344046, -0.00846981164, 0.0135065475, 0.0036023946, 0.00890575815, 0.0135532562, 0.0220775604, 0.00488493266, -0.00683112117, 0.0185899921, -0.00413759658, -0.00910816155, 0.0158808976, 0.0249267817, -0.015343749, -0.00636014342, 0.0122532016, 0.00112197758, -0.0185588524, -0.0165348165, -0.0195708703, 0.0132107269, 0.00498224236, 0.00180995523, -0.0233231224, 0.010813023, -0.00318980264, 0.00502895098, 0.0232297052, 0.00552717503, 0.0202870686, -0.00223033177, 0.019742135, -0.00620444864, 0.00442952476, 0.0141760362, -0.000479978713, -0.0149233723, -0.0195553, -0.000677273551, -0.0175312646, -0.00859436765, -0.0117549775, 0.0218284484, 0.00804943498, 0.00420765905, 0.00491996435, 0.0252070315, 0.00657422422, 0.0104082152, -0.00630565034, -0.0029484753, -0.00808057375, -0.00353817036, 0.0174845569, 0.00149953819, 0.00471366802, -0.00685447548, -0.00557777612, -0.00702184765, 0.0045618657, 0.00437892368, -0.0100111933, 0.0150712831, 0.0261723418, -0.0128137041, -0.00633289712, 0.0135688251, -0.00558556058, 0.00709191058, -0.0134364842, -0.00326959649, 0.0161611475, -0.0202714987, 0.0131795881, -0.00835304055, 0.00539483409, 0.0240860265, 0.00537537225, -0.0229338836, -1.42543095e-05, -0.0123777585, -0.00379895978, 0.0244285557, 0.012152, -0.00463582063, 0.0203960538, -0.00931835, -0.000783340831, 0.00533255609, -0.0134442691, 0.00945847575, 0.0224823672, -0.0217817407, -0.0162389949, 0.0305318031, 0.00182260538, -0.00719700474, 0.0143473009, -0.0305006634, -0.0176869594, 0.0115837129, -0.00655087, 0.000617428275, 0.0106261885, 0.00382231409, 0.0124322511, -0.0147988163, -0.0121052917, 0.0117627624, 0.0136544574, 0.00476816157, 0.00461635878, 0.000846105395, 0.00655476237, -0.0193996057, -0.00841531809, 0.00276748, 0.0172354449, 0.0083763944, -0.00620055618, 0.0108753005, 0.0120975068, -0.0018157938, 0.00177978922, 0.00643799128, 0.0182941705, -0.0230584405, -0.00438281614, 0.0190415066, 0.00919379387, 0.00598647539, 0.00641074451, 0.0102525204, 0.00945847575, 0.00815063715, -0.00817399099, 0.0304383859, 0.0248177946, -0.0186678395, 0.00638349773, 0.00244441256, -0.0102680903, 0.0215637665, 0.00780421542, 0.0125879468, -0.0163635518, -0.0124011124, -0.0330073535, -0.0409789421, -0.00618109433, -0.00981657393, 0.00301075331, -0.0158030502, -0.0154449511, -0.0212990865, 0.00828297809, 0.00235294178, -0.00247749779, -0.00300102239, -0.0041220272, 0.0114513729, -0.0108363768, -0.00324235, 0.00769912126, 0.00466696, -0.00310222432, -0.00816620607, 0.00648080744, -0.00278110313, 0.0051184753, -0.0232141353, -0.0132885743, -0.0104860626, 0.00927164126, 0.00580742629, 0.00654308544, -0.0016776144, 0.000774582964, -0.00445677154, -0.00127475336, 0.00706466381, -0.00976208132, 0.0105794799, -0.00272660982, 0.00642242143, -0.00878898706, 0.00646523759, 0.0124556059, -0.00581910321, 0.00577239459, 0.0102213817, 0.00330657396, -0.0205050409, -0.0129149063, 0.00141195965, -0.000983798178, 0.00131562329, -0.00313141709, -0.0164102595, -0.00572568644, 0.0203960538, -0.0191660635, -0.000585316157, -0.00743833184, 0.00130881171, 0.0148844486, 0.00423101336, -0.00319174887, 0.00927942619, 0.00129032286, 0.00629786542, -0.00561280735, -0.0028861973, -0.00350508536, 0.00973872654, 0.000895733188, -0.00445677154, 0.0160054527, 0.0284921974, 0.0172510147, -0.00421933644, -0.0133819915, -0.00435556937, -0.0226847716, -0.000797450659, -0.0108363768, 0.00602929154, 0.00687393732, -0.0171887353, 0.00904588401, 0.0012854574, 0.0155305834, 0.00580353383, -0.000880163687, -0.00361796422, 0.0107273906, 0.00981657393, -0.00282975798, -0.00561280735, 0.0200690944, -0.00224784762, 0.0148143861, 0.01357661, -0.0069284304, 0.00672991946, -0.0148455249, 0.00649637682, 0.0109453639, -0.0116537763, -0.00318201794, -0.0147832474, -0.00231791032, 0.01736, 0.00591252046, 0.000503576244, 0.00832190178, -0.00998783857, 0.0214703493, -0.00980100501, -0.00454629585, -0.0221709777, -0.0158964675, 0.0211745296, -0.00449569523, 0.0151646994, 0.0133352829, 0.0188391041, -0.0129616149, -0.00343696866, 0.00128253817, 0.00333576696, 0.02086314, 0.00471756049, 0.00649248436, 0.0111166276, -0.0177492388, 0.0111711212, 0.00633289712, 0.00750450231, -0.0166282337, 0.0141371125, 0.0129149063, 0.00524303131, 0.00722425105, -0.0179049335, -0.0146898301, -0.00578407198, 0.00568676228, -0.00736437691, -0.0180139188, 0.00653919298, -0.00750839477, -0.0110777039, -0.0165815242, -0.0012309642, -0.00585413445, -0.0185588524, -0.00238408078, 0.0164569691, 0.00164063682, -0.0166905113, 0.0179983508, -0.00103634526, -0.0094429059, 0.016970763, -0.0157874804, 0.0103537226, 0.00428939937, 0.00777307618, 0.00871113874, -0.0160365924, 0.00337858312, 0.0113657406, -0.00573736336, 0.00502505852, 0.00524692377, 0.0300024394, 0.00781978481, -0.00212913, 0.00753953354, -0.00570622412, 0.00512236776, -0.00494331867, 0.0213769339, -0.0126268705, 0.00647691498, 0.00722035905, -0.00855544396, -0.0203337763, 0.00985549763, -0.000734199537, -0.0119262422, 0.00166301802, 0.00450737216, -0.0211278219, 0.0083374707, -0.00237824209, 0.00209799106, 0.021501489, -0.00270130951, -0.0061110314, 0.0279628355, -0.00771469064, -0.0157641266, 0.00247165933, 0.0229338836, 0.0104627088, 0.0150090046, -0.00136427802, 0.00872670859, 0.00934170466, -0.0272154976, 0.011560359, -0.00608767709, -0.031045597, 0.0203182064, -0.00163869059, 0.0166749414, -0.00835304055, -0.00311195524, -0.024895642, 0.00292901346, 0.00290176691, 0.0207230132, 0.0096063856, 0.000350070623, -0.0015618162, 0.0303293988, 0.0202247892, 0.00602539908, 0.00160268613, 0.017609112, 0.00571400905, 0.0212368071, -0.0271065123, 0.00332992827, 0.0193996057, -0.00481097773, -0.00157349335, 0.00906923786, 0.0100267623, 0.00672991946, 0.0103848614, 0.0110543501, 0.000752201828, 0.00149175338, 0.0223889519, -0.00135746645, -0.00262151565, -0.0153515339, 0.0180606283, 0.016721651, -0.0122298477, 0.0137478746, 0.0168617759, -0.00724371336, 0.0117705474, 0.00460468186, -0.00934948865, 0.0186211299, 0.023634512, 0.002263417, -0.000198997761, 0.0280562509, 0.00306330039, 0.00628618849, -0.0151335606, -0.022622494, 0.00595144415, 0.000391670415, -0.0123544037, -0.0171887353, -0.0181384757, -0.000388507848, 0.0119184572, -0.0010626188, 0.00959081668, 0.00894468185, 0.0128370589, -0.0104704937, 0.0231051482, 0.0221398398, -0.000147058861, 0.0284299199, -0.00333576696, 0.00789374, 0.00301269954, 0.00616163248, -0.00569065474, 0.0157252029, -0.0343774706, -0.0055544218, 0.00357514806, 0.0176713914, 0.0143083772, -0.00431275368, 0.00430496875, 0.00397217041, -0.0094429059, -0.0177180991, -0.00784314, 0.0182941705, 0.002954314, -0.00421933644, -0.00818177592, 0.000832968624, 0.0105405562, 0.00379701355, 0.0143706547, 0.00883569568, -0.0112956772, -0.000769717502, -0.00323845749, -0.00220697769, -0.00289398222, -0.0125490222, -0.00477594649, -0.00149661885, 0.00815063715, -0.0038398297, -0.00522356946, 0.0222176872, -0.022373382, 0.0077185831, 0.00104121084, -0.00109667715, -0.00156084308, 0.00650416175, -0.0129149063, 0.0154293813, 0.00744611677, -0.00996448472, 0.00126502244, -0.00460857386, 0.0105950497, 0.0306874979, -0.00314114802, -0.0225602165, 0.0309521798, 0.00322678033, -0.00895246677, -0.000558556058, -0.0132963592, 0.010813023, -0.0218595881, 0.00781200035, 0.00778475357, 0.00926385634, -0.00705687888, 0.0088901883, -0.00730988337, -0.0121597853, 0.0368685909, 0.00710748, 0.00349146198, 0.00651194621, 0.0119495969, 0.0109687177, 0.00728652906, -0.0152425477, 0.00781200035, 0.000530336343, -0.0120507982, -0.00134481618, 0.00537537225, -0.0189636592, -0.0176713914, 0.00657422422, 0.0134364842, 0.0134598389, -0.0152503317, 0.00110543496, 0.0157252029, 0.00703741703, -2.20770744e-05, -0.0242105834, 0.0180606283, -0.016721651, 0.0267795529, -0.00254366826, -0.00227509416, -0.0107585294, 0.0054571121, 0.0112645384, 0.0141993901, 0.00148104934, 0.00988663733, -0.00992556103, -0.00933392, -0.0103537226, -0.0113501707, -0.000880650245, -0.00625504926, -0.00178660091, -0.0158264041, 0.00858658273, -0.00542986579, -0.00812728237, 0.00348951574, -0.0114902966, -0.0156240007, -0.0165503863, 0.0031936951, -0.00748893293, -0.0301892739, 0.0135143325, 0.00219919276, -0.00930278, -0.00933392, 0.00972315669, 0.0260789245, -0.00426215259, 0.0094039822, 0.0117004849, -0.0151257757, -0.00269352482, -0.00563616166, -0.00153554266, 0.0237746369, 0.00729431398, 0.0135454712, 0.00943512097, -0.0210966822, 0.0128759826, -0.00581521075, 0.00297961431, -0.0083374707, 0.0106184036, -0.00938841235, 0.00547657395, -0.014464072, 0.00875006337, -0.0108986553, -0.0254872832, 0.00812728237, -0.00500948867, 0.000848051568, -0.00314698671, 0.00021237781, 0.00827519316, 0.00189947989, -0.00329489703, 0.0140436953, 0.00277526467, -0.00962195545, -0.0233542603, -0.00395270856, -0.00803386606, 0.00614217063, 0.00415316597, 0.00789374, -0.000648567278, -0.00938841235, 0.00927164126, -0.00623948, 0.00486936327, -0.00573736336, 0.010688467, 0.00365883415, -0.00249306741, 0.0148766637, 0.0139113544, -0.00175059645, 0.00634068158, 0.0224668, -0.00700627826, -0.000933197327, 0.00211356068, -0.0041492735, 0.0131951571, -0.0117861172, -0.00221281615, -0.0119885206, 0.000110567824, -0.00334744412, 0.0182786, 0.0129694, 0.027293345, -0.0178270862, 0.0445910692, -0.00108305388, 0.00192672655, 0.0194774531, 0.00825962331, -0.00693232287, -0.00660147099, -0.00329878926, -3.45904567e-07, -0.0121831391, -0.00021395908, -0.0103848614, -0.00347978482, 0.00471366802, 0.00645356067, 0.0168306362, 0.0149778659, 0.0147598926, 0.00629008096, 0.00762127386, 0.00311000901, -0.010190242, 0.0143628698, -0.0198044125, 0.0179672111, 0.0093650585, -0.00365299569, -0.0227937587, 0.0142305298, -0.0219841432, -0.0240237489, 0.00640685204, 0.0118483948, 0.0146820452, -0.0106573272, -0.00116576685, 0.00938062835, -0.00975429639, 0.00317228702, 0.0195708703, -0.00797158759, -0.0188079644, 0.0137712294, 0.0122999102, 0.0131484484, -0.0145730581, -0.009676449, -0.0159743149, -0.0198511221, -0.0186055601, 0.0155150136, -0.005219677, -0.0072047892, 0.00603318401, -0.00873449352, 0.00523913931, -0.0106339734, -0.00451904954, 0.00237824209, -0.0179827809, 0.00293095969, 0.0100034084, 0.0214236416, -0.00556609873, -0.010307014, -0.00766019756, 0.0106417583, -0.00987106748, 0.00262346189, 0.00796380267, 0.00418041274, 0.0200223867, -0.0213146545, 0.0058307806, 0.0119963055, 0.0151335606, 0.0112022599, -0.0241015963, 0.022762619, 0.0387680717, -0.0168773457, 0.00532866362, 0.00893689692, 0.00674159639, 0.010680682, 0.00311779371, -0.00248917495, 0.027916126, -0.00537537225, 0.0283987802, 0.0217038933, -0.032322295, -0.000308714138, -0.0115759289, 0.0189636592, 0.0279784035, -0.0173755698, -0.00145769515, -0.0125568071, 0.0189013816, 0.0154449511, -0.00800272636, 0.00207658298, 0.0127047179, 0.00285505829, 0.0215949062, 0.00783924665, 0.00546100456, -0.0112801082, 0.0136544574, 0.00035055718, 0.00749282539, -0.0225602165, -0.00708801812, 0.0131562334, 0.00225173985, -0.0293485206, -0.0569221191, -0.0068661524, -0.00216610776, 0.0215326287, -0.010688467, -0.00678441254, -0.00499391928, -0.00463192817, 0.00811949745, -0.00864107627, 0.0164569691, -0.00701795518, 0.00832190178, 0.00357904052, -0.00246387441, -0.00877341721, 0.0111399824, 0.00463582063, 0.00364715699, -0.000708899111, -0.00518464576, -0.0112411836, -0.0127358567, -0.00279278029, -0.00913151633, -0.0086099375, -0.00704130949, 0.00973872654, -0.0166593734, -0.0177180991, 0.00224200892, 0.00843867287, 0.0102291657, -0.0177492388, 0.000848051568, -0.00365494168, -0.00811171345, -0.0122142779, 0.000785287, -0.00416484335, 0.00619277125, 0.00101493718, 0.00365494168, -0.010416, 0.00259037665, 0.00107040361, -0.0155617222, 0.00595922861, -0.0113190319, 0.00363158761, -0.00420376705, 0.0072398209, -0.00811171345, -0.00488882512, -0.00872670859, -0.0111633362, -0.0121208616, -0.0107663143, 0.0248800721, 0.00334939, 0.0013701166, -0.000411375571, -0.00189072196, 0.00221670861, 0.0260944944, 0.010065686, -0.0152814714, 0.00976208132, -0.0160833, 0.0172665827, -0.00234710309, -0.0231207181, -0.0031625561, 0.00135162787, -0.016347982, -0.000570719771, 0.0029484753, -0.0120040895, 0.011560359, 0.0189013816, -0.00286089699, -0.0111399824, 0.0107818833, 0.00112586992, -0.00570622412, -0.00108791934, -0.0312947109, -2.97401912e-05, 0.00458911201, -0.0179360714, 0.0208475702, 0.00154040812, 0.000578504521, 0.0160365924, 0.015468305, 0.0192594808, -0.0226069242, 0.000320147985, 0.000112453199, -0.0048382245, -0.000162628363, -0.019119354, 0.0044256323, -0.0106339734, 0.0343151949, -0.0162234269, 0.000451029162, 0.0302515514, 0.00676884316, 0.0166438036, 0.0250669066, -0.00229650224, 0.00562837673, -0.00643020635, 0.00787817, 0.00956746191, -0.00905366801, 0.0204427633, -0.0136077488, -0.0197888426, -0.00238408078, -0.0109220091, 0.00259426911, 0.00364910322, 0.00903031416, 0.0100345472, 0.00087383861, 0.00612660078, 0.00683890609, -0.013078386, -0.0282897949, -0.0001673722, 0.000400428253, -0.0212368071, -0.0193217583, -0.0109297941, 0.0213457942, 0.00609156955, 0.00704130949, 0.0146820452, -0.00685836794, -0.015585077, -0.0144329332, -0.00156473543, -0.0089602517, -0.0143784396, -0.00915487, 0.0143550858, -0.0106417583, 0.0149856508, -0.00749671785, -0.00182844396, 0.0175001267, 0.00856322888, -0.0102525204, 0.00407531857, -0.00756678032, -0.000664623338, 0.00653530052, -0.00391962333, 0.00251836772, -0.0107351746, -0.00867221504, 0.0101668881, 0.0137790134, 0.0025786995, -0.00989442132, -0.001085, -0.0140281254, -0.0019928969, 0.00871113874, 0.0349068344, -0.0269508176, 0.0163012743, 0.00105872646, 0.00010752691, -0.00850095, -0.0172354449, 0.0208942778, -0.00326959649, 0.0144173633, 0.00707244873, -0.0126113007, -0.0253471583, 0.0149389422, -0.0180294886, 0.0119963055, 0.021875158, -0.000924439461, 0.0138646457, 0.00332019734, 0.0225757845, -0.0231207181, -0.0062122331, -0.0124088973, 0.00100131391, -0.0112411836, -0.00611492386, -0.00184595969, -0.00568287028, -0.0147676775, 0.0189325213, 7.11575121e-05, 0.000798423775, 0.0194774531, 0.00676884316, -0.00823626947, -0.00700627826, -0.0115370043, -0.0147598926, 0.0154760899, -0.00562059181, -0.00171264575, -0.00423101336, -0.0275113191, 0.023260843, -0.00742276246, 0.0212056693, 0.000103391256, -0.00919379387, -0.00308276247, 0.00643020635, 0.0148143861, 0.0123621887, 0.00434, -0.0089602517, 0.00229066378, 0.00897582062, -0.0146586904, -0.0134442691, 0.00498613482, 0.00981657393, 0.0075200717, -0.0273089148, -0.0152892563, -0.00266627804, 0.0131095247, 0.0287257396, 0.00567508535, -0.0147676775, -0.00194521528, -0.000980392448, -0.0269975252, -0.00906923786, -0.00209993729, 0.00997227, -0.0126190856, -0.0113657406, 0.00191991485, -0.00934170466, 0.00521189254, -0.0119651658, -0.0366194807, 0.000634457392, 0.00331825111, 0.00129518833, -0.0313569866, 0.00771469064, -0.0159198213, 0.0222955346, -0.00880455598, 0.00455797324, 0.00349535444, 0.0314036943, 0.00338636781, -0.00340388343, -0.0051184753, -0.0479852222, -0.00119690585, -0.0419442505, -0.00301075331, 0.0096453093, 0.00136817049, -0.0290994085, 0.00334939, 0.00320342602, 0.0117783323, -0.0040869955, -0.00195105386, -0.00804165, -0.00507176714, -0.0163791217, -0.0137400897, 0.00581521075, 0.0084464578, -0.0048382245, -0.00810392853, 0.00328711211, -0.00976208132, -0.0117316237, 0.00883569568, 0.0251291841, -0.0143784396, 0.00225563231, -0.0162701346, -0.0195708703, -0.00454240385, 0.0130628161, -0.012066368, -0.01043157, 0.00366272661, -0.0245064031, -0.000466112106, 0.0206607357, -0.00508344406, -0.0222643949, 0.00264876243, -0.0139736328, -0.00215637684, -0.00711137243, -0.0178270862, 0.00165620632, -0.0114513729, 0.0026078925, -0.00170972652, 0.00338636781, -0.00719700474, -0.0182474628, -0.00504452037, -0.0231051482, -0.0180606283, 0.0043244306, 0.0113813095, -0.0140203414, -0.0179049335, -0.00340388343, 0.00975429639, -0.0158264041, -0.0111166276, 0.00165231398, -0.0180606283, -0.018231893, 0.010190242, -0.00115700904, -0.022373382, -0.000814966392, 0.0121208616, -0.00253393734, -0.0260477848, -0.00608378509, -0.0119885206, -0.0086488612, -0.00820513, -0.0221865475, 0.0327893831, -0.0192750506, -0.0252381712, 0.00123680267, 0.0133197131, -0.0209098477, 0.003709435, -0.00324818841, 0.00930278, -0.0215949062, -0.0163168442, 0.00600593723, 0.00320147979, 0.000520605419, 0.0227159113, -0.0110076414, -0.00419208966, -0.0182163231, -0.017858224, -0.0184498653, 0.000599426043, -0.0029173363, -0.00180217042, 0.0125178834, 0.0102603054, 0.00839974917, -0.00926385634, -0.0030924934, -0.0143473009, 0.0662638247, 0.00138471299, 0.0338792466, -0.0277292915, 0.0108597316, -0.0222021174, -0.00879677106, 0.0483588874, 7.7056895e-05, 0.0351559483, -0.00139736326, -0.003038, -0.014580843, -0.00550771318, 0.00801829621, -0.018091768, 0.025767535, 0.00585413445, -0.0013701166, -0.0117471926, -0.0240860265, 0.00363547984, -0.00986328255, -0.00105775334, -0.0032637578, -0.0148766637, -0.00572568644, 0.00397022441, 0.0046007894, 0.0103692915, -0.00206879829, 0.0152269779, 0.00463971309, -0.0102447355, -0.0392040201, 0.0174534172, 0.012066368, -0.00215443061, 0.0139736328, 0.0033318745, 0.0281808078, 0.00552328257, -0.00183720188, 0.0211745296, 0.0173755698, -0.0129226912, -0.0149155874, -0.00239575794, -0.00872670859, -0.0229338836, -0.00828297809, -0.0114513729, -0.0071386192, -0.0153982425, -0.00586581184, 0.034813419, 0.0129071213, 0.0127981352, 0.021252377, 0.00211550668, 0.00536758732, 0.0222332552, 0.00612270879, 0.0118406098, 0.00347200013, -0.0129849687, -0.00100326014, 0.00125042605, -0.00943512097, -0.00677662808, -0.00641852943, -0.0300335791, -0.0104782786, 0.00815842208, 0.0212056693, 0.014082619, -0.00297572208, 0.017219875, 0.012190924, -0.00754731847, -0.024755517, 0.0228871759, -0.0172665827, -0.000937576231, -0.00717365043, -0.0212990865, -0.0122220628, -0.00581910321, -0.0137867983, 0.0107429596, 0.00102369511, 0.0342529155, -0.00786649343, 0.00585024245, -0.000332554948, 0.00112197758, -0.00131173094, 0.0194618832, 0.0103926463, -0.00505619729, 0.0260010771, 0.0082207, 0.00613438571, 0.00378144393, -0.00489271758, 0.0189325213, -0.00308276247, 0.00434, 0.00439060107, 0.00260010757, 0.00357904052, 0.0195864402, 0.0172821525, 0.00166009867, 0.00980100501, 0.0215949062, 0.00780810788, -0.0140904039, 0.0255651306, 0.010439354, 0.00261567719, 0.0212056693, -0.00220308523, 0.00985549763, 0.00889797322, -0.00790930912, 0.0185899921, 0.0151880542, 0.0104549238, -0.0117316237, -0.00722814351, 0.00146937219, -0.00454629585, 0.0228716061, 0.00155889685, 0.0271220803, 0.00463971309, 0.025393866, 0.016721651, -0.00227509416, -0.00230234093, 0.0125801619, 0.0295509249, -0.00311195524, 0.00739551568, -0.00688561471, -0.00919379387, -0.016597094, 0.00922493264, -0.00474869972, -0.00708412565, 0.00910037663, 0.0053559104, -0.0188546721, 0.00152094627, 0.0203026365, -0.00229261, -0.0272310674, 0.0150012197, 0.000173697306, -0.0163791217, -0.00304383854, 0.0223889519, -0.012066368, -4.03834092e-05, -0.000439352036, 0.0185277127, -0.0243818481, -0.00106943049, 0.0201625116, 0.00641852943, 0.0199601073, 0.000777988811, 0.0137245208, 0.0117316237, 0.00942733604, 0.00657033175, 0.0113579556, 0.00902252924, 0.00718532735, -0.00797158759, 0.0102992291, -0.00411813473, 0.0420688093, -0.016347982, 0.0138646457, -0.00715808105, -0.00319953379, 0.00223617046, 0.0211589597, 0.00984771363, -0.000779448426, -0.00337469066, -0.0161455795, 0.00433610752, 0.00525860116, 0.00735269953, -0.0133897765, -0.0260944944, -0.0151335606, 0.0233075526, -0.000756580732, 0.014580843, -0.0184187274, -0.0262190495, 0.00801051129, 0.00332992827, 0.0149311572, 0.00633289712, -0.0221865475, 0.0176558215]
|
10 May, 2024
|
How to Post JSON Data from JavaScript Frontend to FastAPI Backend?
10 May, 2024
In modern web development, the integration of frontend and backend technologies is crucial for building dynamic and interactive web applications. When it comes to communicating data between these two components, JavaScript and FastAPI are powerful tools. This article will guide you through the process of posting JSON data from a JavaScript frontend to a FastAPI backend, covering various approaches, syntax, implementation steps, and examples.
We will discuss the approaches to post JSON data from the JavaScript frontend to the FastAPI backend:
Table of Content
Using Fetch APIUsing Axios LibraryWhat is JOSN?JSON stands for JavaScript Object Notation. It is a format for structuring data. This format is used by different web applications to communicate with each other. It is the replacement of the XML data exchange format. It is easier to structure the data compared to XML. It supports data structures like arrays and objects, and JSON documents that are rapidly executed on the server.
What is FastAPI?FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.6+ based on standard Python type hints. It is designed to be easy to use, efficient, and reliable, making it a popular choice for developing RESTful APIs and web applications.
Steps to Setup Backend AppStep 1: Create a backend application using the following command:
npm init -yStep 2: Navigate to the root directory of your code using the following command:
cd foldernameStep 3: Install the package using the following command:
npm install axiosThe updated dependencies in your package.json file is
"dependencies": { "express": "^4.18.2", "axios": "^1.6.8", }Using Fetch APIThe Fetch API provides a JavaScript interface for accessing and manipulating parts of the HTTP pipeline, such as requests and responses. It offers a simple and powerful way to fetch resources asynchronously across the network.
Syntax:fetch(url, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(data)});Example: This example demonstrates how to use the Fetch API to post JSON data from a JavaScript frontend to a FastAPI backend.
JavaScript
// Frontend JavaScript code
const postData = async (url = '', data = {}) => {
const response = await fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(data)
});
return response.json();
};
postData('https://65cf4c85bdb50d5e5f5af68b.mockapi.io/crud',
{
name: 'GFG',
age: 22
})
.then(data => {
console.log(data);
})
.catch(error => {
console.error('Error:', error);
});
Output:
Using Axios LibraryAxios is a popular promise-based HTTP client for JavaScript that works in both the browser and Node.js environments. It provides an easy-to-use API that simplifies the process of making HTTP requests.
Steps to Install axios:
npm install axiosSyntax:axios.post(url, data, { headers: { 'Content-Type': 'application/json' }});Example: This example demonstrates how to use the Axios library to post JSON data from a JavaScript frontend to a FastAPI backend.
JavaScript
// Frontend JavaScript code
const axios = require("axios")
axios.post('https://65cf4c85bdb50d5e5f5af68b.mockapi.io/crud',
{
name: 'GFG',
age: 23
}, {
headers: {
'Content-Type': 'application/json'
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error('Error:', error);
});
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?
|
https://www.geeksforgeeks.org/how-to-post-json-data-from-javascript-frontend-to-fastapi-backend?ref=asr8
|
CSS
|
How to Post JSON Data from JavaScript Frontend to FastAPI Backend?
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props
|
GeeksforGeeks
|
[-0.0171228889, 0.025608005, -0.0118435426, 0.0449062362, 0.0257861018, -0.0138026252, -0.00288614794, 0.0237634145, -0.0393343, 0.00535567291, 0.0269437414, 0.00401993515, -0.0115509527, -0.0401739068, 0.00751829613, -0.00549878785, -0.0206848551, -0.0033488858, -0.0155200027, -0.00615393557, 0.018356856, -0.0253662989, 0.00983357523, -0.00531750917, -0.00985901803, 0.0357723348, 0.0292081367, 0.0317015126, -0.0458730571, -0.00388636137, 0.0169447903, 0.0288773812, 0.017949773, -0.0274017099, -0.012867609, -0.00938196853, -0.000901623105, 0.0242849868, -0.00554331252, -0.0256843325, 0.0320068263, 0.0408099741, -0.00218965602, -0.0190946925, -0.0280377753, 0.00273190206, 0.005683247, -0.0118499035, 0.0232291184, -0.0363066308, 0.0140188877, -0.0144514125, 0.0187257733, 0.00470370566, 0.0135354772, -0.0189929213, 0.0496131219, -0.0107876742, -0.00912118144, -0.0439903028, 0.0346783, -0.0811619833, 0.0314725302, -0.0474250577, -0.00922295265, 0.076836735, -0.0134973135, 0.0531242043, -0.00868229661, 0.0274271518, -0.0200233478, 0.0486971885, 0.0149602648, 0.0173264295, -0.0199979041, 0.00433796784, -0.0171356089, 0.00312785292, 0.011640002, 0.0130202649, 0.0132174445, -0.0143369203, -0.0276561361, -0.00407082029, 0.0427690558, 0.0252899714, -0.0486463048, -0.0505036153, 0.0352634825, 0.000442065648, 0.0278851185, -0.0407590903, -0.0127721988, -0.0447026975, 0.00393406628, -0.00460193539, 0.00693947636, 0.0128358053, 0.0121742971, 0.0156981014, 0.031523414, 0.0483664349, 0.0109085264, -0.0314216428, 0.0201760028, -0.0145404618, 0.0120852478, 0.00811619777, 0.00697764056, 0.0253154133, 0.0397922695, -0.0245902985, -0.0374769904, 0.000246276672, 0.00668505, 0.0226948243, -0.0196798723, -0.0507834852, 0.0121424934, -0.0153291831, 0.0314979739, 0.00970000122, 0.0237761345, 0.0243613161, -0.0245266929, 0.0115954774, -0.0134591497, -0.0162196755, 0.0289282668, -0.0114237396, -0.0294371191, -0.0201123971, -0.00134925428, 0.0399194807, 0.00954734627, -0.000367526693, -0.00682498468, 0.00685042748, 0.0164104942, -0.0163087249, 0.00195431174, -0.0316760726, -0.0141715435, -0.00273667253, 0.0193745606, 0.0189293139, 0.0145022972, 0.0150620351, -0.00168716419, -0.0476540402, -0.0645225048, -0.0262059066, 0.0599937141, 0.0210028887, 0.0360522, -0.0309127923, 0.0281395465, -0.0123969205, 0.00778544415, -0.0185985602, 0.0166140348, -0.0535821728, 0.0272999387, -0.00494541088, -0.0027875579, 0.0202268884, 0.0726132616, -0.0212064292, -0.0464327931, 0.0200869534, -0.0118880672, -0.0432779081, -0.0234453809, 0.0389781035, -0.051368665, 0.00229142653, 0.0471197441, -0.0207230207, -0.0123841986, -0.00424891897, 0.0173137076, -0.0125813792, 0.0127976416, 0.0237379707, -0.000868229661, 0.00367327919, 0.0231273472, -0.0279614478, 0.0231400691, -0.0196544286, -0.03205771, 0.00701580429, 0.0120788869, -0.0134082641, -0.0112965265, -0.00503764, 0.0135990838, 0.000994647737, -0.0139298383, 0.0331263021, 0.0118117398, -0.0486463048, -0.025200922, -0.0188402645, 0.00834518205, -0.0324139073, 0.0138153462, -0.0406318754, 0.0215371847, -0.00273031183, -0.0238906275, 0.0177589543, 0.00133732811, -0.0527680069, -0.0102979038, -0.0235089883, -0.0353906937, -0.00244885287, -0.0333807282, 0.00163627893, -0.046152927, 0.0209011175, -0.0569406, 0.00889219809, -0.0295897759, -0.0283685289, 0.00773455855, -0.00403265655, 0.00180483633, 0.014794888, 0.0365101695, -0.0143750841, -0.00877770595, -0.00931836199, -0.0290045943, -0.0157235432, 0.00648150919, -0.0264857747, -0.0212700367, 0.0668123364, -0.00152337726, -0.0105904937, -0.00395632861, -0.0394869559, -0.00391180394, 0.0188402645, -0.0413442701, 0.0324393511, 0.0131665599, -0.00130631984, 0.00260945945, -0.026155021, 0.0242722668, 0.0291063655, -0.0348563977, -0.00348882028, -0.0211937092, -0.00630023051, -0.002876607, -0.0300223, -0.00406764, -0.0309891198, 0.00630659098, 0.0200996753, 0.0251882, 0.00560373859, 0.0174790844, -0.0214608554, 0.0104441987, -0.0199088566, 0.0380876139, 0.00517439423, 0.00750557519, 0.00896216556, 0.00610305, 0.0162196755, -0.00372098433, 0.0321340375, 0.0265875459, 0.0136626912, 0.0363575146, -0.00810983777, 0.0504272878, 0.0474250577, -0.00369236129, -0.0397922695, -0.0118689854, -0.0565335192, -0.0178734455, -0.00014589756, -0.0287756119, -0.0244630855, 0.0217152815, -0.0187512171, 0.0261295773, 0.0373752192, 0.00585498475, 0.0176190194, 0.0109085264, 0.0527171232, 0.00201473804, -0.0203668233, 0.0280632172, 0.0342457779, -0.0224149544, -0.0130647887, 0.0133446576, 0.0161815118, 0.0071239355, -0.00750557519, 0.0287501682, -0.0144768553, -0.0568388291, -0.0155836092, -0.0285720695, 0.0612149611, -0.0014104757, 0.0148457726, -0.0334061682, -0.0518520735, -0.00585816475, -0.0166649204, -0.0548543036, 0.0432524644, 0.0426672846, -0.00155756588, 0.00241863984, -0.0114809852, 0.0248065609, -0.0103424275, -0.0277579054, -0.0527680069, -0.0112201981, 0.0439394154, 0.00464327959, -0.0032820988, -0.0800933912, 0.00137390185, 0.0106032146, -0.0133064939, 0.000230176272, 0.0121488543, -0.0218933802, -0.0224531181, 0.0452624336, -0.0018636724, -0.0392579734, 0.0370699093, 0.0137390187, -0.0151765272, 0.000918319798, 0.0211809874, 0.0357214473, -0.00819888618, 0.0385964662, -0.00987173896, 0.0109276082, -0.0307346936, -0.0676265061, 0.0247047916, 0.037273448, 0.00937560853, -0.0118308216, 0.0270963982, 0.0121106906, -0.049307812, -0.0307601355, -0.00800806656, 0.0214608554, -0.0276052505, 0.00483727967, -0.0137517396, 0.00426482037, 0.0170083959, -0.0393851884, -0.0488752872, 0.00517439423, -0.0015933445, -0.0027748365, 0.0430998094, -0.0114937071, 0.0270200707, -0.0157108214, 0.0342457779, 0.0186112821, -0.00209583645, 0.0112583628, -0.0185476746, 0.0292335786, 0.0105268871, -0.00735291932, 0.0153673468, -0.0075755422, -0.041089844, -0.0343475454, -0.0257224962, 0.0198325273, -0.0279614478, 0.000828475575, 0.00570550933, 0.00206562318, 0.0234962665, 0.0122633465, 0.00956642814, -0.00398495141, -0.0144386906, 0.0126322648, -0.00947101787, 0.00620800117, 0.00329164, -0.029996857, -0.0132047236, 0.0193872824, -0.0362303, 0.038494695, 0.0202523321, -0.00116320513, 0.0453133173, -0.0187512171, 0.00376232853, -0.0119771166, 0.0122633465, 0.0124350842, -0.000743799319, 0.000866639486, 0.0103042638, -0.0199724622, 0.0102851819, 0.0255698394, -0.0152528547, -0.0333807282, -0.0224149544, -0.00880951, -0.0173773151, 0.0257606599, 0.00648787, 0.052615352, -0.0131029533, -0.0142860347, -0.033813253, -0.00132858218, -0.00176190189, 0.0223386269, 0.0255443975, -0.0523100421, -0.00737200119, -0.0270455126, 0.0213845279, -0.00406127935, -0.0299459714, -0.000591143558, 0.00779816508, -0.0635048, -0.0103805922, 0.015621773, -0.0343984328, -0.0230510198, 0.0298442021, 0.0199470203, -0.03533981, 0.03040394, 0.0128421662, 0.00278437743, 0.027808791, 0.0238524638, -0.0158507563, 0.00644970592, -0.025340857, 0.00391180394, -0.0203668233, 0.00671049301, 0.00341885304, 0.0105332481, 0.0475268289, 0.0110293785, 0.00739744399, -0.020557642, 0.00127928704, -0.00865685381, -0.0202141665, -0.00849783793, 0.0285975132, 0.0393343, 0.00534931244, -0.0167412478, -0.0153291831, 0.0121488543, -0.00307219732, 0.0203541014, -0.00165854127, 0.0184713472, -0.0292844642, -0.0194636099, -0.0207993481, -0.0032471153, -0.00611259136, -0.0152528547, -0.0420566611, 0.0169320684, -0.0132301664, -0.00907029677, 0.00266670529, 0.00495495182, -0.00739108305, -0.0109085264, 0.0232291184, -0.00567688607, 0.0719008669, -0.0104505587, -0.00249019708, -0.00810347684, -0.00751193566, -0.0191074125, 0.0382657126, 0.00179370516, -0.00687587, -0.0101579688, 0.00681226328, -0.00723206671, 0.0236616433, 0.0139043955, -0.0251754802, -0.00503764, -0.0456440747, -0.0121297725, -0.0216643978, -0.0152782975, -0.0199215766, 0.0174281988, 0.00233913143, -0.0189547576, -0.0103360675, 0.00891128, 0.0344493166, 0.0014589756, 0.00210855762, -0.00455105, 0.0400212519, 0.032592006, 0.00291477097, -0.066710569, -0.00133017229, -0.0242849868, -0.0111883953, -0.00421075476, 0.0171101671, 0.0238270201, -0.0309382342, 0.00929928, 0.00840878859, 0.00443019764, 0.0244122, 0.0151892481, 0.0287247263, -0.00304675451, -0.0132428873, 0.00654511573, -0.0235853158, -0.0253917426, 0.00309764, 0.00521255843, 0.00341885304, -0.0174790844, -0.0283176433, 0.0162705593, -0.0247938409, -0.0303530544, 0.0344493166, -0.0117036086, 0.00260627922, -0.000307100447, -0.0300223, -0.000430139422, -0.0176571831, -0.0161051825, 0.0278342348, 0.0275798086, -0.0241959393, 0.0138153462, -0.0219188239, 0.00802714843, 0.00835790299, -0.00858052634, 0.0218170527, -0.00493586948, 0.0411661714, -0.0361794159, -0.0176571831, -0.0415732525, -0.00924203452, 0.0187130515, 0.00785541069, -0.0120979697, 0.0195017736, -0.0187893808, 0.00905757491, -0.0157871507, 0.0168048553, 0.0244630855, 0.0065641976, -0.010278821, 0.00512350909, 0.0147440024, 0.0149602648, 0.00763278827, -0.00346655794, 0.0175045282, -0.0175554119, 0.013840789, -0.0228347573, -0.00921023078, 0.000575241924, 0.0372225642, -0.011640002, -0.0108640017, -0.0176953468, 0.00435386971, 0.0286738407, -0.0229492504, 0.0146931168, 0.000842787034, -0.0183314122, 0.00984629709, -0.00307219732, 0.0235980358, 0.0229619704, 0.00245203311, -0.00672957487, 0.0105904937, -0.0392579734, -0.00357468915, -0.017937053, 0.0095091816, -0.018636724, 0.019590823, 0.031370759, 0.00863777194, 0.0234708227, -0.00746105053, -0.0129757402, 0.00141683628, 0.00297996774, -0.03533981, 0.112558186, -0.00956006721, -0.00345065631, -0.0323121361, -0.0137517396, 0.0309636779, -0.00872682128, -0.0019034266, -0.00642744359, 0.010545969, 0.0148839373, -0.025620725, -0.0051521319, 0.00631613238, -0.0152782975, -0.0151510844, -0.0101643298, -0.0043284269, -0.041089844, -0.00649105, -0.0208756756, 0.0103742313, 0.00116241, 0.0528697781, 0.00589314848, 0.0299714152, 0.0232927259, 0.0200106259, -0.0217152815, -0.00579773868, 0.0429980382, -0.0110611822, -0.0189674795, 0.00697764056, 0.034525644, 0.0307092518, -0.0196162648, -0.0126195429, 0.00829429645, 0.00992262457, -0.00217216439, -0.0392325297, 0.0089430837, -0.00749285379, -0.0178988874, 0.0168430191, -0.0201887246, -0.00677409954, -0.0140443305, 0.0500710905, 0.00842787, 0.0171864945, -0.00590268942, 0.028495742, -0.0152782975, -0.0197053142, -0.0352889225, -0.000528729579, -0.020277774, -0.00167603302, -0.0254299063, -0.00118705758, 0.0351617113, -0.00638609938, 0.0167539697, -0.00935652573, -0.0206339713, 0.021371806, 0.0123651167, -0.0142351501, 0.0202014465, -0.00351744331, 0.0181278717, 0.0061094109, 0.0203922652, -0.00185572158, 0.0426418446, 0.00391816441, -0.00457649259, -0.00355878752, -0.00749921426, -0.0241577737, -0.0184331834, 0.0207357407, 0.0042743613, -0.0325411186, -0.015481839, 0.0296406616, -0.0385455787, -0.00797626376, -0.0118117398, -0.0330499709, -0.00697127962, 0.000315647601, 0.018496789, -0.0281649884, 0.0124796089, -0.0155072808, -0.0255698394, -0.0156344939, 0.00123953295, -0.0265621021, -0.0037464269, 0.0350344963, 0.0246793479, 0.0274017099, -0.0438885316, 0.0159143638, -0.00397223, 0.018369576, -0.00678046, -0.00955370627, -0.00549242692, -0.00669777161, 0.00673593534, 0.0158253144, 0.0321085937, 0.033813253, -0.00015285454, -0.0028209514, 0.000104851453, 0.0175681338, -0.0220078733, -0.0341948904, -0.00702216523, 0.0153673468, 0.00581046, -0.00275575463, 0.0219951514, 0.0302512832, -0.00841514859, 0.014107937, 0.0161687899, 0.0260150861, -0.0211937092, -0.0230383, -0.0214735772, -0.0259642, -0.00138980348, 0.0238142982, 0.00607442716, -0.00348882028, -0.00934380479, 0.0359758735, -0.00455741072, 0.00957278814, 0.01520197, -0.00436659111, -0.001249074, 0.00141922152, -0.00418531196, 0.00391180394, -0.028215874, 0.00653239433, -0.0154563962, -0.00748649286, -0.014654953, 0.0377568603, -0.0264603328, 0.0119961984, 0.0340167917, 0.0261295773, -0.0277833492, -0.00971908402, -0.0375278741, -0.0199851841, 0.0296406616, 0.0085741654, 0.00911482144, -0.0135990838, 0.0413188264, 0.00424891897, 0.000973975577, 0.041115284, -0.00403583655, 0.0180515442, 0.0267147589, 0.0187130515, 0.0159652494, 0.0280886609, 0.00474505, -0.0163341668, 0.0244885292, 0.0244758073, 0.0208502337, 0.0211428236, -0.010126166, 3.25486726e-05, -0.0105014443, -0.0608587638, 0.0197816435, -0.0267147589, -0.00672321441, 0.0313962027, 0.0162705593, -0.00916570611, 0.00549560739, 0.000847557501, 0.000845967326, -0.0118753463, 0.000139934447, -0.0362557434, 0.018624004, 0.0292844642, 0.0119453138, 0.0113601331, -0.0109339692, 0.00745468959, -0.0191582981, -0.00189388555, -0.0130647887, 0.00575003354, 0.00445564, -0.00019817421, 0.021778889, 0.0143623631, -0.0207739044, 0.0111120678, 0.00621118117, 0.00974452589, 0.00528570591, 0.00287978747, -0.0159016419, -0.0223386269, -0.00307855778, -0.0197434779, -0.0140824942, 0.0137517396, -0.0147312814, 0.0156344939, 0.0242849868, -0.01288033, -0.00113776245, -0.0294880047, 0.00737836165, -0.00568006653, -0.0163850524, -0.00853600167, 0.029182693, -0.00182391831, 0.00653239433, 0.00682498468, 0.0155454455, -0.0173645932, -0.00466236146, 0.00785541069, -0.0249083322, -0.0217661671, 0.00334570557, 0.00392134488, -0.00391816441, 0.0137644615, 0.0129057728, 0.00310559059, 0.0128994118, -0.00898760837, 0.0234453809, 0.00613167323, -0.00262695132, -0.017669905, 0.00121091, 0.0357468911, 0.00274462346, 0.0215626266, 0.005683247, -0.0133573795, 0.0343729891, 0.0189420357, 0.0140570514, -0.0286483988, 0.00959823094, 0.0105523299, 0.0267656446, -0.00268578739, -0.00931836199, 0.0247556753, -0.0161051825, 0.0216516759, 0.00602354202, -0.0168175772, 0.0164104942, -0.016028855, 0.00800170656, -0.0386219062, -0.00710485363, -0.00348245958, 0.00981449336, 0.022046037, 0.00539701711, 0.00553377159, -0.0197053142, 0.00789357536, -0.00163786917, -0.0449062362, 0.0085487226, -0.0365101695, 0.00418531196, 0.0341440067, 0.0109148873, -0.00197339384, -0.00623662397, -0.0224912819, -0.0284194145, -0.0170465596, 0.00877770595, -0.00735291932, 0.0181533154, 0.00406764, -0.00681226328, 0.0393088572, -0.0315997414, -0.0141206579, -0.0106604612, -0.0141461007, 0.0162832811, -0.0177207906, -0.017250102, 0.0258497093, 0.0041916729, 0.038494695, -0.00208311505, -0.00228347583, 0.0161687899, -0.0185222328, 0.0131411171, 0.0016744429, -0.0232291184, -0.0221350864, -0.0281141028, 0.0386473499, 0.00848511606, -0.00485636154, 0.00108290184, 0.0237888563, -0.0346274152, -0.0163850524, -0.0325411186, -0.0263585616, 0.00317237759, -0.00835154206, -0.000551389414, 0.0327701047, -0.0649804696, 0.0316506289, 0.00308968895, -0.0138662318, -0.0110039366, -0.0180006586, 0.0162705593, 0.00664052553, 0.00143671338, -0.00103837717, -0.0285720695, -0.00193682, 0.0131665599, -0.0515976474, -0.0176317412, -0.00166013138, -0.0204177089, -0.0284448564, 0.0148203308, 0.0254299063, 0.0141206579, 0.0329990871, -0.00488498434, -0.00552423066, 0.0107240677, -0.0314979739, -0.0416750237, 0.00896216556, -0.0411916152, -0.0233563315, 0.00744832912, 0.0153164612, 0.00409626309, -0.00512986956, 0.0188784301, -0.00300541031, -0.0181405935, 0.0554140434, -0.0412170552, 0.00690767309, 0.0270963982, 0.00350472191, -0.0029036398, 0.00355878752, -0.0150620351, -0.0351617113, -0.00952826347, -0.0243485942, -0.00202427898, 0.0147185596, 0.000134368878, -0.0244630855, -0.0467635505, -0.002431361, -0.00528570591, 0.0320831537, 0.00210060691, 0.00118069688, 0.0170465596, -0.00719390297, -0.0298950877, 0.017402757, 0.0024106889, -0.0169575103, 0.0173009858, -0.015481839, 0.00854236167, 0.0360776447, -0.00707941083, -8.90988886e-05, 0.00641472219, -0.00225962326, -0.0084660342, 0.0261041354, 0.045491416, -0.0308873486, -0.0258369874, -0.00625252584, -0.00836426392, -0.0071239355, -0.00802078843, -0.00779180462, 0.00377823017, -0.02712184, 0.0258242674, -0.0113792149, -0.0122379037, 0.0107495096, -0.00246157427, 0.00660872227, -0.0061793779, -0.0127912806, -0.00141922152, 0.0142097073, 0.0122697074, 0.00167126255, -0.0016537708, 0.0193109531, 0.0215626266, 0.00346973818, 0.000946942775, 0.00148362317, -0.0140061667, 0.0130520677, -0.037807744, -0.0172882657, 0.0111375097, -0.0238397419, 0.0323884636, 0.00964275561, -0.0220969226, 0.00408354169, 0.0706796199, -0.00413442682, 0.0323121361, -0.0343221053, 0.000931041141, -0.0214863, -0.00100816414, 0.0434814505, 0.0361794159, -0.020544922, -0.00502173835, -0.00770911621, -0.00294180377, -0.0120089203, -0.00889219809, -0.00191932824, -0.0181533154, -0.00688859122, 0.0125622973, -0.0142733138, -0.0142860347, 0.00500583695, -0.0242977086, -0.00376868923, 0.00970636215, 0.0023423119, -0.000628114853, -0.0200360697, -0.0294371191, -0.00392770534, 0.0277324636, -0.0225930531, 0.00266988575, -0.00488816481, 0.0272490531, 0.0556175821, 0.00723206671, 0.00435068924, -0.0110357394, 0.00317714806, 0.0240432825, -0.0342457779, -0.0130266249, -0.00296883658, 0.00286388583, 0.00609987, -0.0159143638, 0.0275543649, -0.0190946925, -0.00259991852, -0.0167539697, -0.00968091935, -0.0267147589, 0.0366119407, 0.00598855829, 0.0204431508, -0.00730203418, -0.00751829613, 0.028495742, -0.00377823017, 0.00617301743, -0.00161799206, 0.0122569855, -0.0192091838, -0.0288264975, -0.0234708227, -0.00671685347, 0.0158889201, -0.012746756, -0.0134973135, -0.00219283649, -0.0143496413, 0.0140952151, -0.0124923298, -0.00644970592, -0.0215753485, -0.0120788869, -0.000624934502, 0.0265366603, 0.00760734547, 0.0170592815, 0.00678682094, 0.00884131249, -0.00618891884, -0.0046846238, -0.00766459154, -0.00508852536, -0.0121424934, -0.00207993481, -0.00898124743, 0.0139425592, -0.0229365285, -0.00901941117, -0.00406764, 0.0197180361, -0.00197498384, 0.0136499694, 0.0261041354, 0.0178734455, 0.00113537721, 0.00886675529, 0.033278957, -0.00882223062, -0.011652723, 0.0123015102, 0.00557829579, 0.0106032146, 0.0216007903, 0.00278278743, 0.00879678875, 0.0354670212, -0.0143369203, -0.00992262457, -0.0043125255, 0.00908301771, 0.00946465693, 0.0175554119, -0.00904485397, -0.00769639481, -0.00497403368, -0.015609052, 0.0384183675, -0.0037750497, -0.00749921426, -0.0224403962, 0.00255380361, -0.0203286596, -0.0166776422, 0.0130902315, 0.0216135122, -0.00180006586, 0.0247302335, 0.0208375119, 0.0134464288, 0.0143623631, 0.00884767342, -0.0218297746, 0.0295897759, 0.0317524, 0.0143878059, -0.0140952151, 0.00549878785, -0.0195526592, 0.00559419766, 0.0111629525, 0.00821796898, -0.0146040684, 0.024933774, -0.020277774, -0.00864413287, -0.00168398384, -0.0121806581, 0.0144259697, 0.0129184937, 0.0167285278, -0.0337623656, 0.0223386269, -0.00574367307, -0.0171356089, -0.0150874779, -0.000695299299, 0.0066723288, 0.0306583662, -0.0100752804, 0.0132301664, 0.0325665623, -0.023699807, 0.0206848551, 0.029869644, 0.00513623049, -0.0099035427, 0.0298442021, -0.00268101692, -0.0132174445, 0.00449380418, -0.00910846051, 0.0248320047, -0.0282667596, 0.0518011898, 0.00591223035, -0.0175426919, -0.0188148227, -0.0254299063, -0.0095028216, -0.00653239433, 0.0116781658, 0.00514259096, 0.00512986956, -0.00597583689, 0.00684406655, 0.00256652501, 0.0140570514, -0.00245998404, 0.0230510198, 0.00435704971, 0.00257765618, -0.0120280022, 0.000136555347, -0.0185603965, 0.00845331326, 0.00401357422, 0.00849783793, 0.00235503307, 0.00452560745, -0.000668664055, -0.0207611844, -0.033813253, -0.00528252544, 0.0194127243, 0.00623026351, -0.00800806656, -0.00908937864, -0.00535567291, -0.0216135122, 0.0388000049, -0.0257733818, 0.000429344334, -0.00971908402, 0.0236489214, -0.0183059704, 0.0217916109, 0.00498039415, -0.00352380378, 0.000433319743, 0.00189547567, 0.00247429544, -0.00517439423, 0.00739108305, -0.00357150869, 0.0372225642, -0.0403011218, 0.0151129207, 0.0163977724, -0.00877770595, 0.0266129877, -0.0119516738, 0.0324139073, 0.00900669, -0.00522209937, -0.00241386914, -0.000105149607, -0.0333298407, -0.0075500994, -0.0221096426, 0.024386758, -8.15456078e-05, 0.0075882636, -0.00415032869, 0.00585180428, 0.0134973135, 0.00549242692, -0.0121170515, 0.0172882657, -0.00927383732, -0.0168048553, 0.000642426312, -0.0099289855, -0.0243613161, -0.0231273472, -0.0291572511, 0.0235089883, 0.0169702321, -0.0104696415, 0.00917842798, -0.0382911526, 0.00577865681, -0.0415732525, -0.0221096426, -0.0309636779, 0.00313739385, -0.00220237742, 0.0070412471, 0.0129121337, 0.00455105, 0.00556875486, 0.00883495249, 0.0389526635, 0.000508057477, -0.0185731184, -0.0139552811, 0.00369872199, 0.00955370627, 0.0101579688, 0.0043157055, 0.00241863984, 0.00917206705, 2.34549225e-05, 0.0103615103, -0.022046037, -0.000272116857, 0.0318541676, 0.0190438069, 0.0127785597, -0.00566416467, -0.0206848551, 0.0130775105, 0.0334824957, 0.0263840035, -0.0118817072, 0.0146295102, -0.00725750951, 0.0182042, -0.0196798723, 0.0207357407, -0.00435386971, -0.0089685265, 0.0202014465, 0.0129184937, 0.0460002683, 0.0127721988, 0.00567370607, -0.0508343689, 0.0216898397, -0.00589632895, -0.0345510878, -0.0212191511, 0.00725750951, 0.00463373866, 0.00413760729, -0.0259387586, -0.00198134454, -0.00706032896, 0.0226693805, 0.0116654448, -0.00975724775, -0.0133446576, -0.0142733138, 0.0130647887, -0.0195653811, -0.00748649286, -0.0129757402, -0.0047005252, -0.0280632172, 0.00044842629, 0.00821160804, 0.0075882636, -0.0232927259, -0.0276561361, 0.00122522155, -0.00353334495, -0.0114491824, 0.00404219748, 0.00337114814, -0.00138503301, 0.0311672185, -0.00449380418, 0.0197180361, 0.00582000101, -0.00588042708, -0.0107749524, -0.00348245958, -0.0106159365, -0.00588042708, 0.0183186922, -0.00929291919, 0.00886675529, -0.0106986249, 0.0146931168, 0.00702216523, 0.0162705593, -6.62402745e-05, 0.00149236911, 0.00564826326, -0.0140824942, -0.0125559364, -0.00263172179, -0.0436086617, -0.00260150852, 0.0218806602, -0.0114937071, -0.00400721375, -0.00215308229, 0.00353016448, -0.00805259123, 0.0397922695, 0.000116877069, 0.00548606645, 0.00404219748, 0.0150620351, -0.0287501682, -0.00870137848, -0.0293353498, -0.00204495108, 0.0164104942, -0.0196035448, -0.0106668212, -0.0151256416, -0.0185858384, 0.0106095755, 0.0331771858, 0.0227202661, 0.00220714789, 0.0271472838, 0.0295897759, -0.00315488572, 0.0110039366, -0.0448553525, -0.0165504292, -0.0061634765, 0.00686314888, 0.00400721375, 0.0258624312, 0.00562600093, 0.0011544592, 0.00281777093, -0.00168875442, 0.00884767342, -0.0190819707, 0.00245998404, -0.0167539697, 0.0130011821, -0.004725968, -0.0123205921, 0.001472492, 0.0213336423, 0.0232418403, 0.00931836199, 0.0178480037, 0.0148712154, 0.0143496413, 0.00865049288, 0.0162323955, 0.00628114864, -0.0251500364, -0.0176317412, -0.0102597391, 0.0188021, -0.00842787, -0.00587088615, 0.0346783, 0.0195526592, -0.00616983697, 0.0200106259, -0.00772183714, 0.0216516759, -0.00120057398, 0.031090891, 0.000289012329, -0.00956642814, 0.0240305606, 0.00327255786, 0.0177080687, -0.00791901816, 0.00696491916, 0.0118117398, 0.0151638053, 0.00102088542, 0.0147821661, -0.00593131268, -0.0130393468, -0.00867593568, 0.0201887246, 0.00588042708, 0.0117544942, -0.0206594132, -0.00323916436, -0.0125941, -0.0196925942, 0.016435938, 0.00649741106, -0.0112647228, -0.00877770595, 0.00441429578, 0.00684406655, 0.0205067582, -0.0124414451, 0.0144514125, 0.0011202707, -0.00212127902, 0.00907029677, 0.00347927934, -0.0351617113, 0.0183059704, -0.000939787, 0.00257606595, -0.0283176433, -0.00481183687, -0.00585180428, 0.0080716731, 0.0242086593, 0.0056578042, 0.030556595, 0.0378840715, 0.0294116773, 0.0212573148, 0.0296152178, 0.0159398057, 0.000855508319, 0.00744832912, 0.0105968546, 0.00866321474, -0.000269731594, -0.0079889847, -0.00222145929, 0.000999418204, -0.0033011809, -0.0221605282, 0.00356196775, -0.00310718082, 0.00395632861, 0.00979541149, 0.0225548893, 0.0122697074, -0.00528252544, -0.000408672204, 0.00329164, -0.0130202649, 0.0114682643, 0.00891764089, -0.00126815599, 0.0147185596, -0.0135990838, -0.0324647911, 0.00293544307, -0.014794888, -0.00439203344, 0.0146931168, -0.00468780426, 0.0233181678, -0.00776636181, 0.0249973815, -0.0149729857, 0.0181660354, -0.0281904303, 0.0129439365, -0.0032820988, 0.0260150861, -0.000972385402, 0.00412488589, -0.0510379113, 0.00650059106, 0.00321054156, -0.00886675529, 0.00402947608, 0.0210156105, -0.0233308896, 0.019590823, 0.00673593534, 0.00285752513, -0.0113219693, -0.00721934531, 0.0189293139, -0.00490724668, -0.00162594288, 0.00297042681, 0.0127149532, 0.0125368545, -0.0228856429, 0.0100498376, -0.0204813145, 0.00455105, 0.00148839364, -0.0118753463, 0.0133192157, 0.00279073813, 0.0139425592, -0.0243994799, 0.000702455058, -0.0145659037, 0.0277579054, -0.0108640017, 0.00973816589, 0.0136245266, 0.00851692, 0.000295770529, -0.0166013148, 0.00166649208, -0.00161163136, 0.00369554153, -0.00890492, 0.000517200911, 0.0138535108, -0.0070539685, 0.00253472175, 0.0203795452, 0.00988446083, -0.0126704285, 0.00740380445, 0.00566098467, -0.0062048207, 0.0109784938, -0.0208756756, 0.00985265709, -0.00235344307, -0.00691403402, 0.02712184, -0.00823705085, 0.00826249272, 0.00467508286, 0.00866957474, -0.00237888563, 0.0324393511, -0.00547652552, -0.00421075476, 0.010138887, 0.00946465693, -0.0235598721, 0.0317524, -0.0121106906, -0.0033488858, 0.00631931238, 0.00207834458, -0.000599889434, -0.00369554153, -0.0061094109, -0.0113982968, -0.0293862335, -0.0249846596, -0.00353016448, 0.0192346256, 0.0032948202, -0.00330436113, -0.000286627095, -0.0279868897, -0.00903849304, -0.00198452501, 0.015609052, -0.00395314815, 0.011086625, 0.019323675, 0.00171578722, -0.0105714118, 0.00732747652, -0.00171260687, 0.0172373801, -0.000259196764, -0.0119516738, -0.000430139422, -0.00913390331, -0.00861869, 0.00597265689, 0.00954098534, 0.0222623, -0.00585498475, -0.00265557412, 0.0113855759, -0.008491477, -0.00368918083, -0.0274780374, 0.00219760695, 0.0187384952, 0.00901941117, 0.010272461, -0.00915298518, 0.00371462363, 0.020137839, -0.00127451657, -0.00914662424, 0.00511078769, -0.0079635419, 0.0113792149, 0.0268165283, -0.00332344323, 0.0203795452, -0.0234453809, -0.0165504292, 0.011099346, 0.021359086, -0.0042202957, 0.0296915453, 0.00760734547, -0.00365101709, 0.0128994118, 0.0120216412, -0.00341567281, -0.00538747618, 0.0134082641, 0.0163087249, -0.004659181, 0.0150238713, -0.000614200893, -0.0104632806, -0.000382832019, -0.0065896404, -0.0207357407, 0.0214226916, 0.012734035, 0.00606488623, -0.027681578, -0.000942172308, -0.00426800083, 0.00947101787, 0.0150365923, 0.0162705593, 0.0115445917, -0.00609987, 0.0101452479, -0.0209647249, -0.00746741099, 0.006576919, -0.0105268871, -0.0193109531, -0.0107940342, -0.0102088545, -0.0138153462, -0.0326174498, -0.0166649204, 0.0281649884, 0.0260150861, -0.00756918173, 0.00116718048, 0.0144768553, 0.00627478771, 0.0129439365, -0.00583272241, 0.0151892481, -0.000409467291, 0.00479911547, 0.0131411171, 0.0267910864, -0.00204813154, -0.0103233457, 0.0158380363, 0.00238206587, -0.000459955, 0.0132937729, -0.0104060341, 0.0325156786, 0.0151510844, -0.0151765272, -0.00464964, 0.021511741, -0.0317269564, -0.0122887893, -0.0114746252, 0.0116590839, 0.0112138381, -0.0122442646, 0.00308968895, -0.00588678801, -0.00429344317, 0.00456377119, 0.0126831494, -0.0046719024, -1.88956237e-05, 0.0119771166, 0.00293226284, 0.0112647228, 0.0222750194, 0.00485954201, 0.0336351544, -0.00464009913, -0.0135227563, -0.00737836165, -0.00422665663, 0.00231209863, 0.010685903, -0.0219951514, -0.0163723305, 0.0135481991, -0.01288033, -0.0198452491, -0.00565462373, -0.0255316757, -0.0037527876, 0.00776636181, -0.00713029644, 0.0241832174, -0.00179370516, 0.0171228889, 0.0239415113, 0.00817344431, -0.00688859122, -0.00138662313, 0.0199851841, 0.00888583716, 0.00767095201, 0.0104760015, 0.00174759049, -0.0171737727, -0.0126767894, -0.00553059112, -0.0121361334, 0.0204304289, 0.00838970672, 0.0159016419, 0.00859324727, 0.00767095201, 0.0111820344, -0.0102597391, 0.0199342985, -0.0255952831, -0.00651013246, 0.00575321401, -0.000582000124, -0.0180515442, -0.0094773788, -0.0142224282, 0.0213209223, 0.00413760729, 0.0161306262, 0.0221859701, 0.00760734547, -0.00666596834, 0.00996714924, 0.00683770608, 0.0124287233, 0.0158507563, -0.00658328, 0.00937560853, -0.00852964073, -0.0184586253, -0.022325905, -0.0195653811, -0.00503445975, -0.00889219809, -0.0028702463, 0.00488180388, -0.0192727894, -0.0254171845, -0.00788721442, 0.00686314888, -0.0195653811, -0.00834518205, -0.0142224282, 0.00360013172, -0.00999259204, -0.0124732479, 0.012873969, -0.00852964073, 0.0358232185, -0.0192855112, 0.0146803958, 0.00737836165, 0.0141333798, -0.0367391519, 0.0126958713, -0.0279614478, 0.00582318148, 0.00518711563, 0.000958869, -0.00354606612, 0.0052602631, -0.00157187728, 0.000205727498, 0.0033075416, -0.0193872824, 0.021371806, -0.00565144373, -0.0114110187, -0.0167030841, 0.0033425251, 0.023699807, -0.0109276082, 0.00596629595, -0.0066278046, 0.010272461, -0.0281904303, -0.00301654148, 0.0139807239, 3.98534903e-05, -0.0163850524, -0.00092070509, -0.0204813145, 0.0107240677, 0.00882859156, -0.00980813242, -0.00866957474, -0.00154563959, -0.00788721442, 0.00149713957, -0.000402112782, -0.00155518064, 0.0286483988, -0.00203063968, 0.0212191511, 0.00109005754, -0.0197307579, -0.00339023, 0.00660872227, -0.00597901735, 0.0165249854, -0.00650695199, 0.00814164057, -0.00303244311, -0.00235344307, -0.0170211177, -0.0122061, -0.0162451174, 0.00412488589, -0.00538111571, -0.014515019, -0.00403583655, -0.0132556092, 0.0141842645, -0.0037337055, -0.00816072244, 0.0188529864, -0.00928655919, 0.00388636137, 0.0183822978, -0.000243493894, -0.00774728, -0.0062048207, 0.0121106906, -0.000266153744, -0.00697764056, 0.0100880014, -0.0107940342, 0.0173518714, -0.0104823625, 0.000174719287, 0.00346973818, -0.00175395107, -0.000769241946, -0.00213877088, 0.00465600099, -0.00404855795, 0.0146803958, -0.000484205, 0.00810983777, 0.0139934449, 0.0123714777, -0.00775364041, -0.00401993515, -0.00891764089, -0.0115318708, 0.0289791524, 0.00417577103, -0.0148330517, 0.00486272201, 0.00610305, -0.0282413159, 0.00269055786, -0.00819252618, -0.00732747652, 0.00100418867, 0.0233054459, -0.0162705593, 0.00737836165, -0.00102247554, 0.00541291898, 0.0119961984, -0.00332980393, 0.0191328563, 0.0152146909, 0.0144895762, -0.00802714843, -0.00725750951, -0.001849361, -0.00484682061, -0.0163977724, 0.0187130515, 0.0146803958, -0.0235980358, 0.00823069, -0.0207357407, 0.000587963208, -0.0204940364, 0.000555364823, 0.0115000671, 0.00540019758, 0.00193682, 0.001695115, 0.00157664774, -0.0380876139, 0.0191201344, 0.0187130515, -0.00519665657, 0.0104887234, -0.001249074, 0.0134973135, -0.0226312168, 0.0215244628, 0.0128612481, -0.0112011163, -0.00835790299, -0.0157744288, -0.0259642, 0.0234835446, 0.0202268884, 0.0191074125, 0.00200996757, 0.00149872981, -0.00301177101, -0.00843423, -0.00941377226, 0.00474823033, 0.00172055769, -0.0104441987, 0.00949646067, 0.00441747624, -0.00969364122, -0.0195781011, 0.0157998707, 0.00124827889, 0.00114571326, -0.00125781994, 0.0175172482, -0.018903872, 0.00650059106, -0.00302767265, 0.0201123971, 0.0129821, 0.00459239399, 0.0001476865, 0.00357786939, -0.00633203378, 0.00518075516, 0.00233118073, 0.0209138393, 0.0017221478, 0.0168302972, 0.0123142311, 0.0242849868, -0.0121043297, -0.0188402645, 0.00984629709, -0.00652603386, -0.0505799428, 0.0252645295, 0.00385773834, 0.00285911513, 0.000893672288, 5.76931452e-05, -0.00303562335, 0.0139298383, 8.31854632e-05, 0.00952826347, -0.00522209937, 0.00210537738, 0.0201632828, 0.0304293819, 0.0355433486, 0.0111184279, 0.00727023091, 0.0110802641, 0.000151363754, -0.00319145946, -0.0149475439, 0.0105523299, -0.00120613957, -0.0065641976, 0.0104314769, -0.00647514872, 0.0106095755, 0.00349200051, -0.00259355782, 0.0155963302, -0.0111120678, 0.00349836121, 0.021244593, -0.0032948202, 0.00758190267, -0.027528923, -0.00263967249, 0.0084660342, -0.0278596766, 0.00252995128, -0.0084660342, -0.00764550967, 0.00871409941, 0.0109085264, -0.00841514859, 0.011786297, 0.0212700367, -0.00267306599, 0.016575871, 0.0240305606, -0.00600446, -0.00626524678, -0.0362303, -0.0168175772, 0.00109641824, 0.00502809929, 0.00126656576, -0.00997351, -0.0181787573, -0.0100498376, 0.00187798392, 0.00485954201, 0.0132683301, 0.0220842, 0.00567688607, 0.00812892, 0.020277774, 0.000483409909, 0.0125241335, -5.26244949e-05, -0.00767095201, 0.00344429561, -0.00443655811, 0.0235344302, -0.000614200893, 0.012746756, -0.0271981675, -0.0057373126, 0.00356832845, 0.0168048553, 0.00873954222, 0.012047084, -0.00588996802, 0.00318509899, 0.00125941, -0.0212954786, -0.000452799257, 0.0219569877, -0.00393088581, 0.0186748877, -0.0107495096, -0.00394678768, 0.00497085322, 0.0146803958, 0.0103869522, 0.00135561498, 0.0145786256, 0.00243613147, -0.016296003, 0.0101706898, -0.00282572187, -0.0199724622, -0.00446836138, 0.00294657424, 0.0106159365, -0.0180261, -0.00331708253, 0.013007543, -0.0147058386, -0.00622072257, 0.000650774688, 0.000496131252, -0.00437613204, -0.00411852542, -0.00961095281, -0.00464645959, -0.00783632882, 0.00808439497, 0.00176031177, 0.013420986, 0.00885403436, 0.0244503655, -0.00979541149, -0.0114682643, 0.0185095109, 0.0080907559, -0.0245521348, -0.00308968895, -0.0153164612, 0.0071112141, 0.0037814104, 0.00671049301, -0.0130775105, 0.00976996869, -0.0168684609, 0.0137517396, 0.0017014757, -0.013840789, 0.0136881331, 0.0307855792, 0.00700944383, 0.019323675, 0.00449380418, -0.00297678728, -0.00389908254, -0.0236616433, -0.00512032863, -0.0177716743, 0.0121488543, 0.0255952831, 6.87746e-05, -0.0181024298, -0.00699036196, 0.0094773788, 0.0161560681, 0.0146931168, -0.009451936, 0.00737200119, 0.0119516738, -0.00481183687, -1.50444439e-05, 0.0071493783, 0.00888583716, 0.00503764, 0.0151383635, -0.00490724668, -0.00227393489, -0.019870691, -0.00403583655, 0.0123587558, 0.0150238713, 0.00288137747, -0.00403265655, -0.0113982968, 0.0111311497, -0.0122697074, 0.000479036971, 0.0144514125, 0.000556955, 0.00401039422, -0.0113474121, -0.00199406594, -0.0244376436, 0.00781724695, 8.88504219e-05, -0.00285911513, -0.0239415113, -0.0123333139, 0.00862505101, -0.00261741038, -0.0361285321, 0.00187480357, 0.0189929213, -0.00605534529, -0.00964911655, 0.0152528547, 0.00926111639, -0.0104251169, 0.029182693, 0.0248828903, -0.00357150869, -0.0276052505, 0.0118817072, 0.00381321367, 0.0210028887, -0.0160034131, 0.0145531828, 0.00978905056, 0.00179370516, -0.00078514358, -0.00161242648, -0.0099544283, -0.00473550893, 0.0051934761, -0.0111184279, 0.0170211177, -0.00866957474, -0.00294339401, 0.0192855112, -0.0199851841, 0.00179370516, -0.00159016415, -0.0184713472, -0.00879042782, -0.0196544286, -0.00232004956, -0.0125432154, 0.0296152178, 0.00626524678, -0.0122569855, -0.00343157444, -0.00986537896, 0.0135990838, -0.00589950895, 0.00996714924, -0.00618255837, 0.00912754238, 0.00221827906, -0.0152910193, 0.0099862311, -0.0126704285, -0.0206085276, -0.00382593507, 0.00408354169, 0.0247175116, 9.56583172e-05, 0.0266893152, 0.0153673468, 0.00240114797, -0.00316124642, 0.000907188689, -0.0218424946, 0.00717482064, 0.0056419028, -0.0302003976, 0.0188784301, -0.0123205921, -0.00845967326, 0.00532068918, -0.00190501672, -0.0120343631, 0.0246411841, 0.00247906591, 0.021091938, -0.0215244628, 0.0239415113, 0.010819477, 0.0174918063, 0.00566734513, 0.00592813222, 0.00382593507, -0.0164868217, 0.00309127918, -0.018624004, 0.0161051825, -0.0160161331, -0.000966819818, -0.0116145592, 0.00280504953, 0.00298950868, 0.0090512149, 0.00695855869, 0.00131109043, 0.00203223, 0.00722570624, 0.00544154178, -0.0173009858, 0.0225930531, -0.0157871507, -0.00660872227, 0.0027955086, -0.00672321441, -0.0137899043, -0.0128040025, -0.0129566574, -0.0105141653, 0.00999895204, -0.00678046, 0.0228474792, -0.00858688634, -0.0164613798, 0.00473550893, 0.000941377191, -0.00489452528, 0.0119834775, -0.000130492845, -0.0200106259, 0.00425527943, -0.0102851819, 0.0214226916, -0.0134082641, -0.00406127935, -0.00615393557, 0.00319145946, -0.0137644615, 0.00770275528, 0.00629068958, 0.0104632806, 0.00581682054, -0.0177589543, 0.0204177089, -0.00438249251, -0.00197339384, -0.0104569197, 0.000310678326, 0.00859960821, 0.0090003293, 0.0150238713, -0.00190501672, -0.00740380445, -0.0164868217, -0.00621118117, -0.0143241994, 0.00421711523, 0.0124160023, -0.00951554254, -0.0023295905, -0.00150111504, -0.0147312814, 0.0156853795, 0.0061253123, 0.00750557519, -0.0200615115, 0.0269691851, 0.017949773, -0.00151145109, -0.00290682, -0.000973180518, -0.0159398057, 0.00845967326, -0.00110595918, -0.00146295107, 0.0254426263, -0.00408990216, 0.0221732501, 0.0295643322, -0.0131029533, 0.017250102, 0.00453196792, 0.0173137076, 0.0226566587, -0.0105268871, -0.00411852542, -0.0294371191, 0.0178352818, 0.0108067561, 0.00353652518, -0.00100418867, 0.00360013172, -0.00557193533, 0.0143750841, -0.0080907559, -0.00840878859, -0.00457013212, 0.00039614967, -0.0156981014, 0.00452878745, -0.029716989, -0.0181024298, 0.00819888618, -0.00548288599, -0.00692675542, -0.034525644, 0.00517439423, -0.0132301664, 0.0169702321, 0.00376868923, 0.0165504292, -0.00134368869, 0.00869501755, 0.0142987566, -0.0123905595, 0.0206975769, -0.00263649225, -0.0179752167, -0.00889855903, -0.00545744365, 0.00471642707, 0.0245902985, -0.0103996741, -0.0176571831, -0.00456377119, 0.00678682094, -0.0238906275, 0.0120788869, -0.0134973135, 0.00482773827, -0.0103551494, -0.00126020517, 0.026841972, -0.020137839, -0.00800170656, 0.0146295102, 0.00453832885, 0.0115827564, 0.00353970542, 0.0118499035, 0.00983357523, -0.010965772, -0.00513623049, -0.00382593507, 0.00676773861, 0.0199851841, -0.0179624949, 0.0115573136, -0.00746105053, 0.00371144316, 0.00706032896, -0.00538747618, 0.00615393557, -0.00386409904, -0.00938196853, 0.00441429578, -0.0148839373, -0.00387682021, -0.00718118157, 0.000432922214, 0.00621118117, -0.0203668233, 0.00773455855, 0.024234103, 0.00519665657, 0.0080144275, 0.0102024935, -0.0042330171, -0.000550594355, 0.0204685926, 0.00716846, -0.015481839, 0.0156853795, 0.0152655765, 0.0150238713, 0.0101834117, -0.00922295265, 0.00487862388, 0.00730839465, -0.000966819818, 0.00983357523, -0.00831337832, -0.00588042708, 0.0192982331, 0.00568006653, 0.000741016527, -0.0167412478, 0.0168557409, 0.00578501727, -0.00346019724, -0.00295770541, -0.0148712154, -0.00115127885, -0.00273667253, 0.00216262322, 0.00287819724, 0.0111629525, 0.0106350183, 0.0180515442, 0.00670413207, 0.0140824942, -0.0193109531, -0.0150874779, -0.0154563962, -0.0124096414, -0.018624004, -0.0229110867, -0.010278821, -0.0138916746, 0.0199724622, -0.00359059079, -0.00676773861, -0.00294339401, -0.00934380479, 0.019438168, 0.0269437414, 0.00646878779, 0.00977633, -0.00600446, -0.00620800117, 0.00530160731, -0.0156472158, 0.00487226294, -0.0220333152, -0.0350853838, 0.00858688634, -0.0111184279, -0.0128421662, 0.0254426263, 0.0217152815, 0.0120979697, -0.00252836104, 0.00734019792, -0.00789993536, -0.0248701684, -0.03040394, 0.0166394785, 0.0210792162, -0.00169352489, -0.00355878752, -0.0100561986, 0.00557511579, 0.00523482077, -0.00821160804, -0.00401357422, -0.00970636215, -0.0134082641, -0.0124032805, 0.0132301664, -0.0104314769, -0.0225040037, -0.015341904, 0.0203032158, -0.0315997414, 0.0216389541, -0.0209011175, 0.0023757054, 0.0135990838, 0.0265875459, 0.000484205, 0.0102152145, -0.00136197568, -0.00520937797, -0.00076089357, -0.0162705593, -0.00765823061, 0.00403583655, 0.0033139023, -0.00730203418, 0.0237888563, 0.0110802641, -0.0134464288, -0.0117608542, -0.0219697077, -0.000342680374, 0.0144132487, 0.0124096414, -0.012734035, -0.000237332, -0.00831973925, -0.00137549208, -0.0202014465, -0.010692264, 0.0296406616, 0.0125622973, 0.011786297, 0.00502173835, -0.00104235264, -0.0287247263, 0.0127785597, -0.0143878059, 0.00746105053, 0.0458476134, -0.000669856672, 0.0285466276, 0.00574685354, 0.0180006586, -0.0252390858, 0.0103360675, -0.0112265591, -0.00138582813, 0.00051759847, -0.0158125926, 0.0085741654, -0.0137517396, -0.018369576, 0.0113156084, -0.0129439365, -0.0119771166, 0.00822432898, 0.00648150919, 0.00645924686, -0.0181914791, -0.00185413146, -0.0230510198, 0.0203286596, -0.00972544402, 0.00437295157, -0.0294880047, -0.0433542356, 0.00821796898, -0.0115509527, 0.0052061975, -0.00959187, 0.0201123971, -0.00665324694, 0.00355878752, -0.00687587, 0.00239319704, 0.00104950834, -0.00775364041, 0.00898124743, 0.00842150953, -0.00959187, -0.00470688613, 0.0177462325, 0.000304516434, 0.00500265649, -0.0210537743, -0.0150493141, 0.00541291898, 0.0124160023, 0.0234072171, -0.0133192157, 0.00190024625, -0.00622708304, 0.00611577136, -0.0238779057, -0.0024027382, 0.0103042638, 0.00859960821, 0.00620164024, -0.00493905, 0.00791901816, 0.00194000034, 0.00707941083, -0.0268928576, -0.000701262383, -0.00597265689, 0.00210537738, 0.000637258287, -0.0167539697, -0.00389590231, -0.0170338396, 0.0133192157, -0.00889855903, 0.00450016465, -0.000908778864, 0.012326953, -0.0206594132, -0.00546698458, -0.00405809889, -0.033278957, 0.0153546259, -0.0255825613, -0.00325665623, 0.00580091914, 0.0157998707, -0.0153800678, 0.0176953468, -0.0104441987, -0.00610623043, -0.0095028216, 0.0187384952, 0.000488577934, -0.00784905069, -0.0129439365, -0.0150493141, 0.0247302335, 0.0101897726, 0.00781724695, -0.0205830857, 0.0112265591, 0.00884767342, 0.00520937797, 0.00746105053, 0.0132047236, -0.00180165609, 0.000923885382, -0.0314979739, -0.00814800151, -0.00515531236, -0.00938832946, 0.00675501768, -0.0104569197, 0.00789993536, -0.0240305606, 0.00646878779, 0.0233181678, 0.00579773868, -0.00325665623, -0.0186748877, -0.0264348891, -0.00549560739, -0.0169956759, -0.00549878785, -0.0118944282, 0.0051521319, 0.0105396081, -0.00655147666, 0.0085741654, -0.00790629629, -0.0172119364, -0.011652723, -0.0205703638, -0.0133064939, -0.0141715435, 0.00820524711, -0.00602672249, -0.00810347684, -0.0132428873, -0.0129821, -0.0197689217, -0.00102486077, -0.000647991896, 0.00810347684, -0.00958551, -0.00823069, -0.000534692721, -0.0130520677, -0.0262822341, 0.0113474121, 0.00988446083, -0.0269183, -0.0158125926, 0.00406127935, -0.0182550848, -0.0233563315, -0.0162323955, 0.0335333832, -0.0160542969, -0.00874590315, -0.00427118083, 0.0254680701, -0.00512986956, -0.0182550848, 0.00397541048, 0.0182678066, -0.00425846, 0.00388954161, 0.00429344317, 0.00395314815, -0.00298950868, 0.0106668212, -0.00767731294, -0.011640002, -0.00410580402, -0.0161560681, -0.040402893, 0.00177462329, 0.00489770574, 0.00429026317, 0.0187766589, -0.0189674795, -0.00481183687, -0.010138887, 0.00531432871, -0.0174281988, 0.0114173787, 0.0271472838, 0.0189547576, -0.0108640017, -0.000510045153, -0.0150365923, -0.00866957474, 0.0367900394, -0.00338068907, 0.0100689195, -0.0138916746, -0.0108767236, -0.00785541069, 0.000645606662, -0.00672957487, -0.0085487226, 0.000138940595, -0.00228824629, -0.00821160804, 0.00666596834, -0.0163214449, 0.00750557519, -0.019450888, 0.0226948243, -0.00668505, -2.39642723e-05, -0.00581046, 0.0130393468, -0.0118499035, 0.0100116739, -0.0103297066, 0.0284194145, 0.0042202957, -0.00633203378, -0.0311163329, 0.010819477, -0.00893672276, 0.00390544324, -0.0180006586, 0.011652723, -0.000985106686, 0.0108131161, 0.00547016505, 0.0172373801, 0.013700855, -0.00870137848, 0.0172246583, 0.00447472185, -0.00158539368, -0.0056323614, -0.00875226408, -0.00221509882, 0.00877134595, -0.022325905, 0.000869819836, 0.022732988, 0.00880314875, -0.000791901781, 0.0169193465, 0.00763278827, -0.00077441, -0.0033139023, 0.000525151729, 0.0161687899, 0.0284703, -0.0105523299, 0.0124223623, -0.0279360041, -0.00297837751, 0.00191614788, -0.00515531236, -0.0223640688, 0.0117481332, 0.0264603328, 0.00708577177, 0.0189929213, 0.00385773834, 0.0116972476, 0.0187893808, 0.00824341085, -0.00721934531, 0.00511396816, -0.00357150869, -0.00851055887, 0.00418531196, -0.0226948243, -0.0130902315, -0.00428072223, -0.0199470203, 0.00231209863, 0.000835631276, 0.0420312211, -0.00878406689, 0.0138535108, 0.00312467269, 0.00683770608, -0.0185222328, -0.00090003293, 0.0283939727, -0.017250102, 0.030556595, 0.00865685381, -0.00464645959, -0.00692675542, -0.000684168132, -0.00114491826, -0.00108290184, 0.00651331246, 0.00876498502, -0.000673434522, 0.0263585616, 0.00454468932, 0.0144259697, 0.00672957487, 0.0127085922, 0.00321849226, -0.00938196853, -0.0028416235, 0.0148330517, 0.0115445917, 0.0057373126, 0.0152274128, 0.000915934565, -0.00382593507, 0.0167666916, -0.00566098467, 0.00839606673, 0.0109912148, -0.00734655838, 0.00319782016, 0.00287183654, -0.0214481354, 0.0119898384, 0.00660872227, 0.0206212495, -0.00408354169, 0.0251500364, 0.0204813145, 0.00255380361, -0.00879678875, 0.00464009913, 0.011099346, 0.027528923, 0.00567370607, -0.00548288599, -0.0012156805, -0.0189929213, -0.0110739032, 0.00926111639, -0.0174790844, 0.00110834441, 0.00973180495, -0.0116590839, -0.0161687899, -0.00695855869, 0.0230637416, -0.00296724634, -0.0210410524, 0.00563872233, -0.000526344345, -0.00411852542, -0.0126195429, 0.021244593, -0.0126895104, 0.00683134561, -0.00240114797, 0.00394360721, -0.0119262319, 0.0121106906, 0.0206594132, 0.0226948243, 0.0265112184, 0.0177335106, 0.00667868974, 0.00821796898, 0.00361603335, 0.0125177726, -0.0159652494, -0.00886675529, 0.00815436244, -0.0126195429, 0.00251722988, 0.00155915599, 0.0148966582, -0.00884131249, -0.00581682054, -0.0159525275, 0.0123205921, 0.0149475439, 0.00658328, 0.0154436743, -0.0085487226, -0.013007543, -0.00968728, 0.0273762662, 0.0229238067, 0.00739108305, -0.00651967339, -0.0386982374, -0.00257288571, 0.00679954188, -0.00547970599, 0.016435938, -0.0258242674, -0.0191455763, -0.0109403301, -0.00306742685, 0.0215626266, 0.0106095755, -0.00626842724, -0.00222782]
|
01 Aug, 2024
|
How to Post JSON Data to Server ?
01 Aug, 2024
In modern web development, sending JSON data to a server is a common task, especially when working with RESTful APIs. JSON (JavaScript Object Notation) is a lightweight data-interchange format that is easy to read and write for humans and easy to parse and generate for machines. This article will guide you through the process of posting JSON data to a server using different methods in JavaScript, including using the fetch API.
Syntax: The key/value pairs in JSON are separated by commas:
{ "name": "David", "age": 22, "gender": "male",}Why Post JSON Data?Posting JSON data to a server is often used for:
Submitting form dataSending complex data structuresCommunicating between frontend and backend applicationsUpdating resources on the serverUsing the Fetch APIThe fetch API is a modern and versatile method to make HTTP requests in JavaScript. It is built into modern browsers and provides a simple interface for fetching resources across the network.
Installation Steps:Step 1: Create a folder application by using this command
mkdir myappStep 2: Navigate to project directory
cd myappStep 3: Initialize the NodeJS application.
npm init -y Step 4: Install the necessary packages/libraries in your project using the following commands.
npm install express body-parserProject Structure: The updated dependencies in package.json file will look like:
"dependencies": { "body-parser": "^1.20.2", "express": "^4.19.2", },Example: Implementation to show post JSON data to the server by setting up the server.
JavaScript
// server.js
const express = require("express");
const bodyParser = require("body-parser");
const app = express();
app.use(express.json());
app.get("/", function (req, res) {
res.sendFile(__dirname + "/index.html");
});
app.post("/data", function (req, res) {
console.log(req.body.name);
console.log(req.body.email);
});
app.listen(3000, function () {
console.log("Server started on port 3000");
});
The Frontend structure of our application is simple, with two inputs: one for name and one for email. A send button for sending the input data to the server. When the user hits the send button it makes a POST request with JSON data to the /data route on the server, and then the server logs the received data.
Example: In this example, we will make use of fetch API to send data to the NodeJS server.
HTML
<!DOCTYPE html>
<html>
<head>
<title>Post JSON to Server</title>
<script>
function send() {
let name = document.getElementById("name").value;
let email = document.getElementById("email").value;
let result = document.getElementById("result");
const json = {
name: name,
email: email,
};
fetch("/data", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(json),
});
}
</script>
</head>
<body>
<h1 style="color: green">Welcome To GFG</h1>
<input type="text" id="name" placeholder="Name" />
<input type="email" id="email" placeholder="Email" />
<button onclick="send()">Send</button>
</body>
</html>
Step to Run Application: Run the application using the following command from the root directory of the project
node server.jsOutput: Your project will be shown in the URL http://localhost:3000/
https://media.geeksforgeeks.org/wp-content/uploads/20240801163557/1.mp4Example 2: The following example shows how we can use XMLHttpRequest (XHR) to make a JSON POST request.
HTML
<!DOCTYPE html>
<html>
<head>
<title>Post JSON to Server</title>
<script>
function send() {
let name = document.getElementById("name").value;
let email = document.getElementById("email").value;
let result = document.getElementById("result");
const xhr = new XMLHttpRequest();
// create a JSON object
const json = {
name: name,
email: email,
};
// open request
xhr.open("POST", "/data");
// set `Content-Type` header
xhr.setRequestHeader("Content-Type",
"application/json");
// send request with JSON payload
xhr.send(JSON.stringify(json));
}
</script>
</head>
<body>
<h1 style="color: green">Welcome To GFG</h1>
<input type="text" id="name" placeholder="Name" />
<input type="email" id="email" placeholder="Email" />
<button onclick="send()">Send</button>
</body>
</html>
Step to Run Application: Run the application using the following command from the root directory of the project
npm startOutput: Your project will be shown in the URL http://localhost:3000/
https://media.geeksforgeeks.org/wp-content/uploads/20240801162953/1.mp4Type the name and email in the input boxes and click on the send button.Check the terminal whether the server logs the received data or not. ConclusionPosting JSON data to a server is a fundamental task in web development. Whether you use the built-in fetch API or the powerful Axios library, understanding how to perform this task effectively is crucial for building modern web applications. By following the examples provided, you can confidently post JSON data to any server endpoint and handle the responses and errors appropriately.
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?
|
https://www.geeksforgeeks.org/how-to-post-json-data-to-server?ref=asr10
|
CSS
|
How to Post JSON Data to Server ?
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props
|
GeeksforGeeks
|
[-0.0310248323, 0.0606008396, -0.0069193868, 0.053556554, 0.0351464897, -0.00296790479, 0.0109223891, 0.0361456759, -0.0299756825, 0.010460264, 0.039992556, 0.00148707489, -0.0294261295, -0.0419909358, 0.0364204533, -0.023880627, -0.0103665907, -0.00178605109, -0.0192843564, 0.0319990404, 0.017523285, -0.0128645636, 0.0266783573, 0.0150752701, -0.0275026895, 0.0217948202, 0.0156997647, 0.0150877601, -0.0430650637, 0.00664461, 0.0186598618, 0.0154124973, 0.0205208529, -0.0412415452, -0.0328983106, -0.0262537021, 0.00946107507, 0.0294760875, -0.0249797348, 0.00492413063, 0.028227102, 0.0245051198, -0.00772498315, -0.0323737375, -0.00145194714, 0.0192593765, 0.0212577544, -0.0229813568, 0.0435147, 0.00280241412, -0.00743771624, -0.00963593274, 0.00926123746, 0.0112721054, -0.0140136313, 0.0117654558, 0.0589022152, -0.021882249, -0.021882249, -0.0313495696, 0.0470368415, -0.078886, 0.0112845954, -0.0245675705, -0.0118653746, 0.0600013249, -0.0126147661, 0.0422906913, -0.00553301163, 0.0151502099, -0.0205583218, 0.0390433259, 0.00713171437, 0.036495395, -0.0109411245, 0.0127396649, -0.0204084441, 0.00510523329, 0.00527696917, 0.00972960703, -0.00974834152, 0.00218104315, -0.0121339066, -0.00894899, 0.0348467305, 0.0170112, -0.0509836413, -0.0488104038, 0.0396178626, -0.0137138749, 0.037519563, -0.0232061744, -0.0221070666, -0.0381940156, 0.00388747128, 0.00107959297, 0.0102729164, -0.00054604141, 0.00267751538, 0.023368543, 0.00704428554, 0.0304502975, 0.0168363415, -0.0336976647, 0.00166427484, -0.00069045549, 0.0342971757, 0.0084306607, -0.0181602687, 0.0145631861, 0.0609505549, 0.00207019551, -0.0140011422, 0.0125960317, -0.00720040873, 0.00526760193, -0.00504278392, -0.0689940304, 0.0198339093, -0.00683820248, 0.0324486755, -0.00196871534, 0.0260538645, 0.0254668407, -0.0213451833, -0.00114438415, -0.0177481025, -0.019009579, 0.0130394222, -0.00112643, -0.0347468108, 0.017523285, 0.00213732873, 0.0291013923, 0.00848062057, 0.0154624563, 0.0023777585, 0.00307094632, 0.0154874362, -0.0266783573, 0.00682571298, -0.031624347, -0.0292262901, -0.0144008175, 0.0385936908, 0.0208455902, -0.0010507101, 0.000368255947, -0.0154124973, -0.0505839661, -0.0626491755, -0.0158371516, 0.0465622284, 0.0329232924, 0.024817368, -0.0291763321, 0.0288765747, -0.0218572691, -0.00611066772, -0.0344470553, 0.0084681306, -0.0477362759, 0.00509274378, 0.0108287157, -0.0104227951, 0.0197964404, 0.0718417168, -0.0361456759, -0.0349466503, 0.0126459915, -0.0174233653, -0.049634736, -0.00777494255, 0.0339724422, -0.0403672531, 0.0139137125, 0.0319740623, -0.0289265346, 0.0244052019, 0.00484919129, 0.0207706504, 0.0061949743, 0.00284144492, 0.0222569443, 0.001704867, 0.0196090918, -0.0111721866, -0.0227940083, 0.00403422723, -0.0150378011, -0.0381190777, 0.00455255667, 0.0237682182, -0.0246924683, 0.000675233488, 0.0031552529, 0.000519500463, -0.00351589778, -0.00522388704, 0.00137700792, 0.0102229565, -0.0483108088, -0.0303753577, -0.0259289648, 0.0110535333, -0.0293262098, 0.0252420232, -0.0569038391, 0.0323487595, -0.0146631049, -0.0073128175, 0.00493662, -0.0156997647, -0.0385936908, 0.0286517572, -0.0267532971, -0.0264285598, 0.011703006, -0.0343721174, -0.0201086868, -0.0329982303, 0.0231562145, -0.0334228873, 0.0319990404, -0.0364454351, -0.025316963, -0.00302567054, -0.0107974904, 0.00986699574, 0.0334478654, 0.0356960408, 0.0108162258, 0.0153875174, -0.00931119639, -0.0330481902, -0.00230125804, 0.00445263786, -0.0137138749, -0.0163367465, 0.0381190777, -0.0206332617, -0.00909262337, 0.00274308724, -0.0241054446, 0.00597327948, 0.0142509388, -0.0603010803, 0.0307750348, 0.00197964394, -0.0098794857, -0.0242678132, -0.0368700884, -0.0044401479, 0.0277025271, -0.0113033308, -0.0118091702, -0.0098045459, -0.0108474502, 0.0105851628, -0.0276026074, 0.00175951014, -0.0222444553, -0.00422157533, 0.0217448603, 0.0327234529, -0.00913009327, 0.0175482649, -0.0171360988, -0.00148395239, 0.00273996475, 0.0231437255, -0.0182476975, 0.00472429255, 0.00596391177, -0.00485543627, 0.0128645636, -0.00354087749, -0.000106066298, 0.0211453456, 0.0183725953, 0.00546431728, 0.00317711, 0.0387185887, 0.040417213, 0.0193717852, -0.0314245075, -0.0194342341, -0.025366921, -0.0233560521, 0.0166489948, -0.0102479365, -0.018984599, 0.0344720334, -0.0191219877, 0.0185724329, 0.0152875986, -0.00607944326, 0.0334228873, -0.00599513669, 0.0774371773, -0.0374945849, -0.0160120111, 0.0218073092, 0.0527072437, -0.0442141332, -0.00358771463, 0.00385312433, 0.00541435787, 0.0101667522, -0.0264535397, 0.0487604439, -0.0294011496, -0.0546057038, -0.0460626334, -0.0373946652, 0.0617998652, 0.0144507773, 0.0474864766, 0.00132939033, -0.0536065139, -0.021445103, -0.0132017899, -0.0602011643, 0.0495098345, 0.0179854091, -0.00716293929, 0.0158746224, -0.00355024496, 0.00276026083, 0.0116343116, -0.01510025, -0.0490102395, 0.0171735678, 0.0505340062, 0.0053144386, 0.00566727761, -0.0508837216, 0.0170986298, 0.0245176107, 0.00668832427, 0.0184850041, 0.00137154362, -0.0286767371, -0.0318241827, 0.0682946, 0.00996067, -0.0221445356, 0.00777494255, 0.0264035799, -0.0100605888, 0.000893025543, 0.02827706, 0.0268032569, 0.0111596966, 0.0157122537, -0.0244676508, 0.01704867, -0.0321738981, -0.0596516095, 0.0254793297, 0.0341972597, 0.0270780344, -0.00366889872, 0.0188971702, 0.0053425408, -0.0649473146, -0.0294011496, -0.0165615641, 0.0153500475, -0.0230562966, -0.00605758606, -0.000775933033, 0.0117592104, -0.00266190316, -0.0440642536, -0.0395429209, -0.00346906087, -0.00530507136, 0.0257291272, 0.035746, 0.0236932784, 0.0205458328, -0.0434647389, 0.0328233726, 0.0164866261, -0.00299132336, 0.0140635911, -0.00985450577, 0.0342971757, 0.0283769798, -0.0230188258, 0.0234559719, -0.0173609164, -0.03409734, -0.0235808697, -0.00305377273, 0.0150752701, -0.0222569443, 0.0173609164, 0.0166989528, 0.0346968547, 0.0303004198, -0.0153875174, 0.00562668545, -0.02830204, -0.0191969275, 0.00451508723, -0.0155623751, -0.00554862386, 0.0208705682, -0.01897211, 0.022381844, 0.0102791609, -0.0319490805, 0.0184850041, 0.022893928, -0.00232623797, 0.05850254, 0.0056079505, 0.0148004936, -0.0139761623, -0.00966715813, 0.0156622939, -0.00788110681, -0.0210204478, 0.00652595609, -0.00279929163, 0.00183444936, 0.00816837326, -0.0119840279, -0.0203959551, -0.0114157395, 0.00071036123, 0.000211156832, 0.0120277423, -0.0209080391, 0.0498595536, -0.00524886698, -0.00739400182, -0.0148504525, 0.000285900867, 0.0161993578, 0.00293355761, -0.00567664485, -0.0572535545, -0.00330981496, -0.0437395163, 0.00266034179, -0.0303503796, -0.0155498851, 0.0020233586, -0.0176356938, -0.0684944317, 0.00470243534, 0.0191094987, -0.0138762435, -0.0463623889, 0.0259539448, 0.010728796, -0.0187972505, 0.0484606884, 0.0108287157, -0.0134016285, 0.0227565393, 0.0265534595, -0.0261288043, -0.0159495603, 0.00614813762, 0.00138403347, -0.0102229565, -0.00713171437, 0.0134890573, 0.00641979184, 0.0241803844, -0.00758759491, 0.0124024386, -0.0235808697, -0.00722538866, 0.0149753513, -0.0346468948, -0.0252794921, 0.0283769798, 0.0187597815, 0.00360957184, -0.00256354548, -0.021432614, 0.0171485879, -0.0132517498, 0.00912384875, 0.00928621646, 0.0334978253, -0.0100855678, -0.0412915, -0.0344970152, 0.0121276621, -0.015587355, -0.0367951505, -0.0347967707, 0.0126397461, 0.00231062551, -0.0121214166, -0.00138637528, 0.0159245823, 0.0081371488, -0.0157497227, 0.00414975872, -0.00639168965, 0.0562543646, 0.00370949064, -0.0136014661, 0.00907388888, -0.0202210955, -0.0241179354, 0.0426653884, -0.00688191736, -0.0283270199, -0.03022548, 0.00816212874, 0.00243864674, 0.0361456759, -0.00477112969, -0.0256791674, -0.00374071533, -0.045613, -0.0284019597, -0.0152126588, 0.00171891809, -0.00491476292, -0.0181352887, -0.0107475314, 0.0080996789, -0.0101979775, 0.0188097414, 0.036595311, -0.0143508585, 0.00721289869, -0.00911135878, 0.0242428333, 0.0317992046, -0.00155498856, -0.0360207781, 0.0200837068, -0.0236683, -0.0356211029, 0.01415102, 0.03022548, 0.0118216602, -0.0301505402, 0.00655718055, 0.0153250676, 0.0103728352, 0.0150502911, 0.0284769, 0.0209080391, 0.00793106575, -0.0127896247, -0.00886156131, -0.0200462379, -0.0255168, 0.0112658609, 0.0176107138, -0.0087616425, -0.00918629766, -0.0218322892, 0.0249172859, -0.0265534595, -0.0204459131, 0.0550553389, -0.0246799793, 0.00546743954, 0.0102479365, -0.0290764123, -0.0129020335, -0.0185974129, -0.025341941, 0.053007, 0.0162118487, 0.00482421136, 0.0153125776, -0.0255792495, 0.0146506149, -0.00134188018, 0.00515831541, 0.0188971702, -0.0154000074, 0.0338725224, -0.0256042294, -0.0165116061, -0.0376194827, -0.00768751372, 0.0164616462, -0.00313027319, -0.0132642398, 0.0122650499, -0.0164866261, 0.0135764861, -0.0208580792, 0.0264035799, 0.0288016349, -0.0110285534, -0.00344720343, 0.0213202052, 0.0112346364, 0.012652236, 0.0115094129, 0.0104540195, 0.0177481025, -0.0248798169, 0.00573909422, -0.0115343928, -0.0305002574, -0.00583589077, 0.0303753577, -0.000307172682, -0.00876788702, -0.0019843278, -0.00412165653, 0.0417661183, -0.0256042294, 0.0142509388, 0.0157622136, -0.00796229113, 0.00889903121, -0.00109130226, 0.00847437512, 0.0150378011, -0.00192968454, -0.00918629766, 0.00958597381, -0.0369450301, -0.00676950859, -0.0185849238, 0.0005881947, -0.0109161446, 0.0107974904, 0.0298258048, -0.0153750274, 0.00314432429, -0.0171735678, 0.00151908014, 0.00768126873, 0.00150971278, -0.0284519196, 0.108012378, -0.021407634, -0.000683820283, -0.0481109694, 0.00142384495, 0.0109785935, -0.0189970881, 0.0104415296, -0.029750865, 0.0189970881, 0.0115656173, -0.0224442929, -0.0195341539, 0.0244052019, -0.021407634, -0.000868826406, 0.00763755431, 0.0098420158, -0.0464373268, -0.00237307488, -0.00779992249, -0.00867421366, -0.00952352397, 0.0299756825, 0.0232436433, 0.0529570393, 0.00596078951, 0.00755637, -0.00838694628, -0.00617936207, 0.0410417058, -0.0217073895, -0.00848062057, -0.0144257974, 0.0352464058, 0.0213826541, 0.00181883702, -0.00617311709, -0.00448074, 0.0266034193, -0.00326610054, -0.0365703329, 0.0195966028, -0.0150627811, -0.00848062057, -0.0207456704, -0.038968388, -0.022381844, -0.00483670132, 0.0485855862, 0.0114906784, 0.0076437993, -0.0389184281, 0.0354462452, 0.00545182731, -0.00475863973, -0.0561544448, -0.00831200741, -0.0226816, -0.0149004124, -0.0239930358, -0.00481172139, 0.0442391112, 0.0034066115, 0.0253794119, -0.0186973326, -0.011665537, 0.0159870312, 0.00910511333, -0.0113657797, 0.049734652, 0.00618560705, -0.0148254735, 0.0173359364, -0.00144414091, -0.0132392598, 0.0216324516, 0.00304284412, -0.0222069845, 0.00643852679, 0.0180978179, -0.00848686509, -0.0233060941, 0.0220071469, 0.00322550838, -0.0310997702, -0.013651426, 0.0168488324, -0.032648515, -0.0197090115, 0.00436520902, -0.0290514324, 0.00982328132, 0.00210298155, 0.00368763343, -0.0201461576, 0.019446725, -0.00781241246, -0.0442391112, -0.0121838665, -0.0060169939, -0.0259539448, -0.0174983051, 0.025291983, 0.00402486, 0.0184600241, -0.0273528099, 0.00880535692, 0.0066758343, 0.00685693743, -0.0343471356, -0.0142259598, 0.00674452865, -0.00660714, 0.0143883275, 0.017523285, 0.0261038244, 0.0382439755, 0.0126272561, -0.00889903121, -0.00918629766, 0.00778743252, -0.00323487585, -0.03022548, 0.00255261664, 0.00971087255, 0.00399675779, 0.0102229565, 0.0252794921, 0.0289015546, 0.0158621315, 0.0202210955, 0.0158246625, 0.0042340653, -0.0336726829, -0.0287266951, -0.00761257438, -0.0115718627, -0.0245051198, 0.0342472158, 0.0148254735, 0.00891776569, -0.00745645119, 0.0227940083, -0.00123337447, 0.00826829206, 0.00528945914, 0.021407634, -0.0219946578, -0.0101355277, 0.010010629, -0.0208830591, -0.0124586429, 0.0165116061, -0.00798102561, 0.00857429393, -0.0344220772, 0.024854837, -0.0139386924, 0.0173858963, 0.0301005822, 0.00488353847, -0.000736511895, -0.00686318241, -0.0304003377, -0.0207706504, 0.0166240148, 0.0100668333, -0.013651426, -0.013663915, 0.0355211832, 0.00611379044, 0.00541435787, 0.0458128341, -0.0108037358, -0.000846188574, 0.0163492374, 0.00474614976, 0.0137638347, 0.0218572691, 0.00598264672, -0.0337226428, 0.00942985062, 0.0249547567, 0.000591317192, 0.0184850041, -0.0122275809, 0.0158746224, 0.000708019361, -0.0509586595, 0.0300256424, -0.0147505337, -0.0113970041, 0.0211828165, 0.0187348016, 0.00165646872, -0.00333791715, -0.0121526411, -0.00861176383, -0.0203210153, 0.0018890925, -0.0422657132, 0.00364079652, 0.00937989075, 0.0259289648, 0.0305002574, 0.0177730825, 0.00695061125, -0.0255417805, -0.00311778323, -0.00214981847, 0.000974990311, 0.0171360988, -0.00189221499, 0.02732783, 0.0226316396, -0.00386873656, 0.0163117666, -0.00691314181, -0.009742097, 0.00504590664, 0.0154124973, -0.0041841059, -0.00236214628, -0.00645101676, -0.0375945, -0.0240429956, 0.0179104712, -0.0247424282, -0.00148473307, 0.0130144423, -0.0121151721, 0.00666334433, -0.0301255621, 0.0153000886, 0.000236526874, -0.00992944464, -0.00709424494, 0.0260039046, -0.00320989592, 0.00542060286, -0.00415288098, 0.0053300513, -0.0277025271, -0.0333479457, 0.00721914368, -0.0148629425, -0.00359395938, -0.000103724451, 0.0101480177, 0.00751265557, 0.0046555982, 0.0188721903, 0.00495223282, -0.00436833128, 0.00505839661, 0.0322238579, 0.0121276621, -0.00135124754, -0.0152875986, 0.00971087255, 0.0350215882, -0.00584838074, 0.0205583218, -0.00765004428, -0.0169612411, 0.0584525801, 0.0205833018, 0.0172734875, -0.0137513448, -0.00869919267, 0.020970488, 0.00982952584, 0.0121339066, -0.00730032753, 0.0306501351, -0.0247174483, 0.00610442273, 0.0161369089, -0.0168613214, 0.0152501287, -0.00884282682, 0.00311466074, -0.0450634435, 0.0123087652, 0.0018750414, 0.0158121735, 0.0225567017, 0.000107822685, 0.0145631861, -0.00738775684, 0.00211703265, -0.00320989592, -0.0301505402, -0.00423718756, -0.0469619036, 0.0111222276, 0.0448136441, 0.0112096565, -0.0195716228, -0.00874915253, -0.0143258786, -0.0150128212, -0.0277774669, -0.00353151024, -0.0235309117, -0.00246050395, -0.0100855678, 0.0118528847, 0.0383189134, -0.0224567819, -0.0140261212, -0.0241803844, -0.0218697581, 0.0223318841, -0.0122837853, -0.00808094442, 0.0217698403, -0.00207487936, 0.016036991, 0.00010645661, 0.00823082309, 0.0164241754, -0.0138512636, 0.0289764926, 0.0103166308, -0.0314744674, -0.011203411, -0.0248048771, 0.049734652, -0.0161369089, -0.00421845308, -0.00508337608, 0.0139636723, -0.0422657132, -0.0245925505, -0.0261787623, -0.0308499727, -0.00564854266, -0.0229688678, -0.00135983434, 0.045787856, -0.054056149, 0.0370699279, 0.00788110681, -0.0216324516, -0.015587355, -0.00488041574, 0.022856459, 0.0073502874, -0.00772498315, -0.0146755949, -0.0120464778, 0.00816212874, 0.000928153284, -0.0241678935, -0.0158746224, -0.0119652934, -0.03794422, -0.0200837068, 0.0202835463, 0.0416662, 0.018984599, 0.0305751972, -0.0101854876, -0.0155623751, 0.0166864637, -0.0298258048, -0.0357709825, -0.00537064299, -0.0526572838, -0.0269281548, 0.0105352039, 0.00156903965, 0.01510025, 0.0116280671, 0.013613956, -0.0275526494, -0.0172984675, 0.0170861389, -0.0481609292, -0.00333167217, 0.0224567819, 0.0162118487, -0.00138403347, 0.0163742173, -0.0172609966, -0.0377194025, -0.00987324, -0.0125210928, -0.000461734802, 0.00114750664, -0.00614813762, -0.0249547567, -0.0515581742, -0.00124508375, 0.00906139892, 0.0234434828, -0.00048593391, 0.00349091808, 0.0227440502, -0.0268532149, -0.0138262836, 0.0191594567, -0.00335977436, -0.0221445356, 0.0138887335, -0.00511772325, -0.00967340264, 0.0309998523, -0.00517392764, -0.0121713765, -0.00189689873, -0.0207456704, -0.0145506961, 0.0324736573, 0.0387435704, -0.0153750274, -0.0324486755, 0.00267751538, -0.00537376571, 0.001187318, 0.000392455055, -0.00330044748, 0.00566415489, -0.033173088, 0.00785612687, -0.00648848619, -0.00287110847, 0.0105601829, 0.0154874362, 0.00848062057, 0.00504590664, -0.00640105736, 0.0138137937, 0.00660089497, -0.0103728352, 0.00270561757, -0.00844939519, 0.0196590517, 0.0102104666, -0.0171236079, -0.0210828967, 0.0118029248, -0.024817368, 0.00103041413, -0.0322488397, -0.0183601063, 0.0118778646, -0.0187223125, 0.0386186726, 0.00264316821, 0.00883033685, -0.00927997194, 0.072141476, 0.00192031718, 0.00212327763, -0.0216699205, -0.00153859565, -0.0098045459, 0.00791857578, 0.0429401658, 0.0217698403, -0.0128645636, 0.0225816816, -0.0267033372, 0.0240055267, -0.00244176923, -0.00172204059, 0.0014058908, -0.0157747027, -0.00923625752, 0.0192219075, -0.00407169713, 0.000703725964, 0.000670159468, -0.0172485076, -0.00621058699, 0.0171111189, 0.00816837326, 0.00564229768, -0.0228065, -0.0316992849, -0.00939238071, 0.0111721866, -0.0175482649, 0.00384375686, 0.00738151185, 0.0355211832, 0.0552052148, 0.013676405, -0.00451196497, -0.00932993088, 0.0184600241, 0.0195091739, -0.0314494856, -0.0134640774, 0.00664461, 0.0168863013, 0.00967340264, -0.00748143066, 0.00409355434, -0.0286517572, -0.00124898681, -0.0238931179, -0.00859302934, 0.000915663433, 0.0281022023, -0.00904890895, 0.0122588053, -0.0160245, -0.0102604264, 0.027277872, -0.018035369, -0.0116967615, -0.000213498672, 0.0134890573, -0.00074783084, -0.019996278, -0.029725885, -0.00286330213, 0.0203210153, -0.0215824917, 0.00798102561, 0.0125086028, -0.0207831394, 0.00056594715, 0.000868045841, 0.00816837326, -0.0127833793, -0.031724263, 0.0011904405, 0.0245301, -0.00256198412, 0.00582027854, -0.000113579736, -0.0140885711, 0.00713795936, 0.00966715813, -0.00555174612, -0.00634173024, -0.015587355, 0.00721289869, -9.63573766e-05, 0.0114719439, -0.0181852467, -0.00199994, -0.0258540269, 0.0279023647, -0.0144757573, 0.0418160781, 0.00869294815, 0.023843158, -0.0158871114, 0.0101792421, 0.0216324516, 0.00149097794, 0.00350028556, 0.00295229256, 0.00232467661, 0.03309815, 0.018534964, 0.00861176383, 0.00295541505, 0.0259789247, -0.00881784689, 0.00101948541, 0.00569225708, 0.0270530544, 0.00329420273, 0.0115656173, -0.00359708187, -0.00560170552, -0.000421533041, 0.00999813899, 0.0351464897, 0.00796853565, -0.0204209331, -0.023868138, -0.00523949973, -0.0135515062, -0.0111284722, 0.00912384875, 0.00812465884, -0.0197714604, 0.0262037423, -0.0179729201, 0.0182102267, 0.00322863087, 0.000477737456, -0.0228689481, 0.0156622939, 0.0335477851, 0.00921752211, -0.00818086322, 0.00244333036, -0.014176, 0.00295697618, 0.0297009051, 0.000731437874, 0.00251202472, 0.0156373139, -0.0121151721, 0.00878662243, 0.00602323888, -0.0089365, 0.0178605113, 0.0160120111, 0.0216949, -0.0346718729, 0.0184475351, -0.0143133886, -0.0187597815, 0.0128021147, 0.002682199, 0.00385000184, 0.0146631049, 0.00148785545, 0.018509984, 0.0288765747, -0.0251795743, -0.00391869619, 0.0201961156, 0.00493662, -0.00618248479, 0.0286767371, 0.0100418534, -0.00648848619, 0.0031552529, 0.00671954872, 0.0129020335, -0.0241179354, 0.0269031748, -0.00107256742, -0.0227565393, -0.0235558916, -0.0171985477, -0.0128895435, -0.0087616425, 0.00280553661, 0.00588272791, -0.00946107507, 0.0135515062, -0.00484919129, 0.00117482815, 0.0218447782, 0.0195091739, 0.016111929, 0.00856804941, 0.000702164776, -0.0154624563, -0.00995442457, -0.0174358562, 0.0285518374, -0.0101417731, 0.00126694096, -0.00979205593, 0.0202710554, -0.00133329339, -0.00468370039, -0.0290014725, -0.0232561342, 0.0143258786, 0.00463374099, -0.0123712141, -0.0129644824, -0.0273777898, -0.00849311054, 0.0260039046, -0.0179604292, 0.00323175336, 0.000671720714, 0.019521663, -0.00689440686, 0.032049, -0.00166583608, -0.00623868918, 0.000681868696, -0.0144133074, -0.0151502099, -0.0108849201, 0.0111659421, -0.00565166539, 0.037094906, -0.0333229676, 0.00564854266, 0.01510025, -0.0123399897, 0.0138887335, 0.0111721866, 0.0268781949, -0.0170736499, -0.012652236, 0.00804347452, -0.00467433315, -0.0203709751, -0.00714420434, -0.0116530471, 0.0469619036, -1.08127615e-05, 0.0109348791, 0.00376569526, -0.00133875769, 0.00634485297, 0.0137513448, -0.0191844366, 0.0194342341, -0.00065571809, 0.0019000211, 0.0102916509, -0.0341972597, -0.00920503214, -0.0283270199, -0.0352464058, 0.00542997, 0.00585774798, -0.00819335319, -0.00278836302, -0.034546975, 0.0225192308, -0.0439393558, -0.00519890757, -0.0153875174, 0.00182820437, -0.00196871534, 0.0254668407, 0.0322738178, 0.00654469058, -0.00236214628, 0.0135515062, 0.0448136441, 0.00459627155, -0.00191563345, -0.0143383685, -0.00247767754, 0.0156248249, 0.0152501287, 0.00121229782, -0.00894274563, -0.000149878411, -0.00819335319, 0.0179604292, -0.0177730825, -0.00105383259, 0.027802445, 0.00352526526, -0.0069693462, -0.012165131, -0.00763755431, 0.0113470452, 0.0221944954, 0.021407634, -0.00698808115, 0.00801225, 0.0161494, 0.0351714678, -0.0357959606, 0.012664726, -0.00378130749, 0.00761257438, 0.027277872, -0.00108583784, 0.0276525673, 0.0195341539, 0.00086023967, -0.0358459204, 0.0351464897, -0.00303035416, -0.0289265346, -0.00785612687, -0.00300537446, -0.0014308705, 0.0049616, -0.0182352066, -0.0158371516, -0.008293272, 0.01511274, 0.00981703587, -0.0202335864, -0.0383189134, -0.00481484411, 0.0131768109, 0.00282427133, -0.0154624563, 0.00942985062, -0.00511772325, -0.00861176383, 0.0122588053, 0.00308343605, 0.0138762435, -0.00514894817, -0.0392181836, 0.00556735881, -0.0265784394, -0.0236932784, 0.0144507773, 0.0132767297, -0.00797478, 0.0230687857, 0.0114844339, 0.0167863816, 0.0190845188, -0.00711922487, 7.89398691e-05, -0.0231687054, 0.0022747172, -0.00219821674, 0.0280772224, 0.0214700829, 0.00434647407, 0.000155147573, 0.0123649696, 0.0114781884, 0.00949854404, 0.00412790151, -0.00937989075, -0.000908637885, -0.0154749462, -0.00700681563, -0.00444327062, -0.0399675779, -0.000484763, 0.0296009872, 0.00848062057, 0.000571411452, 0.0199463181, 0.022931397, -0.0215824917, 0.0316743031, 0.00871792808, 0.00969838258, 0.019446725, 0.0158371516, -0.0208455902, -0.0192094166, -0.0155623751, -0.00233560521, 0.00264004571, 0.0023777585, -0.0165615641, -0.00776869757, -0.00230594189, 0.0218572691, 0.0178105514, 0.0111159822, 0.0189596191, 0.014126041, -0.000578827341, -0.00861176383, 0.0162992775, -0.0395429209, -0.00455255667, -0.00625430141, -0.0056704, 0.0100231189, 0.019484194, -0.00801225, -0.0052644792, 0.0116218217, 0.0161868688, -0.0117529659, -0.0091176033, 0.0145756761, -0.0144382874, 0.00927372649, -0.0125960317, 0.00823706761, -0.0053300513, -0.00399988, 0.00971711706, 0.00710049, 0.0207581595, 0.0223568641, 0.0185724329, 0.00989197567, 0.0135390172, 0.00983577128, -0.0235059317, -0.0173734054, -0.00792482123, 0.0258540269, -0.00126225722, -0.00266034179, 0.028701717, 0.0146755949, -0.000628396461, 0.00736902189, 0.0109848389, 0.0135764861, 0.0066758343, 0.0333729275, 0.00123649696, -0.00502404943, 0.013613956, 0.00173765281, 0.0175482649, -0.00498657953, 0.00966091268, -0.00429651467, 0.0161494, 0.00604821835, -0.00463061873, -0.00981079135, -0.0198214203, -0.013626446, 0.0162992775, 0.00283363881, 0.00394992065, -0.00553301163, 0.00517705036, -0.0121838665, -0.0290764123, 0.0124149285, 0.0170112, -0.0218572691, -0.0189596191, 0.0155623751, 0.00344408117, 0.0250172056, 0.00555174612, 0.0144257974, 0.00879911147, 0.00541123515, 0.00710673491, -0.00609817775, -0.0243177731, 0.0132767297, -0.000206473123, -0.00469306763, -0.0220446158, -0.00186255155, -0.00325361057, -0.0047929869, 0.00184693921, 0.000313027325, 0.0246050395, 0.0220321268, 0.0206332617, 0.0116780261, 0.0515581742, 0.00417786092, -0.000463296048, -0.0111846766, 0.0140511012, 0.0194592141, 0.0083931908, -0.0127396649, 0.00525198923, 8.90390947e-05, 0.00827453751, -0.00382502214, 0.00390620623, -0.0115843527, -0.0010171436, 0.00208580797, 0.0103978151, 0.0162867885, 0.00836196635, -0.00903017446, 0.0103041409, -0.0101667522, 0.0161868688, 0.00731906248, -0.00751890056, -0.00149566168, -0.0102978963, -0.0228065, 0.0083682118, -0.011215901, -0.00722538866, 0.00733155245, -0.0172235277, 0.0209205281, 0.00692563178, 0.0301255621, 0.00964217819, 0.0120277423, -0.0187223125, 0.0108287157, -0.0034846731, 0.021919718, -0.0138137937, 0.00012460594, -0.0322488397, -0.000842285459, -0.00462125102, -0.00831200741, 0.00286642462, -0.000955474912, -0.0266034193, 0.0074002468, -0.00430275965, 0.00293355761, 0.0110535333, -0.0113782696, 0.0128395837, -0.0103728352, 0.00225129863, 0.00949229952, -0.00541435787, -0.0049709673, -0.0151751898, 0.0089365, -0.0139012225, 0.00441829069, -0.0181852467, -0.0100855678, 0.00491164066, -0.00202804222, 0.0169987101, -0.0162243377, -0.00598264672, -0.000367865636, 0.0254418608, -0.00327234529, 0.0142884087, 0.00733155245, 0.0128770536, -0.0147130648, -0.00820584316, -0.00874915253, -0.0110410433, 0.00378130749, -0.0177106317, 0.00416849321, 0.00903641898, -0.000399285462, 0.00986699574, 0.0178230405, 0.00380004221, -0.0144382874, 0.00494911, 0.011690516, 0.00344408117, 0.00104992953, -0.0283769798, -0.00519890757, -0.00175170391, -0.026303662, 0.0202585664, -0.00121073658, 0.00787486136, -0.00601074891, 0.0318491645, -0.0080747, 0.0161868688, -0.0207706504, 0.00308343605, 0.00918005314, 0.0131143611, -0.0130519122, 0.00880535692, -0.00885531586, -0.00661963, 0.000228330391, 0.0067257937, 0.00924874749, 0.00219197175, -0.00512709096, -0.00548929675, -0.0286017973, -0.0184225552, -0.0091176033, 0.0110597778, 0.00356585719, -0.00327859027, 0.00491476292, -0.017873, 0.00814963877, -0.00851809, 0.027802445, 0.011665537, 0.0110160634, -0.00500843721, 0.00426216749, -0.00576407416, 0.00885531586, -0.00038386829, 0.0106101427, 0.017061159, -0.0044401479, -0.00300069083, -0.0273777898, -0.00682571298, 0.00392181845, -0.00428090198, 0.0145257162, -0.00092971453, -0.0115468828, -0.0167364236, -0.0255168, 0.0139386924, -0.0221570265, -0.0020342872, 0.0177106317, 0.0121026821, -0.00212015514, -0.0146755949, 0.0239056069, 0.026778277, 0.00725036813, -0.0189221501, 0.00335352961, -0.000786081073, 0.0164616462, 0.0193592943, -0.0186099038, 0.0168363415, -0.016586544, -0.0184350442, 0.00248860614, 0.0213826541, 0.00559858326, 0.00781865697, 0.0105664283, 0.00313807931, 0.00485231355, 0.00437769853, 0.00108974101, -0.00763755431, 0.0188721903, 0.0124586429, -0.011665537, 0.0195091739, 0.0262786821, -0.0209080391, 0.0150253111, -0.0113220653, -0.0131143611, 0.0161743797, 0.0128895435, 0.00784363691, -0.0330731682, -0.00464623095, 0.00180322467, 0.00557048107, 0.00821208768, 0.0077437181, 0.0085056, -0.00214825734, 0.00808094442, -0.0130269323, -0.0129519934, 0.00761881936, 0.0150253111, -0.0142009798, -0.026778277, 0.00112877181, -0.0167489126, -0.0343970954, -0.00480547687, 0.0220695958, 0.0128395837, -0.00607319828, 0.0132392598, 0.0248798169, 0.00591395237, 0.0125210928, 0.0106975716, 0.00961095374, 0.00621058699, -0.0044776178, 0.0111659421, 0.020470893, -0.00220914534, 0.00920503214, 0.00455255667, 0.00937364623, 0.00484606856, 0.00445888285, -0.0184475351, 0.0339224823, 0.0172859766, -0.0237807091, -0.00293043535, 0.010691327, -0.0160994399, -0.00494911, -0.0178355314, 0.0195466429, 0.00886156131, -0.00691314181, 0.0101230377, -0.0193468053, 0.0122900298, 0.00432773912, 0.00649473118, -0.0176107138, -2.37356271e-05, 0.00679448806, 0.00141213567, 0.0113033308, 0.00843690615, 0.00320365117, 0.0172609966, -0.00723787863, -0.0188097414, -0.000959377969, -0.00409355434, 0.00075524667, 0.00313964044, -7.09385495e-05, -0.0227690283, 0.0224068221, -0.00167832593, -0.0186973326, -0.000768126862, -0.0334478654, -0.00237151375, 0.0076937587, -0.012421174, 0.0188721903, -0.00727534806, 0.00575158419, 0.0155249061, 0.00229345192, 0.000876632577, -0.00217323704, 0.01702369, 0.000388356828, 0.00674452865, 0.00409355434, 0.0035627347, -0.039393045, -0.0090551544, -0.00417786092, -0.0101667522, 0.00851184502, 0.0100980578, 0.0128021147, 0.017535774, -0.00132314535, 0.000466028199, 0.0011623383, 0.0128395837, -0.0166739728, -0.00413102377, 0.0116530471, -0.00993569, -0.0289764926, 0.00291638426, -0.00788110681, 0.0175857339, 0.0120652122, 0.00670081424, 0.0130394222, 0.030700095, 0.00289296568, 0.0035346325, 0.0162493177, -0.00203116471, 0.00806221, -0.0140386112, 0.00452133222, -0.0140885711, -0.0199088491, -0.026778277, -0.019484194, 0.000549944467, -0.00816212874, 0.0100918133, 0.0125772972, -0.0108599402, -0.0266034193, 0.00648224121, -0.000252724683, -0.0193218254, -0.00415912597, -0.0191344768, 0.0207456704, -0.0115094129, -0.00931744184, -0.00353151024, -0.012421174, 0.0105102239, -0.0186723527, 0.00998564903, -0.00694436673, 0.012677216, -0.0263286419, 0.00902393, -0.0251795743, 0.0148254735, -0.024342753, 0.0060169939, 0.00568289, -0.000942985, 0.000220914531, -0.00254168804, -0.00673203869, -0.0259789247, 0.0158996023, -0.0127334204, -0.0101667522, -0.0270030946, 0.00471180258, 0.00391557347, -0.0117779458, 0.0149129024, -0.00224037, -0.00766877877, -0.0314245075, 0.00251670834, 0.00636671, 0.0129894624, -0.0163742173, 0.00104446523, -0.00376257277, 0.0130144423, 0.00202648109, -0.0149378823, -0.00486168126, 0.0125710517, -0.00453382218, 0.00663836487, -0.00936115626, 0.0110597778, 0.0175982229, 0.00491164066, 0.0234559719, -0.00796853565, -0.0158371516, 0.00755637, -0.0084681306, 0.0025682291, -0.00696310122, -0.00547680724, -0.00557360332, 0.0164366663, -0.00903017446, -0.0184850041, 0.00202491973, -0.0332230479, -0.00750016561, -0.000443390309, -0.010728796, 0.00305221137, -0.00617311709, 0.00216543092, -0.0147505337, -0.0149878412, 0.0145506961, -0.0076937587, 0.00441829069, 0.0137513448, 0.00796853565, -0.00135905377, -0.00307250745, 0.0141884899, 0.00123883877, 0.0157497227, 0.0136888949, -0.0161369089, 0.0162493177, -0.00665709935, -0.00648224121, 0.0202460755, -0.0023637074, 0.00248392252, -0.00495847734, 0.00554237887, -0.00498657953, 0.0103978151, 0.00550178671, 0.00277743442, 0.019996278, 0.00459314883, -0.00750016561, -0.00320365117, -0.0183476154, -0.000804035226, 0.0260788444, -0.013164321, -0.00541435787, 0.00574221695, -0.000264433911, -0.03022548, 0.00292731286, -0.0103041409, -0.0132267699, -0.00577031914, 0.0209829789, 0.000567898678, 0.00770624867, -0.0144507773, 0.00569538, 0.0107100615, -0.0142384497, 0.010010629, 0.013676405, 0.0328233726, -0.0058889729, 0.0125897871, -0.0121401511, -0.0117904348, -0.0133891385, 0.0139012225, 0.0127021959, -0.0204833839, 0.00666958932, -0.0134141184, 0.00674452865, -0.0244551618, 0.000834479288, 0.000472273125, -0.00683195749, 0.00678824307, -0.000971867819, 0.000626835215, -0.0398676582, 0.0235683806, 0.0191719476, -0.0100418534, 0.0177481025, -0.00356897968, 0.0171860587, -0.0211828165, 0.0159370713, 0.00601387117, -0.0151751898, -0.0177855715, -0.00264316821, -0.0127459103, 0.0135265272, 0.0186348837, 0.0403422713, 0.00987324, 0.000393235678, 0.0147880036, 0.00403735, -0.00177043874, -0.0044776178, -0.00755637, -0.0131893009, -0.00875539705, 0.00112955237, -0.0050864988, -0.00947356503, 0.0183226354, -0.00514270319, 0.00675077364, -0.00695061125, 0.012677216, -0.028701717, -0.000989041408, 0.00597015675, 0.0121339066, 0.0193093363, -0.00281334273, -0.0158246625, 0.013626446, -0.0117904348, 0.00547680724, -0.00297727226, 0.00234809518, 0.00522700977, 0.00177980622, 0.00998564903, 0.0270530544, 0.0059014624, -0.019009579, -0.0103665907, -0.0186848417, -0.0467620641, 0.0154499663, -0.00377194, -0.00595766678, -0.0149878412, 0.000808718964, -0.0081371488, 0.000727144477, 0.00309592602, 0.0143758375, 0.00615750486, -0.00434022909, 0.00996067, 0.0275276694, 0.0255667586, -0.00179697969, 0.00884282682, 0.0213951431, 0.000317515864, 0.0112845954, -0.0197589714, 0.00477425195, 0.0077437181, -0.00288047572, 0.00454943441, -0.00609505549, -0.00124976737, 0.00816212874, 0.00799976, 0.00655093556, 0.000303269597, 0.00410292158, 0.025804067, -0.0127771348, 0.0176981427, -0.0167364236, -0.00544558233, 0.00103041413, -0.0328983106, 0.0134515874, -0.0023387277, -0.00292731286, 0.0133641586, 0.00374071533, -0.0123774586, 0.0129145235, 0.0176356938, 0.00478674192, 0.00949229952, 0.0264285598, 0.0023918096, -0.0128895435, -0.0146880848, -0.0187847614, 0.00363455154, -0.00175014278, 0.00325673306, -0.0103541007, -0.0125835417, -0.00812465884, 0.00316149788, 0.00935491081, 0.0107600214, 0.00543309236, 0.01510025, 0.00384375686, 0.0259789247, 0.00445263786, 0.0130893812, 0.014625635, -0.00398739, 0.00641354732, 0.00343159121, 0.0138887335, 6.58645367e-05, 0.012446153, -0.0250172056, -0.00382189965, -0.000195642075, 0.0212702453, 0.00527072418, 0.0137013849, 0.0076063294, -0.00443702564, -0.000553066959, -0.0196465626, -0.00381253217, 0.01415102, 0.0207956303, 0.00821208768, -0.0282021221, -0.0170736499, 0.000823550683, 0.00545494957, -0.000588975323, -0.00491164066, 0.00777494255, -0.00153391191, -0.0144257974, 0.0193218254, -0.0023918096, -0.0172609966, -0.00312246685, 0.009511034, 0.0120027633, -0.0137763247, -0.0140511012, 0.0222319644, -0.00728783803, -0.00451196497, 0.00117404759, 0.00923001207, 0.00116936385, 0.00254012691, -0.0212577544, -0.0137513448, -0.00545807229, -0.00473053753, 0.00956099387, 0.00518329535, 0.00308812, 0.0117966803, -0.00246050395, -0.0190845188, 0.0118029248, 0.0162243377, -0.00929870643, 0.00502092671, -0.0140760811, 0.0222569443, -0.0165365841, 0.00538313296, -0.0168488324, 0.00946732, -0.0120901922, 0.0205708127, -0.00814339425, -0.00508962106, 0.0164866261, 0.0200212579, 0.0169237703, 0.016086949, -0.00204989966, -0.00386561407, -0.00854931492, -0.00202491973, 0.00489602797, -0.0168488324, 0.00140823261, 0.0250172056, -0.00149331987, -0.0131893009, -0.000964061648, -0.00741898129, 0.0201336667, 0.00313495682, -0.00404983945, 0.00681946799, 0.0181103088, 0.000574533944, -1.41120872e-05, -0.00381565467, 0.0184850041, 0.00187660265, 0.0242428333, -0.00713171437, 0.00862425379, -0.0178854913, -0.0104227951, 0.0160994399, 0.0291763321, 0.00821833313, 0.00210142019, -0.0166864637, -0.00397177786, -0.00259633129, 0.00566727761, 0.00956723839, 0.000567898678, -0.0012661604, -0.0155498851, -0.00715669431, -0.0118216602, -0.0120214978, 0.00572972698, -0.00207956298, -0.0183226354, -0.0309998523, -0.00117404759, 0.00486480352, -0.0315993652, 0.0142009798, 0.00826204754, -0.0106538571, -0.00841192622, 0.0122400708, -0.00167832593, -0.00453382218, 0.03214892, 0.00852433499, -0.00648224121, -0.00606070831, -0.0141635099, -0.000996067, 0.0156123349, -0.00933617633, 0.00531131634, -0.00482421136, -0.00444639288, -0.00236526877, 0.0188971702, -0.0114906784, 0.00411853381, 0.0118841091, -0.0203709751, 0.0217073895, -0.00143321231, 0.00373134809, -0.003409734, -0.0239930358, 0.00856804941, -0.01992134, -0.0135889761, -0.0138387736, 0.00357210217, -0.00548305176, -0.00631050579, 0.0147380438, 0.0139511824, 0.00413414603, 0.00056594715, -0.0166240148, -0.00250577973, 0.00120371103, 0.00825580303, 0.00516768266, 0.00489915069, 0.00740649179, -0.00924874749, 0.00673203869, -0.0117279859, -0.00851184502, -0.0157622136, -0.00591707509, 0.0195341539, 0.00914882775, 0.0180478599, 0.0144757573, 0.0158871114, 0.0198588893, 0.0163492374, -0.011934069, 0.00214981847, -0.00453694444, -0.0275276694, 0.00845564064, -0.00698808115, 0.0020233586, 0.000733389403, -0.00826829206, -0.00816837326, 0.00834323186, 0.00256979023, 0.0261787623, -0.0318741426, 0.027252892, 0.00510523329, 0.0129145235, 0.0121214166, 0.0148004936, -0.00525198923, -0.0116780261, 0.000335470046, -0.00647599669, 0.0105352039, -0.0155373951, 0.00568913482, -0.00772498315, -0.00113111362, 0.00361269433, 0.00400612503, -0.00516768266, 0.0216324516, -0.00616375, 0.0143758375, 0.0166864637, -0.0147380438, 0.0233060941, -0.0165990349, -0.0128146047, 0.00708175497, -0.016111929, -0.00904890895, 0.000119629512, -0.0163617264, -0.0118965991, 0.00282739382, -0.00387810403, 0.025341941, -0.00752514554, 0.0139386924, -0.000715825532, -0.00527696917, -0.0141635099, 0.023381032, -0.00587336, -0.01802288, 0.020470893, 0.00126928277, 0.0249422658, -0.0269531347, -0.0176232029, 0.00147770753, -0.00867421366, -0.00374383782, 0.0056079505, -0.00910511333, 0.000996847521, 0.0114906784, -0.0144757573, 0.00110691448, -0.00888029579, -0.00605758606, -0.00278836302, 0.00814339425, 0.00511772325, 0.00350028556, 0.0127521548, -0.000532770937, -0.00339724403, -0.00592956459, 0.00824331306, -0.00317086512, 0.00486480352, 0.00467121042, -0.0113408, 0.009511034, -0.00824955758, -0.0219696779, 0.0201711357, 0.00154796301, 0.0121713765, -0.0139012225, 0.0233435631, 0.018547453, -0.00612628, 0.00145428895, -0.0116967615, -0.024355242, 0.00515207043, -0.00856180396, 0.00579529861, 0.0183601063, -0.000809499586, 0.00741273677, 0.0240180157, -0.0192343965, -0.0037251031, -0.00293355761, 0.0150502911, 0.02925127, -0.00632611802, -0.0103416108, -0.00964842271, 0.0121713765, 0.00534566352, 0.0065384456, -0.00185942906, -9.43570485e-05, -0.0011123789, 0.0317742229, -0.0127833793, -0.00904890895, -7.63540738e-05, 0.00954225939, -0.0256541893, -0.000387771375, -0.0268282369, 0.00821833313, 0.0122026009, -0.0182352066, -0.025829047, -0.0304003377, -0.000202960349, -0.0121463966, 0.00124508375, -0.0174108762, -0.00730032753, 0.00467745541, 0.00179541844, 0.01511274, -0.00852433499, 0.00436520902, 0.000128509026, -0.0110910023, 0.011703006, -0.00876788702, -0.0167863816, 0.0167364236, 0.00413414603, -0.0116405571, -0.00449635228, 0.0101105478, -0.0231062546, 0.00191563345, 0.0031521304, -0.00726910308, -0.0162867885, -7.33047909e-06, 0.0300756022, -0.0243177731, -0.00986075, 0.00763755431, 0.0084306607, 0.0165116061, -0.00360332686, -0.00688191736, 0.0106101427, -0.00890527572, -0.007069265, -0.00109442463, 0.010691327, 0.0163117666, -0.0138013037, 0.00068303966, -0.0116780261, 0.0166240148, -0.00881160144, -0.00626991363, 0.012433663, -0.0124961128, -0.00856180396, -0.0237682182, -0.00265097455, -0.00414351374, 0.00137310487, -0.0149253923, 0.000180907926, -0.0220446158, -0.00489290571, 0.0147380438, -0.0025932088, -0.00730032753, 0.00750016561, 0.00959846377, 0.0205583218, 0.0207581595, 0.00427153474, -0.0217823293, 0.00740649179, 0.00710673491, 0.0173484273, 0.00445263786, 0.00713795936, -0.000704116304, 0.00437457627, 0.00160182558, -0.00449947501, -0.0035627347, -0.0065759155, 0.0076437993, 0.0134390974, 0.00362518406, -0.000950010552, 0.0244551618, 0.0056704, -0.00895523559, 0.00497409, -0.0130768912, 0.00400300277, -0.0141884899, -0.0115406383, 0.00973585155, 0.00206551189, 0.011228391, 0.0280022845, 0.0113907596, 0.024392711, -0.0163117666, -0.0104165496, -0.0316992849, -0.00354087749, -0.0176606737, -0.0137388548, -0.00562668545, -0.0230313167, 0.0483357869, -0.00625430141, 0.00240898319, 0.00492725288, -0.00644477177, 0.0138013037, 0.0323237777, -0.00713171437, 0.0149878412, -0.00768126873, 0.00456192438, 0.0183725953, -0.00152688636, 0.00823706761, -0.0322238579, -0.0231687054, 0.0070567755, 0.00109754712, -0.0134640774, 0.01415102, 0.0205957927, 0.0106226327, -0.0196090918, -0.00169862201, -0.00367826619, -0.0220071469, -0.0308749527, 0.0103790797, 0.00523949973, -0.00253700442, -0.0163991973, -0.000965622894, -0.00249172864, 0.012446153, 0.00432149414, -0.00052379386, 0.0157497227, -0.00412477879, -0.00523949973, 0.00583276851, -0.0273028519, -0.012421174, -0.0216949, 0.0176606737, -0.0245550796, 0.0168363415, -0.0177231226, -0.00422469759, -0.000989822, 0.0283769798, -0.00318335509, 0.00600450393, -0.00721914368, 0.00350340782, 0.0144382874, -0.0157122537, 0.0192468856, 0.00638544513, 0.00409043161, 0.0104665095, 0.0241803844, -0.00803723, -0.0132142799, -0.0237682182, -0.0222944133, 0.0103915697, 0.00856804941, 0.0261787623, -0.0134515874, 0.00710049, -0.0187223125, -0.00204209331, -0.0301755201, -0.0147005748, 0.0386686325, 0.0181477778, 0.00704428554, 0.00722538866, 0.0065759155, -0.0117092514, 0.0105102239, -0.0266783573, 0.00497721229, 0.0314245075, -0.00957972836, 0.0278773848, -0.00498657953, 0.0114719439, -0.0179104712, 0.00440580072, -0.0254293717, -0.00319740619, -0.00826829206, -0.018534964, 0.0106476126, -0.0133141987, -0.0196215827, 0.0103478553, -0.00793731119, -0.0120777022, 0.00498033501, 0.0154874362, -0.00190470484, -0.0165365841, -0.00808719, -0.0265784394, 0.0162493177, 0.00433398411, -0.00442453567, -0.0210204478, -0.0239680558, 0.00537688797, -0.00733155245, 0.0293262098, -0.0117592104, 0.0120214978, -0.0179604292, -0.00651346613, 0.00924874749, 0.0114781884, 0.00684444746, -0.0168863013, 0.00586399296, 0.0205708127, -0.01415102, -0.0113845142, 0.00237151375, 0.00914882775, 0.00911135878, -0.0228314791, -0.0101917321, 0.00347530562, 0.00534878578, 0.0280772224, 0.00293199648, 0.00156903965, 0.00357522466, 0.00391245121, -0.0275526494, -0.0147880036, 0.00766877877, 0.00989197567, 0.000233599552, -0.0101417731, 0.0116405571, -0.00556111382, 1.79175931e-05, -0.0131893009, -0.00930495188, 0.00745645119, 0.0143633476, -0.00661963, -0.0104227951, -0.00296790479, -0.0134890573, -0.00203897082, -0.0112721054, -0.00312402821, 0.00312402821, 0.0231187455, -0.00374071533, -0.009486055, 0.0124711329, -0.0375445411, 0.0066758343, -0.0299756825, -0.00566727761, 0.00385312433, 0.00921752211, -0.0233185831, 0.0149878412, 0.010691327, 0.00600450393, -0.00291794538, 0.00305221137, -0.00012080044, -0.00967964716, -0.0118591292, 0.000516378, 0.0144133074, 0.00230594189, 0.0139386924, -0.0267033372, 0.00508337608, -0.00272279116, -0.00410604384, -0.00334728463, 0.0177980624, -0.00526760193, -0.00750641059, -0.0312246699, -0.00625742367, 0.00149956474, -0.0073128175, 0.00360332686, -0.00226534973, 0.0205583218, -0.00886780582, -0.000276728621, 0.0231437255, 0.0135140372, -0.00955474935, -0.0168613214, -0.0198588893, -0.00049100793, -0.000909418508, -0.00494911, 0.00188440876, -0.0150502911, 0.00529570412, -0.00493974285, 0.0147630237, -0.00225129863, -0.00902393, -0.00849935506, -0.0185974129, -0.0220071469, 0.00527384691, 0.0106288772, -0.0124836229, -0.0211953055, -0.0100043844, 0.00369075593, -0.0114906784, 0.00422782032, 0.00314432429, 0.00106398063, -0.0182102267, -0.000114555507, -0.00300849695, -0.00670081424, -0.028352, 0.00450884225, 0.0165240951, -0.0349216722, -0.00630738307, -0.010497734, -0.01992134, -0.0245800596, -0.0140511012, 0.0188472103, -0.0226316396, 0.00545807229, 0.0028726696, 0.0239180978, -0.0127084404, -0.000944546249, 0.000655327749, 0.0129644824, -0.0153000886, -0.0158871114, -0.00408106437, 0.00099450571, 0.008293272, 0.0323237777, -0.00380004221, -0.0132017899, -0.00090239296, -0.0171360988, -0.0246175304, -0.00530819362, -0.00157684577, -0.00482421136, 0.0193592943, -0.0098045459, 0.0125460718, -0.0220945757, 0.0157497227, -0.00894274563, 0.013676405, 0.0103291208, 0.0135515062, -0.00814963877, 0.00750016561, -0.0281271823, -0.0143383685, 0.0343970954, -0.00113033305, 0.0218447782, -0.0168113615, -0.0100605888, -0.0012521093, -0.00272435253, 0.0013051912, 4.04944949e-05, 0.00501468172, 0.00178136735, 0.00104446523, 0.00122869073, -0.0073502874, 0.00563605269, -0.0171985477, 0.00976083148, 0.0031896, 0.00262755598, -0.00661338493, 0.00857429393, -0.008293272, 0.00458378159, 0.00216074707, 0.00708175497, 0.00455255667, -0.016574055, -0.0313995294, 0.020933019, -0.00439643348, 0.000557750638, -0.0147380438, 0.000993725145, 0.00152220263, 0.0133391786, 0.000865704, 0.02827706, 0.021432614, -0.00685693743, 0.00224193139, 0.000550334807, -0.021407634, -0.0234434828, 0.00167051982, -0.0128270946, 0.00505215162, -0.0139636723, 0.0147130648, 0.0241678935, 0.000886, -0.00329108024, 0.00976707693, 0.00678824307, 0.00620121928, 0.00454006717, -0.00755012501, 0.0080996789, 0.028352, -0.00302567054, 0.00238400348, -0.0128895435, -0.0126709705, -0.00983577128, -0.0113470452, -0.0304752775, 0.00803098548, 0.0227065794, 0.000277899555, 0.0127146859, 0.0130019523, 0.00782490242, 0.0212077964, 0.0134016285, -0.00264004571, 0.0178854913, 0.0006202, -0.0186223928, 0.000702945399, -0.0132642398, -0.0184100643, -0.009742097, -0.00733779743, 0.01415102, -0.00923001207, 0.0362455957, -0.0197589714, 0.0161494, 0.00902393, -0.00178136735, -0.0117467204, 0.00288359821, 0.03309815, -0.0210704077, 0.0137138749, 0.000903954206, 0.0218447782, -0.0115468828, -0.00256042299, -0.00578905363, -0.000250187673, -0.00418722816, 0.0232686233, 0.0119090891, 0.016086949, 0.00666958932, 0.0100231189, 0.00936740078, 0.00589521741, 0.0105664283, -0.00424967753, -0.000280241424, 0.0195966028, 0.000921908359, 0.00103822025, 0.0186348837, -0.00573909422, 0.0019983789, 0.013151831, -0.0183351263, 0.0133516686, 0.0153125776, -0.00928621646, -0.0110597778, 0.00164866261, -0.0133516686, 0.00690689683, 0.00180790841, 0.0185599439, 0.0190845188, 0.000489056401, 0.00788110681, 0.00347530562, -0.00894899, -0.000578827341, 0.00467745541, 0.0129395034, -0.000337616744, -0.0117529659, 0.0109661035, -0.0202960353, -0.0124024386, 0.0140511012, -0.0150877601, -0.00883658137, 0.00996691454, 0.00587023795, -0.0262037423, -0.0129894624, 0.0210329369, -0.000624103064, -0.0152875986, -0.00781865697, -0.00532068359, -0.0131018711, -0.018072838, 0.0345969349, -0.00210922654, 0.00738775684, -0.00788110681, 0.00215294096, -0.018547453, 0.00241835066, 0.0188472103, 0.0332730077, 0.0260039046, 0.00606383104, 0.00914882775, 0.00494286511, 0.0014808299, 0.00247767754, -0.0145257162, -0.00256979023, -0.000542138354, -0.0152251488, -0.0142259598, 0.00718167378, 0.0142134698, -0.0201336667, -0.0170861389, -0.018035369, 0.00298820087, 0.00982952584, 0.0184350442, 0.0176481828, -0.00545807229, -0.0041841059, -0.0152751086, 0.0148004936, 0.0111284722, 0.00272903615, -0.00722538866, -0.0366202928, 0.00883658137, 0.0109973289, -0.0102479365, 0.0153000886, -0.0247549172, -0.0227815192, -0.0279023647, 0.00439331122, 0.0196215827, 0.0128021147, -0.00866796821, 0.00225598249]
|
21 Jun, 2023
|
JSON Modify an Array Value of a JSON Object
21 Jun, 2023
The arrays in JSON (JavaScript Object Notation) are similar to arrays in JavaScript. Arrays in JSON can have values of the following types:
null
boolean
number
string
array
object
The arrays in JavaScript can have all these but it can also have other valid JavaScript expressions which are not allowed in JSON. The array value of a JSON object can be modified. It can be simply done by modifying the value present at a given index.
Example: Modifying the value present at an index in the array
Javascript
let myObj, i;
myObj = {
// Stored the values
"words": ["I", "am", "Good"]
};
// Modifying the value present at index 2
myObj.words[2] = "bad";
for (i in myObj.words) {
// Displaying the modified content
console.log(myObj.words[i]);
}
Output
I
am
bad
Note: If the value is modified at an index that is out of the array size, then the new modification will not replace anything in the original information but rather will be an add-on.
Example: Modifying the value of the index which is out of the array size.
Javascript
let myObj, i;
myObj = {
// Stored the values
"words": ["I", "am", "Good"]
};
// Modifying the value present at index 2
myObj.words[3] = "bad";
for (i in myObj.words) {
// Displaying the modified content
console.log(myObj.words[i]);
}
Output
I
am
Good
bad
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object
|
https://www.geeksforgeeks.org/json-modify-array-value-json-object?ref=asr10
|
CSS
|
JSON Modify an Array Value of a JSON Object
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props
|
GeeksforGeeks
|
[-0.033659488, 0.0379705541, -0.012532494, 0.0340740122, -0.0108191213, 0.0275383256, -0.00963081419, 0.0037790928, -0.0249544475, -0.0255347844, 0.00809016, 0.00582754053, 0.015268364, 0.0110885631, 0.0062455209, 0.01428732, -0.0370586, 0.0074614631, -0.0569282, -0.0027773222, -0.0331896916, -0.0302051064, -0.0247057322, 0.0101558799, -0.00146552117, 0.0301498361, 0.0253137033, 0.0250235349, -0.0365611687, 0.00526793115, -0.00252860691, -0.00478086341, 0.00866358727, -0.0395457521, 0.0188056491, 0.0231029, 0.00507448567, -0.0116619905, -0.0221356731, -0.0244432, 0.0126292165, -0.0318079405, -0.0218731407, -0.0317250341, 0.0286851786, 0.0228680018, 0.0127743008, -0.0295971353, -0.0106602199, 0.00712984242, -0.0202841256, 0.0149505604, 0.00379636465, -0.00234725187, 0.013706984, 0.0361190066, -0.0248300899, -0.017189, 0.00394490315, -0.0327475332, 0.0394904837, -0.0254795142, -0.0041418029, -0.0247195493, -0.012919385, 0.0308130775, -0.0320842899, 0.0319461152, -0.0293207858, 0.0196070671, 0.00529211154, 0.0361190066, 0.00378945586, 0.0580336, 0.00947191287, 0.00136448047, -0.00224880199, 0.0146465749, -0.0136724394, 0.0292931497, 0.00392417656, -0.00397253828, -0.0229370892, -0.0376389362, -0.0184325762, 0.00283604674, 0.00979662407, -0.0430001356, 0.0212237164, -0.0351241454, -0.00863595214, -0.00977589842, 0.0100384308, 0.0162770431, 0.00757891173, 0.0204775706, 0.0167468395, -0.0238766819, 0.00293449662, 0.0664899275, -0.000852800324, 0.00411416776, -0.000263396534, 0.00302776485, -0.019385986, -0.030730173, 0.0315868594, 0.0171337295, 0.00281359325, 0.00598298805, 0.0437462814, -0.0158487, -0.0258664042, 0.00823524408, 0.0108951172, -0.00370655069, 0.00911265705, -0.0640580431, 0.0242635719, 0.0418394618, 0.0225778334, 0.0080003459, -0.00606934726, 0.00195863401, -0.0221356731, 0.0169264674, 0.00867740531, 0.0168159269, -0.000919728947, 0.00461505307, -0.068756, -0.0103976866, 0.00403126236, 0.00728183519, 0.0237385053, 0.0318632089, -0.00102249673, 0.0142458668, 0.00555809913, -0.0251478925, -0.0336042196, -0.0460399911, 0.0138106151, -0.00090072985, 0.0195103437, 0.00287749944, 0.00823524408, 0.0296800416, -0.0379152857, -0.0250373539, 0.00410725875, 0.000217733948, 0.0239734035, 0.0343227275, 0.0470072143, -0.000683103863, -0.00779308332, -0.0103147812, 0.000372641342, 0.0134928124, 0.0207815561, -0.0451556668, -0.0284917336, 0.0208506435, -0.0197037887, -0.0137691628, 0.0272619743, -0.0378323793, 0.00615225267, 0.0171613637, -0.0131404651, -0.0219560452, 0.0115998117, 0.0187227447, -0.0337423943, -0.0196347013, 0.015268364, -0.0320566557, 0.0320842899, -0.0474217422, -0.0123666842, -0.0135549912, 0.0285193697, 0.00672567962, 0.00435942877, -0.0341016501, -0.0127190305, -0.00835269317, 0.0317526683, 0.00340601965, -0.0274692383, -0.000910229399, 0.00817997381, -0.0027807767, 0.00331447856, 0.00600371417, -0.0287957191, -0.0164981242, -0.006853492, 0.00706420885, 0.0483060628, -0.0342674591, 0.0064078765, -0.0264881924, 0.0168021098, -0.01104711, 0.0269441716, -0.073619768, 0.042889595, 0.00557882525, 0.000474977394, -0.0184463952, -0.000620925, 0.00606934726, 0.0381087326, 0.000322552834, -0.0204637535, -0.0111783771, -0.000895548263, -0.0181700438, -0.00233170716, -0.0192339923, -0.0189161897, -0.00333520491, -0.0697508603, -0.0152269108, -0.00286368188, 0.0103976866, -0.0261151195, 0.000950818358, 0.0105427708, 8.94360855e-05, 0.0076756347, -0.0278699454, 0.00427306909, -0.0295695011, -0.00403126236, -0.0330515169, -0.0115445415, 0.0422263518, -0.0326646268, 0.00907120481, -0.0269718058, -0.0223567542, 0.00724729104, 0.0452385731, -0.0597469732, 0.0153098162, -0.00759272929, 0.00145774882, 0.0130437426, -0.0480297133, -0.00689149, 0.0330238827, -0.0449345857, 0.0287680849, -0.00629733643, 0.029376056, 0.0137208011, 0.0231029, -0.00356837548, 0.0376389362, 0.00378600159, 0.0194965266, 0.0475046486, -0.0116758076, -0.011254373, -0.0260598492, -0.0463992469, -0.0245813746, 0.0240286738, 0.0130713778, 0.0229785424, 0.0495496392, 0.0183358546, 0.0584204905, -0.0177969709, 0.0208506435, 0.0147709334, 0.00603825785, 0.0299011208, -0.00838032831, 0.0311999694, 0.0297629461, 0.0171475466, 0.00564100407, -0.0050710314, 0.0184740294, -0.022702191, 0.016042145, -0.0345990807, -0.0265296455, 0.0256176889, 0.00190509111, 0.0317803062, -0.0312276036, -0.00918865297, 0.0171199124, -0.00659441343, 0.0403748043, -0.00354419486, -0.0516499057, 0.00172114535, 0.0278975815, -0.0450727642, -0.0330791511, 0.0210993588, -0.0397668332, -0.038385082, -0.0417841934, 0.0310894288, -0.0260460321, -0.0295418669, -0.0311447, -0.01467421, 0.00786217116, 0.0288509894, 0.0286575444, 0.0158625171, -0.0206295624, -0.0540541522, -0.00256833225, -0.00831124093, -0.00566863921, 0.0172028169, 0.00221598544, -0.00838032831, 0.0161388684, -0.018211497, -0.0125877643, -0.0680374876, -0.0201874021, -0.0194965266, 0.0465097837, 0.0165257584, -0.00638369611, -0.031117063, -0.0265987329, -0.0202150382, -0.0217487831, 0.0295971353, -0.0106809456, -0.016636299, 0.013126648, 0.0415078402, -0.016442854, -0.0418947339, -0.0198005121, 0.0530869253, 0.00433179364, 0.000839414599, -0.00754436804, -0.00188091048, -0.0198419634, 0.0105427708, -0.03957339, -0.0053162924, -0.0260460321, -0.0604102127, 0.013216462, 0.000966363063, 0.0134720858, -0.0117587131, -0.00178764213, 0.00977589842, -0.0682033, -0.00107949402, 0.0206019282, -0.0160974152, -0.0219836812, 0.0210164543, -0.0150196487, 0.00878794491, -0.033880569, -0.0308683477, -0.031503953, -0.00598298805, -0.0227850974, -0.00224707485, 0.0217764173, -0.00165033049, 0.00626279274, -0.0305643622, 0.00259942166, -0.00282395654, 0.0206433814, -0.0156138018, -0.055380635, 0.0321395621, 0.0237385053, -0.0283259246, 0.0262118429, 0.0302051064, -0.020353213, 0.0118278, 0.016429035, -0.0129470201, 0.00207608286, 0.0141905965, 0.00574463559, 0.00390345044, -0.0195517968, -0.0189714599, -0.0155723495, 0.00694330595, 0.00251997099, -0.0296247713, -0.00186018413, 0.0649423599, 0.0107569424, -0.0237523243, 0.0275797769, -0.0167606566, -0.00163910375, 0.000519452558, -0.000811779522, 0.0267369095, 0.0346543491, -0.00748218922, 0.0139418812, 0.0381363668, 0.0163323134, -0.0137000745, 0.0206295624, -0.0627315566, -0.0138037065, -0.0360913724, -0.00858068187, -0.00473595643, 0.00112008303, -0.0165810287, 0.0110332929, 0.0345990807, 0.00670149922, -0.0328304358, -0.00873958413, 0.0281186607, -0.0141491443, -0.0150472838, -0.00243706582, 0.0258664042, 0.000531111087, -0.0516499057, 0.0282292012, -0.00315212272, -0.0139211556, -0.0525065921, 0.0220942199, -0.0184187591, -0.0155861666, 0.0149781955, -0.00445615128, -0.017617343, 0.0222323965, 0.0326646268, -0.0320566557, 0.0140869655, -0.00547173945, -0.00492594717, 0.022121856, -0.016636299, -0.00724729104, 0.00694330595, 0.008905394, 0.0462058, -0.0352899544, 0.000875685597, -0.0168021098, -0.00719893, -0.018404942, -0.03285807, -0.0419500023, -0.00709529826, 0.000848482305, 0.00146552117, 0.0214171614, -0.0216382425, -0.00167451112, -0.00995552633, -0.013409907, 0.0137760714, 0.0412867628, -0.0112889167, 0.0408998691, -0.00658750441, -0.0331620574, 0.0396562926, 0.0126153994, 0.00346647133, 0.0399879143, 0.0133615453, 0.00661859382, -0.0299563911, -0.00233516144, -0.0125739463, 0.0228127316, -0.0233377982, -0.0272896104, -0.0336318538, 0.0267783608, -0.0351517797, 0.00432833936, 0.00590008264, -0.0032505726, 0.00236797822, -0.0418118276, -0.0705246404, 0.0380534604, 0.0528934821, -0.0286022741, -0.0311999694, -0.0302327424, -0.00512284692, 0.00330756977, 0.0100315223, -0.0396010242, 0.00429034093, 0.00394835742, 0.0110678365, 0.0175068025, 0.0116343554, -0.0285193697, -0.00835269317, -0.0168711971, -0.0121663297, -0.0124012278, 0.0021192627, -0.0169264674, -0.0304261874, 0.0200215913, -0.0208782777, 0.0290444344, 0.0114616361, -0.00196554279, 0.00317457621, -0.0113027347, -0.00981735066, -0.00364437187, -0.0137346191, 0.0153236343, 0.00797962, 0.0308407135, -0.0158072468, 0.0207815561, 0.0151301883, 0.0128364796, -0.00256487797, -0.0304538216, 0.00281186611, 0.0295418669, -0.00266678212, 0.0226331037, 0.010777669, 0.00103113276, -0.0172028169, 0.0102664204, -0.0189023726, 0.00574463559, -0.020740103, -0.0217626, -0.0110678365, -0.00587590178, 0.0307854433, -0.00347510725, 0.0243602954, -0.016829744, -0.000880435342, 0.0172995403, 0.013306275, 0.0127397571, 8.49561839e-05, -0.0151854586, -0.00289995293, 0.0188056491, -0.0105082272, 0.00340429251, 0.0079865288, 0.0135549912, 0.0204913877, -0.0285746399, 0.0147985676, -0.0230199955, -0.0076756347, 0.0396286584, 0.00742691895, 0.0285470039, -0.00788289774, 0.0165395755, -0.0309512541, -0.0139073376, 0.0170508251, 0.0117587131, -0.0143564073, 0.0249406304, -0.013126648, 0.0376389362, -0.0140316952, -0.0235588774, 0.0179075114, -0.0156967063, -0.000783712661, 0.023890499, -0.019786695, 0.0281186607, 0.00575154414, -0.0153236343, 0.000981907826, 0.0107707595, -0.0153236343, 0.0189438257, -0.0399326421, -0.0267507266, 0.0157796126, -0.0258940402, -0.0216796957, 0.00612116326, -0.0352899544, 0.0469243117, -0.00667386409, -0.0486653186, -0.00230752653, -0.0215415191, 0.0207124688, -0.00843559857, 0.0038447259, 0.0194274392, -0.0212789867, -0.00991407316, 0.0135411732, -0.0106602199, -0.0120903337, -0.0457636379, -0.0140800569, -0.00124616793, -0.00833887607, 0.019385986, -0.0347925238, -0.00191027264, -0.00889848545, 0.0311999694, -0.0253689736, 0.0169264674, -0.00516084535, 0.0777097568, 0.0064078765, 0.00581372296, -0.0420605429, -0.0402642637, 0.0247057322, -0.0281739309, 0.0134375421, -0.0295142308, 0.0212513525, 0.0177969709, -0.00678785844, 0.00937519, 0.0115030883, 0.0239734035, -0.00619025063, 0.00589317409, -0.0303156469, -0.0370586, 0.00139902427, 0.00338011188, 0.00162096822, -0.0213204399, 0.027206704, 0.0239319522, -0.00199490506, 0.00985880289, 0.011744895, -0.00681549357, -0.0376942046, -0.00382054527, 0.0130091989, -0.0222185776, -0.0427237824, 0.0215967894, 0.0184187591, 0.001051859, 0.00286195474, 0.00863595214, 0.0113165518, 0.0125048589, -0.023683235, -0.00695021451, -0.0302603766, -0.000250010809, 0.0102802375, -0.0308683477, -0.00776544819, 0.0205742922, 0.0457912758, 0.0159039702, 0.0433041193, -0.0185707528, 0.0400708206, -0.0187503807, -0.00978971552, -0.0296247713, 0.00180318684, -0.0388272405, -0.022909455, -0.0164566711, -0.00669459, 0.0161803197, 0.00810397789, 0.0275106896, -0.0253137033, 0.0128502976, -0.0252998862, 0.0370862335, -0.0132924579, 0.0209059138, 0.020933548, 0.0133546367, -0.00610389095, -0.00139643345, -0.00136793486, -0.00267196377, 0.0103285993, -0.0122146914, -0.00222807564, -0.000726283586, 0.0112958262, -0.0157934297, -0.000667127315, -0.00602098601, 0.00947882142, -0.00977589842, -0.0248300899, 0.00615225267, -0.0102318767, -0.00190509111, -0.0490245745, 0.0249820836, -0.0191372707, 0.0144945821, -0.0320290215, 0.0149229262, 0.00170732778, -0.0183358546, -0.00248888158, 0.000732328743, -0.0130644692, -0.0135204475, 0.0326646268, -0.0207815561, 0.0117587131, -0.00634569768, -0.0107569424, -0.0177002475, 0.00440779, -0.0137484362, 0.021334257, 0.00577227073, 0.0352899544, 0.018211497, 0.0279113986, 0.0484718718, 0.0178246051, 0.005478648, -0.0285193697, -0.0123666842, -0.0130299246, 0.00016214, -0.00409344165, -0.00712984242, 0.0119797932, -0.00450796727, -0.00267369091, 0.0363677219, -0.00850468595, 0.0014707027, -0.0067049535, -0.00327648036, -0.0295142308, -0.00390690472, -0.00891230255, -0.0410656817, -0.0211131759, -9.27285364e-05, 0.0241530314, 0.0275797769, 0.0160283279, -0.0221356731, 0.0295418669, -0.00902975164, 0.018791832, 0.0301774722, -0.0170508251, -0.0398773737, -0.0101144277, 0.010777669, 0.0011054019, -0.013126648, -0.0158210639, 0.00209680921, 0.00833887607, -0.0409551412, 0.0206433814, -0.0267369095, 0.0369480588, 0.022121856, 0.00227470975, -0.0145084, 0.00247506402, -0.0178384241, 0.0117241694, 4.4852979e-05, -0.041480206, -0.01998014, 0.00295004132, 0.00235243351, -0.0111300154, 0.023697054, 0.00834578462, 0.00273068808, 0.00629733643, 0.0320842899, 0.00626624702, -0.0109365704, 0.0167882908, -0.0270685293, -0.0199248698, 0.0389930531, 0.0129401106, 0.00645278348, 0.0321395621, 0.0123943193, 0.00148279301, 0.00575845316, -0.0136102606, 0.0175482556, -0.0321395621, -0.0160835981, 0.00842868909, 0.00592080876, 0.0200630445, 0.00632151728, -0.0278146751, 9.25666154e-06, -0.0221494902, 0.00112440099, -0.00847014226, 0.0194688905, 0.0138313416, 0.0227436442, -0.0187503807, 0.00913338363, 0.0326093547, 0.00538538, 0.00895375572, 0.0120005198, 0.0308407135, 0.00388963288, -0.0281462967, -0.00407271506, 0.00576536171, -0.0342950933, 0.00126775785, -0.0254242439, -0.0172580872, 0.0140800569, 0.0200077742, -0.0491903834, -0.0231029, -0.0367822498, -0.0203946643, -0.0204223, -0.0049639456, 0.0263638347, 0.0342398249, 0.0223705713, 0.0032125744, 0.0121594211, -0.0428619571, 0.02661255, 0.00705384603, -0.00778617477, 0.0438015498, 0.00589662837, -0.0218731407, -0.00413489388, 0.0238766819, 0.0317803062, -0.0216658767, -0.0197728761, 0.0280357562, -0.0401813611, 0.0134237241, -0.0197728761, -0.0206019282, -0.0207953732, 0.025244616, 0.0398497395, 0.0184602123, 0.00690530753, -0.0131888269, 0.00266160048, 0.0180456862, -0.0219007749, -0.0102802375, 0.00370309642, 0.050710313, 0.00965154078, 0.00675331475, 0.00786908, 0.00296904054, 0.0219422281, -0.00654950645, -0.00307267183, 0.0080694342, -0.00745455408, 0.0125739463, -0.0252722502, -0.036036104, -0.0219974983, 0.00721965637, 0.0173962619, -0.0115169063, 0.0179904159, -0.00647351, 0.019164905, -0.0146327578, -0.00823524408, -0.0431935787, -0.00704348274, 0.026626369, 0.0107845776, 0.0103009641, -0.00177209743, 0.0238214117, 0.00708838971, 0.00697094062, 0.0120626986, 0.00168055634, 0.0171475466, -0.00709529826, -0.0313105099, 0.0103493249, 0.0129470201, -0.00485340506, -0.0412591249, -0.0373902209, -0.0150196487, -0.0231167171, -0.014093874, -0.0223014839, 0.0347372554, 0.00963772275, 0.0290168, 0.0257282294, -0.0252307989, -0.00831814948, 0.00893993769, -0.00693639694, -0.00449760398, -0.00617643306, 0.00367546128, 0.000709875312, 0.00710911583, 0.0209750012, 0.00832505804, -0.0143425893, 0.00424543442, 0.0106809456, -0.0180318691, -0.00210717227, -0.0165810287, 0.0106809456, -0.0224534757, 0.010466774, 0.0294589605, 0.00826287922, 0.00739237526, -0.000310894276, -0.0350965112, 0.00922319759, 0.00628697313, -0.0127673922, -0.033880569, -0.0273172446, -0.00368927885, 0.0440226309, 0.00209680921, 0.0275797769, 0.0112474645, -0.00385854347, 0.00561336894, -0.0525894947, -0.0145774875, 0.00183082186, -0.00436979206, -0.000468068611, 0.00975517184, 0.00382054527, 0.00334211369, -0.0113510955, -0.0161250494, -0.0198419634, -0.020740103, 0.00154842623, 0.0128433881, 0.03247118, 0.00949263852, 0.020947367, -0.00726110861, -0.029154975, 0.00181355, -0.0286022741, -0.00355801242, 0.0190129131, 0.00149574701, -0.0196070671, 0.0261703897, 0.0242497548, -0.0133891804, 0.0248577259, 0.0290997047, -0.0191787239, -0.0300116614, -0.00731637888, -0.0182667673, -0.0106325848, 0.0126430346, 0.00087913993, 0.0130368341, 0.0171337295, -0.0215000678, -0.0142458668, 0.00515048206, -0.0198005121, 0.00712984242, -0.0130437426, 0.00543028675, -0.0217487831, -0.0473388359, 0.00793816708, -0.00836651, 0.0136586223, 0.00141197827, -6.30424547e-05, 0.0176449772, -0.0232548919, -0.000419491378, -0.0128848413, -0.0066393204, -0.0289338958, 0.0108122127, -0.0164981242, 0.0153650865, 0.0116343554, -0.00670149922, 0.00419361843, 0.0259907618, -0.00438015489, -0.0425303392, -0.00438015489, 0.0455425568, -0.00630769972, -0.0206710156, 0.00536810793, -0.00657368684, -0.0240701269, 0.00210544514, 0.00688112667, 0.00516429963, -0.00120039738, -0.0205742922, -0.00256142346, 0.0115652671, -0.0219422281, 0.031503953, 0.0186122041, 0.0149643784, 0.012235417, 0.0236003306, 0.0147156632, 0.00488449447, -0.0214033443, 0.0222185776, 0.00710911583, 0.0392141342, 0.0200630445, -0.0151025532, 0.0112405559, 0.00352001423, 0.00335593102, 0.0074614631, -0.0151440063, -0.0034543809, 0.00550628314, 0.0166086629, -0.00563064078, 0.00786908, 0.000861868029, 0.0625657514, 0.00802107248, -0.0148676559, 0.00316421292, 0.00152856356, -0.0145222172, 0.0109987492, 0.024678098, 0.00978280697, -0.031531591, 0.00496049086, 0.00459778123, 0.0167053863, 0.00515739061, -0.0309788883, -0.0123045053, -0.0113165518, -0.00307958061, -0.00222807564, -0.0335765816, -0.0125048589, -0.00404162565, -0.0167053863, 0.00525756786, 0.0274968725, 0.0331067853, -0.0114340009, -0.000249363133, -0.0140800569, -0.00683276542, 0.00740619283, -0.0239043161, 0.00857377332, -0.0125946729, 0.00566518493, 0.0598022416, 0.00834578462, 0.0449898578, 0.0126292165, -0.00702275662, -0.0144945821, -0.0251064412, -0.00692948839, 0.0305090919, -0.00596917048, -0.00992098171, -0.0215691552, -0.0103078727, -0.0245122872, -0.0179904159, -0.0175482556, -0.00493976474, -0.030923618, 0.0176587962, 0.0139487907, 0.0190543663, -0.00488104, 0.0135066295, 0.0161112323, -0.00648732763, -0.00974826328, -0.0143149551, 0.0161388684, -0.0106394934, -0.0312828757, 0.00168314716, -0.0178660583, 0.0265020113, -0.0190681834, -0.00434906548, -0.0142320497, -0.00973444525, 0.0160974152, 0.00256660511, -0.00901593454, -0.00679822173, -0.00205190224, -0.00340256514, -0.00215207925, -0.0114132743, -0.00835960172, 0.0147709334, -0.0114478189, 0.0339634754, 0.00875340123, -0.00742691895, -0.0407616943, -0.00842868909, -0.0224120244, -0.0189023726, -0.0195241608, 0.0044941497, -0.0208782777, 0.0127397571, 0.008905394, 0.0109987492, 0.0160006918, 0.0191372707, 0.00483958796, 0.0130990129, 0.0257005952, -0.0233930685, -0.00769636082, 0.00285677309, -0.00492594717, 0.0021607154, 0.00545101333, 0.0163599476, 0.00208990043, 0.00800725538, -0.00397944683, 0.0358702913, 0.0160283279, 0.0106256763, -0.00383436284, 0.0298458524, 0.0133684548, -0.0034802889, 0.0143287722, -0.0171475466, 0.0163875837, 0.0395457521, 0.0132786408, -0.0104391389, -0.00923010614, -0.0205604751, -0.0123183224, -0.00354764913, 0.00751673291, 0.0103700515, -0.038937781, 0.0286851786, 0.00136534404, 0.0135135381, -0.00744073652, 0.0232548919, -0.0224949289, 0.00216416968, -0.000713329646, 0.00106913096, 0.0289338958, -0.0106256763, 0.00380327343, -0.0169817377, 0.0182529483, 0.00195863401, -0.00981735066, 0.00150265568, 0.0156967063, 0.0295142308, -0.00426961482, -0.0239319522, 0.0118968878, -0.0137000745, 0.0130091989, -0.0341292843, 0.0174653493, -0.004207436, -0.00356492121, 0.0123805013, -0.012339049, -0.00525411358, 0.00660477625, -0.0132302791, -0.0151716415, -0.000808756915, -0.0195103437, -0.0319737494, 0.0228127316, 0.0347096212, -0.0158487, -0.00289649842, 0.0300392974, 0.0229509063, 0.0127743008, 0.0181009565, 0.0165948458, -0.0380534604, 0.0219007749, -0.0161388684, -0.0165257584, -0.0258111339, 0.011358005, -0.00489831204, 0.0061937049, -0.0261842068, -0.019082, -0.021928411, 0.0138106151, 0.0229232721, -0.00447342312, -0.000147674786, 0.00292931497, 0.0287128147, 0.00547519373, -0.00456669182, -0.0191372707, -0.0119176144, 0.00423161685, 0.0262809303, -0.0223843884, 0.0204499345, -0.00668422738, 0.00879485346, 0.0124081364, -0.00952718314, -0.02348979, -0.0127881179, 0.00433179364, -0.0107362159, -0.00871885754, -0.0193445329, -0.0231029, -0.00254415162, 0.0108536649, -0.000267066818, 0.0202012192, -0.0126983048, 0.00815924816, 0.019385986, 0.0120143369, 0.00788980629, -0.0080003459, -0.0011054019, -0.005775725, 0.000576449849, 0.00253033405, 0.00980353355, 0.00198108749, 0.020947367, -0.02934842, -0.0183911249, 0.0218455046, 0.0275245067, 0.00535429036, -0.000293622375, 0.017189, -0.00992098171, 0.00205190224, -0.00954790879, 0.0199248698, -0.000960317906, -0.0198557824, -0.0190267302, 0.0367269777, -0.00020715491, 0.00755818561, 0.0142596848, -0.0163184963, -0.000581199594, -0.00973444525, -0.0215000678, 0.0175206196, -0.0135619, -0.00916792732, 0.000113670721, 0.0123874098, -0.0249959, -0.0201044977, -0.000667559099, 0.0454872884, 0.00930610206, -0.03285807, -0.00442851661, -0.0263085645, 0.00508830324, -0.0457636379, -0.00848395936, -0.0152959991, -0.0172028169, -0.0164014, 0.0119867017, 0.0256038718, 0.020353213, -0.00642514881, 0.00588971935, 0.0284088291, 0.00788980629, -0.0119867017, -0.0173962619, 0.00804179907, 0.000330325187, 0.0117172599, -0.0120281549, 0.00387236103, 0.0160974152, -0.0215138849, 0.025438061, -0.0477257259, 0.0132717313, 0.0147709334, -0.022909455, -0.0217073299, 0.00335420389, -0.0108053032, 0.0338529348, -0.0150334658, 0.00351137831, 0.00529556582, 0.000352346862, 0.00261323922, 0.0216658767, 0.00273068808, -0.00107344892, -0.00842868909, 0.00389654166, -0.0101213362, -0.0109020267, 0.0369204246, 0.0199939571, 0.000720670214, 0.00677058659, -0.00280841161, -0.0196070671, -0.000815665699, -0.00968608446, -0.0257973168, 0.00118657982, -0.00260114879, -0.0366440751, 0.0146189407, -0.020740103, 0.0431106761, -0.00846323371, -0.00059372175, -0.0177002475, -0.00914029218, -0.0131611917, -0.0139833344, -0.0102042416, 0.0104045952, 0.00958936196, -0.0262118429, 0.0141215092, 0.00693985121, 0.0359808318, -0.00740619283, -0.0210164543, 0.0201874021, -0.0135411732, -0.000427695544, 0.0134789944, -0.0107362159, -0.00893302914, 0.0101973321, 0.0349859707, 0.0140455132, 0.00250269892, 0.00182909472, -0.00745455408, -0.03957339, -0.0281601138, -0.00555809913, 0.0176864304, 0.0201597679, 0.0138866119, 0.0333278663, -0.0161388684, -0.00581026869, -0.016442854, 0.00347165298, -0.0291273408, 0.0072542, -0.00341810985, 0.0270685293, -0.00967226643, -0.035068877, 0.0177555177, 0.0165948458, 0.000714625057, 0.0163046774, -0.00528174872, 0.00792435, -0.0147847505, 0.00109503872, -0.0162908603, 0.00357873878, 0.0132993665, 0.000249579025, -0.0314486846, -0.0174791683, 0.00638715038, 0.00770326937, -0.00856686477, -0.0132510057, -0.0111921942, -0.0165257584, 0.00875340123, 0.0330238827, 0.0105082272, 0.00729565276, 0.00986571237, -0.00885703322, 0.0587521121, 0.0114063658, -0.000381925, -0.0230199955, -0.0071229334, 0.0121732382, -0.0027116891, 0.0024439746, -0.0106394934, 0.0151854586, 0.0056928196, 0.0206571985, 0.00822142698, 0.000513407344, -0.0137691628, -0.00226434669, -0.0118070738, 0.00812470447, 0.0114823626, -0.0105911316, 0.00289477129, 0.0174791683, -0.0138520673, -0.00736474, 0.0391588621, 0.0149781955, -0.015254546, 0.0117379865, 0.0197314247, -0.00587935653, -0.0350965112, -0.0126637602, 0.0150058307, 0.0153374514, 0.00902284309, 0.00834578462, 0.0170646422, 0.0141629623, 0.00956863537, 0.00219698623, -0.0155032622, 0.0119176144, -0.0156414378, 0.0101420628, 0.00366164371, -0.019082, 0.0145222172, -0.00120557891, 0.014881473, 0.00846323371, -0.00367546128, -0.0163323134, -0.00320912, 0.000917138124, 0.00771017838, -0.0025631506, 0.0091195656, 0.0116758076, 0.00146724831, 0.0124772238, 0.0144945821, 0.0162908603, 0.0125532206, -0.0199939571, -0.034433268, 0.00387236103, 0.0034802889, 0.0151854586, -0.0349030644, -0.0157657955, -0.0109020267, 0.0300392974, -0.0247610025, 0.016263226, 0.0376665704, 0.00367200701, 0.00480849808, -0.0165257584, -0.0231996235, 0.0215691552, 0.00502267, 0.0155999847, -0.0110402014, 0.00398635585, 0.00210544514, 0.0063526067, -0.00911265705, -0.00738546671, 0.0205190238, 0.00681894785, -0.00916792732, 0.0205052048, 0.0496325456, -0.00992098171, 0.00707457215, -0.00421779929, 0.0135895349, 0.00905047823, 0.013216462, -0.00516429963, -0.0117794387, -0.00830433145, -0.0160835981, -0.019952504, 0.0195241608, -0.0122077819, -0.00101645163, 0.0149229262, 0.0044941497, -0.0153374514, -0.00793125853, -0.0124495886, -0.0163323134, 0.00567209348, 0.00851850305, -0.00629733643, 0.00422470784, 0.0132924579, -0.0107223988, -0.0419223681, 0.000523338735, 0.00678440416, 0.00521266088, 0.024277389, -0.00166846602, 0.0101627884, 0.01361717, 0.0147571154, 0.00196208828, 0.00219525909, -0.0274416022, -0.00390345044, -0.0148952911, 0.00536465365, 0.000858413696, 0.0104322303, -0.0167882908, -0.025645325, 0.00643205736, -0.00438015489, -0.012532494, -0.0094166426, -0.0184740294, 0.0166915692, -0.0159177873, 0.00858068187, 0.00824215263, -0.00573081803, -0.0146189407, -0.00596226146, -0.000436331495, 0.012532494, 0.00126689416, -0.0025786953, -0.0315868594, 0.00822833553, -0.0180733204, 0.0336042196, -0.00983116776, -0.0265434626, -0.0121456031, 0.00244052, -0.00556500768, 0.00823524408, 0.00977589842, -0.00378254708, -0.00198626914, 0.00726801762, 0.00871885754, 0.0225640163, 0.0296247713, 0.00252860691, 0.0129470201, -0.0120143369, 0.0112129208, -0.00749600679, -0.0349307, 0.0124772238, -0.0383298099, -0.002765232, -2.84986436e-05, 0.0254104268, 0.0197314247, -0.00143788604, -0.00905047823, 0.0103976866, -0.000425752456, 0.0144393127, 0.00525065884, -0.0106947636, 0.00276868627, -0.020933548, 0.0172857232, 0.0225502, 0.00658059586, -0.00637333281, 0.0266678203, 0.00306921755, 0.0261427555, -0.0159730576, 0.00824906211, 0.00677058659, 0.00046159167, -0.0123735927, 0.0140731484, 0.0018895464, 0.0167330205, 0.00726801762, 0.0241253972, 0.0164566711, -0.00489485776, -0.00310030696, -0.0377494767, -0.0284917336, 0.00969990157, -0.0249820836, 0.00323502766, 0.00128589326, -0.0128433881, -0.00381363649, 0.00113821856, -0.0253137033, -0.0169402845, 0.0185569339, 0.00254415162, -0.00494321901, -0.0119452495, 0.00172805402, -0.0046254159, 0.00483958796, 0.00448378641, 8.98678773e-05, 0.0280633904, 0.0176311601, -0.0155861666, -0.0178936925, 0.0125186769, -0.010183515, -0.0141491443, 0.00758582074, -0.0279666688, 0.00525756786, 0.0225363821, -0.00631460827, -0.00182564033, -0.0289062597, 0.00428343238, 0.00014972582, 0.0198834166, -0.00355801242, -0.00717129465, 0.00656677829, 0.0233654324, -0.0169402845, -0.013796798, -0.018404942, 0.00382054527, 0.0218316875, -0.0015777885, -0.00576190744, -0.0188056491, 0.00426270626, -0.00866358727, -0.000687853608, 0.0286022741, -0.0116481725, 0.00636642426, 0.00739928382, 0.00542683247, -0.00603480358, -0.00958936196, 0.0200354103, 0.000575154438, -0.00923010614, -0.0171199124, 0.00149229262, 0.0164152179, 0.00569972862, 0.00938900746, -0.0272896104, 0.00119953381, 0.0173686277, 0.00463232491, 0.0123874098, 0.00338702044, -0.00129798369, -0.00866358727, 0.00724038249, 0.0144393127, 0.017216634, -0.0102802375, 0.0126844868, -0.00140075153, 0.00853923, -0.0163737666, -0.0243602954, 0.0108536649, 0.00128848408, 0.00802107248, -0.0220527686, 0.000306792208, 0.00831814948, -0.0244155638, -0.00905047823, 0.0126153994, -0.000254976505, -0.00121853291, 0.0210302714, 0.00878794491, -0.0189023726, 0.00335247675, -0.00426961482, 0.0144254947, 0.0125117674, 0.00292240619, -0.00100349763, 0.0159730576, 0.0275521427, -0.0138658853, 0.0024560648, 0.00762727298, 0.00073319237, -0.00250615343, -0.0178522412, 0.015268364, -0.00622134, 0.000690012588, -0.0176449772, -0.00323157338, -0.0300669316, -0.00210717227, -0.0129470201, 0.00918865297, 0.0214447975, 0.00604516687, -0.00693985121, 0.00324020931, 0.0230061766, -0.00146379392, 0.0157796126, -0.00699166721, -2.23725146e-05, -0.0241530314, -0.0182944015, -0.0121594211, -0.0060555297, 0.00425579725, -0.00532665523, 0.0131957354, -0.0139556993, 0.0140800569, 0.00887775887, 0.000439138181, 0.0145222172, -0.00560300611, -0.00264605577, 0.00121335126, 0.0050606681, -0.0236279666, -0.00331275142, -0.030923618, 0.00408307835, -0.00650805375, 0.0059898966, 0.00667386409, -0.00745455408, -0.0166777521, 0.0214171614, 0.0237799585, 0.00508484896, -0.0272757914, 0.0214447975, 0.00261496636, 0.00571354618, 0.00431106752, 0.000437410985, -0.0048154071, -0.000537588, 0.0157381594, -0.0168711971, -0.0120281549, -0.0232410748, -0.00676022377, 0.00556500768, 0.00246124645, 0.0142458668, 0.00112612825, 0.0206986498, -0.00538538, -0.0171060953, 0.0152269108, 0.0046668686, -0.0116343554, -0.00380327343, 0.00219525909, 0.0113165518, 0.0135342646, 0.00209853635, 0.000410639535, 0.0211684462, 0.00817997381, 0.0183220375, 0.0120281549, 0.00759272929, -0.0105082272, 0.00385854347, 0.00400017295, 0.00208644615, -0.0234345198, -0.00971372, 0.00796580222, -0.00238006841, -0.0159177873, 0.00653914316, 0.0282430183, -0.0059484439, -0.0130506512, 0.00569972862, -0.00571700046, -0.00847014226, -0.00344574498, 0.00333347754, -0.0135619, -0.00763418199, -0.000440001779, 0.0151163712, -0.0198557824, 0.0223982055, -0.0152130937, 2.52196805e-05, 0.0124564981, 0.00183254911, -0.0158487, -0.0133684548, -0.017230453, -0.0101351533, -0.0225502, -0.0123528661, 0.00999697857, -0.0103009641, -0.0181147736, -0.0243188422, 0.000245261035, -0.0167053863, 0.000278509455, 0.0106878551, -0.001382616, -0.035621576, 0.00341465557, -0.00702621089, -0.00113130978, -0.00517811719, -0.0110263843, -0.0183082186, -0.00710911583, 0.00817306526, -0.0202703066, 0.0346543491, -0.0151025532, -0.0177278835, -0.0119037963, 0.0101627884, -0.00223671156, 0.00731637888, -0.0287128147, 0.0138106151, -0.0109296618, -0.0050710314, 0.00203463039, 0.0212651696, 0.00802107248, 0.0130990129, 0.00119176146, -0.000156418682, -0.015254546, -0.00923701469, -0.0251893457, 0.00656677829, 0.00175827986, -0.0300945677, -0.0098104421, 0.00427306909, 0.000542769616, -0.00904357, 0.00340947392, -0.0345990807, -0.0145498523, -0.0155861666, -0.0235312432, 0.00813161302, 0.0104944091, -0.00141543255, -0.00109590241, -0.00233861594, 0.0163323134, 0.00954790879, 0.0151992766, -0.0104736835, 0.0186122041, 0.00505721383, 0.017023189, 0.00554082729, 0.00323848217, 0.0158901531, 0.00991407316, 0.00400017295, 0.0167882908, 0.00254242448, 0.0231996235, 0.0063526067, -0.00684658298, -0.00277386792, 0.00742691895, 0.016829744, -0.00936137233, 0.0241668485, -0.0114201838, -0.0238214117, 0.0197037887, 0.0125463121, -0.00107258523, -0.00620061392, 0.00744764553, 0.00327648036, 0.00177209743, -0.0105773145, 0.00511248363, -0.00433870265, 0.0107085807, -0.00906429533, -0.00532665523, 0.00795889366, -0.00316594, -0.0117172599, 0.00800725538, 0.0222462136, 0.0106878551, 0.00722656492, 0.0117656216, -0.00423507113, -0.0233101621, 0.0198696, 0.0215691552, 0.0135411732, -0.00661859382, 0.0182944015, -0.00791053195, -0.0145084, -0.00675676903, 0.012725939, -0.0247748196, 0.0176449772, -0.00705384603, 0.00156915258, -0.0138797024, -0.0151854586, 0.00240770355, -0.00771017838, -0.0206433814, 0.0169541016, 0.00382054527, -0.0184187591, -0.0110402014, 0.016429035, 0.0114201838, -0.00192581734, 0.0131888269, -0.0136102606, 0.0204637535, -0.0209059138, 0.00979662407, -0.00228680018, 0.0126292165, -0.016263226, 0.00596917048, -0.000228852732, -0.00652187131, 0.00425579725, -0.0059484439, -0.00824215263, -0.0163323134, 0.00826287922, 0.01311283, -0.0177140664, -0.00845632423, -0.0110402014, 0.0123943193, -0.023890499, 0.00856686477, -0.0159316044, 0.00566173, 0.0235588774, -0.0141146006, 0.00365473516, -0.018598387, 0.0283535589, -0.0202841256, -0.0116896247, 0.0209059138, 0.0296247713, 0.0051677539, 0.00468759518, 0.0135826264, 0.0210855417, -0.0247333683, -0.00862904359, -0.0226469208, 0.0157519765, -0.00177555182, 0.0285193697, -0.00505030481, 0.0132233705, 0.00936828088, 0.00432833936, 0.0024837, -0.00753745902, -0.00324539095, -0.0050710314, -0.0080832513, -0.0192063581, -0.00215898803, -0.00150179211, -0.0187641978, 0.0154065387, 0.01155145, 0.0153374514, -0.00575154414, 0.0216106065, 0.00779308332, 0.0367822498, 0.0163599476, -0.0143840425, 0.00195517973, 0.0193445329, -0.0186812915, -0.00675331475, 0.00457360037, 0.0307854433, 0.0184187591, 0.00229370897, 0.00929919351, -0.0143840425, 0.00646660104, 0.017189, 0.0155308964, 0.0182944015, 0.0380534604, -0.00196036114, 0.00126430346, -0.0157519765, 0.00723347394, 0.00286713615, -0.0202564895, 0.000244181545, -0.0082836058, 0.00643551163, -0.00675676903, -0.00607625628, 0.000347381196, 0.000155231246, -0.00695366878, 0.0186122041, 0.0152821811, -0.0119314315, 0.000909365772, 0.00582754053, 0.00905738678, -0.0217073299, -0.0244293828, 0.00526102213, 0.00488104, 0.0111438334, -0.00129625644, 0.00268232683, -0.00318839354, -0.0337700285, -0.0185293, -0.0178384241, 0.0371138677, -0.00851850305, 0.0230199955, -0.0163046774, 0.0183773059, -0.00475322828, 0.0141284177, 0.00953409169, 0.0117172599, -0.00791744143, 0.0132579142, 0.00695712306, -0.013306275, 0.0164843053, -0.00345092663, 0.00803489052, 0.0168159269, 0.0166777521, 0.004749774, -0.00484649651, 0.0198557824, -0.0143287722, -0.0331067853, 0.00290858885, -0.018404942, -0.00195172522, 0.0313657783, -0.000835528423, -0.0326646268, -0.0185154825, 0.0189714599, -0.00127898459, 0.0452109389, -0.00164773967, 0.0249959, -0.0242635719, 0.0141767794, 0.00288613536, 0.000407401065, 0.00179455092, -0.0125186769, 0.00596917048, 0.0103009641, -0.0333278663, 0.00452178484, 0.00688803568, -0.0118968878, -0.0175482556, 0.00681549357, -0.00358219305, -0.0145084, -0.0173133574, -0.00648387289, 0.0242359359, -0.00464614248, 0.00606243871, 0.0129124764, 0.0163599476, 0.00344056333, -0.00589317409, 0.0108329384, -0.017423898, -0.000182650387, 0.0203670301, -0.0107223988, 0.00151733682, -0.00693639694, 0.00178936939, -0.00737164915, 0.0111991027, -0.00472904742, 0.0194412563, -0.012428863, -0.0233654324, -0.00877412781, -0.025438061, -0.00286713615, 0.0134168155, -0.0196208842, 0.0188471023, -0.00396908354, -0.00756509416, -0.0297905821, -0.0109227523, -0.017423898, -0.00709529826, 0.00275141443, 0.022909455, 0.0109987492, 0.00699857576, -0.00730947033, -0.0212099, 0.00444578845, -0.00235070614, -0.004452697, 2.33440587e-05, 0.0267645437, -0.00641824, -1.28797137e-05, 0.0295142308, -0.00508830324, 0.0240977611, -0.01155145, -0.00686040055, 0.017230453, -0.0174791683, 0.00784835313, 0.0165672116, 0.0194136202, 0.0109296618, -0.00609352812, -0.00969990157, 0.0136862574, -0.009541, -0.0044112443, -0.003426746, -0.0114340009, 0.00629388215, -0.0129262935, -0.00192927173, -0.0183773059, -0.010763851, -0.00779308332, 0.00267541804, -0.0264605582, -0.00354764913, 0.0181562267, 0.0255347844, -0.0172719043, 0.0108536649, 0.0192478113, 0.00565482164, -0.00118139829, 0.00238352292, 0.0231996235, -0.000929228496, 0.0110194748, 0.0141353272, 0.011358005, 0.000987952924, 0.00786908, 0.00257524103, 0.000273759681, -0.00188609201, -0.0225363821, -0.00671877107, 0.019759059, -0.00087913993, 0.0236694179, -0.0161941387, -0.00576536171, 0.0132440962, 0.00135584455, -0.0223982055, -0.0077309045, -0.00976208, 0.0214309786, -0.00232479838, -0.00101558806, 0.0146603929, 0.00860140845, -0.00218489603, 0.0295418669, -4.42592545e-06, -0.00795889366, 0.0104460483, 0.0143425893, 0.0109020267, -0.0198281463, -0.0301498361, 0.0149229262, 0.0102111502, 0.020546658, -0.0103009641, -0.0304814577, -0.00202254, -0.00881558, -0.018197678, 0.00782071892, -0.0126844868, -0.0051263012, 0.014480765, 0.00545792188, 0.00756509416, 0.00113735488, 0.0237385053, 0.0204637535, 0.0191096347, -0.00565482164, 0.0229923595, -0.00480158953, 0.0163737666, -0.00513321, 0.0235865135, -0.00156828901, -0.0101973321, -0.0092162881, 0.00530592911, -0.00191718142, -0.00429034093, 0.000759963819, 0.0141905965, -0.0210026354, 0.0220665857, -0.0182805844, 0.00957554393, 0.00353728607, -0.00800725538, 0.000762554584, 0.00535429036, 0.0021728056, 0.0051677539, -0.00571009191, 0.00329029793, -0.0150472838, 0.0141629623, 0.0114685446, -0.00156051666, -0.0179765988, 0.00771017838, 0.0153512694, -0.00367200701, 0.00952718314, 0.0169126485, 0.0102526024, 0.000888639479, -0.00823524408, 0.00568591105, 0.0113234604, -0.0219560452, 0.0157934297, 0.00475322828, 0.0177417, 0.0017479168, -0.00843559857, 0.0167330205, 0.0141007835, -0.0106325848, 0.00137657078, 0.000357312529, 0.00610734569, -0.00953409169, 0.0128019359, -0.0183220375, -0.0121456031, 0.0159868747, -0.00687767239, -0.00139211549, -0.0017194181, 0.00202599447, -0.00858068187, -0.0113718221, -0.000565654889, -0.00489140349, -0.0439673625, -0.00257524103, -0.00400708197, -0.0209611841, -0.0131750088, 0.0202288553, -0.00765490811, 0.00695366878, 0.000399412791, -0.00764109055, 0.0071643861, 0.0103285993, -0.00334556797, -0.000243749761, 0.0192892626, -0.00319702947, -0.016429035, 0.0140109695, -0.0116136288, 0.00485686, -0.000322121021, -0.00770326937, -0.00836651, 0.03285807, 0.0343227275, 0.0256729592, -0.00536810793, 0.0294589605, 0.0405682512, -0.0150611009, 0.00609007385, -0.0251617115, -0.0234068856, 0.0099417083, 0.00183945789, 0.00661513954, -0.00438706391, -0.0101627884, -0.0131750088, 0.00973444525, -0.0407616943, 0.00689494424, -0.00577917928, 0.00667386409, 0.0101420628, -0.0131059214, -0.0216382425, -0.0116136288, 0.010480592, 0.00302258343, -0.00624897517, 0.000372425449, -0.00120126095, -0.014093874, -0.00408998691, -0.0132233705, 0.00908502191, 0.0150334658, -0.0164014, -0.0219007749, 0.00947191287, -0.00653914316, -0.000613152632, 0.00328857056, -0.0345990807, 0.00239388598, -0.0316421278, -0.012041972, 0.00263051107, -0.00984498579, -0.00860140845, 0.0123183224, 0.0203946643, -0.00779308332, 0.0221771263, 0.0215829723, 0.00649769045, 0.0182667673, -0.0262947474, 0.024457017, -0.0148952911, -0.00314866821, 0.040126089, 0.0068120393, -0.00327302585, -0.00724729104, 0.00744073652, -0.0169126485, 0.0338252969, -0.0109020267, 0.00523684174, -0.00311930594, -0.000710307097, 0.0210164543, -0.00510902936, -0.0135204475, 0.0155308964, 0.00241979398, 0.0335489474, -0.00942355115, -0.0100384308, 0.00383436284, -0.0010173152, -0.0150611009, -0.0171751827, 0.00314866821, 0.0181147736, -0.0301498361, -0.00999007, -0.0130575597, -0.00887085, 0.0133891804, -0.0126430346, 0.0172028169, 0.00986571237, 0.00514011877, 0.00724038249, 0.00918865297, -0.0151578235, 0.0131335566, -0.0194965266, -0.0101144277, -0.0190543663, 0.0122008733, 0.0296800416, -0.00284468266, -0.0139764249, 0.00290858885, 0.0077309045, -0.00712984242, 0.019385986, 0.00169955543, -0.0245261043, -0.00753055047, 0.0188885555, 0.00276005035, -0.00757200317, 0.0170922764, -0.0117725302, 0.00543028675, 0.0197176058, 0.0190405473, 0.000870072225, 0.00820760895, 0.00348892482, 0.0158348829, -0.0157657955, 0.00486376835, 0.0165533926, -0.0117587131, -0.0123114139, -0.011344187, 0.00369618763, -0.00569627434, 0.0007621228, 0.00717129465, 0.018211497, 0.0140109695, -0.00534392754, 0.00652532559, -0.0127950273, -0.0066393204, 0.00227816426, 0.0190405473, -0.0255071484, 0.0102111502, -0.000403946673, -0.010466774, -0.0273034275, 0.00233688881, 0.036809884, 0.0136862574, 0.0053404728, 0.0214171614, -6.88177461e-05, 0.0432764851, 0.0290997047, -0.00197245157, 0.0108882086, -0.0183220375, 0.00997625198, 0.00843559857, -0.0140386038, -0.00585863, -0.0325817205, -0.0221080389, 0.0142735019, -0.00433870265, -0.0109503875, 0.0112820081, 0.0124426801, 0.00327302585, 0.0080694342, -0.000780690112, -0.00461505307, -0.0150472838, -0.00449760398, 0.0102387853, -0.00723347394, -0.00224189321, 0.000789326034, -0.000912820164, -0.00119953381, 0.00927155837, -0.00999007, -0.00599680515, -0.0187780149, 0.0157243423, -0.0054233782, -0.00263051107, -0.00580336, -0.023296345, -0.0179351456, -0.0106533105, -0.0252584331, -0.0103424164, -0.00373764, -0.0147709334, -0.00697439536, 0.0205328409, -0.000421650388, -0.00553391827, 0.00429725, 0.00469795801, -0.0121870562, 0.00151733682, 0.00680513028, 0.0155999847, 0.0177278835, 0.00843559857, 0.0248577259, 0.0158210639, 0.00773781352, -0.00431106752, 0.038937781, 0.00614879793, -0.010466774, -0.0193030816, 0.0272757914, 0.00637678709, -0.00661513954, 0.00162701344, -0.0146603929, -0.00573772658, 0.0331620574, 0.015669072, 0.0167192034, 0.00755818561, -0.00563755, -0.0169817377, 0.00977589842, -0.000367459783, -0.00195517973, -0.000980180572, -0.00614534365, 0.00737164915, -0.0069087618, 0.0208920967, -0.0199939571, 0.00700548477, -0.0246090107, 0.0169955548, -0.0119245229, -0.0111645591, 0.0244155638, -0.0109434789, -0.0120903337, -0.00230061775, 0.023697054, -0.0194965266, 0.00497430842, -0.0143702244, 0.00596917048, -0.017810788, -0.00226952834, -0.029376056, 0.0153374514, -0.00779999234, 0.0186398402, -0.0157519765, -0.0258940402, -0.000948227593, 0.00136448047, 0.021334257, -0.0152959991, 0.00572045473, -0.0100246137, -0.00457705464, -0.015074918, 0.0186398402, 0.00948573, -0.00436633732, 0.00441469904, -0.00270478032, 0.00168228347, -0.0158625171, 0.00958245248, -0.00634569768, 0.00847705081, -0.00876031, 0.00301912893, 0.00799343735, 0.0290168, 0.0216796957, -0.0184463952, 0.00465650531, 0.0192339923, 0.0147018451, -0.0152407289, 0.00777926575, 0.0245399214, 0.0108882086, 0.0264881924, -0.00241979398, 0.0181147736, 0.00184982095, -0.000870504, -0.00627661031, -0.0210855417, -0.00319184805, -0.00412798533, -0.000863595225, -0.0212375335, -0.0140109695, 0.00415562047, -0.015475627, -0.0201183148, -0.00422125356, -0.0080694342, 0.000476704561, -0.0079727117, 0.00139211549, -0.019786695, -0.0295142308, 0.00289304415, -0.0211684462, -0.00569627434, 0.00304676406, 0.00419361843, -0.020546658, 0.00510902936, 0.00779999234, -0.0223567542, 0.0184463952, -0.0085945, -0.00583099527, -0.0293207858, -0.0173548106, -0.00955481734, 0.0318632089, 0.00541992392, 0.00454251096, -0.0181009565, 0.00437324634, -0.000825597032, 0.00974826328, -0.000784144504, -0.00568936532, -0.00986571237, 0.00175309833, -0.00217798725, -0.000568245654, -0.00658059586, -0.0292931497, 0.0197452419, -0.00551664643, -0.00925774127, 0.00619715964, -0.00627315603, -0.0123114139, -0.00750291534, 0.00093441, 0.00294313254, -0.0305090919, 0.0194550734, 0.0212375335, 0.00708148116, 0.00355110364, -0.013409907, -0.00271514338, 0.00241461233, -0.00202772161, 0.00748218922, -0.00156483462, 0.00340601965, 0.00465996, -0.0183358546, -0.0014517036, 0.0120143369, -0.0188885555, -0.00614534365, -0.0161941387, 0.00413834816, -0.0121870562, 0.020740103, 0.00797962, 0.00802798104, -0.00442506187, 0.00807634275, 0.00735783158, 0.0163737666, 0.00713675097, 0.000395526615, -0.00184982095, -0.00807634275, 0.0104391389, -0.00303467363, -0.000124789512, -0.011834709, -0.00548555702, 0.0189300068, -0.00181527715, -0.016429035, -0.0173133574, 0.0219836812, -0.00262705679, -0.021721147, 0.0246919151, 0.00773781352, 0.00262014801, 0.00542683247, 0.00512975594, 0.010971114, -0.00762727298, -0.016829744, 0.0139211556, -0.00319012091, -0.000631719944, -0.0196070671, -0.00648732763, -0.0183082186, -0.00281013898, -0.0230199955, -0.0210164543, -0.0185707528, -0.0162908603, 0.00779999234, 0.0246228278, -0.01428732, 0.00617988734, 0.00949263852, 0.0222876668, -0.0210993588, 0.00996243488, -0.0115169063, -0.0128779318, 0.0424750671, 0.00525065884, 0.0149091082, -0.00159851473, 0.0147709334, 0.00854613818, -0.00130489236, 0.0150887361, 0.0077309045, -0.000796234817, -0.00241633947, -0.00376527524, 0.00556500768, 0.00344056333, -0.0156414378, -0.00278768549, -0.0155999847, 0.0109849311, -0.00289649842, -0.00139125192, 0.0012755302, -0.00142925011, 0.00133252749, -0.0210026354, 0.0208506435, 0.00906429533, -0.00773781352, -0.0165810287, -0.000595017103, -0.00918174442, 0.00489831204, -0.014688028, -0.00425579725, 0.00749600679, 0.00898829941, 0.00343020028, 0.00788980629, 0.0196761545, -0.0127812093, 0.00701930188, -0.00301394728, -0.00812470447, -0.00811779499, -0.0194827095, -0.0162494089, 0.00123580475, -0.0171199124, 0.0219007749, 0.00514011877, 0.0160835981, -0.00814543, 0.00505030481, 0.0221771263, 0.0158072468, 0.00923701469, 0.0235588774, -0.0135688083, 0.00526447641, -0.02622566, 0.0133270016, -0.0136378957, -0.00191199989, 0.00369618763, -0.0188885555, -0.0144393127, 0.0125394026, 0.0142596848, 0.00748909777, 0.00648732763, 0.0143149551, 0.0162494089, 0.016069781, 0.00490176678, -0.0038861786, 0.0210440885, -0.00259078573, -0.0375836641, 0.0116827162, -0.00793816708, -0.0272205211, -0.00127293938, -0.0206986498, 0.00701930188, 0.0127190305, 0.0428343229, -0.000369618763, 0.00896757282, 0.00524375029, 0.0149781955, -0.00529211154, -0.00850468595, 0.0175758898, 0.00241461233, 0.0185845699, 0.0147018451, -0.00549937459, 0.00090591138, 0.00735092256, -0.0140386038, 0.009541, -0.00467377761, 0.000661082158, -0.00442160759, 0.00550973741, -0.00900902599, -0.00861522648, 0.0149643784, -0.0148123857, -0.00193272613, -0.012235417, 0.0102318767, 0.0132786408, -0.00835960172, -0.010957296, -0.00465650531, -0.0138175236, -0.00530592911, -0.00753745902, 0.00340774679, 0.0142596848, 0.0103493249, 0.0116343554, -0.00823524408, -0.00106308574, -0.0101696979, 0.0225640163, 0.00335247675, 0.0341292843, 0.00493976474, 0.00768254325, 0.00430070423, -0.0149781955, 0.0085945, -0.0227436442, 0.0178522412, 0.0108674821, 0.023697054, -0.0105842231, 0.0170784593, -0.00770326937, 0.00565827591, 0.0331067853, -0.0188747384, -0.0116965342, 0.00936137233, -0.0215553381, -0.0279113986, -0.0187780149, 0.0103216907, 0.00625588372, -0.0222600307, 0.00134461781, 0.00197590585, -0.0153512694, -0.0103216907, 0.0142596848, 0.00872576609, 0.0197728761, -0.000780258328, 0.00954790879, -0.00162701344, 0.0126361251, 0.00446306029, 0.0187503807, 0.023683235, -0.00196381565, 0.0147432983, 0.0144945821, 0.0350412391, -0.0109158438, -0.0117863482, 0.0253275204, -0.0231029, 0.00842868909, 0.0058413581, 0.0314486846, 0.00742691895, -0.0018895464, -0.0187227447, -0.0205742922, 0.00247160951, 0.00400017295, 0.0215000678, -0.00205708388, -0.00202081283, -0.0290997047, 0.0073785577, 0.00475322828, 0.0220665857, 0.0174515322, 0.0146603929, -0.0444647931, 0.0197728761, 0.00918865297, -0.0127466656, -0.00193099899, -0.0136240786, 0.00442851661, -0.00758582074, -0.00484649651, 0.000885185145, 0.0132440962, 0.00220389501, 0.00650805375]
|
17 Apr, 2024
|
How to Update JSON Object Value Dynamically in jQuery?
17 Apr, 2024
In jQuery, we can update JSON object values dynamically by manipulating the object directly or using utility functions. We will explore two approaches to update JSON object values dynamically in jQuery.
Below are the approaches to update JSON object values dynamically in jQuery.
Table of Content
Using each() MethodUsing hasOwnProperty() methodUsing each() MethodIn this approach, we use each() method in jQuery to iterate through the keys of the JSON object. When the input key matches an existing key in the object, we dynamically update its corresponding value and display the updated JSON object.
Example: The example below uses each() Method to update the JSON object value in jQuery dynamically.
HTML
<!DOCTYPE html>
<html>
<head>
<title>each() Method</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js">
</script>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
label {
display: block;
margin-bottom: 10px;
}
input[type="text"] {
width: 30%;
padding: 8px;
margin-bottom: 15px;
border-radius: 5px;
border: 1px solid #ccc;
box-sizing: border-box;
}
#output {
border: 1px solid #ccc;
width: 50%;
padding: 10px;
border-radius: 5px;
margin-bottom: 15px;
}
#updateBtn {
padding: 10px 10px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
#updateBtn:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<h1>Using each() Method</h1>
<div>
<label for="keyInput">Enter Key:</label>
<input type="text" id="keyInput">
<label for="valueInput">Enter Value:</label>
<input type="text" id="valueInput">
<button id="updateBtn">Update Value</button>
</div>
<div id="output"></div>
<script>
let jsonObject = {
"JavaScript": "Programming Language",
"PHP": "Server Side Language"
};
$("#output").text(JSON.stringify(jsonObject));
$("#updateBtn").click(function () {
const key = $("#keyInput").val();
const value = $("#valueInput").val();
$.each(jsonObject,
function (objKey, objValue) {
if (objKey === key) {
jsonObject[objKey] = value;
}
});
$("#output").text(JSON.stringify(jsonObject));
$("#keyInput").val('');
$("#valueInput").val('');
});
</script>
</body>
</html>
Output:
Using hasOwnProperty() MethodIn this approach, we use the hasOwnProperty() method in JavaScript to check if a key exists in the JSON object before updating its value dynamically in jQuery. If the key exists, the value is updated otherwise an error alert is shown.
Example: The below example uses hasOwnProperty() to update the Json object value dynamically in jQuery.
HTML
<!DOCTYPE html>
<html>
<head>
<title>Using hasOwnProperty() method</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
label {
display: block;
margin-bottom: 10px;
}
input[type="text"] {
width: 30%;
padding: 8px;
margin-bottom: 15px;
border-radius: 5px;
border: 1px solid #ccc;
box-sizing: border-box;
}
#output {
border: 1px solid #ccc;
width: 50%;
padding: 10px;
border-radius: 5px;
margin-bottom: 15px;
}
#updateBtn {
padding: 10px 10px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
#updateBtn:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<h1>Using hasOwnProperty() method</h1>
<div>
<label for="updatesInput">
Enter Updates:
</label>
<input type="text" id="updatesInput"
placeholder="key1:value1,key2:value2,...">
<button id="updateBtn">
Update Values
</button>
</div>
<div id="output"></div>
<script>
let jsonObject = {
"JavaScript": "Programming Language",
"PHP": "Server Side Language"
};
$("#output").text(JSON.stringify(jsonObject));
$("#updateBtn").click(function () {
const updatesInput = $("#updatesInput").val();
const updates = updatesInput.split(",")
.reduce(function (obj, update) {
const parts = update.split(":");
const key = parts[0];
const value = parts[1];
if (jsonObject.hasOwnProperty(key)) {
jsonObject[key] = value;
} else {
alert("Error: Key '" +
key + "not found in the object.");
}
return obj;
}, {});
$("#output").text(JSON.stringify(jsonObject));
$("#updatesInput").val('');
});
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?
|
https://www.geeksforgeeks.org/how-to-update-json-object-value-dynamically-in-jquery?ref=asr10
|
CSS
|
How to Update JSON Object Value Dynamically in jQuery?
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props
|
GeeksforGeeks
|
[-0.0251306929, -0.0105511099, -0.0190225393, 0.0543044023, 0.00434842426, 0.0276321284, -0.000950763351, 0.00443931948, -0.0137506193, 0.0264104977, 0.044909481, -0.00628267322, 0.0018188121, -0.031151589, -0.00550461048, -0.00855868775, -0.0424662158, -0.0177718215, -0.00977304764, 0.00805694703, -0.00812966283, -0.0336239375, -0.0479053818, 0.00887863897, -0.0161575228, 0.0350200869, 0.0135979159, 0.0398193486, 0.00739886565, 0.0298426971, -0.00973668881, 0.0045302147, -0.00774426758, -0.0461311117, 0.0127398651, 0.0162447821, 0.00220875232, 0.00145886722, -0.0243599024, -0.0221784189, 0.00791151449, -0.00128071278, 0.000856232364, -0.0182953775, 0.0109219616, 0.029188253, 0.0274576098, -0.0513375849, -0.00448658504, 0.00445022667, 0.0124999024, 0.00123617414, 0.0156485103, 0.0261632614, 0.0249270871, -0.00317769474, -0.0422916971, -0.0361544564, 0.00596272247, 0.0174082406, 0.0356890745, -0.0290428214, -0.00326495408, -0.0336239375, 0.00967851654, 0.0378123857, -0.0166229066, 0.0273412634, -0.00477017788, 0.0300753899, -0.00189607299, 0.0469164439, -0.0155176213, 0.00146704784, 0.0235309377, -0.00219239108, -0.0276612137, -0.00270504, -0.00612269761, 0.0339729749, 0.00610451866, -0.00976577587, -0.0184262656, -0.0458402447, 0.0120563339, 0.012907112, -0.0203168858, -0.0514830165, 0.0741704479, -0.0166665353, -0.019589724, -0.0398484357, 0.00874775, -0.00753339054, -0.0189498216, 0.00488288794, -0.00376305962, -0.0208695289, -0.0271667447, 0.0594817922, -0.00632630289, 0.0523556098, 0.00983122, -0.00563913537, -0.00109619554, 0.0143541628, 0.0315587968, 0.0128489397, 0.0041629984, -0.0242871866, 0.0593654439, 0.00238145306, -0.0315878838, 0.0231382716, -0.0314715393, -0.00235600257, 0.0117945559, -0.0490688421, 0.0504649915, 0.0081005767, 0.0305407736, 0.018571699, 0.00217057625, 0.0258287676, -0.0343801826, 0.0253052115, -0.0257705953, 0.00323223183, 0.0392376222, -0.0148777189, -0.0580856428, 0.00549733918, -0.0361253731, 0.0234291349, 0.0120926918, 0.0363871492, 0.0103329616, -0.00426843669, -0.000615360215, -0.00569367269, -0.0247961991, -0.0405465104, -0.0237927157, 0.00735523598, 0.0199533049, 0.0160120912, 0.0220766161, 0.0210876763, -0.0105874678, -0.0117145674, -0.0126526058, -0.044589527, 0.0137506193, 0.0222075041, 0.0244035311, -3.46537781e-05, -0.0149795217, 0.0039448496, -0.0201569106, -0.00328495097, 0.0118672717, -0.0335948505, 0.000818510889, 0.0248689149, -0.0234727655, -0.00448294915, 0.0293627717, -0.0210876763, -0.0234000497, 0.0324313939, -0.0272685476, -0.0448513068, -0.00189789094, 0.0465674065, -0.037637867, -0.00421026349, 0.0154594481, -0.0707382485, 0.0145214107, -0.0222947635, 0.0230219252, -0.0233273339, 0.00636993255, -0.00361580937, 0.0216839481, -0.0214512572, -0.0125653464, -0.0123399263, 0.00659171678, -0.0295082033, -0.0202587135, 0.0106020113, 0.00826055184, 0.0279520787, 0.0231673568, -0.0193861183, -0.0223674811, -0.0028304751, -0.00835508294, 0.00297772535, 0.0561077632, -0.0528209955, -0.0493597053, 0.0231091846, 0.0186298713, -0.0193861183, 0.0283592883, -0.0488361493, 0.0663171038, 0.0137724346, -0.0404592529, -0.0146523, -0.00268140715, -0.00359399454, 0.0139469532, 0.00662080338, -0.0235163942, -0.0102384305, -0.0276903, -0.0206804667, -0.00198151451, -0.00590818515, -0.0332458131, 0.014870448, -0.0486325435, -0.0609652, 0.0159102883, -0.00321587059, -0.0143977925, 0.0234727655, 0.0429316, -0.00636266079, -0.0163029563, -0.0408955477, 0.000128957501, -0.00503559178, -0.00735887187, -0.0381032489, -0.0310352426, 0.0556714647, 0.00600635214, -0.0013970586, 0.00562095642, 0.00225783582, 0.0350782573, 0.0367071, -0.0431061201, 0.0401683897, 0.0135979159, 0.0074170446, 0.00946036819, -0.0429897718, -0.0178299937, 0.0244180746, -0.0234436784, 0.0320532694, 0.0165647343, 0.0245489646, 0.0213203672, -0.0236909129, 0.00843507051, -0.00636266079, -0.00994756632, 0.0118454564, 0.0528500788, 0.0241126679, 0.0248980019, -0.0151249543, -0.0336821079, -0.0141360145, 0.0255960766, 0.0369979665, 0.00402483763, 0.0519484, 0.00973668881, 0.0195460953, -0.0243599024, 0.0113437157, 0.0320241824, -0.00491924584, 0.0397611782, 0.0189643651, 0.0582019873, 0.0325186513, 0.0327513441, 0.00489015924, 0.023094641, -0.00836235471, -0.0247525685, 0.00840598438, -0.0444150083, -0.0141651016, 0.0374342613, -0.0125580747, 0.0152703868, -0.00252688536, 0.0062863091, -0.00729342736, -0.0119181732, 0.0171464626, 0.00359763042, -0.0496796556, -0.0142087312, 0.014710472, -0.0141796442, 0.00263959542, 0.0564277135, -0.0367071, -0.0345547, -0.0382195972, 0.0444150083, -0.0015306744, -0.0298426971, -0.0195751805, 0.0108565176, 0.0340602323, 0.0328967758, 0.0263668671, 0.00316860527, -0.00823873747, -0.0337693691, 0.012121778, -0.0273703504, 0.0206222925, 0.0281556845, -0.00237236358, -0.0270067696, 0.0143396202, 0.0074170446, 0.00372670148, -0.0563113689, -0.0288246721, -0.00243962603, 0.0298717842, 0.0275303256, -0.0358926803, -0.0080424035, -0.00709345797, -0.0288828444, -0.00786788482, 0.00824600831, -0.011169197, -0.006682612, -0.000294500322, 0.0668406636, -0.0309188962, -0.027254004, -0.0345837884, 0.0592781864, 0.0196915269, 0.00146159413, -0.0122672105, 0.0208113547, 0.0229928382, -0.00722798286, -0.030889811, -0.00551188225, 0.00650809333, -0.0681204647, 0.00637356844, 0.0213058256, 0.0380450785, 0.00445749843, -0.0163756721, 0.00355036487, -0.0379287302, -0.0287083257, -0.00756974891, 0.00684985891, -0.0189934522, 0.00603907416, -0.0232691597, -0.0213494543, -0.0159393754, -0.0421753526, -0.00224329252, 0.01880439, 0.00525010424, -0.0124926306, 0.0290428214, -0.010252974, 0.00143523456, -0.00136797212, 0.0344092697, -0.0194733776, 0.00536281429, 0.00571548752, -0.0343511, 0.0398193486, 0.018280834, -0.0182953775, 0.0336239375, -0.00101984362, -0.0153431026, 0.0123253837, 0.0116636669, 0.00570094446, -0.0109146908, -0.005257376, 0.000183040116, 0.0190516245, 0.00046856454, -0.00808603317, -0.00924222, 0.00349582778, 0.00589727797, -0.0530245975, -0.0200114772, 0.0290137343, 0.0164774749, -0.0329258628, 0.0409537219, -0.026963139, -0.00130525441, 0.0346128754, 0.015852116, 0.0222656783, 0.0343801826, -0.00594817894, 0.0100275539, 0.0432806388, 0.011169197, -0.00263050594, 0.0446767882, -0.037114311, -0.0117654689, -0.030366255, -0.0143323485, -0.00757702, 0.00851505809, -0.0171173755, 0.000690348737, 0.0164193, 0.00842779875, -0.0143105332, -0.00436296733, 0.0217566639, -0.00864594709, -0.0226583444, -0.00316678733, 0.0130452728, -0.0185571555, -0.00722071109, 0.0087768361, -0.0454621203, 0.012449001, -0.0464219749, -0.0105220238, 7.54429784e-05, -0.0134088537, -0.00214512576, -0.040197473, -0.0200696513, -0.00194697431, 0.0149213485, -0.0159975477, -0.0361253731, -0.0132561494, 0.0188189335, 0.0156339668, -0.00291591673, 0.0250143465, -0.0150231514, 0.00124980835, 0.0143178049, 0.000313133816, 0.0109365052, -0.00986030698, -0.0106165539, -0.0211603921, -0.0303953402, -0.0419135764, 0.056834925, 0.0110746659, 0.00230510114, 0.0228764936, 0.0249416307, 0.0112564564, 0.0165065601, -0.0217712075, 0.0337693691, 0.0123326546, 0.0417681411, -0.0109801348, 0.00351400673, -0.0194006618, 0.0326640829, -0.00388304121, 0.0150522385, 0.0103111463, 0.00554460473, 0.00363580626, -0.0364453234, 0.0107183568, -0.0187171306, 0.0278648194, -0.0493015349, -0.0499414355, 0.0111982832, 0.0136633599, 0.0355145559, 0.00802786, -0.0458111577, -0.00211240351, 0.00651536463, -0.0415063649, -0.0510467216, 0.0154158184, 0.0320241824, -0.0457529873, -0.0387722366, 0.00217239419, -0.00741340918, 0.0103620477, 0.0215821452, -0.0154449055, -0.0259887427, 0.00775881065, 0.00971487444, 0.0121581359, 0.02011328, 0.000130889021, 0.00456657261, -0.0313551947, -0.0130161867, 0.0186735019, 0.0134597551, -0.00611542631, -0.0341184065, -0.00396666443, -0.0261050891, 0.00702801347, 0.00369943283, -6.74612508e-08, -0.0159539171, -0.0199533049, -0.0125653464, 0.0272394605, -0.0217275787, 0.000302226399, -0.0256397054, 0.0221057031, -0.0436296761, 0.0058245617, 0.023094641, -0.000493560685, 0.00963488687, -0.0287810434, 0.0186444148, 0.0236181971, 0.0159539171, 0.0266868174, 0.0124780871, 0.0256542489, -0.00971487444, 0.00564277126, -0.0140487552, -0.0120781483, 0.0118309138, -0.0233273339, -0.0293046, -0.0114527894, 0.0235163942, 0.00300135813, 0.0320823528, -0.023225531, -0.00155885192, 0.0304826, -0.00398847926, -0.000951672322, 0.00410118932, -0.00469382573, 0.00114437006, -0.00514830183, -0.00222874922, 0.00319223781, 0.0422335267, 0.0081732925, -0.0122890249, 0.00562822819, -0.00411209697, -0.0218875539, 0.0124199139, 0.0201278236, -0.0148559045, 0.0214221701, -0.00426116493, 0.0110164927, -0.0223674811, -0.00561004924, 0.0301626492, 0.00646809954, -0.00919131842, 0.00938038062, -0.0143105332, 0.0360381119, -0.0318205766, -0.00584274065, 0.0369397923, -0.0114527894, 0.0062863091, 0.0190370809, 0.00178245408, 0.0434260704, 0.0163611285, -0.00554096885, -0.00866049062, -0.00762065, -0.010252974, 0.00254688226, -0.0149649782, -0.0114527894, 0.0332458131, -0.0182662904, -0.0376960412, -0.00518465973, -0.0312970206, 0.0320532694, -0.0233127903, -0.0477308631, 0.0145286815, -0.028926475, 0.0122381244, -0.0257124212, 0.0174664129, 0.00188152981, -0.0128053101, -0.0160411764, 0.0139105944, -0.0337402821, 0.000132593312, -0.0279375352, -0.00716617424, 0.0319369212, 0.0341474935, -0.0022323851, -0.0117509263, 0.0153140165, -0.0160411764, 0.0483416803, -0.0192261431, 0.0331294686, -0.0157648567, 0.114193402, -0.0133943101, 0.000861231587, -0.0212767385, 0.00475199893, 0.0226874314, -0.0202877987, -0.0278502759, -0.0337984562, 0.0267740767, 0.0120563339, -0.00832599681, 0.00464656064, 0.0161575228, -0.00471564056, -0.00255415402, 0.0114091597, 0.000809421355, -0.00683895173, 0.0215676036, 0.0134815695, -0.00255960762, -0.0145286815, 0.0443277508, 0.0231673568, 0.0256397054, 0.00463201711, 0.0210876763, 0.0128271244, 0.00602816697, 0.016608363, 0.010383863, -0.0236618277, -0.0319660082, 0.0105656534, 0.0208404418, -0.0180190559, -0.008813194, 0.0186298713, 0.0152558433, -0.0170592032, -0.0115618641, -0.00754066231, -0.035776332, 0.0162302386, 0.0121944947, -0.000711254601, -0.0127471369, 0.010514752, 0.0489524975, 0.0203168858, 0.0196624398, -0.0132634211, -0.00492651761, -0.0182372052, 1.9457244e-05, -0.00762065, 0.00777335372, -0.0360090248, -0.0224547405, -0.00498105446, 0.000790787861, 0.0303080808, 0.00160248158, 0.0300463028, -0.0351073444, -0.000272458245, 0.0231382716, 0.0717271864, -0.00854414515, 0.022832863, 0.00479199272, 0.0111255674, 0.0182662904, -0.00675896369, -0.0216694046, -0.00598817272, 0.0174809564, 0.00135070202, 0.00447567739, -0.00513012288, 0.00388667686, -0.0317914896, 0.00550097506, -0.00158430263, -0.0203168858, -0.00972214621, -0.00381759671, 0.0011916355, 0.00667897612, -0.00922040455, -0.0244326182, 0.0131252604, -0.00393757829, 0.00654808711, -0.015430362, 0.00680259336, 0.00245416933, -0.0553515144, 0.00394121418, 0.0254651867, -0.0133506805, 0.0160411764, 0.0272394605, -0.00690076035, -0.0112346411, -0.015692139, 0.019327946, -0.00200332934, 0.00449385634, -0.0191679709, 0.00207240949, -0.00571185164, -0.00300317607, 0.0217566639, 0.0224983692, 0.00699529145, 0.0232546162, 0.0172482654, -0.0219893567, -0.0125362603, -0.0238654315, -0.0228183195, -0.014019669, -0.00746794604, -0.0100784553, -0.0311225019, -0.00670442684, 0.0310934149, 0.044589527, -0.00391212758, -0.00472291233, -0.0087986514, -0.0105656534, -0.0267013609, -0.0136706317, -0.0160266347, -0.0139614958, 0.0147250155, 0.0159393754, 0.0221493319, 0.0126235196, -0.00542098703, 0.0361835435, 0.00432297355, 0.00177790923, 0.0116636669, -0.0201423671, 0.00667534024, -0.000360626524, 0.0243453588, -0.0249270871, -0.0409537219, -0.0409537219, 0.00108528812, 0.0301335622, -0.00446113432, 0.00443204772, -0.0261632614, 0.0267449915, -0.0117072966, -0.0069552972, 0.00498832623, 0.0104347644, -0.00692984695, 0.0109728631, -0.0133288661, -0.018280834, -0.0348455682, -0.0214658, -0.00715890247, 0.000620813924, 0.00440296158, 0.0271376576, -0.000454475783, 0.0037376089, 0.0411573276, -0.0040975539, 0.0066171675, 0.00295591052, -0.00681350101, -0.0208113547, 0.0346710496, -0.00491924584, 0.0246798526, 0.01880439, 0.0379869044, 0.00680622924, 0.0359508507, -0.0105438381, 0.00980213378, -0.00195969967, -0.00796968769, 0.0355436429, 0.00964942947, 0.0356018133, 0.0310934149, 0.0118381856, 0.0044356836, -0.000704891921, 0.00451930705, 0.00358854071, 0.0270358548, 0.00589727797, 0.0256978795, -0.00116345799, 0.0126380622, 0.0369107053, -0.0206077509, -0.000570821576, 0.00700619863, 0.00503195589, 0.00670442684, -0.0156194242, 0.0104929367, 0.0232837033, -0.0257996805, -0.000549915712, 0.0135688288, -0.0142669035, 0.00424298597, 0.0349037386, -0.0522392653, 0.00441750465, -0.0233855061, -0.001838809, -0.0187316742, -0.00785334129, 0.00951127, 0.0132125197, 0.0276757572, 0.00285047223, -0.0132416068, -0.0308025517, 0.015823029, 0.0213930849, -0.0287665, 0.0313842781, 0.0157793984, -0.033187639, -0.0263086949, 0.0152849294, 0.0393830538, -0.0212040227, -0.00309952488, 0.0144268796, -0.0256687924, -0.0178590808, 0.015823029, -0.0409828089, -0.0206950102, -0.0008766838, 0.0434260704, -0.00258505833, 0.0101293568, 0.00128889328, 0.00600271625, 0.00709709385, 0.00720253214, 0.01388878, 0.0242144708, 0.0326349959, 0.0105874678, 0.00334312394, -7.76585512e-05, 0.0231673568, 0.0202005394, 0.00454112189, 0.0132270632, 0.0201278236, -0.0184844397, 0.0136415455, -0.00108256133, -0.0419717468, 0.00150613277, 0.0066462541, 0.0151831275, 0.00371034024, 0.013430668, -0.00799150206, 0.0325186513, 0.0134670269, -0.00326313614, -0.0426407345, 0.00696984073, 0.00490470277, 0.0111328391, 0.0141360145, 0.0135251991, 0.0244326182, -0.00773699582, -0.00553733297, 0.0281265974, 0.0132052489, 0.0327804312, -0.00316315144, -0.00499923341, 0.0182517469, 0.00492288172, -0.0341474935, -0.0235454813, -0.0331585519, -0.0167974252, -0.0254070144, 0.00343583687, -0.0188480206, -0.00615178421, -0.0219748132, 0.0135979159, 0.0310934149, -0.0383068547, -0.0283883754, 0.00399575103, -0.0265122987, 0.0120999636, 0.000594908779, 0.00284320046, 0.00317224092, -0.0288537592, 0.00985303521, 0.0108056162, -0.00606816076, -0.00915496051, 0.0069480259, 0.00253779278, -0.0181063153, -0.0189498216, -0.00660626, 0.0108056162, 0.0129580135, 0.0209277011, 0.00418481324, 0.0132925082, -0.00964215863, -0.0418554023, 0.00189061929, 0.0230800975, -0.00489379512, -0.0367071, -0.00584637653, 0.00282865739, 0.049563311, -0.0142887188, 0.0191825144, -0.030889811, -0.0183390062, 0.00623177178, -0.0202587135, -0.00335039548, 0.00826782361, -0.0129361991, 0.0110746659, 0.00523192529, 0.00191243412, -0.00596635789, -0.00428297976, -0.00522465352, 0.000317678583, -0.0113582592, -0.00208695279, 0.0468582697, 0.0541880578, -0.00270504, 0.0108637894, -0.0291155372, 0.00281229615, 0.0119036296, -0.0423207842, -0.0262505207, 0.0293191411, 0.00532645639, -0.0200405642, 0.0191097986, 0.0279957075, 0.0130307293, 0.0220039, -0.00276684854, -0.00225601788, -0.0231819, -0.00255597173, -0.0341184065, -0.00193424895, 0.00191061618, 0.0122962967, 0.00805694703, -0.0292173401, 0.0108710611, -0.00543553056, 0.00684985891, -0.0182081182, -0.00347401295, -0.00154703553, 0.0170446597, -0.0252615828, -0.0641065389, -0.00886409543, -0.0109219616, 0.0421462655, 0.00760610681, 0.0112564564, 0.00567185786, -0.0117654689, 0.00482471474, 0.00305589521, 0.0150522385, -0.0151249543, -0.013757891, 0.00461020228, -0.00454839366, 0.00896589831, -0.00812966283, -0.0127398651, -0.00236145617, -0.0127980383, -0.0188916493, 0.00425025774, 0.0388304107, -0.00804967526, -0.0154449055, -0.0150667811, 0.00294136722, -0.0041629984, 0.0107183568, -0.0257705953, -0.0023323698, 0.000118731798, -0.00456293672, 0.00494833244, 0.00130343658, -0.0183535498, 0.0230655558, 0.0217130352, -0.0119181732, 0.0169428568, 0.00807149, -0.000428570667, -0.00196697121, 0.000418799435, 0.00911133084, 0.0123908278, 0.0327804312, -0.0124126431, -0.0181354024, 0.0121944947, -0.00631903112, 0.00803513173, -0.00399575103, 0.00866049062, 0.00922767632, 0.00387940533, 0.0235745683, -0.030104477, -0.00946764, -0.0143541628, 0.0888881907, 0.0136415455, -0.0115036909, 0.0163320415, 0.0163756721, -0.013038001, 0.0130089149, 0.0277921036, 0.0260469168, -0.0225565415, 0.0141142, -0.00561368512, 0.0326640829, -0.00588637032, -0.0235309377, 0.0132852364, -0.00659535266, -0.0160266347, 0.0260905456, -0.0181790311, -0.00673351344, 0.00564640714, -0.00177154667, -0.0266141016, 0.0167537946, 0.0155321648, -0.0244617052, -0.0180190559, -0.0210440475, -0.00975123234, 0.0148050031, -0.0107983444, -0.00245780498, -0.00696256896, 0.0184844397, 0.0472654812, 0.00135161099, 0.0190516245, -0.00569367269, -0.0127689512, -0.0177427344, -0.0115545923, 0.00222693128, 0.0238945186, -0.0177136473, -0.00940219499, -0.0206950102, 0.0111182956, -0.00621359283, -0.0100711836, -0.00794060063, 0.010514752, -0.0123908278, 0.00181063148, -0.00603180286, 0.0170882903, -0.011271, 0.0182372052, 0.0337693691, -0.00427207258, -0.0154012758, -0.025290668, -0.00494833244, -0.00687167374, -0.000404256221, -0.0141142, -0.0116345799, 0.00497014727, -0.0310643297, -0.00199605757, 0.00850778632, 0.00241962913, 0.00474472716, -0.00150158803, 0.00106438226, -0.0154449055, 0.00735523598, 0.0190516245, 0.00656626606, -0.0288537592, -0.0068898527, 0.00858777482, -0.00630448805, 0.0142887188, -0.00487198029, -0.00545370951, -0.0172337219, 0.00221238821, 0.00192879525, -0.00860231742, -0.00579183921, -0.0219602697, -0.0130598163, -0.0271376576, 0.00534827122, 0.00497378316, 0.00706437184, 0.0096276151, -0.0137942489, -0.0142232738, 0.019589724, 0.00500286929, -0.00514103, 0.0116491234, -0.0153867323, -0.0211749356, 0.0251016058, 0.00233964133, 0.0177572779, 0.0168265123, 0.0194588359, 0.0226583444, 0.011271, 0.000396530115, 0.00275594112, 0.0288828444, 0.0084787, 0.00192879525, -0.0120708765, -0.00371034024, 0.00640265504, 0.0313551947, 0.0253342986, 0.0203459729, -0.0031104323, -0.0134524833, -0.00127525907, 0.00295409258, -0.00601725932, -0.00462111, -0.0242144708, 0.0102966037, -0.0165065601, 0.0128053101, -0.0162447821, -0.00879138, 0.00178427191, 0.0279520787, 0.00198515016, 0.00830418151, -0.0121072354, 0.00401393, -0.0125508029, -0.0105874678, 0.00729342736, -0.00708982209, -0.0242144708, 0.0146232126, 0.00446840608, 0.0179899689, 0.00139614963, -0.0220329855, -0.00253233919, 0.0123908278, 0.031646058, -0.00611542631, 0.0165501907, -0.00492288172, -0.0144414222, 0.0114600612, 0.00620995695, 0.0123617416, 0.0187898465, 0.00501014106, -0.0142741753, 0.0152558433, 0.00214148988, -0.0146886576, 0.0197933298, 0.0185135249, 0.00815874897, -0.00430843048, 0.0132125197, -0.00110982987, 0.0277921036, 0.0066535254, 0.0102602458, 0.00497014727, 0.015561251, -0.0205786638, -0.0016452024, -0.0103402333, -0.016739253, -0.00858050305, 0.00999119598, -0.00182881055, -0.00927857775, -0.031675145, 0.0115400488, 0.00775153888, -0.00980940554, 0.0220039, 0.00649718568, 0.0550897382, 0.00988212135, 0.00655535888, 0.00933675095, -0.0266868174, 0.0111182956, 0.0458402447, -0.017102832, 0.0105220238, -0.0054937033, -0.00047174588, 0.0116563952, 0.00982394814, -0.0190952551, -0.0159975477, 0.023981778, 0.00876956433, -0.012449001, -0.0160993505, -0.00213421835, -0.0247380268, -0.000292682409, -0.0311225019, -0.000823964598, -0.0115255062, -0.0119109014, -0.00435569603, 0.0419135764, 0.0220184419, -0.00581001863, 0.0136560882, 0.0116782095, -0.00659171678, 0.00329585839, 0.0045302147, -0.00892954, 0.0390340164, -0.0147904595, -0.0112782707, 0.0456657261, 0.0072788843, 0.0109583205, -0.0211313069, 0.0147541016, -0.00652990816, 0.00145704939, 0.0087986514, -0.0117727406, 0.0129434699, -0.00543189468, 0.00616996316, 0.0326640829, 1.3407036e-05, 0.0103693195, -0.0032413213, -0.00919859, 0.0138815083, -0.019560637, -0.0187607612, 0.0200987365, -0.0232546162, -0.00828236714, 0.00113800738, -0.00360126607, -0.0424953029, -0.0543625765, -0.0284029189, 0.0118890861, 0.00975123234, -0.0263377801, 0.0255233608, -0.0504940785, 0.0156775974, -0.015561251, -0.0145141389, -0.0137142614, -0.00740250153, -0.00769336615, 0.0178299937, 0.0149795217, -0.00556278368, 0.0110019501, 0.00195788173, 0.0266868174, 0.00293591362, -0.0129798288, -0.0177281909, -0.0252179522, 0.0074752178, 0.0037085223, -0.00383213977, 0.00477017788, 0.0233127903, -0.0185135249, -0.00416663382, -0.0312388483, 0.00511194346, 0.0171610061, 0.00204514107, 0.0035576364, -0.00336312084, -0.00777335372, 0.0217566639, 0.00223056716, -0.0114964191, -0.0127689512, -0.0169428568, -0.000822146714, -0.0283011161, -0.0264250394, 0.00350128138, 0.00915496051, 0.0149649782, -0.00223056716, -0.00412300415, 0.00428297976, 0.0129289273, 0.0111473817, -0.00570094446, -0.00430479459, -0.0108565176, -0.0161866099, -0.00689712446, -0.0213785414, 0.0149795217, -0.00101893477, -0.028170228, 0.0164338443, 0.0055955057, -0.000883955392, -0.00940219499, 0.00311770383, -0.0123908278, -0.00126526062, -0.0166665353, -0.000126685132, -0.00706800725, 0.00824600831, -0.0244180746, -0.0228910372, 0.0303371679, 0.00122890249, 0.0326640829, -0.00595908659, -0.0342638381, 0.00964942947, 0.00374488044, 0.00087350246, -0.0135179274, -0.00168337836, -0.0200551078, 0.0111982832, 0.0168119688, 0.0159102883, -0.00620995695, -0.00188516558, -0.032169614, -0.0209567882, -0.0292609688, 0.00241417531, 0.0039448496, 0.019982392, 0.0118090985, 0.0305116866, -0.00964215863, 0.00382850412, -0.0175391287, -0.0172337219, -0.0168846846, 0.00695166178, -0.0190370809, 0.00349582778, -0.0152267572, -0.0304535143, 0.0127471369, 0.0226438, -0.000718526193, -0.000223942945, -0.00347037707, 0.00552279, 0.0035921766, 0.00156157883, 0.0112419128, 0.00267049973, -0.000259278429, -0.00558459852, -0.0153431026, -0.0290282778, -0.0211167634, -0.0107619865, -0.0257996805, -0.00603180286, -0.000935311138, -0.00796968769, -0.000458111579, 0.0187607612, 0.0189498216, 0.0193424895, 0.0154885352, 0.0169719439, 0.00860958919, 0.0107910726, -0.0182081182, -0.0382486805, -0.0014479598, 0.00468655443, 0.00209058868, 0.00938765146, 0.00241781119, 0.00671533402, 0.000388349552, 0.0399356969, 0.0138015207, -0.0081005767, -0.0276466701, -0.0106965424, -0.0134524833, 0.0112637281, 0.0251452364, -0.0152703868, 0.000665807049, 0.010645641, 0.00963488687, -0.0115036909, 0.0244471617, 0.00490106689, -0.0223674811, 0.0263377801, -0.00667534024, -0.0282865725, -0.00572639471, -0.000783516269, 0.00669715507, 0.0283592883, -0.0040393807, -0.0229492094, 0.0231091846, 0.00899498444, 0.0135761006, -0.0230510123, 0.000193720305, 0.0106165539, -0.012645334, 0.03472922, 0.0103256898, 0.00717708142, 0.0124780871, -0.00126344268, 0.00115255057, 0.00040811926, 0.00523192529, -0.0113946171, 0.0052282894, 0.00108437927, -0.00755520537, 0.00250143465, 0.0012998007, 0.0156485103, 0.0128562106, -0.0241562966, 0.00714435941, -0.0180190559, 0.00908951554, -0.0135033848, -0.0233564191, 0.00524283247, 0.0122453952, 0.00331403734, -0.0257269647, -0.0265413858, 0.0096058, 0.0123471981, 0.00378851, 0.000424934871, 0.0147613734, 0.00771518098, 0.00733342115, 0.0163902156, -0.0197642427, -0.00963488687, -0.00652263639, 0.00121526828, -0.0127398651, -0.0131979771, 0.000794878171, -0.00598090142, 0.0014825, -0.00975123234, 0.0266868174, -0.00366852852, -0.00244507962, 0.0309188962, 0.040517427, -0.00452657882, -0.00124435464, 0.00257233297, 0.0149795217, 0.0125217168, 0.0284610912, 0.000398802513, 0.0176118463, -0.000676714466, -0.00876956433, -0.00842052698, 0.00867503416, -0.0178154502, -0.00472291233, 0.0177427344, 0.0144050643, 0.00343401893, -0.0301626492, 0.00537372148, -0.0241417531, 0.00418481324, 0.000966215506, -0.00893681217, 0.00777335372, 0.0124344574, -0.0118309138, -0.0208113547, 0.0282865725, -0.00992575102, 0.00903134327, 0.0221638754, -0.0177281909, 0.0115182344, 0.0034412907, 0.0142087312, 0.0087986514, 0.0171464626, -0.0225856286, 0.00686076656, -0.00243780809, 0.00405028835, 0.00863867532, 0.0213349108, -0.0230800975, -0.00109346875, 0.00712254457, -0.00374851632, -0.0164920166, -0.0059554507, -0.0164047573, 0.0155757945, -0.0122672105, -0.0232400745, 0.00951127, -0.00954035576, -0.00527191907, -0.0196478963, 0.013103446, -0.00323586748, -0.00073670526, 0.00122344878, -0.0154739916, 0.0161284376, -0.0197351556, 0.0292609688, 0.00754066231, -0.014841361, 0.00991847925, -0.00180972263, 0.0135179274, -0.0126962354, 0.00603543827, -0.00359399454, 0.0219020974, 0.00146341207, 0.00622450048, 0.0111837406, 0.00259778369, -0.0251016058, 0.00208877074, -0.00556641957, 0.0127180507, 0.0124199139, -0.012907112, 0.0206950102, -0.0059263641, -0.00382850412, 0.000415618095, 0.0132125197, 0.0187316742, 0.000162929573, 0.000623086293, 0.0140632987, -0.013365224, 0.00668988377, -0.0040393807, 0.00774426758, 0.00439205393, -0.0113364439, 0.00765700825, 0.0148340892, 0.0233855061, -0.0235309377, 0.0228474066, -0.0170446597, 0.013430668, -0.00268504303, 0.00258324039, -0.00269776816, 0.00298317894, -0.00859504566, 0.024243556, 0.0050974004, 0.0155757945, -0.00178699882, 0.00487925205, 0.0141214719, -0.000256324332, -0.00863867532, -0.0271667447, -0.0147613734, 0.000872139, -0.0117509263, -0.00481744343, -0.00393394241, -0.0169719439, 0.0103765912, -0.00842779875, 0.000386531668, -0.00139524066, 0.0167247094, 0.0124926306, 0.015692139, -0.0111110238, 0.00562095642, -0.0111110238, 0.00770790922, 0.0110673942, 0.0138087925, 0.011467333, 0.0115182344, -0.00471927645, -0.0271958318, 0.0144632375, -0.00606452487, -0.00353945745, 0.00196333532, -0.017786365, 0.000311088661, 0.00212694658, -0.00199423963, -0.00365034956, -0.0179317966, -0.00122435775, 0.00124344579, 0.0244180746, 0.0033558493, -0.0172773506, 0.0101802573, 0.0125944326, -0.0110964812, -0.00168337836, 0.00211967505, -0.00550097506, 0.0206950102, 0.0022323851, -0.0088713672, -0.00702074217, 0.00728979148, -0.0372306556, 0.0102238869, 0.0267159045, 0.00248507364, 0.0103984056, 0.00941673853, -0.00389758428, 0.0140487552, 0.0158084854, 0.0142378174, -0.00443931948, 0.020767726, -0.0131470757, -9.65192958e-05, 0.000219739042, 0.0167537946, 0.00834053941, -0.0185135249, 0.00228692219, -0.00653354404, 0.0132779647, 0.0262941513, 0.00648264261, 0.0094967261, 0.0107547147, -0.00477744965, 0.0209567882, -0.00333948806, -0.016841054, -0.0096857883, -0.00679168617, 0.00991120748, -0.00597726554, -0.0196333546, 0.0100929979, -0.00660626, 0.00952581223, -0.0181499459, -0.00867503416, 0.0138306068, -0.0216694046, -0.00275775907, 0.0103402333, 0.0206513796, 0.00125708, 0.0196624398, 0.00779516855, -0.0361835435, 0.0170737468, -0.000938946963, 0.0224111099, 0.0009180411, -0.0115764076, 0.00329404045, 0.0185135249, 0.014448694, 0.000639447419, 0.00695893308, -0.000684440543, -0.0295227468, 0.00130979926, -0.0292027965, 0.0107183568, 0.00724616181, 0.0131834336, -0.0150231514, -0.00209058868, -0.0123980995, -0.0126744211, -0.0300172158, 0.0189934522, -0.00163883972, -0.0136633599, 0.0106092831, -0.0192261431, -0.0096276151, 0.0185280684, 0.0317042321, -0.0398484357, -1.25051856e-05, -0.0126744211, -0.00193788472, 0.00203968724, 7.59542672e-05, -0.00073579629, 0.0144632375, -0.0120636057, -0.017786365, -0.0147759169, -0.00633721054, 0.00550097506, 0.0241562966, 0.00414118357, -0.00396302901, 0.0190807115, -0.0163611285, -0.00636266079, 0.00449749222, -0.00810784847, 9.89052933e-05, -0.00796241593, 0.0127180507, 0.00774426758, -0.0178299937, 0.0330712944, -0.0027941172, 0.00523919705, -0.00978031848, -0.0168555975, 0.0125871617, -0.00296318205, 1.83778648e-05, 0.00385395461, 0.00415572664, 0.0135324709, 0.00998392422, 0.00892954, -0.00383941154, -0.00561004924, -0.0107692583, 0.0159248319, -0.00752611924, -0.000531282218, 0.00868957676, -0.00125889794, 0.0309770703, -0.0234291349, -0.0135542862, 0.0264104977, -0.0119618028, -0.00316860527, 0.0133434087, -0.00323768542, 0.0300172158, 0.00321223494, 0.00900225621, 0.0107619865, 0.0230073817, -0.00205604848, 0.0111182956, 0.0105874678, 0.0220039, -0.0129580135, 0.0108565176, 0.00489015924, -0.0106965424, -0.0111255674, -0.00227783271, 0.00118709076, 0.00131343503, -0.010318418, -0.00608633971, 0.0223529376, -0.00702437758, 0.00171428267, 0.0119690746, -0.0141869159, -0.0353691243, -0.00212331093, -0.0298136119, -0.00713345176, 0.00141523755, -0.00225056405, 0.0117800124, -0.0156630538, 0.0146377562, -0.0226583444, -0.00454112189, 0.00383941154, -0.00259414781, -0.00232691597, -0.00675169239, -0.0188625623, -0.023225531, -0.0119690746, -0.00753339054, 0.00120617868, -0.0136124585, -0.0199969336, -0.0295663774, 0.00864594709, -0.0129798288, -0.00756974891, 0.0081369346, 0.00155885192, -0.0119109014, 0.00063399371, 0.00487925205, -0.0246071368, 0.00639901916, 0.000563095498, 0.00162611436, -0.0137724346, -0.00116982067, 0.0017360975, 0.0253779273, 0.00641356222, -0.00569730857, -0.00251597795, 0.0095694419, 0.0153285591, 0.0243889894, -0.0259596575, -0.00273776217, -0.0101366276, -0.00448658504, 0.00328131509, 0.0261050891, 0.00794787239, 0.0048683444, 0.000401074882, -0.00724616181, 0.00211240351, -0.000493560685, -0.0233709626, 0.00119708921, 0.00170428422, -0.0336239375, -0.00150431483, 0.0135906441, -0.000485380151, -0.0134742977, 0.01257989, -0.0279229917, -0.00999846682, -0.0105874678, -0.0133724958, 0.0182953775, 0.0127544086, 0.0024996167, -0.0176845621, -0.00556278368, 0.0344383568, 0.0170446597, 0.0152413, 0.00378851, 0.0182372052, 0.0128562106, 0.0141069284, 0.00377760269, 0.00573366648, 0.0121799512, 0.0129652852, -0.000194174776, 0.0195024647, 0.0048610731, 0.004766542, -0.00931493565, -0.00245235139, -0.028432006, 0.00578456791, 0.019982392, -0.00927130599, 0.0252034087, 0.00397757208, -0.00478472095, 0.0227892343, -0.00365034956, -0.0122163091, -0.0011916355, -0.000491742801, 0.00935129356, -0.00115345954, -0.0100202821, 0.0121944947, -0.00570821576, 0.00061490573, -0.00898044184, -0.0137724346, -0.000479471957, 0.00101166312, -0.000255415391, 0.0115545923, 0.0128562106, 0.00154339976, 0.0132779647, 0.0140560269, 0.00205604848, -0.0235454813, 0.0194879211, 0.0117654689, 0.0218439233, 0.0265268423, 0.00964215863, -0.0215821452, -0.0358054191, -0.00780971209, 0.00224147458, -0.0027286727, 0.0181354024, -0.00109983142, 0.00407573907, -0.00149340741, -0.0175391287, -0.0054282588, -0.00425389316, -0.00458475156, 0.0157066826, 0.0200260207, -0.00946764, -0.00193243101, 0.0260469168, 0.00550824637, -0.0160993505, 0.0180626865, 0.0101438994, 0.0390631035, 0.00936583709, 0.0081951078, 0.0056355, -0.0159830041, -0.00407210318, -0.00135979149, -0.00344856223, 0.0108856037, 0.00470473338, 0.008813194, -0.00439569, -0.0187462177, 0.00354491104, -0.0150376949, -0.010747443, 0.00169519463, 0.00818056427, -0.0167683382, -0.0122890249, 0.00589727797, -0.0213785414, -0.0132488785, 0.0194879211, 0.00596272247, 0.00586819137, -0.0189061929, 0.0407501161, -0.00458111614, 0.00716981, -0.00724979769, 0.0274721514, -0.00134252151, 0.010514752, 0.00175700337, 0.019822415, 0.00651900051, -0.00137342582, -0.0164338443, 0.0251306929, -2.20704806e-05, 0.0132706929, 0.010907419, 0.00391939934, 0.013430668, -0.0217712075, -0.00543553056, -0.00935129356, -0.00527191907, 0.00727524841, 0.00919131842, -0.00596272247, 0.0168555975, -0.0151831275, -0.0111910114, 0.00985303521, 0.010187529, 0.0215094294, -0.00520283869, 0.00925676245, 0.0136851752, 0.0214658, 0.0362126306, 0.00485016545, 0.00481380755, 0.0133870384, -0.0267013609, 0.00636266079, -0.000873048, 0.0203314293, 0.000966215506, 0.00629721629, -0.0019724248, -0.0107038133, 0.014710472, 0.0243453588, 0.0028795586, 0.0220184419, 0.024272643, 0.00798423, 0.00656263, -0.0206077509, 0.0024832557, -0.0216694046, -0.00826782361, -0.00352309621, 0.00385759049, 0.00235963822, -0.0152413, -0.000718526193, 0.017626388, -0.0144123361, -0.0116418516, 0.019720614, 0.00870412, -0.00331040169, 0.0107401721, 0.0206513796, 0.010907419, 0.00522101764, -0.0274139792, -0.0200551078, 0.00435206, 0.00865321886, -0.00281229615, 0.000218830086, -0.0219020974, -0.0217712075, -0.00253779278, -0.00401393, 0.0273703504, -0.0117436545, 0.0365325809, -0.0171173755, 0.0148631763, -0.00511921523, 0.0112782707, 0.0165356472, 0.0392667092, 0.000489470433, 0.000362671679, 0.0248834584, -0.00456293672, 0.0101075415, 1.55373909e-05, 0.00670442684, -0.0115400488, 0.024505334, 0.0117145674, 0.00355400075, 0.0050974004, -0.0096058, -0.0146232126, 0.0055300612, -0.0101293568, 0.0111255674, 0.0232109874, 0.00845688581, -0.0149504356, 0.00302317296, -0.00368852541, 0.0194733776, 0.0268904231, -0.0168846846, 0.0100857271, -0.0141651016, -0.00641356222, 0.0188916493, 0.0123908278, 0.00155703409, -0.0126162479, 0.0010262063, 0.015823029, -0.01077653, 0.0204623174, 0.0143759781, -0.00842052698, -0.0199533049, 0.0131907053, 0.00773699582, 0.0013970586, -0.00146068516, -0.00755520537, 0.0080205882, 0.0100202821, -0.0145359533, 0.000614451244, 0.0243744459, -0.00602089521, 0.0130598163, 0.00323950336, -0.0129289273, 0.0134015819, 0.00340493256, 0.00460293097, 0.0102238869, -0.0111546535, 0.0095912572, -0.0195751805, 0.00651536463, -0.00188152981, 0.0109365052, -0.0192988589, -0.0110746659, 0.00313042919, -0.0123544699, 0.00910405908, 0.0139978537, -0.0131179895, 0.00729706325, -0.0283156596, -0.000531736645, -0.027748473, -0.00474836305, -0.000544462, -0.00421753526, -0.00268686074, 0.0117945559, 0.0162593257, 0.00127616804, 0.00700256275, -0.0125871617, 0.00365034956, 0.00475199893, -0.00360853784, 0.021291282, 0.0261487197, -0.0115182344, -1.96560777e-05, 0.00828236714, -0.00113255368, 0.0224256534, -0.00478472095, -0.00177518243, 0.00563913537, -0.0102893319, 0.0184117239, -0.00181972107, 0.0276030414, 0.015430362, -0.000195424582, 0.00772245275, 0.0295518339, -0.00618087081, -0.00420662807, 0.0121435933, -0.00442841183, 0.00715526659, -0.00951127, 0.00134433934, -0.0152703868, -0.0152703868, 0.00642447, 0.0117727406, -0.0154739916, -0.00927130599, -0.0128053101, 0.0080205882, -0.0220329855, 0.00263595954, -0.000252688536, 0.00289591961, -0.0095912572, 0.0123399263, 0.0100493683, -0.0172482654, 0.0088713672, 0.0176554751, 0.00336130289, -0.0069552972, -0.00526101189, 0.0150813246, 0.0191534273, -0.0208840705, -0.0277339295, 0.0020814992, -8.03285948e-05, -0.00381396082, 0.006551723, -0.0109801348, 0.00159339211, 0.0169428568, -0.00825328, 0.0124562727, 0.00135524676, -0.0160266347, -0.019851502, -0.00427570799, 0.0058245617, -0.00293773157, 0.0103693195, 0.00932947919, 0.00592272822, -0.00219966285, 0.0126380622, 0.00230510114, -0.00369761488, 0.0122235809, -0.0122235809, -0.0306571182, -0.00591182103, 0.00789697096, 0.0221057031, 0.0035721797, -0.0055300612, 0.0088350093, -0.00595181482, -0.0112273702, -0.00473382, -0.00172973482, -0.0320241824, -0.00017224632, -0.00767155131, 0.0109946784, -0.00430115871, 0.00232691597, -0.000447658647, 0.00530827697, 0.0102238869, 0.0200696513, -0.00102893321, 0.0114964191, -0.00975850411, -0.00536281429, -0.00983122, -0.00831145328, 0.00412664, -0.00967851654, -0.00946764, -0.000309270778, -0.0125435321, 0.00971487444, -0.00487198029, 0.037637867, -0.00669351919, -0.00285229, -0.00780971209, 0.00020008297, 0.00683531584, -5.91386633e-05, 0.0199096743, -0.0068898527, -0.0148340892, 0.00165247393, -0.00226147147, 0.00643174117, 0.0227892343, 0.0130598163, 0.00721344, 0.0131107178, 0.00924949162, -0.00791151449, 0.0128198527, 0.0358635932, 0.00729706325, 0.00928584952, -0.00478472095, -0.00653718, 0.0150522385, -0.00732251396, 0.00849324372, 0.0140487552, -0.00481380755, -0.0228183195, -0.0170155726, -9.74282448e-05, 0.0224983692, -0.0162447821, 0.0058536483, 0.00893681217, 0.0152849294, -0.00459929509, 0.0128198527, -0.0244762488, -0.0203168858, 0.026206892, 0.0189934522, 0.00697347661, -0.0166665353, -0.00299772224, -0.0022542, -0.00420299219, -0.00559914159, 0.00043038858, -0.0336239375, -0.00758429198, -0.00763519341, -0.0153576462, -0.0136706317, 0.0115836784, -0.00430843048, 0.00219420902, 0.0133506805, -0.0141723733, 0.0179027095, 0.019982392, -0.0169719439, -0.000126003419, 0.00402847352, -0.0110892095, -0.0114600612, -0.00788242836, -0.0120345186, -0.0127689512, 2.27237888e-05, 0.0101802573, -0.0113582592, 0.00916950312, 0.0423498712, 0.00799877383, -0.0214512572, 0.0161575228, 0.0122453952, 0.00299954019, -0.00204514107, -0.0110819377, -0.0394703113, -0.0164483879, -0.00479199272, 0.00696620485, 0.00256142556, -0.0213785414, 0.0197497, 0.0161429793, -0.0373470038, 0.0291446224, 0.0119109014, -0.00702074217, 0.0296390932, -0.00727524841, -0.0104056774, -0.03557273, 0.0081369346, 0.0164483879, 0.0102602458, -0.00659535266, 0.00772245275, -0.0126526058, 0.0118527282, -0.0239526909, 0.000466746627, 0.00744249532, -0.00209604227, -0.0147250155, 0.00542098703, 0.0074170446, 0.00668624789, -0.00709345797, -0.0176845621, 0.000148272724, -0.070505552, -0.00664988952, -0.0113073578, -0.00124617259, -0.00594454305, 0.0216694046, 0.018542612, 0.0148268184, 0.0227892343, 0.0113073578, 0.00734796468, 0.0153576462, -0.0264977571, -0.00522101764, -0.0208549853, 0.00219966285, 0.0334203318, -0.00116073119, 0.0011743654, 0.0176554751, 0.00424298597, -0.0161284376, 0.00471564056, -0.0101075415, 0.00639538327, -0.000991666107, -0.00898771267, 0.0114455186, -0.0164193, -0.0270649418, 0.00795514416, 0.00241417531, 0.0160557199, -0.00181790313, -0.00805694703, -0.0118454564, -0.00612269761, -0.0136560882, -0.0101438994, -0.0026141447, 0.0137069896, -0.0161575228, 0.00439569, -0.0211022198, 0.00235600257, 0.0107256286, -0.00643174117, -0.000105665618, 0.00855141599, -0.00110528513, -0.00459929509, 0.0149068059, -0.0170592032, 0.00354309333, 0.00325041078, 0.00854414515, -0.0177281909, 0.00094985438, 0.0280538816, -0.00414845487, 0.00274503371, 0.00911860261, -0.000862595043, -0.0084787, 0.0376960412, 0.0277921036, -0.0196333546, 0.00343220122, 0.014216003, 0.00649355, -0.0156485103, -0.00812966283, -0.00463928888, -0.000362671679, 0.00915496051, 0.0087622935, -0.00996938068, 0.00157612201, 0.0219020974, 0.0250143465, -0.00438478217, 0.00235418463, 0.014739559, 0.0192261431, 0.00436296733, -0.0142887188, 0.000640356389, 0.000535826955, 0.00964215863, 0.0121072354, 0.00755520537, 0.000451521686, -0.00340493256, 0.0398775227, 0.00567549374, -0.00320496317, -0.0108347023, -0.00414118357, -0.0136997178, -0.000706255378, 0.0114455186, -0.00570094446, -0.0131761618, -0.00338311773, 0.0563986264, -0.0148631763, 0.00118981756, -0.00379941752, -0.000211444858, 0.0436878465, 0.0234727655, -0.0116127655, 0.0123471981, -0.00434842426, 0.0244617052, -0.0188189335, 0.016608363, -0.0178736243, -0.0317914896, -0.0186298713, 0.0174373277, -0.0135906441, -0.0110019501, 0.0120708765, 0.00804967526, 0.00255233608, -0.0105874678, 0.00224147458, 0.00175700337, -0.0251743235, -0.017626388, 0.00189607299, -0.00488288794, -0.021029504, -0.00964942947, -0.00663898233, 0.0115327779, 0.00662807468, -0.0159830041, 0.0116854813, -0.010187529, 0.00564277126, -0.00910405908, 0.00285592582, -0.0154158184, -0.00378487445, -0.0169137716, 0.00759156374, -0.0120272469, -0.010449307, 0.00678077852, 0.01186, 0.000766246172, 0.0240835808, -0.00890045334, -0.0117509263, 8.32826845e-05, -0.00987485, 0.00721707568, -0.00787515659, 0.025290668, 0.0128198527, 0.00587909855, 0.0044720415, -0.001183455, 0.00207059179, 0.00719162496, -0.0162738692, 0.0100784553, 0.00557369087, 0.000109926332, -0.00334312394, -0.00121345033, 0.0178154502, 0.00253233919, 0.00709709385, -0.00717708142, -0.00850051548, 0.034234751, 0.00789697096, 0.0115618641, -0.00254506432, -0.00182790158, 0.00793332886, 0.0150813246, -0.0169428568, 0.002383271, 0.0307152923, -0.00127980381, -0.000740795513, -0.0119981607, 0.0251452364, -0.0229928382, -0.00353400363, -0.013299779, 0.0016533829, -0.00391939934, -0.00569367269, 0.010187529, 0.00746794604, 0.00201423676, 0.00593727175, -0.00223056716, -0.00751884747, 0.0138451504, -0.0262359791, -0.00689348858, -0.0138451504, -0.000346765039, -0.0283883754, 0.0018379, 0.00361944526, -0.0073152422, -0.022309307, -0.00719889626, 0.000662171224, -0.0146232126, 0.0127253216, -0.0111401109, 0.00423935, 0.00734069292, -0.0133288661, 0.0175100435, 0.0201714542, 0.0245489646, -0.0154594481, 0.0156194242, 0.00503922766, 0.0135906441, -0.00328313303, 0.010747443, 0.0124344574, 0.00855141599, -0.0101729864, -0.00711163692, 0.00756974891, 0.00530464156, -0.00150976854, -0.0114164315, 0.0131543474, 0.0218439233, 0.01316889, -0.0114455186, -0.0118236421, 0.0166810788, -0.00471927645, -0.003226778, 0.0101584429, -0.00046856454, 0.0140996566, 0.0129943714, -0.0112564564, -0.0043702391, -0.00120617868, 0.0124780871, -0.00868957676, -0.0354854688, 0.00148068205, 0.00593363587, -0.016841054, -0.0110019501, -0.000546279887, 0.0110310363, -0.00791151449, -0.000744885823, -0.0115473205, -0.0252034087, -0.0112637281, 0.00202150829, -0.0105583817, 0.00656990195, -0.00697711203, -0.0139251379, -0.00884955283, 0.0101584429, 0.0117145674, -0.00922767632, 0.0256687924, 0.0106310975, 0.0186735019, -0.0134015819, -0.00468655443, -0.0124126431, 0.016739253, -0.00551551813, 0.0229928382, 0.00812966283, 0.0191825144, 0.00249416311, 0.0138306068, 0.00886409543, -0.0149213485, 0.0138233351, 0.0211894792, -0.021785751, -0.00440296158, -0.00578820379, -0.00111801038, 0.00656263, -0.0325768255, -0.00580638275, -0.0120417904, -0.0133215943, -0.017786365, 0.00191425206, -0.0132125197, -0.0291155372, -0.0144559657, 0.00582092581, -0.00128798443, 0.00124980835, -0.0179899689, -0.0094749108, -0.0015652146, -0.0148486327, 0.00616996316, -0.00631903112, 0.00114800583, 0.0211749356, -0.00781698339, -0.0112564564, 0.0132197915, -0.0155467074, -0.00485743722, -0.00566822197, -0.0139324097, 0.00216330471, -0.0199387614, -0.00686076656, 0.0199678484, -0.00756974891, 0.00371034024, -0.00841325615, -0.000566731323, 0.0130016431, 0.00428297976, -0.0205350332, -0.00339402515, -0.0130016431, -0.00720616803, -0.0043993257, -0.00146977464, -0.0163320415, -0.0317914896, 0.014150558, -0.0118381856, -0.00818056427, -0.0196188111, 0.034991, 0.00446477, -0.0136633599, -0.00175791234, 0.0115691358, 0.00367034646, 0.0226728879, 0.00197606068, 0.00421389937, -0.0030595311, 0.00555551192, 0.000270867575, -0.0160266347, 0.00389758428, -0.0206950102, -0.0183244646, -0.0102675166, -0.0136051867, -0.0167828817, -0.00760610681, -0.0253052115, -0.0166374501, 0.005126487, 0.0178590808, -0.00505377073, 0.0737050623, 0.00251597795, 0.0216257758, -0.0200987365, 0.0159830041, -0.0106165539, -0.0226001721, 0.0387431532, 0.000590364041, 0.0140051255, 0.0162011534, 0.0158812013, 0.00443204772, -0.00777335372, 0.0161284376, -0.00013043455, 0.00626085838, 0.00410118932, -0.0245635081, -0.013627002, -0.00803513173, -0.0194152053, -0.00398484385, 0.0095548993, -0.00382486824, -0.00685713068, 0.00116800272, 0.00537008606, -0.0141578298, 0.00249052723, -0.00648627849, 0.0112928143, 0.0249416307, 0.00762065, -0.0172773506, 0.00904588588, 0.00795514416, -0.0108056162, 0.00479199272, -0.00711527281, 0.000805785588, 0.0044356836, 0.0100857271, 0.00460293097, 0.0251452364, -0.0175973028, 0.0164193, -0.0204623174, -0.00767155131, -0.0150376949, -0.023094641, -0.0235600248, 0.00445749843, -0.005257376, -0.00858050305, 0.00530464156, 0.0186880436, -0.0238218028, -0.0124999024, 0.0185280684, 0.0080424035, 0.0243453588, -0.0119545311, -0.000552188081, 0.0229055788, -0.0269776825, -0.00227965065, 0.00758429198, -0.00916223228, -0.00461020228, -0.00290864496, -0.0112200985, 0.0115327779, 0.0080424035, 0.00350491726, 0.0167683382, 0.0148631763, 0.00996210892, 0.0172918942, 0.00471927645, -0.00654808711, 0.00678805029, -0.0051628449, -0.0233418755, -0.00488652382, -0.0035212785, -0.0101002697, 9.87064595e-06, -0.0304826, 0.0173064377, 0.00866776239, 0.0309479833, -0.0143396202, 0.00623177178, -0.00597726554, 0.00943855289, -0.011430975, -0.00993302278, 0.0196769834, 0.00734069292, 0.0174809564, 0.00875502173, 0.00507194968, -0.0137797054, 0.0087404782, 0.0152558433, 0.0112491846, 0.0284610912, 0.00491197407, 0.0177281909, 0.00611179043, -0.0110237645, 0.00184880744, 0.00876956433, 0.0058536483, -0.000566731323, -0.00535190664, -0.00104165846, 0.0170155726, -0.000177700029, -0.012187223, -0.00446840608, -0.0258723982, -0.011300086, -0.0179317966, 0.0114527894, 0.0423498712, -0.00649355, 0.0186298713, -0.0214221701, 0.0055955057, -0.0156339668, 0.0144050643, 0.0194588359, 0.0194442924, 0.0158812013, -0.0147904595, 0.000955308089, 0.00993302278, -0.00706073595, -0.027486695, -0.000248598255, -0.00497378316, 0.0237054564, -0.0114818765, 0.0108347023, -0.0132852364, -0.00510467216, 0.0219457261, -0.0195751805, -0.00716617424, -0.0147322873, -0.023094641, -0.0247816555, -0.0185135249, -0.00582819758, 0.00834781118, -0.0329840332, 0.00257778657, -0.0031104323, -0.00535917841, -0.00414845487, 0.0102675166, 0.015299473, 0.0102093443, -0.00591182103, 0.00886409543, 0.0101802573, 0.00784606952, 0.00888591073, 0.0295518339, 0.0254070144, -0.00463201711, 0.017888166, 0.00600271625, 0.014870448, -0.0170155726, -0.0103256898, 0.0211313069, -0.0166810788, 0.00906042941, -9.1520058e-05, 0.0303371679, 0.0440078, -0.00621359283, -0.00815874897, -0.00763519341, 0.0263377801, 0.0170592032, 0.0311225019, -0.0105220238, -0.0273558069, -0.0118381856, 0.00478835683, -0.00297227153, 0.0127834948, 0.00748248911, -0.00510467216, -0.0267740767, 0.0048319865, 0.0229782965, -0.00547188846, -0.00777335372, -0.0232109874, -0.0163902156, 0.00465746783, 0.00436296733, 0.0161720663, 0.0163320415, 0.00785334129, 0.00426843669]
|
26 Jul, 2024
|
How to dynamically update SCSS variables using ReactJS?
26 Jul, 2024
In React sometimes we might need to dynamically update the styling due to user interaction and change in the DOM. In the case of SCSS variables, we can dynamically update SCSS variables using ReactJS.
Prerequisite:React JSNPM & Node.jsApproach:To dynamically update SCSS variables using React JS we need to install the sass npm package that compiles and translates the SCSS file to CSS styling. We will apply a dark theme to the page when the switch button is clicked.
Steps to Create React Application and Install Modules:Step 1: Use this command in the terminal to Initialize the react application.
npx create-react-app react-scssStep 2: Move to the project directory.
cd react-scssStep 3: Install the dependencies required in this project by typing the given command in the terminal.
npm i sassProject Structure: The project structure will look like this.
Folder structureThe updated dependencies after installing required packages.
{ "dependencies": { "@testing-library/jest-dom": "^5.17.0", "@testing-library/react": "^13.4.0", "@testing-library/user-event": "^13.5.0", "react": "^18.2.0", "react-dom": "^18.2.0", "react-scripts": "5.0.1", "sass": "^1.69.5", "web-vitals": "^2.1.4" },}Example: This example implements dark and light theme based on the user interaction by updating the scss vaiables.
CSS
/* Filename - App.scss */
#root {
// Scss variables which we gonna assign using
// useState and JavaScript in reactJS
$background-color: #fff;
$text-color: #262833;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
grid-template-rows: auto;
}
.card {
background-color: var(--background-color);
margin: 20px 10px;
padding: 10px;
img {
background-color: var(--background-color);
width: 100%;
height: 150px;
object-fit: scale-down;
}
.cardBody {
h2 {
font-size: 2rem;
color: var(--text-color);
}
p {
font-size: 1rem;
color: var(--text-color);
}
button {
font-weight: bolder;
border-radius: 50px;
color: var(--background-color);
border: none;
border-style: none;
padding: 10px 20px;
background-color: var(--text-color);
}
}
}
JavaScript
// Filename - App.js
import React, { useState, useEffect } from "react";
// Import scss file
import "./App.scss";
export default function App() {
const [darkTheme, setDarkTheme] = useState(false);
// React useEffect hook that will fire up
// when "darkTheme" changes
useEffect(() => {
// Accessing scss variable "--background-color"
// and "--text-color" using plain JavaScript
// and changing the same according to the state of "darkTheme"
const root = document.documentElement;
root?.style.setProperty(
"--background-color",
darkTheme ? "#262833" : "#fff"
);
root?.style.setProperty(
"--text-color",
darkTheme ? "#fff" : "#262833"
);
}, [darkTheme]);
const URL =
"https://media.geeksforgeeks.org/" +
"wp-content/uploads/20190918121833/geeksforgeeks-62.png";
return (
<>
<div className="card">
<img
className="image"
src={URL}
alt="geeksforgeeks"
/>
<div className="cardBody">
<h2>
Dynamically changing scss variable
using react{" "}
</h2>
<p>
According to Wikipedia sass is a
preprocessor scripting language that
is interpreted or compiled into
Cascading Style Sheets (CSS).
</p>
<button
onClick={() =>
setDarkTheme(!darkTheme)
}
>
{darkTheme
? "Switch to Light"
: "Switch to Dark"}
</button>
</div>
</div>
</>
);
}
Step to Run Application: Run the application using the following command from the root directory of the project:
npm startOutput: Now open your browser and go to http://localhost:3000/, you will see the following output:
https://media.geeksforgeeks.org/wp-content/uploads/20240726123606/7.mp4
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?
|
https://www.geeksforgeeks.org/how-to-dynamically-update-scss-variables-using-reactjs?ref=asr10
|
CSS
|
How to dynamically update SCSS variables using ReactJS?
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props
|
GeeksforGeeks
|
[-0.0207374375, -0.00691247871, -0.0166079029, 0.0210452285, 0.0694582313, 0.0253543053, -0.00601154799, 0.0096954247, -0.0108624669, -0.0124334851, 0.00688682962, 0.0192754287, -0.0096826, -0.0423469469, 0.00483168149, 0.0164668337, -0.0466303788, -0.017903192, -0.0131452521, -0.0115036983, 0.0193908494, -0.0252388846, -0.0624303296, 0.0223661661, 0.00342417788, 0.0139660286, 0.0263418034, 0.0245078802, -0.0329849645, 0.0202501, 0.038345661, 0.00589612639, 0.00439564418, -0.0193652, -0.0424238965, -0.0102212355, -0.00488618622, 0.0109971259, -0.0104905525, -0.0125745554, -0.0301891938, 0.000809955935, -0.0151202464, 0.00877846312, 0.0152997905, 0.00455274573, 0.0322924331, -0.0692017376, 0.0207887348, -0.039371632, 0.00606605271, 0.00336326077, 0.0195062719, -0.0096826, -0.0195190962, -0.00537352264, -0.0229432732, -0.0138377827, -0.0416031182, 0.0170567669, 0.00721385796, -0.021917304, -0.0146072609, -0.0263931, -0.0129336454, 0.0107278079, -0.0117409546, -0.00279577076, -0.0234947335, 0.0291375741, -0.0295736101, 0.0191600062, -0.00104761252, -0.00788073894, 0.0155049851, -0.0129079958, -0.0136454124, -0.0110804858, -0.0425521433, 0.0434498675, -0.0135171665, 0.0189548116, -0.0160820931, 0.00889388472, -0.00060115481, -0.000857647567, 0.0130426548, -0.0558641143, 0.0317281485, -0.0261494331, -0.0231741183, -0.0195062719, 0.054786846, 0.00306989718, -0.0176595245, 0.0345752202, 0.0089836577, -0.0171593633, -0.0218147058, 0.0258801151, 0.00226354832, 0.0133119719, -0.0165437814, -0.0299327, -0.00457518874, -0.00171850121, -0.0105226142, 0.00558512891, -0.0107278079, -0.000412793, 0.0290349759, 0.0154023878, -0.0459122, 0.0258929394, -0.0275986176, 0.0372940414, 0.00420327438, -0.0372170955, 0.032600224, 0.00752806151, 0.0283424463, 0.027034333, 0.00315165427, 0.0710997805, -0.0105482629, 0.0141071, 0.000814364408, -0.0430138297, 0.019018935, -0.00620712386, 0.00273164758, -0.00223950204, -0.0110291867, -0.0265726466, 0.0223789904, -0.013363271, 0.0323693827, -0.00483809412, -0.0311382171, -0.0232638903, -0.0253671296, -0.025969889, -0.0137351854, 0.0290606245, 0.00475794, 0.0152741419, 0.0154536869, 0.00444694236, -0.0605835803, 0.0283424463, -0.0119205, -0.00667522289, 0.0137095358, -0.00113978959, 0.0484001786, 0.0316768512, -0.044091098, -0.000242465772, 0.0237255767, 0.0119269118, 0.0443732403, -0.00485412497, 0.00871434063, 0.0432703234, -0.0123950113, -0.0218403544, -0.0059858989, -0.0217634067, -0.0261109583, 0.0272651762, -0.000166720274, 0.0155049851, -0.0221481472, 0.047476802, -0.0115229357, 0.00638666889, 0.0165309552, -0.0412953272, 0.0240333676, -0.0147996303, -0.0705354959, 0.00473549683, 0.0128887594, 0.00895159598, 0.0265213475, -0.000823982875, -0.0139916781, -0.0323693827, -0.0343956724, -0.045117069, -0.0253030062, 0.0203911718, 0.0482462794, 0.023610156, -0.0124463094, 0.00681629404, -0.0525810085, -0.018659845, 0.0419622101, 0.00045968304, -0.00182751066, -0.045655705, -0.00583841559, 0.00232606847, -0.00378968, -0.0399872139, 0.0189932864, -0.0382174142, 0.0741264, -0.0382174142, -0.0232767146, 0.000436438393, -0.0265213475, -0.0372940414, -0.0224687625, -0.00531901792, -0.0130875409, 0.0239948947, 0.0262135565, 0.0194549728, 0.00143956544, -0.0130683044, 0.0206476636, -0.0119974473, -0.0167233255, 0.0133376215, -0.00346585782, -0.0406797454, -0.00408144062, 0.00857968163, 0.000426419138, -0.0215838626, 0.0092337383, -0.00559154153, 0.0251491107, 0.00327669457, 0.00575826177, -0.00558833499, -0.0159923211, 0.0172747858, -0.0112792673, 0.00448221, 0.0128631098, -0.034959957, 0.00423533609, -0.014030152, 0.0106252106, 0.0153767383, 0.00951588, 0.00988779403, -0.0422956496, -0.0011870804, -0.0312151648, 0.0242642108, -0.0451427177, -0.0216736346, -0.0130426548, -0.00414556358, 0.0305482838, 0.0225328859, 0.0370632, -0.00450465363, 0.00824624114, 0.0320872404, 0.00717538409, -0.015902549, 0.02307152, 0.0010724602, 0.00516191591, -0.0288554318, 0.030420037, -0.0570952818, -0.0161205679, 0.0371144973, 0.00211446197, 0.00340173463, 0.0126258545, 0.0231869426, 0.022584185, -0.0401667617, 0.00070014497, 0.0318050981, 0.0438602567, -0.0068996544, 0.0137095358, -0.0269060861, -0.00642193668, 0.00500802044, -0.0354216434, -0.0151074212, -0.024277037, -0.0447066799, 0.0295223128, 0.0118563762, 0.029394066, -0.00128647126, 0.00264027203, 0.0176210497, 0.00418724352, -0.000259698892, 0.0268804375, -0.052734904, 0.0269317366, 0.0305995811, -0.0185572486, 0.0507342592, 0.0338570401, 0.0344213247, -0.00129689137, -0.010022453, 0.0728439316, 0.0291119236, -0.015812777, -0.0331901573, -0.0133760953, 0.00355883641, 0.00150449015, -0.0135556404, 0.0107855191, 0.0127605125, -0.0235460326, -0.020981105, 0.00310516497, 0.0359089822, 0.0281116031, -0.00117585878, -0.0763322338, -0.00146441313, 0.0265469961, 0.019596044, 0.00392113253, -0.0251875855, -0.000902533764, 0.0492466, 0.0856685713, -0.0124847833, 0.0200833809, 0.0019974371, -0.0158384256, 0.019198481, 0.00700225122, 0.00709202373, 0.0224302877, -0.0162744634, 0.0103815431, -0.0514524393, -0.0357037857, 0.0300352983, 0.0263931, 0.0012479974, 0.000871273689, -0.0071304976, 0.0480410866, -0.0200449061, 0.0322154872, 0.00521962671, 0.00613017613, -0.0632511079, -0.0119397361, 0.00689324178, 0.0501956269, 0.00378326769, -0.00621674256, -0.00140189298, 0.0268804375, -0.0710484833, 0.00292722322, 0.00697018951, 0.0359089822, -0.0169926435, -0.0130362427, 0.00428663474, -0.00827830285, 0.0223789904, -0.0212247726, -0.0318563953, -0.0092145009, -0.00403014198, -0.0399872139, 0.0419365615, -0.00494389702, 0.0166976769, -0.0133247972, 0.0268291384, 0.0157486536, 0.00520359632, 0.0318307467, -0.0261366088, 0.011311329, -0.00166079041, -0.0135171665, 0.00691247871, 0.0127092144, -0.0167233255, 0.00904136803, -0.022045549, -0.0164027102, 0.00725233182, 0.00621674256, -0.0270856321, 0.0327797681, -0.0170182921, 0.0031244019, -0.0108111687, 0.0121385185, -0.00106043706, -0.0397563726, -0.0597115047, 0.0107470453, -0.0115293479, -0.0332927555, 0.00131452526, -0.00961206481, -0.0229176246, 0.0290093273, 0.0222892184, 0.00593460025, 0.0500673801, -0.0157614779, 0.00351715647, 0.0433729179, -0.00378006161, 0.0118884379, 0.0418083146, 0.0266239438, -0.00211125566, -0.0150689473, 0.00943252, 0.0264700484, 0.031086918, -0.0525297113, -0.0367554054, -0.0291119236, -0.0372940414, -0.0161333922, -0.00120952353, 0.0136582376, -0.00634498894, 0.0169156957, 0.00618147478, 0.0379609242, -0.0268291384, -0.0125424946, -0.0133760953, -0.0270086844, 0.0328567177, -0.0282911472, 0.0394742303, -0.0144148907, -0.0124014234, -0.0582238473, -0.014697033, -0.0153767383, -0.00706637464, 0.0281372517, -0.0192754287, 0.00227957917, 0.014697033, 0.00782302767, -0.0366015099, 0.00235011452, 0.00165437802, 0.029753156, -0.0240205433, 0.00447259191, -0.0169028696, -0.0392690375, -0.000563482463, -0.00664316164, 0.00791280065, -0.00122956198, -0.00793203712, 0.0165566057, 0.0295736101, 0.000447259197, 0.0301378947, -0.0201218538, -0.0130747166, 0.0178134199, -0.049836535, 0.0405002, 0.020532243, 0.0136838872, 0.0132222, -0.0118627883, -0.0208272096, 0.0188137405, 0.0117217172, -0.0240590181, -0.0273164753, 0.029086275, -0.00233729, 0.0162359886, -0.0309586711, 0.028727185, 0.0225072373, -0.0243539847, -0.0337544419, 0.0421161056, 0.0114652244, -0.0112343812, 0.0106957462, -0.00129528821, -0.00481565064, -0.0183264054, -0.00369349518, -0.0102789458, 0.00866945367, -0.0188137405, -0.0264444, -0.00442129327, 0.000660869526, -0.0128951715, 0.038345661, -0.0248284955, 0.00940687, -0.0312921107, -0.00386662781, 0.00683553098, -0.00675217109, 0.00128807442, -0.000931389222, 0.0275216699, -0.00565245841, -0.0285476409, -0.0024783609, 0.0421930514, -0.0147483312, 0.000714973488, 0.0433216207, -0.0286758859, -0.0171850119, 0.00591536332, 0.00885541085, 0.00260660728, 0.00804745872, 0.0120551577, 0.0126579162, -0.00935557205, 0.0124655459, -0.0247259, -0.0166976769, -0.0299327, 0.00308111892, -0.00997115485, 0.0261366088, 0.0175312776, -0.0220199, 0.0122795887, -0.00318211294, -0.0115485853, 0.0169798173, 0.0270599816, 0.00961206481, 0.00282141985, 0.00222988357, -0.0234947335, -0.0354729444, -0.0113305664, -0.0240718424, 0.0157358292, -0.0204168204, 0.0332414582, -0.0122731766, 0.0300865956, -0.0150945969, -0.0225457102, 0.0333440527, -0.014697033, -0.0390125439, 0.0036614337, 0.0083809, 0.00465213694, -0.0127925742, -0.0150176492, 0.0225457102, 0.0318820439, -0.0217121094, 0.0068996544, 0.0183135811, -0.0134786926, -0.0207374375, 0.00882335, 0.0187496189, -0.0109458268, 0.0146072609, -0.00291760475, -0.0172619596, 0.0256620962, -0.032908015, 0.0140942754, -0.00462969346, 0.0157486536, 0.00186277844, -0.0212504212, -0.000523405441, -0.0177364722, 0.0193908494, 0.00771401869, -0.0176595245, -0.0213914923, 0.0118948501, 0.00374158751, 0.0192113053, 0.00692530349, -0.00694454042, 0.00879770052, 0.00348188868, -0.00410708971, 0.00201026164, 0.00224751746, -0.016479658, 0.0475537516, -0.0131580764, -0.0135684647, -0.00504008215, 0.00270920433, 0.0298301037, 7.068579e-05, -0.0246746, 0.0155306347, 0.0220840238, 0.0415774696, 0.0111894952, 0.00623277295, 0.020262925, -0.0194934476, -0.0126835648, 0.00257133949, -0.0139532043, -0.0609426722, -0.00833601318, -0.0272908248, 0.0260724854, -0.0060436097, 0.0391664393, 0.0177108217, 0.0161975157, -0.00503366953, 0.0392946862, -0.0201988015, 0.0352934, -0.00192209228, 0.0496056937, -0.0121128689, -0.00528054405, 0.0103879552, 0.0223789904, 0.00528375, -0.0442449935, 0.0201346781, -0.0154408617, 0.00279897684, 0.0120295091, -0.0144918384, 0.00461686915, -0.0200192574, 0.0116447695, -0.0147226825, -0.013850607, -0.00386342173, -0.0358320326, -0.00423854217, -0.0197627638, 0.0256236233, -0.0194677971, 0.0253927801, 0.0153254401, -0.0067649954, 0.0185316, -0.025072163, -0.0171337146, -0.00432831468, 0.0340365842, 0.0215069149, -0.00536069786, -0.0329593159, 0.0379352719, -0.00361654744, -0.00522603933, 0.00540237781, -0.0120615698, -0.00876563881, 0.0302404929, -0.0124142477, -0.00566528318, -0.0303174406, -0.00799616054, -0.00881693698, 0.0154921608, 0.0285476409, -0.0111959074, 0.0322411358, 0.0276755653, -0.00784867723, -0.0365502127, 0.0117281293, -0.0177108217, 0.019596044, 0.0112664429, 0.0161077436, -0.0296505596, -0.013850607, 0.00651812134, 0.0185187738, 0.0447579809, -0.00816288125, 0.0245078802, -0.0491183549, 0.00333440537, 0.0297018569, 0.0170054678, 0.00739981513, 0.0300865956, 0.0294710137, 0.00914396532, 0.00381532917, -0.0348060615, -0.0196345188, 0.000373116753, -0.000366303662, 0.0181468595, 0.00795127451, -0.00404617283, -0.00416480051, -0.0416031182, 0.0246746, -0.00614620699, -0.029394066, 0.000426819926, -0.00122555427, -0.00857326947, 0.0219301283, -0.00233087759, 0.00675858324, -0.0028631, -0.0168259218, 0.0127156265, -0.0245207045, 0.0135941142, 0.0199294854, -0.0172876101, -0.00984290801, -0.00395319425, -0.0244950559, 0.00759859709, -0.0102404719, 0.00163514109, 0.0329336673, 0.0173004344, -0.00872716494, -0.020262925, 0.0425521433, -0.0358833335, 0.00709202373, -0.00980443414, -0.0317281485, -0.00688682962, 0.00429945905, 0.0327028222, 0.0259955376, 0.027034333, -0.0120679829, 0.00939404592, 0.0225457102, 0.00770119391, -0.0291888714, -0.0207759105, 0.00935557205, -0.0105610881, -0.0164540075, 0.00954152923, 0.0402950086, 0.0232382398, -0.00652132742, -0.00625842251, 0.00393395731, -0.0131324278, -0.00766272, 0.01656943, 0.00964412652, 0.0317281485, 0.0277781617, 0.0149535257, -0.00136021292, 0.0237255767, -0.00809234567, -0.0114075141, 0.00848349649, 0.00354280579, -0.00626483466, 0.0366784595, 0.0268291384, 0.03731969, -0.00121192809, -0.0209169816, -0.00963771436, 0.00948381796, 0.0282398481, -0.00462969346, -0.00313882972, -0.0232767146, 0.00216095126, -0.0280090049, 0.032112889, -0.0104969647, -0.0438859053, -0.0221609715, -0.00386342173, -0.00472267205, 0.00345303328, -0.0442449935, -0.037370991, 0.0132222, 0.00823982898, -0.0146457348, 0.0240205433, 0.0211606491, -0.00777172949, 0.0308047757, -0.00339852856, 0.00800257269, 0.0289580282, 0.00512023596, -0.0126643283, 0.0163385868, -0.00980443414, 7.95027227e-05, -0.00533825485, -0.0149150519, 0.0060436097, 0.0157743022, -0.0196088683, 0.036524564, -0.0204039961, 0.0085989181, 0.034703467, 0.0114524, 0.014030152, -0.00191568, 0.00650209049, 0.0188650396, -0.0384995565, -0.0284963418, -0.0334723, 0.020622015, -0.00117345422, 0.0161975157, 0.0271369293, 0.0062359795, 0.0254056044, -0.0136325881, 0.00915037747, 0.00614620699, -0.0173517335, 0.0250849891, -0.00289355847, 0.0170054678, 0.0356268398, -0.051401142, -0.0217249338, -0.0144405402, 0.00943893194, 0.00448221, 0.023648629, -0.0260596611, 0.00144597772, 0.021288896, -0.026726542, 0.0180827361, -0.0375248864, -0.00496313395, -0.0033247869, -0.00220102817, 0.0217634067, -0.00624880381, -0.0229048, -0.00455915835, 0.00124158512, 0.0174286813, 0.0168259218, -0.0149407014, -0.00891312212, -0.00358448573, 0.00823982898, 0.043295972, 0.00623277295, -0.0314973071, -0.000957038486, -0.0228150282, -0.0234947335, 0.0120038595, 0.00630330853, -0.0206604879, 0.0164540075, 0.0479128398, 0.0156204067, 0.00534146093, -0.0164540075, 0.00647323485, 0.00904778112, 0.000432831468, 0.00513947289, -0.0259570628, 0.0174158551, -0.00248156697, -0.00351395039, -0.00773325562, -0.00892594643, 0.0354729444, 0.0218788292, 0.0525810085, -0.0287015364, 0.0154280374, 0.000985893887, -0.000132254063, -0.0172747858, 0.00555306766, 0.0358320326, 0.0129079958, -0.0394998789, 0.0109843006, -0.0279320572, 0.038396962, 0.0210452285, 0.0206989627, -0.0152100185, -0.00891953427, -0.00781020336, 0.00542802736, 0.014209697, 0.00789356325, 0.00268676132, -0.00158304104, -0.0169926435, 0.000350272865, -0.0184418261, 0.008419374, -0.0238538235, -0.0119653856, 0.0206989627, 0.0279833563, -0.0363193713, -0.0298814029, -0.00136502215, -0.00445335498, -0.00798974838, 0.0197755881, -0.0203270484, 0.0231099948, -0.00307310349, 0.0150945969, 0.00950946752, -0.00915037747, 0.0075537106, -0.0033247869, -0.00657903822, 0.0120102717, 0.01269639, 0.0133760953, 0.0115998834, -0.0258416422, 0.00343059027, 0.014697033, -0.00520680239, -0.0128631098, 0.0030266142, -0.00188041222, 0.00313081429, -0.0260211863, 0.00949664321, -0.0119525613, 0.00368067063, -0.0252260584, -0.0425521433, -0.0109073529, 0.00617826823, -0.0307278279, 0.0193523765, -0.00990703143, -0.00667522289, 0.00900930725, -0.000518996967, -0.0100160409, 0.0230586957, -0.0381661169, 0.043116428, -0.0226226579, -0.000632815645, 0.0111638457, -0.0127541, -0.0062840716, 0.015363914, -0.00937480945, -0.0174030308, 0.00277813687, 0.0458865464, 0.0157486536, -0.0176979974, -0.0463738851, -0.0125296693, 0.015941022, 0.00356845511, 0.0138121331, 0.00161349948, 0.0208015591, 0.0229304489, -0.00964412652, -0.0186213721, 0.00131773134, -0.0262520295, -0.0218018815, 0.0260211863, 0.000589532487, -0.0124527216, 0.0183648784, 0.0392690375, 0.0276499148, -0.00924656261, 0.0337031446, 0.0209426302, -0.0265469961, 0.0285476409, -0.00831677672, 0.00720103318, 0.00545047037, -0.00368387671, 0.0218916535, -0.0170311164, -0.00101555092, -0.00389227713, -0.000938603072, -0.00849632174, -0.0195319206, 0.00346265174, -0.00118307269, -0.0155562833, -0.0470664129, -0.00518435938, -0.0206348393, 0.0116768312, -0.0146842087, -0.00111814798, -0.012382186, 0.00442129327, 0.0179288406, -0.0125489067, 0.000618788705, 0.00141391612, -0.00768836914, 0.0230843443, -0.00886823609, -0.0151587203, -0.0138634313, -0.0216095112, -0.00340494094, -0.0179544911, 0.0119333239, 0.000124038284, 0.00707919896, -0.00585444644, -0.0109843006, -0.0125489067, 0.014517488, -0.0130618922, 0.0256492719, -0.0218531806, -0.00643476099, -0.00344341481, 0.0146713834, 0.013004181, 0.00929786079, -0.0161975157, -0.00137143454, 0.0101058129, -0.0120743951, -0.0241872631, 0.01269639, -0.00915037747, -0.0271369293, 0.0223276913, -0.0108624669, -0.00604681578, 0.0329849645, -0.00852838345, -0.0231228191, -0.00427381, -0.0372683927, 0.0215966869, -0.008419374, -0.0180057883, 0.0156973545, -0.00268195197, -0.0154152131, 0.00860533118, -0.0061013205, 0.00965695083, 0.0706893951, 0.00149807776, -0.0166207291, -0.00445656106, -0.00666881073, -0.0449631736, 0.00495672179, 0.0127348639, 0.00722027, -0.0331645086, 0.0227509048, 0.0168643966, -0.0251619369, -0.0330875628, -0.0116511816, -0.0059281881, 1.23549835e-05, 0.0121321054, 0.00121353124, -0.0282654986, 0.00426098518, 0.0187496189, 0.007438289, 0.00605643447, 0.00579994172, -0.0159153733, -0.0099262679, -0.0110933101, -0.0398076698, 0.0111061353, 0.00794486236, 0.00808593351, 0.0196601674, -0.00630330853, 0.0193652, 0.0211478248, -9.79381366e-05, 0.015941022, -0.0238666479, 0.000866464456, -0.0146200852, 0.0085347956, 0.00219782209, -0.0265213475, 0.00284065679, -0.0114331627, -0.0134402188, 0.0160307959, -0.000822379778, 0.0254825521, 0.0187111441, -0.00567169534, -0.0166207291, -0.00284546614, -0.0143379429, 0.0220199, 0.0117024807, -0.0096954247, 0.0236871038, -0.0311638657, 0.002037514, -0.0160564445, 0.0145559618, -0.0239435956, -0.00149006245, 0.0150432978, -0.00888747256, 0.00630330853, -0.0193523765, 0.0305226333, 0.00714973453, 0.00187239691, -0.0305995811, -0.00686759269, -0.0305995811, -0.0330619104, -0.0263418034, 0.00265149353, 0.0209682807, 0.00764348311, 0.00934274774, -0.0425264947, 0.00666881073, 0.0256236233, -0.0207246114, 0.0239692442, -0.0205835402, -0.00788073894, -0.0100416904, -0.0068227062, -0.00922732614, 0.00593139417, -0.0179160163, -0.0135941142, 0.0110933101, -0.0114203384, 0.00645079184, -0.000390349858, 0.00153013936, -0.0131709017, 0.00961206481, 0.00732927956, 0.0308560748, 0.00545367645, -0.0262392052, -0.020981105, -0.0158640742, -0.00496313395, 0.00652132742, 0.0261366088, 0.00349791953, 0.0489901118, 0.00956076663, -0.020622015, -0.0271369293, 0.0185828973, 0.0247259, -0.00304745417, 0.0195190962, -0.020262925, 0.00314684515, 0.0464251824, -0.00077108125, 0.00604040362, 0.0157871265, -0.0225200616, -0.005745437, -0.0114588123, -0.00377364922, -0.00870792754, 0.013940379, 0.00163754576, 0.0104520787, 0.00970825, 0.0109265903, -0.0073228674, -0.0098300837, 0.0217377581, 0.00552421203, 0.00134578522, 0.0118179023, -0.0029127954, -0.028727185, 0.0145944357, 0.0315486044, -0.00112215569, -0.0353959948, -0.01153576, 0.0157358292, -0.0092337383, 0.0123052383, -0.0193780251, 0.000131853289, 0.0135941142, 0.0200833809, -0.033677496, 0.0224687625, -0.0131131904, -0.0180057883, 0.00378326769, 0.0139147304, 0.0220968481, 0.021135, -0.00310676801, 0.0403463058, 0.0218916535, -0.0231099948, -0.0292914696, 0.0176210497, 0.00973389857, 0.0138890808, -0.032651525, -0.00900930725, -0.0329593159, 0.0307278279, -0.00850273389, 0.00878487621, -0.00620712386, 0.0183777027, 0.0109009407, -0.0228406768, -0.00344020873, -0.00541520258, 0.00420327438, -0.0262392052, -0.0248797946, -0.0120808072, -0.0367554054, 0.00431549, -0.0137736592, -0.00558192283, 0.0338057391, 0.0247130729, 0.0241616145, -0.000407582964, -0.0112215569, -0.0242642108, -0.00762424618, -0.00325906067, 0.0101058129, -0.0184418261, -0.0174671542, -0.00172972283, 0.0503495224, 0.0015133071, 0.00102116168, -0.0124527216, 0.0332414582, 0.00845784787, 0.00303943874, 0.010112226, -0.00225232681, 0.00686759269, -0.0053126053, 0.0401924103, -0.00725233182, -0.0134273944, 0.00341455941, -0.00230362522, 0.0187367927, 0.019596044, 0.0101827607, -0.0231741183, -0.0240590181, -0.0103174197, 0.00547611946, 0.00523565756, 0.0246233, -0.0104264291, 0.0152100185, -0.039910268, 0.0469125174, 0.0386534519, -0.00641552405, 0.0271882284, 0.0245207045, 0.0171593633, -0.028727185, 0.0080538718, 0.0160949174, 0.0062263608, 0.0208656825, 0.0133247972, 0.00164796575, 0.0256236233, -3.49170768e-05, 0.015941022, -0.00556589197, -0.00310516497, 0.0112985047, -0.00399808027, -0.00485733105, 0.0212119482, -0.0166592021, -0.00281981681, -0.0081692934, -0.0200064331, -0.0165053066, 0.00403014198, -0.0213530194, -0.00379609223, 0.00354921794, -0.014030152, 0.00607887749, -0.0145687871, 0.00509779295, 0.00457518874, -0.0155049851, -0.0223661661, -0.0048060324, 0.00988779403, 0.0277525131, 0.0240718424, -0.012959295, 0.0108175809, 0.0148381041, 0.0257903431, -0.00434755161, -0.0347804129, -0.00974672381, -0.0215966869, -0.0242513865, 0.00636743195, -0.0109073529, -0.0297018569, 0.0250208657, -0.00920808874, 0.0181340352, -0.0178134199, 0.017992964, 0.0443219431, 0.0163514111, 0.0229176246, 0.000386943313, 0.00887464825, 0.000688522647, 0.00695095258, 0.0294453651, -0.00965053868, 0.0209554546, 0.0110804858, 0.00825265329, -0.013671062, 0.0271112807, -0.00788073894, 0.0144020664, -0.0179801397, 0.011490874, 0.000981886173, -0.0321385376, 0.0091183167, -0.00681629404, -0.00582559081, -0.0228663255, -0.0171080641, 0.00354280579, -0.00115020957, -0.0112920925, 0.00824624114, -0.00900930725, -0.0316768512, -0.0196088683, 0.0248926189, 0.0311638657, 0.0193908494, -0.0168772209, 0.0140173277, -0.0157743022, 0.0153126158, 0.0170824155, -0.0103494814, -0.0110356, -0.00200224621, 0.0286245886, 0.0181853343, 0.00123437122, -0.0300609469, -0.0176210497, 0.0293427669, 0.0147739807, -0.0111510213, 0.00895159598, -0.00807952, -0.00201507099, -0.00140990841, -0.0231997669, 0.00326547306, 0.0219301283, -0.00130250212, 0.000170928353, -0.00137945, -0.024007719, -0.00641552405, -0.0099455053, -0.00984290801, 0.0194165, 0.00563963363, 0.0112664429, -0.0120615698, 0.0067649954, 0.00577749871, -0.0200449061, -0.0068227062, -0.0200577304, 0.00527733797, -0.0124014234, -0.0445014872, -0.014209697, 0.0406284481, 0.0134145692, 0.0102084102, 0.00102997862, -0.00873998925, -0.00648926571, 0.00616223784, 0.0597115047, 0.0165437814, -0.0162872877, -0.000240061156, -0.0141327493, -0.00726515613, -0.00447900407, -0.031086918, -0.0128182238, -0.0344213247, -0.00318211294, -0.00512344204, 0.0103558935, -0.00201827707, -0.011670419, 0.0354729444, 0.0078999754, 0.0179544911, 0.0102917701, -0.0121449307, -0.0173132587, -0.00913114101, 0.010330244, -0.0206476636, 0.0029015739, 0.00178903679, -0.00339211617, 0.00883617438, 0.00285668764, -0.0078037912, 0.00548253208, -0.0323180817, -0.0134915169, 0.0159923211, -0.0203911718, -0.0156588815, 0.00235011452, -0.0161975157, 0.00899648201, -0.0205065925, 0.00630010245, -0.0123950113, 0.0203398727, 0.0141583979, -0.00954152923, 0.0140045024, 0.00455274573, -0.0116896555, 0.00708561158, 0.00976596, 0.00590895116, 0.029086275, -0.0144918384, 0.00777172949, 0.0185828973, -0.0039499877, -0.0127348639, -0.00660468778, 0.00120551581, 0.00464572432, -0.0174286813, -0.00319654052, -0.00077027973, -0.0132863233, 0.0130618922, 0.000978680095, 0.00694454042, 0.00925297476, -0.00705996202, -0.000833601342, 0.0117794285, 0.0184161775, 0.0248156711, 0.0102981832, -0.019685816, 0.023251066, 0.00324463286, -0.0142609952, -0.00530939922, 0.00510420511, 0.0304969847, -0.0129849445, 0.000781902054, 0.0262905043, 0.0119910352, 0.0145431375, -0.00984932, -0.00314844819, 0.0109650642, 0.0116062956, -0.00324623613, -0.00970183685, -0.0171465389, -0.00244309311, 0.00548894424, 0.00154536869, -0.0314716585, -0.00672652153, -0.00667522289, 0.018659845, 0.00168483658, -0.00502405129, 0.00686759269, 0.00527413143, 0.010958652, 0.00126162358, 0.00512023596, 0.00775890471, -0.00933633465, 0.0123244757, 0.0616095513, -0.00640590582, 0.0138634313, 0.00734851649, 0.000523405441, 0.0308304261, -0.00727798091, 0.00947099365, 0.0123950113, 0.0182879306, -0.00813723169, -0.0135171665, 0.0233023632, -0.000268515811, 0.00261622574, 0.0113498028, -0.0106572723, -0.0165309552, -0.0209682807, 0.0203270484, 0.00465534301, 0.0060436097, 0.00277012144, 0.00646041054, 0.020262925, 0.0174799785, -0.0351908021, -0.0116575947, 0.0129015837, 0.00703431293, 0.00503687607, -0.0167105012, -0.00594421895, 0.0100865765, 0.0256620962, 0.007496, 0.00431869645, 0.0150945969, -0.0311638657, -0.0196601674, -0.0171337146, 0.0117281293, 0.00421289308, -0.00540237781, -0.0252517089, 0.0172491353, 0.0105931498, -0.00466496125, -0.0170182921, -0.00576467393, 0.00792562496, 0.0263161529, -0.0166592021, 0.00373517536, 4.93948864e-05, -2.78535063e-05, 0.0179673154, -0.0271625798, -0.00934916, 0.0117986649, 0.0122731766, 0.000767073536, 0.00206316332, 0.00232767151, -0.0212119482, 0.0107983435, 0.0102340598, -0.022045549, 0.0432446748, 0.0327797681, 0.00998397917, -0.0135556404, -0.00323180831, 0.0034498272, -0.00887464825, -0.0298301037, 0.0276755653, 0.0175441019, -0.00650850264, -0.0132093756, 0.00522283325, -0.00581917865, -0.00977237243, -0.00453350879, 0.0192626026, -0.0150304735, 0.0274190716, -0.00199423102, 0.0145431375, 0.0184674766, 0.0169028696, -0.0112600308, 0.00820135511, -0.017903192, 0.0133889206, -0.023841, -0.00818853, -0.0105739124, -0.0108304052, 0.0188906882, -0.000921770697, -0.0121256933, 0.0228022039, -0.000537031621, 0.00547291338, 0.0102661215, -0.0185957216, -0.00104761252, 0.000468900747, -0.0248797946, 0.00743187685, -0.0332671069, -0.00323982374, 0.0218403544, -0.00850273389, -0.0112536186, 0.0149535257, 0.0085989181, -0.00481244456, -0.0174415056, -0.0323180817, -0.00423854217, 0.022045549, -0.0109330025, 0.00968901254, 0.0161077436, -0.0380122215, -0.00497595873, -0.0102532962, 0.0211221762, 0.00796409883, 0.000653655676, 0.00323661743, 0.00537031656, -0.00384418457, -0.00049455004, 0.0124142477, -0.0180699117, -0.0188137405, 0.0177492965, 0.021686459, 0.0254184287, -0.0032382207, -0.00886182394, 0.00978519768, 0.0224559382, 0.00943252, -0.00887464825, -0.0125489067, -0.0131580764, 0.015812777, -0.00795127451, 0.00111093407, -0.0112472055, -0.00386662781, 0.00373838143, -0.00804104656, -0.00518756546, -0.00752806151, 0.00993909314, -0.014389242, -0.00393716339, 0.00823982898, 0.00875922665, -0.00207598787, 0.00954794139, 0.00686118053, 0.00470664166, -0.000480122311, 0.0129464697, -0.00835525058, 0.0119269118, 0.00214492041, 0.0135043422, -0.010509789, 0.029394066, 0.0144918384, -0.00754729845, 0.0121834045, -0.00797692407, -0.00241423771, 4.82426731e-05, -0.0110227745, -0.0199294854, -0.0187624432, 0.00114940805, 0.0107726939, -0.0218660049, -0.00140349614, -0.00621994864, 0.0229048, 0.00405258499, 0.00876563881, -0.0109265903, -0.0166976769, -0.00466175517, 0.00779737858, 0.000985893887, -0.0235973299, 0.00775890471, 0.00165918726, 0.0183392297, -0.0135941142, -0.0179288406, 0.0235332064, -0.00826547761, -0.00238377927, -0.0294966623, -0.0200962052, -0.000505771604, -0.0312151648, -0.0064668227, 0.0224559382, 0.0188265666, 0.0153895635, 0.0307021793, 0.0205194186, 0.00095784, -0.00241904706, -0.00659827515, 0.0241231397, 0.00525168842, -0.00368387671, 0.00977237243, 0.0105610881, 0.0288810804, -0.00936198421, -0.0168772209, -0.0155306347, -0.00854762, -0.00279416749, -0.0177621208, 0.0144020664, -0.000768275873, 0.0225585345, 0.000196377237, -0.00519718369, -0.0107149836, -0.0212760717, -0.0218403544, 0.0176467, 0.010330244, -0.0182879306, 0.00297531555, 0.000338049402, -0.00213049259, 0.0205194186, 0.016171867, -0.00975954812, -2.29816469e-05, -0.0139532043, -0.012561731, 0.0139147304, 0.00863098, 0.00534787308, 0.0157358292, 0.000634017924, 0.00918243919, -0.00204873551, 0.00990061928, -0.00572940614, 0.0229432732, 0.0140942754, 0.00502725737, 0.0181212109, 0.00620391779, -0.000815566687, -0.0163898841, -0.0127669256, 0.0174928028, 0.000359290192, 0.0101250503, 0.0371401459, 0.00389548321, -0.0092145009, 0.0133889206, -0.00160628569, -0.0303430893, -0.0118371388, 0.00829753932, -0.00907984283, -0.00716255931, -0.0176210497, -0.00529016228, -0.0118627883, -0.00809875783, 0.013850607, -0.00936839636, -0.00809234567, -0.00020900149, 0.00670087244, -0.013363271, 0.000840815192, -0.0217505824, -0.0179160163, 0.0350882038, -0.0234049615, 0.000557070132, -0.00441167504, 0.0123501243, 0.0164924823, -0.00824624114, -0.00246233, 0.0262905043, -0.00951588, -0.000407182204, 0.0329336673, 0.0269573852, -0.0162231643, 0.00107807096, 0.0216992851, -0.00283745071, -0.00784867723, 0.0214299671, -0.00916961487, -0.0119525613, -0.0231869426, -0.00592177594, -0.0396281257, 0.0184546523, -0.000413594506, -0.00525168842, 0.00473229075, -0.00559795368, -0.00672652153, 0.00620071171, -0.000667281856, -0.0152869662, -0.0120295091, -0.0204039961, -0.0199294854, -0.00476755854, 0.00224431138, 0.0300609469, -0.0220583733, 0.0136325881, -0.0056781075, -0.00305066025, 0.000158504481, 0.0163898841, -0.00902854372, 0.0048733619, -0.0170952398, -0.0157614779, -0.0143122943, -0.0198781863, -0.00103959709, -0.00418403745, -0.00732927956, -0.0120487455, 0.00902854372, -0.0225457102, -0.00377044291, -0.00280218292, 0.00391151384, 0.00881693698, 0.00802822225, 0.0357294381, 0.0144405402, -0.00168643962, 0.0124014234, 0.00836807489, 0.000882495253, -0.00772043085, -0.00331516843, 0.0171465389, -0.0058031478, -0.00115341577, -0.00538634695, 0.0222379193, 0.0128823472, 0.0194293242, 0.00246553635, 0.00326066371, 0.00752164889, -0.00405899715, -0.00192369544, 0.00943252, 0.0152869662, -0.0235203821, -0.00465534301, -0.0363193713, 0.0113626271, -0.00677140802, -0.0213145446, 0.0131260147, 0.00173773814, -0.0201218538, 0.0105162021, 0.0188650396, -0.021135, -0.000298373168, -0.00103238318, -0.00773325562, -0.0191471819, -0.00776531734, -0.0202372763, 0.00180667057, -0.0140173277, 0.00376082445, 0.0110356, 0.0134017449, 0.0278294608, 0.00761783402, -0.0126130292, 0.00519397762, 0.0122603523, 0.0139275547, -0.00233889301, 0.0152997905, 0.00772684347, 0.0245848279, 0.0119974473, -0.0019798032, 0.00143716077, -0.0210580528, 0.00532863615, 0.00116543879, -0.0066111, -0.010157112, 0.00150449015, 0.0142994691, -0.0124527216, 0.00850273389, -0.00252645323, -0.00164075184, 0.0110997222, 0.0200833809, 0.00570375705, 0.00588650815, -0.0117281293, 0.00849632174, -0.0102084102, -0.000808753597, -0.0103943674, 0.0121064568, 0.0237255767, -0.0212119482, -0.0338057391, 0.00326226675, 0.0101827607, 0.0114267506, -0.0117601911, -0.000662071863, -0.00643796753, -0.0181340352, 0.0197627638, 0.0187496189, 0.00291920779, -0.00821417943, -0.0211863, -0.00777814165, 0.0100865765, 0.0115421722, -0.0135171665, -0.0116319451, -0.0141968718, -0.00281661074, 0.00212728651, -0.00490862969, -0.0124463094, 0.00171689817, -0.00540558435, -0.0358833335, -0.0161333922, 0.000117325384, 0.0228278525, -0.0233664867, 0.00536069786, -0.000661671045, -0.0100737521, 0.00731645478, -0.00529016228, 0.00940045808, -0.00782944076, -0.0344469734, 0.0220199, -0.00728439353, -4.70403647e-05, 0.0259185899, 0.00305226329, -0.0108175809, 0.024943918, -0.0214812662, -0.0163385868, 0.000123437116, 0.00888747256, 0.0125360815, -0.0107983435, 0.0273421239, 0.014209697, -0.00915679056, -0.013183726, 0.0331901573, -0.0292658191, 0.00787432678, -0.00564604625, 0.000691728783, -0.0115614096, 0.00993909314, -0.0134658683, -0.0133504458, -0.00947099365, 0.0131580764, -0.010509789, 0.018262282, -0.0032205868, 0.013850607, -0.0200449061, -0.0246874243, 0.00581597257, 0.0284963418, -0.0176723488, -0.00807310827, -0.0245591775, 0.0279064085, -0.000635621, -0.00631292723, 0.0247130729, 0.008419374, 0.00940045808, -0.0104071926, -0.00482206326, 0.00285829068, 0.00127765443, -0.00211766805, -0.0025360717, 0.00579352956, 0.014030152, -0.00799616054, -0.00643155491, 0.0139788538, 0.0144918384, 0.00772043085, -0.00466496125, -0.00722027, -0.00909266714, 0.0350369066, 0.00931068603, -0.0055049751, 0.0236999281, 0.0119910352, -0.0235203821, 0.0115998834, -0.00781661551, 0.0239564199, 0.00304745417, 0.00987497, 0.00621674256, 0.00160869025, 0.0220968481, 0.00626162859, 0.00147563475, 0.0234690849, 0.0120936316, 0.000118527692, 0.0196986403, -0.00596345589, 0.000462889206, -0.00161189644, -0.00526771927, -0.00276531209, -0.00165758422, 0.008150056, -0.00894518383, 0.0110740736, -0.0094645815, -0.00318050967, -0.0127284518, 0.00711126067, 0.0276499148, 0.00377364922, 0.024943918, 0.0319076963, -0.00732927956, -0.00869510323, -0.0259057656, -0.0231741183, -0.019993607, 0.0121769924, -0.00161269796, -0.00342738396, -0.0353190489, -0.00937480945, -0.0045655705, -0.0269317366, 0.032600224, -0.00924656261, 0.00744470116, 0.000327228598, 0.0260211863, 0.00395319425, -0.00965053868, 0.0116896555, 0.0072459192, 0.000567890937, -0.00691247871, 0.0159794968, -0.0118756127, 0.00841296092, -0.0150817716, 0.00295287254, 0.00702790078, 0.0185828973, 0.00242065, 0.00304264482, 0.0150817716, -0.0100545147, -0.0165309552, -0.00490221707, -0.0122860018, 0.00779096643, -0.0165950786, -0.00982367154, 7.79998372e-05, 0.00382494763, 0.00515871, 0.0170054678, 0.0216736346, 0.024943918, 0.00629048422, -0.00668804767, -0.00248477329, 0.000496553897, 0.00571658136, -0.0194934476, 0.00434113946, -0.0195062719, 0.0156075824, -0.0109778885, -0.00822059158, 0.0153767383, -0.00476755854, -0.0142609952, 0.0080538718, 2.16415738e-05, 0.00204232335, 0.0123373, -0.00571337529, 0.0267008916, -0.000728599669, -0.00587688945, -0.0205578916, 0.0121834045, 0.000336646684, -0.0143507682, -0.00207759114, -0.0227380805, 0.0262905043, -0.0104969647, 0.00139708375, 0.0159794968, -0.00175857823, -0.00672652153, 0.0204809438, -0.00798333623, -0.0159281977, 0.00846426, -0.0129208211, -0.00200224621, 0.0124591338, 0.00211606501, 0.0166976769, -0.000623597938, 0.000464091514, 0.0140558016, 0.0146072609, -0.000512584695, -0.00894518383, 0.00588330161, -0.0170054678, -0.000957038486, 0.00253286562, 0.00179224287, 0.0295992605, 0.0085347956, -0.0046809921, 0.00715614716, -0.00940045808, 0.0159281977, -0.00775890471, 0.0141583979, 0.0127028022, 0.00653094612, -1.05890913e-05, -0.00549856294, 0.00538314087, -0.00814364385, 0.0328054205, 0.0245976523, 0.0132478494, 0.00130650983, -0.00836807489, 0.00605643447, 0.0206476636, -0.0032093653, -0.00645399792, 0.0142481709, 0.00523245148, 0.00489901099, -0.00102757395, 0.00585124036, 0.00430266559, 0.00867586676, -0.00591536332, -0.0118884379, 0.00585124036, -0.00975313596, 0.00781020336, 0.01153576, -0.0268547889, -0.00432190252, -0.0068227062, 0.00192690163, -0.0168259218, -0.0105482629, 0.00940687, 0.0163129363, 0.00388907082, 0.00274447212, 0.0291888714, 0.00716255931, 0.00183071685, 0.0259827133, -0.0126322666, -0.0115934713, 0.00854120776, -0.00536390394, 0.0133889206, -0.00812440738, -0.0076691322, 0.011805078, -0.0119012622, -0.0097146621, 0.0104841404, -0.0245463531, 0.00459442567, 0.0173517335, -0.0105033768, 0.0174286813, 0.00343379634, -0.014517488, -0.012516845, 0.00144197, 0.0204424709, -0.0124527216, 0.0103174197, -0.0174928028, -0.00775249256, 0.0138377827, 0.0200064331, 0.00883617438, 0.00382174156, -0.0157614779, -0.0316512026, -0.0141968718, -0.0208400339, -0.0136967115, -0.00924656261, 0.00936839636, -0.0118563762, 0.00280057988, 0.00251362869, -0.000504168507, 0.00748317502, 0.00616223784, 0.0029127954, -0.0226867814, -0.00166559964, 0.00461686915, 0.00643155491, 0.0010580325, 0.00785508938, 0.00999039132, 0.0150304735, -0.00458801351, 0.00235652691, 0.0135299908, 0.00514909159, 0.00535107963, -0.0194677971, -0.0150048239, 0.00142674078, 0.0252260584, 0.0158769, 0.0185444243, -0.0279320572, 0.00931068603, 0.000446858408, 0.0204296447, -0.00595383719, 0.0127476882, -0.00533184269, 0.0148381041, -0.0297275074, 0.00502725737, 0.0162488148, -0.01269639, -0.0147098573, 0.00378968, -0.0212375969, -0.00294646015, 0.0160820931, 0.00594101287, 0.0170182921, 0.00460404437, 0.00950305536, 0.00288874935, -0.00180827372, 0.031317763, -0.00362937199, -0.00231324369, -0.0127861621, -0.0179288406, 0.0196473431, 0.00145479466, -0.00593460025, 0.00393716339, -0.0159666725, -0.0055626859, 0.00975313596, 0.0147355068, 0.0110291867, -0.0193010774, -0.0046809921, -0.0108047556, 0.000815967447, 0.0200577304, 0.0171465389, -0.0233921371, -0.0207374375, 0.00952229276, 0.00618147478, 0.00878487621, -0.0292401705, 0.00378326769, 0.0190958828, -0.0107855191, 0.00575505523, 0.0194934476, 0.0108817033, 0.00790638849, 0.00147162704, -0.0403976031, -0.00713691, -0.00385380327, -0.0196088683, -0.00591215724, -0.0102148224, -0.00868869107, 0.0202116258, 0.0108945286, 0.00138506072, -0.00990703143, 0.00866945367, -0.00131933449, -0.0178262442, 0.0150048239, -0.0111702578, -0.00736775342, 0.00362937199, 0.00398525549, -0.00906701759, 0.00367425825, 0.0237512253, -0.00117345422, -0.0128310481, 0.0151843689, 0.00690606656, 0.017326083, 0.00137303758, -0.00975954812, -0.00970183685, -0.00636101933, -0.0231228191, -0.00398204941, -0.00750241196, 0.0124847833, 0.00106925401, 0.00936198421, -0.0315486044, -0.00263546268, 0.0101891737, 0.00991344359, 0.00512344204, 0.00756653538, -0.00596666196, -0.00282783224, 0.00644117361, -0.0106636854, -0.00873357709, 0.000179244322, -0.0033536423, -0.0222892184, -0.00852838345, -0.00564604625, -0.00799616054, 0.0040173172, -0.000309995492, 0.0062840716, 0.0105226142, -0.0151202464, -0.0059858989, 0.0207374375, -0.00673934631, -0.0191343576, -0.00386342173, 0.00818853, 0.0129336454, -0.002661112, -0.043116428, -0.0119846221, -0.00800257269, -0.000649247202, 0.0189548116, 0.0130426548, 0.00504008215, 0.011311329, 0.0144918384, 0.0127733378, -0.00872716494, -0.0131260147, 0.0204681195, 0.000796329754, -0.0134530431, -0.00509138033, 0.00964412652, 0.0151202464, -0.00476114638, -0.0207887348, 7.7048011e-05, 0.000244870404, 0.00316127273, 0.0188137405, -0.0197884142, -0.0116062956, 0.0102468841, 0.0143507682, 0.0106572723, -0.0146713834, 0.00206156028, -0.00438923156, -0.0136838872, -0.00264187506, 0.0118884379, 0.00187880918, 0.0145046636, -0.0133889206, 0.0430394784, -0.020622015, -0.000277733518, -0.000489340047, 0.00687400484, 0.0264956988, 0.00630010245, -0.0141071, -0.0144661898, 0.00496954657, -0.00811799429, -0.0106636854, 0.000489740807, -0.00354921794, -0.028060304, -0.0147996303, 0.00234851148, -0.00757936, 0.00568452, 0.019685816, 0.00916961487, -0.0220327247, 0.0100352773, 0.0201603286, -0.00607246533, -0.00760500925, 0.00745752594, 0.0194806214, -0.00354601187, 0.011805078, -0.0239307713, 0.0128310481, -0.0115229357, -0.0131580764, -0.0111381961, 0.0073228674, 0.0120679829, 0.0176210497, 0.00559154153, -0.00286470307, 0.00292722322, 0.0191471819, 0.00782302767, -0.00552421203, -0.0170695912, -0.00234690844, -0.00523565756, -0.0125873806, -0.0121513428, 0.0014307485, 0.00338570401, 0.012382186, 0.0131452521, -0.00445976714, -0.0164924823, -0.00367746432, -0.0106957462, -0.0156973545, 0.0195703954, -0.043603763, 0.0154152131, -0.010112226, 0.0145944357, -0.00297531555, 0.00889388472, 0.0120615698, 0.000712168054, 0.0158384256, 0.0166720264, 0.00368708279, 0.0028262292, -0.00412632665, 0.0234434344, -0.0304969847, 0.00166720268, -0.00350112561, 0.00679064495, -0.0137993088, -0.0198525358, -0.0118884379, -0.00795768667, 0.00621033, 0.0187239684, -0.0109907128, -0.00630651461, -0.0155562833, -0.00199102471, -0.015812777, -0.00102997862, -0.0132478494, 0.00618147478, -0.0187752675, -0.00954152923, -0.017633874, -0.0166463777, 0.0200577304, 0.00196537538, -0.00725233182, -0.0120295091, -0.0144277159, -0.00638987496, -0.0154408617, -0.011670419, -0.0234177858, 0.00180827372, 0.0398589708, -0.0108752912, 0.0092145009, -0.00312600494, 0.00915679056, 0.00782944076, 0.00929144863, 0.0064764414, 0.0014563977, -0.00744470116, -0.00902854372, -0.00264027203, 0.0103238318, 0.00575505523, -0.00359731051, 0.0201603286, -0.0245976523, -0.0134402188, -0.00911190361, -0.00935557205, 0.00508817425, -0.0193908494, 0.00893235952, -0.00279256445, 0.0146329096, -0.000682511076, 0.0116191199, 0.00277172448, -0.018262282, 0.0095992405, -0.0161590409, 0.00249920087, 0.0153126158, 0.00891953427, 0.0139275547, 0.00199583406, 0.00159025483, -0.017326083, -0.0231484678, 0.0330875628, 0.00873357709, -0.0117794285, -0.0143764168, -0.00295768166, 0.00773966778, 0.010779107, 0.000619991, 0.0213017203, -0.0280859526, -0.0102148224, 0.0147355068, -0.0148637537, -0.00219301274, 6.43736639e-05, 0.0151202464, -0.00893877167, -0.00870151538, 0.0219814256, -0.0257133953, 0.0300865956, -0.0242257379, -0.00964412652, 0.0182109829, 0.0216095112, 0.00444053, -0.0155947572, 0.00331196235, 0.0062840716, 0.0120808072, -0.0118948501, 0.0257262196, -0.0125681432, 0.0030666911, 0.0128182238, 0.00258095795, 0.00941328332, 0.00539596565, 0.0106123863, -0.0155562833, 0.0312921107, 0.0157743022, 0.00551138725, -0.00115902652, 0.0126322666, 0.00979802199, 0.00777172949, -0.0348830111, -0.00492466, -0.0164540075, -0.00113097264, 0.00183231989, 0.0118563762, 0.00471626, 0.00897083338, 0.00273645669, -0.00546329515, -0.0076691322, -0.00263065356, 0.0166079029, 0.0163257625, -0.00954794139, -0.00947099365, 0.0104456665, 0.0117922528, -0.00910549145, -0.0080538718, 0.00202949857, -0.0076691322, 0.0119525613, -0.0092337383, -0.00417441921, -0.0146585591, -0.00125601282, -0.0120872194, -0.00824624114, 0.0120487455, -0.00442770543, -0.00102516939, 0.00149086397, 0.00842578616, -0.0441167466, -0.0108945286, -0.0137736592, -0.0094453441, 0.00277012144, -0.00146361161, -0.0098300837, 0.0165053066, 0.00289035239, 0.00487977406, -0.0213658437, -0.00479320763, -0.00207759114, 0.00586727122, -0.0329336673, -0.0195447449, -0.00426419172, -0.00466816733, 0.0248028468, -0.0148894023, 0.000974672323, 0.00266912743, -0.00924015, 0.010157112, 0.00779096643, 0.0158640742, 0.00727156876, -0.0284963418, -0.0274703708, -0.00045286995, 0.00292882626, -0.00584162166, -0.0268034898, -0.0178903677, -0.0145303123, 0.00234851148, 0.00963771436, 0.00729721785, -0.00762424618, 0.00643796753, -0.0118179023, -0.0124976076, -0.00170247047, -0.0292145219, 0.0218788292, -0.0304713361, -0.00423213, -0.0114972861, -0.0146329096, 0.00580635387, -0.0189035144, 0.00905419327, 0.00125761586, -0.0305995811, -0.00602437276, 0.0366015099, 0.000830395205, -0.00214331737, -0.0043828194, 0.0128631098, 0.0228278525, 0.00065766339, 0.0147996303, -0.00916961487, -0.0100801643, 0.000178542978, -0.00843219832, -0.0121769924, 0.0228791516, 0.00144277152, -0.0156845301, -0.00984290801, -0.00579994172, 0.0106765097, 0.0123501243, -0.00452389056, -0.0145944357, 0.0279064085, -0.0154665112, -0.0210452285, 0.0078037912, 0.00386662781, 0.00589933246, 0.0142481709, -0.0119589735, 0.00333761144, 0.00343379634, -0.00579673564, -0.012023096, 0.0184033532, -0.00086967065, 0.0168002732, -0.00697018951, -0.00187560299, 0.00150128396, -0.0286758859, -0.00425457302, -0.0231997669, 0.00112856796, 0.00759218447, 0.0143251186, -0.00766272, -0.0111510213, -0.0129272332, -0.00163594261, 0.00323501439, 0.00658545084, -0.0158384256, 0.0179160163, -0.00596986804, -0.00317730359, 0.0227380805, 0.00144116848, 0.0413722768, 0.000147583502, 0.0219814256, 0.00674575847, 0.0129849445, -0.0249182675, 0.0148894023, 0.0175697524, -0.00703431293, 0.0022202651, -0.0252388846, -0.00180827372, -0.0220840238, -0.00877205096, -0.0119717978, -0.00291439868, 0.0152741419, -0.0258544665, -0.00794486236, -0.0115742339, -0.00023364884, -0.0298557524, 0.00560115976, 0.00981725939, 0.0155947572, -0.000797131273, -0.00534146093, -0.0204424709, 0.0268034898, 0.00403976, 0.00559474761, 0.0150304735, 0.000135760798, 0.00831677672, 0.00865662936, -0.0195703954, -0.0124078356, 0.0238025244, -0.00474511553, -0.0150048239, -0.021135, -0.00733569171, -0.00717538409, -0.00894518383, -0.0142353456, -0.0255210251, -0.0320359394, -0.00167842431, 0.0419109091, 0.0302661415, -0.0142353456, -5.36029729e-05, 0.00794486236, -0.0158640742, 0.0266239438, 0.0141712232, 0.0083809, 0.0198781863, -0.0183905289, 0.0040173172, 0.00822700374, -0.00622315472, -0.0058608586, -0.014992, -0.0178005956, -0.00363578438, -0.000204492826, 0.0152997905, 0.0145816114, 0.00575184915, -0.00332158082, -0.00191087078, -0.00965695083, -0.0119076744, 0.00618788693, -0.0092658, 0.00491183577, -0.0103174197, -0.0216736346, 0.00460083829, 0.000983489328, -0.00323982374, 0.00522603933, -0.000623597938, 0.0292914696, -0.0172619596, 0.00315806665, -0.0281629, 0.00841296092, 0.00982367154, -0.00265469961, 0.0103815431, -0.0073805782, 0.0318307467, -0.00766272, 0.0199294854, 0.00227957917, 0.00466175517, 0.0145303123, 0.0162872877, 0.0127156265, 0.00691889133, -0.00598269282, -0.0107534574, 0.0136582376, 0.000708160398, 0.00933633465, 0.00769478176, 0.0203270484, -0.00514267897, 0.00437640725, 0.0250080395, -0.00481565064, 0.0100801643, 0.00338570401, -0.00300256792, -0.00666881073, 0.00537031656, 0.0070727868, 0.00913114101, -0.00316608208, 0.00136582379, -0.0185828973, -0.00842578616, -0.00310997432, -0.000667281856, 0.00588330161, -0.000102597092, 0.0433729179, -0.00351715647, 0.04227, -0.0043732007, -0.0114203384, -0.0188137405, 0.00465534301, 0.0204424709, 0.0109073529, -0.0108881164, 0.00419365615, 0.0186983198, 0.00388265867, 0.0347804129, -0.014030152, 0.0212760717, -0.0109843006, -0.000458480732, 0.00851555821, -0.0216095112, 0.00134338066, -0.00427701604, -0.0420135073, -0.00500802044, 0.0102853579, -0.00822059158, 0.00186438148, 0.0205194186, -0.0113818645, 0.00456877658, 0.00526130712, 0.00370632, 0.00103879557, 0.00196056627, 0.0229689237, 0.0292914696, 0.00412632665, 0.00857968163, -0.00589292031, 0.00413594535, -0.00543443952, -0.00754729845, 0.0280859526, 0.00442770543, -0.00679705711, -0.00569093227, 0.00105562783, -0.0246746, 0.0131131904, 0.000820776739, 0.00607246533, -0.0115421722, 0.0150689473, 0.0026146227, 0.0178005956, -0.00385380327, -0.00288714631, -0.00407182192, -0.0182366334, 0.0105226142, -0.00786791462, 0.0140173277, 0.0133119719, 0.0177621208, 0.0177364722, -0.000694534217, 0.00768195698, -0.00166880572, -0.021686459, 0.00103158166, 0.0207502618, 0.00869510323, -0.0107598696, -0.00801539794, 0.0207246114, 0.0220327247]
|
15 Jan, 2025
|
Difference Between CSS and SCSS
15 Jan, 2025
CSS is a stylesheet language whereas SCSS is a preprocessor scripting language that is a superset of CSS. This article will cover the detailed differences between CSS and SCSS.
CSSCSS (Cascading Style Sheets) is a stylesheet language for designing the layout of web pages.It is simple to use and follows a cascading hierarchy to apply styles to HTML elements.
HTML
<html>
<head>
<style>
h1 {
color: darkblue;
text-align: center;
}
</style>
</head>
<body>
<h1>Welcome to CSS</h1>
</body>
</html>
SCSSSCSS (Sassy CSS) is a preprocessor scripting language that extends CSS with features like variables, nesting, and mixins.It makes stylesheets more maintainable and efficient to write.
HTML
<!DOCTYPE html>
<html>
<head>
<title>SCSS Example</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="box">This is styled using SCSS</div>
</body>
</html>
SCSS File (styles.scss):
SCSS
$box-color: lightcoral;
$text-color: white;
.box {
width: 200px;
height: 100px;
background-color: $box-color;
color: $text-color;
text-align: center;
line-height: 100px;
&:hover {
background-color: darkred;
}
}
Compiled CSS (styles.css):
CSS
.box {
width: 200px;
height: 100px;
background-color: lightcoral;
color: white;
text-align: center;
line-height: 100px;
}
.box:hover {
background-color: darkred;
}
Differences between CSS and SCSS
CSS
SCSS
Definition
Cascading Style Sheet is a stylesheet language used to define the presentation and layout of a webpage written in HTML or XML.
Syntactically Awesome Style Sheet SCSS (Sassy CSS) is a preprocessor scripting language that is a superset of CSS.
Syntax
CSS follows a plain-text syntax
SCSS follows a structured syntax with additional features such as variables, nesting, and mixins.
Variables
CSS uses plain text and keywords for styling
SCSS allows you to define variables to store commonly used values such as colors, font sizes, and spacing
Nesting
CSS requires you to write each selector separately.
SCSS allows you to nest selectors within other selectors, making it easier to write and read complex stylesheets,
Mixins
CSS does not provide functionality to use Mixins
SCSS allows you to create reusable code snippets using mixins, which are like functions in programming languages.
File Extension
CSS files use the .css file extension
SCSS files use the .scss file extension.
Compilation
CSS files are interpreted by web browsers directly
SCSS files must be preprocessed into standard CSS files using a preprocessor such as Sass
Features
CSS Does not use additional features
SCSS contains all the features of CSS and contains more features that are not present in CSS
Difference Between CSS and SCSS – FAQsWhat is the main difference between CSS and SCSS?CSS is a stylesheet language, while SCSS is a preprocessor that extends CSS with features like variables and nesting.
Do I need to compile SCSS into CSS?Yes, SCSS needs to be compiled into standard CSS before it can be used in browsers.
Can I use variables in CSS like in SCSS?CSS supports variables using custom properties (–var), but SCSS provides more powerful variable functionality.
Which is better for large projects, CSS or SCSS?SCSS is better for large projects because it offers advanced features like mixins, nesting, and inheritance for efficient styling.
Is SCSS backward compatible with CSS?Yes, SCSS is a superset of CSS, so all valid CSS code works in SCSS files without modification.
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS
|
https://www.geeksforgeeks.org/what-is-the-difference-between-css-and-scss?ref=asr10
|
CSS
|
Difference Between CSS and SCSS
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props
|
GeeksforGeeks
|
[-0.0096700117, 0.0311700441, -0.0264615789, 0.0334771946, 0.0625755116, 0.00354312058, 0.0228125174, -0.020340573, -0.0503805839, -0.00443772925, 0.0265086628, -0.0170093328, -0.00455544097, -0.0222710446, -0.0103586251, 0.0114533436, -0.0214352906, 0.0156909619, 0.00666836509, 0.00799850654, 0.0118241347, -0.00557953212, -0.0476496741, -0.0213293508, -0.00750411768, 0.00215118029, -0.000212064886, 0.0252609197, -0.0349132754, 0.0222357307, 0.0227536615, -0.0128658833, 0.0044642142, -0.0343482606, -0.0320646539, -0.000575315673, 0.026838256, -0.012548062, -0.0189398043, -0.00726869423, 0.00623871759, -0.0128423413, 0.00946401618, 0.0167739093, 0.00821038708, -0.0257082246, 0.00566781592, -0.0497214, 0.00359020522, -0.048120521, -0.0249784123, 0.0342070051, 0.0337126181, -0.00180098822, -0.0171270445, -0.014301965, -0.0215883162, -0.0219885353, -0.0181040522, 0.00977006648, -0.0341599211, -0.0356195457, -0.0281095412, -0.0110236956, -0.0363258161, 0.0116652241, -0.0451306477, -0.0478850976, 0.0281095412, 0.0116299111, -0.0447304249, 0.00605626451, 0.00339009543, 0.015608565, -0.0278741177, 0.0371968821, 0.0136427805, 0.0156203359, 0.00690378807, 0.00577669917, -0.00109545398, 0.0209762156, -0.0361610167, 0.0323236175, -0.0127717135, -0.00776308309, -0.00180981657, -0.0272149332, 0.0821627304, -0.0219179094, -0.0356901735, -0.0147963539, 0.0595150106, -0.00861060712, -0.0262732394, 0.0426822454, 0.00706269871, -0.00392862642, 0.0052440539, -0.0158675294, 0.0101526296, 0.0184218735, -0.00533233769, -0.0244840235, -0.00861060712, -0.0340186656, -0.00533822319, 0.00560601708, 0.000185028, 0.00235570432, 0.0265557487, 0.00264851213, -0.0370320864, -0.0035490063, -0.0411284491, 0.00290159206, 0.0101173166, -0.0530173257, 0.026014274, 0.0196931586, 0.00807501934, 0.0317350589, -0.0144667616, 0.0435768515, -0.0223769844, 0.065400593, 0.00868123397, -0.0468727797, 0.0301341824, -0.0017024047, 0.0219179094, -0.000918150879, 0.0218472816, 0.0200580657, 0.0107941581, -0.00206289673, 0.0325355, 0.0131837046, -0.0162088946, -0.00928744953, -0.00557658914, -1.37943334e-05, 0.00476732198, 0.000973328191, 0.00287069287, -0.0096935546, 0.0459075421, 0.0460252538, -0.0587616563, 0.0328650922, 0.0010189414, -0.0371027105, 0.0211998671, -0.0193282533, 0.0317586027, 0.0083280988, -0.0266970024, 0.00881660264, 0.0204935987, 0.0128305694, 0.0497684851, -0.0117593938, -0.00493506109, 0.0432708, -0.0292395744, -0.0078925658, -0.00857529324, -0.0271443054, -0.0133485012, 0.0246252771, -0.0238601509, 0.0456250347, -0.02253001, 0.00208055344, 0.025990732, -0.0383033715, 0.0198697262, -0.0159852412, 0.0344659723, 0.00254845712, -0.0617279895, -0.0401161313, 0.018621983, -0.0279212035, 0.00282655098, -0.0128658833, 0.0132896453, -0.00604449306, -0.0232598223, -0.0124892062, -0.0401867554, 0.019975666, 0.0284626763, -0.00522051146, 0.0223181285, 0.0117711648, -0.0569253527, -0.00652711093, 0.0421407707, 0.0171976723, 0.006285802, -0.0184218735, -0.0114415726, 0.0404928066, 0.041104909, -0.00389037, -0.010847128, -0.00137722632, 0.0375500172, -0.0239425488, -0.00237336103, 0.0133249583, 0.00295309094, -0.00902259815, 0.000990249217, -0.00497920252, -0.0107647302, -0.00569430087, 0.00703327078, 0.00753354561, 0.00199079816, 0.0238836929, -0.0113003179, -0.0599858575, -0.0142313382, -0.0108000441, -0.00121610845, -0.0164325461, -0.00350192166, -0.00255287136, 0.0135015259, -0.00706269871, -0.00559718907, 0.00294131972, -0.0434826836, -0.0267205443, 0.026838256, -0.0249784123, -0.04508356, 0.0360433087, -0.0137016363, 0.0152083449, -0.0110178106, -0.0215412322, -0.042847041, 0.0110472385, 0.0278034918, -0.0286274739, -0.00936984736, -0.00867534894, -0.0235776436, 0.00548536284, -0.0325590409, 0.00839872658, -0.0395040289, 0.0213175789, 0.00981715135, -0.0338774137, 0.0223534424, -0.0237306692, 0.0151259471, 0.0101761725, -0.0184807293, 0.0363022722, -0.0219179094, 0.015608565, 0.013007137, -0.00821038708, -0.0289335232, -0.00707447, 0.0413874164, -0.0666247904, -0.00872831885, 0.0234834738, -0.0226124078, 0.0094522452, 0.0333123952, 0.0025131437, 0.0410578214, -0.0110766664, 0.0167268254, 0.00556776114, -0.00322824204, 0.00655065337, 0.00995840505, -0.0221533328, 0.00038881629, 0.0260849018, -0.0165973417, -0.0152318878, -0.0210939273, -0.0453425273, 0.0303460639, 0.0183394756, 0.0164325461, -0.0232245084, 0.0100113759, 0.0052823103, -0.00514988462, 0.00393156894, 0.00695087295, -0.0340186656, 0.0467079841, -0.0271913912, -0.0278741177, 0.0275445264, 0.0192105416, 0.0118594486, 0.0116122542, -0.0222121887, -0.00324001303, 0.0165855717, 0.0143608209, -0.0131366197, 0.00948755909, -0.000858559331, 0.0340892933, -0.00855175126, 0.000606215, -0.0222121887, -0.0092344787, -0.00482912036, -0.0232009664, 0.012571604, 0.0176214334, -0.0125127481, -0.084046118, -0.00428176112, 0.0102585703, -0.0186808389, -0.0197991, -0.0245781913, 0.0145609314, -0.005626617, 0.0706740767, -0.0102938833, -0.0178333148, 0.0379266925, -0.0209173597, -0.0146080153, 0.0250490382, 0.0176332053, 0.0125127481, 0.00612100586, 0.00457309745, -0.0305579435, -0.0441889539, 0.00317527167, 0.0318527706, 0.00984069426, 0.000693763, 0.00867534894, 0.0186102111, -0.00799850654, 0.0146197872, -0.0178333148, -0.00715098251, -0.0324413292, -0.0131366197, -0.00646236958, 0.0360433087, -0.0261084437, 0.0103645111, -0.0150317773, 0.00770422723, -0.0574903674, 0.00241456018, -0.00574727124, 0.0451071039, 0.0191634558, -0.0325590409, 0.0108647849, 0.00499685947, -0.0136780934, -0.0331946835, 0.0169622488, -0.00668602157, -0.0358314253, -0.0199403539, 0.0367495753, 0.0181275941, 0.0633759499, -0.0133602722, 0.00387271331, 0.0140547706, -0.0413167886, 0.0224358402, -0.034254089, 0.0144785326, 0.00379325799, -0.0152672008, -0.00868712, 0.0272620171, -0.02253001, 0.0194341931, -0.0145491594, -0.0283685066, 0.0113532888, -0.00646825507, -0.0190692879, 0.0271207634, 0.000648517627, -0.00801027752, 0.000276070612, 0.0111119794, -0.0202581752, -0.0156556498, -0.021670714, -0.00662716571, 0.00597092323, -0.0249313265, -0.00247930153, -0.00696264394, -0.00210409565, 0.0160911828, 0.00592678133, 0.0126657737, 0.0480734371, 0.00157733611, 0.0133720431, -0.0119595034, -0.0417876355, 0.021235181, 0.00315172947, 0.0402573831, 0.00838107, -0.0309346206, 0.0366083235, 0.061115887, 0.0430824645, -0.0343953446, 0.0129247392, -0.00149346655, -0.026037816, -0.00639174273, -0.0143137369, -0.00803382, -0.0483088605, 0.0158086736, 0.0197991, 0.0347955637, -0.00358431973, 0.0177862309, -0.0138311191, -0.0374323055, 0.0189751182, -0.0244604815, 0.0200933777, -0.0265086628, -0.0195283629, -0.0199874379, -0.0135486107, -0.0106823323, 0.0354312062, 0.0349603593, -0.0145844733, 0.0108059291, -0.0148081258, 0.00260731298, -0.0331240594, 0.0232009664, -0.00648591202, -0.00579435611, -0.00938161835, -0.00771599868, 0.0332182273, -0.0407517739, -0.00245281658, -0.023377534, 0.0116299111, -0.0194106512, -0.0409871973, -0.0174330957, 0.0327473804, -0.0318998583, 0.0283449646, 0.0108059291, -0.00984657928, -0.00788668077, -0.00246311631, 0.0305579435, 0.0246488191, 0.0120242452, 0.0108942129, -0.00915208086, -0.0191281438, 0.0205877665, 0.00811621826, -0.000305866357, -0.03201757, 1.58979692e-05, 0.01516126, 0.0183747876, -0.042517446, 0.025990732, 0.0208349619, 0.00911676697, -0.0070156143, 0.0170328747, 0.0119477324, -0.035996221, 0.0273326449, 0.0100290328, 0.0126069179, 0.00720983837, 0.0258023925, -0.0265322048, 0.029851675, -0.00269265403, -0.00103512686, 0.0107588451, -0.020387657, -0.00682139024, 0.0415757559, -0.0354076624, 0.0128305694, -0.0109295268, -0.0056795869, -0.0364435278, -0.0331240594, -0.00439358735, 0.00809856132, 0.00944636, -0.0192223117, -0.00982303731, -0.01646786, 0.052028548, -0.0200933777, -0.0282743387, 0.0160676409, -0.0239778627, -0.0176567473, 0.0356195457, -0.00368143176, 0.01516126, 0.0505689234, -0.0158439875, 0.00506748632, 0.00471729413, 0.01516126, -0.0387977585, -0.0192811675, -0.0278976616, -0.0152907427, 0.00884603057, 0.00224240683, 0.0131837046, -0.0296868775, 0.0297339633, 0.00190987147, -0.0102114854, 0.0168680791, 0.0163383763, -0.0122184688, -0.00151112326, -0.00975829549, -0.0247429889, -0.0405869782, 0.00952287205, -0.0338303261, 0.00994074903, 0.0275209844, 0.041975975, 0.0175625775, 0.0120536732, -0.00840461161, 0.0119536184, 0.00605037855, -0.0194577351, -0.0130777638, -0.019540133, 0.00877540372, 0.0136545515, -0.0114415726, -0.0135603817, 0.00726869423, 0.0258023925, -0.0095935, 0.0460487977, 0.0181982201, -0.0165267158, 0.00839872658, -0.00187750079, -0.0185278133, -0.0124421213, 0.0254492592, 0.00505277235, -0.0273326449, 0.00517636957, -0.0278270338, -0.00351075, -0.00758063, 0.00617397577, -0.00934630446, 0.0036843745, -0.00756885903, -0.0252609197, -0.0202346332, -0.00348132197, 0.000421187, -0.00768657075, 0.0234717019, 0.0219296794, 0.00564427348, -0.00761005795, -0.0119830463, 0.0265792906, 0.00714509701, 0.018162908, 0.00434650248, -0.011276776, -0.0119359614, 0.00727457972, -0.0413874164, -0.00239248923, -0.0302048083, -0.0100231469, -0.000617250451, 0.0211057, -0.0212822668, 0.0219179094, 0.00535293715, 0.0190457441, 0.00299134734, 0.00613866234, 0.0212940369, -0.00848112442, -0.013854661, -0.00216295151, -0.0193517953, -0.0468727797, 0.000713626854, 0.000876951788, 0.0385623351, 0.0118064787, 0.0131013067, 0.00995252, 0.0285333041, -0.028156627, 0.0073216646, -0.0380914882, 0.021235181, 0.00200845511, 0.0597033501, -0.00678607635, 0.0284862183, 0.00169651909, 0.0459546261, 0.0124656633, -0.00699207187, 0.0155143952, -0.0166326556, -0.0162088946, 0.0162088946, -0.00164943445, 0.0266499165, 0.0104410229, -0.0169387069, -0.0132190185, -0.00329886889, -0.0263909511, -0.017727375, 0.0143137369, 0.01384289, 0.00366671779, -0.0282037109, -0.0294043701, -0.010823586, -0.0259436481, 0.0103468541, -0.0322059058, -0.0282272529, 0.00750411768, 0.0176332053, 0.0143608209, 0.00275151, 0.000432958157, 0.0184571873, 0.0100702317, 0.00490857568, -0.00287216413, -0.0216118582, 0.00338715268, 0.029851675, 0.0250254963, 0.00138384756, -0.0155261662, -0.01990504, 0.0025322719, 0.00956407189, 0.0442360379, 0.0197873283, 0.0197873283, 0.0246488191, -0.00197461294, -0.0168209951, -0.0242486, -0.00422584824, -0.00136251235, 0.0202464033, 0.0419053473, -0.00392862642, -0.0403515548, -0.0201051496, 0.00195989897, 0.0457192026, 0.00246605906, -0.00365494681, -0.0144079057, 0.000879894593, -0.00562073104, -0.00675664842, -0.0105646206, 0.00662128, 0.0387035906, -0.0195754468, 0.0223416705, -0.0191046, -0.0285333041, 0.0305814855, 0.00524699688, 0.00480557792, -0.0146904141, -0.00523522543, -0.00981715135, -0.0156438779, -0.0109236408, -0.00737463497, -0.024272142, -0.0107411882, 0.0175272636, 0.0311935861, 0.013854661, -0.0136663225, -0.00633288687, 0.0103645111, 0.029474996, -0.00695675844, -0.0107529592, 0.000963028404, 0.0342070051, -0.0397159085, -0.0185748991, -0.0163972322, -0.0318056867, -0.0134662129, 0.0315231793, 0.0382798277, 0.00312524429, 0.0454366952, -0.0032488415, -0.0291924886, 0.0332653113, -0.026037816, 0.0129247392, -0.00294279121, -0.0345601402, -0.00494094659, -0.00208496768, 0.0313348398, 0.0248371586, -0.000853409467, -0.00103291974, -0.0235187877, -0.00779839652, 0.00179068849, -0.0290983189, -0.0128070274, -0.00272796745, 0.00747468974, 0.0181040522, 0.00265734037, 0.0812681243, 0.0221415609, 0.0215530023, 0.028086, -0.00932864845, -0.036867287, -0.0258494783, 0.0427764133, -0.0081103323, 0.0451541878, 0.021258723, 0.00444067176, -0.00281477976, 0.00676842, -0.0117417369, -0.0270736795, 0.00479969243, 0.0119241904, 0.00393451191, 0.029027693, -0.00192899967, 0.03295926, -0.0196225327, 0.000327017682, -0.015608565, -0.00435827393, 0.0111531783, -0.0327002965, -0.00508220028, -0.0346543081, 0.00065808167, -0.0254492592, 0.0535352565, -0.0315231793, -0.00265881186, -0.0120536732, -0.0282037109, -0.0074570328, -0.00238954648, -0.0198932681, -0.035925597, 0.0184571873, -0.00352252112, 0.00272355322, 0.00531762373, 0.0236718133, -0.000284715061, 0.0348897316, 0.0140076866, 0.00869889092, 0.0245311074, 0.0110531235, -0.0235423297, 0.0162206646, 0.00471140863, 0.0105705056, 0.0023145054, -0.0250490382, 0.00429353258, 0.0112296911, -0.012995366, 0.0188338645, -0.0158557594, -0.00264704064, 0.0545240343, -0.0101232016, 0.0080573624, -0.00547064887, -0.019469507, -0.00315761496, -0.0267911721, -0.0192811675, 0.000271288562, 0.0131248487, 0.0171505865, 0.0147021851, 0.0466138124, -0.0151965739, 0.0187043808, -0.00661539473, 0.0226359498, 0.0115004284, -0.0142195672, 0.0306050293, -0.0110884374, -0.0222357307, 0.0169269349, -0.0297104195, -0.00660950923, -0.00206731074, -0.00612689136, 0.0229066871, 0.021647172, -0.0162324365, 0.0019275283, 0.00872243289, 0.00202464033, 0.012595146, -0.0203994289, 0.000902701227, -0.0192223117, 0.0101467445, -0.00020139727, 0.00316055771, -0.0192223117, 0.000233400133, 0.00717452494, 0.0183159318, 0.0331240594, 0.00420524878, -0.00636820029, 0.00653888192, 0.0365847796, 0.0516518727, 0.001733304, -0.0140665416, 0.0109530687, -0.0194812771, -0.01990504, 0.0162442084, -0.00365788955, -0.0174448658, 0.00201728335, 0.0143725919, 0.0310052484, 0.000390655536, -0.0457898304, -0.0426116176, 0.0117417369, 0.0107765011, 0.00515577, -0.0388683863, 0.0100349179, -0.00624460308, 0.0070156143, -0.0241308883, -0.0256611388, 0.0113003179, 0.00687436, 0.0331711434, -0.0250019543, 0.0163030624, 0.0326767527, 0.0392450653, -0.00920505077, -0.0209879875, 0.0457192026, 0.0250490382, 0.00855763722, -0.00896962732, -0.029027693, 0.0350545272, -0.0115357414, 0.0022321071, 0.0166444276, -0.0112061491, 0.0073216646, -0.0242486, 0.00316350046, 0.00494977506, 0.0265086628, -0.0125009771, -0.0318292305, -0.00512928516, -0.00158469309, 0.0278976616, -0.0391038097, -0.0125245191, 0.00605037855, 0.0211527832, -0.0156909619, -0.0192105416, -0.0203758869, -0.0139606018, 0.0122537827, -0.0150553202, -0.0317115188, 0.0464254729, -0.00844581053, 0.0197284725, -0.0159734711, -0.0273797289, 0.00750411768, -0.0216000881, -0.00929922052, -0.00174654659, -0.0304873176, -0.0110001536, 0.0232245084, 0.00369614572, 0.0184218735, 0.0267676283, 0.0338538699, 0.000180521849, 0.0131601626, 0.0171388164, 0.0147963539, 0.0228713732, 0.023353992, -0.0136780934, 0.00237041828, -0.0051028, -0.0262026135, 0.00213646633, 0.0348661914, -0.0238483809, 0.0384210832, -0.0149376085, -0.0292395744, 0.0158204455, -0.00721572386, -0.0136663225, 0.0373381339, -0.026838256, 0.0246959031, -0.0131248487, -0.0184336435, 0.0264380369, 0.00280595152, -0.00161412102, 0.0114827715, -0.00163030636, -0.0146668712, 0.00507631479, 0.0382092, 0.00256169983, -0.0140783135, -0.0313348398, -0.0212940369, -0.00398159632, -0.00587381143, 0.00338126719, 0.0198461842, 0.0186572969, 0.00451129908, -0.017315384, -0.0510397702, 0.0147492699, 0.00286333589, -0.0432943441, -0.00796907861, 0.00350780715, -0.00108368287, -0.000882101653, 0.00418170635, 0.00197167019, -0.0070980126, 0.0214941464, -0.00653299643, 0.00380797195, 0.0232009664, 0.0295456238, 0.00541767851, 0.00316055771, 0.00416993536, 0.00453484105, -0.0304873176, -0.00141180411, 0.00877540372, -0.00801027752, -5.30162215e-05, 0.00260142749, 0.0120360162, 0.00633288687, -0.0379737765, -0.0236482695, -0.00222180737, -0.0152789718, -0.0285568461, 0.00861060712, 0.00700384332, -0.0101349726, 0.0226006359, -0.00268529705, -0.0105469637, -0.00593561, -0.00660950923, -0.0199403539, 0.0161735807, -0.00207025371, -0.0175743494, -0.0172565281, -0.028156627, 0.00467609521, -0.00652122544, -0.00549419131, -0.014725727, 0.0144903036, -0.00899905525, 0.00524111139, 0.0038550566, -0.00936984736, -0.0220473912, 0.0232715923, -0.0211057, 0.0219061375, 0.0111884922, -0.0157615896, -0.00246164482, -0.000439211581, -0.00754531659, -0.0137251783, 0.00114548148, -0.0096935546, -0.00557070365, 0.0143372789, -0.0116711101, -0.0240484904, 0.00981715135, -0.00769245625, 0.00816330314, 0.0298045892, 0.00344012305, -0.0160911828, -0.0143490499, -0.0202228613, -0.00575904222, -0.00868712, -0.010393939, 0.0136074666, 0.00943458825, -0.0156438779, -0.000167371254, 0.0291454047, 0.00677430537, 0.075476706, -0.00146477437, -0.00484089134, -0.0233893041, 0.00689790258, 0.00187161518, 0.0302048083, 0.0162795205, 0.00111826067, -0.00370791694, 0.00180245959, 0.00570312934, -0.0223769844, -0.00134485564, -0.0110413525, 0.0134544419, -0.00851055235, 0.00991720613, -0.0141724823, -0.0101938285, -0.0244840235, 0.0155379372, 0.0090167122, -0.00602095062, 0.00798085, -0.0180334244, -0.00910499599, -0.00409047958, -0.01818645, 0.0172212142, 0.0221297909, 0.00875186082, 0.0214352906, -0.0114356866, -0.0174684078, 0.00902848318, 0.0149376085, 0.0207525641, -0.0324413292, -0.0104351379, -0.0109942676, 0.0116357962, 0.0275209844, 0.00560896, 0.0276151523, -0.00171123305, -0.0034430658, 0.0224240683, 0.00995252, 0.0141607113, 0.0311935861, -0.0105822776, 0.00419347733, 0.00367554626, -0.00951110106, 0.0055442187, 0.00499685947, -0.0120477872, 0.0174919516, -0.0176685192, 0.00393745443, -0.0256611388, 0.0295691658, -0.00114916, 0.00270442502, 0.0105410777, 0.0069391015, 0.00405222364, 0.00464372477, 0.0107647302, 0.0318292305, 0.0244840235, 0.00751000317, 0.019952124, 0.0018333589, 0.0107941581, -0.00348720769, -0.0017583177, -0.0206701662, -0.0273326449, 0.012548062, -0.0477673858, -0.0111296363, 0.00059370813, -0.0103174262, 0.0123244096, -0.0134662129, 0.00170681893, -0.0194577351, -0.00711566908, -0.00646236958, -0.0254257154, -0.021223411, -0.0273797289, -0.00943458825, -0.00376088708, 0.0167032834, 0.0387977585, 0.00768657075, 0.0321352817, -0.00443478627, -0.0112120342, 0.00611512037, 0.0070980126, -0.0128658833, -0.0274503566, 0.00911088195, -0.01818645, -0.00739817694, 0.010847128, 0.0282037109, 0.012536291, 0.00110796094, -0.00418759184, 0.00896962732, -0.0107706161, 0.0313113, 0.00196431321, -0.00792788, -0.0462371372, 0.01344267, 0.0244840235, 0.00134559127, -0.0271443054, 0.00905791111, -0.0194106512, 0.00579435611, -0.00265586912, -0.00315761496, -0.0246959031, -0.000694866583, -0.00821627304, 0.0229890849, 0.0289335232, 0.00346366526, 0.0226830356, -0.0190928299, -0.0117476229, 0.000277909858, 0.0107647302, 0.0338538699, -0.0134897549, -0.0319234, 0.0100172609, -0.0112826619, 0.0218825955, 0.00754531659, 0.0164914019, 0.0285803881, -0.016444318, -0.036867287, -0.017338926, 0.000479674956, 0.00649179751, 0.0402103, 0.00149125943, 0.0201522335, -0.00126834307, -0.0152436588, -0.0175390355, 0.00190692872, 0.0230243988, 0.010829472, 0.00678019086, 0.0128541123, 0.0239660926, -0.0308404528, -0.0270736795, 0.0173506979, 0.0119300755, -0.0120654441, -0.0186102111, 0.0183983315, -0.0112238061, 0.00508220028, 0.00872243289, -0.0150082354, -0.00637997128, 0.00526465336, 0.0159381572, -0.0123714944, -0.0157380477, 0.000816624553, 0.0043818159, -0.0366789512, -0.00713332603, -0.0106764464, -0.0270501375, 0.0100172609, -0.0173624679, 0.000197167014, 0.0252844617, 0.0264615789, 0.019493049, -0.0119595034, 0.0133485012, 0.00310170185, 0.00791022275, -0.0022953772, -0.016856309, -0.0176920611, 0.00409342255, 0.0122184688, 0.0176332053, 0.00481734937, 0.0152907427, -0.0366318636, 0.0230126269, -0.00635642884, -0.00635054335, -0.0131601626, 0.0114180297, 0.00946401618, 0.0171505865, 0.0322529934, -0.00986423623, 0.00256464258, -0.0107882731, -0.00645648409, -0.00113003177, -0.00632111542, -0.00135221251, -0.0105293067, 0.000330328301, -0.000855616527, 0.00908145402, 0.00434061699, 0.00842226855, 0.00431413203, 0.0176332053, -0.0279212035, 0.0408694856, 0.0208467338, -0.00244104536, 0.0281095412, 0.0231656525, 0.0283685066, -0.025096124, -0.0138899749, 0.0278741177, -0.00638585677, 0.0400455035, -0.0147492699, -0.00841049757, 0.00962881278, -8.39615095e-05, 0.0135132968, 0.00117196655, 0.00830455683, 0.00162000651, 0.0133485012, -0.00938161835, 0.016044097, -0.0275680684, -0.00058782252, -0.0281801689, 0.00900494121, -0.0101585155, 0.0188574065, -0.0194577351, 0.00853409432, 0.00253080041, -0.0351722389, -0.00740994839, 0.00801027752, -0.0201051496, -0.0122302407, -0.0131719336, -0.0267676283, 0.000727605133, 0.00182453054, 0.0255905129, 0.0147492699, -0.00977595244, 0.0117593938, 0.00695675844, 0.0228125174, -0.00955818594, -0.0280153733, -0.0109471837, -0.0169504769, 0.000570901495, -0.0288393535, -0.00746291876, 0.00483206334, -0.00483500585, -0.0032870979, -0.00797496457, -0.013007137, -0.00802204851, 0.0139488308, 0.00367554626, -0.00106234767, 0.019187, -0.00168474799, 0.0345836841, -0.00836929865, -0.0105587346, 0.0234717019, 0.00703915674, -0.000266322604, -0.0101820575, -0.00951110106, 0.00167444826, 0.0135250688, -0.00514988462, -0.0300635546, 0.0274503566, 0.00997606199, -0.0149493795, 0.00543239247, -0.00953464396, 0.000261908426, -0.0167385973, -0.0109883826, 0.000272392121, -0.00314878649, -0.0183630176, 0.0062034037, 0.00557364663, -0.000840166875, -0.0257082246, 0.0104645658, 0.0078925658, -0.00715686847, -0.00916385185, 0.0380208641, -0.00473789405, 0.0249077845, 0.00512339966, -0.02516675, -0.00940516, -0.0123479515, 0.00707447, 0.0199992098, -0.00539707905, -0.0124185793, 0.0303931478, 0.0364435278, -0.0137958052, -0.0195048209, 0.00243810262, -0.025096124, -0.0108647849, 0.00898728427, -0.00964058377, -0.00678607635, 0.0148198968, -0.00610334892, 0.0240014046, -0.00537353661, -0.0134662129, 0.00508220028, -0.0143608209, 0.0102821123, -0.00231744815, -0.00414933544, -0.00430824654, -0.0174684078, 0.00708035566, 0.0170328747, -0.0156674199, -0.0133014163, -0.0165502578, -0.0347013958, -0.0235658716, -0.0139370589, -0.0188574065, 0.0359020531, 0.0295691658, -0.0146433292, -0.0137251783, 0.00802204851, 0.0248607, 0.0115239704, 0.0395982, 0.038374, 0.00259848475, 0.0239072368, -0.0234246179, 0.00755120208, 0.0137369493, -0.0075394311, -0.0182806198, -0.00934630446, 0.0133720431, -0.00706858467, 0.0162677504, -0.00360491918, -0.00296191941, 0.045884002, -0.0139017459, 0.0301106405, 0.0140076866, -0.0207172502, 0.00380797195, -0.0195283629, -0.00339009543, -0.0363022722, 0.0162559785, -0.00685081817, -0.00845169649, 0.00811621826, 0.00625048857, 0.00568841537, -0.0277799498, -0.012595146, -0.0340892933, -0.0176096633, -0.0115239704, -0.0362316445, -0.000785725249, -0.00781605393, -0.00173624686, -0.0181158222, 0.0048997472, -0.0136074666, 0.0318998583, 0.00629757298, 0.00891077146, -0.0298281312, 0.00822804403, -0.0217531119, -0.00899905525, 0.00521462597, -0.0026632261, 0.026838256, -0.0231421106, 0.0265557487, -0.00917562284, -0.0208349619, -0.0352193266, -0.0029486767, -0.00615043379, -0.0339244977, -0.00540296454, 0.000292072, 0.00375205884, -0.0170446467, -0.00835752673, 0.0211763252, 0.00565898744, -0.00552067626, -0.00274121, 0.0109295268, -0.0101644006, 0.00809856132, 0.0128658833, 0.0138193471, 0.0103291972, 0.0305579435, 0.0117593938, -0.0166915115, 0.00153319421, -0.00475849351, 0.0261084437, -0.0139606018, -0.00150818052, 0.0190104321, 0.0154790822, 0.017315384, -0.0014846382, -0.00743349083, -0.00604449306, -0.00437887339, -0.00639174273, -0.00796907861, 0.0101938285, 0.00932864845, -0.0096935546, 0.0100054899, -0.0270972215, 0.014725727, -0.011259119, 0.00806913339, -0.0113944877, -0.000235239379, 0.016444318, 0.00101599866, -0.00497037452, 0.0174213238, 0.0140194576, 0.0033606675, 0.0282978807, 0.0078925658, 0.0538648516, -0.0189633463, -0.00218502246, 0.0146551, 0.000884308771, 0.0270501375, 0.000167923019, -0.00442007231, -0.0169622488, 0.0211880971, 0.00449069962, -0.00742760487, 0.0152789718, -0.025119666, 0.0161618087, -0.0140783135, 0.0027500384, -0.0180569664, 0.0243898537, 0.0106234765, -0.00509397173, 0.00834575575, -0.0112061491, 0.0248136148, 0.00114621723, 0.0140076866, -0.0280389152, -0.0118476776, -0.00118079502, 0.00711566908, -0.00499685947, -0.0145138465, 0.0159852412, -0.000739376293, 0.023813067, 0.01127089, 0.00204965402, 0.00149346655, -0.0196225327, -0.0204582848, -0.0142313382, 0.00916385185, 0.0169857908, 0.0068037333, -0.00196137023, -0.00303401775, -0.0104469089, -0.00452012708, -0.00792788, 0.00252344343, 0.0119889313, 0.0269795097, -0.0147492699, 0.020352345, 0.0171505865, -0.0166326556, 0.0245781913, -0.0236365, -0.0137487203, 0.000240757101, 0.00760417245, -0.00279270881, 0.00578258466, 0.0115121994, -0.00252932915, -0.00237041828, 0.0163148344, 0.00487031927, 0.0327238366, 0.0140547706, 0.0240249466, -0.0129247392, 0.00612100586, -0.00311053032, -0.0149729215, -0.0264615789, 0.0383033715, -0.00549713382, -0.0254021734, -0.0237542111, 0.00815741718, -0.0110119246, 0.0130424509, -0.0202699453, 0.0110648954, -0.0174330957, 0.0159970131, -0.000459443283, 0.00964058377, 0.0052823103, 0.0200227518, -0.0218001977, 0.0232009664, -0.021211639, 0.0152436588, -0.0104527948, -0.00421113428, -0.0166797414, 0.00674487744, 0.0205759965, -0.00231009116, 0.0140900845, 0.0113827167, -0.00254992861, -0.00544416392, 0.00503217289, 0.0171270445, -0.0177862309, -0.000924036431, -0.0211645551, 0.0122773247, -0.0150553202, 0.00761005795, 0.00917562284, -0.00378737226, -0.0148669817, 0.00553833321, 0.00204965402, 0.00134191278, -0.0138311191, -0.0224593822, -0.0151848029, -0.0182335339, -0.0271207634, -0.0114886565, 0.0210468434, -0.0135486107, 0.000635642908, -0.012983595, 0.0241544303, 0.00865180604, 0.020387657, -0.00158910721, 0.00647414057, 0.00687436, -0.00585909747, 0.0114651145, 0.00526171084, 0.00694498746, 0.02688534, 0.00378442951, 0.0436003953, -0.00179363124, -0.0199403539, -0.00156703638, 0.0158086736, 0.0152436588, 0.0119830463, 0.0106882174, 0.00929922052, 0.000497699541, -0.0196460746, -0.0042905896, -0.0363022722, 0.0106646754, -0.0173624679, 0.00228654873, -0.00915208086, -0.0278976616, -0.00788668077, -0.0240602605, 0.00122640829, 0.0107470732, 0.0126304599, -0.00626225956, 0.0223299, 0.0249313265, -0.00523522543, -0.00051645987, 0.0029928186, -1.46679749e-05, -0.000134816626, -0.00542650698, 0.0158557594, -0.0204229709, -0.00874009, 0.008222159, 0.00337832421, -0.0127599426, -0.0173860099, 0.00236894703, -0.0178097729, -0.0206113104, -0.0226594917, 0.000694498711, 0.00244840235, 0.0165855717, -0.00575609971, 0.0126069179, 0.0175743494, 0.0231656525, 0.0148905236, -0.00408459408, -0.00740994839, -0.0202699453, -0.00295161968, -0.0159734711, 0.0101585155, -0.0181393642, -0.00865180604, -0.0139841437, 0.0149846924, -0.0220473912, 0.006721335, 0.0143255079, -0.0116593391, 0.00331946858, -0.0196107607, 0.015585022, 0.00159793568, -0.0362316445, -0.0139959147, 0.0189162623, 0.017750917, 0.0062799165, 0.0318998583, 0.0101761725, -0.00705681322, -0.0135132968, -0.0185278133, 0.0157027338, 0.00569724385, 0.00388448429, 0.0222121887, -0.00662716571, -0.0230950247, -0.006497683, -0.0221651029, -0.0130895358, 0.0140076866, 0.0109942676, 0.0081103323, 0.012583375, -0.00168180524, -0.00324001303, 0.0235776436, 0.00534705166, 0.00939338934, -0.0187161528, -0.0110884374, 0.00974063855, 0.00587381143, -0.0225888658, -0.00719806738, -0.00399631029, -0.0273091029, 0.0159852412, 0.0240014046, -0.00507337227, -1.63577806e-05, 0.00209526741, 0.00579141313, -0.00261172722, 0.0135956956, -0.000905644, 0.00807501934, 0.0262261555, -0.00653299643, -0.0239425488, 0.00705092773, -0.00508808624, 0.0084163826, 0.0223652124, 0.0180334244, 0.00713332603, -0.010388053, 0.0153613705, -0.00929922052, -0.0213293508, 0.00286922138, 4.27854247e-05, 0.0180451963, 0.0354547501, 0.0217531119, -0.0197049305, 0.00357843423, 0.0138311191, -0.00771599868, -0.0062799165, 0.0127834855, -0.00533822319, 0.0144432196, 0.00399925327, -0.00420524878, -0.00617986172, -0.000162957062, 0.00250578672, -0.00945813116, 0.00398748228, 0.0302283522, 0.0169740189, -0.0248842426, -0.00434650248, 0.00219826493, -0.0106411334, 0.0143372789, -0.000947578752, 0.00753354561, 0.0265792906, 0.02254178, 0.00502040191, -0.011288547, 0.0076218294, 0.0238601509, 0.000720616, -0.00686847465, 0.0140665416, 0.0320411101, -0.0130424509, 0.0144079057, 0.0105940485, -0.00444067176, -0.0148081258, -0.00373440213, 0.00163324911, 0.000697073643, 0.00663305121, 0.00493800361, -0.0135015259, 0.0136310086, 0.00298840459, -0.0040728231, -0.00511162821, -0.0107235312, 0.0205642246, -0.00982303731, 0.00400513876, 0.00339598116, -0.0101467445, -0.0042847041, -0.0300164707, -0.00589146791, -0.00252344343, 0.012136071, -0.0276151523, 0.00626225956, 0.00722749531, 0.0069391015, 0.0216824859, 0.0238954648, -0.0319469422, 0.00448187115, -0.0304873176, -0.0125009771, -0.00114253873, -0.0263674092, -0.0127599426, -0.0152672008, 0.00021721478, -0.0208467338, -0.0069391015, -0.00901082717, -0.00694498746, -0.0103350831, 0.00728046568, 0.00147065986, -0.00547359185, 0.0282743387, 0.0280389152, -0.0145844733, -0.00548536284, 0.015149489, 0.0211998671, -0.00816330314, 0.0122655537, 0.0157145057, 0.00674487744, -0.00813976, 0.00412873598, 0.0110590095, 0.0290983189, 0.00739817694, -0.0165738, 0.00430824654, 0.00561190303, 5.2694355e-05, -0.00653888192, -0.0115710553, 0.00708035566, -0.00779839652, -0.0149611505, -0.00606803549, -0.00568547286, -0.0165502578, -0.0149611505, 0.0297810473, -0.00666247914, 0.00310758757, 0.00220120791, 0.00133602717, -0.00971709657, 0.0131837046, 0.00445832871, -0.0034430658, -0.00659185229, 0.00306344568, -0.00263379817, -0.00880483165, -0.0136427805, 0.0140900845, 0.00725103775, -0.00145741738, 0.014301965, 0.0200816076, -0.0240955744, 0.00634465786, -0.0155026242, 0.00919328, -0.0102879982, 0.0176920611, -0.00175096083, -8.96631682e-05, -0.00233216211, -0.0169975627, 0.00629757298, -0.0255434271, 0.00747468974, 0.0166326556, 0.00757474452, -0.000656978111, 0.00207613921, 0.0228713732, -0.00860472117, -0.0140076866, -0.0151377181, -0.0103409681, 0.029474996, 0.00950521603, 0.0217413418, -0.00253668614, -0.005199912, 0.00788079482, -0.0217060279, -0.00897551328, 0.00257052807, -0.00512045668, 0.0119653894, -0.000675002753, 0.00617986172, -0.0143137369, 0.0235776436, 0.00987600721, -0.0115357414, 0.0106529044, -0.00223063584, 0.000999077572, 0.00104910508, 0.00272649596, 0.013407357, 0.00589441089, -0.00521756895, -0.0068861316, 0.000411255081, 0.0164914019, 0.00660950923, -0.00529113878, -0.0266499165, 0.00957584288, -0.0155614801, -0.00619163271, -0.00707447, -0.0085458653, 0.00632700091, -0.032088194, -0.00645648409, 0.0140900845, 0.00905202609, 0.0245075654, 0.0104292519, 0.00853409432, -0.0159970131, -0.000830602832, 0.0129011963, 0.00728635117, -0.0049821455, -0.0227536615, 0.00655653886, 0.000285266811, -0.00132572744, 0.0338303261, -0.00367260352, -0.013866432, 0.00900494121, -0.0127364006, -0.00682727573, -0.00183483027, 0.00190545735, -0.000463857461, -0.0170446467, 0.0192811675, 0.00691555953, -0.0101055447, -0.000368768524, 0.00306933117, -0.0446127132, 0.00814564619, 0.00391685497, -0.01646786, -0.002164423, 0.0208467338, -0.00882248767, 0.0094522452, 0.00179363124, 0.0135250688, -0.0128894253, -0.0126422308, -0.0126422308, -0.00417582085, -0.0163854621, -0.0340422094, 0.00157586474, 0.00685081817, -0.0101644006, -0.00561778853, -0.012548062, 0.0158086736, 0.00165384868, 0.010393939, -0.00485266279, -0.00770422723, -0.00167150539, -0.00211145263, -0.0110178106, 0.0270972215, 0.0155261662, -0.00272061047, -0.0231067967, -0.000513149193, 0.0159617, -0.00363140437, -0.00537942257, -0.00613277685, 0.0241779722, -0.0111119794, -0.00453484105, -0.0180922803, -0.00388742727, 0.000803382, 0.00525582489, 0.00183777313, -0.00568841537, -0.00110648945, 0.00769834174, -0.00180687383, 0.00684493221, 0.0195283629, 0.00209673867, 0.0130777638, -9.89513574e-05, 0.0128776543, 0.0222945865, -0.00768068526, -0.00322235632, 0.0069391015, 0.0204935987, 0.00771599868, 0.0288628954, -0.0267911721, -0.00469375215, -0.0133485012, 0.0180805083, -0.00624460308, -0.0185042713, 0.0321352817, -0.0219179094, -7.95013475e-05, 0.0238836929, -2.20421953e-06, -0.00267941132, -0.000195143846, 0.0370556265, -0.0339480378, 0.0418347195, 0.0180922803, -0.0254257154, -0.0108942129, 0.0073216646, -0.0149022946, -0.00367554626, -0.00166709127, -0.014713956, -0.0301106405, -0.0133485012, -0.0329121761, 0.00306933117, -0.00646825507, 0.0348426476, -0.0192105416, 0.0135368397, 0.00846346747, 0.0100231469, 0.0045907544, 0.0037726583, -0.0159263853, -0.000669117144, 0.00442007231, -0.00829278585, 0.0122890957, 0.00261319871, -0.00870477688, 0.00630934443, 0.0112120342, -0.00447892817, 0.00790433679, 0.015608565, 0.000301452179, 0.017291842, 0.00663305121, -0.0119418465, 0.012583375, -0.0128658833, 0.00807501934, -0.0237306692, 0.0252609197, -0.0187043808, 0.00270883925, 0.012571604, -0.00890488643, 0.0181040522, -0.0150435483, 0.0118829906, -0.00629757298, 0.0131954756, -0.00296339067, 0.00330181164, 0.00604449306, 0.00504100136, -0.00342246611, 0.00210998137, 0.00536176562, -0.00142210384, 0.00629757298, 0.00849878136, -0.0260849018, -0.0039462829, 0.00261761271, -0.0146786422, 0.0245311074, 0.00371968816, 0.0118064787, -0.0133014163, 0.00497920252, -0.0258023925, 0.00121022284, -0.000722823082, 0.00756885903, 0.00395511137, -0.0137722632, 0.0310287904, -0.0239425488, -0.0196578447, -0.0145844733, -0.0295927078, -0.0243898537, 0.0348426476, -0.00642705616, -0.00637997128, 0.0230950247, -0.0242486, 0.00426999, 0.0193753373, 0.0140547706, 0.0293337423, 0.022094477, 0.008222159, 0.0014000329, 0.00807501934, -0.0111826062, 0.00851055235, 0.00439358735, -0.0272384752, 0.00819273107, -0.00816918816, 0.00256758532, 0.0285568461, 0.0148552097, 0.0241308883, -0.000369320303, -0.00819861609, 0.0285803881, -0.0123832654, 0.0104410229, 0.0180569664, -0.00530879525, -1.27827498e-05, -0.0101526296, 0.0218001977, 0.00648002606, -0.00675664842, 0.0123950364, 0.0110707805, -0.018162908, -0.0343953446, -0.0168327652, 0.0258259363, 0.0039462829, 0.0209055897, -0.0191634558, 0.00259259902, 0.0304873176, -0.00705681322, 0.0188456345, 0.00356960576, -0.00276180962, -0.0117652789, -0.00143976056, -0.00306933117, 0.00256905681, 0.00758651597, 0.00664482266, -0.0269795097, -0.00543533545, 0.00222033588, -0.00696852943, -0.0241544303, -0.00391685497, 0.000153760848, -0.00218060822, -0.00238807499, 0.0252373777, -0.00240573171, -0.00111973204, 0.00444361474, 0.0117535079, -0.00133676291, 0.00699207187, 0.0189280324, -0.0149258375, 0.0168445371, 0.0141136264, 0.0102821123, -0.00835164171, 0.00739817694, -0.0075394311, 0.0192223117, -0.0223299, -0.0159617, 0.0110472385, 0.00592089584, -0.00723338081, 0.0162912924, -0.0279682875, -0.00719218189, 0.00337538146, 0.0187279228, -0.00476143602, 0.0178215429, -0.0031370155, -0.0379266925, -0.00948167313, 0.0250254963, 0.010853014, -0.00540590752, -0.023377534, -0.000850466662, -0.0197284725, -0.0177391451, -0.00298104761, -0.0303225201, -0.00978183839, -0.0042023058, -0.00490857568, -0.00491446117, -0.00517636957, 0.0106587894, 0.0154790822, -0.00690378807, -0.0211410113, -0.0105469637, -0.0117947068, 0.00715098251, -0.00341069512, 0.0302283522, 0.00329886889, 0.0222475, -0.00622694613, 0.0309581645, 0.0147963539, -0.012583375, -0.00394334039, -0.011253234, -0.0107353022, 0.00958761387, 0.0139723727, 0.00171417592, 0.0053264522, -0.0100584608, 0.0194459651, -0.00831632782, -0.000210041719, 0.0029442627, -0.00282507949, -0.00519108353, -0.00694498746, -0.0151024042, 0.00427881861, 0.0149022946, -0.00817507412, -0.024295684, 0.0029001208, -0.00610334892, -0.0217648838, -1.73348799e-05, 0.00132646319, -0.00629168749, 0.00959938485, -0.00202169758, 0.00377854402, -0.0228831451, 0.0165738, -0.0140312286, -0.00615043379, -0.0070215, -0.0208702758, 0.0187750086, -0.00063601078, 0.00941104628, 0.00917562284, 0.00319881411, -0.00553539, 0.0246959031, -0.0012904139, 0.00462606782, -0.0189162623, 0.00650945399, 0.00342835183, 0.00892254338, 0.00932864845, 0.0150553202, -0.0421878546, -0.0105763916, -5.55911647e-05, -0.00877540372, -0.0106058195, -0.025990732, 0.0092580216, 0.00352546386, -2.61172718e-05, 0.00779839652, 0.00578552764, 0.0223887563, -0.00127937843, -0.0111590642, -0.037667729, -0.00144196767, -0.00241161743, -0.0213528927, 0.00752177415, -0.00516459858, -0.000893872813, 0.0235776436, 0.0156674199, 0.0104410229, 0.00275445264, 0.00495566055, -0.00903436914, -0.0174684078, 0.0222710446, -0.00659185229, 0.00807501934, -0.00607392099, -0.001353684, -0.0232598223, 0.0102350274, -0.00257788505, -0.00587675394, -0.0210115295, -0.000935071905, -0.00583555503, 0.0229537711, 0.000480410672, -0.0145844733, -0.0150553202, -0.00110648945, -0.0157498177, 0.00605626451, -0.0150317773, -0.00226300652, 0.0118417917, -0.00838695467, -0.0176214334, 0.0161971226, -0.0074570328, -0.000422658399, -0.0150082354, -0.00781605393, -0.00276622386, 0.00662128, 0.00138090481, -0.0132072465, -0.0162442084, -0.0094522452, -0.00460546836, -0.0135368397, 0.0114239156, 0.00152878009, -0.0109412977, 0.00719218189, -0.0169857908, -0.0198226422, 0.0119241904, -0.0170328747, -0.00143976056, 0.00640351372, -0.006721335, 0.0120242452, -0.0172212142, 0.0102762273, -0.0184336435, 0.0055059623, -0.0156438779, -0.0135015259, -0.00993486308, 0.0190692879, 0.00322824204, 0.0123832654, 0.0249077845, 0.0111826062, 0.0197520144, 0.0160558689, 0.00422584824, -0.0294043701, 0.00837518368, -0.0128423413, -0.0289806072, -0.00522639742, -0.00457604043, 0.0109707257, 0.0126304599, -0.0106705613, -0.0127246296, -0.00269853952, 0.00369908847, 0.0230243988, -0.00583261205, -0.00336949597, 0.0132896453, 0.0113474028, 0.00436121644, -0.0153966835, 0.006285802, 0.00891665742, -0.0128894253, 0.00597680919, -0.011682881, 0.0139135169, 0.0141724823, 0.00971121062, 0.0133602722, -0.0212940369, -0.00595326675, -0.00526171084, 0.0276386943, 0.0212704949, 0.0199874379, -0.00935219, -0.0231774244, 0.022506468, -0.00758651597, 0.00485560531, 0.00722161, -0.00352840661, -0.0225770939, -0.00606803549, -0.000982156605, -0.0219061375, 0.00951110106, 0.0322059058, 0.00916385185, -0.0159146152, -0.00474377954, 0.000147783299, -0.01344267, -0.0175037216, 0.00278829457, 0.0158675294, 0.00796319265, 0.0159852412, -0.0137251783, 0.0103291972, -0.0127128577, -0.0240602605, -0.0036843745, 0.00982303731, 0.0286981, 0.00396394, 0.0064152847, 0.00911676697, 0.00606215, 0.00555010419, 0.0142431092, 0.0177626871, -0.0197755564, -0.00902848318, 0.00630345894, -0.0101820575, -0.00166856265, -0.00601800811, 0.0218119677, -0.00637408579, 0.0199403539, -0.0118653346, -3.94288036e-05, 0.00773954112, 0.00784548093, 0.00582966954, -0.00940516, -0.0226359498, 0.012595146, -0.0144314477, 0.0185631271, -0.0131954756, -0.0080573624, 0.00284273643, -0.0127481716, 0.000901965483, 0.0145256175, -0.00378737226, -0.00229979143, -0.0087989457, 0.0202581752, -0.0128541123, -0.00290306355, -0.0101585155, -0.00384622812, -0.0239896346, -0.0147728119, -0.031593807, -0.00835164171, 0.0172800701, 0.0301341824, 0.00502923038, -0.0151141761, -0.0181040522, -0.000865180627, -0.0228242893, 0.00885780156, 0.00751588866, 0.0113532888, -0.0165031739, 0.00464372477, -0.00864592101, 0.0102114854, -0.00514988462, -0.00467315223, 0.00143534644, 0.00925213564, -0.00815153122, 0.00316938618, -0.00807501934, -0.0257082246, -0.0246488191, 0.00968178269, 0.0379502364, -0.0100113759, -0.000837224128, -0.0217413418, 0.000365825719, 0.0101644006, -0.0274974406, -0.00351369265, 0.000807060511, 0.00603860756, -0.00927567761, -0.0082751289, -0.0177980009, 0.0062799165, -0.00578552764, 0.0129247392, -0.0243192259, -0.00722749531, 0.00243074563, -0.0117358509, 0.0200345218, -0.0131954756, 0.00771599868, 0.00409930805, -0.0107941581, 0.00288687809, -0.00208496768, -0.0145020755, 0.00372263091, -0.00278388057, -0.0070980126, 0.0116357962, 0.0279212035, 0.00107191165, 0.02688534, 0.0102056, 0.00254257163, -0.0117652789, -0.0208938178, 0.0195636768, -0.00555893267, 0.0144667616, -0.00407870859, 0.0237542111, 0.0108647849, -0.00725692324, -0.0113650598, 0.00999371894, -0.0144314477, -0.00646236958, 0.00229390571, -0.0128070274, -0.00455249799, 0.00623871759, 0.00603860756, -0.0131248487, -0.00277210935, -0.00212763809, -0.0188220926, -0.00327238394, -0.0152907427, 0.00223504985, 0.039409861, 0.0193517953, 0.0187043808, -0.00504100136, -0.00403162418, 0.0163383763, 0.0109824967, -0.019952124, 0.0135015259, -0.0148787526, 0.00663893716, -0.00495271757, -0.00436415942, 0.00485560531, 0.00396688236, -0.00394039741, 0.00214970903, -0.00664482266, 0.000403898099, -0.018162908, -0.0151377181, 0.0143137369, 0.00474966504, 0.0207290221, -0.0183865596, -0.00637997128, -0.00944047421, -0.000234503677, -0.00510574272, -0.0055883606, 0.00814564619, 0.00306933117, 0.00132204895, 0.00771599868, 0.00325767, -0.00665659364, 0.0236365, -0.00136986934, -0.0197873283, -0.0185631271, -0.00425821869, -0.00311053032, 0.00764537137, -0.000265770825, -0.0145256175, -0.0118771056, 0.026037816, 0.0196343027, -0.000764390046, -0.0213999785, 0.0193400234, -0.0271443054, -0.00856940821, 0.0231891945, -0.0112120342, -0.0107823871, 0.0148905236, 0.00979949441, -0.0110825514, -0.000714730413, 0.000415301416, -0.000512045692, 0.00348426471, 0.00200404087, -0.0262261555, 0.0123479515, 0.0168916211, 0.00109618972, -0.0153966835, -0.0414345, -0.0299693849, -0.00326355547, -0.0462135933, 0.00369908847, -0.00499391649, -0.0148669817, -0.00622694613, -0.0135250688, -0.0272384752, 0.00211880961, -0.00790433679, 0.00732755, -0.0098348083, 0.019057516, 0.00334301079, -0.0299458429, -0.00822804403, 0.00251167221, 0.0111472933, 0.000644103449, -0.0317586027, -0.0126657737, -0.0262732394, -0.0239190068, 0.00475555053, -0.000544048555, -0.00885780156, 0.0169269349, -0.0205053687, -0.00814564619, 0.00234981882, -0.0602683648, 0.0264380369, -0.0166797414, -0.00297516189, -0.00891077146, -0.016444318, 0.00219973642, -0.00605626451, 0.03201757, -0.011265005, -0.0294279121, 0.0266263746, 0.039033182, -0.000330880081, -0.00390214124, 0.00321058533, 0.0163030624, 0.0246252771, 0.00159205007, 0.00597680919, 0.01344267, -2.65311028e-05, -0.0058973534, -0.0239543207, 0.00662716571, 0.0129482811, 0.0163148344, 0.00344600854, 0.00356666301, 0.0204112, 0.00382857141, 0.00990543514, 0.0107706161, -0.000565383758, -0.00258377078, 0.000489239057, -0.0172212142, 0.0174213238, 0.0162677504, -0.0211174693, 0.0158793014, -0.00301047531, 0.00772188418, 0.00624460308, 0.00404045219, -0.00376971555, 0.0104881078, 0.00941104628, 0.0162324365, 0.00633877236, -0.0172682982, -0.00367260352, -0.0127364006, -0.0103821671, -0.0155497091, -0.00376088708, 0.0159146152, 0.0035490063, -0.00602095062, 0.014713956, -0.00528525282, 0.00196431321, -0.00560307456, 0.00814564619, -0.00716275396, 0.00734520704, 0.00563838799, -0.00299870432, 0.00301930378, -0.00469080918, 0.0232833643, 0.0157262757, 0.00738640595, -0.0101408586, 0.0128305694, -0.00263821241, 0.00314878649, -0.00545887789, -0.010388053, -0.00843404, -0.016008785, 0.0131483916, -0.0264380369, 0.000851938035, 0.0114474576, 0.00584144052, 0.0199403539, 0.0014942023, -0.0191634558, -0.0151377181, -0.0195519049, -0.0101997145, 0.0265557487, 0.00556481816, 0.013018908, -0.0120065883, 0.0055000768, -0.00898728427, 0.0146786422, -0.00548242, -0.00710978359, -0.00263232668, -0.00681550428, -0.00145815301, -0.000641896331, -0.037243966, 0.00490857568, 0.00823393, 0.0217178, -0.00725103775, -0.0300164707, -0.0117711648, 0.00303990324, -0.0150670912, -0.00407576561, -0.0146904141, -0.0297339633, 0.00859295, 0.0403750949, 0.0353841223, -0.00301047531, 0.0086341491, 0.0102173714, -0.0115828263, 0.0142195672, 0.010388053, -0.000696705829, 0.00630934443, -0.00645648409, -0.00159646419, 0.00609746343, 0.00260142749, 0.00816918816, -0.00535882264, -0.00399925327, -0.0216824859, -0.0231185686, 0.00370497419, 0.0183747876, -0.00998783298, 0.0166679695, -0.0227536615, 0.00248960126, -0.00289717806, -0.0158322174, -0.0077571976, -0.012983595, -0.00901082717, 0.0024072032, 0.0269795097, 0.00296191941, -0.0314290114, 0.00303401775, 0.000970385387, 0.0244133957, -0.0243427698, 0.0133014163, -0.0295691658, -0.00490269, 0.0173624679, 0.0058061271, 0.0243192259, 0.0140194576, -0.0158557594, 0.0017774459, 0.00884603057, 0.000185303885, -6.17986152e-05, 0.0070156143, 0.0109177558, 0.00699795736, 0.00893431436, -0.00491446117, -0.0159617, 0.0262026135, 0.00766302831, 0.0285568461, 0.00663893716, 0.0176802892, -0.00484972, 0.0238483809, 0.0254021734, -0.0196107607, 0.00525288237, 0.0155614801, 0.0287922695, -0.0162324365, 0.0140665416, 0.0175625775, 0.0036166904, -0.00421702, 0.019187, -0.0145020755, 0.00409342255, -0.0139135169, 0.026838256, -0.0194812771, 0.00956407189, 0.0380914882, -0.00390802696, 0.0264380369, 0.00151112326, 0.00311935879, -0.0284626763, 0.0102409134, -0.0122184688, -0.00459664, 0.0131483916, -0.0110060396, 0.010847128, 0.0155026242, 0.019493049, -0.00287363562, 0.040233843, -0.00831044279, 0.00586792547, -0.00414639292, -0.0199874379, 9.01229796e-05, -0.00764537137, -0.0273091029, -0.00234540459, -0.00603272207, -0.00371085969, 0.00263821241, 0.00692733051, -0.0164325461, 0.00761005795, -0.00503217289, -0.00493506109, -0.0095935, -0.0121243, 0.0312171299, 0.0123950364, -0.00611512037, 0.00240278896, -0.0136663225, 0.0109942676, 0.0318998583, -0.00320764235, -0.00309581636, -0.000951993, -0.00431707455, -0.00991720613, -0.0185278133, -0.0133131873, 0.018162908, 0.00406105211, 0.000843109679, 0.0101055447, -0.00946401618, 0.00496743154, -0.00858706515, 0.00557070365, 0.0324413292, 0.012559833, -0.00202169758, 0.0092344787, -0.00902259815, 0.0118476776, 0.00656831, 0.00312818703, 0.0211174693, -0.00595326675, 0.0113415178, -0.0145491594, -0.0018833864, 0.00565898744, 0.00351663539, 0.014278423, -0.0074040629, 0.0102526844, -0.00606215, 0.038609419]
|
24 May, 2024
|
Create Angular Application with SCSS
24 May, 2024
Angular is a popular JavaScript framework for building web applications. It provides a set of tools and libraries for building client-side applications using modern web technologies.
Sass (Syntactically Awesome Style Sheets) is a CSS preprocessor that adds powerful features to CSS, such as variables, mixins, and functions. Sass styles are written in a special syntax called SCSS (Sass CSS), which is a superset of CSS. SCSS files have the .scss extension and are compiled into regular CSS files that can be used in web applications.
In this article, we will go through a step-by-step process explaining how to create an Angular application and use Sass for styling. We will start by creating a new Angular project and installing Sass. Then, we will configure Angular to use Sass and create a Sass file. Finally, we will import the Sass file into an Angular component and run the application to test the Sass styles. Before getting started, make sure you have the following prerequisites:
Node.js and npm are installed on your local machine. You can download the latest version of Node.js from the official website.Angular CLI (Command Line Interface) is installed globally on your local machine. You can install Angular CLI by running the following command in your terminal:npm install -g @angular/cliWe will create an application to use scss by implementing them with 2 different methods.
Method 1: Install and use SCSS, after initializing the Angular project.
Step 1: Create a new Angular project
To create a new Angular project, open your terminal and navigate to the directory where you want to create your project. Then, run the following Angular CLI command:
ng new my-projectReplace my-project with the name of your project. This command will create a new directory with the name of your project and generate all the necessary files and folders for an Angular project inside it.
Step 2: Install Sass
To use Sass in your Angular project, you need to install the node-sass package. Navigate to your project directory and run the following command:
npm install sassThis will install the node-sass package as a development dependency in your project.
Step 3: Configure Angular to use Sass
To configure Angular to use Sass, you need to modify the angular.json file in the root of your project. Open the file and find the projects > [project-name] > architect > build > options section. Then, add the following property:
"stylePreprocessorOptions": { "includePaths": [ "src/styles" ]}This will tell Angular to look for Sass files in the src/styles directory.
Step 4: Create a Sass file
Now, that you have configured Angular to use Sass, you can create a Sass file in your project. Create a new file with the .scss extension in the src/styles directory (or any other directory that you specified in the stylePreprocessorOptions property in the angular.json file). For example, you can create a file called styles.scss.
Step 5: Import the Sass file into your Angular component
To use the Sass file in your Angular component, you need to import it in the component’s styleUrls property. For example, if you have a component called MyComponent, you can import the Sass file like this:
import { Component } from '@angular/core';@Component({ selector: 'app-my-component', templateUrl: './my-component.component.html', styleUrls: ['./styles.scss']})export class MyComponent { // component code goes here}Step 6: Run the Angular application
To run the Angular application, navigate to the project directory in your terminal and run the following command:
ng serve --openThis will start the development server and serve your Angular application. You can now view the application in your browser.
Example: This example describes the creation of an Angular application to implement the scss.
app.component.html
HTML
<div class="center">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<h3>
How do you create an angular application to use scss?
</h3>
<h4>
Method 1: Install and use SCSS, after initializing
the Angular project.
</h4>
</div>
<button (click)="toggleList()">
Show Steps
</button>
<div *ngIf="showList">
<ul>
<li>
Create a new Angular project
</li>
<li>
Install Sass
</li>
<li>
Configure Angular to use Sass
</li>
<li>
Import the Sass file in your Angular component
</li>
<li>
Run the Angular application
</li>
</ul>
</div>
app.component.scss
CSS
$main-background-color: green;
$main-text-color: white;
$main-font-size: 16px;
$main-border-radius: 4px;
@mixin button-style {
padding: 8px 16px;
background-color: $main-background-color;
color: $main-text-color;
border: none;
border-radius: $main-border-radius;
font-size: $main-font-size;
cursor: pointer;
}
body {
margin: 0;
padding: 0;
}
button {
@include button-style;
}
ul {
list-style: inside;
padding: 5;
margin: 10;
}
li {
padding: 5px;
font-size: $main-font-size;
color: gray;
}
app.component.ts
JavaScript
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
title = 'scss-app';
showList: boolean = false;
toggleList() {
this.showList = !this.showList;
}
}
Output:
Method 2: Use or configure SCSS in your Angular project at the time of initialization with the style flag set to use SCSS.
Step 1: Make an Angular Project with the CLI with the style flag.
The below command will create a new project with the name “project-name” and enable SCSS as the default styling language.
ng new project-name --style=scssNow, you can create a new component and it will have a .scss file with the same name as the component. For example, we have made the below project with a style flag set to scss.
Project Structure: The below project will appear after successful installation:
Example: This is another example that implements the SCSS with an Angular application.
app.component.html
HTML
<div class="center">
<h1 style="color: green;">GeeksforGeeks</h1>
<h3>
How do you create an angular application to use scss?
</h3>
<h4>
Method 2: Use or configure SCSS in your
Angular project at the time of initialization
with the style flag set to use SCSS.
</h4>
</div>
<button (click)="openModal()">
Show Steps
</button>
<div class="modal"
*ngIf="showModal">
<div class="modal-content">
<span (click)="closeModal()">
×
</span>
<ul>
<li>
Create a new Angular project
</li>
<li>
Install Sass
</li>
<li>
Configure Angular to use Sass
</li>
<li>
Import the Sass file in your Angular component
</li>
<li>
Run the Angular application
</li>
</ul>
</div>
</div>
app.component.scss
CSS
$button-bg-color: blue;
$button-text-color: white;
$modal-bg-color: rgba(0, 0, 0, 0.5);
@mixin button-style {
background-color: $button-bg-color;
color: $button-text-color;
border: none;
border-radius: 5px;
padding: 10px 20px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
&:hover {
background-color: lighten($button-bg-color, 10%);
}
}
button {
@include button-style;
}
.modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: $modal-bg-color;
display: flex;
justify-content: center;
align-items: center;
}
.modal-content {
background-color: white;
width: 50%;
height: 50%;
border-radius: 10px;
box-shadow: 0px 0px 10px grey;
padding: 20px;
}
li {
padding: 10px;
font-size: 16px;
font-weight: bold;
color: grey;
}
app.component.ts
JavaScript
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
title = 'scss-app';
showModal: boolean = false;
openModal() {
this.showModal = true;
}
closeModal() {
this.showModal = false;
}
}
Output:
Create Angular Application with SCSS
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS
|
https://www.geeksforgeeks.org/how-do-you-create-application-to-use-scss?ref=asr9
|
CSS
|
Create Angular Application with SCSS
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props
|
GeeksforGeeks
|
[-0.0164101403, -0.00239868951, -0.0176372062, 0.0132759521, 0.0756936222, 0.0239942875, 0.0305139907, 0.00980912428, -0.0143921366, 0.0128841782, 0.00600596378, -0.014436489, 0.0188199189, -0.0476337597, 0.0278233197, 0.0045312685, -0.0462440737, -0.0030362457, -0.0140964584, -0.00970563758, 0.00493413024, 0.00471237162, -0.0546413325, 0.00939517561, -0.00496369787, 0.0291982237, 0.0182137787, 0.0369302072, -0.0299669877, 0.00581007684, 0.0150869805, -0.00238575367, 0.00841943733, -0.0252065677, -0.0394730419, -0.000416028488, 0.0406557545, -0.00439082133, -0.0193817075, 0.0247186981, 0.000989598, -0.0121671585, 0.0183172654, 0.0343873762, -0.0011097173, -0.0240829904, 0.0127215553, -0.0452092, -0.00229335413, 0.00238760165, -0.000532682752, 0.0157744326, 0.0483138189, 0.010370913, -0.0236986093, 0.01251458, -0.0342986733, -0.00123353256, -0.00978694856, 0.0319923833, -0.00280709495, -0.0434055626, -0.01459172, -0.00639034528, 0.0149243576, 0.000691609806, -0.00151719886, 0.0132242078, -0.0015818784, 0.0292425752, -0.0498809144, 0.0121006304, -0.00431690179, 0.00181934505, -0.0182285625, 0.026492767, 0.0133720469, 0.00487869047, -0.0408035927, 0.0320219509, 0.0168536585, 0.0153456992, -0.0434351303, 0.0451500639, 0.00617228262, 0.0147321671, 0.00774676912, -0.0466284528, 0.0469832681, -0.00510044908, -0.00552179059, -0.0045386604, 0.0649309382, -0.0181694254, -0.00611684285, 0.0421341471, 0.0210522879, -0.0102452496, -0.0193669237, -0.00755088218, 0.00702974945, 0.0304252878, 0.00483803498, -0.0489938781, -0.00612793118, -0.024496939, 0.0175632853, 0.00490086619, 0.0212001279, -0.0371963196, 0.015050021, 0.00581746874, 0.000936930359, -0.00400274387, -0.0417793319, -0.0089664422, 0.00360542629, -0.0821394101, 0.027793752, 0.0215549413, 0.00586182065, 0.0123593491, -0.0103117777, 0.0312236194, -0.0389703885, 0.0396504477, 0.00934343133, -0.027719833, 0.0219836757, 0.00945431087, 0.0260196831, -0.0161588136, 0.0167206023, 0.00679690298, 0.0424298234, -0.00322658848, 0.0168240909, -0.0258718431, -0.052512452, -0.0181842092, -0.0306913983, -0.0189234056, 0.00614271499, -0.00813115109, 0.0163805727, 0.0135716302, 0.0278824549, 0.0469537, -0.0340029933, 0.0488756076, -0.058810398, -0.00935821515, 0.0124628367, -0.00142849539, 0.0331159607, -0.0164544918, -0.0289912485, -0.0161883812, 0.0225454643, 0.00236912165, 0.0523646101, -0.00926212, -0.0161883812, 0.0168684423, 0.000946170301, 0.00889252219, -0.00450539682, -0.0213183984, -0.0301148258, 0.0437012389, 0.0176963415, 0.0310757793, -0.0066971113, 0.00850814, -0.0158483516, -0.0141334189, 0.00838987, -0.0141925542, 0.0478703044, 0.0132316, -0.0716132596, -0.0149391415, 0.0297008771, 0.00938778371, 0.0204017963, -0.000373293733, 0.00856727641, -0.0291686561, -0.0334116369, -0.0291095208, -0.00218617078, 0.0198695753, 0.0439969189, 0.0124997962, 0.0025372887, 0.000323167042, -0.059963543, -0.00261120824, -0.00853031687, 0.00700387778, 0.00665645581, -0.0279563759, 0.00909949653, 0.0414836518, 0.0391477942, -0.0248369705, -0.00776155293, -0.00717389258, 0.0435829684, -0.0360136069, -0.0298930667, 0.0327020101, -0.00704453327, -0.0278824549, -0.0027257835, 0.0017888532, 0.0104374411, 0.0237577446, 0.0022693302, 0.0122336857, -0.0165579803, 0.0366049632, 0.00236727367, -0.0157300811, -0.0372850224, -0.00637925742, -0.0135790221, -0.0119897518, 0.0178293958, -0.0160405431, 0.00475302711, -0.00332268397, 0.0121893343, 0.0235212017, 0.0214514546, 0.00185076077, 0.010592672, -0.0308392383, -0.01251458, 0.0643395782, -0.00301222177, -0.00509305717, -0.0261970889, -0.048757337, -0.0230481159, -0.0262118727, 0.00664167199, 0.0234916341, 0.0194704104, 0.0155526744, -0.0440856218, -0.00260936026, -0.0199434962, 0.0129285296, -0.0350083, 0.0128767863, -0.0153161315, -0.0147469509, 0.0661727861, -0.00289210258, 0.0392069295, 0.00314527703, -0.00833073352, 0.0612645261, -0.00202539586, -0.0246891305, -0.00101824186, -0.00928429607, -0.00873729121, -0.00675255107, 0.0709036365, -0.0386155732, 0.0168684423, 0.0205348525, -0.0308983736, -0.00424298225, 0.000805723132, -0.00823463779, 0.026256226, -0.014281258, -0.00666754367, 0.00460518803, 0.0329089835, 0.0147617348, 0.00895905, -0.0614419319, -0.0310462117, 0.0207861792, -0.0425480939, 0.00216029887, -0.0141112423, -0.028488595, 0.0126106758, -0.00328942016, 0.0234768502, 0.0213036146, 0.00208637933, 0.00802766345, -0.026492767, -0.00148578302, -0.0210227203, -0.038231194, 0.0395321772, 0.0029327583, -0.0570658967, 0.0685973465, 0.0336777493, -0.0043686456, -0.0221462976, 0.00160220626, 0.0343578085, 0.00390664861, -0.0142369056, -0.022796791, -0.0233733635, 0.0288729779, 0.0284738112, 0.00938778371, -0.0222793538, 0.00185630482, -0.00288655865, -0.0246743467, -0.0310166441, 0.0457709879, 0.0371963196, -0.00470128376, -0.0606140345, -0.0168240909, 0.0166910347, -0.0278676711, -0.00118733279, -0.0217175651, -0.0191008132, 0.016277086, 0.0566519462, -0.0049082581, 0.0108513907, 0.0180955064, -0.0168240909, 0.0208896659, -0.0167501699, 0.00963171758, 0.0260640346, -0.00603183545, 0.0171049852, -0.0481955484, -0.0283703245, 0.0331159607, 0.0492008552, -0.00183228089, 0.00134625984, 0.0030103738, 0.051359307, -0.0358066298, 0.0157300811, 0.00777633721, 0.0104152653, -0.0345647819, -0.00969824567, -0.000695305818, 0.0422524177, -0.0196773857, -0.0133720469, 0.0330272578, 0.046214506, -0.049910482, -0.00552548654, 0.0242751818, 0.0129876658, -0.013512494, -0.0273798034, -0.00051004492, 0.00160128227, -0.0208896659, -0.0420158729, -0.0227228701, 0.0109474855, -0.0247926172, -0.0113983955, 0.0153900506, 0.020800963, 0.0560310222, -0.00119195285, 0.0435829684, 0.0338847227, 0.00596530782, 0.00642730528, -0.0263005774, -0.0107996464, -0.00411731889, -0.0105261439, 0.041690629, 0.0260640346, -0.00705192517, 0.012440661, -0.0191895161, -0.00337257958, -0.00876685884, 0.0260492507, -0.0235803369, 0.0222941376, -0.0138525246, 0.0358362, 0.00726629188, -0.00677842321, -0.0343873762, -0.019426059, -0.0146582471, 0.0092399437, -0.00836769305, -0.0165579803, -0.014207338, -0.0274537224, -0.00303809368, 0.0114649227, 0.0263449289, 0.0089664422, 0.0275128577, 0.00668602344, -0.0125367558, 0.020963585, -0.0278972387, -0.000641714141, 0.0267736614, 0.0172528233, -0.0241421256, -0.0220428109, 0.0171789043, 0.0290503837, 0.0066971113, -0.0589878038, 0.00668971939, -0.00488238642, -0.0288729779, -0.0143847447, -0.0279711597, 0.0109179178, -0.0128693944, 0.0132981278, 0.00820507, 0.0045312685, -0.00223237043, 0.0192190837, -0.0418089, -0.0232403073, 0.0181989931, -0.0204757154, -0.00845639687, -0.0164840613, -0.0303661525, -0.0414245166, 0.0193817075, -0.0403896421, 0.00662319176, 0.0204757154, -0.0215253737, -0.0170162804, 0.00899601, -0.016277086, -0.036545828, 0.0133129116, -0.013364655, -0.00667123962, -0.00345204305, 0.0140594989, 0.00193669228, -0.0386155732, -0.00393991219, -0.0168536585, 0.0177702606, -0.00969085377, -0.0122632543, 0.0450022258, 0.0225454643, -0.0040766634, 0.0160257593, -0.012366741, -0.0263449289, 0.0060650995, -0.00360727427, 0.0247926172, 0.0424298234, 0.0473085158, -0.00292167044, -0.00531481579, -0.0217914842, -0.00382903288, 0.0163510051, -0.0103265615, 0.00928429607, 0.0148282619, 0.0275276415, -0.0140077556, -0.0177998282, 0.00500065787, -0.00639404124, -0.0195886809, -0.0298635, 0.000505886914, 0.0174745824, -0.0126180677, 0.0246595629, -0.0151387248, 0.0376694053, 0.0133794388, 0.017430231, -0.039088659, 0.0181694254, -0.00393252028, -0.00677103084, 0.00206605159, -0.028636435, 0.00962432567, 0.0375807025, -0.0383494645, -0.00023504108, -0.0156413782, 0.0141629865, -0.0223532729, -0.0469832681, -0.000267496391, -0.00816811062, 0.00797592, -0.00140631956, 0.00379576907, -0.0109474855, 0.0565928109, -0.0321993567, -0.0108439988, 0.0166319, -0.0294347666, -0.014052107, 0.00817550253, 0.0183468331, 0.0124110933, 0.0229889806, -0.0135420617, 0.00592834828, -0.00618706644, 0.00228965818, -0.0418976024, 0.00292167044, -0.0314897299, -0.00443886919, -0.00938039087, 0.0150204534, 0.00472715544, -0.0508566536, 0.0186868627, 0.0288138427, -0.0282668378, 0.0243934523, 0.0128176501, -0.0215549413, -0.0224124081, -0.000413487491, -0.0392069295, -0.0527194254, -0.0128546106, -0.0208453145, 0.0132389916, -0.0303957202, 0.0414245166, -0.00266849576, -0.00732173165, -0.0262266584, 0.00520024076, -0.000942936284, -0.0129876658, -0.00639773719, 0.0287103541, -0.00577681325, 0.00821985397, -0.0157300811, -0.00581746874, 0.0186868627, 0.0565632433, -0.0178293958, 0.0399165601, 0.0307505336, 0.00806462299, 0.0185981598, 0.00768024148, -0.0207713936, -0.0191451646, 0.00754349027, 0.00859684404, -0.014207338, -0.0122558624, -0.0319923833, 0.023802096, -0.000345342909, 0.0030787494, -0.0192486513, 0.0262118727, -0.00144789927, -0.00020085329, 0.0164692756, 0.0085524926, -0.00921776798, -0.0172084719, 0.00687451847, 0.0156265944, 0.00804244727, -0.00463845208, -0.016587548, 0.00747696264, 0.00941735134, 0.00452387659, 0.00182488898, -0.0329089835, -0.00739934715, 0.0285033789, -0.0265519042, -0.00528894411, -0.0284294598, 0.00487869047, 0.0049082581, 0.000315775105, -0.00418015057, 0.00581377279, 0.0178441796, 0.0521280691, 0.0093138637, 0.0182137787, 0.00698170159, -0.0184651036, 0.00360542629, -0.00554396631, -0.0209192336, -0.0419567376, -0.0428142063, -0.00759893, 0.00636077765, 0.00151904684, 0.0259161945, 0.0285477322, 0.00589508424, -0.0123371733, 0.00515588885, 0.00225269841, 0.00821246207, -0.0154639706, 0.0813706443, -0.0121745504, 0.0271284766, -0.0260640346, 0.00673776725, 0.0160996784, -0.0101491548, 0.0108366068, -0.00704083731, 0.0147765186, 0.0101639386, -0.00315821287, -0.013364655, 0.00534808, -0.000162507524, -0.0215401575, 0.0147173833, -0.0136751169, -0.0258866269, 0.0291095208, -0.000140562654, 0.0195295457, -0.00818289444, -0.00527046435, 0.00593574, -0.00677472726, 0.0164988451, -0.0117827766, -0.0345056467, 0.00489717023, 0.0101713305, -0.0111618526, -0.0152569953, -0.018435536, 0.0305435602, 0.0100308834, 0.0175189339, -0.00328202825, -0.0058285566, 0.000960030186, 0.0220871624, -0.0124924043, -0.0124332691, -0.046214506, -0.0140373232, -0.011745817, 0.0124258772, 0.00894426554, 0.0248369705, 0.0330272578, 0.00344465114, 0.0137786046, -0.0155970259, -0.0137120774, -0.0400939658, 0.0195295457, -0.00120950874, 0.00313603715, -0.0145178, -0.0391182266, -0.0107700787, -0.00136011979, 0.0402122363, 0.00288286246, 0.0323176272, -0.0150278453, -0.00724042, 0.0242012609, 0.00103394978, -0.0168980099, 0.030632263, 0.00330050802, 0.0156561621, -0.00751392264, -0.0286660027, -0.0379946493, 0.00810158346, -0.00847118068, -0.00616489071, -0.00713693304, -0.0157300811, -0.0337960199, -0.0169127937, -0.00904775318, -0.0296713095, -0.0275572091, -0.0107035516, 0.0121893343, 0.00951344613, 0.025650084, -0.00201800372, -0.0243638847, -0.0306618307, 0.0160848945, -0.00284220674, -0.0132168159, 0.00179439713, 0.0373441577, -0.0271136928, -0.00957258232, -0.0184207521, 0.00708149327, 0.0095504066, -0.00398796, 0.00507457741, 0.00616858667, -0.00322289253, -0.00836030114, -0.0358066298, 0.0495852344, -0.0516549833, -0.00199952396, -0.0182876978, -0.0323176272, 0.0156413782, -0.0229446292, 0.0216288604, 0.025103081, 0.0313123241, -0.0285773, 0.00589508424, 0.0253691915, -0.00554027036, -0.0258274917, -0.0137194693, -0.00172509754, -0.0168536585, 0.0222202186, 0.0261231698, 0.0553805307, 0.0092399437, 0.00724781211, -0.00748805096, -0.00590986805, -0.0304252878, -0.000521594833, 0.014281258, 0.00923255179, 0.00473085139, 0.00904775318, 0.0123297814, 0.0164249241, 0.00287547056, -0.0189825408, -0.0314305946, 0.00793156773, 0.0367528, 0.0160848945, 0.0343282409, -0.0122706462, 0.0307505336, -0.00915124081, -0.0181842092, 8.77217171e-05, -0.0152717801, 0.0144069213, -0.0346830562, -0.0153013477, -0.0347421914, 0.0196034648, -0.00151073083, 0.0282964054, -0.0113540431, -0.0256648697, 0.00773937721, -0.0275424253, 0.00127049233, 0.00488608237, -0.0113910027, -0.0412471108, 0.0441151895, 0.0231220368, -0.000140562654, 0.00787982438, 0.00556244655, -0.0202983096, 0.0111692445, 0.0127141634, 0.00536655961, 0.0301148258, -0.00529633602, -0.0374624282, 0.0306913983, -0.0125811081, 0.00884077884, 0.00320995669, -0.0128398268, 0.00208268338, -0.0219097547, -0.0610871203, 0.0465693176, -0.0150869805, 0.0116349375, 0.0511818975, 0.0026758879, 0.00678581512, 0.00468280353, -0.0176667739, 0.0185094569, -0.00905514508, -0.0422819853, -0.0234324988, 0.0231663883, -0.0109474855, -0.00222313055, 0.050354, -0.000623234257, 0.0192190837, 0.0317558385, -0.00676733488, 0.0108809583, -0.0162475184, 0.0368710719, -0.00636077765, 0.0138377408, 0.0330568254, -0.0292277914, -0.0214071032, -0.0107848626, 0.02442302, -0.00369043369, 0.0280007273, 0.0144217052, -0.0129211377, 0.00852292404, -0.0232403073, 0.0138081722, -0.0227672216, -0.00994957145, -0.00350748282, 0.0110066216, -0.00653448841, -0.0139412275, -0.0234029312, -0.0134016154, -0.0113614351, 0.0146138957, 0.00530742388, -0.00168906176, -0.0170162804, -0.00215660292, -0.0020808354, 0.0349491648, -0.00389925647, -0.0016428621, 0.00285514281, -0.0347421914, -0.0238168798, -0.00547004677, 0.0054072151, -0.0256057326, 0.0157300811, 0.0419863053, -0.00116792892, -0.0118714804, -0.0311053488, 0.00584334088, 0.00775416102, 0.0272319634, -0.00962432567, -0.0110214055, 0.0108957421, -0.0145473685, -0.00359803415, -0.00464214804, -0.0165727641, 0.0197808724, 0.0167353861, 0.021806268, -0.0260788184, -0.00637556147, 0.0170754176, 0.0134016154, -0.0327611454, -0.000165741498, 0.036782369, -0.00439451728, -0.00470128376, 0.0107183354, -0.0150056696, 0.0294791181, -0.00544787105, -0.00331529207, -0.0185390245, 0.0183172654, -0.00526676839, -0.000276274339, 0.00209746743, 0.0192190837, 0.0247630496, 0.00620924262, -0.0161144622, -0.0152422115, -0.00736608356, 0.0485799313, -0.047071971, 0.0080720149, 0.0157596488, 0.0351561382, -0.0350674354, -0.0130615849, -0.00639773719, -0.023728177, 0.00908471271, 0.0102526424, -0.0332342312, 0.0397982858, 0.00171862962, 0.00208268338, -0.000739195559, -0.0093138637, -0.00358509831, 0.00435755774, -0.0181989931, 0.00431690179, 0.0059061721, 0.0115462346, -0.00758414622, -0.0127880825, 0.00279600709, 0.00861902, 0.0387338474, -0.00935082324, -0.00385490479, 0.00252250466, 0.0162918698, -0.00589878, -0.000442362332, -0.00895905, -0.0037662012, -0.0162179507, -0.0259309784, 0.00273502339, 0.0300852582, -0.0113318674, -0.0106074559, -0.0394434743, -0.0332342312, -0.000101119636, -0.00344649912, -0.0276015606, 0.0258422755, -0.0460962318, 0.0456527174, -0.0222054329, -0.0237725284, 0.0446769781, 0.000571952551, 0.00347976293, 0.00827899, -0.00878164265, -0.0390590914, -0.00495261, 0.0602296516, 0.0164101403, -0.00876685884, -0.0222350024, -0.00213257922, -0.0123889167, 0.00790939201, 0.00674515916, 0.0120858466, 0.0345647819, 0.026108386, -0.0142369056, -0.0115684103, 0.00240423344, -0.0240090713, -0.0120119276, -0.0183172654, 0.0200322, 0.0155970259, -0.010673983, 0.00534438388, -0.00365716987, 0.00277198316, 0.00636816956, 0.0149982776, -0.0169127937, 0.0133498712, 0.0231959559, 0.00342062721, 0.0194851942, -0.0150204534, 0.00557353441, -0.0165431965, 0.00485651474, -0.00569180539, 0.0203130934, -0.00720346067, -0.0184503198, 0.0164988451, 0.00808679871, -0.0114057874, -0.0261379536, -0.00420602271, -0.00533699151, 0.0125737162, -0.00520024076, 0.00498957, -0.00095725822, -0.000155346555, 0.00557723036, -0.014281258, 0.0210818574, -0.00795374345, 0.00671189558, 0.0169423614, -0.00694474205, 0.000216907691, 0.00277198316, -0.0255761649, -0.00663058413, -0.0148060862, 0.00704453327, 0.00228596223, -0.0044832211, -0.00861162785, -0.012130199, -0.002476305, -0.0010746055, -0.00405818364, 0.0421045758, 0.00750653073, -0.0160257593, 0.00639773719, 0.0160109755, -0.00198658789, 0.00138506759, 0.00559571, -0.0149169657, 0.0104670087, -0.00154861459, -0.0186425112, 0.0252213515, -0.00429103, -0.0238168798, 0.0189825408, -0.0223237053, 0.0331750959, 0.0553805307, -0.0143182175, -0.020579204, 0.00973520521, -0.00125755637, -0.000769225357, -0.00728477212, -0.00239499356, 0.0188494865, -0.0144143132, -0.016661467, -0.00796113629, 0.0184651036, 0.00675624702, 0.0880529732, 0.00328387623, 0.000770611339, -0.0332342312, -0.00558092631, -0.0332638, -0.00186554471, 0.0225306805, -0.0161144622, -0.0281189978, 0.00259088026, 0.020120902, -0.0168832261, -0.00790939201, -0.00824942254, -0.0148652224, 0.0115831941, 0.00477150735, 0.0187016465, -0.02457086, -0.00326170027, 0.00701866159, 0.0139264436, 0.0180363711, -0.00770241721, -0.0177850444, 0.00124646851, -0.00554027036, -0.035097003, -0.000147723607, 0.0104596168, 0.0169867128, 0.0356587917, -0.00275350339, 0.00991261192, 0.0196773857, 0.0119527914, 0.00598748401, -0.0207861792, -0.00388816861, 0.0258274917, 0.0124554448, -0.00636816956, -0.0162475184, 0.00997174811, 0.0104744006, -0.00858206, -0.0092399437, -3.30977696e-06, 0.0190268923, -0.00360912224, -0.0143921366, 0.00678951107, -0.0147247752, -0.0202391744, 0.0232403073, 0.0225454643, -0.0148134781, 0.0371667519, -0.0265814718, 0.0135272779, -0.00122614054, 0.019426059, -0.00806462299, 0.0243934523, 0.0234620664, 0.00126125233, 0.00994218, -0.0282372702, 0.0261823051, 0.0176963415, 0.00870772358, -0.00550700678, 0.0135051021, -0.0330568254, -0.0121819424, -0.00475672306, 0.00501174573, 0.010370913, -0.0243047494, 0.0230185483, -0.0223532729, -0.00825681444, -0.00380316097, -0.0172528233, 0.016587548, -0.0192486513, 0.00205865945, -0.0182137787, -0.01750415, 0.00310092536, -0.0262266584, -0.0108809583, -0.00980912428, -8.39679924e-05, -0.0235655531, 0.0268475823, 0.0205644201, 0.00422080653, -0.000448368286, -0.00420971867, 0.0216288604, 0.0246152114, 0.00953562278, 0.0201504696, -0.00101177383, 0.0247778334, 0.0178737473, -0.00531112, 0.00910688937, 0.0173119586, 0.00869294, -0.00917341653, 0.00684125442, -0.0110066216, 0.0132611683, 0.0328794159, 0.00805723108, -0.00383642479, -0.0353631154, 0.0171789043, 0.0182433464, 0.00718498044, -0.0247926172, 0.0101121953, -0.0104965763, -0.0193521399, -0.00426885439, -0.00313234096, -0.00124462042, -0.00746957073, -0.00704083731, 0.0180363711, 0.00878164265, 0.0142738661, 0.00232107402, -0.0238316637, 0.0395026095, -0.00123076059, 0.00440560514, 0.0105483206, -0.00167058187, -0.0262118727, -0.00234694593, 0.0125885, 0.00744369905, 0.00191451644, -0.00904036127, 0.0186868627, -0.0106444154, -0.0172676072, -0.0213627517, -0.00409514317, 0.0036627138, 0.0298635, -0.00463475613, 0.00340953935, -0.0120710628, -0.0119971437, 0.000680521887, 0.0282816216, 0.0432872921, 0.0325246044, -0.0022693302, 0.00735129975, 0.0150574129, -0.0187312141, -0.0162327345, -0.00602074759, 0.00787982438, -0.0113614351, -0.021274047, -0.0035167227, -0.0385860056, 0.0222350024, -0.0159370564, 0.00991261192, -0.00215290696, 0.0157892164, 0.0130763687, -0.020800963, -0.0129580973, -0.0163657889, -0.0128915701, -0.0373145901, -0.00662319176, -0.02442302, -0.00251511275, 0.0264484156, 0.0022878102, -0.003951, 0.0200174153, 0.0192190837, 0.0203130934, 0.0223680567, 0.00884817075, -0.0030787494, -0.00371445762, -0.00289764651, -0.00304178963, -0.0278233197, -0.0203870125, 0.0114279632, 0.040537484, -0.0013074521, 0.0238464475, -0.0482546836, 0.00796113629, -0.0148060862, -0.0167945232, 0.00376804918, 0.0158927031, 0.0132168159, 0.00929168798, 0.0285329483, 0.0010228618, -0.00304733356, -0.0150869805, 0.0204017963, 0.00089211663, -0.00442038942, -0.0108809583, -0.0235951208, 0.0095577985, -0.0149908857, -0.00762110576, 0.00782808103, 0.0111840283, -0.0166319, 0.0208157469, -0.0290799513, 0.0482546836, 0.0366936661, -0.00910688937, 0.014510408, 0.0299817715, 0.022648951, -0.0263301451, -0.0182137787, 0.0162918698, -0.00298634986, 0.0355700888, -0.00720715662, 0.0142886499, 0.00557353441, -8.10227575e-05, 0.0274241548, -0.00286992663, -0.023802096, 0.0176076367, -0.00687451847, -0.0243195333, 0.0114870984, -0.0251917839, 0.00659362413, -0.0189086217, -0.00674146321, -0.0118640885, 0.00564745395, -0.00621293858, 0.00408405531, 0.000629702176, -0.0204609316, 0.00560310204, -0.0102230739, -0.0100161, -0.00389186456, -0.0241716933, -0.0313418917, 0.0110140136, 0.00845639687, 0.0104817925, -0.00858206, -0.011132285, 0.00130837609, -0.00172879361, 0.0264484156, -0.0114944903, -0.0264484156, -0.00560310204, -0.0298043638, 0.00650861673, 0.00234509772, 0.00109678134, -0.00784286484, 0.0295973886, 0.00765067386, 0.0021233391, 0.000635708158, -0.00475302711, 0.013586414, 0.00293091033, 0.0139560113, 0.00945431087, -0.00205311552, 0.0180215873, 0.0139781879, 0.0103413453, -0.003474219, -0.000440283329, -0.00335594779, 0.000118964279, -0.0286660027, 0.00966867711, -0.000368904759, -0.00362575403, -0.0104078734, 0.00147192308, 0.0196626019, -0.0134459669, -0.00303254975, -0.0258127078, -0.00649752887, -0.027261531, -0.0129802739, -0.0159222726, 0.00370706548, -0.010060451, 0.00114852504, 0.00452018064, -0.00402491959, -0.0256205164, -0.00177684124, 0.0141777704, -0.00736977952, -0.0157152973, 0.0193077866, -0.00114575308, 0.0237429608, -0.000718867639, 0.000894888595, -0.0203722287, -0.0252509192, 0.00911428127, 0.0100678429, -0.00233400986, -0.0253691915, 0.00459779613, 0.0172676072, -0.000718867639, -0.0193521399, 0.0178589635, -0.0114131793, 0.00356107438, 0.00860423595, -0.0267293099, -0.00445734896, 0.0151091563, -0.0061131469, 0.0200765505, -0.0121375909, -0.0116866818, -0.0143330013, 0.0034132353, 0.0382607616, 0.0162623022, 0.0200174153, 0.0187755674, -0.00569180539, -0.00466432376, 0.00838987, 0.00864119548, -0.00244858512, -0.0145399757, -0.0162623022, -0.0332933664, -0.0126402434, -0.00316006085, 0.0511523299, 0.0427846387, -0.0303070173, 0.00478259521, 0.029567821, 0.0241569094, 0.00721824449, 0.0488460399, 0.0215105899, 0.000165510501, 0.0337368846, -0.00906253699, -0.000296140206, 0.00374956941, -0.00172971759, -0.0131428968, -0.0127363391, 0.00356477033, 0.00187201274, 0.00647165673, -0.00415058294, -0.00867076404, 0.0285329483, -0.011671897, 0.0307209659, 0.0133720469, -0.00991261192, 0.0133942226, -0.0103930896, 0.0179328844, -0.0391182266, 0.00694843801, 0.0026647998, -0.0155674582, 0.00555875059, 0.00323767634, 0.00127973221, -0.00556244655, -0.0207861792, -0.00693735, 0.00647535268, -0.0187755674, -0.00478629116, -0.0192190837, -0.0166023318, -0.012056279, 0.0156265944, 0.0150869805, -0.023417715, 0.0398278534, 0.0311349165, 0.011132285, -0.000107298853, 0.00340399542, -0.00320995669, 0.00108107342, -0.0111175012, -0.0177406929, 0.0392069295, -0.00222128257, 0.0171345528, 0.0119084399, -0.00952823, -0.0116792889, 0.00102193782, -0.00839726161, -0.0315488651, 0.00282557495, -0.0119453995, 0.00631642574, 4.23593701e-05, -0.015582242, 0.00726998784, 0.0202983096, -0.00144974724, -0.001161461, 0.00168721378, 0.0109622693, 0.00224900246, 0.0148578305, 0.0153309153, 0.00168259384, 0.0215697251, 0.0101491548, -0.0257387888, 0.00181934505, 0.0123593491, 0.0270397719, -0.00667123962, -0.00334301172, 0.0276606977, 0.00986826047, -0.00275719934, -0.0228707101, -0.0129433135, -0.00820507, 0.00651970459, -0.00271284766, -0.014739559, -0.00526307197, 0.0133942226, 0.0226933025, 0.0194556266, -0.0420750082, -0.00133517198, -0.00244673714, 0.0188347027, 0.00193299633, -0.00740673905, 0.00544787105, -0.00211594719, 0.0043316856, 0.00343725923, -0.00477150735, 0.00904036127, 0.0137194693, 0.01750415, 0.0383494645, -0.013593806, -0.00134718383, 0.0153161315, 0.0047752033, 0.0387634151, -0.00125940435, 0.00983869284, 0.00748435454, 0.00715910876, -0.00836030114, -0.00620924262, 0.0298043638, -0.0107552949, -0.0119084399, -0.0146582471, 0.00847857259, -0.0228707101, 0.0110140136, -0.00697061373, 0.00423559034, 0.00422450248, 0.00519654481, 0.00994957145, 0.0132537754, 0.0221019462, -0.0408035927, -0.0152717801, 0.00768024148, 0.0199139267, 0.00404339936, -0.0193373542, -0.00760632195, 0.010821823, 0.0156709459, 0.0161440298, -0.0107183354, 0.0137859965, -0.0233290102, -0.0091438489, 0.00270545576, 0.0139929717, 0.0118049523, -0.00608727522, -0.0111470688, -0.00439082133, -0.00588399637, -0.00483803498, -0.0182137787, -0.00932125561, 0.00998653192, 0.0184651036, -0.00489347428, 0.0109918378, 0.0384677351, 0.0015301347, 0.0313123241, -0.0230481159, -0.0137046855, -0.00892209, 0.00217323494, 0.0195886809, 0.00106906157, 0.00637186551, -0.00322289253, -0.0192930028, 0.0119675761, 0.00688930228, 0.0247334819, 0.0278233197, 0.023269875, -0.0154787544, -0.0103783049, 0.00544787105, 0.0033097479, -0.0400052629, 0.0136011979, 0.014281258, -0.0208896659, -0.018435536, 0.00580638088, -0.000869016745, 0.00385490479, -0.00513740908, 0.00544787105, -0.0234324988, 0.0331750959, -0.00998653192, 0.0384973027, 0.0143921366, 0.0294347666, -0.0125515405, 0.017282391, -0.0150352372, -0.000242548529, -0.0280302949, -0.0163066536, -0.00821985397, 0.00140077551, 0.0236246884, 0.0187016465, -0.0038622967, 0.0347717591, -0.00964650139, 0.00516697671, 0.00568071753, -0.00443147728, -0.0210375041, -0.00721454853, -0.0175189339, -0.00584703684, -0.0149317496, -0.0094838785, 0.00152736274, -0.0112579484, -0.00103025383, 0.00294199819, 0.0042392863, -0.00198843586, -0.00484542688, -0.00851553213, 4.32256129e-05, -0.00152459077, -0.0524237454, -0.00529264, 0.0101639386, -0.0195886809, 0.00395839196, 0.00208453136, 0.0282224845, 0.000574262522, 0.00486760261, -0.00613901904, -0.00747326668, -0.000399165583, -0.00664536795, 0.0187164303, 0.00944691896, 0.00957997423, 0.0281337816, -0.0121671585, 0.0124554448, 0.000651878072, -0.0166466832, 0.00272023957, 0.0160257593, -0.00578420516, 0.00561419, -0.0189086217, -0.00152551476, 0.0166023318, -0.0148800062, -0.00863380358, -0.0261379536, 0.00424298225, -0.00108476949, 0.00566962967, -0.00873729121, -0.0133055197, -0.00297895796, -0.00546265487, 0.00348715484, 0.0102378577, 0.010903134, -0.0118049523, 0.0233290102, 0.0184798874, 0.00251696073, -0.0128767863, -0.00536286365, -0.00864858739, 0.00802766345, -0.0126402434, 0.0136899017, -0.0102969939, 0.00126310042, -0.00630164193, -0.00139707956, -0.0117088575, -0.0174893662, -0.00992000382, 0.0091438489, -0.00232846593, -0.0209044497, 0.00642360933, -0.00675255107, -0.00367564987, 0.0123297814, 0.00636077765, -0.00681538275, 0.0289912485, 0.0125885, 0.00514110504, -0.0216732137, -0.00171862962, -0.00784286484, 0.00711475685, 0.0159518402, -0.0200026315, 0.00788721628, -0.0198252238, 0.0206383392, -0.00566962967, -0.0118197361, 0.0115536265, 0.00712214876, 0.00303809368, -0.0249995925, 0.000390618632, 0.0193669237, -0.0123815248, -0.0105483206, 0.0254726782, 0.0180363711, 0.0228559263, 0.0272319634, 0.00871511549, -0.00103394978, -0.0134755345, 0.00213257922, 0.00922516, 0.00103025383, 0.0168240909, 0.00550700678, 3.0780564e-05, -0.00929168798, -0.0120858466, -0.0110361893, -0.00432059774, 0.00440930156, -0.00389925647, -0.00502652954, 0.0162475184, -0.00460518803, 0.0089664422, -0.00657884032, -0.00755827408, 0.00491565047, -0.0110731488, -0.0248961058, 0.0189381894, 0.0229298454, -0.0370189138, 0.00186369673, -0.000303994166, -0.00711845281, 0.021954108, 0.00600596378, 0.00405448768, -1.48560976e-05, -0.00196071621, 0.00584703684, 0.0117014656, 0.0167206023, -0.00130652811, 0.00373293739, 0.0118049523, -0.00480107497, 0.00240423344, 0.000439821335, 0.000767839374, 0.0182433464, 0.0167353861, 0.00362205808, 0.0268623661, -0.00303254975, -0.00374956941, 0.0136159817, -0.0121154152, 0.0183911845, -0.00726259593, -0.000978510128, 0.0208157469, 0.0176076367, -0.0239942875, 0.00599487592, -0.0125441486, -0.00679320702, -0.00575833302, -0.00663797604, -0.0243491, -0.0133498712, -0.0119306156, -0.00685973465, -0.000218524685, -0.00563636608, -0.0145473685, 0.0144069213, -0.0126845958, -0.00210301136, 0.0108883502, -0.00586182065, -0.0266110394, -0.00930647179, -0.0141112423, 0.0326133072, -0.00530372793, 0.00487129856, 0.00764328195, 0.0251474325, 0.00795374345, 0.000399627577, 0.0187312141, 0.0112727322, -0.00618706644, -0.0186425112, 0.0176519901, 0.0208748821, -0.0151978601, 0.0196034648, 0.00311201322, -0.00478629116, 0.00906253699, 0.00705931755, -0.00116053701, -0.00186092476, -0.0121228071, -0.00637556147, -0.0220575947, 0.0053591677, -0.00707040541, -0.00912167318, 0.0100234915, -0.00129636412, 0.0043242937, 0.00549222296, -0.00314158108, -0.013822956, 0.00245967321, -0.0166762508, -0.0243786685, -1.0539311e-06, 0.00153660274, 0.00813115109, -0.0194851942, 0.0149982776, -0.00358879426, 0.0023728176, 0.00764328195, 0.00488977833, -0.0147839105, 0.0152717801, -0.0261527374, -0.00762849767, 0.00413210317, -0.0119453995, -0.00742152333, -0.0139634032, -0.0130689768, -0.0164692756, 0.00452018064, 0.00414319104, -0.00183690095, 0.00367195369, -0.00174634939, 0.0264779832, 0.0129359215, 0.0246152114, 0.0107996464, -0.0121080223, -0.0187312141, 0.00782808103, -0.0152717801, -0.00549591891, 0.00589878, 0.0109253097, -0.00580268493, -0.0253839754, -0.00342617137, -0.00805723108, 0.0141777704, 0.00699279, -0.01459172, -0.0135790221, 0.0125071881, 0.0143108256, 0.0102378577, 0.0138673084, 0.0187016465, -0.00141555944, -0.00585442875, -0.0248517543, 0.00110694533, -0.00495630596, 0.00768024148, 0.0247186981, -0.00702974945, -0.00463106, -0.00997914, 0.00463106, -0.0154048344, -0.00898122601, -0.0153456992, -0.0308392383, -0.0197365209, 0.0048306426, -0.00732542761, -0.0240829904, -0.0028717746, 0.00413949508, -0.00878164265, 0.0258274917, 0.00543678319, 0.00158003042, -0.0166319, -0.000870402728, 0.0090699289, 0.0113910027, 0.000394776609, 0.00554396631, 0.0126328515, 0.0178589635, 0.000862086774, -0.00383642479, 0.00871511549, -0.0369302072, -0.00149225094, 0.00630164193, 0.00850814, -0.00361651415, 0.00480477093, 0.0121671585, -0.00352411461, -0.00621293858, 0.0197660886, 0.00217508292, 0.0192486513, 0.0171936881, 0.00179809309, -0.00633120956, 0.0044832211, 0.00462736422, 0.00372554548, -0.00544787105, -0.0156561621, 0.00631642574, 0.0145547604, -0.0106222397, -0.00221758662, 0.001660418, 0.0399756953, 0.0173267424, -0.00378837716, 0.0116201537, -0.00332453195, -0.0125441486, 0.003954696, 0.00891469792, 0.0130689768, 0.00778372912, -0.00973520521, -0.00524828816, 0.00211409922, 0.0168240909, -0.00598009164, -0.000397548603, -0.0181989931, 0.00852292404, 0.0197956562, -0.0180363711, 0.0117753847, 0.00603922736, -0.0134090073, -0.0109918378, -0.00279046316, 0.0250439439, 0.0120710628, -0.00869294, 0.00422080653, -0.00343910721, -0.0225158967, 0.00839726161, 0.0096538933, 0.00154399464, 0.00737717142, -0.023417715, 0.00500805, 0.00826420635, -0.00109400938, 0.0267884452, -0.00651231268, -0.0126032839, 0.0138820922, -0.0152865639, -0.000985902, 0.00423559034, -0.00380685693, -0.00428733416, -0.0248813219, 0.0123593491, 0.00560679799, 0.00519654481, -0.00864858739, 0.0130172335, -0.0416314937, 0.025103081, -0.00261120824, -0.0196626019, 0.00393991219, 0.00975738093, -0.0243491, 0.00765806576, -0.00984608475, 0.0062351143, -0.0235359855, -0.00202909182, -0.0174154472, 0.0109622693, -0.00250772084, -0.0309575088, -0.0105778882, 0.00943213515, -0.0231368206, -0.00437234156, 0.000260335422, 0.0267293099, 0.000773383304, -0.000767839374, 0.00314527703, 0.0166319, -0.00620185072, -0.0174154472, 0.00312679703, 0.00204202766, -0.00607988331, -0.00473454734, -0.0229298454, 0.0112801241, -0.000125432241, 0.00329866, -0.0128472187, -0.00780590484, 0.0242308304, 0.016971929, 0.00350748282, 0.00593574, 0.00755088218, 0.0107552949, 0.0125219719, -0.0135272779, -0.00142017938, 0.00802766345, -0.0369302072, 0.000505886914, 0.000128088723, -0.00927690417, -0.0118493047, 0.0096538933, 0.01251458, -0.00569919776, -0.0106887678, 0.00717019662, -0.00227302616, 0.00932864752, 0.0252952706, -0.00246521714, 0.0224567596, -0.00124462042, 0.0110140136, -0.00768024148, 0.00165672193, -0.004453653, -0.00193114835, 0.0174893662, -0.0124702286, -0.00802027155, 0.0115831941, 0.00599857187, -0.0073549957, 0.0073549957, 0.0271728281, -0.0164397079, 0.0208896659, 0.0242160447, -0.0196921695, -0.000422727433, 0.00190158049, -0.0236394722, -0.0137490369, 0.014052107, -0.015508322, -0.00165395, -0.0086559793, -0.0117679927, 0.0112949079, 0.00115314499, 0.0159961917, -0.0130246254, 0.0134533588, 0.00657884032, 0.0281337816, 0.0138525246, 0.00928429607, 0.0118862642, -0.0191747323, 0.00926951226, -0.012595892, 0.0141038503, -0.00601705164, -0.00819767825, -0.0125219719, -0.00694843801, 0.00912167318, 0.0164101403, -0.0255465973, 0.00584334088, 0.0213627517, -0.00182581297, -0.0115610184, 0.00752131455, -0.00259088026, -0.00470867567, -0.0152569953, 0.00690039, -0.0230776854, 0.00744739501, 0.00793156773, -0.0138599165, 0.00584334088, 0.00649752887, -0.00477889925, -0.00224345853, -0.00343725923, 0.0051152329, 0.0104226572, 0.00737717142, 0.00793896, -0.0117901685, 0.00940256752, -0.00639404124, -0.0042392863, 0.0121154152, 0.0124924043, -0.00596530782, -0.00550700678, 0.0102082901, -0.00885556266, -0.00626837788, -0.0111101093, 0.0277789682, -0.00544047914, -0.00471237162, -0.0124332691, -0.000109839835, 0.0105261439, 0.00782068912, -0.00738456333, -0.0168684423, 0.0226785187, 0.00823463779, -0.00515958481, -0.00438712537, -0.00622402644, -0.00736977952, 0.013667725, 0.00619445834, 0.00414319104, 0.0182137787, -0.0102600344, 0.0124480529, 0.00537395151, 0.0032062605, 0.0401826687, 0.00139430759, -0.00112727319, 0.0144808404, 0.00942474324, -0.00382903288, 0.00387708051, 0.00815332681, -0.023728177, 0.00826420635, -0.0117901685, 0.00275719934, 0.0241273418, -0.00371260964, -0.0066490639, -0.00895905, -0.00922516, 0.0109622693, 0.00217508292, 0.0124184852, 0.0148504386, 0.0027608953, -1.93316955e-05, -0.00963171758, -0.000303301174, -0.0084859645, 0.0261823051, 0.00999392383, -0.00123538054, 0.00382164097, -0.0173858795, -0.0132611683, 0.0112357717, -0.0136085898, 0.00161237025, -0.00317854085, 0.0106074559, 0.0293312781, 0.00454235636, -0.00246152119, 0.00136843568, -0.003951, -0.0208896659, -0.00528524816, -0.016587548, -0.0138081722, -0.000286900264, 0.00843422115, -0.0130985444, -0.0171641205, 0.0115240579, -0.0220575947, -0.0149243576, 0.00471606757, -0.00776894484, 0.00760632195, 0.00628685812, 0.0213627517, 0.00433538202, -0.0100308834, -0.00748805096, 0.0143256094, -0.0165727641, -0.00154122268, 0.00273871934, 0.00779112102, 0.0157892164, 0.0108292149, -0.00310646929, -0.00619076239, 0.00189418858, 0.00237096963, 0.0311349165, -0.00214921101, 0.0118936561, 0.00705562113, -0.000392004644, 0.000784471282, 0.0127511229, -0.0120858466, -0.000923070416, -0.0044832211, 0.0398869924, -0.00127973221, -0.00570658967, -0.00792417582, -0.0260492507, -0.00545156701, 0.0229150616, 0.0181102902, -0.00385490479, -0.0210079364, -0.0164988451, -0.0149391415, -0.00316560478, -0.0120341033, -0.0215697251, -0.00217138696, 0.00378283323, -0.00568441348, 0.00501174573, 0.0117753847, 0.00838247687, 0.0121006304, -0.00449061301, -0.0035167227, 0.00670819962, -0.0031822368, 0.0200026315, 0.00867815595, 0.00941735134, -0.0124997962, 0.00622033048, -0.013667725, 0.0259605478, 0.0170162804, -0.00922516, 0.0134533588, -0.0137490369, -0.00846378878, 0.00758414622, 0.0095504066, 0.0136899017, -0.00358509831, -0.0197808724, 0.00971302949, -0.0046162759, 0.00831595, 0.000353658863, 0.00872250739, 0.00471237162, -0.00286807865, -0.015966624, 0.0162623022, 0.0157892164, -0.0153900506, -0.030247882, 0.0157744326, -0.00724411616, 0.000612608274, -0.00479737902, 0.0118714804, 0.0236690417, -0.00225454639, 0.0169867128, 0.00746217882, -0.00505240168, 0.0172232557, -0.00413949508, 7.0743321e-05, -0.021954108, -0.0198547915, 0.015966624, -0.0148578305, -0.000898584549, -0.0144143132, 0.00653079245, 0.01459172, 0.0170606337, 0.009136457, 0.0159074869, -0.0238316637, 0.00521502458, 0.00207713945, 0.0113318674, 0.0304548554, 0.0180955064, -0.0358066298, -0.0253691915, 0.0130615849, -0.0185685921, 0.0244082361, -0.0258570593, 0.0127659068, 0.00374402548, 0.014510408, -0.00181102904, 0.0125293639, 0.000996066, 0.00410253508, -0.0095577985, -0.0439082161, -0.00219725864, -0.0181102902, -0.000580268505, -0.00619445834, -0.0121006304, -0.015434403, 0.000616304285, 0.022648951, -0.0114649227, -0.0037846812, 0.00277567911, -0.0125441486, -0.00090551452, 0.0168536585, -0.00211964315, -0.0150426291, -0.018272914, 0.00561049394, 0.000490641047, 0.0122928219, 0.00452757254, -0.0212888308, -0.000337488949, 0.00932125561, -0.00418384653, 0.00589508424, 0.0118493047, -0.00565854181, 0.00131114805, -0.0105113601, -0.0352448411, -0.00165210199, 0.0135494545, -0.00547374273, 0.0240090713, -0.0036738019, -0.0160996784, 0.00183597684, -0.00995696336, 0.00223237043, -0.00189788453, -0.00218617078, -0.0215845089, 0.00281818304, -0.00308059738, -0.00645317696, -0.00667493558, 0.0122484695, -0.00540351914, -0.0110214055, 0.0182285625, -0.00148485904, -0.0088999141, -0.00787982438, -0.00632751361, -0.00238020951, 0.0269806366, -0.0177406929, 0.00892948173, 0.0174450148, -0.00587660447, -0.0111027164, -0.0668824092, -0.0064051291, 0.0047752033, 0.00396578386, -0.0141038503, 0.016129246, 0.0131355049, 0.00934343133, 0.0103561291, 0.0032247405, 0.0256353, 0.0033448597, 0.0040692715, -4.16374969e-05, -0.00238020951, -0.0240386389, 0.00921776798, -0.00221573864, -0.0119380075, -0.00409883913, 0.00427994225, 0.00705562113, 0.0101048034, -0.00775416102, -0.00381055288, 0.014436489, 0.010370913, 0.0183468331, -0.0214071032, -0.0220280271, -0.000582578476, 0.0229446292, 0.00912906509, -0.0141408108, -0.0134163992, -0.00836769305, -0.0124776205, -0.0116792889, 0.00184244488, -0.0176076367, 0.00819028635, 0.00690778205, 0.0161735974, -0.024496939, -0.00437973347, -0.00821246207, 0.00585442875, 0.0104004815, -0.00297711, -0.00599857187, -0.023107253, 0.0163657889, -0.0112949079, 0.00720346067, 0.00451278873, -0.00326170027, -0.0057731173, -0.0045941, 0.00715171685, -0.0112727322, -0.00337442756, 0.00786504056, 0.00364608201, -0.00570289372, 0.00968346186, 0.0085524926, 0.00379576907, -0.0190121084, -0.00759153813, 0.0219097547, 0.00915863272, 0.011213596, 0.020653123, 0.00800548773, -0.0109844459, -0.022959413, -0.0169571452, 0.00757675432, 0.00935082324, 0.00971302949, 0.00844900496, 0.0136011979, 0.0242899656, 0.0194408428, -0.00323582836, 0.00433907798, -0.0174450148, 0.00509675313, -0.0118566966, -0.0299817715, -0.00181010505, -0.0061981543, 0.0065270965, -0.00345389103, -0.00387338456, 0.00111618522, 0.00342986733, -0.00625729, 0.00285514281, 0.00775416102, 0.0093138637, -0.0234620664, -0.00344280316, -0.0173563119, 0.0207566097, -0.0184651036, 0.0169867128, -0.00226193829, 0.00115499296, 0.0166023318, 0.0260936022, -0.00312310108, 0.00368673773, -0.00820507, 0.0104596168, -0.0187755674, -0.00457931636, -0.00385860074, -0.00132131204, -0.014281258, -0.00863380358, -0.0258127078, -0.00810897537, -0.00497848168, 0.0207418259, -0.0100530591, -0.00904036127, 0.00851553213, -0.012595892, -0.0131946402, -0.00821246207, 0.00485281879, 0.0219836757, -0.0292277914, 0.00987565238, -0.0138155641, -0.0118345208, 0.00480107497, -0.00844161306, -0.0152569953, 0.0113910027, -0.00899601, 0.00969824567, -0.0132759521, -0.0279563759, -0.028562516, 0.0265223365, 0.0225306805, -0.0116423294, -0.0050376174, -0.0141703784, 0.00509305717, 0.00496369787, 0.00675994297, -0.0113614351, -0.00325800432, -0.00875207502, -0.00936560705, -0.00654557627, 0.00718128448, 0.0139116598, -0.0111175012, 0.00111618522, 0.0051521929, -0.0170902014, -0.00320071657, -0.00639034528, 0.0153161315, -0.0134090073, 0.00920298416, 0.00348345889, 0.00658253627, -0.0109844459, 0.0118566966, 0.00782068912, -0.00724411616, -0.0123741329, -0.0146508552, 0.00455714064, 0.023949936, 0.00628316216, 0.0269658528, 0.00470497971, 0.00236727367, -0.0217323489, -0.0247186981, 0.0299522039, 0.00666754367, -0.0117162494, -0.00756936241, 0.0108513907, 0.0161735974, 0.0164840613, -0.011132285, 0.027719833, -0.00635338575, -0.0166466832, 0.000540998706, -0.0026149042, 0.00522611244, 0.00278861518, 0.00989043619, -0.00666015176, 0.00449430896, 0.003302356, -0.0170014966, 0.00367195369, -0.0045386604, 0.003320836, 0.0398869924, 0.0161735974, 0.0253544059, -0.00497478573, -0.000334716984, 0.0103043858, -0.00168628979, -0.0164397079, 0.0201652534, -0.0229741968, 0.0151535086, 0.0202391744, -0.00103764574, 0.0100456672, 0.00864119548, 0.00397687173, -0.0115314499, 0.0227820054, 0.0198695753, -0.0162623022, -0.00592834828, -0.00667123962, 0.0312827565, 0.0258422755, -0.0102526424, -0.00714062899, 0.0111027164, -0.00529264, 0.00979434047, 0.0242160447, -0.00265740789, 0.00721824449, 0.00329496409, 0.00323582836, -0.0113614351, -0.0138599165, 0.0224124081, -0.00170938962, -0.00979434047, -0.0166023318, -0.00368673773, -0.00565854181, -0.00188772054, -0.00884817075, -0.000235387575, -0.000233770581, 0.00252065668, 0.00929168798, 0.00864858739, -0.018583376, 0.0113392593, -0.0217323489, -0.00742521929, 0.0134533588, -0.0141703784, -0.017282391, 0.00233216188, 0.00698539754, -0.010215682, -0.00289395056, -0.027645912, 0.000632474199, 0.00439082133, -0.0202096067, -0.0108366068, 0.00616489071, 0.00296787, 0.00277383113, 0.00291612628, -0.0258274917, -0.00836030114, -0.00220834673, -0.0432872921, -0.00516697671, -0.00715910876, -0.00505240168, -0.000132939691, -0.0222202186, -0.021111425, -0.0154935382, -0.0163362212, 0.0126550272, -0.0110731488, -0.00399165601, 0.016587548, -0.0231516045, -0.0145769361, 0.0128767863, -0.00219356269, -0.00532590365, -0.0037403293, -0.0113614351, -0.0114870984, -0.0145399757, 0.00191451644, 0.00047631911, -0.0268919338, 0.00768763339, -0.0115462346, -0.00639404124, -0.0189973246, -0.0255761649, 0.0121745504, -0.0147247752, -0.0132168159, -0.0211262088, -0.01995828, 0.00715171685, -0.010673983, 0.0089664422, 0.00708518922, -0.0203130934, 0.00695952587, 0.0297600124, -0.0145399757, 0.00829377398, 0.00254837656, 0.0163657889, 0.0246152114, 0.00182119303, -0.00361651415, -0.00391404051, -0.00392882433, -0.0154787544, -0.0163066536, -0.00424298225, 0.0116423294, -0.00283296686, -0.0102748182, 0.00169090973, -0.0153456992, 0.00487499451, 0.0192486513, 0.00989043619, -0.00616119476, 0.0111175012, -0.0174006633, -0.0263744965, 0.0180068035, 0.00274795946, -0.0175485015, -0.00883338694, -0.00653818436, -0.00446104491, 0.0222793538, -0.00240423344, -0.000498033, 0.0132168159, -0.0149761019, 0.0332342312, -0.00384751265, 0.00010556636, -0.0333525, -0.00940256752, -0.0129211377, -0.0316671357, -0.00974998903, 0.000780313276, 0.0183024816, -0.00610575499, 0.00336703565, -0.00892209, -0.0123371733, 0.00426885439, 0.0727959722, -0.00280524697, 0.0071480209, -0.0259753317, -0.0115240579, -0.000900432584, -0.0218506195, 0.0415132195, -0.00113743707, 0.0304548554, 0.00241347332, 0.0118566966, -0.00462366827, 0.0100826267, -0.00215290696, -0.00939517561, 0.0042392863, -0.0196478181, -0.00298634986, -0.013586414, 0.0166762508, -0.00410623103, 0.0216879975, 0.0115758022, -0.000267265394, -0.0120267114, -0.0197808724, -0.00393991219, -0.0170014966, 0.024496939, 0.00146915112, 0.021347966, -0.0126993796, 0.00734390737, 0.00549222296, 0.0209488012, 0.00702974945, 0.00698539754, 0.00538873533, -0.0165284127, 0.0128915701, 0.0142147299, -0.0247334819, -0.00148670701, 0.0128472187, 0.0127067715, -0.0172971748, -0.00615380285, -0.0122928219, -0.000933696341, -0.00395839196, -0.00870772358, -0.00909210462, -0.0166319, 0.0187607817, 0.0208896659, 0.0408922955, 0.00393991219, -0.00676363893, -0.0138377408, -0.00640882505, 0.0021769309, 0.00827899, 0.0128102582, -0.00456453254, -0.0186868627, -0.0118419128, 0.0079685282, 0.00145251921, 0.000328018, 0.000810805126, -0.0139042679, 0.0100234915, -0.0204609316, -0.00245412905, 0.0192634352, -0.00272393553, 0.0187164303, -0.0020993154, -0.0138599165, -0.0114205712, 0.0221906491, -0.00462736422, -0.00829377398, -0.0237873122, 0.00206974754, 0.00643839315, 0.000471006148, -0.0129507054, 0.0131946402, 0.00218062685, 0.0460666642, -0.0124332691, -0.00229520211, -0.0140964584, 0.010673983, 0.0116275456, 0.0172232557, 0.0134755345, 0.00113651308, 0.0127141634, -0.00728477212, 0.00592834828, 0.0160405431, 0.0012473925, 0.0312827565, 0.0189973246, 0.0100752348, -0.00271654362, 0.00500805, -0.0137342531, 0.0177406929, 0.00372554548, 0.0381720588, 0.0149095738, 0.0156709459, -0.00834551733, 0.0044462611, 0.0272763148, -0.0177259091, 0.0210670736, 0.0170902014, 0.0126476353, 0.00728477212, 0.0298191477, -0.0110361893, 0.0121006304, -0.00439082133, 0.0061981543, -0.0123002138, 0.00492304238, -0.00852292404, 0.0154491868, -0.0101121953, 0.0237133931, 0.0444108658, -0.0103783049, 0.00983130094, 0.0121006304, -0.00986826047, 0.00638295338, 0.0159074869, -0.0061981543, 0.0160553269, -0.00108938944, 0.00486760261, 0.00294384616, -0.010747903, 0.00895165745, 0.031401027, 0.0108366068, -0.00872250739, 0.0137342531, -0.0115240579, -0.0100974105, 0.00311570917, -0.00761371385, -0.0274832901, 0.00460518803, 0.00258903229, -0.026256226, -0.000915216457, 0.0139116598, -0.0151535086, 0.0157300811, -0.00945431087, 0.013896876, -0.0145991119, 0.00820507, 0.0223680567, 0.00120488869, -0.000815887062, 0.00742152333, -0.00133979192, 0.0153013477, 0.0240238551, 0.00624620216, -0.00874468312, -0.00953562278, 0.00120581267, -0.00470867567, -0.00393991219, -0.0113318674, 0.0472493768, 0.00698539754, -0.0129433135, 0.0108070383, -0.000935082324, 0.0099643562, 0.00109493337, -0.00306211738, 0.00849335641, -0.000269575365, -0.0199434962, 0.0105778882, -0.00808679871, 0.0130763687, -0.00793896, 0.0174745824, 0.0134681426, 0.0115018822, 0.0224567596, -0.0087298993, -0.0161883812, 0.0136603331, 0.018272914, 0.0235359855, -0.00418015057, 0.00599857187, 0.0138599165, 0.0132242078]
|
17 Sep, 2021
|
Adding Angular Material Component to Angular Application
17 Sep, 2021
Angular Material provides Design Components for Angular. This is build and maintained by Angular Team. This provides the Angular developers with common UI components and tools to help build their own custom components. We as a user can integrate this with our Angular Application using the npm packages provided by them. Angular Material also provides CDK in order to integrate common Interaction patterns.
Lists of Some Components provided is:
Form Control
Navigation
Layout
Button and Indicators
Data Table
Popups
Modals
STEPS TO ADD MATERIAL COMPONENT TO YOUR APPLICATION:
Install Angular
Create a Angular CLI Project
Install the Angular Material npm package as well as add corresponding angular/cdk because angular material uses it and is dependent on it:
npm install --save angular-material
npm install --save @angular/cdk
This command will add the latest Angular Material Version package to the project as well as ‘–save’ will add the dependency to package.json file Note if you want to add any specific version to Angular user the command below :
npm install --save angular-material@version
npm install --save @angular/cdk@version
In order to use any Component, Import that Component in app.module.ts file
Add the Imported class to “imports” section in your app.module.ts @NgModule section
Now, we can start using it in our project. Choose a specific selector for the Material Component. Go to app.component.html file or another template of the component in which you want to add the Material Component, write the selector code to it.
Save all the files and then Start the Application using:
ng serve
This will reduce your efforts to implement the component right from the base.
EXAMPLE OF ADDING CARD COMPONENT TO YOUR ANGULAR PROJECT:
Install Angular
Create a new Angular project using:
ng new GfGMaterialCardExample
You will be asked 2 questions as shown below:
Would you like to add Angular routing?
Which stylesheet format would you like to use? (Use arrow keys)
Change the directory level, go to the project folder.
cd GfGMaterialCardExample
Install the Angular Material npm package(@8.0.0 is compatible with Angular 8, Add Angular component based on the Angular Version you are using), Also Install Angular CDK:
npm install --save angular-material@8.0.0
npm install --save @angular/cdk@^8.2.3
Add the Card Component Import to app.module.ts file as shown below:
Remove all the Boilerplate Code in app.component.html File and Add this code:
Geeks For Geeks - Angular Material Card Example
Add the CSS Code you want to apply in app.component.css file:
mat-card {
color: green;
border:1px solid black;
}
Start the Application using ng serve command:
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application
|
https://www.geeksforgeeks.org/adding-angular-material-component-to-angular-application?ref=asr10
|
CSS
|
Adding Angular Material Component to Angular Application
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props
|
GeeksforGeeks
|
[-0.0419194885, 0.00588499801, -0.0173880719, 4.51076594e-05, 0.0212012455, 0.0372674167, -0.0321577638, 0.023209516, -0.015862802, 0.0018922874, 0.013206291, -0.000258779444, -0.0111916643, -0.0749924108, 0.0169940442, -0.00186527742, -0.021773221, 0.00335241505, -0.00995238312, -0.00150461472, -0.0217605103, -0.0111662429, -0.0035208303, 0.00819196831, -0.0209089015, 0.00807121769, 0.0132698435, 0.00211154483, -0.0523167402, 0.015735697, 0.0139307939, -0.00202892604, -0.00283445907, -0.0152908256, -0.0419194885, 0.0213537719, 0.0111344671, 0.00108913775, -0.00103829533, 0.0481222495, 0.0247347858, 0.0072323191, 0.0172355436, 0.0127487099, -0.0082364548, 0.00210042321, 0.00867497, -0.0222943556, -0.0237942021, 0.00885927305, 0.00732764835, 0.0339880884, 0.0497237816, 0.0217096675, 0.0030441836, 0.0563841276, 0.0180871524, 0.0244170222, -0.00412140507, 0.0166000146, 0.0312426016, -0.0347761437, 0.00697175227, -0.00730858278, -0.0278361663, 0.0330729261, -0.0134096602, 0.0411060117, 0.0347507223, 0.0285733808, -0.0593329817, 0.0178583637, -0.0282174852, 0.00231809169, -0.0244932845, -0.0132444231, 0.0190150253, 0.00610107789, -0.017299097, 0.00668576453, 0.0330729261, -0.00118049502, -0.048351042, 0.0318272896, 0.0129203033, 0.0139053725, 0.00221164059, -0.0428346507, -0.0270989537, -0.0136892935, 0.0313188657, 0.00226089405, 0.0343694054, 0.0141850058, 0.0418178029, 0.0228790417, 0.0174134932, 0.00121306581, -0.0342168771, -0.0205402952, 0.00947573595, 0.0109374532, -0.00683829142, -0.0494695716, 0.020756375, -0.0103527661, 0.0409789048, -0.013587608, 0.00952657871, -0.0217223782, -0.00159517757, -0.0165491737, 0.0050461, 0.0355133563, -0.0207690857, -0.00887833908, -0.0121958, -0.0714334548, 0.0194598958, -0.0134096602, 0.0269972682, -0.0214427467, -0.00664127711, 0.0699590221, -0.0225104354, 0.0310392324, -0.0111408224, -0.0247856285, 0.0172228348, 0.0121830897, -0.00198285026, 0.0169686228, -0.0120941158, 0.0270989537, 0.0326661877, -0.0004929321, 0.00751830731, 0.0141595844, -0.0375978909, -0.0236543864, -0.014134163, -0.0220528543, -0.032996662, 0.0183667857, 0.00359391607, 0.00350494194, -0.00822374411, 0.0674677491, -0.00347634312, 0.0349032469, -0.0639596283, -0.0156340115, 0.0156594329, -0.00587864267, 0.0559265465, -0.0346744582, -0.0274548493, -0.0249635763, -0.016790675, -0.028395433, 0.0435972847, -0.0170703065, -0.00210201181, 0.0182523914, 0.0139180832, 0.0250906814, 0.0126279602, -0.0247983392, -0.0325390808, 0.0232603587, 0.0199428983, 0.021391904, 0.0118971011, 0.025738921, -0.0540962219, -0.00129250693, 0.0183667857, -0.00674931705, 0.0121068256, 0.00207182439, -0.0290563833, -0.0152654052, 0.0271243751, 0.011769996, 0.0255482625, -0.0110836243, -0.00341914571, -0.0235527027, -0.0140960319, -0.00891011581, 0.00148396008, 0.0172736757, 0.0136892935, -0.00344456686, -0.00198602793, -0.0108675444, -0.0523675829, 0.00276613957, -0.0148713766, -0.0178837832, -0.0270989537, -0.0124245901, 0.00312044704, -0.000710203603, 0.0424787551, -0.0199810304, 0.0146298762, -0.023120543, 0.0499017313, -0.0110709136, -0.024175521, 0.0389960557, -0.0050842315, -0.0214427467, 0.0139435045, -0.00047823551, -0.00165873044, 0.0119542992, 0.000589453091, -0.0183794964, -0.0160788819, 0.0113696121, 0.0287004858, -0.0101239756, -0.0581127666, 0.0210614279, 0.0166000146, -0.00215126551, -0.00862412713, 0.00426439894, 0.0178964939, 0.0150366146, 0.000220051894, 0.0294631217, 0.0127105787, -0.00628538104, -0.0201716889, -0.0235908329, 0.0323357135, 0.0553672798, -0.00114951294, -0.0366573073, -0.0385130532, -0.069653973, -0.0282174852, -0.00813477, 0.0219511688, 0.0435210206, 0.0194853172, -0.0133206863, -0.0296156481, 0.0274802707, -0.0105434246, 0.00227042707, -0.00691455463, 0.0156721435, -0.00185097801, -0.00663492177, 0.0263108984, -0.0024293093, 0.0211758241, 0.0142739797, 0.00430253102, 0.0231459644, 0.0177185461, -0.0372674167, -0.0119225224, -0.00213855482, -0.013714714, 0.0186337084, 0.0505372621, -0.00391168054, -0.0059866826, -0.0111980196, -0.0409789048, 0.00926601142, -0.0220528543, 0.0146807181, 0.0333017148, 0.0193836316, -0.00410233904, -0.0267684776, 0.0154687744, 0.0175278876, -0.021391904, -0.0432668105, -0.0190150253, 0.00978079, -0.025611816, 0.0165873058, -0.00771532115, -0.0116683114, -0.0089228265, 0.00465524942, 0.0682303831, 0.00553545682, 0.000380324345, 0.0314968154, 0.00260884617, 0.0116428901, -0.0218876153, -0.0138163986, 0.0180744436, -1.78742503e-05, -0.0440294445, 0.0419703312, 0.0630953088, -0.00523358071, -0.0426821224, -0.000245274452, 0.023120543, -0.00235463469, -0.0478934608, -0.00324278628, -0.0374962054, 0.0487832, -0.00471562473, -0.0110200718, -0.00898637902, 0.00412776042, -0.0129139479, -0.0321069211, -0.0183922071, 0.00701623922, 0.0399366394, -0.000313991, -0.0383605249, -0.0366318859, 0.00733400369, 0.0183413643, -0.0192565266, -0.0173880719, 0.00983798783, 0.0289292764, 0.0126216048, 0.0179600473, 0.0155069055, -0.0174262039, -0.0144519275, 0.0184049178, -0.0104290294, -0.0045059, -0.00806486234, -0.0116301794, 0.0107277287, -0.0285988022, 0.00802673, 0.0290309619, 0.0274802707, -0.0267430581, 0.00074118562, 0.00338419154, 0.0456818193, -0.0377249978, 0.0591804534, -0.00998416, 0.0142231369, -0.035691306, -0.0112107303, -0.012824974, 0.0236543864, -0.0398603752, -0.0047696447, 0.000174273955, 0.0146680074, -0.0117445746, -0.0523675829, 0.0343948267, -0.0179600473, -0.0210487172, -0.0167271215, 0.0160280392, 0.0360217802, -0.0206292681, -0.0139053725, -0.0127296448, 0.0101049095, 0.0129838558, -0.00309343706, 0.0155069055, -0.0279378518, 0.0485035665, 0.00099063071, -0.00338101387, 0.0531302169, 0.0290563833, 0.00937405135, 0.0108929658, -0.0214173254, 0.00346363266, 0.00513189612, 0.0557740182, 0.00900544506, 0.0163585152, 0.0119797206, -0.0245441273, 0.0066158562, 0.00585322129, 0.0788055882, -0.0183794964, 0.0133588184, 0.0298952814, 0.0103527661, -0.0050842315, 0.00692091, -0.0431905463, 0.0138036879, -0.0185574442, 0.00394663448, -0.0108611891, 0.0279632732, -0.00172069459, -0.0199174769, -0.0200191606, -0.0021655648, 0.0144900596, 0.0123483269, 0.0590787679, 0.00631398, -0.0114712976, 0.0534352735, -0.0133842388, -0.00730858278, -0.0116174687, 0.00233080238, 0.0141595844, -0.0262346342, 0.00178265863, -0.0111408224, 0.00384812756, -0.0582652912, -0.013333397, -0.026412582, 0.0213664826, -0.0099078957, 0.00300922943, 0.0267430581, 0.00238164468, 0.00870674662, -0.00255323737, -0.0206165593, -0.00105656683, 0.0237433612, -0.0353862494, -0.0738230422, 0.0233874638, -0.0454276092, -0.0125453407, -0.014807824, -0.0417923816, -0.0501813628, 0.0179092046, -0.0413602218, -0.0248873122, 0.00092231133, -0.0134986341, 0.0325390808, 0.0241501, 0.0145663228, -0.0205021631, 0.00581191201, 0.0443599187, -0.000821421156, 0.00413411576, 0.0279124305, -0.040292535, -0.0370132029, 0.0114268102, -0.00412140507, 0.0295902267, -0.0213537719, 0.00610107789, 0.0333017148, -0.012024207, 0.00634893402, -0.0123673929, 0.00383223942, -0.0237687826, 0.00525264675, -0.00409598416, 0.013079185, 0.0486306734, 0.0154941948, -0.00666034315, -0.0180998631, -0.0282937475, 0.0025675369, -0.000607327325, -0.0114585869, 0.0250017084, -0.000356492, 0.0104862275, -0.0177821, -0.0147442715, 0.00971088186, -9.15062337e-05, -0.0347253, 0.00253893808, -0.0269972682, -0.000953293405, -0.0132952649, 0.0183032323, 0.00393710192, 0.0214300361, -0.00502067851, 0.0118526146, -0.0169050694, 0.0136130294, -0.0212902185, 0.0035398961, -0.0194344744, 0.00898637902, -0.00787420385, 0.060298983, -0.0103972536, -0.0125707621, 0.0187989455, 0.0326661877, -0.0140451891, -0.0105942674, 0.00922152493, 0.00545283826, -0.000597397215, 0.00934863091, -0.0248491801, -0.00348905381, 0.0275819562, -0.0280395355, 0.0349540897, 0.00535115367, -0.0144519275, -0.0142994011, 0.0155450376, -0.00887198374, -0.0089228265, 0.0242899153, 0.0142739797, -0.0259422902, 0.00528124534, 0.00685735699, -0.0489611477, 0.0030251178, -0.0139689259, 0.0176295731, -0.010715018, 0.00566256279, -0.0120750498, -0.0375470482, -0.00427075429, 0.0217223782, -0.00722596375, 0.0210741386, 0.0089418916, -0.0159136448, -0.0129711451, 0.00688277837, -0.0144519275, -0.0371403098, -0.00210360065, -0.0132317124, 0.00302194012, -0.0452750809, 0.0180236, 0.0252177883, -0.00720054284, -0.0218749065, -0.052825164, -0.00338736922, -0.0038036406, 0.000515175634, 0.0441565514, -0.0160407498, -0.0141595844, 0.0119860759, 0.00116857886, 0.0219257474, 0.0374453627, -0.030124072, 0.000996986, 0.00910713, 0.0220782757, -0.00298221945, 0.0340135098, -0.0140833212, -0.000241501, -0.00533844298, 0.00635846704, -0.00540199596, -0.0454784483, -0.00660950085, 0.0172863863, 0.0263108984, 0.0156721435, -0.0103400555, 0.011096335, -0.00280586025, -0.00957742054, 0.0144392168, 0.00435655098, -0.0234764386, -0.0205148738, 0.0150111932, 0.0194598958, 0.012678802, 0.00167779636, -0.0035907384, -0.00289165671, 0.0161043033, 0.00735942507, -0.00576742506, -0.048351042, -0.0053352653, 0.010149397, -0.00616780808, -0.0121004712, -0.0138926627, -0.0181634165, 0.0164220668, -0.0136257401, 0.000101486025, -0.00922152493, 0.0159899071, 0.0507660508, 0.0255863946, 0.0300986506, 0.000763429096, 0.00475693401, -0.00319512165, 0.00322530931, -0.0139816366, -0.00972994789, -0.0423262268, -0.026412582, -0.00108596007, 0.00748653058, 0.000146866761, -0.0112997042, -0.0151637206, 0.016498331, -0.00753737288, -0.00431841891, -0.00245155278, -0.0316239186, 0.0743823051, -0.00613285415, 0.0410805903, -0.0371403098, 0.00978079, 0.00685735699, -0.0113696121, -0.0155323269, -0.0367335714, 0.010568846, 0.0106069781, -0.0101811737, -0.0390723199, -0.00364793604, 0.000896890182, 0.00485544093, -0.0106514646, 0.00857964065, -0.0163076725, 0.0131808696, -0.0541470647, 0.0296156481, 0.0221799593, -0.00694633136, 0.022573987, 0.0130156325, -0.0163330939, 0.0150366146, -0.00699081831, -8.10299389e-05, 0.00228154892, -0.0105434246, -0.0359963588, -0.0126088941, 0.0221036952, 0.0153289577, 0.00282810372, -0.0278615877, -0.012297485, -0.0168033857, 0.0252813399, -0.0221799593, 0.00730858278, -0.0511473678, -0.0300478078, -0.00713699, 0.0163458046, 0.0215571411, 0.001336994, 0.0237179399, 0.013206291, 0.00648875, -0.0240229927, -0.00300287409, -0.0306833368, 0.0494949929, 0.00772167649, 0.00914526172, -0.00625996, -0.0387418419, 0.00570704974, -0.0016476087, 0.0501813628, -0.00105021161, 0.0341151915, -0.0152272731, 0.0226375405, 0.00847795606, -0.0145027703, 0.0103400555, 0.0184938926, -0.0244424418, 0.00412140507, -0.024683943, -0.0111026904, -0.0312171802, -0.0130410539, -0.0151255885, -0.00774074253, -0.0105561353, -0.0141850058, -0.0242009424, 0.00725774048, 0.0085732853, -0.0562824421, 0.0025675369, -0.014261269, 0.00267081033, 0.0104544507, 0.00347316568, -0.0132571338, -0.0245059952, -0.015735697, 0.0211504027, 0.0378775224, 0.00884656236, 0.00642519724, 0.00280744908, 0.0168033857, -0.0363268331, -0.0282683261, 0.0367844142, -0.00227519358, 0.010568846, -0.00546554895, 0.0333271362, -0.0172355436, -0.00555452285, -0.0180363115, 0.0557740182, -0.0227392241, -0.00330157275, -0.0340389311, -0.00717512146, 0.00859870669, -0.00492217159, 0.0308358632, 0.00220528548, 0.00331110577, -0.0251542348, 0.0218240637, -0.000952499, 0.0109628737, -0.0359709375, -0.00565938512, 0.00603116956, 0.00378139713, 0.0306579154, 0.0456818193, 0.0227646455, 0.0181252845, -0.00737849064, -0.0268955845, 0.0135113448, -0.0142485583, 0.0108039919, -0.0271243751, 0.0118271932, -0.0185193121, -0.000284995, 0.0290563833, 0.00403878652, 0.00349223148, 0.0172482543, -0.0179473367, 0.00978714507, 0.0367589928, 0.0303528607, 0.0143502429, -0.0061773411, 0.0185574442, 0.0190658681, -0.016790675, 0.00788691361, 0.00558947679, -0.00310138124, -0.0297681745, 7.61145202e-05, -0.0418686457, 0.030632494, 0.0290818028, 0.0032888623, 0.01822697, -0.0170194656, 0.0279632732, -0.034343984, 0.00454403181, 0.0154179316, -0.0100286463, -0.0334796645, 0.0122212209, 0.00849702209, 0.00304577244, 0.0294122789, 0.0170194656, 0.0173499398, -0.000476646703, 0.00541788433, -0.0198412128, 0.00932320952, 0.0219638795, -0.0393519513, 0.0201462675, -0.001170962, -0.0150493253, 0.0245187059, -0.000768592814, -0.0120432731, -0.0289546978, -0.038563896, 0.00658407947, -0.00550050288, 0.000795602798, 0.0109946504, 0.0271497965, -0.00595808355, -0.00294567668, -0.0420720167, -0.00936134066, -0.0139053725, -0.0357675664, -0.017553309, 0.0264888462, 0.00826823153, -0.0182523914, 0.0334542431, 0.0216842461, 0.041055169, 0.0183413643, -0.0131681589, 0.0354370922, -0.00778522948, 0.0243916, -0.011496718, 0.0368606783, -0.00940582808, -0.00920881424, -0.00521451468, -0.0170067549, 0.011623824, 0.0285479594, 0.0373182595, 0.0276327971, -0.0102510815, 0.0305308104, -0.030251177, 0.0315984972, 0.00475057866, -0.0247093644, -0.00175088225, 0.0121386023, 0.00671754079, -0.00648875, -0.00847795606, -0.00742933294, 0.00144900591, -0.0012583473, 0.0118208379, 0.0162186977, 0.0197649505, 0.0156213008, 0.0192438159, 0.0105052935, -0.00458216341, -0.0141977165, -0.0100159356, -0.0365556255, -0.0319289751, -0.00798224378, 0.031852711, -0.0387418419, 0.0131554492, 0.0453513451, 0.0335559286, 0.00631398, -0.0255482625, 0.018735392, 0.00178265863, -0.00215603178, -0.024302626, -0.00743568828, 0.0050461, -0.00561172049, 0.0213791933, 0.0227392241, -0.0119034564, 0.0242772046, -0.010422674, 0.0130918957, -0.00131633924, -0.016498331, 0.0312171802, 2.70844557e-05, -0.0411060117, -0.0248110499, 0.0171465706, -0.0145790335, -0.00386401592, 0.0399620607, -0.0076899, 0.00344774453, -0.0311663393, 0.0202225298, -0.0146680074, 0.0476138256, 0.0175278876, 0.0133842388, -0.00825552084, 0.0148840873, 0.00199556095, 0.020464031, -0.0125961835, -0.0115984026, -0.0110391378, 0.0501051024, -0.051859159, 0.00321577629, 0.0359455161, -0.014134163, -0.00206705788, 0.0249000229, 0.00528760068, -0.0257007889, -0.00472515775, 0.0304799676, 0.00731493812, 0.0155069055, 0.0199047662, -0.0274040066, -0.00421037897, -0.00688913371, 0.0158882234, -0.0311154965, -0.00509376451, -0.00833813939, 0.0131681589, 0.0124563668, 0.00407691812, -0.0273277443, 0.00331110577, 0.00707343686, 0.0134350816, 0.0131300278, -0.00744839897, -0.00474422332, 0.00688913371, -0.0263617393, -0.014007058, -0.0295648053, -0.00641884236, -0.0263363179, -0.0223070662, 0.0327170305, 0.0180236, -0.0109628737, -0.043038018, -0.0449954495, -0.0218876153, 0.0129457247, -0.0209343228, -0.0118144825, 0.00728951674, -0.00283445907, 0.0486815162, 0.00197808375, -0.00591041893, 0.0264888462, 0.0150493253, -0.007003529, -0.0130664743, 0.00156816759, -0.0347253, -0.0142358476, 0.0407755375, 0.0108739, -0.0236543864, -0.00992060639, 0.000693918148, -0.0241373889, -0.00925965607, 0.0201716889, -0.000411504967, 0.0076581235, 0.016790675, 0.00436926121, -0.00716876611, 0.0477409326, -0.031522233, 0.00550368056, 0.000128297397, 0.0147569813, 0.00506198779, 0.0320815, 0.00127026346, 0.0386401601, 0.00301876245, 0.0095392894, 0.021900326, 0.00109469856, 0.00195742911, 0.00246903, 0.00378775247, 0.026285477, 0.00522722537, -4.61503223e-05, -0.00440103794, -0.0322086066, -0.0263363179, 0.015443353, -0.004292998, 0.00975536928, -0.00225295, -0.00714970054, -0.00213061064, -0.0398349538, 0.00724503, -0.00502067851, -0.00302988407, 0.002388, -0.0081474809, 0.0083254287, -0.0317001827, 0.0245314166, -0.00829365291, -0.0024483751, 0.0013838642, 0.00258819154, -0.0044550579, 0.00806486234, -0.00282333721, -0.000572373217, -0.0154179316, 0.00365429139, -0.00882114191, 0.00938676205, -0.000472674641, 0.0051223631, -0.00614556484, -0.0156721435, -0.000376749493, -0.00329839508, -0.0207945071, 0.0375470482, 0.0237814933, -0.00807757303, 0.000613285403, 0.0403179564, -0.00442645885, -0.00908170827, 0.00942489412, -0.0156085901, 0.0261075292, 0.00951386802, -0.0108675444, 0.00384495, -0.0238577556, -0.026285477, -0.00265809963, -0.00666034315, 0.024302626, 0.0226756725, -0.0398095325, -0.0134859234, 0.00110264274, 0.0100286463, -0.00602799188, -0.0378775224, -0.0188243669, 0.0307596, -0.0016889181, -0.017845653, 0.0139307939, 0.00523675838, 0.00745475432, 0.0635020509, -0.00737213576, -0.0237433612, -0.0235654134, -0.020464031, -0.0501813628, -0.0312426016, -0.0163330939, 0.00118605583, -0.0254592896, 0.0144519275, -0.00150302588, -0.00990154, 0.00878936518, -0.00408645114, -0.00534162065, 0.028395433, 0.0229680147, 0.0164093561, -0.0181888379, -0.00456945319, 0.0172482543, 0.0119987866, 0.0083953375, 0.000444473029, 0.000119260978, -0.0220909864, 0.000617654703, -0.0258151852, 0.00981256645, 0.00285193603, 0.0128821712, 0.00514460681, 0.00753737288, 4.39160431e-05, 0.0421991199, 0.00440739328, -0.0143756643, 0.00599621562, 0.000892123731, 0.0188243669, -0.00857964065, -0.0252686311, -0.0286750644, 0.0232857801, -0.00498572458, 0.00739120133, -0.00644426327, 0.00257230341, -0.00348587614, -0.00350811961, 0.00746110966, 0.0212393776, -0.00156499, 0.0033269939, 0.02350186, -0.00583733339, -0.00583415572, 0.00530666672, -0.0323865525, 0.0119987866, 0.0121576684, 0.0221291166, 0.00236257887, 0.0163585152, 0.0162186977, -0.00737849064, 0.0077598081, -0.019281948, 0.0308104418, -0.0120369177, 0.00509376451, -0.028141221, 0.000396609772, -0.037801262, -0.00581508968, -0.0189387612, -0.00292502181, 0.00590724126, -0.0299715437, 0.0150239039, 0.00395616749, -0.0119670099, 0.0160661712, -0.0135240555, 0.0122720636, -0.0126152495, -0.0106006227, -0.0131681589, -0.0183667857, 0.0209470335, -0.00578331342, -0.0104989382, -0.0190404467, 0.0120814051, -0.038563896, 0.017299097, 0.0146171656, -0.014261269, -0.00889740512, 0.0280649569, 0.0373691022, 0.0105370693, 0.0102892136, 0.0159899071, -0.0130410539, 0.0231968053, 0.0113823228, -0.0153925102, -0.00398794422, 0.0128186187, 0.00827458687, 0.0159390662, -0.0104925828, 0.00979985576, 0.0189514719, 0.0313188657, 0.0152145624, 0.0135367662, -0.0148586659, 0.00686371233, 0.0205657165, 0.00753737288, -0.0136892935, 0.0117191533, 0.00890376, -0.0111535331, -0.00578013575, -0.00525900209, 0.0141850058, -0.015735697, 0.00123848696, 0.0200954247, -0.00458534108, 0.00148157682, 0.000749129744, -0.0266413726, 0.016790675, -0.0136765828, 0.00395616749, -0.00218304177, -0.00167302985, 0.00131713366, -0.0111408224, -0.002869413, -0.00621229503, 0.00664763246, -0.00200509373, 0.0115475608, -0.0309121273, -0.00711156847, -0.0101748183, 0.0235527027, -0.00624407176, -0.00865590386, 0.00812841486, 0.0133969495, 0.0265905298, 0.0229934361, 0.00699717365, 0.00948844664, 0.0178710725, 0.0176549945, 0.0119479438, 0.00319512165, 0.00486815162, -0.00904993154, -0.0321577638, -0.0159771964, -0.00413411576, 0.0229680147, -0.0122529976, -0.00268193218, -0.00523358071, 0.00976172462, -0.011204375, 0.00914526172, -0.00813477, 0.0152018517, 0.0384622104, -0.0278615877, 0.012824974, -0.0188624989, 0.000705039885, -0.0221672487, -0.021480877, -0.00824281, 0.000365429121, 0.0030076406, -0.00401654281, 0.00591995195, -0.00458216341, 0.00398476655, 0.00514142914, 0.00995238312, -0.00558629911, -0.00579284597, -0.000742774457, -0.00899273437, 0.00209247903, -0.018315943, -0.00653959252, -0.00333970459, 0.0312426016, -0.0166889895, 0.0258406065, -0.0367081501, 0.0119670099, 0.0104163187, -0.00629173638, 0.00819196831, 0.0199428983, -0.000556485, 0.017171992, -0.00590724126, -0.0130537646, 0.0200700033, 0.00497936923, 0.0246076807, -0.0119225224, -0.00781065039, -0.0386147387, 0.00766447885, 0.0114013888, 0.00101843511, -0.0142866904, -0.00835085, -0.0127995526, -0.0198157914, 0.0205402952, -0.0357167274, 0.0572992899, 0.0386147387, -0.0110836243, -0.00282810372, 0.00735942507, 0.00125516963, -0.00315857888, -0.00910713, 0.00429935334, -0.00575153669, -0.0171084385, -0.00647603953, -0.00121465465, -0.0268701632, -0.00013882335, 0.0168923587, -0.0206801109, -0.0231586732, 0.015062036, 0.0169559121, -0.0177948102, 0.00267557683, -0.00300446292, 0.0114585869, 0.0176549945, -0.00411187205, 0.025319472, -0.0117827067, -0.020756375, 0.00891647115, 0.01582467, 0.0174516235, -0.00634893402, 0.0157865379, -0.00538293, -0.0342931412, -0.0208072178, -0.00881478656, 0.00200986024, -0.0297681745, -0.0142485583, -0.00247856276, -0.0257135, 0.0127804866, 0.0176549945, 0.0293614361, -0.00969181582, -0.014515481, -0.00640295399, -0.00340007967, -0.000490151695, 0.00314110168, 0.00593584031, -0.002341924, 0.0198920555, 0.0213029291, 0.0192565266, 0.00365111372, 0.00856693, 0.0163458046, -0.000739199575, 0.0113886781, -0.0176931247, -0.0270226896, 0.0149857718, 0.0321323425, 0.0168033857, -0.0117763514, -0.0121131809, 0.0085160872, 0.013587608, -0.00239435514, 0.0161551461, -0.0242899153, -0.0265905298, 0.00276613957, -0.0102065941, 0.00860506203, -0.01822697, -0.00490310555, -0.0136892935, 0.0207309537, -0.000767401187, -0.00906899758, -0.0118907467, -0.00657772459, -0.00805215165, -0.00633940101, 0.000445267448, -0.0190912895, 0.00972994789, 0.0197776593, 0.00612332113, 0.00424533337, 0.000691932102, 0.000314984034, 0.0135240555, 0.0120432731, 0.0331237689, 0.0116556007, -0.0154941948, -0.0474104583, 0.0175914411, 0.0162314083, 0.0126470253, -0.012278419, -0.0196124222, -0.00915161613, -0.015443353, -0.0191421304, 0.0392502658, -0.00230061472, -0.00857964065, 0.00633304566, -0.0172101241, 0.00278679444, 0.0134986341, -0.0396061614, 0.0120178517, 0.00153321354, -0.0155196162, -0.0237814933, -0.0214427467, 0.0109819397, 0.0142231369, 0.00985705387, -0.00594219565, 0.0121767344, 0.00181920151, 0.0178964939, 0.0369623639, 0.0202225298, -0.00181761268, 0.00836991612, -0.0207309537, -0.0261329487, -0.0218876153, 0.022828199, 0.0227392241, -0.0144137964, -0.00361615955, 0.0122402869, 0.0225485656, 0.0312934443, 0.0316493399, 0.0108294133, 0.0178329423, 0.0257897638, -0.00690819928, -0.00190658681, -0.00289165671, -0.0108611891, 0.00297427527, -0.0137401354, 0.01054978, -0.0120178517, 0.0176041517, -0.0144010857, 0.00721960841, 0.0209343228, 0.00282333721, 0.0231459644, 0.0102574369, -0.0230569895, 0.00430570869, -0.0347761437, 0.0205911379, -0.016244119, -0.0134986341, 0.0283445902, 0.018989604, 0.0174389146, -0.00257548108, 0.00513507379, 0.000523516966, -0.00262632337, -0.00147283834, -0.0113124149, -0.00908806361, 0.016625436, 0.00187957683, -0.0181761272, -0.0318018682, 0.0133842388, 0.00790598, -0.0187735241, 0.0190404467, 0.0254084468, -0.00310297, 0.0196759757, 0.00714970054, -0.00148396008, 0.0156340115, -0.0123101957, -0.045859769, 0.0257643424, -0.0133715291, 0.00268352078, 0.00317923352, -0.0282429047, -0.0284462739, -0.0293360148, 0.0151001671, -0.03645394, -0.00159358873, -0.0132698435, 0.0223960392, 0.00553227914, -0.00395616749, 0.000838103762, 0.00937405135, 0.00958377589, 0.00274230726, -0.0180744436, 0.0245059952, 0.00693997601, 0.0152526945, -0.0195615795, 0.00889105, 0.00199397211, 0.000634734519, -0.0146171656, 0.00514778448, 0.00704801595, 0.018646419, 0.008058507, -0.00275819562, 0.00684464676, -0.0142231369, -0.00614556484, -0.0096282633, -0.00330157275, -0.00770261046, 0.002905956, 0.00541152898, -0.0102129495, -0.0047696447, -0.000296315353, 0.012678802, 0.00824916549, -0.0266159512, -0.0102510815, -0.00247697392, 0.00584368827, 0.00732764835, -0.00803308561, 0.000911984, -0.00919610355, 0.00452814344, 0.00630444707, 0.00296633132, 0.0169559121, -0.00139816361, 0.014388375, 0.104023375, -0.00555770053, 0.00152288622, -0.0165618844, 0.017845653, 0.0211504027, -0.00410233904, -0.00784242712, 0.0163330939, -0.00654594786, -0.0226248298, -0.0236035436, -0.00255323737, -0.0059644389, -0.00903086644, -0.0114712976, -0.00465207174, -0.0153289577, 0.0191294216, 0.00824916549, 0.0203877687, -0.00652688229, 0.0339118242, 0.00474422332, 0.00688913371, 0.0131046064, -0.012805908, 0.00807121769, -0.0124182357, 0.0247093644, 0.00257707, -0.00538928527, -0.0168160945, -0.00798224378, 0.0397332683, 0.0278107449, -0.0110073611, 0.000759457063, 0.00381317362, -0.000718544878, -0.00739120133, 0.00227519358, -0.00812841486, -0.0063521117, 0.00669847475, 0.00808392838, -0.0077598081, -0.00254052691, -0.0283445902, -0.00676838309, 0.0173753612, 0.00291866669, 0.0117445746, 0.0179219153, 0.0147442715, 0.00251510576, 0.0315476544, -0.00584051106, -0.0142231369, 0.00853515323, 0.00109310972, 0.0135240555, 0.0196378436, -0.0137020033, -0.0154052209, -0.00221164059, -0.00362569257, 0.00110979239, -0.0170575958, 0.012259353, 0.0291072242, 0.00932320952, -0.0170957278, -0.00342550082, 0.00861141738, -0.00690184394, -0.00514460681, 0.010187529, 0.00537021924, -0.00576742506, 0.00649828324, -0.00250875042, -0.00434066262, 0.0146171656, -0.00585004361, 0.00521769235, 0.0118017718, 0.0219638795, 0.0300478078, 0.0167017, 0.0172736757, -0.00181125745, 0.0120369177, 0.00128456287, -0.014769692, -0.0394282155, -0.01979037, -0.0167525429, -0.000735624752, 0.00166031928, 0.0225866977, -0.0137782674, 0.0276836399, -0.0141468737, 0.0191802625, 0.00783607177, 0.000267517957, -0.00272483029, -0.00596761657, -0.00232921354, -0.0110200718, -0.00759457052, 0.011096335, 0.00838262681, -0.0311917588, 0.00909441896, -0.00420402363, -0.0146425869, 0.00161742116, -0.0101176202, -0.018646419, -0.0165491737, 0.0237814933, -0.0305816513, -0.00550685823, -0.00319035514, -0.0313442871, -0.00593584031, 0.00358756073, 0.0260566864, -0.0102765029, -0.00303147291, 0.0138545306, -0.0124436561, 0.0230061468, -0.00525900209, 0.0326407664, 0.00613603182, -0.00104623951, -0.000500479, -0.00344456686, 0.0103273448, -0.00815383624, -0.000658566831, 0.00811570417, -0.0210232977, 0.00600892585, -7.38305898e-05, -0.0131300278, -0.000988247455, 0.0254211575, -0.0215952732, 0.0118208379, -0.00986340921, -0.00058071455, 0.0141977165, 0.0136384508, -0.00583097804, 0.00451543322, 0.0125834728, -0.0177058354, 0.0028312814, 0.0123356162, -0.00497301389, -0.0401400067, 0.0272769015, 0.017299097, 0.0048586186, -0.0143629536, 0.00574835902, -0.0241246782, 0.0179473367, -0.0130092772, 0.00104147301, 0.0118335485, -0.000748335326, 0.0222053807, -0.00716241123, -0.00920881424, -0.0138545306, -0.0122720636, -0.00344138918, 0.0094693806, -0.0151637206, 0.0113060595, -0.0128503945, -0.0103654768, 0.00220051897, 0.00293137715, -0.013587608, 0.0135748982, 0.00329203974, 0.0206292681, -0.0192311052, -0.0100286463, 0.00614556484, -0.00356849493, 0.0298444387, -0.0144773489, 0.0211249813, 0.00634257868, 0.0169432014, 0.00411504973, -0.0136765828, 0.0185955763, 0.00641884236, 0.000459169649, -0.0350303538, -0.0077598081, -0.00130283425, -0.0350557752, -0.00565303, 0.0246203914, 0.0106133334, 0.0136003187, 0.0140579, 0.00367335719, 0.00712427916, -0.00167779636, 0.0195742901, 0.00322372047, 0.0143502429, 0.0245695487, -0.00187163264, 0.0169304907, -0.01582467, -0.0105942674, -0.0239975732, 0.00274230726, 0.0160407498, -0.00852244254, 0.00272165262, 0.017260965, -0.0271243751, 0.0166635681, -0.0134986341, -2.35220177e-05, 6.93620241e-05, 0.00620276248, -0.0143248225, 0.0240611248, 0.01044174, -0.0262092128, 0.00488086231, 0.00931685418, 0.015735697, 0.020718243, 0.00484273024, 0.0100477124, -2.22311e-05, -0.0140324784, 0.00633622333, 0.0233747531, 0.0237306505, 0.00662221154, -0.010695952, -0.0119987866, 0.0030823152, 0.00782971643, 0.0102892136, -0.0168923587, 0.0154306423, 0.01493493, -0.00934227556, 0.00952657871, 0.0124436561, -0.0155958794, 0.0185193121, -0.0178964939, 0.0118653253, 0.0202860832, -0.0175278876, -0.00757550495, 0.015862802, -0.0147315608, -0.0018414451, -0.0152781149, 0.00382906175, -0.0147061395, -0.012005141, -0.00986976456, -0.0108611891, -0.00490628323, -0.00714970054, -0.00719418749, -0.0174007826, -0.00632033497, 0.0164474882, -0.0156340115, -0.00132348901, -0.0137655567, 0.0155831696, -0.0216842461, -0.00853515323, -0.00289324555, 0.00746110966, -0.0163076725, -0.00172546098, -0.00495394785, 0.018608287, -0.000398993, 0.0232730694, 0.0200191606, 0.00408645114, -0.00214808783, -0.0259041581, 0.0439531803, 0.0206928216, 0.011204375, 0.0224850141, 0.0172101241, 0.0121131809, 0.0160026178, 0.011769996, -0.000190261475, -1.12086445e-05, 0.0107340831, -0.0081474809, -0.0244805738, -0.00594219565, -0.00576742506, 0.00241977628, 0.0185828656, 0.00114792411, -0.0227773562, -0.00775345275, 0.00144582835, -0.0164220668, -0.00183826743, 0.0070925029, -0.00698446296, 0.00884020701, -0.00733400369, 0.00772167649, -0.0261837915, 0.00449636718, 0.00322848698, 0.00520815933, -0.0155196162, -0.0115856919, -0.0105815567, 0.0380554721, -0.00498572458, -0.0110582029, -0.00805215165, 0.00926601142, -0.00262632337, -0.0154687744, -0.0115793366, 0.00667305384, 0.00010054266, 0.0116174687, 0.0140324784, -0.00345092197, -0.0172736757, -0.0099778045, 0.017845653, -0.00831907336, -0.00574200368, -0.00167144113, 0.00192724145, -0.00844617933, -0.0182651021, 0.00986340921, -0.00638706563, 0.0119860759, 0.00407374045, -0.0070416606, -0.00356531725, -0.00619322946, 0.0133461077, -0.0230951216, -0.00962190796, 0.00428028731, 0.00413729344, 0.0283700116, -1.34305137e-05, 0.0372674167, 0.000560457062, -0.00590406358, -0.0109565184, -0.0113823228, -0.0243153367, -0.0113696121, 0.00522404769, -0.0214427467, 0.00589770824, 0.00845889, -0.00290277833, 0.0033778362, -0.0187989455, -0.0102828583, 0.010022291, -0.0279632732, -0.0205275845, -0.000812285405, -0.00697810762, -0.0290055405, -0.0161678568, -0.0120559838, -0.021137692, 0.018608287, -0.00655230321, -0.000950115733, -0.023539992, 0.00145059475, 0.0293614361, 0.00269782031, -0.0116873765, -0.0135748982, 0.0171084385, 0.0375978909, 0.011096335, -0.0219257474, -0.00190976437, -0.00864319317, 0.0131173171, 0.0142866904, 0.0233747531, -0.0087639438, -0.00078964472, -0.00895460229, -0.0174897555, -0.0289292764, 0.00695904158, -0.00389261474, 0.00693362067, 0.0120369177, -0.014769692, 0.00208453485, -0.0148840873, -0.00700988388, 0.0258278958, -0.0137909781, -0.00957106519, -1.77997754e-05, -0.00825552084, -0.00170321751, -0.00479506562, 0.00718783215, 0.0235908329, -0.0125453407, 0.00918974821, 0.0179981794, -0.00516367238, 0.0209470335, 0.000812285405, 0.0152018517, 0.0124944989, 0.0183922071, -0.00959648658, 0.0121576684, -0.0106260432, 0.0174770448, -0.016117014, 0.0201208461, -0.0178583637, 0.00808392838, 0.0227265153, -0.00509376451, 0.0108802551, 0.00690184394, -0.00877029914, -0.0132571338, 0.00365111372, 0.00306166057, -0.00492217159, 0.00339372456, -0.00436290586, 0.0140706105, -0.0180363115, -0.00555770053, 0.0238323342, 0.000465127727, 0.00486179627, -0.0290309619, 0.00353671843, 0.0111026904, 0.0297173318, 0.0233493336, -0.00686371233, 0.00835720543, 0.0125898281, -0.0129266586, 0.0165491737, 0.0065650139, -0.00110025948, 0.00545283826, -0.0119797206, -0.00572293811, 0.0265142675, 0.0057006944, -0.00932956487, 0.0178202316, -0.00767083419, 0.00779158482, 0.00136082631, -0.016879648, 0.0118653253, 0.0160026178, -0.026793899, 0.00227519358, -0.010295569, 0.0029567983, -0.0218621958, -0.0244805738, 0.000489754486, -0.00632033497, -0.0219257474, -0.0227265153, -0.0020956567, 0.00259136921, -0.0179092046, -0.00149587623, 0.0246203914, 0.0267176367, 0.00812841486, -0.00484590791, 0.0118462592, 0.028014116, 0.00274707377, -0.00725138513, -0.00569433905, -0.0283191688, -0.0067429617, 0.00260249106, 0.00600892585, 0.0108548338, -0.0076199919, 0.00897366833, -0.0248746015, -0.000784481, -0.00849066675, -0.00226566056, 0.0111471778, 0.00721325353, -0.000281618763, 0.002673988, 0.0290309619, 0.0156085901, 0.0139053725, 0.0113124149, -0.0207690857, 0.000987453, -0.0142739797, -0.0316493399, -0.0171592813, -0.014134163, 0.020845348, -0.0110518476, -0.025319472, 0.000423818361, -0.00355578423, -0.0055100359, 0.0202733725, 0.00406420743, 0.0145536121, 0.0119034564, -0.0067556724, -0.00489039486, -0.000792822335, -0.00345092197, 0.0169813335, 0.0131554492, -0.0249254443, 0.00389261474, -0.00750559662, -0.0281666424, -0.0079885982, 0.00816019159, 0.0131173171, 0.00178901397, 0.00172228343, 0.0211885348, -0.0379283652, -0.0116492454, 0.00218939711, -0.00396570051, -0.0266159512, 0.0299461223, -0.00716241123, -0.0306070726, -0.0134477923, -0.000465922145, -0.00879572053, 0.0259168688, 0.0129775, -0.0104036089, -0.00221164059, 0.00604070257, 0.0206419788, 0.00836991612, 0.000803546864, -0.00251828344, 0.00680651469, 0.0167652536, -0.000358279445, -0.004292998, -0.001568962, -0.0167398322, -0.0161043033, 7.07025902e-05, 0.010823058, 0.0225485656, -0.0262092128, 0.0120305624, -0.0041182274, -0.000285789429, 0.00833178405, 0.00111217564, -0.00416271435, -0.00628220337, -0.0109374532, 0.00799495354, -0.0170575958, -0.00425486639, 0.0129266586, 0.000102876242, 0.00934863091, 0.0151128778, 0.0216715373, 0.000555690611, -0.0365302041, -0.0114013888, 0.00748653058, 0.0108484784, 0.00897366833, 0.0134986341, 0.0193963423, -0.00891011581, 0.00311726937, 0.00283287023, 0.0214681663, -0.0168160945, 0.00685100164, 0.00400065444, -0.0150747458, -0.0167017, -0.00725138513, 0.0146298762, 0.00685735699, 0.00472515775, 0.0105243586, 0.0139180832, 0.0187862348, 0.00262950105, 0.00191453088, -0.00866861455, 0.0222053807, 0.0092024589, 0.00241818768, -0.00707979221, -0.0023911777, 0.0072704507, 0.0112806382, 0.0249127336, -0.00597397191, 0.0169050694, -0.00886562839, 0.0106832413, -0.000792425126, -0.00355578423, 0.0234510172, -0.0160788819, 0.000123630234, 0.0284971166, -0.0123356162, -0.00389579241, -0.00356531725, -0.00858599599, -0.0134477923, -0.00419449108, -0.0177312568, 0.0036415807, -0.00284399185, 0.000667702581, -0.0168669373, -0.00533208763, -0.0150874564, -0.0325899236, 0.017972758, -0.00979985576, 0.00310614752, 0.0131935803, -1.32070854e-05, -0.00934227556, -0.0147061395, -0.00769625511, 0.01979037, -0.00518591609, -0.0151001671, 0.000387076841, -0.0060979, -0.00219257479, -0.00428346498, 0.00581191201, 0.0146425869, -0.00330157275, 0.0106069781, 0.0109247426, 0.00902451109, -0.00881478656, 0.00706072617, 0.00397523353, -0.00588499801, -0.0151128778, -0.0153670898, -0.0183922071, 0.0108993212, 0.00190340914, -0.0037845748, -0.00774074253, -0.00480142096, -0.0167652536, -0.0110327825, 0.00891011581, -0.0173118077, 0.0048586186, -0.012659736, 0.0173626505, 0.0165745951, -0.00803944096, 0.012405525, 0.0238704663, 0.00823009945, -0.00306801591, -0.0265651084, 0.0107849259, 0.0023228582, 0.000737610739, -0.00300287409, 0.0094503155, -0.0163330939, 0.0157865379, 0.0123928143, 0.0140451891, 0.0139307939, -0.00278679444, -0.0110327825, 0.0116428901, 0.0243916, 0.0162822511, -0.00223070662, 0.0102892136, 0.0149476407, -0.0211758241, -0.00430253102, -0.00754372822, -0.0140960319, 0.0013878363, 0.0127232894, 0.00530666672, 0.0232349373, -0.0151510099, -0.0200064499, 0.00210518949, -0.00528124534, 0.00551639125, -0.0179981794, -0.00145774451, -0.00530031137, 0.0125644067, 0.0106832413, 0.0139562152, 0.00758821517, 0.000932638708, -0.0137655567, -0.00271847495, 0.00597714959, -0.00812841486, 0.0129457247, 0.018735392, 0.00419766875, 0.00288371253, -0.00299175247, -0.0106641753, 0.0174007826, 0.014261269, -0.00369242299, 0.00537657458, -0.013206291, -0.0158119593, 0.00614874251, 0.00833178405, 0.0130410539, 0.00200350489, -0.00292661064, -0.00305212778, 0.00340961269, 0.0126343155, -0.0190531574, 0.0254084468, 0.00562760886, 0.0224087499, -0.0130283432, -0.00414364878, 0.0290309619, 0.019281948, -0.0127931973, 0.00442963652, -0.0013838642, 0.0059135966, -0.00304895, -0.00220369664, 0.0112552177, 0.00541152898, 0.0319289751, 0.00491263857, 0.000831748475, 0.0188116562, 0.00448047882, -0.0100667784, -0.019587, 0.00235622353, -0.00655865856, -0.0230315682, 0.00916432682, -0.006793804, -0.00534162065, 0.00523358071, 0.00594537333, -0.000200588824, 0.00697810762, -0.0152654052, -0.010969229, 0.0124690775, -0.00208771252, 0.00972994789, 0.00650146091, -0.0248618908, -0.0103654768, 0.00280903792, -0.00505881, 0.0461139791, -0.0013465269, -0.0109438077, 0.0135367662, 0.00882749725, -0.0114585869, 0.00319671049, -0.0149603514, 0.00706708152, 0.0085732853, -0.032615345, -0.00760728121, -0.0232603587, 0.01691778, -0.0267176367, -0.0038354171, -0.0122148655, 0.0054750815, -0.00166190811, 0.00800130889, -0.0220528543, -0.000242891212, -0.0107404385, -0.000583892222, 0.00394981215, -0.00729587208, 0.00196060678, -0.0251033921, 0.00260249106, -2.47384596e-05, 0.0171974134, 0.0143629536, -0.0233620442, 0.00293455482, 0.0275311135, 0.0140706105, 0.0166635681, 0.00974901393, -0.00252940506, -0.000302472035, 0.0185320228, -0.0230824109, 0.00118764467, 0.0305562299, 0.0175914411, 0.0275056921, -0.0059644389, -0.0105180042, -0.0108802551, 0.00671118544, 0.00512871845, -0.00316334516, -0.00560536515, -0.0105752014, -0.00565620745, -0.0122085111, -0.0145917442, -0.0168542266, -0.000676441123, -0.0111535331, -0.00907535292, 0.00686371233, -0.00242772046, -0.0165618844, 0.00606294582, -0.000281022949, 0.0171084385, 0.00908170827, -0.0144137964, 0.0099078957, -0.00369560067, -0.0165237524, 0.00461711781, -0.0204004794, 0.00583733339, -0.00548461452, 0.00024130239, -0.0156848542, 0.00721325353, 0.0117000872, -0.0235781223, 0.013879952, 0.0190658681, 0.0021846306, -0.0235272814, 0.00795046706, 0.0111090457, -0.00727680605, -0.0202479511, -0.0173626505, -0.000950115733, -0.0175914411, 0.00323325349, 0.00427710963, 0.0192056838, 0.00734035904, -0.00445188, 0.00178424746, 0.0119161671, 0.0179473367, 0.0241501, -0.0122529976, -0.0174389146, 0.00306960475, 0.00669847475, 0.00203051488, 0.00585004361, -0.00458851876, 0.0114077441, 0.0112488624, -0.00156499, 0.00405149674, -0.00731493812, 0.00827458687, 0.00481095398, 0.000474263448, -0.0152781149, 0.00633304566, 0.00678744912, 0.010295569, -0.00160709373, -0.0118271932, -0.00234827935, -0.0111980196, 0.000893712568, -0.00849066675, -0.00106609974, 0.0138545306, 0.000658566831, 0.00423580036, -0.00544648292, 0.00494441483, -0.015735697, -0.00647286233, -0.00289483415, -0.0144137964, 0.00612014346, 8.00865746e-05, 0.0107023073, 0.0079568224, 0.00763905747, -0.00818561297, 0.0249508657, 0.00762634724, 0.014261269, -0.016879648, 0.00360344909, -0.00447730115, 0.00692726532, -0.00913255103, 0.00967275072, 0.00524946908, 0.0193963423, -0.00320306583, 0.0013743313, 0.0327170305, 0.00639659865, 0.00235145702, -0.00969817117, -0.0163712259, -0.00657136925, 0.00605023559, -0.00901815575, 0.0169813335, -0.0237306505, -0.00963461865, -0.00136956479, 0.00575789204, -0.00357802794, 0.00659679, -0.00348587614, 0.0160661712, 0.00139578036, -0.00638706563, 0.000111714071, 0.00737849064, -0.0102129495, -0.0103972536, -0.0205148738, 0.00227837125, -0.0303528607, 0.00612014346, 0.00819196831, 0.000354307384, 0.0122847743, 0.00922152493, -0.00385766057, -0.00618051877, 0.0050842315, 0.00660314551, 0.00882749725, 0.00567845115, -0.00918339286, -0.0152526945, -0.036835257, -0.0153416684, -0.0127550652, 0.0231586732, -0.00300605176, -0.000515572843, -0.00352718565, -0.00507469848, -0.0156721435, -0.00810934883, 0.000500876224, 0.0266159512, -0.0145536121, 0.00381952873, -0.00357485027, -0.0144137964, 0.00959013123, -0.0155958794, -0.00586910965, 0.0174770448, -0.0119161671, -0.00335241505, 0.0153543791, -0.02877675, -0.0346236154, 0.00916432682, 0.0109755844, -0.00898002367, -0.00287417951, 0.00191294204, -0.0160788819, 0.0031315689, 0.0192692373, -0.00707979221, -0.0123165511, 0.013079185, -0.0270989537, -0.0195107386, 0.0151382992, 0.0254592896, -0.00158643909, 0.00869403593, 0.00889105, -0.0148459561, 0.00752466265, -0.000423023943, 0.00598986028, 0.00148316566, 0.00340325735, 0.00658407947, 0.0122212209, -0.000587069837, 0.0153798, 0.0206674, -0.0166508574, 0.0110137165, -0.015316247, 0.0354625136, 0.00450272253, 0.0216461159, 0.00491899392, 0.00111455889, -0.0236925185, -0.0420720167, -0.0262092128, 0.00690819928, 0.00932320952, -0.00625996, 0.000564429152, -0.00186051091, -0.0151382992, 0.0197776593, -0.00482366467, 0.00772167649, 0.00463618338, 0.000149349304, 0.0162822511, -0.0099078957, -0.00252781622, 0.00313951285, -0.012005141, 0.012405525, 0.00112250296, 0.00734035904, -0.0127105787, 0.00108993216, 0.0131808696, -0.0326916091, 0.00644426327, 0.0167652536, 0.00194630737, 0.00969181582, -0.000417860283, -0.00336512574, 0.0100794891, -0.0116365347, 0.0235527027, 0.00166826346, 0.0298444387, 0.020756375, 0.00663492177, -0.00329839508, 0.0151637206, -0.000901656691, -0.00747382035, 0.0113632577, 0.0209851656, -0.000720133714, -0.0261075292, -0.0020956567, 0.00724503, 0.0215698518, -0.0062504271, -0.0176549945, 0.0151637206, 0.025319472, 0.0265651084, 0.0145536121, 0.0081474809, 0.00685100164, 0.0216715373, 0.00268828729, -0.00153480237, 0.0237433612, 0.0204386096, 0.00763905747, -0.0182142593, -0.00525264675, 0.0050842315, 0.00351765263, -0.0127296448, -0.00942489412, 0.0104671614, 0.0174770448, -0.00685735699, 0.00213855482, -0.0194344744, -0.00430888589, 0.0196505543, -0.00422308967, -0.000509614765, -0.0091007743, -0.0195234492, -0.0139562152, -0.0170703065, -0.00428664265, -0.020756375, 0.01979037, -0.0176422838, -0.00270099798, -0.0127614206, 0.00451543322, -0.00316016749, 0.0129647898, -0.00478871027, -0.0152654052, 0.0230061468, -0.0237942021, 0.0156721435, -0.0161043033, -0.0155577483, -0.00725138513, 0.011204375, 0.00978079, 0.00126867462, -0.00194154086, -0.0288530141, -0.0181252845, 0.00531619927, 0.0143248225, -0.0195742901, -0.000157293412, -0.00886562839, -0.0285733808, -0.0365556255, 0.0173245184, 0.0112869935, -0.00941853877, 0.0155577483, 0.00812205952, -0.0147442715, 0.0183667857, -0.00325390813, 0.00702259457, -0.0251161028, 0.00360027142, -0.0203115046, -0.00811570417, -0.0310900752, -0.00529077835, 0.00407056278, -0.0023737005, 0.00435337331, -0.00348587614, -0.0139689259, -0.00391803589, -0.0323611312, -0.00470926939, 0.0208961908, -0.00447730115, -0.016879648, 0.0250017084, -0.0151128778, -0.0173753612, 0.00220369664, 0.00353354076, 0.0173880719, -0.000305451103, 0.00324596395, -0.0038544829, -0.00667305384, 0.00861777179, -0.0119860759, -0.00574200368, 0.00127503, -0.00557358889, -0.00181602396, -0.00590088591, -0.026793899, -0.026793899, 0.00870674662, 0.000403560873, 0.00607883418, 0.00430253102, -0.0132444231, -0.0187481027, -0.00821738876, 0.0174643341, -0.0136511615, -0.0207945071, -0.00719418749, 0.00347952079, 0.0324882381, -0.00716876611, -0.00847795606, 0.0118017718, -0.0176041517, 0.0336067714, -0.00435655098, 0.00571658276, -0.0174516235, 0.00223706174, -0.0262092128, -0.0190785788, -0.0016198043, 0.0124627221, 0.0283700116, -0.0136257401, -0.00897366833, -0.0191675518, -0.00376868644, 0.00809028279, 0.007531018, 0.0150111932, -0.000307635724, -0.0245822594, -0.0134732137, -0.00669211941, -0.0226629619, 0.0327678733, -0.00136797596, 0.0298190173, -0.00746746501, 0.00380681828, 0.0028503472, 0.020082714, -0.0108103473, 0.00939947274, -0.014007058, -0.0171847027, -0.0323357135, -0.0147824027, 0.024938155, -0.00336830341, 0.012405525, 0.0099778045, -0.000728475046, -0.0183667857, -0.00938676205, -0.00440421561, -0.024976287, 0.0088529177, 0.00838262681, 0.0163839366, -0.0077089658, -0.00722596375, -0.0169940442, -0.000359073834, 0.00303782825, 0.0121703791, -0.0115793366, -0.0360980444, 0.00576106971, 0.0122847743, 0.00250716158, 0.0118017718, 0.00551639125, 0.0209470335, -0.00908170827, -0.0110073611, 0.017845653, -0.0118843913, -0.0148586659, -0.0216461159, -0.00990154, -0.0170448851, 0.029488543, 0.0126470253, 0.00140054687, 0.00948209129, -0.0116937319, -0.00415953668, 0.0103464108, -0.00139816361, 0.00690819928, 0.0113060595, -0.012024207, -0.0300223865, 0.00114712969, -0.00413729344, -0.0127931973, 0.0118335485, -0.00257071457, -0.0108866105, 0.0202098191, -0.0181125738, 0.00551321357, 0.0209597442, -0.0184176285, 0.0103019243, -0.00714970054, -0.0122021558, -0.026412582, 0.0251161028, 0.0107785705, -0.0151128778, -0.0232349373, -0.0064919279, -0.0313442871, 0.00439786026, 0.0197776593, 0.028014116, -0.00720689818, 0.00676202774, -0.0257135, 0.00713063451, -0.00437243888, 0.0194980279, 0.00705437129, -0.000321140717, -0.00474104565, -0.00129012368, 0.021480877, -0.0243916, 0.00200986024, -0.0308104418, -0.00847160071, 0.0196759757, 0.00825552084, 0.00621229503, 0.0249889977, 0.0236798078, -0.00157611177, 0.003765509, 0.00893553626, 0.0167652536, 0.0137655567, -0.00338101387, -0.00681922538, 0.00444234721, -0.000515572843, 0.00869403593, 0.00600574818, 0.00601528119, 0.00501114549, 0.0115030734, 0.0271497965, -0.0099778045, 0.0140197678, -0.00621229503, -0.0097172372, -0.00405467441, -0.0179092046, -0.00819196831, 0.0107912812, -0.00381317362, 0.0193582103, -0.00741026737, -0.0102828583, 0.00515096216, -0.00664127711, -0.0125961835, 0.0123546822, 0.00523040304, 0.00667940918, 0.00957742054, -0.00306007173, 0.0109628737, -0.0190150253, -0.00521451468, 0.0194598958, 0.0384367891, 0.0163330939, 0.00773438718, 0.0223070662, -0.0131173171, 0.00513825146, 0.00924059097, -0.0151128778, -0.0078996243, 0.00242454279, 0.0185955763, 0.00246744114, 0.00204481441, 0.00868132524, -0.0141850058, 0.00410551671, 0.00908806361, 0.0239848625, -0.0278870091, 0.00182714569, 0.022535855, -0.020756375, 0.0244424418, 0.00717512146, -0.00228949287, 0.0167144109, 0.00875123311, 0.00545283826, 6.33046366e-05, 0.0109819397, -0.00550685823, -0.00604070257, 0.00233239122, 0.013079185, 0.0149984825, 0.00783607177, -0.00535433134, 0.00639342098, 0.00655865856, 0.0203623474, 0.0243661795, 0.0127995526, 0.0376995765, 0.0202225298, -0.0192692373, 0.0329458192, -0.0234128851, 0.0388181061, -0.0103972536, -1.06314556e-05, 0.0199937392, 0.0104925828, 0.00169368461, -0.0131173171, -0.00507469848, -0.0115602715, 0.0062631378, 0.00492852693, 0.0107213734, -0.01493493, 0.00500479, 0.0106133334]
|
23 Jul, 2024
|
Onsen UI CSS Component Material Fab
23 Jul, 2024
Onsen UI CSS is used to create beautiful HTML components. It is one of the most efficient ways to create HTML5 hybrid components that are compatible with both mobile and desktop.
In this article, we are going to implement the Onsen UI CSS Component Material Fab. Fab or Floating Action Button is a button that floats on the screen and has a button that performs an action. Material Fabs are circular in shape and have a dark shadow under them.
Onsen UI CSS Component Material Fab Classes:
fab: This class is used in the button to make it fab.disabled: This attribute makes the fab disabled.fab–material: This class is used to make fab of material type.Syntax:
<button class="fab fab--material"> <i class="zmdi zmdi-globe"></i></button>Example 1: In this example, we have different material fabs which show an alert message when clicked.
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content=
"width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href=
"https://unpkg.com/onsenui/css/onsenui.css" />
<link rel="stylesheet" href=
"https://unpkg.com/onsenui/css/onsen-css-components.min.css" />
<script src=
"https://unpkg.com/onsenui/js/onsenui.min.js">
</script>
<script src=
"https://code.jquery.com/jquery-3.6.0.min.js">
</script>
<style>
#heading {
color: green;
}
#title {
font-style: bold;
}
</style>
</head>
<body>
<center>
<h1 id="heading">
GeeksforGeeks
</h1>
<strong id="title">
Onsen UI CSS Component Material Fab
</strong>
<br /> <br /> <br /> <br />
<button onclick="showAlert('Globe')"
class="fab fab--material">
<i class="zmdi zmdi-globe"></i>
</button>
<button onclick="showAlert('Phone')"
class="fab fab--material">
<i class="zmdi zmdi-phone"></i>
</button>
<button onclick="showAlert('Plus')"
class="fab fab--material">
<i class="zmdi zmdi-plus"></i>
</button>
<button onclick="showAlert('Google')"
class="fab fab--material">
<i class="zmdi zmdi-google"></i>
</button>
</center>
<script>
function showAlert(message) {
alert(`FAB CLICKED: ${message}`)
}
</script>
</body>
</html>
Output:
Example 2: In this example, when we disable the material fabs by clicking on it.
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content=
"width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href=
"https://unpkg.com/onsenui/css/onsenui.css" />
<link rel="stylesheet" href=
"https://unpkg.com/onsenui/css/onsen-css-components.min.css" />
<script src=
"https://unpkg.com/onsenui/js/onsenui.min.js">
</script>
<script src=
"https://code.jquery.com/jquery-3.6.0.min.js">
</script>
<style>
#heading {
color: green;
}
#title {
font-style: bold;
}
</style>
</head>
<body>
<center>
<h1 id="heading">
GeeksforGeeks
</h1>
<strong id="title">
Onsen UI CSS Component Material Fab
</strong>
<br /> <br /> <br /> <br />
<button class="fab fab--material">
<i class="zmdi zmdi-globe"></i>
</button>
<button class="fab fab--material">
<i class="zmdi zmdi-phone"></i>
</button>
<button class="fab fab--material">
<i class="zmdi zmdi-plus"></i>
</button>
<button class="fab fab--material">
<i class="zmdi zmdi-google"></i>
</button>
</center>
<script>
$('.fab').click(function () {
$(this).attr('disabled', 'true')
})
</script>
</body>
</html>
Output:
Reference: https://onsen.io/v2/api/css.html#fab-category
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab
|
https://www.geeksforgeeks.org/onsen-ui-css-component-material-fab?ref=asr9
|
CSS
|
Onsen UI CSS Component Material Fab
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0267676767, 0.0133186309, -0.0167746283, -0.00510656182, 0.0622731596, 0.0168072321, -0.0264579412, 0.00360271404, -0.0156742521, 0.00930837, -0.00272241305, 0.0261319038, 0.0281696375, -0.0502423756, -0.0274686571, -0.00528995832, -0.0560458414, 0.00559154293, -0.0139218, -0.00435667578, -0.00198882865, -0.0153156109, -0.0512530915, -0.00719320169, -0.0157150067, 0.00711984327, 0.0188612677, 0.0331743136, -0.00744588114, 0.0328645781, 0.00217426242, 0.00164750812, -0.0246321317, -0.0125035373, -0.0251211878, -0.0242245849, 0.0272241291, 0.0495903, -0.0230671521, -0.0103516905, 0.0127725182, -0.000769244682, 0.0100745577, 0.0461343043, -0.00965886, -0.0129355369, -0.0200513043, -0.0259851869, -0.0034070916, -0.0327993706, 0.026849186, 0.0357337072, 0.0543178432, 0.0371682718, 0.013929951, 0.0227248129, 0.00316052581, 0.0286586937, 0.00111158402, 0.0153726675, -0.00850142725, -0.0591432, -0.010294633, -0.0193503238, -0.0141337244, 0.0494598858, -0.0134001402, 0.0203773417, 0.00173003634, 0.00591758033, -0.00580346724, 0.0173777975, -0.0124464808, 0.0231486615, -0.0321472958, 0.0173288919, 0.0273056384, -0.00143456494, -0.000201098897, 0.0059338822, 0.0230182465, -0.00253290357, -0.0398417786, -0.0261319038, 0.0142559884, 0.0395157412, 0.0127317635, -0.0442106836, -0.00363939349, 0.0283489581, 0.0132534234, 0.0236051138, 0.0180950798, -0.0137669323, 0.0137832342, 0.0209642109, 0.0320168808, -0.0114439158, -0.0300769582, 0.0172636844, 0.00121652731, 0.00956104882, -0.010661426, -0.0370704606, 0.0170517601, -0.00983818062, 0.0396135524, 0.00345395948, 0.00757629611, -0.0165708549, 0.0315115228, -0.0149488188, -0.0268817898, 0.0308757499, -0.0100256521, 0.0408524945, -0.00965886, -0.0160899498, 0.00634550443, 0.0359619334, -0.00124098011, -0.00380445, 0.0207359847, 0.0681418329, -0.0441128723, 0.0508944504, 0.00912904926, 0.0344947651, 0.0121938018, 0.0283326562, -0.00695682457, 0.0259362813, 0.0146227814, 0.00333577092, 0.0526876561, 0.0182254948, 0.0211598333, 0.0354402736, -0.0497859232, -0.0100338031, 0.00333780865, 0.0102538783, -0.0114846705, 0.0187634565, -0.0148754604, 0.000897621911, 0.0112401424, 0.0461017, 0.0167583264, 0.0226759072, -0.0247625466, -0.0292129591, -0.0010535086, 0.00983818062, 0.0394831374, -0.00768633373, -0.0295716, 0.00563637307, 0.0267513748, 0.00601946702, 0.0412763469, -0.0269633, 0.0100745577, -0.0226759072, -0.0502749793, 0.0341035202, 0.0171495713, 0.00898233242, -0.0404612496, 0.0423848741, 0.0346577838, -0.0161225535, -0.0210783239, 0.00228633778, -0.00458897743, 0.0325059369, 0.0582955033, -0.00313199754, 0.00673674932, -0.0134653477, -0.0534701459, 0.00927576609, 0.0238007363, 0.00581569364, 0.0120796887, 0.00694867363, 0.0135957627, -0.0175082125, -0.0261645075, -0.0148347057, -0.0159921385, -0.00760482438, -0.00350694056, 0.048938226, 0.0369074419, 0.0104495017, -0.0129355369, 0.040917702, -0.0272893365, 0.0217630025, -0.0229041334, -0.00365162, 0.0196600594, 0.00804497488, 0.0213717576, 0.0223172661, -0.0159758367, -0.0524594299, 0.0399069861, -0.00914535113, -0.0285282787, -0.0069649755, 0.0190242864, -0.0141500263, 0.000408565713, 0.01104452, -0.0287728067, -0.0118188588, -0.0503401868, -0.0072624851, -0.00416920427, 0.0343969539, 0.00306271459, 0.0165953077, -0.0482209437, -0.00200920599, 0.0171495713, -0.0147694983, 0.0188123621, 0.0119981794, -0.00939803, -0.0205403604, -0.0118840663, 0.018698249, 0.0286912974, 0.0121611981, -0.011541727, -0.0156579502, -0.0290173367, 0.0443084948, 0.00313199754, -0.0158943273, -0.0210294183, -0.0042792419, 0.0147287436, 0.00602354249, 0.0382768, -0.00497614685, 0.0105065582, 0.00369237456, 0.0145005174, -0.00293026189, -0.0220238324, 0.0360271409, 0.0112075387, 0.0284793731, 0.00943063386, -0.00891712494, 0.0271263178, 0.0144597627, 0.0278925058, 0.019708965, 0.0197415687, 0.0135142533, 0.00379018579, -0.00566082587, -0.01757342, -0.0428087227, -0.013180065, -0.0197415687, 0.0374943092, -0.0341035202, 0.0380159691, -0.00416920427, -0.0255450364, 0.0294574872, -0.0240615662, 0.0134164421, 0.0212576445, 0.0104495017, 0.0374291, 0.0247462448, 0.0294411853, 0.0154949315, 0.0121367453, -0.0272893365, -0.0107510863, 0.0147450455, -0.0341687277, 0.0320331827, -0.0309409574, -0.0203121342, -0.0030993938, -0.00438520405, 0.0270937141, 0.0156008936, 0.0110852746, -0.0158617236, 0.0457756631, -0.00921055861, -0.0281533357, -0.0163589306, -0.0174919106, -0.0154378749, 0.010041954, 0.0531767122, 0.0457430594, 0.0133349327, -0.00890897401, 0.000455943053, 0.0290336385, 0.0176549293, -0.0186167397, -0.0358641222, -0.0415371768, -0.00454007182, -0.00425071362, -0.00336837466, -0.0480253212, -0.0528506748, -0.0187471546, -0.0106695769, -0.0333862379, 0.0286260899, 0.0457104556, -0.0215347763, -0.044275891, -0.0339731053, 0.0136283664, 0.00730324, -0.0500467531, -0.023588812, 0.010791841, 0.00719320169, 0.00846067257, -0.0281533357, -0.0113298027, 0.0285445806, 0.0221216436, -0.0062232404, -0.0233931895, -0.0117699532, -0.00206014933, -0.0152178, 0.00490686391, -0.0206218716, -0.007714862, 0.00547335437, 0.0402330235, -0.00366180856, 0.00160675345, -0.0188449658, 0.0430043451, -0.0550677292, 0.0464603417, 0.0184048153, 0.00704240939, -0.0379833654, -0.0346577838, -0.00823244639, 0.00984633155, 0.0173451938, 0.0324081257, -0.0184048153, 0.00257365825, -0.0290173367, -0.0377225354, -0.0107103316, -0.0183559097, 0.00302603538, -0.0384724215, 0.0177690424, -0.0242245849, -0.00115233869, -0.0485469811, 0.00996044464, 0.00200614939, -8.45022951e-05, -0.0800095946, 0.0189916827, -0.0447323434, 0.0198230781, 0.0303703919, 0.0268817898, 0.0596648604, 0.0183070041, -0.0220401343, -0.0297020152, -0.0400374, 0.00842806883, -0.04365642, 0.0158372708, 0.0391897038, 0.00141011213, 0.00988708623, -0.0437868349, -0.0125035373, -0.0229204353, 0.00389818568, -0.0466885678, 0.0135957627, 0.0400374, 0.015682403, 0.00499652419, 0.00747440942, -0.0327015594, -0.00737252273, -0.00659003248, 0.00581161818, -0.00189916836, 0.0148754604, -0.0490034334, 0.0396461561, -0.00158331951, 0.0246484336, 0.00372294057, 0.0138973473, 0.036646612, 0.00683048507, 0.011158633, 0.0683374554, -0.00252475264, -0.00479682628, 0.0487426035, 0.0167583264, -0.00277131866, -0.0559480302, -0.0207033809, -0.00757629611, -0.0206544753, -0.0324896351, -0.00217222469, -0.00222928124, 0.00840361603, 0.0140359132, 0.0295063928, 0.0481231324, -0.00193279097, -0.0158209689, -0.0298487321, 0.00330724264, 0.00897418149, 0.00927576609, -0.00894157775, -0.0630882531, 0.0246973392, -0.0343969539, -0.0351794437, -0.0131230084, -0.0159758367, -0.0223661717, -0.0195948519, -0.053209316, -0.0145249702, 0.00241267728, -0.0268817898, 0.0365488, 0.0146472342, 0.00491501484, -0.0312832966, -0.0171821751, 0.0390592888, -0.00461343024, 0.0121448962, 0.0244202074, -0.0131067066, -0.049818527, 0.0190079845, -0.00350286509, 0.0454822294, -0.0179646648, 0.0161959119, 0.0288706198, 0.0278436, 0.0290336385, 0.00106981047, -0.0242082831, -0.012047085, 0.0136854229, -0.0275664683, 0.0583933145, 0.010164218, 0.0404938534, -0.0344295576, 0.0259851869, -0.0404938534, 0.0221053418, -0.00213147, -0.0128540276, 0.00877855904, 0.0204751529, -0.0206544753, -0.0381463841, -0.0149162151, 0.0145086683, -0.0160328932, -0.00443818513, 0.00437705312, -0.0179809667, -0.0170843638, 0.026604658, 0.020083908, -0.000158433832, 0.051448714, -0.000476065674, -0.00343154441, -0.0317560509, 0.0271263178, 0.00454007182, 0.015177045, -0.0308268443, -0.000913923839, -0.00592573127, 0.0225454923, -0.0338426903, -0.0194155313, -0.0204262473, 0.0446997397, -0.0255450364, -0.015935082, 0.0253983196, -0.0225454923, -0.0186330415, 0.0133512346, 0.0162285157, 0.0221705493, 0.0201328136, -0.0243223961, 0.0091372, -0.0264416393, -0.0399721935, -0.00604392, 0.0212902483, 0.0401352122, 0.000924112508, 0.0202958323, -0.00194705511, 0.00337245013, 0.0164893456, -0.0137750832, -0.0336470678, -0.0234746989, -0.0321962, -0.010408747, -0.00309531833, 0.00167603639, 0.00778414495, -0.0147205926, -0.0107266335, 0.0102049727, -0.000267197902, 0.0519051664, 0.015560139, 0.00723395683, 0.0132208196, 0.00234135659, -0.0329786912, -0.0258710738, -0.0113542555, -0.0127154617, -0.00342746894, -0.033255823, 0.0287891086, 0.0126013486, 0.0066511645, -0.0424826853, -0.0238822456, 0.00686716428, -0.0238496419, -0.00467048679, 0.00996044464, -0.00616210839, 0.0251048859, -0.018192891, 0.0119003681, 0.0146064796, 0.020083908, -0.0254635271, 0.0256591495, 0.0100908596, 0.0211761352, -0.0301910713, 0.0166768171, -0.012796971, 0.0311854854, 0.0105799166, 0.00338467653, -0.00872965343, -0.0338100865, -0.0191057958, 0.0180787779, 0.0300117508, -0.0257732626, 0.0239800569, 0.0111749349, 0.0106288223, 0.0213554557, 0.00509433541, 0.00625176867, -0.0131637631, 0.01078369, -0.0127562163, 0.0306801274, 0.0223172661, 0.000840565364, 0.0102457274, 0.0139136491, -0.000299801643, -0.0139625547, -0.0141663281, -0.0267513748, 5.21851e-05, 0.0309083536, 0.00461750571, -0.0123812733, 0.00753554143, -0.00743773, 0.00830988, -0.00980557688, -0.000816622, -0.00211516814, -0.0192525126, 0.0581324846, 0.00543259969, 0.0191873051, -0.00969961472, -0.00568527868, -0.00597871235, 0.00423441175, -0.00868889876, -0.0370704606, -0.0310061648, -0.00921055861, 0.00470309053, -0.00454007182, 0.0137424795, 0.0398417786, 0.000288594107, -0.0206218716, 0.0118596135, 0.00567712775, 0.00236988487, -0.0144353099, 0.0607407838, -0.011036369, 0.0348208025, -0.0211761352, 0.00155682897, -0.0102375764, -0.0146635361, -0.019953493, 0.0217956062, -0.0360923484, 0.00254716771, 0.000593999517, 0.00362309162, -0.00667969277, -0.0164159872, -0.0120144812, 0.0178016461, -0.0132289706, -0.032375522, 0.0306964293, 0.000618452323, 0.00852588, -0.0105228601, 0.0275664683, -0.00813056, 0.00194705511, 0.0123731224, 0.0431673639, -0.0224476811, 0.00630067429, 0.0280718263, -0.00345395948, -0.0349512175, -0.00705871126, 0.0156416483, 0.0308268443, -0.0119329719, -0.0160247423, -0.0144597627, 0.00539999595, 0.0168887414, -0.0244365092, -0.0114520667, -0.0371356681, -0.00163528172, -0.00568935415, -0.00336429919, 0.0317723528, -0.00714837154, 0.0132941781, 0.0237192269, 0.00408158172, -0.0275827702, -0.012674707, -0.0291477516, 0.0166197605, 0.0266209599, 0.0118351607, -0.0246973392, -0.0445041172, 0.0218771156, -0.00152626296, 0.0306475237, 0.00429961924, 0.0268980917, -0.0132289706, -0.00396135543, 0.0220401343, 0.00596648594, 0.0198882855, 0.0475036614, -0.0544156544, 0.0146961398, -0.0276316758, 0.0153319128, -0.0211272296, 0.0284141656, -0.0169213451, -0.00402248744, -0.0158698745, -0.0162040628, -0.00599093875, -0.0188123621, 0.00459712837, -0.0036882991, -0.0224313792, -0.00278558279, 0.0223498698, 0.00601539155, 0.0184211172, 0.0020611682, -0.0559154265, 0.0281207319, 0.0158780254, 0.0108733503, -0.00634550443, 0.0107673882, -0.00432407204, 0.0194155313, 0.00177996082, 0.00588090112, -0.000475301524, -0.0198230781, 0.0297998264, 0.0218771156, -0.00722173043, 0.00451561902, -0.00328686531, -0.0166034587, 0.0206218716, -0.0316256359, 0.00521252444, -0.0253331121, 0.0129110841, 0.0328156725, -0.0132534234, 0.0318538621, -0.00523697725, 0.0175245143, -0.0347882, 0.0314626172, -0.0174593069, -0.000390735542, -0.0252679046, -0.0465255491, 0.0110282181, -0.00980557688, 0.0193829276, 0.0384398177, 0.0536657684, 0.000128440937, -0.0036944123, 0.0146879889, -0.0236866232, -0.0212576445, -0.0105636148, -0.00497614685, 0.00420180801, 0.00937357731, 0.00799606927, 0.0207522865, 0.0111260293, -0.0150792338, 0.00240248861, -0.00850957818, 0.0170191564, 0.0420588367, 0.0109874634, 0.0349186137, 0.0118840663, 0.0106043695, 0.0119981794, -0.0197415687, -0.00917795487, 0.015299309, -0.0144108562, -0.0356685, -0.00603984436, -0.0464929454, 0.0187634565, 0.00575456163, 0.0291151479, 0.00200105505, -0.017443005, 0.0020611682, -0.0423522703, -0.0195948519, -0.00125830085, 0.00230263965, -0.0365814045, 0.0138891963, -0.0163263269, 0.00495169405, 0.0120959906, 0.0250233766, 0.00132554618, 0.0158291198, 0.0414067619, 0.0292618647, -0.0050087506, 0.033875294, -0.0369400457, 0.0188775696, 0.0171495713, 0.00819169171, -0.0114276139, -0.0227900203, 0.010408747, -0.0208664, -0.0461343043, 0.00541222235, -0.0123160658, -0.012047085, 0.0229693409, 0.0402004197, 0.0101397652, 0.0441454761, 0.00363735575, 0.0217793044, -0.0258384701, -0.0132860271, 0.0247299429, 0.0171984769, 0.0124301789, 0.00217833789, 0.00185841369, -0.0201817192, 0.036516197, 0.0164974965, 0.0210131165, 0.0270774122, -0.0220564362, 0.0159839876, -0.0331091061, 0.00856663473, 0.00284060161, -0.0117862551, -0.013807687, -0.0159595348, 0.0042792419, 0.0443411, 0.003826865, -0.000256117724, -0.0106369732, -0.0093246717, -0.0227411147, 0.0184374191, 0.00919425674, -0.0291966572, -0.0114928214, 0.0383420065, 0.0166116096, -0.00732769258, -0.036516197, -0.00228633778, -0.0254309233, 0.0303377882, 0.0159758367, 0.0271589216, -0.00957735069, -0.0283815619, -0.0174919106, 0.00915350206, -0.0194970407, -0.00657373061, -0.0136935739, -0.020817494, -0.0230019446, 0.0167909302, 0.0197741725, -0.0254146215, 0.00535516581, 0.0418632142, 0.00106981047, -0.00120939524, -0.0383094028, -0.00630067429, -0.00250233756, -0.0185026266, 0.0057586371, -0.0178016461, 0.00773523934, 0.0103435395, 0.00735622086, 0.0233605858, -0.00743365474, 0.0395809487, 0.0381463841, 0.00265109236, 0.00601131609, -0.015935082, 0.00790640898, 0.0274523553, -0.0553285591, 0.0171006657, 0.0115091233, -0.00292618643, 0.0212087389, -0.00365773309, 0.0120226322, 0.0147287436, -0.0330928043, 0.00511878822, 0.0144190071, 0.0190568902, -0.00672452291, -0.0036944123, 0.0048946375, 0.0157068558, 0.00330724264, 0.00899048336, -0.0282185432, -0.0205403604, -0.0109222559, 0.0263927337, -0.0439824574, -0.0113624064, 0.0137913851, 0.0113135008, 0.0124301789, -0.00735214539, 0.0228878316, -0.0414393656, -0.0140277622, 0.0338100865, 0.00750701316, 0.01731259, 0.00384112913, 0.00801644661, 0.0191710033, -0.0299139395, -0.00694459816, -0.0151688941, -0.0157883652, -0.0129436878, 0.00808573, 0.0087459553, 0.00834655948, -0.0220564362, -0.00917795487, 0.0136283664, 0.0148754604, -0.00473569427, -0.0129681407, -0.0196763612, 0.0260993, -0.0115498779, -0.0142152337, -0.000169514024, 0.0445693247, 0.0361249521, 0.00431184564, -0.00749071129, 0.0344621614, -0.00476014707, -0.0317071453, -0.0160247423, 0.00811018236, 0.0252679046, -0.0196763612, -0.00334595959, -0.0132534234, 0.0180135705, 0.0422218554, -0.0258058663, -0.0214369651, 0.0308431461, 0.0514813177, -0.0106858788, -0.00644331565, -0.0140033094, -0.00598278781, -0.000499499612, 0.0417328, -0.0322777107, -0.0177527405, -0.0136365173, -0.0134816496, -0.00687531522, -0.0354402736, 0.0117210476, -0.00716059795, 0.0244039055, -0.00558746746, -0.00857478566, 0.00310346927, 0.00346211041, -0.0302888826, 0.0216814931, 0.000897621911, 0.0302399769, 0.0611646324, 0.0244365092, 0.00216611149, 0.0151362903, 0.00425071362, 0.0185352303, 0.0307779387, -0.0206055678, 0.0180461742, -0.0141092716, 0.00138464046, 0.0248766597, -0.00571380695, -0.00655335328, -0.0135468571, 0.0110037653, -0.0138402907, 0.0253168102, -0.0157231577, 0.00190630043, 0.0115661798, -0.000174608358, -0.0302073732, -0.0438520424, -0.0142478375, -0.0113624064, -0.0131882159, -0.0149895735, -0.0143293468, 0.000641886261, -0.0159187801, -0.00230875285, -0.0233931895, 0.0145249702, -0.00359048764, -0.0164159872, -0.00974852, 0.0303214863, -0.0177038349, -0.0327341631, -0.0045930529, -0.000445754355, -0.00343154441, -0.024338698, 0.0193666257, 0.0145412721, 0.00264905463, -0.00239637541, -0.00846882351, -0.0349512175, -0.000242872455, 0.0233605858, 0.00842806883, -0.0172147788, -0.011411312, 0.00465418492, -0.00799606927, 0.00638218364, 0.00200309278, 0.0113379536, 0.0101805199, -0.00996044464, -0.018453721, -0.0157883652, 0.00473569427, -0.0186493434, 0.0038635442, 0.00156396104, 0.013424593, 0.0166197605, -0.0383094028, 0.00729101337, 0.00847697444, -0.00792678632, -0.00425071362, -0.0395483449, -0.00614580652, 0.0144597627, 0.00194297964, -0.0132208196, 0.00608059904, -0.0131311594, -0.00948769, 0.0693807751, 0.00132860278, -0.0310387686, -0.0319027677, -0.0172310807, -0.0177201368, -0.0299302414, 0.00110139535, 0.0229856428, -0.0121775, 0.0382768, 0.0147939511, -0.0121204434, 0.00834655948, -0.0239311513, 0.0082935784, 0.00199901732, 0.00437705312, 0.00347433682, -0.0236377176, -0.00938987918, -0.00314218621, 0.0143293468, -0.000278660154, 0.00467863772, -0.00672044745, 0.00842806883, 0.00851772912, -0.0293596759, -0.00741735287, 0.00796346553, 0.00371478964, 0.0235073026, 0.0111993877, 0.00265313, 0.0568609349, -0.00832210667, -0.0265883561, -0.00424663816, 0.000869093637, -0.00074682961, -0.0137587814, -0.00456044916, -0.0230508503, 0.0132534234, -0.0130904047, 0.00300158258, 0.00328686531, -0.00280596013, 0.00256143184, 0.0155845918, -0.00107388594, -0.00753554143, -0.00904754, 0.00487833563, 0.0109956143, -0.0188612677, -0.00912089832, 0.0128377257, -0.017443005, 0.014679838, 0.00316867675, 0.0108570484, -0.0238496419, 0.0138810454, -0.00985448249, -0.0165219493, 0.00677342853, -0.016432289, 0.0406894758, 0.0196111538, 0.00968331285, 0.00780044682, -0.0117862551, -0.0534375422, 0.00779637136, -0.00679380586, -0.00544890156, 0.015682403, -0.0238985475, 0.00337245013, -0.0144434609, -0.00938172825, 0.0244039055, -0.0250885841, 0.0221379455, -0.00284671481, -0.0216162857, -0.00327667664, -0.00268165837, 0.00219871523, -0.0174593069, -0.0160002895, 0.0280066188, 0.0148591585, -0.0150384791, 0.0081550125, 0.0100827087, -0.00350490282, 0.00823244639, 0.00355584617, 0.00575456163, 0.0286586937, -0.0116069345, 0.0119818775, 0.00341728027, 0.0132615743, 0.00139992347, -0.0362553671, 0.0160328932, 0.0054692789, 0.0109548597, -0.0248766597, -0.0073929, 0.00699757924, 0.00406935532, 0.0218934175, -0.00317275221, -0.00947138853, 0.00168724393, 0.0116476892, 0.0283815619, 0.0190405883, 0.00618656119, 0.0160328932, 0.0184048153, -0.00258792262, -0.00686308881, 0.0111423312, 0.0190405883, -0.00925946422, 0.0230671521, 0.00742142834, -0.00432814751, -0.0145820267, 0.029604204, -0.0286586937, 0.00783305056, 0.0171495713, 0.0188938715, -0.0145331211, 0.0131148575, -0.0182907023, -0.0142396865, 0.032750465, 0.0163833834, -0.0118759153, 0.00485795829, -0.000462056254, -0.0279088076, -0.00804905, -0.024469113, 0.0175571181, -0.0087459553, 0.0235562082, -0.0073929, 0.0176386274, 0.0107755391, -0.026604658, 0.00328686531, -0.0138321398, 0.0339731053, 0.0249255653, 0.0177690424, 0.0282837506, 0.0177527405, -0.0190242864, -0.0316745415, 0.0121204434, 0.00120328204, 0.0194644369, -0.0110689728, 0.0189916827, -0.0160410441, 0.0108570484, 0.0052166, 0.00507395808, -0.0238985475, 0.0190894939, 0.000701490033, -0.0110608218, 0.0187145509, -0.0233931895, 0.0015527535, -0.0193177201, -0.00200207392, -0.0154623277, 0.00522067538, -0.00383094046, 0.0120307831, -0.0121041415, 0.0014080744, 0.00854218192, 0.0226433035, 0.02182821, -2.18260448e-05, -0.00708723953, -0.00702610752, -0.00406731758, -0.00167501753, -0.00566490134, 0.012422028, 0.013677272, 0.025724357, 0.00590535393, 0.00542852422, -0.00619063666, 0.0249092635, 0.012422028, 0.00544075062, -0.000898131344, 0.015429724, 0.0105473129, 0.0201002099, 0.0114765195, -0.0043036947, 0.0199860968, -0.00979742594, -0.00859923847, -0.00656150421, -0.00753146596, 0.00271222438, 0.00212943228, 0.00126237632, 0.00550188264, 0.0061987876, 0.0217467, -0.00471124146, -0.00488648657, 0.0110037653, -0.0108815012, 0.0393201187, 0.00718097528, -0.00785750337, 0.00414882693, -0.00235562073, 0.015551988, -0.000592471217, -0.0141581772, -0.0129436878, -0.000900678511, 0.0190079845, 0.00745810755, 9.96579402e-05, -0.00981372781, -0.000210778133, 0.0238170382, -0.000826810661, -0.0196111538, 0.0275664683, 0.0175082125, -0.00215184735, 0.0252353, -0.0265557524, 0.0127073107, -0.0110200671, -0.00481312815, -0.00338060106, 0.0010305841, -0.0244854148, 0.0138239888, 0.0366140082, -0.0212576445, -0.0346577838, -0.00982187875, 0.0114276139, -0.0368422344, -0.0177690424, -0.0185189284, 0.0048946375, -0.0267024692, -0.015682403, 0.00109120668, -0.0346577838, 0.00344580854, -0.0127806691, 0.0233116802, -0.0110852746, 0.012422028, -0.0112727461, -0.0133838383, 0.02383334, 0.0160328932, -0.00890897401, 0.0163018741, 0.023083454, 0.0182254948, 0.00183294201, 0.0125605939, 0.0192525126, -0.00567305228, -0.0143211959, 0.0285119768, 0.00703833392, -0.0178016461, 0.0213391539, -0.00449524168, -0.00780044682, -0.00851772912, -0.00713614514, -0.0138891963, -0.00893342681, -0.0117210476, 0.0384398177, -0.00336837466, -0.0180950798, 0.00489871297, -0.0223009642, 0.0362227634, -0.0261156019, 0.00648814579, -0.044536721, 0.00178913062, -0.0374943092, 0.00253290357, -0.00852588, 0.012927386, -0.00588090112, -0.0193014182, -0.0285119768, -0.0162774213, -0.00455229823, -0.0178505518, -0.00687123975, 0.0118514625, 0.00447486434, 0.00840361603, 0.0116802929, 0.00462565664, 0.00139482913, -0.0246321317, -0.0194970407, -0.00344580854, -0.00426294, 0.0163263269, 0.00178403629, -0.0102783311, -0.0255450364, 0.0193177201, -0.00938172825, -0.0360597447, 0.0154052712, -0.00260422449, -0.00730324, 0.0123731224, -0.0102538783, -0.0110934256, 0.00683863601, -0.0118677644, -0.031495221, -0.0206544753, -0.0115987835, 0.00318497862, 0.0197578706, 0.000701999466, 0.0097648222, 0.0108162938, 0.0219749268, -0.00440965686, 0.0137832342, 0.00440965686, 0.00867259689, -0.0008517729, 0.00123894238, -0.00639033457, -0.0315604284, 0.0012043009, -0.00247788476, 0.0305171087, 0.0295552984, -0.00798384286, -0.00339078973, 0.0131148575, 0.016693119, 0.04871, 0.0453844182, 0.0137180267, -0.000746320176, 0.0295226946, -0.00331743131, 0.0124790845, -0.00264090369, -0.000235613028, 0.00984633155, 0.00366384629, 0.00723395683, 0.00102498033, 0.0228226241, -0.00837101229, -0.00127969705, 0.0353750661, 0.0202469267, 0.00575048616, 0.0181113817, -0.0322940126, 0.0042914683, -0.0301258639, 0.0273219403, -0.0295226946, 0.0148999132, 0.0440476649, 0.0358641222, -0.016937647, 0.0119981794, 0.0254798289, 0.00688346615, 0.0327178612, -0.0179157592, 0.00767410733, -0.00662263623, 0.019334022, -0.00460935477, -0.00704240939, -0.0178994574, 0.0183722116, 0.0215184744, -0.0153726675, 0.0279414114, 0.0107592372, 0.010539162, 0.0124709336, -0.00537146768, 0.00737252273, 0.00654112687, -0.0115335761, -0.0435912125, 0.0325059369, -0.0154378749, -0.0243713018, 0.00482127909, -0.0237029251, -0.0227248129, -0.0108244447, 0.0141907809, -0.0133756874, -0.00400007237, 0.000339537481, 0.025349414, -0.0131882159, 2.55990362e-05, 0.00207848893, 0.0023780358, 0.0200350024, 0.0132860271, -0.00690384349, 0.000139966869, 0.0129925935, 0.00571788242, -0.00828950293, 0.0096018035, 0.021697795, -0.0117618022, -0.0138565926, 0.012674707, -0.00697312644, 0.0088845212, -0.0169865526, 0.000875206839, -0.00377388392, -0.0137343286, -0.00778414495, -0.0212413426, -0.00292822416, -0.0164730437, 0.0322288051, 0.00781267323, -0.00694459816, -0.00043836757, 0.00406731758, 0.00439743046, 0.0154215731, -0.0352772549, 0.0126339523, 0.00396543089, 0.0026653565, 0.0239311513, -0.0120633869, 0.0119900284, -0.00810610689, 0.00195724377, 0.000680603262, 0.00807350315, 0.00134694239, 0.00574641069, 0.00462973211, 0.0629904419, 0.0127073107, 0.0225291904, 0.00945508666, 0.0087459553, 0.0169539489, 0.0171332695, 0.0162285157, 0.0258710738, 0.00716874888, -0.0101560671, 0.00273260172, 0.0252842065, -0.00693644723, 0.00613765558, 0.027110016, -0.0051676943, -0.0335818604, -0.00428331736, -0.0111912368, 0.0190405883, -0.0252026971, 0.0105799166, 0.00955289789, 0.00139992347, 0.0141663281, -0.0352772549, 0.000287320523, 0.020328436, 0.0310224667, 0.00838731416, -0.00496799592, -0.0257732626, -0.00031635823, 0.0179320611, 0.0269633, 0.00742550381, 0.00417124201, -0.0226596054, 0.00240860181, 0.00290988456, -0.00348656322, 0.0142233847, 0.0120633869, -0.0100501049, 0.000595018384, 0.00163426285, -0.00335003505, -0.0135224042, -0.020947909, -0.00300565804, -0.00832210667, 0.00328482757, 0.0223661717, 0.00228633778, -0.0091372, 0.027484959, -0.0121775, 0.0121367453, 0.0035395443, 0.012291613, 0.00718912622, 0.00530626, -0.00045772607, -0.000900678511, -0.00127969705, 0.00465418492, -0.00987078436, 0.00570158055, 0.0113216517, 0.0102294255, -0.00033877333, -0.0112808971, -0.0143211959, 0.0143293468, -0.00781267323, -0.0152504034, 7.20211683e-05, 0.00182581, -0.0133512346, 0.011036369, 0.00149671582, -0.00782082416, -0.00219260203, -0.00380648766, 0.00617841026, 0.0266698655, -0.00583199551, 0.0140440641, 0.0147694983, 0.0246647354, -0.00690791896, 0.00475199614, -0.00224558311, -0.0121856509, -0.0142804412, -0.000118061231, -0.00507395808, 0.000744282443, 0.0419610254, 0.000583301415, 0.000672452326, 0.0306801274, -0.0204099454, 0.00331946905, -0.00641886285, 0.00247788476, -0.0146390833, -0.0131882159, -0.00707501313, -0.0147776492, -0.0487426035, 0.0041651288, -0.0105636148, -0.0225291904, -0.00344580854, 0.00440558139, 0.00335818599, -0.00449116621, -0.00960995443, -0.00679380586, 0.00141214987, 0.0139462529, -0.00536739221, 0.0050087506, -0.0095692, -0.0332232192, -0.0111260293, -0.00949584134, 0.0169213451, -0.0220564362, -0.00405305345, 0.000780452217, 0.0129436878, 0.00179931929, -0.0112075387, 0.00964255817, -0.00194909284, -0.00417327974, 0.0172473826, 0.00701795658, 0.0037188651, -0.00323999743, -0.00090220687, -0.0110934256, 0.00183599861, 0.0181276836, -0.00096435775, 0.0038635442, 0.0110852746, -0.032375522, -0.0181439854, -0.00588497659, 0.00202652672, -0.030109562, 0.0161551572, -0.00528180739, -0.00123486691, 0.0164241381, 0.00575456163, -0.00442595873, -0.00147124415, 0.0126991598, -0.000877754, -0.01304965, 0.0279414114, 0.0209316071, 0.00709946593, -0.000132834801, 0.00371682737, -0.0167746283, 0.01757342, -0.0100664068, -0.00806127675, 0.0101234633, 0.00772708841, 0.00122875371, -0.0109548597, 0.018567834, 0.00807757862, -0.0251537915, 0.0100338031, 0.000666848558, -0.00607652357, -0.0145657249, -0.00138260273, 0.000639848527, -0.00535516581, 0.0129110841, -0.0174919106, 0.013799536, 0.0168072321, 0.00587275, 0.00374331791, 0.00329501624, 0.0114765195, -0.0170028545, 0.000806942757, -0.00246158289, -0.00050433923, -0.0252679046, 0.00911274739, -0.0117047457, -0.00862369128, 0.00771893747, 0.000602659886, -0.00743365474, -0.0113461046, -0.00654520234, -0.00792271085, -0.0324407294, 0.00184109295, 0.0186656453, 0.00815908797, 0.0199208893, 0.0252353, 0.000960282283, -0.00778822042, -0.00734807, -0.00392671395, 0.00876225717, -0.00171984767, 0.00558746746, 0.0226270016, 0.0201002099, -0.00720135262, 0.00920240767, -0.00837916322, 0.000264650735, 0.01078369, 0.00721357903, 0.00592573127, 0.036777027, 0.00330520491, -0.0222846624, -0.00551003357, 0.00552633544, -0.0101397652, -0.000165565914, -0.0193666257, 0.0128703294, 0.00769856, -0.0151525922, 0.0106451241, -0.0110282181, -0.0032440729, 0.0145086683, 0.00635365536, -0.0109385578, -8.4534131e-06, -0.0164159872, -0.0048946375, 0.00463788304, -0.0110852746, 0.0169050433, 0.0217303988, -7.2849e-05, -0.000740207, 0.00191139476, 0.00714429608, -0.0126094995, 0.0308920518, 0.00201633805, -0.0195948519, 0.0251537915, -0.00364958216, -0.00092003704, 0.0107510863, -0.0262623187, 0.0134164421, 0.00147124415, -0.00819984265, 0.00529810926, 0.0124057261, -0.017948363, 0.000564452377, -0.0287565049, -0.0138647435, -0.00515954336, 0.00100001809, -0.0181765892, -0.0178994574, 0.0061987876, -0.0207359847, 0.0140766678, -0.0119411228, -0.00389207248, 0.025218999, 0.00318294088, -0.00301177124, 0.0156742521, -0.00574233523, -0.0230345484, 0.0147694983, 0.0163018741, 0.0295552984, -0.014549423, -0.0110852746, 0.0149080642, -0.0142967431, -0.00295267696, 0.00159554591, 0.0140440641, 0.0102620292, -0.014052215, 0.00861554, 0.0608712, 0.00704648485, 0.00667969277, 0.0328645781, -0.00324814836, 0.000413660047, 0.00719727715, 0.00710761687, 0.0132208196, 0.00792678632, -0.0151525922, -0.00122875371, -0.00548558077, -0.00224150764, 0.0108896522, -0.00574233523, -0.00829765387, 0.00373720471, -0.0175408162, -0.00511471275, 0.00808573, 0.00951214321, 0.019334022, 0.0276642796, -0.00685901335, 0.00512693916, -0.0196437575, 0.00583607098, -0.0259362813, 0.00598686328, -0.0109711615, 0.00301584671, -0.00427109096, -0.00484573189, -0.0115498779, 0.00640256098, -0.00787380524, -0.0175897218, -0.00197150791, -0.0181765892, -0.00589720299, 0.015812818, 0.00700165471, -0.00537554314, -0.00180645147, 0.00952844508, -0.00431999657, 0.0167420246, 0.0069649755, -0.000587376882, 0.015299309, 0.0146635361, -0.00833433308, -0.00205301726, -0.00164037605, 0.013432744, -0.00359863858, -0.00686308881, -0.0062354668, -0.00491909031, -0.00780859776, -0.00103160297, -0.0069649755, 0.0313974097, 0.0175408162, 0.00886821933, -0.0106206713, -0.00743365474, 0.0142152337, 0.0182580985, -0.000612339121, 0.0266209599, 0.00349878962, 0.00321350689, 0.00229448872, -0.00837916322, -0.0232790764, -0.0041590156, -0.00873780437, 0.0200676061, 0.00278558279, 0.000841584231, -0.00825282373, 0.0215184744, -0.0198393799, -0.00661448529, -0.00111769722, -0.00930837, -0.00482127909, -0.0074132774, 0.0166768171, -0.0101234633, -0.00690791896, -0.00161796098, -0.00483758096, -0.00676527759, 0.0105065582, 0.0187471546, -0.0126176504, -0.00193075323, 0.0198556818, 0.00141316873, -0.00719320169, 0.0195622481, 0.010164218, -0.00629659882, -0.00555486372, -0.00846067257, -0.00602761796, -0.0235562082, 0.00130618771, -0.00290377135, 0.00642701378, -0.0107592372, 0.000825791794, 0.00315237488, 0.000630678725, 0.0144923665, 0.0278762039, 0.0015710931, 0.00209275307, 0.0148836114, -0.0166197605, -0.00618248573, -0.00530626, 0.0129518388, 0.0162285157, -0.00692422083, -0.00953659602, -0.00668784371, 0.00499652419, -0.00705871126, -0.0120307831, 0.000649527821, 0.00200614939, 0.00578716537, -0.00983003, 0.040917702, 0.00564044854, 0.025724357, 0.0150466301, 0.00879486091, 0.00378611032, 0.00122060277, -2.30041096e-05, 0.00263275276, 0.00921871, 0.0316256359, -0.021453267, -0.00243101688, -0.0141092716, 0.0203121342, -0.0066633909, 0.00411826093, -0.0245995279, -0.00315441261, -0.000414424198, -0.020328436, -0.00519622257, 0.000941433245, 0.000197660222, -0.00719727715, -0.00389207248, 0.00124709331, 0.00975667126, 0.0218771156, 0.00674490025, 0.0152341016, 0.0122671602, -0.0302073732, 0.00273260172, -0.0039776573, 0.0207359847, 0.0107184825, -0.022333568, -0.00271426211, 0.007401051, -0.00804089941, -0.00763742812, -0.0117618022, -0.0111178784, 0.00952844508, -0.0178342499, 0.00579531631, -0.0036821859, 0.013432744, 0.0044300342, 0.0213065501, -0.0265394505, 0.0120552359, -0.00987078436, -0.0148347057, -0.012796971, -0.00109935761, -0.0121856509, 0.00439335499, 0.0114683686, 0.0114520667, -0.0127888201, 0.00330520491, -0.00926761515, -0.00377592165, -0.00389818568, -0.0148673095, -0.00325426157, 0.00929206796, -0.0113216517, 0.0044422606, 0.0208011921, 0.00271222438, -0.0032624125, 0.0209968146, 0.0167257227, -0.00916980393, -0.00110648968, -0.0144842155, 0.013180065, 0.0129599897, -0.0059216558, -0.011924821, -0.00511878822, -0.00572603336, -0.00140909327, -0.00298528071, -0.0259199794, -0.0148836114, 0.0149732716, 0.0256265458, 0.0178016461, 0.0199860968, -0.00741735287, 0.0226922091, -0.00853403099, 0.0142070828, -0.00163018738, 0.0156579502, 0.0213065501, 0.00894157775, -0.00645554205, 0.00412029866, -0.00303418632, -0.0172147788, 0.00898233242, 0.00254716771, -0.00704648485, 0.010539162, 0.00319720502, -0.00601946702, 0.0148999132, 0.0116232364, -0.00657373061, 0.0129518388, -0.0194155313, -0.00568935415, -0.00265516783, -0.0201654173, -0.0270285066, 0.00769856, 0.0131393103, 0.000864508736, -0.00136935746, -0.00815093704, -0.0097648222, 0.0117536513, 0.0135305552, -0.0146309324, 0.00761705078, -0.00157313084, -0.0115335761, 0.00347841228, -0.00180441374, -0.0217140969, 0.00145596114, 0.0116313873, -0.00938987918, 0.00336633692, -0.0407872871, -0.0131067066, 0.0133593855, 0.00715652248, 0.0227574166, 0.00335207279, 0.00378814805, -0.000992886, 0.0236540195, 0.0176386274, 0.00210701721, 0.00298324297, 0.0052043735, 0.00234950753, -0.000189127211, 0.0160002895, -0.000176136658, 0.00130822544, -0.00148856489, 0.0154052712, -0.00478052441, 0.0038513178, 0.0138810454, -0.000186834761, 0.0190894939, -0.0143211959, -0.000994414324, -0.00820391811, -0.00375961978, 0.00115335756, -0.0140277622, 0.0204099454, -0.0176549293, -0.0121367453, 0.00385946874, 0.00357622351, 0.00634958, 0.0128866313, -0.0042914683, 0.000660735357, 0.0134164421, 0.00116864056, -0.000663282524, 0.00723395683, -0.000753961678, -0.00182377221, 0.0116313873, 0.00101784826, 0.00581569364, 0.0194155313, 0.0141500263, -0.00717282435, 0.0261482056, 6.16414618e-05, 0.00292007322, 0.00881931372, 0.00705871126, 0.0123242168, 0.00339690293, -0.0139381019, -0.00146818755, 0.0357989147, 0.0104902564, 0.00632105162, 0.0020795078, 6.56532502e-05, 0.00526550552, -0.0100501049, 0.00625176867, -0.00480090175, 0.00403878931, 0.00716467341, -0.0124790845, 0.023588812, 0.0269469973, 0.0238170382, -0.00314422394, 0.0019073193, -0.00875410624, 0.00831803121, 0.0200187, 0.00694459816, -0.00741735287, 0.00309735606, 0.00389003474, 0.00390022341, -0.00769856, -0.00906384178, -0.000778923917, 0.00412641186, -0.0145331211, 0.00214573415, 0.00172494201, -0.00346414815, -0.0182907023, -0.0130904047, -0.00825689919, -0.00468678866, 0.0219586249, 0.00704240939, 0.00408361945, -0.00111362175, -2.69840584e-05, -0.0275012609, -0.00709539047, -0.0168072321, 0.013432744, -0.0104658036, -0.00694459816, -0.00196845131, 0.0115172742, 0.0277457889, 0.00450746808, 0.00882746466, 0.00530626, 0.0020825644, 0.0120633869, -0.00157720631, -0.00896603055, 0.00607652357, -0.00586459925, 5.63879294e-05, 0.00727878697, -0.00380241219, 0.0182907023, -0.00385946874, 0.0184700228, 0.00968331285, 0.000628641, -0.00440558139, 0.00046078267, 0.00998489745, 0.000788603153, 0.0048824111, -0.00599093875, 0.00494761858, 0.0237192269, 0.0145086683, 0.00180441374, -0.00144577248, -0.00751923956, 0.0302399769, 0.00622731587, -0.00363735575, 0.00571788242, 0.0113461046, 0.016310025, 0.00684271147, 0.00359863858, 0.0187308528, -0.0163589306, 0.0171984769, 0.016057346, -0.00938987918, -0.00528588286, -0.000173462133, -0.00443818513, 0.0084443707, 0.0175571181, 0.0135468571, -0.00733991899, 0.00722173043, 0.0166360624, -0.0067897304, -0.00179931929, 0.00637810817, -0.0210131165, -0.017068062, 0.0231160577, 0.000284009206, 0.0223009642, 0.0266535636, -0.0199697949, -0.0100908596, -0.0188612677, -0.0171658732, -0.015429724, 0.0133593855, -0.000587376882, -0.016693119, 0.0103842942, 0.0156171955, -0.00325426157, 0.00304233725, -0.00606429717, 0.000343103515, 0.010294633, -0.00368626136, 0.0167257227, -0.00228022458, 0.020817494, -0.00221297937, 0.00349063869, 0.00500059966, 0.0192851163, 0.0132371215, -0.0101234633, 0.0301747695, -0.0129518388, -0.0250722822, -0.00776784308, 0.0107592372, 0.00896603055, 0.000374688389, 0.0158535726, -0.00511063728, 0.0199860968, 0.017068062, -0.00802867301, 0.0205240585, 0.00239637541, 0.0154134221, -0.0105717657, -0.00651667407, 0.00167807413, -0.0108244447, -0.0248603579, 0.0151933469, -0.0169865526, 0.0029669411, -0.00563637307, 0.0139951585, 0.0273056384, -4.30152977e-05, 0.00570973149, 0.0288380142, 0.000549678807, 0.00542852422, -0.00245139422, 0.00808165409, -0.0208011921, -0.000290886557, -0.00557931652, 0.00792678632, -0.00812648423, 0.010531011, -0.0132615743, 0.0138973473, -0.00819576718, -0.0286423918, 0.015935082, -0.0176549293, -0.00884376653, 0.0206707772, 0.0187145509, 0.00698942831, 0.025593942, -0.009161653, -0.00110852742, 0.000240070571, 0.0132697253, 0.0237844344, -0.00636588177, 0.00257365825, 0.0210457202, -0.00104026333, -0.00288339402, 0.0108162938, 0.00642701378, -0.00651667407, 0.00681010773, -0.0238007363, 0.0187634565, -0.0065125986, 0.00689161709, 0.0100582559, -0.00419773255, -0.00423848722, 0.0261645075, 0.00806942768, -0.0212250408, 0.00615803292, 0.0143782524, -0.0238170382, -0.0252353, 0.0102864821, 0.0104739545, 0.0048701847, -0.0101397652, -0.00827320106, -0.0161633082, 0.000922074774, 0.0280392226, -0.0186656453, -0.00573418429, 0.0354402736, -0.00107999914, 0.00505358074, -0.00276928092, 0.0266698655, -0.018567834, 0.0193829276, -0.021453267, 0.0172310807, 0.0104005961, -0.00454822276, 0.00110343308, 0.0126421032, -0.021453267, -0.012927386, 0.0047193924, -0.0101479162, 0.0246158298, 0.0246321317, -0.0205240585, -0.0286423918, 0.0082691256, -0.00411214773, 0.0147205926, -0.00511878822, 0.01304965, -0.0178342499, 0.0151118375, 0.00494761858, 0.00246362062, 0.00773523934, 0.00240248861, 0.00534701487, 0.011166784, 0.00980557688, -0.00940618105, -0.0161470063, -0.0166523643, -0.00864814408, -0.0582955033, -0.00171984767, 0.00622731587, 0.00266128103, -0.00038309404, 0.00160675345, 0.000839037064, -0.0158209689, 0.00317479, 0.00147735735, -0.00397154409, -0.0212087389, 0.00691199442, 0.00862369128, -0.00914535113, -0.00880301185, 0.0108407466, 0.0069527491, -0.00907199271, 0.0142233847, -0.0117291985, -0.0072624851, -0.00541222235, 0.000681112695, -0.0235725101, -0.00211109268, 0.00160165911, 0.0178831555, -0.0386354402, -0.00210905494, 0.0144923665, -0.00626807055, 0.00581976911, 0.00374739338, -0.00479275081, -0.00419365708, 0.00192769663, -0.00148347055, -0.010531011, -0.00598686328, -0.00813871063, 0.0066511645, -0.0153971203, -0.0285934862, -0.00508210901, 0.00418143068, -0.0123812733, 0.0193177201, -0.00945508666, 0.0015558101, 0.00654520234, -6.73805471e-06, -0.0227737185, -0.00177588535, 0.0199045874, 0.00420180801, -0.00633735349, 0.00586867472, 0.00882746466, 0.00284263934, 0.0221216436, 0.00239026221, -0.00905569084, 0.00508618448, 0.00790233351, -0.0053429394, -0.00062252779, -0.00264497916, 0.00668784371, 0.0215836819, 0.000477339257, 0.00580754271, 0.00838731416, -7.76886154e-05, -0.00773931481, 0.00429554377, -0.00156599877, 0.0133104799, -0.00372905377, 0.0136935739, 0.0101886708, 0.00143762154, 0.00952844508, -0.00329705398, 0.00502912793, 0.00590535393, 8.38973392e-06, 0.00892527588, -0.0108815012, -0.0178016461, 0.0279414114, 0.00864814408, -0.00386558194, 0.0122671602, 0.01757342, 0.00700165471, -0.0155927427, -0.0178994574, 0.0219097193, -2.47075277e-05, 0.00170864013, 0.00143762154, -0.0114357648, -0.0126584051, 0.00293841283, -0.0332884267, -0.00236988487, -0.0288217124, 0.0196111538, 0.014313045, 0.0180787779, -0.00329094077, 0.00537961861, 0.00485795829, 0.000146462145, -0.00717282435, 0.0143211959, -0.014924366, 0.00157822517, -0.023588812, -0.0175245143, -0.0191710033, 0.00904754, -0.0254635271, 0.0136528192, 0.007091315, 0.00329094077, -0.00625991961, -0.000830886129, -0.0270611104, 0.00376165751, 0.00493946765, 0.00613358, -0.0147531964, 0.00978927501, 0.0157231577, 0.0164485909, -0.0141092716, -0.0170028545, 0.00588497659, 0.00564859947, -0.00533478847, 0.00148245168, 0.0063740327, -0.0210294183, -0.0136120645, -0.00391652528, 0.00703425845, -0.00933282264, -0.0208500978, 0.00656965515, -0.0187308528, -0.00572195789, 0.0209642109, -0.00584829738, -0.0155845918, 0.00381871406, -0.00523290178, 1.88012818e-05, 0.00698127737, 0.0235399064, 0.000679074961, 0.00894157775, 0.00296897884, 0.00777599402, 0.00552633544, 0.00600724062, 0.0227737185, -0.0133104799, -0.01617961, 0.00455229823, 0.0209968146, -0.00853403099, 0.0166034587, -0.00198577205, -0.0482861511, -0.000326037494, -0.0038696574, 0.0225617941, 0.00300769578, 0.0148917623, -0.00111565948, 0.0265557524, -0.00802867301, -1.45268168e-05, -0.0262786206, 0.00517176976, -0.00493131671, 0.0156498, 0.00313403527, 0.0125279902, 0.00465010945, -0.0158372708, -0.0127562163, 0.00455637369, -0.016065497, -0.0175082125, -0.00405305345, 0.00167705526, -0.000643414562, 0.0142396865, 0.00218852656, -0.0119574247, -0.00309124286, -0.0190079845, 0.00122365938, 0.0356685, 0.0167583264, -0.0297672227, 0.000772301282, 0.0167583264, 0.00488648657, 0.00959365256, -0.00755999424, 0.0177201368, 0.0183396079, -0.0205077566, 0.0140685169, -0.00759259798, 0.0225454923, 0.0250559803, 0.000398631761, 0.0220890399, -0.0178994574, 0.0104984073, -0.000395829877, -0.00963440724, 0.0103353886, -0.023213869, 0.00154562143, -0.00162814965, 0.0137017248, 0.0210620221, -0.0223498698, 0.00373109151, -0.00149365922, -0.000228098885, 0.00687531522, -0.00185331935, 0.0133186309, -0.00413048733, 0.0156253465, 0.00830988, 0.00861554, 0.00423848722, 0.0323266163, 0.00683863601, 0.00911274739, -0.00503727887, -0.00624769321, -0.0111912368, 0.000611320254, -0.0123975752, 0.00185026275, 0.00536739221, 0.0190568902, -0.0151118375, -0.00377795938, -0.0157883652, 0.0101968218, -0.0029791675, 0.00121856504, 0.00807757862, 0.0139136491, 0.00186860235, 0.001411131, -0.00288746948, -0.012919235, 0.00465010945, -0.01957855, 0.0149977244, -0.0265883561, 0.00126033858, -0.00878671, 0.0199045874, -0.00107388594, 0.0130659519, 0.0201491155, -0.00656965515, 0.000568018411, 0.00437705312, -0.0202469267, -0.0264253374, -0.00568935415, 0.0120063303, 0.0102457274, -0.00817539, -0.0123649715, -0.0119574247, 0.0139054982, 0.0187471546, -0.0066756173, 0.00131230091, 0.000767206948, -0.0208664, -0.01191667, 0.0133186309, 0.00389614794, -0.0116476892, -0.00555078825, 0.013555008, -0.0286749955, 0.00772708841, 0.00197660225, 0.000595527817, -0.0299465433, -0.00197660225, -0.0127399145, 0.000901187945, -0.00211720588, -0.0122101037, -0.0141337244, 0.00334392185, 0.00868889876, -0.00618656119, -0.00586867472, -0.00908014365, -0.0189427771, -0.00500467513, 0.00764557905, -0.0140114604, -0.0109222559, 0.000345905399, 0.0113298027, 0.0014080744, 0.0131882159, -0.00412029866, -0.0103679923, -0.0221053418, -0.0015496969, 0.00483350549, -0.00329909171, -0.0103598414, 0.00971591659, 0.000422065699, 0.00309531833, -0.000423339283, -0.00348860095, -7.06202263e-05, -0.00949584134, -0.0176386274, 0.00869705, -0.00283245067, -0.00614173105, 0.0198882855, -0.0264905449, -0.0180950798, -0.000123028207, 0.0344947651, -0.011419463, 0.00675712666, -0.0238496419, 0.000174481, 0.0113542555, -0.0137506304, -0.00643924, 0.00754776783, -0.0139218, 0.0215347763, -0.00506173167, -0.00542852422, -0.00468271319, -0.0144434609, -0.0335492566, -0.0270122048, 0.000384112907, 0.0114765195, 0.0140359132, -0.0192525126, -0.00274890359, 0.00465010945, -0.0130985556, 0.005020977, 0.0670985132, 0.0215347763, -0.00679380586, 0.005020977, -0.000981169, -0.00733991899, -0.013424593, 0.0467211716, -0.00716467341, 0.0412111357, 0.00954474695, 0.0271589216, 0.0115335761, 0.00735622086, 0.00213147, 0.00802052207, -0.000638829661, -0.0226759072, -0.0145820267, -0.00599501422, 0.0129925935, 0.000887942675, 0.0121775, 0.00645961752, 0.000188108344, -0.0178016461, -0.0194970407, -0.0116476892, -0.0277620908, -0.00135509332, -0.0133512346, 0.0198882855, 0.0147776492, 0.0245506223, -0.0140685169, -0.00336226146, -0.00373312924, 0.0112156896, 0.0160899498, 0.000224405478, 0.0176712312, 0.024469113, 0.00776376761, 0.00146920641, 0.0101071615, -0.00504950527, -0.016684968, -0.0296368077, 0.0126502542, -0.0147042908, -0.00442188326, -0.00893342681, 0.00449524168, -0.00881931372, 0.00528180739, 0.0144108562, 0.00910459645, 0.00436482672, -0.000751923944, -0.00185026275, 0.0157476105, 0.0262949225, 0.00233524339, -0.0155275352, 0.00746625848, -0.0193177201, -0.00687939068, 0.0103924451, 0.00722580589, -0.00684271147, 0.00755591877, -0.0101153124, -0.0118025569, -0.012169349, 0.00103465957, 0.00403267611, -0.0150058754, 0.0148510076, -0.0127725182, -0.0224965867, -0.0254798289, -0.00497207139, -0.00472346786, -0.00967516191, -0.0253983196, -0.00383705366, -0.00570158055, 0.0147858, -0.0108651994, 0.00774746574, 0.0104168979, 0.00982187875, -0.0167583264, 0.0108162938, 0.00301380898, 0.00381463859, -0.0237844344, 0.00887637, -0.00813871063, 0.00394709129, 0.0260177907, -0.000467914739, -0.012674707, -0.00319924275, -0.0298487321, 0.0298976377, 0.00881931372, 0.0177690424, 0.0150710829, 0.00394505356, 0.0231160577, 0.0343643501, 0.0109956143, 0.00469493959, 0.00807350315, 0.0185352303, -0.00130822544, 0.0138158379, -0.00182784768, 0.00362105388, 0.00333577092, 0.0175408162, 0.0105717657, -0.000177028167, -0.000641886261, 0.00589720299, 0.0219423231, -0.00286097894, -0.000348452566, 0.00318294088, 0.00200207392, -0.00655742874, -0.00337856333, -0.0167420246, 0.0100175012, -0.0109874634, 0.0227737185, 0.00332965772, 0.00402044971, -0.00382278953, -0.00779637136, -0.00218037562, -0.00412641186, 0.0119574247, 0.0112401424, 0.00612542918, -0.00821614452, -0.00250029983, 0.00212535681, 0.0159758367, -0.00750701316, -0.00473569427, 0.0124627827, -0.0308268443, 0.000566999544, -0.00100307469, -0.00742142834, -0.00863999315, 0.0177364387, -0.00798791833, 0.00544075062, -0.000757018279, 0.00896603055, 0.00102345203, -0.0163426287, -0.00643516472, 0.0276479777, -0.0284141656, -0.00196030037, 0.0128132729, -0.000564452377, 0.0323429182, 0.00150486676, 0.018567834, -0.00191241363, -0.00314422394, 0.00814686157, -0.0037188651, -0.00177588535, -0.0053184866, 0.00931652077, -0.00353546883, 0.00501690153, 0.0587519556, 0.0185026266, -0.00850957818, 0.00434852485, -0.0163670816, 0.0187634565, 0.00641071191, 0.0100664068, 0.0048824111, -5.30129291e-05, -0.00261237542, 0.000633225893, -0.000953659648, -0.00128581026, -0.00465418492, 0.0173288919, 0.00947953947, 0.0169050433, 0.00943878479, -0.00418958161, 0.00229448872, -0.0206707772, 0.0280229207, 0.00444633607, 0.00535516581, -0.0170191564, -0.00539592048, 0.00652074954]
|
18 Jul, 2022
|
Onsen UI Fab CSS Components
18 Jul, 2022
Onsen UI CSS is used to create beautiful HTML components. It is one of the most efficient ways to create HTML5 hybrid components that are compatible with both mobile and desktop. In this article, we will learn how to include Fab using Onsen UI.
Fab or Floating Action Button is a button that floats on the screen and has a button that performs an action. Material Fabs are circular in shape and have a dark shadow under them.
Syntax:
<element-name class="class-name">...</element-name>
Component Present in Fab are:
Fab: This component is used to create a simple fab using the following classes.
fab: This class is used in the button to make it fab.
disabled: This attribute makes the fab disabled.
Material Fab: This component is used to create a simple fab of material type using the following classes.
fab–material: This class is used to make fab of material type.
Fab Mini: This component is used to create a simple mini fab using the following classes.
fab–mini: This class is used in the button to make it mini fab.
Material Fab Mini: This component is used to create a simple mini fab of material type using the following classes.
fab–material fab–mini: This class is used to make mini fabs of material types.
Example 1: In this code, we will make use of the above classes to demonstrate the use of fab components.
HTML
<!DOCTYPE html>
<html>
<head>
<!-- CDN links of Onsen UI library -->
<link rel="stylesheet" href=
"https://unpkg.com/onsenui/css/onsenui.css">
<link rel="stylesheet" href=
"https://unpkg.com/onsenui/css/onsen-css-components.min.css">
<script src=
"https://unpkg.com/onsenui/js/onsenui.min.js">
</script>
</head>
<body>
<center>
<h1 style="color: green;">
GeeksforGeeks
</h1>
<h3>Onsen UI Fab CSS Components</h3>
<button class="fab">
<i class="zmdi zmdi-car"></i>
</button>
<button class="fab" disabled>
<i class="zmdi zmdi-car"></i>
</button>
</center>
</body>
</html>
Output:
Example 2: In this code, we will make use of the above classes to demonstrate the use of fab components.
HTML
<!DOCTYPE html>
<html>
<head>
<!-- CDN links of Onsen UI library -->
<link rel="stylesheet" href=
"https://unpkg.com/onsenui/css/onsenui.css">
<link rel="stylesheet" href=
"https://unpkg.com/onsenui/css/onsen-css-components.min.css">
<script src=
"https://unpkg.com/onsenui/js/onsenui.min.js">
</script>
</head>
<body>
<center>
<h1 style="color: green;">
GeeksforGeeks
</h1>
<h3>Onsen UI Fab CSS Components</h3>
<button class="fab fab--mini">
<i class="zmdi zmdi-plus"></i>
</button>
<button class="fab fab--mini" disabled>
<i class="zmdi zmdi-plus"></i>
</button>
</center>
</body>
</html>
Output:
Reference: https://onsen.io/v2/api/css.html#fab-category
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components
|
https://www.geeksforgeeks.org/onsen-ui-fab-css-components?ref=asr6
|
CSS
|
Onsen UI Fab CSS Components
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0219017789, 0.0232572109, -0.0244969334, -0.0112566883, 0.0597381368, 0.0238026883, -0.0262325462, 0.00603745272, -0.0255878903, -0.00723585207, -0.000808402954, 0.0247779377, 0.030447606, -0.0460515916, -0.0261664279, 0.00463656522, -0.0512088388, -0.000164650759, -0.0129013881, -0.00733089773, -0.00227282615, -0.00967810676, -0.0463160649, -0.012992301, -0.0120253162, 0.00507873343, 0.0191743877, 0.0408612825, -0.0159097835, 0.0316542685, 0.0134055419, 0.00462416839, -0.0153064514, -0.00642589945, -0.0189595036, -0.027753273, 0.0348775499, 0.0395719707, -0.0289268792, -0.0155048072, 0.0124798818, 0.00187818089, 0.016728, 0.0677054226, -0.0148684159, -0.00739288377, -0.0160668157, -0.0269102622, 0.00142568187, -0.0364313386, 0.0256870687, 0.0420844778, 0.0632754788, 0.0413571708, 0.00788050797, 0.0249597635, 0.00333278975, 0.0446631, -0.00341337174, 0.00973596051, -0.00546304788, -0.0620853454, -0.0124137634, -0.0266788471, -0.0146865891, 0.0399025641, -0.0277202148, 0.020827353, -0.00113124761, 0.01119057, -0.011868285, 0.0147113837, -0.00362619082, 0.0320675112, -0.0342494249, 0.0168437082, 0.021736484, 0.00104395044, 0.000633808551, 0.0153064514, 0.0279846881, 0.00303112366, -0.0331584662, -0.0265135504, 0.00417993404, 0.0319848619, 0.0234720949, -0.0450267531, -0.00634738384, 0.0257366579, 0.00857888535, 0.0216207765, 0.0272408556, -0.0164469965, 0.0157692805, 0.0240341034, 0.0327286981, -0.0127526214, -0.0195876285, 0.0214389488, 0.00921527669, 0.0249267053, -0.011529427, -0.037158642, 0.0150750363, -0.00328526692, 0.0558371395, 0.0022666275, 0.00626886776, -0.0275714472, 0.0330427587, -0.0101492023, -0.026199488, 0.0399025641, -0.00882683, 0.0343155414, -0.00852103159, -0.0220670756, 0.00510766031, 0.0329766423, 0.0210918263, 0.00377289136, 0.014331202, 0.0583827049, -0.0537544042, 0.0499525853, 0.0142154945, 0.0368611068, 0.0127691505, 0.0220009573, -0.00260548526, 0.0254225936, 0.0138187828, 0.0011436448, 0.0484979786, 0.00583909685, 0.0268441439, 0.0317865089, -0.0480020903, -0.00649615051, 0.00915742293, 0.00220464147, -0.0106616206, 0.0170585942, -0.0193562135, 0.00210546353, 0.0150833009, 0.0570933931, 0.00916568842, 0.0196372177, -0.0319352746, -0.0229927357, 0.00259928661, 0.00235754065, 0.040299274, -0.00631845696, -0.0332245864, 0.00612836564, 0.0393736139, 0.0137939891, 0.042745661, -0.018149551, 0.00798381865, -0.0201661661, -0.0496219955, 0.0288277, 0.0118021667, 0.00752512086, -0.0489277504, 0.0450928733, 0.0372908786, -0.00724824937, -0.0275549181, 0.0109674195, -0.00585975917, 0.0303814877, 0.0453904048, 0.000646205794, 0.00752512086, -0.0165213794, -0.0492252819, 0.00801274553, 0.0339188315, 0.0062606032, 0.00293401186, 0.0144799687, 0.019009091, -0.0244804043, -0.0239845142, -0.0191082694, -0.022827439, 0.00296293874, 0.00385760586, 0.0473739617, 0.0295054168, 0.0014081191, -0.0134964548, 0.0383818373, -0.0269763805, 0.0339518897, -0.0264639612, -0.00221910491, 0.0255548302, 0.0070994827, 0.0257035978, 0.0265135504, -0.00497542322, -0.0530271, 0.0407951623, -0.000741767813, -0.019240506, 0.0037997521, 0.0201661661, -0.0123311151, 0.00766975526, 0.0132402452, -0.0259184837, 0.00168912311, -0.0435390845, -0.00344023225, -0.00544238556, 0.0304806661, 0.00961198844, 0.0229100883, -0.0451259315, -0.0152733922, 0.00509939529, -0.0202653445, 0.0170751233, 0.00705815852, -0.00325427391, -0.0205132887, -0.0146948546, 0.0175379533, 0.0340841264, -0.00178416853, 0.00920701213, -0.0153395105, -0.0392744355, 0.0444316864, -0.00824002828, -0.000468253857, -0.02091, -0.00283276802, 0.019918222, 0.00912436377, 0.0407621041, 0.00586389145, 0.00923180673, 0.00473574316, 0.013868372, 0.00159614382, -0.0166453533, 0.0236539226, 0.00804993697, 0.0286128148, 0.010636827, -0.00241952669, 0.0119922571, 0.0224637873, 0.0291252341, 0.0253399462, 0.0241167527, 0.0174387749, -0.00066996715, -0.0249267053, -0.00492996676, -0.0441672131, -0.0096946368, -0.0242655184, 0.043472968, -0.0444647446, 0.0336212963, -0.00273359, -0.0220670756, 0.0332245864, -0.0221993141, 0.0013760929, 0.0200008713, 0.0124302926, 0.0260507204, 0.0221993141, 0.0219183099, 0.0186123811, -0.00290095271, -0.0321171, -0.0234720949, 0.015884988, -0.0314559154, 0.0224307291, -0.0251911785, -0.0113228066, -0.0105624432, 0.000454823516, 0.0190752111, 0.0183974952, 0.0068928618, -0.0250093527, 0.0294227675, -0.0165792331, -0.0261664279, -0.0208769422, -0.0119426688, -0.0317534469, 0.0107938582, 0.0391091406, 0.0389438421, 0.0116947237, -0.0133972773, 0.0107690636, 0.023951456, 0.0132485107, -0.0195711, -0.0291748233, -0.0433737896, -0.0164883211, 0.00595067209, -0.00997564103, -0.0542172343, -0.0488946885, -0.0260176603, -0.0219513681, -0.0379520655, 0.031803038, 0.0512088388, -0.0105541786, -0.0411588177, -0.0259184837, 0.00820696913, 0.0119426688, -0.0421175361, -0.027769804, 0.0047150813, 0.0118104313, -0.00142258254, -0.0291748233, -0.00317162555, 0.0271086171, 0.0288111717, -0.00885989, -0.0279516298, -0.0113310721, -0.00314889732, -0.00851276703, 0.00180276437, -0.0200339295, -0.019009091, 0.00509113073, 0.0464152433, -0.00370883918, 0.00154138939, -0.00464483025, 0.0388116054, -0.0533246361, 0.0451589897, 0.0107360044, 0.00782678649, -0.0425803661, -0.0220009573, 0.00862847455, 0.00827308744, 0.0154634826, 0.0281665158, -0.0198190436, 0.00172218238, -0.0330097, -0.03580321, -0.0109013012, -0.0139592849, 0.000345056353, -0.0320840403, 0.0188437961, -0.0210091788, -0.00631432422, -0.0362329818, 0.0105376486, -0.00407662382, -0.000221600552, -0.0687633231, 0.015653573, -0.0333898813, 0.00726477895, 0.0234886259, 0.0231415033, 0.0488946885, 0.0176536608, -0.0281334557, -0.0193066262, -0.0380512439, 0.0034588282, -0.0380181819, 0.016703207, 0.0299517158, 0.00328113441, 0.00145047635, -0.0505476557, -0.0168106481, -0.016670147, 0.00190297537, -0.0464813598, 0.0135047203, 0.0343486033, 0.0209926497, 0.00303732231, 0.00369644188, -0.0305302534, -0.01467006, -0.00387826795, 0.00831027888, 0.00306831533, 0.00742181065, -0.0501509421, 0.0263482537, -0.000950971153, 0.0349106118, -0.00635978067, 0.0142320246, 0.0401009172, 0.00673996285, 0.00681434618, 0.0690278, 0.00386793702, -0.0101657314, 0.038745489, 0.0189429726, -0.00701270206, -0.0618869923, -0.0135873677, -0.0100996131, -0.0263978429, -0.0428778976, -0.00367371365, 0.00768215256, 0.0220174864, 0.0090003917, 0.0157279577, 0.0501178838, -0.0040084389, -0.0159841664, -0.0260507204, -0.00103930139, 0.0142816128, 0.00595480436, -0.00630605966, -0.0611596853, 0.0184801426, -0.0284475181, -0.0370264053, -0.0144964987, -0.0113310721, -0.0124468226, -0.0170255341, -0.0564322062, -0.0207116455, 0.00793009717, -0.0297203, 0.03580321, 0.0200835187, 0.00784331653, -0.0396050289, -0.00616969, 0.0301996619, -0.00983513892, 0.0167693254, 0.02934012, -0.0178354867, -0.041423291, 0.00312616909, -0.0108599765, 0.0410265774, -0.0244804043, 0.0146948546, 0.0245299935, 0.0262986645, 0.0225794949, 0.00817804225, -0.0175875425, -0.0128022097, 0.013546044, -0.0282491632, 0.0543494709, 0.00724824937, 0.0450267531, -0.0355387367, 0.0266953763, -0.042745661, 0.0208604112, -0.0138187828, -0.0138270482, 0.0279516298, 0.0172073599, -0.0156948976, -0.0501178838, -0.0163230244, 0.0112070991, -0.00985993352, -0.00876897667, 0.0047150813, -0.0178024285, -0.0204802305, 0.0299021285, 0.0245961118, 0.00191640574, 0.0639366657, -0.00347949029, 0.00114054547, -0.0275053289, 0.0294392984, 0.00906651, 0.0191909187, -0.0243316367, 8.49081407e-05, -0.002091, 0.0303980168, -0.0423820093, -0.0231415033, -0.0153147159, 0.0449606329, -0.0254887119, -0.0144138504, 0.0198355746, -0.0127278268, -0.0180834308, 0.013653487, 0.0253730044, 0.00587215647, 0.0154717481, -0.0245961118, 0.023505155, -0.027538389, -0.0401670374, -0.00956239924, 0.0134551311, 0.0403984524, 0.00424398622, 0.0189595036, -0.00396918086, 0.00400430663, 0.00894253794, -0.00530601619, -0.0458201766, -0.0244473442, -0.0405968092, -0.00395678356, -0.0110418033, 0.00838466268, 0.00717386603, -0.00712840958, -0.0120501108, 0.00640937, 0.00109198969, 0.0515724905, 0.0199016929, 0.014099787, 0.00436795875, 0.000494856271, -0.0348444916, -0.0198521037, -0.0119591979, -0.0179677233, -0.00839292724, -0.0274392106, 0.0359354466, 0.00716973329, 0.0112070991, -0.041654706, -0.0149097396, 0.00528535387, -0.0316212103, -0.0012118296, 0.0147279138, -0.00183169125, 0.0189760327, -0.0268276129, 0.0113310721, 0.0105541786, 0.0295054168, -0.0131906569, 0.0303318985, 0.0116120754, 0.0215215981, -0.0271416772, 0.0174883641, -0.0216868948, 0.0309930835, 0.013546044, 0.00711187953, -0.00263027987, -0.0269433204, -0.0268441439, 0.0124964118, 0.0300839543, -0.0245299935, 0.0198025145, 0.0209430605, 0.0118021667, 0.0248605851, 0.00933098421, 0.017009005, -0.0145212933, 0.00356420479, -0.0110252732, 0.0230092648, 0.023075385, -0.00616142526, 0.00960372388, 0.00188128022, -0.00875244662, -0.00485145068, -0.0137278698, -0.0227117315, 0.00315922848, 0.0220505465, 0.0075747096, -0.0165461749, 0.00674409512, -0.00429357542, 0.00310757314, -0.006211014, -0.00311583816, 0.00467375712, -0.0163808782, 0.0577545799, 0.0156783685, 0.0111492453, -0.00168809, 0.00156205148, -0.0035187481, 0.00564900599, -0.00908304, -0.031125322, -0.0197859854, -0.00823589601, -0.00189574366, -0.0118848151, 0.0109591549, 0.029786421, 0.00498782052, -0.0221001357, 0.0207612347, -0.00291128363, 0.006942451, -0.0105707077, 0.0502501205, -0.0128022097, 0.0261168387, -0.0211248863, -0.00133580191, -0.0144469095, -0.0216703638, -0.0188768543, 0.019719867, -0.0442002714, -4.41328593e-05, 0.00509526301, 0.0103144981, -0.00436795875, -0.0174057167, 0.000892600801, 0.0196372177, -0.0118765496, -0.0366296917, 0.0383487754, 0.00959545933, -0.00112608203, -0.00652507739, 0.0189595036, -0.015562661, -0.00721519, 0.00954587, 0.0462499447, -0.0187776759, 0.01208317, 0.036034625, -0.00550023932, -0.0302988384, 0.000442684541, 0.011314542, 0.0321171, -0.0173395984, -0.0130749494, -0.0143477321, 0.00795902405, 0.0102814389, -0.0426464826, -0.0131989215, -0.0354395583, -0.00876897667, -0.00178106921, -0.00213852292, 0.0320840403, -0.00778546277, 0.0204802305, 0.0139096966, 0.00289888657, -0.022827439, -0.00885162503, -0.0231910925, 0.0161246695, 0.0312740877, 0.0189595036, -0.0089260079, -0.0338527113, 0.0134881902, 0.00960372388, 0.0205628779, 0.00547544472, 0.0287285224, -0.0127939451, -0.00253110193, 0.0238357484, 0.00546304788, 0.0250589419, 0.0452912264, -0.0518700257, 0.0153560406, -0.0226290841, 0.0174222458, -0.0316708, 0.0237200409, -0.0127278268, -0.00658293115, -0.0176867209, -0.00222530356, -0.000582153443, -0.00601679087, 0.0128022097, -0.0191082694, -0.013760929, -0.0030931097, 0.0265135504, -0.00266953767, 0.0119096087, -0.000468253857, -0.0531923957, 0.0228109099, 0.0207447037, 0.00997564103, -0.0191082694, 0.00466962485, 0.0041778679, 0.0102235852, -0.0014205164, 0.0111079216, 0.00137815916, -0.0299021285, 0.0307616685, 0.0221827831, -0.0157858115, 0.0165461749, -0.00214058906, -0.0304641351, 0.0104880594, -0.0303649586, 0.00136369572, -0.0334394723, 0.0120501108, 0.0354726166, -0.0167114716, 0.0351420268, -0.00262821349, 0.00941363256, -0.0316212103, 0.0263317246, -0.0171577707, -0.00790530257, -0.015794076, -0.0501509421, 0.0140006095, -0.0151824793, 0.014116317, 0.0375553519, 0.0500848256, 0.0022666275, -0.00588868605, 0.00776066817, -0.0247614086, -0.0204802305, -0.0149180042, -0.009620253, 0.0124468226, 0.00148766802, 0.0126121193, 0.0226456132, 0.00435556145, -0.0279185697, -0.00113744615, -0.0113558657, 0.0198686328, 0.0451589897, 0.00344436476, 0.0346130766, 0.00937230885, 0.0112732183, 0.0269598514, -0.0211248863, -0.0107690636, 0.00556222536, -0.0115624862, -0.0427787229, 0.00147217151, -0.0480682068, 0.017471835, -0.00220877375, 0.0312079694, 0.00156205148, -0.0210257079, 0.00791356713, -0.0422167145, -0.0197363961, 0.00335965026, 0.00252283714, -0.04182, 0.0184140243, -0.0211414155, -0.000308639457, 0.0121244946, 0.0257366579, -0.000945289095, 0.0173561275, 0.0329105221, 0.0332576446, -0.00408282224, 0.0294392984, -0.028430989, 0.0126699731, 0.0181826092, 0.00574405165, -0.0210091788, -0.0323650464, 0.00328320079, -0.0237035099, -0.0463491231, -0.00161990523, -0.0103062335, -0.0165296458, 0.0335551798, 0.0343155414, 0.0184470844, 0.0488946885, 0.00151349558, 0.0137857236, -0.031356737, -0.00975249056, 0.0178685468, 0.00995084643, 0.00737222144, 0.000419181451, 0.00512419, -0.0278193932, 0.0395058505, 0.0160750803, 0.0217034239, 0.0286789332, -0.00846317783, 0.0169428866, -0.0383818373, 0.00145357568, 0.00654987199, -0.0128517989, -0.01511636, -0.0144303804, 0.000813051884, 0.0342824832, 0.00360139646, -0.0102814389, -0.0134551311, 0.00285136374, -0.0240506325, 0.0127030322, -0.00125108752, -0.0299847759, -0.0076490934, 0.0481673852, 0.0136617515, -0.00736808917, -0.0361668617, 0.0029484753, -0.0211910047, 0.0311418511, 0.0155791901, 0.0386132523, -0.0232076216, -0.0338196531, -0.0150337117, 0.00175834098, -0.00408695452, -0.00647962093, -0.0128600635, -0.026414372, -0.024414286, 0.0159180481, 0.0213067122, -0.0251250602, 0.00135543093, 0.0334725305, -0.00663665263, 0.00784744881, -0.0298360083, -0.0069176564, 0.000314579811, -0.00542585598, -0.00546304788, -0.0262656063, 0.0190752111, 0.00103206967, 0.0105872378, 0.0149758579, -0.0160750803, 0.043241553, 0.0375553519, 0.00305385189, 0.00500021782, -0.0193727445, 0.00159201142, 0.0309600253, -0.0549445413, 0.0162651706, 0.0132402452, -0.00159407768, 0.0204802305, -0.00291335, 0.0165709686, 0.0129427118, -0.041423291, 0.0157362223, 0.004702684, 0.0204802305, -0.015901519, -0.00888468418, 0.00276251696, 0.0199678112, 0.00732676499, 0.00118393579, -0.0320675112, -0.0170585942, -0.0102731744, 0.0239845142, -0.0491922237, -0.00135543093, 0.0126121193, 0.0198521037, 0.013207186, -0.00485558342, 0.0191413295, -0.0424481295, -0.0131906569, 0.0254060645, 0.00479359692, 0.0214389488, 0.00100882491, -0.00118083647, 0.0171908308, -0.0353073217, 0.00378322252, -0.0168106481, -0.0201992262, -0.00464069797, 0.00852103159, 0.0208108239, 0.0114467787, -0.0227447916, 0.00269846455, 0.0112566883, 0.0184470844, -0.00160440861, -0.00977728516, -0.0249928236, 0.0319352746, -0.00310963951, -0.0231745616, -0.00348775508, 0.0312244985, 0.0330262296, 0.00361586, -0.00415513944, 0.026430903, -0.00226869388, -0.0331088789, -0.017009005, 0.00592174521, 0.0268276129, -0.0145543525, -0.00248771161, -0.0152651267, 0.0155874556, 0.0410265774, -0.0171081834, -0.017918136, 0.0276375655, 0.0464483, -0.00464483025, 0.000774827087, -0.0164139383, -0.006211014, -0.0061035715, 0.0383157171, -0.0383157171, -0.0119426688, -0.0251746494, -0.0141989654, -0.000652921, -0.0365966335, 0.00657466613, -0.0126203839, 0.0213893615, 0.000312771881, -0.00669450639, -0.00284309895, 0.000311480486, -0.031108791, 0.0171908308, -0.00864500459, 0.0282822233, 0.0521675609, 0.0185958501, 0.00381008326, -0.00159821007, 0.006273, 0.0158023406, 0.0235712733, -0.021934839, 0.0122815259, -0.0124633526, -0.001496966, 0.0297203, -0.012422028, -0.004117948, -0.00970290136, 0.0144138504, -0.0090747755, 0.0236043334, -0.00769041711, 0.00742181065, 0.0160172265, 0.00155378657, -0.0307451393, -0.0530601591, -0.0185627919, -0.013314629, -0.0129509764, -0.0168519728, -0.0137939891, -0.00344229862, -0.013099744, -0.0112484237, -0.0172734782, 0.0130584193, 0.0001600018, -0.00778959505, -0.00849623792, 0.0370264053, -0.015992431, -0.0383157171, -0.00731023541, -0.00917395297, -0.00302905752, -0.0221001357, 0.0144469095, 0.0123063205, 0.000574405189, 0.00250630733, -0.00404769694, -0.0298194792, 0.00130170956, 0.0267945547, 0.00569446292, -0.00770694716, -0.00636391342, 0.00604571775, -0.0120501108, 0.00581843499, -0.00481839152, 0.0134303365, 0.00426878082, -0.00105376483, -0.0216703638, -0.0180173125, 0.0038844666, -0.0190256219, 0.00841359, -0.00459937379, 0.0200504586, 0.0172734782, -0.0308277886, 0.00856235623, 0.00747553213, -0.0109095657, -0.0038720693, -0.0426134244, -0.00800034776, 0.0106946807, -0.0113723958, -0.0137857236, 0.00367577979, -0.0195711, -0.0123641742, 0.0645647943, -0.00771934399, -0.0265961979, -0.0343486033, -0.0155213363, -0.0173891857, -0.026199488, 0.00428117812, 0.021736484, -0.0105624432, 0.0294227675, 0.0103227636, -0.0189429726, 0.00439275336, -0.0204637013, 0.00763256336, 0.00983513892, 0.00324394275, 0.00214058906, -0.027323503, -0.0133228935, -0.00219224417, 0.0156866331, -0.000808402954, 0.00646722363, -0.00781852193, 0.00527708931, 0.00393612171, -0.0339849517, -0.00875244662, 0.0183313768, 0.0112153646, 0.0261664279, 0.0102814389, 0.00519857323, 0.0448614582, -0.00901692174, -0.0314724445, -0.00592174521, 0.00381008326, -0.0031365, -0.00549610704, -0.00254349923, -0.0236043334, 0.00745487, -0.00612836564, 0.00202074903, 0.00318195671, -0.00486798026, 0.00440928293, 0.0203149337, 0.000419956283, -0.000326977053, -0.00577711081, 0.00137505983, 0.00756644504, -0.0153808342, -0.0185462609, 0.0131741269, -0.0229100883, 0.0161081385, -0.00244638743, 0.011099657, -0.0202322863, 0.00766975526, -0.00679368386, -0.0178520158, 0.0104632657, -0.0183644351, 0.037621472, 0.0174222458, 0.00568206562, 0.0134716602, -0.010297969, -0.0481673852, 0.00391339324, -0.000833714, -0.00533907535, 0.0155130718, -0.026430903, 0.0163643491, -0.0147361783, -0.00286376104, 0.0164965857, -0.0259350128, 0.019918222, -7.87095196e-05, -0.0155296018, -0.00447540125, -0.00307864626, 0.00478119962, -0.017918136, -0.0143394666, 0.032943584, 0.00609943876, -0.023075385, 0.0077813305, 0.0101326723, -0.011975728, 0.0133807473, 0.00747553213, 0.00645895861, 0.0256870687, -0.00780612463, 0.0182487275, 0.00383694377, 0.0126617076, 0.00170461962, -0.0331584662, 0.0221001357, 0.0103392927, 0.0111161862, -0.0319187455, -0.00876071211, 0.00697964244, 0.00851276703, 0.0248275269, 0.0043225023, -0.0112897474, -0.00191640574, 0.0132898344, 0.0342163667, 0.0155213363, 0.000613663055, 0.011314542, 0.0226456132, -0.0104467357, -0.000468512124, 0.00876897667, 0.0166453533, -0.0187446177, 0.020595938, 0.00520270597, -0.000542379, -0.00973596051, 0.0242985785, -0.0335221216, 0.00981034432, 0.021058768, 0.014777503, -0.0145874117, 0.0149262697, -0.0272573847, -0.0173561275, 0.0292244125, 0.0179677233, -0.0111327162, 0.0119178742, 0.00332865724, -0.0270094406, -0.00835986808, -0.0251911785, 0.0102401152, 0.00174077821, 0.0208438821, 0.000723688514, 0.0120087871, 0.0137691945, -0.0260176603, -0.00245258608, -0.010744269, 0.0292740017, 0.0245961118, 0.0222819615, 0.0244969334, 0.0191082694, -0.0183313768, -0.03580321, 0.00555809308, 0.0033741137, 0.0159345772, -0.00642176718, 0.0107773282, -0.020595938, 0.00438448833, 0.00151349558, 0.0115211625, -0.0209761187, 0.0182652585, 0.00040755907, -0.0119922571, 0.00909130462, -0.0190752111, -0.00670690322, -0.0119344033, -0.00279764249, -0.0172073599, 0.00690939138, -0.00406629266, 0.00603745272, -0.00997564103, 0.00807059929, 0.00917395297, 0.0172073599, 0.0210257079, 0.00224596541, -0.00289475406, -4.8426693e-05, -0.00614902796, -0.00383694377, -0.000307864626, 0.0122484667, 0.0183148459, 0.0204637013, 0.00972769596, -0.00100210973, -0.00500848237, 0.0250589419, 0.0159676373, 0.00225009792, -0.00342370267, 0.00739288377, 0.0145956762, 0.0124633526, 0.0102483798, 0.00227489229, 0.0118186958, -0.0056985952, -0.0022149724, 0.000132172587, -0.00151142944, 0.0118848151, 0.00726064667, 0.00326873735, 0.00205380842, 0.013653487, 0.0231249724, -0.00290301885, -0.00948801637, 0.0100830831, -0.0154634826, 0.0442002714, 0.0146204708, -0.0110170087, 0.00876071211, 0.007504459, 0.0204967596, -0.00353527791, -0.0135625741, -0.0164139383, -0.000717489922, 0.0186123811, 0.00771521172, -0.0036799123, -0.0142154945, -0.000241100366, 0.0260507204, -0.00441341521, -0.0209265314, 0.0321832187, 0.00732263271, -0.00111575099, 0.0254060645, -0.0279351, 0.00716973329, -0.00182342646, 0.00454565231, 0.00138952327, 0.0120914355, -0.0172073599, 0.00430597272, 0.0376875922, -0.0201661661, -0.0357370935, -0.0074424725, 0.00388653274, -0.039836444, -0.0250589419, -0.023934925, 0.00801687781, -0.0275549181, 0.0109508894, 0.00146597286, -0.0307451393, 0.00177383749, -0.00972769596, 0.0297037717, -0.00480186194, 0.00707882037, -0.0104963249, -0.0174057167, 0.0171081834, 0.0152155384, 0.000222246235, 0.0100996131, 0.0188768543, 0.0117029883, 0.00145254249, 0.00760776922, 0.0266953763, -0.00619035214, -0.0158271343, 0.0219183099, 0.0145708816, -0.0198190436, 0.0260507204, 7.53438644e-06, -0.0134551311, -0.00699617201, -0.0106533561, -0.0136700161, -0.0133724827, -0.0119922571, 0.0466466583, -0.00348982122, -0.0138022536, 0.00437622331, -0.0241994, 0.0422828309, -0.0243151076, -0.00427291309, -0.0468780734, -0.00201971596, -0.0370264053, 0.000427188, -0.0131823914, 0.0151246255, 0.00486798026, -0.0142733483, -0.0319187455, -0.0203314628, -0.00263027987, -0.0119261388, -0.00626886776, 0.00818217453, 0.00812845305, 0.0140336687, 0.00617382256, -0.00166846102, 0.000555292761, -0.0268772021, -0.0223150216, -0.00609943876, -0.0131658623, 0.0140667278, 0.0018213602, -0.0134468665, -0.022596024, 0.0236869808, -0.0200174, -0.025092, 0.00565727102, -0.0031365, -0.0111657754, 0.0158436652, -0.0151576847, -0.0113641312, 0.0090747755, -0.0124881463, -0.0250093527, -0.012314585, -0.0124716172, 0.0027170605, 0.0260011312, 0.00156928319, 0.00526469201, 0.00675649242, 0.0170585942, -0.0126038538, 0.0037997521, 0.00377909, 0.00675236, -0.00893427338, 0.00351048331, -0.00899212714, -0.03580321, 0.00650854781, 0.00440928293, 0.0417869426, 0.0267119054, -0.0155543955, -0.00102328835, 0.015223803, 0.01465353, 0.0537544042, 0.037390057, 0.0203645229, 0.00833507348, 0.0319187455, -0.00929792505, 0.0101161432, -0.00464069797, -0.00563247642, 0.0101326723, 0.0105789732, 0.00188541261, 0.00366544886, 0.015653573, -0.00818217453, -0.00311997044, 0.0330923498, 0.0228109099, 0.014116317, 0.0215381272, -0.0241167527, 0.00771521172, -0.0240341034, 0.0223811399, -0.030001305, 0.0112153646, 0.0396050289, 0.0481673852, -0.0192239769, 0.0101987906, 0.0254391227, -0.00557049038, 0.031538561, -0.0207942929, 0.00832680892, -0.00634738384, 0.015008918, -0.00686806766, -0.00576884625, -0.0196702778, 0.0138105182, 0.0187611468, -0.0138353128, 0.0142650837, 0.0195380412, 0.0103475582, 0.00635978067, -0.00571512477, 0.01511636, 0.00941363256, -0.0131906569, -0.0430762544, 0.0369933471, -0.011066597, -0.0256705377, 0.0105955023, -0.0190752111, -0.013868372, -0.00776066817, 0.00718626333, -0.0163643491, -0.00847970787, 0.00103155314, 0.0200339295, -0.00423572166, -0.00149799907, -0.000344281521, 0.00318402285, 0.0163560845, 0.0150337117, -0.00826069, 0.000541345857, 0.00780199235, 0.00995911099, -0.00859541539, 0.00683087576, 0.02416634, -0.00879377127, -0.0189099144, 0.0130501548, -0.0109839495, 0.00873591751, -0.0137526644, -0.00766975526, 0.00293401186, -0.00820696913, -0.00454565231, -0.0229596775, -0.00568206562, -0.0169428866, 0.036530517, 0.0090251863, -0.0129261827, -0.00201764982, 0.00814085, 0.00163333549, 0.0136286924, -0.0314063244, 0.00996737555, -0.00380181824, 0.00871938746, 0.0171412416, -0.0128848581, 0.0168354437, -0.00998390559, -0.00013030009, -0.000450691092, 0.00790943485, -0.000571305864, 0.0100748185, 0.00831441116, 0.064300321, 0.0109839495, 0.0173065383, 0.0102731744, 0.00956239924, 0.0108021228, 0.0122567313, 0.0106037669, 0.0241167527, 0.0143642612, -0.00248977775, 0.00704576122, 0.0195876285, -0.0056861979, 0.0077937278, 0.0254887119, -0.00424811896, -0.0274557397, -0.00389066525, -0.0162155814, 0.0137361353, -0.0245465226, 0.00793009717, 0.00654987199, 0.00532667805, 0.0134303365, -0.0330262296, -0.000965434592, 0.0180669017, 0.0258523654, 0.00946322177, -0.0106946807, -0.0215215981, 0.000473935914, 0.0216373056, 0.0292574707, 0.00558702, 0.0170751233, -0.0298194792, 0.00228522345, 0.003386511, -0.00336171663, 0.0133476881, 0.00654573925, -0.0137278698, 0.00208893395, -0.00369024323, -0.00114881038, -0.00957892928, -0.0249928236, 0.000652921, 0.000642073399, 0.00268400111, 0.0207116455, 0.0106533561, -0.0104632657, 0.0299021285, -0.0160668157, 0.0119509334, 0.00341337174, 0.0154056288, 0.00408282224, 0.0121823484, 0.000952004222, -0.00716560101, -0.00486384798, 0.00208376837, -0.00999217, 0.00802514236, 0.0107773282, 0.00457457919, -0.0019618622, -0.0108351819, -0.0120005226, 0.0141493762, -0.00583496457, -0.0174883641, -0.00087193877, 0.00410348456, -0.0127526214, 0.0182652585, -0.00295674033, -0.00521923555, -0.000124488884, -0.00259308796, -0.0034588282, 0.019488452, -0.0123972334, 0.0116864592, 0.0158601943, 0.0240010452, -0.0031303016, 0.00524402969, -0.000145150945, -0.0136121623, -0.0140667278, -0.00149180042, -0.00665318221, 0.0052275, 0.0437374413, 0.00153725699, 0.00430184, 0.0266292579, -0.0251085311, 0.00670690322, -0.00923180673, 0.00794662721, -0.0209595896, -0.0172569491, -0.0142072299, -0.0164965857, -0.0448945165, -0.0020579407, -0.00529361889, -0.01724042, -0.00144324463, 0.00592587749, 0.00925660133, -0.00227489229, -0.00890121423, -0.0157362223, 0.00645482633, 0.0185462609, -0.0107112098, 0.00214058906, -0.00585975917, -0.0337039456, -0.0118104313, -0.0146122063, 0.0211910047, -0.017918136, -0.00417373516, -0.0048473184, 0.00922354218, -0.000138435775, -0.016132934, 0.0165379103, -0.00401463732, -0.0076366961, 0.0224472582, 0.0083557358, 0.00635151612, -0.000912746356, 0.00428117812, -0.000228832272, 0.0081367176, 0.0102235852, 0.000826482254, 0.00160854112, 0.0127856806, -0.0302657802, -0.0176867209, -0.00685153762, 0.00327286962, -0.0242324602, 0.021488538, 0.00113331375, 0.00242159306, 0.0120583763, 0.00333898817, -0.003859672, -0.0083309412, 0.0180503726, -0.00226042885, -0.0136782816, 0.0232241508, 0.0193231553, 0.0103971465, -0.00531014847, 0.00370883918, -0.0123807043, 0.016240377, -0.0127443559, -0.0114385141, 0.00657879887, 0.00351048331, 0.00134406681, -0.0143146729, 0.0166949406, 0.00376049429, -0.0224637873, 0.0115790162, 0.0018936774, -0.00997564103, -0.0116203399, -0.00567793287, 0.00204554363, -0.00795075949, 0.00770281442, -0.00886815414, 0.00968637224, 0.00996737555, -0.00442994479, -0.000329301518, 0.00595067209, 0.0133394236, -0.0153973643, 0.00275011966, -0.000748999533, -0.00719866, -0.0290260557, 0.011851755, -0.00654573925, -0.00486384798, 0.00397951202, 0.000747966405, -0.0152320676, -0.00514071947, -0.00201351731, 0.00050312106, -0.0390099622, -0.00215711864, 0.0206951164, 0.00883509498, 0.0143146729, 0.019918222, 0.00944669172, -0.010975684, -0.00561181456, -0.00523989741, -0.000765012635, -0.00583496457, 0.00368404458, 0.0195380412, 0.0175379533, -0.0101492023, 0.00790117, -0.00619448442, -0.00217364822, 0.00676475698, 0.00669450639, 0.00557049038, 0.0345469564, -0.00300632906, -0.0175048932, -0.00364065426, 0.00588455377, -0.0121079646, -0.00413861, -0.0236539226, 0.0128931226, 0.00170461962, -0.00837639719, 0.0137526644, -0.00321708224, -0.00803754, 0.0194553919, 0.00631019194, -0.00966157764, -1.1832256e-05, -0.0136121623, -0.0107525345, 0.010851712, -0.000948904955, 0.0142816128, 0.0252903569, -6.74745243e-05, -0.00486798026, 0.00486384798, 0.00714493915, -0.00559115224, 0.0297203, 0.00067719887, -0.0243481677, 0.0211414155, -0.00305591803, 0.00213852292, 0.0108103883, -0.0194058027, 0.016670147, 0.00224803179, -0.00447126897, 0.00381628168, 0.0104302056, -0.0256705377, 0.00730197085, -0.026199488, -0.0112070991, -0.00109715515, -0.00256002881, -0.016670147, -0.0175544824, 0.0103806173, -0.0171908308, 0.00914089382, -0.0104302056, -0.00131204061, 0.0223480798, 0.00330386288, -0.000457664544, 0.0194223337, -0.00655400427, -0.0238192175, 0.0121823484, 0.0213563014, 0.0274061505, -0.0123807043, -0.00591761293, 0.0198190436, -0.0180999618, -0.0053721345, -0.00802101, 0.0160006955, 0.0102566443, -0.0155296018, 0.0145130279, 0.0566966832, 0.00390719483, 0.00883509498, 0.0324972831, -0.000859025, -0.0009287594, 0.00457871147, -0.00160544179, 0.0146948546, 0.0123476451, -0.0170916524, -0.00372330262, -0.002824503, 0.00521510281, 0.0107607991, -0.00235754065, -0.00391752599, -0.00247324817, -0.0108021228, -0.00541345868, 0.00227076, 0.0111823045, 0.0168437082, 0.0245299935, -0.00923180673, 0.0106616206, -0.0103558227, 0.00742594292, -0.0207447037, 0.00187611475, -0.00258275704, 0.000312771881, 0.00685567036, -0.00113744615, -0.0120914355, 0.00468202215, -0.0111244507, -0.0178850759, -0.000370625639, -0.0145543525, -0.00745073752, 0.0162321106, 0.00844251644, -0.0118104313, -0.0010671952, 0.0115211625, 0.00100882491, 0.00550023932, 0.0101822615, 0.00520270597, 0.0149180042, 0.0187280886, -0.00360759511, -0.0047150813, -0.00674409512, 0.00871112291, -0.00490104, -0.00303938845, -0.00948801637, -0.00573991938, -0.00832267664, -0.00377702387, -0.00288855541, 0.0292409416, 0.0171743017, 0.00994258188, -0.00971116684, -0.00166536169, 0.0109013012, 0.0158519298, -0.00167672581, 0.0266127288, 0.00723998435, 0.0112897474, 0.0103723519, -0.00824002828, -0.0258854236, -0.00257655839, -0.00454565231, 0.0256705377, 0.00563660916, 0.00294434302, -0.0158188697, 0.015331246, -0.0156287793, -0.00676888973, -0.0130832139, -0.0115872808, -0.0125129409, -0.00576471351, 0.0108021228, -0.0101244077, -0.00957892928, -0.00890121423, -0.000335758406, -0.00755404774, 0.0114550442, 0.022397669, -0.00199595466, 0.00180689676, 0.0184305534, 0.00220050896, -0.00133063644, 0.0257201269, 0.01465353, -0.00397951202, 0.00530601619, -0.0112484237, -0.0053969291, -0.0343155414, 0.00163953414, -0.00116017449, 0.008364, -0.00667797634, 0.00377909, 0.00914089382, -0.0100417593, 0.025092, 0.0226290841, -0.00421712548, 0.0016736266, 0.0103062335, -0.00812432077, 0.000855925668, -0.00391959213, 0.0120997, 0.012975771, -0.00883509498, -0.0107607991, -0.00615316024, 0.00597959897, -0.00417373516, -0.0124716172, 0.00183272443, 0.00341957039, 0.013331159, -0.00538866408, 0.0410265774, 0.00888468418, 0.0179346651, 0.0162651706, 0.00917395297, 0.0055043716, 0.00205380842, 0.00249391026, 0.00531841349, 0.00908304, 0.0323815756, -0.0218687207, -0.00486384798, -0.0112732183, 0.0164056718, -0.00430184, -0.00559528498, -0.0264804903, 0.000549610704, 0.00067978166, -0.0246291701, -0.0024835791, -0.00300426292, -0.000689079578, -0.00682261074, -0.00812845305, 0.00380388461, 0.00871112291, 0.0153973643, 0.0125212064, 0.0200504586, 0.0125046764, -0.0273565631, 0.00109715515, -0.00637217797, 0.0279516298, 0.0139014311, -0.0204802305, -0.000629159622, 0.00450432813, -0.00119943242, -0.0127526214, -0.00817804225, -0.00999217, 0.00635978067, -0.0128104752, 0.00139158953, -0.0048225238, 0.00592587749, 0.00505807158, 0.0206951164, -0.0192239769, 0.0100913486, -0.014884945, -0.0116120754, -0.0100748185, 0.00770694716, -0.0148022966, 0.00840945728, 0.0145708816, 0.0067482274, -0.0146783246, -0.00122526, -0.00428117812, -0.00823589601, -0.00364685291, -0.0187280886, -0.00415720558, -0.00184098922, -0.00774413859, -0.00478946464, 0.0181826092, 0.000203392119, 0.00160027621, 0.0194223337, 0.0230423249, -0.00847970787, -0.00436382648, -0.0131080085, 0.0158767235, 0.0214720089, -0.00975249056, -0.00932272, 0.00194843195, -0.00752925314, -0.00217571459, -0.00203211326, -0.0256870687, -0.01163687, 0.0110913916, 0.0215215981, 0.0118269613, 0.019257037, -0.000152640947, 0.0226786733, -0.00190917403, 0.0111327162, 0.000201325907, 0.0175875425, 0.0158354, 0.00468615443, -0.00266747153, 0.0103640873, 0.00203831191, -0.0211083572, 0.0134468665, -0.00126038538, -0.00301046157, 0.00611183606, 0.0160337556, -0.0081863068, 0.0128517989, 0.00308484491, -0.00616969, 0.00945495721, -0.0158767235, -0.000592484488, -0.000440876611, -0.0132154515, -0.0318856835, 0.0160172265, 0.021488538, 0.000751582265, 0.00486384798, -0.00769455, -0.0201826971, 0.0118434904, 0.00957066473, -0.00800861325, 0.00690939138, -0.00234927586, -0.0109343603, 0.00796728861, 0.00211269525, -0.0240010452, 0.00307451398, 0.011314542, -0.00965331309, 0.00505393883, -0.0375553519, -0.00771107944, 0.0142650837, 0.00553329848, 0.0161907878, 0.00418613246, 0.00675649242, -0.00155688589, 0.0210918263, 0.0168767683, 0.00186578371, 0.00547957746, 0.00501261465, 0.00406009424, -0.00426051579, 0.02327374, 2.86928162e-06, 0.00580603769, -0.00489690714, 0.00990952179, -0.0105624432, 0.00107339385, 0.0141741708, 0.00226042885, 0.00865326915, -0.00394438673, -0.00381628168, -0.0125873247, 0.000641556864, 0.0049919528, -0.0194388628, 0.018579321, -0.0255052429, -0.0156287793, -0.00277284789, 0.000689079578, 0.00826482289, 0.00496302592, -0.00422952278, -0.00738048647, 0.0163478181, -0.00166639488, 0.00461177109, 0.00571925705, -0.000174336106, -0.0120666409, 0.00696724514, 0.00226249523, 0.0077813305, 0.0120666409, 0.0123311151, -0.00731436769, 0.0256209504, -0.000285911199, 0.00226869388, 0.0120087871, 0.00846317783, 0.0169759449, 0.000833714, -0.0123393796, -0.00617795484, 0.0336874165, 0.0110252732, 0.0121079646, -0.00505807158, -0.00357040321, 0.0096946368, -0.00558288768, 0.00527708931, -0.00651681237, -0.0069052591, 0.00502087967, -0.0109343603, 0.0214058906, 0.0285632256, 0.0273730922, -0.0110170087, 0.00273772236, -0.00411381526, 0.0142816128, 0.0126947677, 0.0135212494, -0.0012118296, 0.00191124016, 0.0105789732, 0.00125315366, -0.00779786, -0.00931445509, -0.00577711081, 0.00379561982, -0.0121988775, 0.00599612854, -0.000282811903, -0.0103062335, -0.00997564103, -0.0128848581, -0.00522336783, 0.0040931534, 0.0238357484, 0.00973596051, 0.00210339739, -0.00962851848, -2.50366011e-05, -0.0229431465, -0.00367577979, -0.0184966736, 0.0160337556, -0.00645895861, -0.0179842543, -0.00354767498, 0.0138187828, 0.0300839543, 0.00561181456, 0.00935577881, 0.00983513892, -0.000494856271, 0.00700030476, 0.00583909685, -0.0162155814, 0.00803340785, -0.00112608203, 0.000425380073, 0.00684740534, -0.00772760902, 0.0215215981, -0.00579364039, 0.00981860887, 0.00684740534, -0.00197116, -0.00849623792, 0.00163023628, 0.00566553604, -0.0038720693, -0.000826482254, -0.00613249838, -0.000549094169, 0.0227778517, 0.0162651706, -0.00348362257, -0.000662218896, -0.00777306547, 0.0286293458, 0.00513245491, -0.000239163302, 0.00990952179, 0.0144303804, 0.0160006955, 0.00917395297, 0.00775240362, 0.0191247985, -0.00483078882, 0.0210091788, 0.0179511942, -0.00612010108, -0.00426878082, 0.00135026535, -0.00481425924, 0.00549197476, 0.0120087871, 0.0178520158, -0.0100582894, -0.00335758412, 0.0179346651, -0.00432663457, -0.00780199235, 0.00990952179, -0.0178685468, -0.0215546563, 0.0158519298, -0.00123559101, 0.0261168387, 0.0168437082, -0.0226952024, -0.000285911199, -0.0191082694, -0.0189760327, -0.0122567313, 0.0124798818, -0.00381421554, -0.0140667278, 0.00820283592, 0.0146122063, -0.00558288768, 0.00342783518, -0.0018213602, -0.00533907535, 0.0126121193, 0.00124178955, 0.01813302, -0.00241746055, 0.0186454393, -0.000896733254, 0.000122616388, 0.00688459724, 0.0292740017, 0.0132815698, -0.00795075949, 0.0294888858, -0.0124881463, -0.0306294318, -0.00561594684, 0.0132485107, 0.0125707947, 0.00559115224, 0.0122649968, 0.00284103281, 0.0119426688, 0.0204471704, -0.0082317628, 0.0214720089, -6.63849278e-06, 0.0126369139, -0.00521510281, -0.0055415635, -0.00118703512, -0.0155378664, -0.0269433204, 0.0140336687, -0.00678955158, 0.00235340814, -0.00279144384, 0.00681434618, 0.0210918263, 0.00112918136, 0.00949628092, 0.0321005695, -0.00421092706, 0.0119509334, 0.000629676157, 0.010975684, -0.0219513681, 0.000431062159, 0.00111678417, 0.00946322177, -0.00871112291, 0.000599716208, -0.00836813264, 0.0108103883, -0.00214058906, -0.0293235909, 0.02091, -0.0193892736, -0.00995084643, 0.0211744756, 0.0131410677, 0.0121575538, 0.0189760327, -0.0126617076, -0.00181619474, 0.00181722781, 0.0124716172, 0.0255052429, -0.00879377127, 0.00464483025, 0.0171743017, 0.000820800196, 0.00306211668, 0.0108434474, 0.00649201823, 0.00110438687, 0.00838879496, -0.019009091, 0.023058854, -0.00805406924, 0.00629366236, 0.00611183606, -0.00540519413, -0.00399810774, 0.026860673, 0.0046778894, -0.0175048932, 0.00578537583, 0.00789290573, -0.0176867209, -0.0158932544, 0.00947148632, 0.0109591549, 0.00151556183, -0.000511902443, -0.00940536801, -0.0171081834, -0.0050167474, 0.0208934713, -0.016455261, -0.00858715083, 0.0296707135, -0.00334105454, 0.00910783466, -0.00125212059, 0.0266953763, -0.0156122493, 0.0194388628, -0.0212901831, 0.0111740399, 0.0173891857, -0.000626060297, 0.00519444095, 0.00352288061, -0.0185297318, -0.0102897044, 0.0196372177, 0.00114984345, 0.0153891, 0.0266788471, -0.0136865461, -0.0276375655, 0.0111988345, 0.00104343379, 0.0134633956, -0.0103723519, 0.0185958501, -0.0196041595, 0.0140667278, 0.00840532407, 0.0123807043, 0.00453738775, 0.0069300537, 0.000633808551, 0.0118021667, 0.00718213059, -0.0124468226, -0.0146204708, -0.0165048502, -0.00315302983, -0.0577876382, -0.00183995615, 0.00910783466, 0.00979381427, -0.000148379389, -0.00450846087, 0.00644656131, -0.0141659053, 0.00148870109, 0.00443407707, -0.000665834756, -0.0217860714, 0.00439275336, 0.0144882342, -0.00563247642, -0.00873591751, 0.00928139593, 0.00596306939, -0.0163147599, 0.0101078777, -0.0148601504, -0.0101574669, -0.00407042494, 0.00571925705, -0.0193727445, 0.00538039953, -0.00286169467, 0.00551263662, -0.0406298675, -0.00181516167, 0.0150833009, -0.0103227636, 0.0041530733, 0.00588455377, -0.00311170565, -0.00345469569, -0.00120666414, 0.00494649634, -0.00918221753, -0.00378322252, -0.00890121423, 0.0101492023, -0.00933098421, -0.0251746494, -0.0118104313, -0.00218397938, -0.0137939891, 0.014777503, -0.012314585, -0.000982997357, 0.00547544472, 0.0014246488, -0.0228109099, 0.000816667743, 0.0241167527, -0.00366544886, -0.00503740925, 0.000482975564, 0.00690939138, 0.0118765496, 0.0161246695, 0.00767388754, -0.00753751816, 0.0133228935, 0.00686393492, -0.0015289922, 0.00627713278, -0.00518204365, 0.00726891123, 0.0276871547, -0.00542585598, -0.00163850107, 0.0114798388, 0.00819043908, -0.00722345477, 0.00253523421, -0.00421712548, 0.00967810676, -0.00922354218, 0.0135377795, 0.012190613, 0.00228315732, 0.0096946368, 0.000623477565, 0.0062358086, 0.00514485221, -0.00766149024, 0.0103392927, -0.0122154076, -0.0138187828, 0.0263647828, 0.00337204756, -0.00324807526, 0.00816977676, 0.0162817, 0.00494649634, -0.0119096087, -0.0229266174, 0.0189925618, 0.00192260428, 0.000324652559, -0.00538039953, -0.0100996131, -0.0105872378, 0.0121740839, -0.0322328061, -0.00350841717, -0.0322989263, 0.0138105182, 0.0105789732, 0.0159593727, 0.00030657326, 0.00709121767, 0.00647135591, -0.000845078088, -0.00770281442, 0.0126699731, -0.0113889258, -0.00260135299, -0.0178520158, -0.0212405939, -0.0236539226, 0.0112484237, -0.023505155, 0.0118352259, 0.00144117838, 0.00298979948, -0.00864500459, -0.00329973036, -0.0263151955, 0.00415720558, 0.00738875149, -0.0029216148, -0.0160585493, 0.0076242988, 0.0162899643, 0.0159428418, -0.00711187953, -0.0175544824, 0.00757884234, 0.00376669294, -0.00172631477, 0.00453325501, 0.00367164728, -0.024397755, -0.00673996285, 0.00194843195, 0.00640110485, -0.00426878082, -0.0210422389, 0.00778546277, -0.0182817876, -0.00212612562, 0.0239183959, -0.00658706343, -0.0119013442, -0.000516809698, -0.0024835791, -0.00273978873, 0.0158188697, 0.024844056, -0.00128208054, 0.00602918817, 4.46494123e-05, 0.00713254185, 0.00372536876, -0.00420266204, 0.0276706256, -0.00825242512, -0.0185958501, 0.00824829284, 0.0199347511, -0.0171743017, 0.0131658623, 0.00235547451, -0.0557049029, 0.00151142944, -0.00667797634, 0.0319848619, -0.0022790248, 0.0138022536, -0.0052275, 0.0285136383, -0.0106120324, 0.00276871561, -0.0233563874, 0.00797142088, -0.00477293506, 0.0205794089, 0.013653487, 0.0184636135, 0.00757884234, -0.0141411116, -0.0122402022, 0.0115707517, -0.0177363083, -0.0191082694, -0.00630605966, 0.000292368088, -0.00579777313, 0.00756231276, 0.00235754065, -0.00490930444, -0.0136617515, -0.0222819615, 0.00337824621, 0.0318195671, 0.0154800126, -0.0302988384, 0.00475640548, 0.0126038538, 0.0038121494, 0.00527708931, -0.00826895516, 0.0131575977, 0.0148436213, -0.0143973203, 0.0114385141, -0.00603332045, 0.0153477751, 0.031769976, 0.00124488887, 0.020381052, -0.0205132887, 0.00759123964, -0.000801171234, -0.00886815414, 0.00460350607, -0.0294558275, -0.00450846087, -0.00885162503, 0.0119426688, 0.022166254, -0.0262656063, 0.00500848237, -0.009744226, -0.000379665289, 0.00662425533, 0.00191433949, 0.0128352689, -0.00669450639, 0.00857888535, 0.0128765935, 0.0103392927, 0.00225423044, 0.0328774638, 0.013207186, 0.00585149415, -0.00216125115, -0.00719039561, -0.0130584193, -0.0112566883, -0.0107525345, 0.00165606383, 0.00607051188, 0.0270094406, -0.0117360475, -0.00710361497, -0.0134220719, 0.0172238909, 0.00255176402, 0.0030579844, 0.0116203399, 0.0104797948, -0.0060539823, 0.00186165131, -0.00151452876, -0.0124302926, 0.00106409588, -0.0138766365, 0.0171908308, -0.0308277886, 0.00391339324, -0.016728, 0.0210257079, 0.00642589945, 0.0130336247, 0.0206620563, 0.00345469569, -0.00145254249, 0.00770281442, -0.0207942929, -0.0262821354, -0.00192467053, 0.0108269174, 0.00767802028, -0.00586389145, -0.00745073752, -0.0116203399, 0.0179511942, 0.0157692805, -0.00849623792, -0.0056738006, -0.0041282787, -0.0127278268, -0.0055291662, 0.0107029453, 0.0032026188, -0.0106037669, -0.00952934, 0.0057109925, -0.0204637013, -0.00579364039, 0.00196806085, 0.00232654763, -0.0269267913, 0.00948801637, -0.0120749054, 0.000193190222, -0.00175317551, -0.0165875, -0.00790943485, 0.00668624137, 0.0106946807, -0.00733916229, -0.0129592419, -0.00420679478, -0.0196868069, -0.00852929708, 0.00877724122, -0.0110170087, -0.00931445509, 0.0041881986, 0.0100334948, 0.00115914131, 0.0144634396, 0.00177487067, -0.00783092, -0.02416634, -0.00585975917, 0.00948801637, -0.0069548483, -0.0212240648, 0.00538866408, 0.00208170223, 0.00477293506, -0.00314683118, -0.00661599031, 0.00257035973, -0.0061862194, -0.0187942069, 0.0132980989, -0.00333692203, -0.00860368, 0.0239018667, -0.0270094406, -0.0202322863, 0.00257862452, 0.0269929096, -0.0201826971, 0.00572338933, -0.0210422389, -0.00463656522, 0.01119057, -0.0104054119, -0.0015889121, 0.0129675064, -0.0133228935, 0.019488452, -0.00614902796, -0.00181206234, -0.00115190959, -0.0168189146, -0.032447692, -0.0154800126, -0.00163850107, 0.0106864152, 0.0169098265, -0.0182487275, -0.00294021051, 0.00446713669, -0.0170420632, -0.004117948, 0.063539952, 0.0185297318, -0.00509939529, 0.00304145459, -0.00238853367, -0.00588868605, -0.0102897044, 0.0480682068, -0.000283586734, 0.0332245864, 0.0123724388, 0.0215215981, 0.0067978166, 0.0136286924, 0.00289888657, 0.00471921358, -0.00420266204, -0.0216373056, -0.010066554, -0.00777306547, 0.00557049038, 0.00507046841, 0.0138518428, 0.00034350669, -0.00312616909, -0.0019422333, -0.0154469535, -0.0176536608, -0.0212240648, -0.00662838761, -0.00824829284, 0.0221993141, 0.0131080085, 0.0233894475, -0.00915742293, -0.0023637393, -0.00597546669, -0.00128208054, 0.0102483798, 0.00219224417, 0.0196702778, 0.0285797566, 0.00917395297, 0.0126451785, 0.00977728516, -0.00195359741, -0.0176040716, -0.0308443177, 0.0126369139, -0.00933925, -0.00361792604, -0.00766975526, 0.00976075511, -0.0121410238, 0.00636391342, 0.0166784115, 0.0163560845, 0.0110418033, 0.000813568477, 0.00914915837, 0.0107607991, 0.02416634, -0.00148353563, -0.0169924758, 0.00736808917, -0.0177363083, -0.0135625741, 0.0137857236, 0.0101244077, 0.00221290626, 0.00913262926, -0.0111244507, -0.0145543525, -0.00963678304, -0.00193396851, 0.00475227274, -0.0216042455, 0.0136452215, -0.0061986167, -0.025092, -0.0186950285, -0.00785158109, -0.00368817709, -0.0058267, -0.0262656063, -0.00263647828, -0.00650441507, 0.0178685468, -0.0110170087, 0.00866153371, 0.00299393199, 0.0124716172, -0.015901519, 0.00870285835, 0.0032501414, 0.00256209495, -0.0230257958, 0.0127939451, -0.00207137107, -0.00271912664, 0.0240175743, 0.00430184, -0.0210422389, -0.00454565231, -0.0285466965, 0.0239018667, 0.00587628875, 0.0244308151, 0.0138105182, -0.00147217151, 0.0181164909, 0.0319352746, 0.0206620563, 0.0101326723, 0.00393405557, 0.0219017789, -0.00266333902, 0.0122236721, 0.00352494675, 0.00427291309, 0.00452499045, 0.0157610159, 0.0183148459, -0.00662012259, 4.4520275e-05, -0.00471921358, 0.0261003096, -0.00619035214, 0.00161060726, -0.00143497984, 0.00518617593, -0.00920701213, -0.00154242245, -0.0196537487, 0.0161825232, -0.011083127, 0.0265631396, 0.00981034432, -0.00223563449, -0.00535147265, -0.00746313483, 0.000944772502, -0.00342370267, 0.00722758705, 0.0112566883, 0.00125418685, -0.00695898058, -0.00247944682, 0.0211414155, 0.0222654324, -0.00349395373, 0.00297533604, 0.0102483798, -0.0317534469, -0.000487882789, -0.00148146937, -0.00667797634, -0.00547544472, 0.0130584193, -0.0119261388, 0.0074424725, -0.00578537583, 0.00502501195, -0.003274936, -0.00908304, -0.00434729643, 0.0291417632, -0.0326295197, 0.000769661565, 0.012992301, -0.00118703512, 0.0369933471, -0.000497955538, 0.0235382151, -0.00464483025, -0.00781852193, 0.00718213059, -0.0107029453, -0.000209203325, -0.00376669294, 0.00588042103, 0.00168189139, 0.00631845696, 0.059804257, 0.0130170956, -0.00564900599, 0.00306005054, -0.015901519, 0.0188603252, 0.0031303016, 0.00905824546, -0.00146907219, 0.008111923, -0.000603332068, -0.00237407023, -0.00592587749, -0.00664078491, -0.00361586, 0.0150998309, 0.0120253162, 0.0162321106, 0.015884988, -0.00318608899, -0.00858715083, -0.0176536608, 0.0235712733, 0.0114054549, 0.00242779171, -0.0210257079, -0.0124964118, 0.00737222144]
|
28 Jun, 2022
|
Onsen UI Range CSS Components
28 Jun, 2022
In this article, we will learn how to include range into your webpage using the Onsen UI CSS. Onsen UI CSS is used to create beautiful HTML components. It is one of the most efficient ways to create HTML5 hybrid components that are compatible with both mobile and desktop.
Range CSS Components are used to set the value between initial and final values.
Syntax:
<element-name class="class-name">...<element-name>
Range CSS Components class used:
range__input: This class is used to create a range line on which the ring will run from the initial point to the final point.
range__focus-ring: This class is used to create a ring on clicking this ring the user will be able to set the range.
Example 1: In the below code we will see how to include range into the webpage.
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content=
"width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href=
"https://unpkg.com/onsenui/css/onsenui.css" />
<link rel="stylesheet" href=
"https://unpkg.com/onsenui/css/onsen-css-components.min.css" />
<script src="https://unpkg.com/onsenui/js/onsenui.min.js">
</script>
<style>
body {
background-color: lightgrey;
}
#heading {
color: green;
}
#title {
font-style: bold;
}
</style>
</head>
<body>
<center>
<h1 id="heading">
GeeksforGeeks
</h1>
<h3>A computer science portal for geeks</h3>
<strong id="title">
Onsen UI CSS Component
</strong>
<br><br>
<div class="range">
<input type="range" class="range__input">
<input type="range" class="range__focus-ring">
</div>
</center>
</body>
</html>
Output:
Example 2: In the below code, we will see how to include range into the webpage but it will not move because we are going to use disable property to disable the range.
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content=
"width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href=
"https://unpkg.com/onsenui/css/onsenui.css" />
<link rel="stylesheet" href=
"https://unpkg.com/onsenui/css/onsen-css-components.min.css" />
<script src="https://unpkg.com/onsenui/js/onsenui.min.js">
</script>
<style>
body {
background-color: lightgrey;
}
#heading {
color: green;
}
#title {
font-style: bold;
}
</style>
</head>
<body>
<center>
<h1 id="heading">
GeeksforGeeks
</h1>
<h3>A computer science portal for geeks</h3>
<strong id="title">
Onsen UI CSS Component
</strong>
<br><br>
<div class="range">
<input type="range" class="range__input" disabled>
<input type="range" class="range__focus-ring" disabled>
</div><br><br>
<div class="range">
<input type="range" class="range__input">
<input type="range" class="range__focus-ring">
</div>
</center>
</body>
</html>
Output:
Reference: https://onsen.io/v2/api/css.html#range-category
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components
|
https://www.geeksforgeeks.org/onsen-ui-range-css-components?ref=asr10
|
CSS
|
Onsen UI Range CSS Components
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.000977512216, 0.0214575864, -0.0242391247, -0.00569420774, 0.0518796742, -0.00412065117, -0.0272113979, 0.0139235891, -0.0354129635, -0.0416436121, -0.000659125391, 0.000676013296, 0.0174362753, -0.0746406093, 0.0244139638, -0.00680284947, -0.0547724739, -0.00642932858, 0.0163713433, 0.0210761186, -0.00540015893, 0.0112135755, -0.0355401188, 0.0298498869, -0.0479060486, 0.00869429577, 0.00273584225, 0.0296432581, -0.0106175318, -0.0073114736, 0.0211079065, -0.014305057, -0.0188985709, 0.0341731943, -0.0675834492, -0.0207105447, 0.0286895875, 0.0234444, -0.0334420465, -0.0128586572, -0.00463722274, 0.0135500683, 0.00599620305, 0.0518796742, 0.0025788839, -0.014615, 0.0168958623, -0.0435827412, 0.0267186686, -0.0516889393, 0.00685450668, 0.0308512412, 0.05013128, 0.00632601418, 0.00422396557, 0.0302154608, 0.00749823404, 0.0510849506, 0.00222721789, 0.0199317131, 0.0310896579, -0.0500041209, -0.0199158192, -0.0397680588, 0.00541605381, 0.00498292828, -0.0114043094, 0.0347771831, -0.0138838533, 0.0198999234, -0.0389097556, 0.010601637, 0.0145116858, 0.0347771831, -0.0305651389, 0.0111897336, -0.0104665337, 0.00474451063, -0.0409124643, 0.0310260803, 0.00528095, -0.00967180822, -0.0444410443, -0.0236033443, 0.00185469037, 0.0402766839, 0.0330287889, -0.0371931493, 0.0213145353, -0.0434555858, -0.003355728, 0.0149646793, 0.024541121, -0.0117222, 0.00302790385, 0.0292617902, 0.0425654911, 0.000296283572, -0.0243503861, 0.0323135369, 0.0188032035, 0.0218549483, 0.00352460728, -0.0220297892, 0.00795917492, 0.0306287166, 0.0606534444, -0.0191528816, 0.000135103313, -0.0213940088, 0.0265279338, -0.0113566257, -0.0154097257, 0.0336327776, -0.0267345626, 0.0301677771, -0.000962114427, -0.050512746, 0.00621077884, 0.0329652093, 0.00680284947, 0.0383057632, -0.00538029103, 0.0641184449, -0.0538188033, 0.0383057632, 0.0036815654, -0.00792341214, 0.0217754766, 0.0132003892, 0.0179449, 0.0336963572, -0.0194707718, -0.0103950081, 0.02682993, 0.0212191679, 0.0639595, 0.0198204517, -0.0375110395, 0.0184853133, -0.0246205926, -0.0180879496, 0.00848766696, 0.00257093669, -0.0471113212, 0.0250974279, -0.015544829, 0.0678377599, -0.0476835258, -0.00890887156, -0.0252881628, -0.0276882332, -0.00081211, 0.0139792198, 0.0413892977, -0.0086307181, -0.0427880175, 0.0194389839, 0.0181038454, 0.00262060692, 0.0261623599, -0.000149383544, 0.0218072645, -0.00766512658, -0.0143527407, -0.00235040043, 0.0219185259, 0.00995791, -0.0330605768, 0.0388461761, 0.0170071237, -0.028069701, -0.0322817452, 0.0245252252, -0.0282763299, 0.0150203099, 0.00429151719, -0.0107446872, 0.0404674187, 0.00175435632, 0.00121195626, 0.0130017074, 0.00740684057, 0.00579354819, 0.0191052, -0.00178018492, 0.0180720557, -0.0160057694, -0.0405627862, -0.00496306038, -0.0417071879, -0.00116923975, 0.00657635275, 0.0629422516, 0.0152746225, 0.00867840182, -0.0121592991, 0.0379242972, -0.00642932858, 0.0330605768, -0.0159024559, -0.0331241563, 0.0201065522, -0.00336168846, 0.0157355629, 0.00730352663, -0.00457761856, -0.0120718786, 0.0167210232, -0.0362076908, -0.0557261445, -0.00983075332, 0.000438340736, 0.00655648438, -0.0388779677, 0.0215688478, -0.0165938661, 0.0235715564, -0.0287372712, 0.0174998529, -0.0124930833, 0.0372885168, 0.0204403382, 0.00459748646, -0.0595726147, -0.0287690591, -0.0196456127, -0.0348407626, 0.0147818923, -0.0105062695, -0.0271160305, 0.0148057342, -0.00673529785, 0.0103314305, 0.00438688416, 0.0353493877, 0.0185965747, -0.00171561353, -0.029484313, 0.0459669158, -0.030008832, -0.0331877321, -0.019264143, 0.0253994241, 0.0421522371, -0.0286419038, 0.0219185259, 0.0182786845, 0.0321704857, 0.00472464273, -0.00318486197, 0.0213463251, -0.0221569445, -0.00918702595, -0.0159819275, 0.0303108264, 0.0290710554, -0.0168163888, 0.0244616475, -0.0103155356, 0.0137487492, 0.023492083, 0.0051379, 0.00358818518, 0.0410396196, 0.00172654097, 0.0376381949, -0.0302949324, -0.0176429041, -0.0394183807, 0.0466662757, -0.0512121059, 0.025240479, 0.0155686708, -0.00679092854, 0.0221092608, 0.0128427623, -0.0237305015, 0.0230152477, -0.00801083166, -0.000272441801, -0.00530081848, 0.0165938661, 0.0066558253, 0.00297426, -0.0594136715, 0.000848369382, 0.0248749051, -0.0179131106, 0.0265438277, -0.00341533241, -0.0174203813, -0.0146626839, -0.0129937604, 0.0472384766, 0.0348407626, 0.0101406965, -0.0286577977, -0.011475835, 0.00691013737, 0.000228111021, -0.030549245, -0.00310340268, -0.0350950733, 0.0201542359, 0.0404992066, 0.0645634905, 0.0121195624, -0.0291505288, -0.0107446872, 0.0161965042, -0.0181038454, -0.0316618606, -0.0413575098, -0.0149169955, -0.00431535905, 0.0412303545, 0.0349679179, -0.00727173733, -0.0156958271, -0.0083923, -0.0290233716, -0.0259239431, 0.0382739753, 0.0122467186, 0.000888105656, -0.0379560851, -0.0175316427, 0.00616309559, 0.00186561793, -0.0579831675, -0.00309346872, 0.000722703408, -0.0420250781, -0.0119208815, -0.046411965, 0.0172137525, -0.0150203099, 0.0104824277, 0.0119685642, -0.038115032, -0.0365891568, 0.00182588166, -0.00544386916, 0.0171978585, -0.0438052639, 0.00195105083, 0.0156719852, 0.044313889, 0.0435191616, 0.00147620239, 0.0223635733, 0.00426370185, 0.00149607053, 0.0142335324, -0.00100930128, -0.00749823404, -0.0400223732, -0.0160216633, -0.00264842249, 0.00374514353, 0.00449019857, 0.00603991328, 0.0149011016, 0.0136931185, -0.0326155312, -0.0218549483, 0.0189621486, 0.0186601523, -0.0110705253, 0.00592070445, 0.00975922775, 0.00275571039, -0.00559089333, -0.0392912254, -0.00259477855, 0.00967180822, -0.00279346, -0.0261146761, 0.000804162759, -0.0143845296, 0.0638005584, 0.00372130168, 0.0207900163, 0.0106254788, 0.0219503157, 0.00879761, 0.0152587276, -0.0207741223, -0.0199476071, -0.0122546656, 0.00782009773, 0.0168163888, -0.0058412319, 0.0117778303, -0.037606407, -0.0282127522, 0.014479897, 0.0196615066, -0.0225384124, 0.0279107559, 6.19637431e-05, -0.00190734095, 0.00551142078, 0.0227609351, -0.0242232308, -0.0466344878, -0.00970359705, 0.0126917651, 0.00221331022, -0.00205436512, -0.0258285757, -0.064468123, -0.00909960549, 0.0528651327, 0.0125089781, 0.0175475366, 0.0538188033, -0.0206151772, 0.00814593583, 0.0726696923, -0.0147977872, -0.00286498503, 0.0270047691, -0.0117142526, 0.00917113107, -0.0531194471, 0.0153064113, 0.00113943755, -0.0047325897, -0.0705080405, -0.0218390543, -0.0204085484, -0.00646111742, 0.0246523824, -0.00302790385, -0.00144540682, 0.0127235539, -0.00569420774, -0.0323612168, -0.0162282921, 0.00585712632, 0.0175157487, -0.0321069062, -0.0397680588, 0.0303267222, -0.0455536619, -0.025606053, -0.0194548778, 0.027878968, 0.00308353454, -0.0284988526, -0.010061224, 0.0113884155, 0.0296432581, -0.00973538589, 0.0539459623, 0.00956054684, -0.00178316515, -0.0254947916, -0.00928239245, 0.0335056223, -0.0154176727, 0.0208694898, 0.0100850658, -0.0214257967, -0.0244934373, 0.0123182442, -0.0246682763, 0.0163554493, -0.033378467, 0.00712868711, 0.035317596, 0.00981485844, 0.0231900867, 0.0204244424, 0.0171819627, -0.0153064113, 0.00970359705, -0.0102440109, 0.0476517342, 0.00613925373, 0.0411032, -0.0164667107, 0.0189144649, -0.0110784722, 0.0073631308, -0.019772768, -0.0177382715, 0.00915523712, -0.00131825078, 0.00237622904, -0.0434555858, 0.00464914367, -0.000253567065, -0.0200906582, -0.00784394, -0.00669556158, -0.0227927249, -0.00400342932, 0.0110625774, 0.0371613614, -0.0200111866, 0.025780892, 0.00519750407, -0.0129142879, -0.00871019065, 0.0317095444, 0.0113089429, 0.0198999234, 0.008126067, 0.00395177212, -0.000280885753, 0.0334738344, 1.47225983e-05, -0.0251610056, -0.0194071941, 0.00863866508, -0.00442662043, -0.0266074073, 0.0141858486, 0.0183740519, -0.0182627905, 0.0109910527, 0.00462132832, 0.0194866676, 0.0207741223, -0.0225066245, 0.0198681355, -0.00297028618, -0.0414846651, -0.0209489614, 0.0205833875, 0.0424383357, -0.0297545195, -0.0171660688, -0.0254471079, 0.00890092459, 0.00190932781, 0.0188508872, -0.0592547245, 0.0189621486, -0.0648178, 0.0150600467, -0.00895655528, 0.0190416202, -0.00824130233, -0.0160852429, 0.0155050931, 0.0329652093, -0.00653661648, 0.0423429683, 0.0509260036, -0.0102201691, -0.010999, -0.00698166247, -0.0197568741, -0.0242868084, -0.0361123234, -0.0281650685, 0.0160852429, -0.0216642153, 0.0514028408, 0.00680284947, 0.0100373821, -0.0622746833, -0.013772591, 0.0108321076, -0.030549245, 0.00406502048, 0.00933007617, -0.0111023141, -0.00928239245, -0.0226178858, 0.00452993484, 0.0167051274, 0.036462, -0.00876582135, 0.0152189918, -0.000471868203, -0.0135182794, -0.0550267883, 0.00204840465, -0.00853535067, 0.00880555715, -0.00397164, 0.0166892335, -0.0163077656, -0.0316459648, -0.0213463251, -0.00776049355, 0.000957644137, -0.000999864, 0.00337360939, 0.00650482764, -0.0170865972, -0.00145434751, -0.0203608647, 0.0188032035, -0.0378607176, 0.0177223757, 0.00859892927, 0.00154971459, 0.0202496033, -0.0210761186, 0.00603593932, 0.00851150881, 0.00391998328, 0.0103473244, -0.00493127108, -0.012000354, 0.00908371154, 0.00824924931, -0.0197568741, -0.00511405803, -0.0378925093, -0.00132818485, 0.0223635733, 0.00699755736, -0.0069220583, 0.02260199, 0.0179449, 0.0249543786, -0.00851150881, 0.0198681355, 0.00480014132, -0.00347493682, -0.0232536662, -0.00617899, -0.00731544755, -0.0404356271, -0.0171819627, 0.000174715417, 0.00716444943, 0.0125963977, 0.0227927249, 0.0024974246, 0.0218549483, -0.016434921, 0.0170707013, -0.0106493207, 0.0229834579, 0.00751810241, 0.0565208718, -0.00671940343, 0.00592070445, -0.0287054814, 0.0279584397, 0.001059965, 0.00209807511, 0.0133513864, 0.0185965747, 0.00472464273, 0.00822540838, -0.0240642857, 0.000487017678, -0.00975128077, -0.0119924061, -0.0154891983, -0.00959233567, -0.00625051511, -0.0313439704, 0.0530240797, 0.00773665169, 0.0103950081, -0.0151077304, 0.0135182794, 0.0163395535, -0.00971949194, 0.018008478, -0.00109672104, -0.0399270058, 0.0100294342, 0.0231741928, -0.0115473606, -0.0304061938, -0.00301796966, 0.00388819398, 0.0122705605, -0.0100850658, -0.00680682296, 0.0135659631, 0.0307717677, 0.018231, -0.0331241563, -0.0132639669, -0.0162044503, -0.00670350902, -0.00746644521, -0.00250338507, 0.0336009897, 0.0146388421, 0.00440277858, 0.0218708441, 0.000911450712, -0.00906781666, -0.0359533764, -0.00290670828, 0.0277359169, 0.0029047213, 0.0186760463, -0.00294048409, -0.0254471079, 0.0195343513, 0.00840024743, 0.0199158192, -0.0055789724, 0.0192959327, -0.0334738344, 0.0314711258, 0.0141779017, 0.0320115387, -0.00448622508, 0.0393230133, -0.0151633611, -0.0130334971, 0.00162521342, 0.0232059825, -0.023476189, -0.00720021222, 0.0168481786, -0.000354397867, 0.0255583692, -0.0191846713, -0.0156163545, 0.00400740281, 0.0209171735, -0.0239530243, -0.00627038348, 0.00503855897, -0.00929034, 0.01872373, 0.0156878792, -0.0102201691, -0.0367481038, 0.0168958623, 0.025590159, -0.0112215225, -0.0122626126, 0.0157514568, 0.00222523115, 0.00180899375, -0.00157752994, -0.0189462546, -0.013772591, -0.0309307128, 0.00541605381, -0.0101645384, -0.011300995, 0.000768400147, -0.0175793264, -0.0443774685, 0.00965591334, -0.0277200229, 0.00140070356, -0.00101923535, 0.00600812398, 0.0238417629, -0.00370342028, 0.00277955201, 0.0241596531, 0.0350632854, -0.0225384124, 0.0128348153, -0.0125646088, 0.00806646328, -0.013422912, -0.0301359873, 0.0217436869, -0.00739492, 0.024000708, 0.025955731, 0.0471431129, 0.0135500683, -0.0174203813, 0.0128348153, -0.0255106855, -0.0128348153, 0.0121990349, -0.00103016279, 0.0170865972, 0.0103632193, 0.00375507749, 0.00855919253, -0.00352460728, -0.0149249434, 0.0096877031, -0.00383852376, 0.0187555198, 0.0152110439, 0.0110705253, 0.034268558, 0.0222364161, -0.00364182913, -0.00143050577, -0.0106811095, -0.0204562321, -0.0207105447, -0.0137090134, -0.0523883, -0.00511405803, -0.0294207353, 0.0012874552, 0.000635780336, 0.032297641, -0.00309744221, -0.026655091, 0.0154494615, -0.0301359873, 0.00919497292, 0.0188349914, -0.0130573381, -0.0514664166, 0.00177819806, -0.0133990701, -0.0233649276, 0.0432330631, 0.0294366293, -0.0105221644, 0.0234602932, 0.0391958579, -0.00362593471, -0.00113745069, -0.0192800388, -0.02295167, 0.0188985709, 0.0200429745, 0.00722008, 0.0171024911, 0.00304777198, -0.0107844239, 0.0025530553, -0.0259716269, 0.0256378409, 0.00458556553, -0.000711775967, 0.0350950733, 0.0508624278, 0.047874257, 0.0030259171, -0.00974333379, 0.0121195624, -0.0175793264, -0.0129619716, 0.0184058398, 0.00151196506, 0.000360606646, 0.0046292753, 0.0215847418, 0.016061401, 0.0373520926, 0.0148613648, 0.020297287, 0.0308671352, -0.0143209519, -0.00311929733, -0.012350033, -0.0116188852, 0.00278551248, -0.0229993537, 0.00995791, -0.0195502453, -0.00355043565, 0.011293048, 0.0132639669, 0.00187058491, -0.020821806, -0.0278630722, -0.00532068638, -0.0190416202, -0.0198840294, -0.0086863488, 0.00331003126, 0.0214257967, 0.0222523119, 0.0106095839, -0.0414210893, 0.0220933668, -0.000974035356, 0.00227092789, 0.0098387, 0.0205357037, -0.0310896579, -0.0301041976, -0.0048915348, 0.0163554493, -0.0119367754, 0.00264444877, 0.0237940792, -0.045744393, 0.00344314775, -0.0171024911, 0.0150441518, -0.027354449, 0.0024974246, 0.0438688435, -0.00917113107, 0.0325519517, -0.00895655528, -0.0102678519, 0.00561473519, -0.0101248017, 0.00901218597, -0.0283081196, 0.0106254788, 0.0147183146, -0.0107446872, -0.000360358303, -0.00896450225, 0.0278312843, 0.0124771893, 0.0190098323, -0.042215813, -0.0124056637, 0.0216483194, -0.00735121, -0.0467298552, 0.030549245, 0.0199317131, 0.00971154403, -0.00103512988, -0.021711899, -0.00487564038, 0.0242868084, -0.0375110395, 0.00358421169, 0.000932312221, 0.018199211, -0.0208535939, -0.0152030969, -0.00828898605, 0.017658798, 0.0203926545, 0.00406899396, -0.0374792516, -0.00633396162, 0.0102758, 0.0366209485, -0.0449496694, -0.0144957919, 0.021012539, 0.00422396557, 0.0166415498, -0.00478027342, 0.0305174552, -0.00114837824, -0.0130017074, 0.0349679179, 0.0194071941, 0.0431376956, -0.00953670498, 0.0204244424, -0.0189462546, -0.0126997121, 0.016434921, -0.0264007784, -0.0280061234, 0.017134279, -0.0371931493, 0.0177859552, 0.00590083608, -0.0175316427, -0.0276087616, 0.010959263, 0.0217595808, 0.0169276521, -0.0220297892, -0.00429946464, 0.0269411914, -0.00554320961, -0.0170548074, 0.00560678774, 0.0375110395, 0.00304181152, 0.013764644, 0.0117539885, 0.0272908714, -0.00627435697, 0.0265279338, -0.0203290768, 0.0145434747, 0.0109672109, 0.0036438161, -0.0247954335, 0.021711899, 0.0160296112, 0.0179449, -0.0257491041, -0.0281650685, 0.0180720557, 0.0591593608, 0.00301002245, -0.0024457674, -0.0148693128, -0.011483782, 0.0119049866, 0.0361759, -0.00655648438, -0.0244139638, 0.0117539885, 0.00173647504, -0.0244457535, -0.0259875208, 0.0638323426, 0.00551936775, 0.0328698419, -0.0193913, -0.00362394797, -0.0157355629, 0.0187555198, -0.0489868745, -0.000198433, 0.00295240479, 0.00357427751, 0.0134467538, 0.0209648553, 0.0242709145, 0.00948107429, -0.00147620239, -0.0147659983, 0.00177223771, -0.0260828882, 0.0195502453, -0.0144322133, 0.00331201823, 0.0195502453, -0.00459748646, -0.0136613296, 0.00727571128, 0.00965591334, 0.0102042742, 0.00299412804, -0.00781215075, -0.00763731124, 0.00378289283, 0.00903602783, -0.00842408929, -0.0446317792, -0.0281809624, -0.0240801796, -0.0122705605, -0.0154017787, -0.0117063057, -0.0140666394, 0.0048716669, 0.0189462546, -0.0148772597, 0.0140745873, 0.00484782504, -0.0129381297, -0.00719226478, 0.0116427271, 0.000913437514, -0.0410714075, -0.0113168899, -0.0179607943, -0.00140666403, -0.0269252975, -0.00851945672, 0.0144242663, -0.0137805389, -0.00264842249, 0.00859098136, -0.0206946488, 0.00528492406, 0.0368434712, 0.0183899458, -0.0175793264, 0.00331400498, -0.00608759653, -0.0087896632, 0.00574189099, 0.00398356095, 0.0112215225, 0.00048627262, -0.0174998529, 0.0166574437, -0.000869230891, 0.0284034852, -0.0292935781, -0.00418820279, -0.0306128226, 0.0300406199, 0.0222364161, -0.0166574437, -0.00492729759, 0.0184376296, -0.0243344922, -0.00283716968, -0.0267345626, -0.00314512569, -0.00690219039, 0.00754591776, -0.0112215225, -0.0071326606, -0.024541121, -0.0347771831, 0.0683463886, -0.0102599049, -0.0153064113, -0.0350314975, 0.0096797552, -0.0131844943, -0.0211238, 0.0186442584, 0.0161408726, -0.0145593695, 0.0373520926, -0.00197687955, -0.00179905968, -0.00588891516, -0.0225066245, 0.0128268683, 0.00439085765, 0.00975922775, 0.0191369876, -0.0271160305, -0.00275571039, 0.00384845771, 0.0189462546, 0.00114241778, 0.0297863074, 0.000480808871, -0.0148693128, -0.00106493209, -0.0436463207, -0.00236828183, 0.016244188, 0.0131844943, 0.0149408374, 0.00946517941, -0.0198522415, 0.0367798917, -0.0250815339, -0.00462132832, -0.0208694898, -0.0117301466, -0.00678695505, 0.0171660688, -0.0157037731, -0.0177859552, -0.00534850219, -0.0165143944, -0.0222682059, -0.00960823055, 0.00309744221, 0.012882499, 0.00775652, 8.7419794e-05, -0.0200429745, -0.00529684499, 0.00632998766, 0.00169773214, -0.0106890565, -0.0227927249, 0.0238894466, -0.053151235, 0.00960823055, -0.0175316427, -5.75244594e-05, -0.00485179853, 0.0129063409, 0.0186124686, -0.0191210937, 0.00917113107, 0.00262458064, 0.027545182, 0.0130970748, 0.015187203, 0.0183104742, -0.0132480729, -0.0166892335, 0.00022935278, -0.00785586052, 0.00157852331, 0.00762141682, -0.029675046, 0.0015834904, -0.0289121103, 0.00460940739, -0.00237026857, -0.0314393379, 0.012874552, 0.00669556158, -0.027894862, 0.000657635275, 0.00261067296, -0.00364977634, -0.0185806807, -0.0240642857, 0.00153382006, -0.00195701141, 0.00287491921, 0.00630217232, -0.00336168846, -0.00671145599, 0.00856713951, 0.0229039863, 0.0137566971, 0.0150838885, 0.00743068242, 0.0225543063, -0.00651277462, 0.0114202043, 0.00469285343, -0.0295796804, 0.0232695602, 0.00122785079, 0.0168958623, -0.00469682738, -0.00961617753, -0.0121195624, 0.0116109382, 0.0144560551, 0.00619885838, -0.00594454585, 0.00648495927, 0.0126122925, 0.00154574087, 0.0271478202, 0.00105201779, -0.0104506388, -0.00379481376, -0.0191528816, 0.0318208039, 0.00556705147, 0.000588593481, -0.00269014551, 0.0147421565, -0.0020563521, 0.0136454357, -0.0125010302, -0.00703331968, -0.0226496737, 0.0153779369, 0.000392147311, 0.00948107429, 0.0208535939, 0.00556705147, -0.0172773302, -0.0318049118, 0.00029156488, 0.00833667, 0.00290074782, 0.00581341656, 0.00652072206, -0.0348725505, -0.0409124643, -0.0264166724, 0.0140825342, 0.0210284349, 0.00184475631, 0.00642138114, 0.023666922, -0.0132878087, -0.0350950733, -0.00724392198, 0.0105380593, 0.0314234421, 0.0173568036, 0.0176111143, 0.0199793968, 0.0256219469, -0.00363586866, -0.0381786078, 0.000518558314, 0.00759360148, 0.0221092608, 0.00748233963, 0.0114281513, 0.002737829, 0.0107128983, 0.0168799683, 0.00698961, -0.00804659445, 0.0202813931, 0.0110228416, -0.010069171, -0.00673132436, -0.0299293585, -0.0080307005, -0.00717239687, 0.0118573029, -0.0379242972, -0.0173250139, -0.00460940739, 0.00413654558, -0.00656045834, 0.0221728384, 0.0173885915, 0.0345864482, 0.00865456, -0.00502663804, -0.00129043544, -0.00867045391, -0.016434921, 0.00860687625, -0.028610114, 0.0147103677, 0.0281809624, 0.0191687774, 0.0150441518, -0.00027418026, 0.00148514309, 0.0140427975, 0.00961617753, 0.00707305595, -0.0209966451, -0.0166574437, 0.003973627, 0.00485577201, 0.00533260731, -0.0205357037, 0.0083923, -0.00944133755, 0.00379481376, -0.00463324925, 0.00334380707, -0.00599222956, 0.00177422445, 0.00772870472, -4.15368195e-05, 0.00727968477, 0.0036994468, -0.00838435348, -0.0195820332, 0.0151633611, -0.0237146057, 0.0223317835, 0.00845587812, -0.000502663839, 0.0258444697, -0.0012874552, -0.00409680931, -0.0069737155, -0.0166733395, -0.0177064817, 0.00448225113, 0.0240324959, 0.0127473958, 0.0235715564, 0.0251769014, -0.000185767058, 0.0251927953, -0.0203290768, -0.0248908, 0.0128030265, 0.00627038348, -0.0243344922, 0.0144242663, -0.0166892335, 0.007235975, -0.0119685642, 0.0083684586, 0.00439085765, 0.00619091094, -0.0234444, -0.00376501167, -0.00335374125, -0.0149964681, -0.0392594337, -0.0281491745, -0.00196595187, -0.0166892335, -0.01235798, -0.0239530243, -0.00332791265, -0.0228086188, 0.0312168133, -0.0288167428, -0.024000708, 0.0062862779, 0.00881350506, 0.0389415435, 0.0119049866, 0.0155289341, -0.0149011016, -0.0170707013, 0.0109672109, 0.0129699185, 0.00964796636, -0.00185965747, 0.00435112137, -0.0118573029, -0.00642932858, 0.0133990701, 0.00647303835, 0.00139772333, 0.00603991328, 0.028959794, 0.00813004095, -0.0211555902, 0.0365891568, 0.000527499, -0.0148534179, -0.0161488205, -0.0186601523, 0.018707836, 0.00355242263, -0.0131129688, 0.0208535939, 0.0138679584, 0.000835455081, 0.00140269031, -0.0175634306, 0.012000354, -0.00627833093, -0.0215211641, -0.0178813208, -0.0282604359, -0.0216642153, 0.00475245807, -0.0103234835, -0.00600415049, 0.0135103315, -0.0112692062, -0.00816183, -0.0173250139, 0.00983075332, -0.0244775433, 0.00427164929, -0.00495511293, -0.0198522415, 0.0238258671, -0.0129778655, 0.0106413728, 0.0101804323, 0.0191528816, -0.0312009193, 0.011126156, -0.0031590336, -0.0151713081, -0.00233251904, -0.00616309559, -0.0118096191, 0.00764923217, 0.00744260335, -0.0229675639, 0.0147977872, -0.0145037388, 0.00520147802, 0.0139792198, -0.0268935077, -0.0247954335, 0.0183104742, -0.0126838172, -0.0198522415, -0.0145514226, -0.00770088937, 0.0298022032, 0.0154891983, -0.00956054684, -0.000159565956, 0.00470477436, 0.0248749051, 0.00198582, 0.0200429745, -0.0120400898, 0.022411257, -0.0212509576, 0.0106095839, 0.00439880509, -0.0534055457, 0.0111182081, -0.0218072645, 0.0255265795, 0.0273385532, -0.0191369876, 0.00630217232, 0.011126156, 0.0103791142, 0.0202654973, 0.0259239431, 0.0161090847, -0.00401733676, -0.0143765826, 0.000810123223, -0.00860687625, 0.00661211554, -0.00572202308, -0.0180402659, -0.0023305323, 0.0236033443, -0.0101963272, 0.00831282791, 0.00534055475, -0.00178515189, 0.0130493911, 0.021998, 0.0188667811, 0.00784791354, -0.0227132514, 0.0226655677, -0.0101089068, -0.00620283186, -0.0251451116, -0.0216324255, 0.0456172377, 0.0287531652, 0.00298618083, 0.00785983447, 0.0275610778, -0.0182627905, 0.0163713433, -0.0224589407, 0.0111102611, -0.0185647849, -0.000197563772, -0.00862277113, -0.0278471783, -0.00382064236, -0.00750618149, 0.0145196328, 0.00969565, 0.0264166724, 0.0102440109, 0.0260669943, -0.0139712729, -0.00446635671, 0.0130493911, -0.0274021327, 0.0339824595, -0.0316618606, 0.00501869107, -0.0143527407, -0.00666377274, 0.0163077656, 0.007502208, -0.00283120922, -0.000440079195, -0.0143447937, -0.00452993484, -0.016069347, -0.00314909942, 0.00376898516, -0.0241119694, 0.00240205764, -0.000447778089, 0.00553923612, 0.0210443288, 0.00385839189, 0.00429946464, -0.0137408022, 0.0124771893, 0.023476189, 0.0133990701, -0.00133513869, 0.0144004244, 0.00383852376, -0.0058650733, -0.00999764539, 0.00445840973, 0.0155925127, -0.0180561617, -0.0243662801, 0.006000177, 0.0182468947, 0.0129540246, -0.0172296464, 0.00376898516, -0.0137010664, 0.0257491041, 0.0124930833, -0.00627833093, -0.00296829944, -0.000487762707, 0.00865456, -0.00892476644, -0.0298498869, 0.0116983578, -0.0154574094, 0.00399746886, 0.00940954871, -0.0185171012, 0.00368951261, -0.0307558738, -0.00654059, 0.00472861622, 0.00195303769, -0.00261464668, 0.0188508872, 0.00394382467, 0.0650403276, 0.0217277929, 0.0104903756, -0.00628230441, 0.0062862779, 0.020122448, -0.00784394, -0.0119924061, 0.000580646272, 0.0228245128, 0.0113804676, 0.0138361696, 0.0284829587, -0.0181038454, -0.00182488817, 0.00550347334, -0.0100055933, -0.0303744059, -0.00733531546, 0.0101724854, 0.0134467538, -0.0098466482, 0.0127632897, 0.00971154403, 0.0139076943, 0.0101406965, -0.0331241563, -0.00397561397, 0.000390657195, 0.0158706661, -0.0170865972, -0.0138043808, -0.00265239598, -0.0104744807, 0.0157196689, 0.018183317, 0.0108162127, 0.00791546516, -0.0240960736, -0.00641740765, 0.00234642671, 0.00604786025, 0.000894066063, 0.0216324255, 0.00815388281, 0.0123261912, -0.00496703386, -0.00843998417, -0.0175316427, -0.00369149959, 0.0119526703, 0.0116904108, -0.013939484, 0.0270683467, 0.0258285757, -0.0142812151, 0.017992584, -0.0203608647, -0.00141759147, -0.00405309955, -0.00524916127, 0.00332195219, 0.00335771474, 0.014487844, -0.0302790385, -0.0241437573, 0.00576175936, -0.0183899458, 0.0156799331, 0.0157196689, 0.0241755471, -0.0109036323, -0.0155925127, -0.0200429745, 0.0258921534, 0.00189840037, 0.0161965042, 0.00625051511, -0.0126361344, -0.0111182081, 0.0118493559, -0.00239013671, -0.000239907735, 0.00259477855, -0.00847177301, -0.00328817638, 0.00178713875, -0.00106493209, 0.0096877031, 0.0169276521, 0.0345864482, 0.0021974158, 0.00783201866, 0.00299810153, -0.00948107429, -0.0137090134, -0.0136692766, -0.0105062695, -0.0111420499, 0.01907341, 0.0270365588, 0.000606971502, 0.0242868084, -0.0226496737, 0.0105857421, 0.0020563521, 0.0034073852, -0.0263689887, -0.00774857262, -0.0239689182, -0.00324446638, -0.0221728384, 0.00621475279, -0.0121434042, -0.00640946, -0.0287372712, -0.00811414607, 0.0154494615, 0.00148116949, -0.0104347449, -0.022935776, -0.00353454123, 0.00655251089, -0.0331559442, -8.95928752e-05, 0.00530876592, -0.0409124643, 0.00132917822, -0.0114599401, 0.0308989231, -0.0107844239, 0.00443456788, 0.00341930613, 0.00875787437, 0.00106592546, -0.00441867346, 0.00991022587, 0.00110963534, 0.0071326606, 0.0215052702, 0.00456569763, -0.00390806235, -0.00205833884, -0.00243782019, 0.00737505173, 0.0096877031, -0.00156163541, -0.00340539846, -0.0183740519, -0.00288485317, -0.0182627905, -0.00963207148, -0.00356235658, -0.0150282579, -0.00464914367, 0.000522035232, -0.00161825959, -0.0253676344, -0.00925060362, -0.0156958271, -0.0145116858, -0.0201542359, 0.00558692, -0.00762141682, -0.013073233, 0.0266868789, 0.0172137525, -0.0067631132, -0.0051021371, -0.012008301, -0.0117380945, 0.000563758309, 0.00662403647, -0.00412462465, 0.00609554397, 0.0210443288, -0.00905987, -0.0156958271, 0.00553923612, 0.0154812513, -0.0135500683, 0.00790354423, 0.0115870964, -0.00791546516, -0.015536882, 0.0257173143, 0.002471596, -0.00960823055, 0.00478027342, 0.00298220711, 0.0115712015, -0.00599620305, -0.0101724854, 0.00440675253, -0.0199952908, -0.0131209167, -0.00491935, -0.0189144649, -0.00280935434, 0.00529287104, -0.0201065522, 0.0069737155, -0.0192164611, -0.0108718434, 0.00719623873, 0.00529684499, -0.00709292432, -0.0113804676, -0.00306764012, 0.00769294193, -0.0209012777, 0.00361997425, 0.0145514226, -0.000603991328, 0.00245371461, 0.0299293585, 0.0109036323, -0.0131606525, 0.000203772564, -0.0117142526, 0.000117346171, -0.00335970172, -0.00493127108, -0.00404117862, 0.00772075728, -0.00296233897, -0.00130334962, -0.00659224717, 0.000555811101, -0.00971949194, -0.00664390437, 0.00971949194, 0.0180561617, 0.0103632193, 0.00875787437, -0.000930822105, 0.00442264695, 0.00533658126, -0.0126122925, 0.00342725334, -0.0142096905, 0.00794725399, -0.0192005653, 0.00128348148, -0.000527499, -0.00961617753, 0.010236063, -0.0133275455, -0.0198681355, -1.18277494e-05, -0.00221132347, -0.00835256372, 0.0229993537, 0.00880555715, -0.00938570686, 0.0158229824, 0.0010341364, 0.000681973761, -0.00055382424, 0.0032663215, 0.0116029913, 0.0242709145, 0.00685848, -0.00693795271, 0.0176270101, -0.0206151772, -0.000875688042, 0.0275928658, -0.02295167, 0.0087817153, -0.0108797904, 0.000405558298, 0.0134864906, 0.0095843887, -0.0192164611, -0.00165998272, 0.00352460728, 0.00131527055, 0.0115473606, 0.00398952141, -0.0180402659, -0.00720418571, -0.00195204432, -0.0126758702, -0.0278471783, -0.0139315361, 0.00109771441, 0.0142573742, -0.018532997, 0.00536042266, 0.0098387, -0.0143209519, -0.02295167, 0.0160455052, 0.0103552723, 0.00721213315, -0.0162044503, 0.00886913575, 0.0200906582, -0.016768707, -0.00463722274, 0.00696576806, 0.0159580857, 0.0185012072, -0.0198204517, 0.010236063, 0.027370343, 0.00785586052, -0.00785188656, 0.0495272875, -0.00359017192, -0.00972743891, 0.00845587812, -0.0225702021, 0.0159183498, 0.0196138229, -0.00727571128, -0.0126838172, -0.0229834579, 0.0193277225, 0.00245570159, -0.00788367633, -0.0038663391, -0.0161726624, -0.0181038454, -0.0126679232, -0.0132798618, 0.000993903494, 0.0196615066, 0.0149408374, -0.00721213315, 0.0187555198, -0.00606772862, 0.0159978233, -0.0122626126, 0.0106652146, 0.00318883569, -0.000186015415, -0.00828103907, -0.00309148175, 0.0195343513, -0.00776049355, -0.00756975962, -0.0266391952, 0.00733134197, 0.00515379431, -0.00982280634, -0.00532466033, -0.00704921456, -0.00243980694, -0.00425178092, 0.0171660688, -0.00361997425, 0.000185146186, 0.00230073, 0.00521737244, 0.0363030583, 0.0015666025, 0.00410873024, -0.00101675186, -0.0143209519, -0.00459351297, -0.0185012072, -0.000886118854, -0.00893271342, 0.0122626126, 0.0042040972, -0.011467888, 0.00511405803, -0.00178217178, 0.0245252252, 0.0115155708, -0.00585712632, 0.00223715208, -0.00415641395, 0.0122387717, -0.00135003973, 0.0227450412, 0.00322062476, 0.0150600467, 0.00304777198, -0.018532997, -0.0087896632, -0.00391600933, -0.0028411434, 0.0264961459, 0.00917113107, 0.0125487139, 0.00576573284, 0.0329652093, -0.0133593343, 0.00630614627, -0.00120400894, -0.0192323551, -0.011475835, -0.0122785075, 0.00457761856, -0.00634190859, -0.00601607142, 0.00822540838, 0.000665582542, -0.000792241888, 0.0118096191, 0.0390687026, -0.00311135, 0.00547565799, 0.013414965, 0.00476040505, -0.0137805389, 0.0141063761, 0.0134626487, 0.00461735483, -0.00105201779, 0.02118738, 0.0101168547, -0.00923471, -0.0149408374, 0.00476835249, 0.00563857658, -0.00670748251, 0.0137566971, 0.00121791672, -0.0126917651, 0.0160296112, 0.0208059121, -0.00249345088, 0.0122546656, -0.00151991239, -0.00287690596, 0.00481206225, -0.00842408929, -0.00739094615, 0.000440824253, -0.00934597105, -0.00921881478, -0.0152110439, 0.0126520284, 0.00531671289, -0.0178177431, -0.00972743891, -0.00260272576, 0.00674721878, 0.00154276064, 0.0221251547, 0.0222364161, 0.0235079769, 0.00838435348, 0.0106334258, 0.000499683607, -0.0127950795, -0.0118493559, 0.00864661206, 0.0146706309, 0.0262418333, -0.0226973575, -0.0136533827, -0.00960028265, -0.00656443182, -0.00974333379, 0.0175634306, -0.0185647849, -0.00691013737, 0.0121672461, -0.0147898402, -0.00161130575, 0.00739094615, 0.0192959327, 0.00139573647, -0.00881350506, 1.69034374e-05, 0.00374116981, 0.0132957557, 0.0177382715, 0.0196774, -0.00705318805, -0.00414449302, 0.00919497292, -0.0051379, 0.0128666041, 0.0164984986, -0.019264143, 0.00416038744, 0.0176905878, -0.00603991328, -0.0076293638, -0.0163077656, -0.00973538589, -0.00551142078, -0.0139792198, 0.00608362304, -0.00166693656, -0.0212509576, -0.00267822458, 0.0096241245, -0.0277994946, -0.00214377185, 0.0111420499, -0.015894508, -0.0177223757, -0.00890092459, -0.0218390543, 0.0110705253, -0.00415641395, 0.0318525955, 0.000347195659, -0.00392197, 0.00318088848, 0.00350871263, -0.0190893039, -0.0180402659, -0.0068664276, -0.00359811937, -0.0139871668, 0.00275769713, 0.0194548778, -0.00417230837, -0.00599222956, 0.0116983578, 0.00524121383, 0.00430741161, 0.0192800388, -0.00562665612, 0.0152507806, 0.00524916127, -0.0229993537, -0.00106989907, -0.00947312731, 0.0139712729, 0.000579156156, -0.00651674857, -0.0236033443, -0.0274974983, 0.0114440462, -0.00130334962, -0.00465311715, 0.0034590424, -0.0159501396, 0.0184058398, 0.0189780425, 0.00464517, 0.00823335536, 0.0156799331, -0.0119685642, 0.0142096905, -0.009361865, 0.00908371154, 0.00853535067, -0.000533956161, 0.0303267222, -0.000870721, -0.00219344208, 0.0063180672, 0.0136613296, 0.0095526, 0.0127473958, -0.0137566971, 0.00470874785, -0.0239530243, -0.00517366221, -0.0231741928, 0.021378113, 0.0047127218, -0.0205357037, 0.00638959231, 0.0282922238, -0.00111460243, 0.0286895875, -0.00139673, -0.00832077488, 0.00572997, 0.0183581561, 0.0039557456, 0.000946716638, -0.00479219435, -0.00524916127, -0.00727968477, -0.0159660336, -0.0397998467, 0.00849561486, 0.025256373, -0.00688232202, -0.0260828882, -0.0204880219, -0.0343321376, 0.0150520988, -0.0119924061, 0.0239530243, -0.0113963624, 0.0161329266, -0.015544829, 0.034268558, 0.0241437573, -0.00706908247, 0.0118890917, -0.00234046625, 0.00933007617, -0.0157991406, -0.000178068163, 0.0108241597, -0.015878614, -0.0057379175, 0.0268935077, -0.00334182032, 0.0199952908, 0.00807441, -0.00355043565, 0.00793135911, 0.00301995664, -0.0289121103, -0.00564652402, -0.00533260731, -0.00401336327, -0.0124851363, 0.0170230176, -0.0195184555, 0.0029047213, 0.00287690596, -0.018183317, 0.000571705576, 0.00161925307, -0.00816183, -0.0154335676, 0.0148136811, 0.00993406773, 0.000614918768, 0.00859892927, 0.0146070533, 0.00424383348, -0.00604388677, 0.00415641395, 0.00308552128, 0.00292657642, 0.023142403, 0.0145196328, 0.0299452525, -0.00511008454, -0.0138043808, 0.00269411923, 0.00248749042, 0.0291187391, -0.00100085733, -0.02923, -0.0131924413, 0.0175316427, 0.0159898754, 0.0117937252, -0.0125010302, -0.00112652325, 0.0309783965, -0.00680682296, -0.0102122212, -0.0105142174, 0.00328420266, 0.00103016279, -0.0134467538, 0.00814593583, 0.00563857658, -0.00465311715, 0.00592865143, 0.00495908642, -0.0285942201, 0.00881350506, 0.0311691314, -0.0172137525, -0.0217436869, 0.0174362753, -0.00245570159, -0.000551837438, 0.0074187615, 0.00458953902, -0.0146865258, -0.00364182913, -0.0179290045, 0.000351169292, 0.0188508872, -0.00176528376, 0.0069459, -0.0115950434, 0.0218549483, 0.0063379351, 6.70549562e-05, 0.0243185982, 0.013073233, -0.0137249082, -2.27086584e-05, -0.0134864906, 0.00687834853, 0.00884529389, 0.0276087616, -0.00853535067, -0.00419217674, -0.0112533122, -0.0128348153, 0.0114996769, 0.000522532, 0.00847972, 0.0153461481, -0.0105698481, 0.0106493207, 0.0115473606, -0.00828898605, -0.00786380749, 0.0120559847, -0.00114341115, 0.00857508741, -0.0133513864, 0.0133990701, -0.00399349537, -0.00874992646, 0.0148454709, -0.0152030969, -0.0180720557, -0.00600812398, 0.00817772467, -0.0125169251, 0.00137090136, -0.00729955267, -0.0051379, 0.0260352045, 0.0104665337, 0.00277160481, -0.00627435697, -0.00616706908, 0.013430859, -0.00989433099, 0.00271001365, 0.0114281513, 0.000952677103, 0.0372249372, 0.000249966, -0.00940954871, 0.00536042266, -0.00789957, 0.0161249787, 0.0108162127, 0.00343718729, -0.00609157, 0.00455775, -0.00526902964, -0.00783996657, 0.00687834853, -0.00895655528, -0.0192959327, 0.00626641, 0.00773665169, -0.00652469555, 0.0003454572, 0.000757969334, -0.0310101863, -0.0124692414, 0.0111658918, -0.00182985526, 0.0122864544, 0.00542797474, -0.0371295698, 0.00456967112, -0.0248272214, 0.00565844495, -0.00337162265, 0.00841614231, 0.00447033, 0.00186561793, 0.00446238322, 0.00979896449, 0.000658628705, 0.00119506835, -0.00205237838, -0.00755783869, -0.00161925307, 0.00914728921, 0.0107605821, 0.00948902126, 0.0144640021, -0.00754989125, 0.00118414091, -0.00532466033, 0.0156322494, 0.00621475279, -0.0111817867, 0.0142494263, 0.00670748251, -0.0129699185, 0.00189343328, 0.0306446124, 0.00998969842, 0.0233490318, -0.00486769294, 0.00240007066, -0.00874992646, 0.00566639192, -0.0169912297, 0.00778036192, -0.00654853741, -0.00761744287, -0.0409124643, 0.0134864906, 0.0218390543, -0.0114519931, -0.0191846713, -0.00391799631, -0.0100055933, -0.00675119227, 0.00809825212, 0.0191528816, 0.016768707, 0.00459748646, 0.0149011016, 0.0334738344, -0.00232059811, 0.0189303588, -0.00746644521, 0.0144163193, -0.00303386431, 0.00200966187, 0.0119367754, -0.0183581561, -0.000805652875, 0.0184853133, 0.00579752168, 0.00319876987, 0.0122467186, -0.00428356975, 0.0273226593, -0.0194707718, -0.0137328552, 0.0216801092, 0.00737107825, -3.85876447e-05, 0.00439880509, -0.0161329266, 0.0034967917, 0.0049233241, 0.0193913, 0.0199476071, -0.00196595187, 0.00245768833, 0.0172296464, 0.0051379, -0.00418025581, 0.00305969291, 0.00226496742, 0.007681021, 0.00229675649, -0.000566738541, 0.00801083166, -0.010061224, 0.00998175144, 0.000742074859, -0.016403133, -0.0105062695, 0.0158547722, 0.014837523, -0.00808633119, 0.017468065, -0.00139176287, -0.00237622904, -0.0156799331, 0.0116188852, -0.0105460063, 0.00446238322, 0.00917113107, -0.0112294704, -0.0197250843, 0.00248351693, 0.0222205222, -0.0158388782, -0.0123977168, -0.00194012339, 0.0103632193, 0.00653264299, 0.0165302884, 0.018183317, -0.00489550829, 0.00914728921, -0.02295167, -0.00563460309, 0.0149964681, 0.0141937956, 0.00722008, 0.000749028695, -0.0301200934, 0.0118890917, -0.00866250694, 0.00811017305, -0.00176429038, 0.00861482322, -0.000442314369, -0.0253994241, 0.00247358275, -0.00348685775, 0.00917907804, -0.000531472615, -0.00441072602, -0.0105380593, 0.0010897672, -0.0104824277, -0.017134279, -0.00490345573, -0.00411667768, 0.000187133, 0.00494716549, -0.00759360148, 0.00992612075, -0.0202496033, -0.0117937252, 0.00328817638, -0.0653582141, 0.00434714789, 0.00490345573, 0.0162759759, -0.000623859465, -0.0122944023, 0.01253282, -0.00271796086, -0.00279544666, 0.0121036684, -0.00615514815, -0.00437496323, -0.00541208, 0.024000708, 0.00220734975, 0.00774857262, 0.0140030617, 0.00225503324, -0.0346500278, -0.00685848, 0.00645317044, 0.00261862017, 0.0066558253, -1.39853046e-05, -0.0138918, 0.0152110439, -0.00250735856, -0.00239808392, -0.0171024911, -0.00506240083, 0.0208059121, -0.00223715208, 0.00654853741, -0.00613528024, -0.0165302884, 0.00299611478, 0.00652469555, 0.00960823055, -0.00681874389, -0.0250974279, -0.00102221558, 0.00219145534, 4.74041299e-05, -0.00888503, -0.00754194427, -0.0117460415, -0.0150838885, -0.0119447233, -0.0239212345, 0.00822540838, 0.00933802314, 0.000285356102, -0.0161885563, 0.0146785779, 0.01907341, 0.00289677409, -0.00793930702, 0.0176270101, 0.0170230176, 0.0213463251, -0.00417230837, -0.00630217232, 0.00642138114, 0.0043630423, 0.00940954871, 0.00115235185, -0.00295240479, -0.00432330603, 0.000741081429, 0.0280379131, -0.0113168899, -8.28252887e-05, 0.00425178092, -0.0069935834, 0.00496703386, 0.012707659, -0.00076045288, 0.00991022587, -0.00292657642, 0.0178972166, 0.0143288989, -0.0125646088, 0.00675516576, -0.0139315361, -0.00217953441, 0.0126758702, -0.0250815339, 0.0179607943, 0.0087896632, 0.00816183, 0.0163713433, -0.00127354742, -0.0184217356, 0.0230788253, 0.0149249434, 0.0124056637, 0.00604388677, -0.0152587276, 0.0117301466, -0.000689424283, 0.012365927, -0.0175157487, 0.00523326686, 0.000721213291, 0.0175634306, -0.0249384828, -0.0108718434, -0.0198840294, -0.0145514226, 0.0254947916, 0.0313280746, 0.00795520097, 0.000849362754, -0.000780817703, 0.02295167, 0.000891085889, 0.00273186853, 0.0096877031, -0.0087260846, -0.00501074363, -0.01412227, -0.0178972166, -0.00555513054, -0.0125566619, -0.00476040505, 0.00896450225, 0.00220734975, -0.00605183421, -0.00149309041, -0.0177382715, 0.0111102611, 0.0228563026, -0.00619091094, -0.0240960736, 0.0199635029, 0.00160534529, 0.00413654558, -0.00130931009, -0.0096797552, 0.00114738476, 0.0187714137, -0.0046292753, 0.0138043808, 0.00328618963, -0.0131765474, -0.00569420774, -0.00425178092, 0.01447195, -0.00448622508, -0.00360010611, -0.000699358352, -0.0115394127, -0.00509816362, 0.000148141786, 0.00737107825, -0.0170071237, 0.0323612168, 0.00021892201, -0.00528889755, -0.00392991723, 0.0145434747, -0.00900423899, 0.00494716549, 0.0170865972, -0.000427164894, -0.00299214106, -0.00932212919, 0.0129699185, -0.00524518779, 0.000999864, -0.00136394752, 0.0126679232, -0.0102599049, 0.00757770659, 0.00907576457, -0.0239212345, 0.00360606657, -0.00840024743, 0.0204562321, 0.013422912, 0.0283716973, 0.011650674, 0.00720815966, -0.00420012372, -0.00350672589, -0.028435275, 0.0116268331, -0.00916318409, 0.00632204069, 0.00418025581, 0.0216801092, 0.0149169955, 0.0140904812, -0.0152746225, -0.0152825695, -0.0188985709, -0.00559486682, -0.00900423899, -0.0154653564, 0.0161488205, -0.00519353058, 0.00781215075, 0.00178813213, -0.00107883976, -0.00818567164, 6.21189683e-05, 0.0238735508, -0.00945723243, -0.0341731943, -0.00457761856, 0.0201701317, -0.0036438161, -0.0157594047, -0.0090439748, 0.0260352045, 0.00485974597, -0.0251292177, -0.00107486616, -0.0125089781, 0.0309307128, 0.00662006252, 0.0116983578, 0.0217913706, 0.0111023141, -0.0123897688, -0.00611541187, 0.00447033, 0.00404912606, -0.0269411914, -0.00258881808, -0.0227927249, 0.0142335324, 0.00401733676, -0.0123977168, 0.000564255053, -0.00151693216, -0.00744657684, 0.00750618149, 0.000188871461, 0.0112374173, 0.0163395535, 0.00592070445, 0.0153064113, 0.00701345177, 0.0116029913, 0.00613925373, -0.00100284407, -0.000672536378, -0.00807043631, -0.00550744729, 0.00788367633, 0.0133990701, -0.00921881478, 0.00125467277, 0.0261782557, 0.0147501035, -0.0177541655, -0.0013728881, -0.0209330674, 0.0108877383, -0.00714060757, -9.23557855e-06, -0.012365927, -0.00978307, -5.1222537e-06, 0.00549552636, -0.00785983447, -0.00584917888, -0.0214893743, -0.00233251904, 0.0106334258, -0.00442264695, 0.016419027, -0.0156401955, 0.00867840182, -0.000311184675, -0.00373918307, 0.00874992646, -0.00456569763, -0.0114599401, 0.0146229472, -0.0285783261, -0.0138043808, 0.00189144642, -0.010069171, -0.00454185577, -0.0122944023, -0.0227450412, -0.00824924931, -0.0127553428, 0.0211714841, -0.0191369876, -0.00639753975, -0.00929828733, -0.02682993, -0.0185171012, 0.0182786845, 0.00148812332, -0.0096797552, -0.0209648553, 0.0162680298, -0.0119447233, -0.00695782108, -0.018532997, -0.00581341656, -0.0251769014, 0.0120718786, -0.0241278633, -0.000379481382, -0.00137785519, -0.00894066, 0.00711676618, -0.0222682059, 0.0119288284, -0.0118731977, -0.00119407498, 0.00325837429, -0.0127394479, 0.00775652, 0.0101009598, -0.0248113275, -0.00507034827, 0.00944928546, -0.00202654977, -0.0129460767, 0.00176627724, 0.0103552723, -0.0101724854, -0.00902808085, -0.0239689182, 0.0110148946, 0.00331599172, 0.0113566257, -0.000632303418, -0.00733531546, 0.0210443288, -0.0153938308, -0.0105698481, 0.0108718434, 0.0062227, -0.00899629202, 0.0171660688, -0.00427562278, -0.00888503, 0.0328698419, -0.0255265795, -0.0164508168, 0.00226496742, 0.0158468243, 0.000311433017, -0.000433373702, 0.0217595808, 0.0170707013, 0.00252524, -0.0056306296, 0.0115712015, -0.000607964932, -0.0104744807, 0.0303585101, -0.0111976806, -0.0101804323, 0.00778433541, -0.0329969972, -0.0220138934, -0.0136613296, -0.0033378466, 0.0141620068, 0.0119208815, -0.00802275259, -0.00177621131, -0.00712471316, -0.00522929337, -0.00663595693, 0.0665026233, -0.00261067296, 0.0248272214, -0.0162918717, 0.0082095135, -0.00274776318, 0.0146944728, 0.0422476, 0.0172614362, 0.0220456831, 0.0112215225, 0.0104347449, -0.0214257967, 0.00425972836, 0.0208377, -0.00164309482, 0.00169574539, -0.018008478, 0.0148454709, -0.0244139638, 0.0106652146, -0.00946517941, 0.013407018, -0.0177064817, 0.00887708273, -0.000875191356, -0.0172614362, -0.0238099732, -0.00651674857, -0.00443059392, -0.000336516532, 0.0157037731, -0.00464517, 0.011825514, -0.00248351693, -0.00664390437, -0.00268815877, -0.000194956083, 0.00377891934, -0.00791149121, -0.00441072602, 0.0315505974, 0.000845885836, 0.000992413377, 0.00178813213, -0.0178336389, -0.0238099732, -0.012000354, 0.00902013294, -0.0188985709, 0.0146944728, -0.010402956, -0.01041885, -0.00443854136, 0.001699719, 0.0237146057, 0.0371295698, 0.00427164929, -0.00456967112, 0.0171501748, -0.00276961806, 0.0120639317, -0.00525710871, -0.00367560494, -0.00408886233, -0.0213463251, -0.0129460767, 0.00477232598, 0.00301598292, -0.0145593695, 0.00128050137, -0.00107089244, -0.0127632897, 0.00173647504, -0.00512995245, 0.00678298157, 0.00279544666, 0.0305651389, -0.000154971451, -0.0137090134, -0.010069171, -0.000751512242, -0.019772768, -0.00804262143, -0.0223953612, -0.000409780274, -0.00838435348, -0.00429946464, -0.0200588685, 0.0136295408, 0.00782804564, 0.0221092608, -0.0223953612, 0.00155567494, 0.00971154403, -0.0158150364, -0.00412859861, -0.00305770594, 0.0108480016, -0.001235798, 0.00691013737, -0.00788367633, -0.0219503157, -0.00545181613, -0.0101089068, 0.0244457535, -0.00982280634, 0.0218072645, 0.00627833093, -0.00430343812, -0.00708497688, 0.00998969842, 0.0212350637, 0.0152189918, 0.0022609937, 0.00701345177, 0.0233808216, 0.00145037391, 0.00798301678, -0.00289081363, 0.00689026946, 0.0112692062, 0.00108082651, 0.00218549487, 0.0130255492, -0.0109115802, 0.0110705253, 0.00640548673, -0.00641343417, -0.0193913, 0.0149090486, -0.00891681947, -0.00588891516, -0.00385243143, 0.0161170308, 0.0160772949, 0.0152666755, 0.0113566257, 0.0198363457, 0.0251292177, 9.95890296e-05, -0.00197389931, 0.00925855059, 0.0205198098, 0.0177700594, -0.007681021, 0.00783201866, -0.0249384828, -0.00483193062, 0.0253517404, -0.0040252842, 0.00141759147, -0.00425575441, -0.0180561617, 0.0098466482, 0.0233331379, 0.00393985119, -0.0224907286, 0.00738697266, -0.000672536378, -0.00534055475, 0.00474848412, -0.00563857658, 0.0126997121, 0.00754194427, -0.00753797032, 0.00831282791, -0.0277518108, 0.010061224, 0.00438291067, 0.0313121825, 0.0231900867, 0.00543989521, -4.60226738e-06, -0.00268815877, 0.00724392198, 0.00673132436, -0.0128030265, 0.000921384781, -0.00257689715, -0.000401584693, -0.00192820258, -0.00402329722, 0.0578878, 0.00979101658, 0.00951286312, 0.00791943911, 0.00410873024, -0.00409283582, -0.0124771893, 0.00957644079, 0.00547565799, 0.00532068638, -0.00486769294, -0.00172256737, -0.00326234777, 0.00643727602, -0.00977512263, 0.00859098136, -0.003973627, 0.0269729812, 0.00166792993, -0.0172614362, -0.0177541655, -0.0201542359, 0.0214416906, 0.00164508156, -0.00416038744, -0.0139951147, 0.00691411085, 0.0298657808]
|
07 Jul, 2022
|
Onsen UI Modal CSS Components
07 Jul, 2022
Onsen UI is a free open-source HTML5 framework that enables you to design user interfaces that are original and functional (UI). It also makes UI creation easier, freeing up programmers to focus on the functionality of the application. With a wealth of ready-to-use features that follow native iOS and Android design standards, Onsen UI is a comprehensive collection of user interface elements made specifically for mobile apps. Onsen UI can be used with any other framework, including jQuery, even though it was created to work with AngularJS. For PhoneGap and Cordova, Onsen UI is a JavaScript Framework.
Onsen UI provides the pre-built CSS components for fast designing versatile and appealing user interface layouts.
Onsen UI Modal CSS Components is a web-based Topcoat theme roller for mobile developers that makes creating a beautiful user interface easier for developers.
Syntax:
<element-name class="modal-class-name">...</element-name>
Classes Used:
modal: This class is added to the container that holds the modal.
modal__content: This class is added to the container that encloses the whole modal’s content.
Example1: The below example demonstrates how to add a basic modal to a webpage using Onsen UI.
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport"
content="width=device-width,
initial-scale=1.0" />
<link rel="stylesheet" href=
"https://unpkg.com/onsenui/css/onsenui.css" />
<link rel="stylesheet" href=
"https://unpkg.com/onsenui/css/onsen-css-components.min.css" />
</head>
<body>
<center>
<h1 style="color: green;">
GeeksforGeeks
</h1>
<h3 style="font-style: bold;">
Onsen UI Modal CSS Components
</h3> <br>
</center>
<div class="modal">
<div class="modal__content">
<div style="height: 200px;
width: 600px;
margin-left: 3.5rem;">
<div class="card">
<h2 class="card__title"
style="color: green;
text-align: center;">
GeeksforGeeks
</h2>
<div class="card__content"
style="text-align: center;">
A Computer Science portal for geeks.
</div>
</div>
</div>
</div>
</div>
</body>
</html>
Output:
Example 2: The below example demonstrates how to add a basic modal to a webpage using Onsen UI by specifying the toggle to close the modal.
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport"
content="width=device-width,
initial-scale=1.0" />
<link rel="stylesheet" href=
"https://unpkg.com/onsenui/css/onsenui.css" />
<link rel="stylesheet" href=
"https://unpkg.com/onsenui/css/onsen-css-components.min.css" />
<script src=
"https://unpkg.com/onsenui/js/onsenui.min.js">
</script>
<script src=
"https://code.jquery.com/jquery-3.6.0.min.js">
</script>
</head>
<body>
<center>
<h1 style="color: green;">
GeeksforGeeks
</h1>
<h3 style="font-style: bold;">
Onsen UI Modal CSS Components
</h3>
<br>
<button class="button"
onclick="showModal()">
Click here!!
</button>
</center>
<div class="modal">
<div class="modal__content">
<div style="height: 200px;
width: 600px;
margin-left: 5.5rem;">
<div class="card">
<h2 class="card__title"
style="color: green;
text-align: center;">
GeeksforGeeks
</h2>
<div class="card__content"
style="text-align: center;">
A Computer Science portal for geeks.
</div>
<button onclick="closeModal()"
class="action-sheet-button">
<i class="ion-ios-close"></i>
Close
</button>
</div>
</div>
</div>
</div>
<script>
$('.button').hide()
function closeModal() {
$('.modal').hide()
$('.button').show()
}
function showModal() {
$('.modal').show()
$('.button').hide()
}
</script>
</body>
</html>
Output:
Reference: https://onsen.io/v2/api/css.html#modal-category
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components
|
https://www.geeksforgeeks.org/onsen-ui-modal-css-components?ref=asr10
|
CSS
|
Onsen UI Modal CSS Components
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0188168, 0.0184842963, -0.0164136924, 0.019814318, 0.06426429, 0.023864843, -0.0181820169, 0.00755694835, -0.0131264189, -0.0149703147, 0.00257503, -0.0110633727, 0.0270841029, -0.0438303, -0.000921947707, -0.0289431121, -0.0577955395, 0.00555435708, -0.00569038233, 0.00344785769, -0.0196027234, 0.0185145233, -0.042198, 0.0115092322, -0.00581885036, 0.00986937433, 0.0226406176, 0.0261017, -0.0240310952, 0.0023521, -0.0117510548, -0.00813883357, -0.00840332638, 0.0181064475, -0.0524149947, -0.0325855613, -0.00873583276, 0.0151365679, -0.0175774619, 0.00762873935, 0.000554491067, 0.0126654459, 0.0336737633, 0.0316787288, -0.0197689775, -0.0455532856, -0.0103454627, -0.0422584563, 0.00827485882, -0.020101482, 0.0419864058, 0.0238497294, 0.0542588905, 0.0257691946, -0.0159451608, 0.0326460153, -0.00348564237, 0.035578113, 0.00158884842, 0.00713375909, 0.00343652233, -0.057946682, 0.00279984949, -0.0108064367, 0.00279607088, 0.0176379178, -0.0057659517, 0.0117812827, -0.00525963586, 0.00818417501, -0.0186203215, 0.018378498, -0.0119626494, 0.0174565502, -0.0214919616, 0.0249077026, 0.0312253106, 0.0042356695, 0.00810104888, 0.00216317642, 0.00155673141, 0.00961243827, -0.0405354723, -0.0151063399, 0.00363300298, 0.0128543694, 0.0212803669, -0.0426816456, -0.00749271456, -0.00316258287, 0.00694861403, 0.0166706275, 0.0132322162, -0.0148267327, 0.0031890322, -0.0111918403, 0.0389938541, 0.00111937302, -0.0517802089, 0.0153330481, 0.0223081112, 0.0182878152, 0.0244240575, -0.0209932029, 0.0181517899, 0.034489911, 0.061422877, 0.00187695702, 0.00819173176, -0.0140181389, 0.0169729069, -0.00641962746, -0.0108517781, 0.00669545634, -0.0189074855, 0.0258145351, -0.0231696032, -0.0520824902, 0.00856202282, 0.0139803542, -0.0230638068, -0.0176983736, 0.000934700074, 0.0515383892, -0.0701284781, 0.0334017128, 0.000880384468, 0.0443744026, 0.035547886, 0.00699395593, -0.00625715312, 0.0134362541, -0.0187412314, -0.0122649269, 0.0342178605, 0.0358199365, 0.0395984091, 0.0160056166, -0.0307114385, -0.0107535375, -0.0187714603, 0.00156334369, 0.00549390167, 0.0234114267, -0.0400820561, 0.000332033407, 0.0214919616, 0.0791363642, -0.0297441483, -0.00688815862, -0.0215977579, -0.0426816456, -0.00572816702, 0.0483947, 0.0179099683, 0.00304356101, -0.0135722794, 0.0131490901, 0.00762118259, 0.000426022976, 0.0352456085, -0.0290640239, 0.0374220088, -0.0241973493, -0.0220965166, -0.0276584309, 0.0107459808, 0.0194666982, -0.0240915511, 0.0414423048, 0.00532764848, 0.00677858293, -0.00493090879, -0.00203092978, -0.0317089558, 0.0382986143, 0.0461276136, 0.0059926603, -0.00631760899, 0.00678236131, -0.0360617563, 0.00930260308, 0.0262830667, 0.0020328192, 0.0436489321, 0.019753864, 0.0167764258, -0.0107081961, -0.0261772685, -0.0100885257, -0.0376638323, 0.00757206231, -0.00423944788, 0.0245600827, 0.0202828497, -0.00827485882, -0.0414423048, 0.033311028, -0.00727734109, 0.0140634812, 0.00233131857, -0.0273863804, -0.00931771751, 0.0255122576, 0.0227464139, 0.00875094626, -0.00366889848, -0.0337039903, 0.0285199229, -0.0235927925, -0.0437396169, -0.00466263713, 0.00840332638, -0.0188923702, -0.00268838438, 0.0246658791, -0.0408377498, 0.000376902812, -0.0224894788, -0.00272616907, 0.0141919488, 0.0249077026, -0.00660477299, 0.0159905031, -0.0558005087, -0.0119702062, 0.0130055081, -0.0387822576, 0.0200561415, 0.0031531367, -0.0332203433, 0.00118360703, -0.0124689648, 0.0112749673, 0.0600021705, 0.0215675309, 0.0393263586, -0.000342424231, -0.0113354223, 0.0454021469, -0.0390543081, -0.0184540674, -0.053442739, -0.012892154, 0.0311043989, 0.00222741044, 0.0222778842, 0.00965778, 0.016050959, 0.0102396654, -0.00260714721, 0.00681258878, -0.0269480776, 0.00713375909, 0.018952826, 0.0339760408, 0.0133909127, 0.00924970489, -0.0092270337, 0.028716404, 0.0290942509, 0.0143808732, 0.00592842605, 0.0158091355, 0.00270160916, -0.0191795342, 0.0454928279, -0.055468, -0.00570549583, -0.0280513931, 0.0507524647, -0.0477599129, 0.0360013023, 0.0347619615, -0.00176076894, 0.0394170433, -0.00596243236, -0.00828997232, 0.0105268294, 0.007466265, 0.0151138967, -0.00488178851, 0.0435280241, -0.00598888146, 0.0173054114, -0.0140483668, 0.0140483668, 0.0153557193, -0.0275224056, 0.0267213695, -0.0153254913, -0.00484022545, -0.031618271, -0.00368023384, 0.0363035798, 0.0214163922, 0.0202375073, -0.00502914935, 0.00955954, -0.000879439875, -0.0175018925, -0.018635435, -0.0143279741, 0.00353854103, -0.0135344947, 0.0575839467, 0.0802850202, -0.00282818801, -0.000321170315, 0.0152348075, 0.0283385571, -0.0215977579, -0.00523696514, -0.0331598893, -0.0264946613, 0.00196480658, 0.0128392549, 0.0100960834, -0.0100885257, 0.00219340436, 0.00608712202, -0.00282063102, -0.011743498, 0.0172751844, 0.0173809808, 0.0251041818, -0.0337039903, -0.0106326267, -0.00681636762, 0.0112976376, -0.0672266111, -0.0167159699, 0.0378149711, 0.0167915393, 0.00465130154, -0.0203735325, 0.0224592499, -0.00413742941, -0.0041752141, 0.00722066406, -0.0279304814, -0.0254064612, -0.019209763, -0.0123253828, -0.00829752907, -0.063599281, 0.00343463314, -0.000281968649, 0.0516895279, 0.0160056166, 0.00142354018, 0.0196934082, 0.032706473, -0.0199201163, 0.0243182592, 0.0120760035, -0.0094990842, -0.0201921668, -0.033341255, 0.0174565502, 0.000163182849, -0.00144715561, 0.00610223599, -0.032101918, 0.00260336883, -0.0253762323, -0.0306056403, 0.0107913222, -0.00300010853, -0.0156882256, -0.00510094035, -0.00876606, -0.0392054468, 0.00136402913, -0.0360315293, 0.00284896954, 0.0122724846, -0.00401273975, -0.0379963368, 0.00790456776, -0.0144186579, 0.0456439666, -0.00928749, 0.0495131277, 0.0131415334, 0.00647252612, -0.000451055355, -0.0282327589, -0.0428630114, -0.0167461969, -0.0147662768, 0.0237741601, 0.0323739685, 0.000314321835, 0.0178495124, -0.0225348193, -0.0273561534, -0.0188016873, 0.0113051943, -0.0138821146, -0.0119399782, 0.00158318074, 0.0251948666, -0.0130055081, -0.000139331241, -0.0331296623, -0.00961999502, 0.0058377427, 0.01134298, -0.017773943, 0.00450394116, -0.0484551527, -0.0655338541, 0.031557817, 0.0323437378, 0.0121591296, 0.00334772817, 0.0629342645, 0.00532764848, 0.0260261297, 0.0664406866, -0.0164439194, -0.00165591633, 0.0386008918, 0.018635435, 0.00895498414, -0.0464903452, -0.00641962746, 0.00826730113, 0.00201959442, -0.0043905871, 0.00415254291, -0.012491636, -0.0258598775, 0.0283385571, 0.0166101716, -0.00427345419, -0.00521051604, -0.0066652284, -0.0345201418, -0.0239252988, 0.01780417, 0.00983159, -0.0122649269, -0.061966978, 0.0115319034, -0.0327367, -0.0313764513, -0.0297592636, -0.0264342055, -0.0206909254, -0.0148796318, -0.0310741719, -0.00746248662, 0.0321926, -0.01636835, 0.0228522122, 0.0259656738, 0.0246658791, -0.0237288177, -0.00161624234, 0.0282629877, -0.0134891532, 0.0236532483, -0.0164892618, -0.0236834772, -0.0451603234, 0.0221720859, -0.023320742, 0.0213105939, -0.00185428618, 0.0286710616, 0.0381474756, 0.000546934141, 0.0381777026, 0.00872827508, 0.0175623484, -0.0105343862, 0.0351246968, -0.00399384741, 0.0529590957, 0.0150912255, 0.0353362896, 0.0228522122, 0.0373313241, -0.0128241414, 0.00379358814, -0.00311346282, -0.0180006512, 0.00920436345, 0.00563748367, -0.00807082094, -0.0337644443, 0.00799525157, 0.0128090279, -0.0231696032, 0.0038464868, -0.0128845973, 0.000616363599, 0.0100658555, -0.0103908041, 0.0142448479, -0.000941312406, 0.0713980496, 0.00799525157, 0.0039485055, 0.00457573216, 0.0280513931, 0.0179553088, 0.0152045805, 0.00377091719, -0.00978624821, -0.0112825241, 0.00897765439, -0.00106080668, -0.0222929977, -0.0148191759, 0.0214919616, 0.00623070402, -0.0320716873, 0.00666145, -0.0138367722, -0.0131339766, 0.0246054232, -0.00411853706, 0.0121893575, 0.0300313123, -0.0217337832, 0.00655565271, -0.0307114385, -0.0365756303, -0.0191493072, 0.0245147403, 0.0248170178, -0.00631005177, -0.0297290348, -0.0139123416, -0.0051198327, -0.00791212451, 0.00094509084, -0.036666315, 0.00456817541, -0.0358501635, -0.00949152745, -0.00100035104, -0.0209176335, 0.00236910325, -0.0279002544, -0.00191474182, 0.0234567672, -0.0111011574, 0.0584303252, 0.0369081348, -0.00311346282, -0.0165799446, -0.0138821146, -0.0421375446, -0.0149778714, -0.0248170178, -0.0448882729, 0.0125143062, -0.0300766546, 0.0583396405, 0.0232602879, -0.00803303625, -0.01421462, -0.0103983609, 0.0165648311, 0.00462107407, 0.0229882374, -0.00358766131, -0.000341007282, -0.00528230704, -0.012204472, 0.0191190802, 0.0198596604, 0.0487876572, -0.0369081348, -0.00393339153, 0.00804059301, 0.00686926628, -0.0086375922, 0.0282478724, 0.00803303625, -0.00580373639, -0.00161718694, 0.031013716, -0.000404532882, -0.0456741974, -0.0149174165, 0.0207513794, 0.0171240456, -0.00221229671, 0.00258069788, 0.0154766301, -0.0135949505, 0.0204037614, -0.000628171314, 0.0102094375, -0.0143808732, -0.0162474383, 0.00263926433, 0.00256558391, 0.0173809808, 0.00733779697, -0.00952175539, 0.0167159699, 0.00834287144, 0.0207362659, 0.00331750023, -0.0317694098, -0.0201921668, 0.0234567672, -0.0190435108, -0.0159753896, -0.0215675309, 0.00850156695, -0.000324948778, 0.00197425275, -0.0263132937, 0.0226103887, 0.0129828369, 0.0356687978, 0.018378498, 0.0207362659, -0.00459084613, -7.98793044e-05, 0.00290942518, -0.00706574693, -0.0100129563, -0.0470042191, -8.48385534e-05, -0.0141692786, -0.00810860563, 0.00810860563, 0.0281269625, -0.00521051604, 0.001453768, -0.0306207556, 0.0212501381, 0.00458328938, -0.00201959442, -0.0140030254, 0.0561330132, -0.00449260604, 0.0393868163, -0.0025051285, 0.0195422694, 0.0161869843, -0.00444726413, 0.00526719308, 0.0247112215, -0.010768651, 0.0039485055, -0.0103227915, 0.0149249732, -0.0220360607, -0.0118190674, -0.0109651322, -0.0207060389, -0.0151138967, -0.0439814404, 0.0365454033, 0.0042470051, 0.0111842835, -0.0314369053, 0.0116981557, 0.0181366764, -0.0200561415, 0.024983272, 0.033915583, -0.00959732477, 6.4175023e-05, 0.00893987, -0.0149098588, -0.0407470651, -0.0111011574, -0.00347430701, 0.000639979087, -0.0111616123, -0.0178948529, 0.0139727974, 0.0121818008, 0.0384195261, -0.0343085453, -0.013179318, -0.0270689894, -0.0279607084, -0.0125898756, -0.0180762205, 0.0123782819, -0.0150307706, 0.017229842, 0.0131415334, 0.00433013123, -0.0341574065, 0.003266491, -0.0161265284, 0.0217942391, 0.00351964869, 0.0122347, -0.0154161751, -0.0488481149, 0.0284141265, 0.00722066406, 0.0226859599, 0.0108064367, 0.0128241414, -0.0276130904, 0.0144262146, 0.0109802457, 0.0243938286, 0.00186467706, 0.0495735817, -0.0377242863, -0.0151819093, -0.0122195855, 0.0036915692, -0.0188923702, 0.0156126553, 0.00841844082, -0.0115016755, 0.0140181389, 0.00103246805, -0.0178495124, -0.00866782, 0.0170182474, -0.0196027234, -0.00579617964, 0.000977680204, 0.00658588065, 0.0130961919, 0.012635218, 0.00287919724, -0.0319507793, -0.0167310834, 0.0381777026, 0.00269971974, 0.000464043871, 0.00873583276, 0.00522185117, 0.00679369643, -0.00584529946, 0.000555908, 0.00527852867, -0.0137460893, 0.019527154, 0.00513872504, -0.0119097503, -0.0184540674, -0.00102963427, -0.00796502363, 0.000257880864, -0.0441628061, 0.0130810775, 0.00541455345, -0.0134815956, 0.0322530568, -0.00260336883, 0.0252855495, 0.0258296505, 0.0381172486, -0.0263586361, 0.0202526208, -0.0151516814, -0.0122422567, -0.0261923838, -0.0427723266, 0.0222325418, 0.013065964, 0.0171845015, 0.029577896, 0.058007136, -0.00610223599, -0.000575745, -0.00538054714, -0.0269631911, -0.0288373157, -0.00815394707, -0.0238195, 0.0103001203, 0.00582640711, 0.0162172113, 0.0370895043, 0.00552790798, -0.0163078941, 0.00463618804, -0.00118077314, 0.00243711588, 0.0376336, 0.020615356, 0.0140105821, 0.0204944443, -0.00612490671, 0.0062949378, -0.0230184644, -0.0152801499, 0.00938573, -0.00817661826, -0.0307114385, -0.0276282039, -0.0288222, 0.0130810775, 0.0112749673, 0.00822951645, -0.0094084, -0.0353665203, -0.0019969237, -0.0501479097, 0.00208382844, 0.0146907074, -0.00493468717, -0.0437396169, -0.00329105114, 0.00239933119, 0.0107913222, 0.0236532483, 0.0377545133, 0.00200448046, -0.00598510308, 0.0487272032, 0.00787434, 0.0109273475, -0.0127259009, -0.0202828497, 0.0151365679, 0.00134891528, 0.0194666982, -0.00124217337, -0.0157335661, -0.00562614808, -0.00890208501, -0.0362128951, 0.0117888395, -0.000465224643, 0.000926198496, 0.0384799801, 0.0479715094, 0.0277188867, 0.00888697151, -0.031557817, 0.0142750759, -0.00832775701, -0.013927456, 0.0286710616, 0.0271143317, 0.00905322377, 0.0040920875, -0.0107081961, -0.00707708206, 0.0296534654, 0.0134211406, 0.0294721, 0.0700075701, -0.00445104251, 0.0100280708, -0.0256180558, 0.0156428833, 0.0185900927, -0.000962094, 0.001525559, -0.0210234299, 0.0200863685, 0.0070959744, 0.0369081348, 0.0274166092, -0.0220209472, -0.0194818135, -0.0270085335, -0.0105721708, -0.00893987, -0.0265400019, 0.0257389657, 0.0266911425, 0.0100960834, -0.00328160473, -0.00434146682, -0.0133153433, 0.00297743757, 0.012635218, 0.0302277934, 0.0197992045, -0.0218546949, -0.025587827, -0.0175774619, 0.0216733273, -0.0123253828, -0.0016323009, 0.00769675197, -0.0330994353, -0.0186052062, -0.0156428833, 0.00632894412, -0.0271747857, -0.00874338951, 0.0375126936, -0.0257540792, 0.00561481249, -0.0219604913, -0.0108442213, 0.00580751477, -0.0234869961, 0.0100431843, 0.00299633015, 0.0173658673, -0.00521429442, -0.00377091719, 0.00516139576, -0.0121213449, 0.00914390758, 0.0166101716, 0.0134362541, -0.0152423652, -0.00604933733, 0.00741336634, 0.00604933733, -0.0475483201, 0.0259959027, 0.0291395932, -0.0148947453, 0.00398251181, -0.0431350619, 0.0218546949, 0.0209932029, -0.0314066783, 0.00231242622, 0.00237477105, 0.0269783065, -0.0204793308, -0.00196858495, -0.0155521994, 0.0179704241, 0.0166857429, 0.0132851154, -0.03439923, -0.0374824628, -1.75787609e-05, 0.0485760644, -0.0362733528, -0.00229920144, 0.0309079196, 0.0341574065, 0.0142372912, 0.0104361456, 0.0122347, -0.0209327471, -0.00857713632, 0.0201317109, 0.000852518249, 0.0126578882, -0.0023936634, -0.0201921668, -0.00885674357, -0.0212652534, 0.0359408483, -0.0219907202, -0.0276584309, 0.0174414366, -0.00454550423, 0.0263737496, 0.00877361745, -0.0359106176, -0.00170975958, 0.019496927, 0.0172600709, 0.0086527057, -0.0143733155, -0.00938573, 0.0359106176, -0.00535787642, -0.0081690615, 0.00936305895, 0.0217640121, 0.00319092139, -0.00565259717, 0.00765518891, 0.0305149574, -0.007322683, -0.0143279741, -0.0276886597, 0.0434675664, -0.0045341691, -0.00965022296, -0.0225348193, 0.00514250342, 0.0161416419, 0.036666315, -0.0102547789, -0.00806326419, 0.0199805722, 0.0445557684, 0.00467397273, 0.00243522669, -0.00525585748, -0.0120533323, 0.00512361107, 0.0565259755, -0.0102925636, -0.0176076889, -0.0377545133, -0.00999028608, -0.00507071242, -0.0139425695, 0.0244542845, 0.00855446514, 0.0125596486, 0.00486667454, -0.0222476553, -0.00933283102, -0.00118171785, -0.0250437278, 0.00646496937, -0.0285199229, 0.0160056166, 0.0286710616, 0.0164439194, 0.0135949505, 0.0143733155, 0.0135193802, 0.000580468099, 0.0261772685, -0.0286710616, -0.00191285252, -0.0339760408, 0.0118266242, 0.0204944443, 0.00782899838, -0.0158998203, -0.0052634147, 0.0126276612, -0.0114714475, 0.00621559, -0.0122875981, 0.00617402699, 0.00919680577, -0.012922382, -0.0238497294, -0.0332808, -0.0035895505, -0.0215826444, -0.00863003545, -0.00590953371, -0.0235172231, 0.00983159, -0.00874338951, -0.0230486933, -0.0259656738, 0.0185749792, 0.00685037393, 0.00726600597, -0.0196027234, 0.0216884427, -0.00629871665, -0.0253460053, -0.0277037732, -0.020101482, -0.000123390797, -0.00824463088, -0.00482889, 0.0101565383, -0.0119853206, -0.00706196809, 0.00643096305, -0.00238232804, -0.0217488967, 0.0202526208, 0.012892154, -0.0154464021, 0.00733401859, -0.00237477105, -0.0274014957, -0.00730756903, 0.0135798361, 0.00188829249, 0.0311648548, -0.0125294207, 0.0130130649, -0.0225197058, 0.0078818975, -0.00240310957, 0.0213710498, -0.00657454506, 0.0249077026, 0.0389333963, -0.0312555395, -0.00105419429, 0.0134135839, -0.0202526208, -0.00480621913, -0.0442837179, 0.00187412323, 0.0110784862, -0.00803303625, -0.00457195379, 0.00481377635, -0.00572061, 0.0133455712, 0.065352492, -0.00374635728, -0.0204339884, -0.0265853442, -0.0154464021, -0.0329482965, -0.0122347, 0.00127617968, 0.0233509708, -0.0205397867, 0.0329482965, -0.0111011574, -0.0249228161, -0.0155673139, -0.0295325536, 0.00855446514, 0.000335575751, 0.0222627707, 0.0111767268, -0.03439923, -0.0269480776, 0.00455306144, 0.0187412314, 0.00273183687, -0.000449874584, -0.00747760059, -0.00967289414, -0.0050631552, -0.0382683873, -0.0087811742, 0.0176983736, -0.00276962155, 0.0162020978, 0.00539943948, -0.0114412196, 0.0409586616, -0.0180006512, -0.0162474383, -0.0324344225, -0.0252855495, 0.00117132696, -0.0028603049, -0.000681069971, -0.00100601872, -0.00844866876, -0.00420544157, 0.0016681964, -0.0405959263, 0.00931016076, 0.0110407015, 0.00535031967, -0.0207362659, -0.00524452236, -0.0155975418, -0.0105721708, 0.0122120287, 0.00779121369, -0.00958976708, 0.0203433055, -0.0174112096, -0.0118492953, -0.00569038233, 0.0004711285, -0.00414498616, 0.00332316803, 0.0161567554, -0.0175623484, 0.0154464021, -0.0153557193, 0.0197387487, 0.0175623484, -0.00573194539, 0.0118115107, -0.0150534408, -0.0247565638, 0.0031474689, -0.0259807892, 0.010738424, 0.00551657239, -0.0191946495, 0.00282063102, -0.0102169942, -0.0183331575, -0.00155389751, -0.0182727017, 0.0148871886, -0.00870560482, -0.0217640121, -0.00623070402, 0.00878873095, -0.00502914935, -0.0296836924, -0.0165799446, 0.0143808732, 0.00365000614, -0.0208722912, 0.007250892, 0.017199615, -0.00271294452, 0.00816150382, 0.00733779697, 0.0168368816, 0.0292000491, 0.00726978434, -0.00110048056, -0.00292076054, 0.0152045805, 0.0187412314, -0.035034012, 0.021099, 0.00385782216, -0.00475709885, -0.0152045805, 0.0028300772, -0.00932527427, -0.0123858387, 0.0282176454, 0.0233509708, -0.00353287347, 0.00535787642, 0.0195120405, 0.0189981684, 0.0182878152, -0.000311960262, 0.00701284828, 0.0214617327, -0.0120079909, 0.00582640711, 0.00993738696, 0.0147587201, -0.00907589495, 0.00798013713, -0.00223496743, 0.0146226948, -0.0184691828, -0.00282063102, -0.0363640338, 0.0106175123, 0.00739069562, 0.0132775586, 0.0090834517, 0.00213105953, -0.02389507, -0.00891719945, 0.0222174283, -0.00114015455, -0.00924970489, 0.00141598319, 0.00488556735, -0.0345503688, -0.0207664948, -0.0301975664, -0.00353476265, 0.0132624442, 0.00961243827, 0.00457573216, 0.0201921668, 0.00583396433, 0.00473442813, -0.0148116192, -0.00684659509, 0.0365756303, 0.0448278189, 0.0311346278, 0.0129752802, 0.0260714721, -0.00552790798, -0.0363338068, -0.000121029254, -0.0106779682, 0.0101036401, -0.00881895889, -0.00611735, -0.00231809402, -0.0090834517, -0.0092270337, 0.0155521994, -0.00322303851, 0.00603800174, 0.00861492101, -0.000361552753, 0.000921003113, -0.0239101853, -0.00811616238, -0.0114714475, -0.00881140213, -0.0284745824, 0.00944618508, -0.00183444924, 0.0198294334, -0.0138896713, 0.024696108, 0.0184994098, 0.0286710616, 0.00964266621, 0.000352342729, 0.00853935163, 0.00270538754, -0.00888697151, 0.00754561275, -0.0451603234, 0.0109575754, 0.0256029405, 0.0233358573, 0.00401273975, -0.0086375922, -0.0012686227, 0.032706473, 0.0360617563, 0.000527569442, 0.00580373639, -0.00305678556, 0.00581885036, -0.000908723043, 0.0096275527, -0.0193911288, 0.0170938168, -0.00291320356, 0.00641584909, 0.0184842963, -0.0120457755, 0.0166706275, -0.00286408351, 0.00972579233, 0.00799525157, 0.0191946495, 0.0260412451, -0.0119626494, -0.0170938168, 0.0124538513, -0.0174414366, 0.0410493426, 0.0121213449, -0.00420922041, -0.0021726226, 0.020328192, 0.0181669034, -0.00230864785, -0.0260412451, -0.00219718274, 0.0132700009, 0.033311028, 0.0239857547, 0.0011240961, -0.00853935163, -0.000137442, 0.0386008918, -0.00265815668, -0.00421677716, 0.0227464139, 0.0041034231, -0.00975602, 0.0218849219, -0.0149400868, 0.0123253828, -0.0130432928, 0.00304356101, -0.0208571777, 0.00673324103, -0.00727356272, 0.00374068948, 0.0202375073, -0.033311028, -0.0345805958, -0.00961243827, 0.0153254913, -0.0146151381, -0.016625287, -0.0479412824, 0.0112976376, -0.0133304568, 0.0208874047, 0.0194364712, -0.030439388, 0.00575083774, -0.00442837179, 0.0436187051, -0.00229542307, 0.00806326419, -0.00983159, -0.0120155476, 0.00809349213, 0.0193911288, 0.00708086044, 0.00757961906, 0.0168671086, 0.00308512407, -0.0209176335, -0.0238195, 0.0204944443, 8.0942e-05, -0.0166857429, 0.0273863804, 0.0220360607, -0.0473367237, 0.0283083282, 0.0103001203, -0.0191341937, -0.00913635083, -0.0210083164, 0.00193457876, -0.00582262874, 0.00114393304, 0.0221418589, -0.00640073512, -0.0232602879, 0.00400896091, -0.0226103887, 0.0225801617, -0.00359899667, -0.00788945425, -0.0363035798, 0.000846378214, -0.0158393644, 0.00158318074, -0.0127863567, -0.000486478559, -0.00150572194, -0.0193760153, -0.0190586243, -0.0331598893, -0.0243333746, -0.0203886461, 0.00470797904, 0.0157486796, -0.0049649151, 0.0101263104, -0.00376524962, 0.00393339153, 0.0170333609, -0.0116981557, -0.0188621432, -0.0122498134, -0.00782899838, 0.0146755939, 0.0101489816, -0.00859225076, -0.0151290111, 0.00145471259, -0.0114109917, -0.0314671323, 0.00874338951, -0.00863003545, 0.00137536461, 0.0131717613, 0.0011599916, -0.0142750759, 0.011917308, -0.025013499, -0.0346410498, -0.0128694829, -0.00398629, 0.00890964177, 0.0181517899, -0.00330994348, 0.0185749792, 0.0120760035, 0.0122422567, 0.0137158614, 0.0143279741, 0.00455684, 0.0209932029, 0.000512927887, 0.00898521207, 0.00015479936, -0.0493015312, -0.00082748587, 0.001485885, 0.0267969389, 0.016050959, -0.0290186815, 0.0168973375, 0.0168822221, 0.0180308782, 0.031013716, 0.0303789321, 0.00505559845, 0.00901543908, 0.0167310834, -0.00364622753, 0.0136251776, 0.00845622551, 0.00942351483, 0.000774587214, 0.010511715, -0.00249946071, -0.00837309845, 0.010625069, -0.000483408541, -0.0176228043, 0.0214315057, 0.00350075634, 0.00567149, 0.000228479606, -0.0353362896, 0.0139501272, -0.0172600709, 0.0157033391, -0.0277793426, 0.00397873344, 0.0419259481, 0.0175018925, -0.0240915511, 0.00734913209, 0.0188016873, -0.0116377007, 0.0222929977, -0.0164288059, 0.0041638785, -0.0374522358, 0.0166101716, 0.00128657045, -0.00915146433, -0.0219604913, -0.00226708455, 0.0185749792, -0.000177824448, 0.0202223938, 0.0114412196, 0.0362431258, -0.0210385434, 0.0246507656, 0.012922382, -0.0204188749, 0.0135118235, -0.0412004814, 0.0252402071, -0.00343463314, -0.0156731103, 0.00653298199, -0.0242426898, -0.00634783646, 0.0061626914, 0.00781388488, -0.0133984694, -0.0143128606, -0.0145244552, 0.00436035916, -0.0288524292, -0.00268271659, -0.00313235517, 0.0155824274, 0.0162927806, 0.0095519824, -0.0032967187, 0.00668412074, 0.00750782806, 0.00487801, -0.00334017118, 0.00521807279, 0.0114336628, -0.000578578853, -0.0163230076, 0.00186845544, -0.00637428602, 0.0140634812, 0.00110803754, -0.0171391591, -0.00176927052, 0.00579617964, 0.0053616548, -0.0314369053, -0.000770336424, -0.00443970738, 0.0207967218, 0.00499892142, -0.00166536251, -0.00927993283, 0.00511605386, 0.00439814385, -0.00280362787, -0.0382381603, 0.0123933954, -0.018061107, 0.00538432552, 0.0153935039, -0.0109802457, 0.0167461969, -0.0101338681, -0.0094990842, 0.000290470198, 0.00180233223, 0.010594842, 0.0191493072, 0.0233660843, 0.0552564077, 0.0103908041, 0.0108139934, 0.00636295043, 0.0103227915, 0.0096275527, 0.0102396654, 0.0139954686, 0.00942351483, 0.0045606182, 0.0109802457, 0.00711108837, 0.0124085089, -0.0127636855, -0.00216695503, 0.00854690839, -0.0236683618, -0.0441325791, 0.000565354188, 0.0017437659, 0.00784411281, -0.00618914096, 0.0118266242, 0.024152007, 0.0126730027, 0.00979380496, -0.0369383655, -0.00460596, -0.000745304045, 0.0201619379, -0.00561481249, -0.00193835725, -0.0152877066, 0.00218962575, 0.00897765439, 0.0169275645, 0.0142297335, 0.0162020978, -0.0218546949, -0.0137763172, 0.00530497776, -0.007322683, 0.00466263713, 0.0189679414, -0.00327026937, 0.00676724734, 0.00723577803, -0.00965022296, -0.00834287144, -0.0232905149, -0.00617780536, 0.00400140416, -0.00312479818, 0.0263132937, 0.0215524174, -0.00429612538, 0.0138216587, -0.0183633845, 0.00256558391, -0.000291414821, 0.00804059301, 0.0060795648, 0.0121289026, -0.00590197649, -0.0155370859, -0.0101263104, -0.0107157528, -0.020358419, 0.0305905268, 0.00580373639, 0.025270436, 0.00823707413, -0.0103983609, -0.0181215629, 0.0131717613, -0.0240159817, -0.000779782597, 0.0024597866, -0.00887941476, -0.0281269625, 0.00452283351, -0.0021726226, 0.0197689775, 0.00243522669, -0.0204339884, 0.00448504882, 0.0184691828, -0.00335339596, 0.0178797394, 0.0280211642, 0.0293360744, 0.00318714301, 0.00688438, -0.0132473307, 0.00223496743, -0.0099827284, -0.0218698084, -0.00309268106, -0.00176265824, 0.0345503688, 0.0192853324, -0.00490823807, 0.0363942645, -0.0203433055, 0.0163532365, 0.00186278776, -0.00903811, -0.0187412314, -0.0211443417, -0.0063516153, -0.0061626914, -0.00287164049, -0.00364433834, -0.00103530195, -0.00615513464, -0.000405713654, -0.0135420514, 0.00508204801, -0.0065216464, -0.0105646141, -0.0105872843, 0.00294909906, 0.0225801617, -0.0262226108, 0.00708463928, 0.0101716528, -0.0320716873, -0.00375769264, -0.00208571786, -0.00151800201, -0.0109953601, 0.0118644089, 0.0140332533, -0.000607389724, -0.016912451, 0.00272239069, 0.0128090279, -0.0125974333, 0.00714131631, 0.0292000491, -0.0042470051, 0.00975602, -0.00159262691, -0.00313613354, 0.0125747621, 0.00867537688, -0.00368590164, -0.0217488967, -0.02389507, -0.0132700009, -0.0155370859, 0.00825218763, -0.00852423813, -0.00154539593, -0.0151290111, -0.00637050765, 0.00553924311, -0.00133663521, 0.00456439704, -0.0237590466, 4.31867811e-05, -0.00870560482, -0.00350075634, -0.0222325418, -0.00812371913, 0.0132171027, 0.0228522122, -0.00881140213, -0.0083655417, 0.00496113673, 0.00992983, -0.00259014405, -0.00228975527, -0.00709219603, 0.01493253, 0.0163532365, -0.00794235244, -0.00441703619, 0.00774587225, -0.0051916237, -0.00317013985, 0.000275120139, -0.000762779498, 0.000264493196, -0.000504426309, 0.0154464021, 0.00306434254, -0.0114185493, 0.00529364217, -0.00306812115, 0.00521807279, 0.0191795342, 0.0072962339, -0.00504048448, -0.010481487, 0.00305867498, -0.00727734109, 0.00064517447, -0.0125445342, 0.0146755939, -0.0156126553, 2.25380081e-05, -0.00639695674, -0.00563370483, 0.00677480409, -0.00687304465, -0.0117132701, -0.0205549, -0.00824463088, 0.0143808732, -0.033341255, 0.0114487773, 0.0106023988, 0.011025588, 0.0094990842, 0.0191946495, -0.00458328938, -0.0266004577, 0.0170182474, -0.00234265393, 0.00946885627, 0.0117963962, 0.00149155268, 0.00989960227, 0.0167764258, -0.00797258, 0.00455306144, -0.0204339884, -0.015506858, -0.0117208268, -0.0220965166, 0.00320036756, 0.0354874283, -0.000795368804, -0.00395984109, -0.00976357702, 0.0135042667, -0.00236532488, -0.0155370859, -0.0106930817, 0.00505937682, 0.006963728, -0.0231998321, 0.0125520909, -0.00498380745, 0.00278095691, 0.0282176454, 0.000679653, -0.0226103887, -1.04793617e-05, 0.0168519951, -0.0208874047, 0.0155219724, -0.00702040503, 0.00704685459, 0.0246356521, 0.00487801, -0.00912123639, 0.00146604795, 0.00816150382, 0.00116565928, 0.0202072803, 0.00510849711, -0.0240159817, 0.0240159817, -0.015824249, 0.000117132702, 0.0226557311, -0.0252250936, 0.0138216587, -0.00596621074, 0.00380303431, 0.0210385434, 0.0170938168, -0.0141995065, 0.0054334458, -0.0037992557, -0.00300766551, -0.00291887135, 0.0150685553, -0.00841844082, -0.00550145842, 0.0041638785, -0.016338123, 0.00429612538, -0.000627699, -0.0136931902, 0.00921192, -0.0154539598, -0.0100431843, 0.0236230213, -0.00114487763, -0.0220662896, 0.00452283351, 0.0274317227, 0.00569038233, -0.0248472467, -0.00420166319, 0.0156882256, -0.00649897568, -0.0167915393, 0.000736802467, 0.00737180328, 0.00782899838, -0.0142524047, -0.00366511988, 0.0207513794, 6.68317589e-05, 0.00248056836, 0.0323135108, -0.000197779504, -0.0120760035, -0.000548823387, -0.0039485055, 0.013783874, 0.013209546, -0.00485156104, -0.0201468244, -0.0206758101, -0.00731890462, 0.00759473303, -0.00906078145, -0.00757584069, -0.0122347, -0.0143053029, -0.0141314939, -0.00523318676, 0.00661610812, 0.0154312886, 0.0279304814, -0.0226557311, 0.00891719945, -0.0236834772, 0.016655514, -0.0274166092, 0.0187412314, -0.00571683142, 0.00786678307, -0.0188319162, 0.00145943568, 0.0376033746, 0.00678613968, 0.00633272296, -0.0136025073, 0.0161265284, -0.00596998911, -0.00570927467, 0.00553168636, -0.0152348075, 0.0112825241, -0.00567904674, 0.00172770733, -0.00246734358, -0.000667373, 0.00107686513, -0.00647630496, 0.0204339884, 0.00815394707, -0.0230940338, -0.00563748367, -0.00412231544, 0.00223685661, -0.0196782928, -0.000702323916, -0.0054787877, 0.0117586115, -0.0226406176, -0.00324570923, 0.0101565383, 0.0144186579, 0.0135722794, 0.0183936115, -0.00791968219, -0.00333072501, 0.00880384445, 0.00777609972, 0.00133569061, 0.0311346278, 0.00631005177, 0.00201959442, 0.00115526852, -0.0250588413, -0.0105646141, -0.00771186594, 0.00462107407, 0.0235021096, 0.0127636855, -0.000328018796, 0.00414876454, 0.0279304814, -0.01260499, 0.00530875614, -0.00687304465, -0.0129072675, -0.0125369774, 0.00706196809, 0.0188923702, -0.0165043753, -0.0144488849, -0.0105419429, 0.00505559845, -0.0021046102, 0.00318525382, 0.0137612028, 0.00185334159, 0.00831264351, 0.0189981684, 0.00631383061, -0.00134797068, 0.0125067495, 0.0154539598, 0.0179250818, 0.00838821288, 0.00732646137, 0.0164288059, -0.0284745824, 0.0111087142, 0.0179099683, 0.0048326687, -0.00521429442, 0.000760890252, 0.00957465358, -0.00488178851, -0.00779877091, 0.016942678, -0.00254480238, 0.000140630087, 0.012091117, -0.0156882256, -0.015506858, -0.00279984949, -0.00236910325, 0.0268120524, -0.00702040503, -0.0100734122, -0.0183029287, 0.0138292154, -0.000536543317, -0.0280967336, -0.00792723894, 0.0190586243, 0.00434902357, 0.0236683618, 0.0219000373, 0.00529742101, 0.0241368935, 0.0140634812, 0.0142826326, 0.0126881162, -0.00445859972, -5.18359411e-05, 0.01045126, -9.9539182e-05, 0.0222476553, -0.0364547186, 0.00167008559, -0.0336435325, 0.00660099462, -0.00413742941, 0.0197689775, -0.0201921668, -0.0119097503, 0.00772320107, -0.0165648311, -0.0056223697, -0.0103605762, 0.000577161962, -0.00938573, -0.00164174708, -0.000446332269, -0.00808593445, 0.0157335661, 0.00118455163, 0.0117057133, -0.0137460893, -0.0249228161, -0.00329105114, -0.0109349042, 0.0193004459, 0.012461408, -0.0121137882, 0.000515761727, 0.00389938545, 0.00195347122, -0.0114487773, -0.00975602, -0.0220511761, -0.00977869146, -0.0176228043, 0.0133153433, -0.0102169942, 1.64865451e-05, 0.00823707413, 0.0203886461, -0.0255273711, 0.0127712432, 0.00589441974, -0.0382381603, -0.00838821288, 0.00405808119, -0.027885139, 0.0120004341, 0.00912879407, 0.00742848031, 0.00601910939, -0.0214315057, 0.00205171155, 0.00120061019, -0.0129072675, -0.0135949505, 7.88756515e-05, 0.0175018925, -0.020615356, -0.0179553088, 0.0193760153, 0.00181650149, -0.0122951549, 0.027597975, 0.0170182474, 0.00267515983, 0.00981647614, 0.000814261206, 0.0154237319, -0.00528608542, -0.0226859599, -0.00887185708, 0.000377611257, 0.00971067883, -0.00258447626, 0.0124311801, -0.0274921786, -0.0260563586, 0.0173054114, 0.00658210227, -0.000463807693, 0.0131566469, -0.0130961919, 0.02090252, 0.00429990375, 0.00543722417, -0.0171240456, 0.0188319162, 0.00708841765, 0.000152083579, -0.0157486796, 0.0121289026, 0.00104852661, -0.00102207728, 0.0128997108, -0.00976357702, -0.00637050765, 0.0212954804, 0.0165346023, 0.0121213449, 0.0273712669, 0.00876606, 0.00516139576, -0.0135193802, -0.00510094035, -0.0184842963, 0.0193457883, 0.001525559, -0.0276735444, 0.00287730806, 0.0283083282, -0.00252213143, 0.011917308, 0.000479866227, -0.034459684, -0.00258825487, 0.00953686889, -0.00603422336, -0.000839765882, -0.0083202, -0.0048326687, 0.0072962339, -9.67643646e-05, -0.0334621668, 0.000882273715, 0.00211972394, -0.00851668, -0.0260714721, -0.0282629877, -0.0157335661, 0.0144337714, -0.00715643028, 0.0280513931, -0.0155673139, 0.00614379905, -0.0195422694, 0.0296988077, 0.0148796318, 0.0066652284, 0.0151743526, 0.00313424435, 0.0035838827, -0.0114336628, 0.0150383273, 0.0115848016, 0.00660099462, -0.00324570923, 0.033824902, 0.00418654922, 0.0220058337, -0.00980136171, 0.00185428618, -0.00259203324, -0.00532764848, -0.00607578643, -0.0149703147, -0.00494980114, -0.00207816088, -0.0133304568, 0.0188470297, -0.0285803787, -0.0150080994, 0.000883218367, -0.0050027, 0.00909100845, 0.0163078941, -0.00457951054, -0.0028962004, 0.0141239362, 0.0181820169, 0.00311913039, 0.0180157647, -0.00758339791, 0.00567149, 0.00755694835, -0.019753864, 0.0203886461, 0.0117661683, 0.012922382, -0.017517006, 0.0154388454, -0.0116074728, -0.00275450759, -0.000272522448, -0.00545989536, 0.0319810063, -0.0099676149, -0.0028300772, -0.00807082094, 0.00831264351, 0.011917308, -0.00177115982, -0.0129450522, 0.00409964472, 0.0123631675, 0.00770808756, -0.0225801617, -0.00733023975, -0.0159149338, -0.00273372605, -0.0288222, 0.00564504042, 0.0249983855, 0.0184087269, -0.00872827508, 0.000552601879, -0.0233963113, 0.0133682415, 0.0223383401, -0.00263548573, -0.00433768844, 0.000704213104, -0.00110992684, 0.00434524519, -0.000537015672, -5.53782629e-05, -0.00214806269, -0.00347808539, -0.00621936843, -0.000341479608, 0.00750027131, -0.0137460893, 0.00201014825, -0.0141843921, 0.00563370483, -0.00843355432, 0.00387293613, 0.0296383519, 0.00562992645, -0.0239101853, -2.29365196e-05, -0.0106477402, -0.00309834885, -0.00527097145, 0.0215977579, -0.00313424435, -0.00691082934, -0.00646496937, 0.00752672041, 0.0147058219, 0.0106175123, 0.00817661826, 0.00992983, -0.00661232974, 0.0126201035, -0.001342303, -0.018348271, 0.0106930817, 0.00170125801, 0.00678236131, -0.0100280708, -0.00236721407, 0.0130810775, 0.00628360268, 0.0112900808, 0.023320742, -0.00839577, -0.00730379065, -0.0246507656, -0.00869049, -0.00483644707, 0.020615356, -0.00850156695, -0.0179553088, 0.00784411281, 0.00493468717, 0.00634027971, -0.00546745211, 0.00859980751, 0.00580373639, -0.00705441134, -0.00437547313, 0.00466263713, -0.0121515729, 0.033885356, -0.00632516574, -0.00241255574, 0.0052898638, -0.0177437142, 0.0207967218, 0.0234416537, -0.00876606, -0.00157845765, -0.00624581799, 0.0216279868, -0.00978624821, 0.0188470297, 0.0240613241, -0.00500647817, 0.00510471873, 0.027310811, -0.00515006, 0.00783655513, -0.000411381392, -0.0161718689, -0.0245298538, 0.00773075828, -0.00345163629, 0.0213710498, 0.020101482, -0.0225045923, 0.00686926628, 0.00203092978, -0.00213861628, 0.0129299387, 0.00589064136, -0.00925726164, -0.00208382844, -0.00316636148, 0.00438680872, -0.00663500046, -0.00303789321, 0.00120627787, 0.00710353162, 0.0114261061, 0.00441325782, 0.00914390758, 0.00150572194, 0.033915583, 0.0109802457, -0.00225574919, 0.00531253451, 0.0245147403, 0.00682014599, 0.012635218, 0.0301371105, -0.00252024224, 0.000193764878, -0.0018457846, 0.0329180658, 0.011773726, 0.0244845133, 0.0130508495, 0.00334017118, 0.00264682109, 0.0108668916, -0.0112900808, -0.00788945425, -0.00971067883, 0.00799525157, -0.0212954804, -0.00193646806, 0.0298499465, -0.00778365694, -0.0241973493, 0.0122498134, -0.010307678, -0.0042470051, 0.00562992645, 0.00900788233, 0.00440947944, -0.00776854297, 0.010798879, 0.031013716, -0.00823707413, 0.0189377125, -0.0102850068, 0.00943862833, -0.0291395932, -0.000955009367, -0.00112976378, -0.0113203088, -0.00943862833, 0.00945374276, -0.00806326419, 0.00530119939, 0.00411098, -0.0055770278, 0.007466265, -0.0266458, -0.0122573702, 0.0188923702, 0.00856202282, 0.0133455712, -0.00156995608, -0.00999784283, 0.00726222759, -0.0107233096, 0.0146529227, 0.0300010853, -0.0197085217, -0.00182028, 0.00532009173, 0.00267893821, 0.00997517165, 0.0171240456, 0.0125218639, -0.00240688818, -0.00753049925, -0.00974090677, 0.00164458086, -0.016081186, 0.0222325418, 0.0125520909, -0.0120004341, -0.0172449555, 0.00156239909, 0.000788756472, -0.00893987, -0.00221229671, -0.00429990375, 0.00247678976, -0.024439171, 0.00543722417, 0.0048477822, 0.00041586833, -0.00332694664, -0.0103908041, -0.00621936843, 0.00599643867, 0.0131037487, 0.00847133901, -0.0225348193, 0.024152007, 0.00412231544, 0.000467113859, 0.00356121198, 0.0139501272, -0.0111162709, 0.0266609136, -0.0279002544, 0.00620425446, 0.0139879119, -0.00686926628, -0.00817661826, 0.0137234181, -0.0323739685, 0.00950664096, -0.0102850068, -0.0112976376, 0.00679747527, 0.0225952752, 0.00214995188, -0.00900032558, 0.0103530195, 0.00146604795, 0.0108593348, -0.00353098405, 0.0095519824, -0.0193306748, -0.00953686889, -0.00371990795, 0.00378792034, 0.00603422336, 0.00488934573, -0.00418277085, 0.0175623484, -0.018061107, 0.00835042819, -0.0104285888, -0.00293398532, -0.0031172412, -0.0704307556, -0.00511605386, -0.00623070402, 0.0014839957, 0.0056488188, -0.0104059177, 0.00917413551, -0.00807837769, 0.01134298, 0.011456334, -0.00971823558, -0.0137158614, -0.000439719937, 0.0231393762, -0.0142901894, -0.0135193802, -0.00556947105, 0.00262981793, -0.0277642291, 0.00450394116, -0.0204793308, 0.00290375738, 0.00277528935, -0.00661232974, -0.00395984109, 0.00636672881, 0.00197236356, 0.00952931214, -0.0286257211, -0.00538432552, 0.00918169226, -0.00624581799, -0.0113051943, 0.000298027153, -0.0137083046, -0.00767785963, 0.0184238404, -0.000556380313, -0.0147511633, -0.0276735444, -0.00214239489, 0.0165194888, -0.00710353162, -0.0269178506, 0.00281118485, -0.00669923471, -0.0112069547, -0.00462485244, -0.0145244552, 0.00510094035, -0.000953120121, 0.00606067246, -0.00559969898, 0.00923459139, 0.024439171, -0.000640451384, -0.0202072803, -0.0028300772, 0.00176832592, 0.0147587201, 0.000787811878, 0.0135269379, -0.000426731422, 0.00806326419, 0.010307678, 0.00103719113, -0.00729245506, 0.00522940839, 0.0172902979, 0.0391449928, -0.0108442213, -0.0168822221, 0.00329105114, 0.0116981557, -0.0111842835, 0.00482889, 0.0116981557, 0.00318525382, -0.0329482965, 0.0240915511, 0.00956709683, -0.00066312222, 0.00713753793, -0.00992983, 0.0195120405, -0.001884514, -0.0151667958, 0.00447371323, 0.00426211907, -0.0107610943, 0.0179704241, -0.0130886342, -0.00923459139, 0.0109953601, 0.000207934165, 0.0183180422, -0.0190283954, -0.0150987832, 0.0203130767, 0.00107969902, -0.00877361745, -0.00283763418, 0.00407697354, -0.0108366637, 0.027597975, -0.0304242745, 0.0111011574, -0.0345201418, 0.0104210321, 0.0109575754, 0.0276735444, 0.00291131437, 0.00255802693, 0.0041034231, 0.0308474638, -0.0020649361, 0.00872827508, 0.0118568521, -0.011055816, -0.0120533323, -0.00655187434, -0.0212501381, 0.00976357702, -0.0305754133, 0.016625287, 0.00269783055, 0.00832775701, -0.00338173448, 0.00457951054, -0.0228522122, 0.00454172585, -0.00164363626, -0.00231431541, -0.00589819811, 0.0143355308, 0.00107969902, -0.0150383273, -0.0162474383, -0.00630249502, 0.019527154, 0.0215524174, 0.00218584738, 0.025013499, 0.0228370987, -0.015763795, -0.0139198992, -0.0110104736, 0.0119928773, -0.0143430885, -0.020615356, 0.00276962155, -0.0217186697, 0.0130206225, 0.00462863082, -0.00724711362, -0.0175774619, 0.00651408965, -0.0156882256, 0.00474198535, 0.000372888171, 0.0165799446, 0.00496869348, 0.0204037614, 0.0056941607, -0.00217640121, 0.0183180422, 0.0100734122, 0.0294267572, -0.000260714733, -0.00755694835, 0.000705157756, 0.0162020978, 0.00578106567, 0.00600399543, 0.00853179488, -0.0292302761, -0.00143298635, 0.00235021091, 0.0279002544, 0.00773453666, 0.016625287, 0.016912451, 0.0167310834, 0.00604178, -0.0147965048, -0.0269631911, 0.020071255, -0.00731512625, 0.01780417, -0.000337228819, 0.0165043753, 0.00365756312, -0.00808593445, -0.0220814031, -0.0251646377, -0.00519918045, -0.0165950581, -0.00833531376, 0.00510471873, 0.00434902357, 0.00553168636, -0.0155824274, 0.00931016076, -0.001525559, -0.0137536461, 0.00812371913, 0.0233963113, 0.00887941476, -0.0480319634, -0.012091117, 0.00435658079, 0.000443734578, -0.00346108247, 0.0122195855, 0.0266609136, 0.010050741, -0.0217488967, 0.00610601436, -0.002469233, 0.0165497176, 0.00782144163, 0.00866782, 0.0097711347, -0.0150005426, 0.00295854523, 0.00128751504, 0.00487045338, 0.00747760059, -0.0290791374, -0.00680125365, -0.0151743526, 0.000983347883, -0.00283385557, 0.00727356272, -0.015506858, 0.00691838609, 0.00211405638, 0.0129299387, -0.00744359428, 0.00692594331, -0.00442081504, 0.00527852867, -0.00459840288, 0.00835798495, 0.00823707413, 0.0229428951, 0.000997517142, 0.00302089, -0.0149098588, -0.0147209354, -0.00581507199, -0.00386915752, -0.00706196809, 0.00639317837, 0.016912451, 0.0085091237, -0.0108064367, 0.003697237, -0.00481377635, 0.0159149338, 0.00227464153, 0.00196291739, 0.00891719945, -0.0102018807, -0.00949152745, -0.000950286281, 0.00376147102, -0.0125218639, -0.0212803669, -0.00208949624, 0.0101414248, -0.00916657876, -0.00896254089, -0.0164741483, 0.0144488849, -0.00640451396, 0.00699017709, 0.0241217799, -0.00611735, -0.0251192972, 0.0218546949, -0.0185447522, -0.0108442213, 0.0109273475, 0.00599643867, 0.00763629656, 0.00294720987, -0.0222023148, -0.0150534408, 0.000318572595, 0.00362166762, -0.0205397867, -0.00594354, 0.00384270819, -0.0260412451, -0.0134060262, -0.00985426083, -0.00103341264, -0.00341385137, 0.0111842835, 0.0175018925, -0.0305754133, -0.000349036563, -0.0034761962, -0.000188687554, -0.034973558, 0.0162927806, -0.0059359828, 0.00211594556, -0.011516789, -0.0182424728, 0.000353287323, -0.0175623484, 0.00398629, -0.00795746688, 0.00077505951, 0.00227464153, -0.00906078145, 0.00191379723, 0.0204793308, -0.016050959, -0.0113505367, 0.00463996641, 0.00809349213, 0.0111540556, 0.014071038, 8.37168191e-05, -0.0150458841, -0.0249379296, -0.000698545424, 0.00425834, -0.000805287331, -0.00476843445, 0.00183161534, -0.00184295082, 0.00399762578, -0.032132145, -0.0189074855, 0.00729245506, 0.00338362367, -0.00577350846, 0.00429612538, -0.00213483791, -0.0164741483, 0.0141088227, -0.0195876099, -0.018952826, 0.00717532262, 0.0195422694, -0.0138821146, -0.000176525587, -0.0169275645, 0.00531253451, 0.0206758101, -0.020615356, 0.0137612028, -0.00212728092, -0.0264644325, 0.0153179346, -0.0106326267, -0.00279229251, 0.00641584909, -0.0107006393, -0.031618271, -0.00164363626, 0.00187412323, 0.019814318, 0.0297592636, -0.0038049235, 0.00446615648, 0.0104210321, -0.00446993485, 0.00193457876, 0.0706121251, 0.0159300473, 0.00744737266, -0.020101482, -0.00891719945, 0.00819173176, -0.00392583478, 0.0402936488, -0.0154388454, 0.0298197176, 0.000398629025, 0.00388804986, -0.00183255994, 0.0129752802, -0.000260006258, 0.00428101141, 0.0120533323, -0.0286106057, 0.000288344803, -0.0208571777, -0.00164741476, -0.00302844704, 0.015763795, -0.0294418707, 0.0148040615, 0.00352342729, -0.0205700137, -0.0137158614, -0.0127410153, -0.0031833644, -0.00807082094, 0.0261017, 0.00419788482, -0.0108895628, 0.00406563841, -0.00719043659, 0.00686926628, 0.00148871879, 0.0124538513, 0.00841844082, 0.0154766301, 0.0265248884, 0.00972579233, -0.00433391, 0.0025731409, -0.00560347736, -0.0277188867, -0.0309381466, -0.000315974903, -0.0125823189, 0.00192702189, -0.0110104736, -0.0187261179, -0.00274884, 0.00774587225, 0.00169936882, 0.0263737496, 0.00770430872, -0.00243900507, 0.0103908041, 0.001414094, 0.0203886461, -0.00397117622, -0.00639317837, 0.0051916237, -0.00559214177, -0.0145395687, 0.0124236234, 0.00292264973, 0.00267704902, 0.0332203433, -0.00974090677, -0.0162927806, -0.016625287, -0.0036670093, 0.0237741601, -0.0108139934, 0.0213559363, 0.00411853706, -0.00856958, -0.0235474519, -0.00385593297, -0.0011599916, -0.00968045089, -0.0163834635, -0.0111389421, -0.0141012659, 0.00921947695, -0.0202526208, 0.0261772685, -0.00468530785, 0.0265853442, -0.0149627579, -0.00180044293, 0.0149476435, 0.007322683, -0.00752294203, -0.00961243827, -0.0136931902, 0.000468766957, 0.00266004587, -0.0172449555, -0.0146831507, -0.0173054114, -0.0250890683, 0.0217942391, -0.00107308663, 0.0176681448, 0.0102169942, 0.00747760059, 0.010481487, 0.0261772685, 0.0241671205, 0.0147965048, 0.00822196, 0.00376147102, -0.00715265144, 0.00734157534, 0.00965022296, 0.000756639463, 0.0163532365, 0.016912451, 0.00660099462, 0.0142901894, 0.0142750759, 1.99550668e-05, 0.0204944443, 0.010307678, 0.0104059177, -0.0108215502, 0.00608712202, -0.0136554055, 0.000235800399, -0.00844111107, 0.000529931, 0.0160056166, 0.00751916366, -0.00128845975, 0.0043187961, 0.0148569606, -0.0142901894, -0.0121666873, 0.00135836145, 0.00564126205, -0.0094839707, -0.00710731, -0.00655565271, -0.010625069, -0.00332883582, 0.0102321077, -0.0121591296, 0.0143279741, 0.0123707242, -0.0172147285, 0.013065964, 0.0135722794, -0.00400896091, -0.0191493072, -0.00042011909, -0.00249001454, -0.00991471671, -0.00290942518, 0.0112900808, 0.00814639, -0.00736424606, -7.74587243e-05, 0.016338123, -0.0440116674, 0.00862247776, 0.0205700137, 0.0155521994, 0.0392659046, 0.00111842831, 0.0137612028, -0.00238988502, 0.00149344187, -0.00123083801, -0.0184691828, 0.0167764258, -0.00676724734, 0.00247678976, -0.00899276882, -0.00529742101, 0.0602137633, 0.0134135839, 0.012491636, -0.00569038233, -0.020358419, 0.020101482, -0.01045126, -0.000690516143, 0.0139501272, 0.00676724734, -0.00226708455, -0.00572438864, -0.00536543317, -0.00296421302, -0.0137460893, 0.0141239362, 0.00530875614, 0.0256482828, 0.00874338951, 0.00254669157, -0.00850156695, -0.0133606847, 0.0252099801, -0.00541833183, 0.0103983609, -0.0148191759, 0.0230335779, 0.00454550423]
|
31 Jul, 2024
|
How to disable click outside modal to close modal in bootstrap ?
31 Jul, 2024
Bootstrap is a very powerful, extensible, and feature-packed fronted toolkit which is used to build fast and responsive websites.
Bootstrap 5 provides us with its powerful Modal component which can be used to create models within the website at an ease. In this article, we are going to see how we can disable the click outside of the bootstrap modal area to close the modal functionality.
Bootstrap 5 provides us with the static backdrop option to set the backdrop static and hence, it does not close the modal even if the user clicks outside the modal area.
Syntax: To set the backdrop to static, in the modal element set the “data-bs-backdrop” attribute to “static“.
<div class='modal' data-bs-backdrop='static' ...> ...</div>Approach: Simply, when you are using the modal and want to disable the “click outside modal area to close it” functionality, you just need to set the backdrop value (data-bs-backdrop attribute) of the modal element to “static” and you can disable that functionality.
Example 1: In this example, we have a simple “About us” modal and we have set its “data-bs-backdrop” attribute to “static” and have obtained the desired output.
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content=
"width=device-width, initial-scale=1" />
<title>
Disable click outside of bootstrap
modal area to close modal
</title>
<link href=
"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity=
"sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous" />
<script src=
"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
integrity=
"sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous">
</script>
</head>
<body>
<div class="container">
<h1 class="text-success">
GeeksforGeeks
</h1>
<h4>
Disable click outside of bootstrap
modal area to close modal
</h4>
<!-- Button trigger modal -->
<button type="button"
class="btn btn-success"
data-bs-toggle="modal"
data-bs-target="#aboutUs">
Click to know more about us
</button>
<!-- Modal -->
<div class="modal fade" id="aboutUs"
data-bs-backdrop="static"
data-bs-keyboard="false"
tabindex="-1"
aria-labelledby="aboutUsLabel"
aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5"
id="aboutUsLabel">
GFG | About Us
</h1>
<button type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close">
</button>
</div>
<div class="modal-body">
GeeksforGeeks is a computer science
portal for geeks and a home to
millions of programmers. <br>
<h5 class="mt-3">What we offer</h5>
Free Tutorials, Millions of Articles,
Live, Online and Classroom Courses,
Frequent Coding Competitions, Webinars
by Industry Experts, Internship
opportunities and Job Opportunities.
</div>
<div class="modal-footer">
<button type="button"
class="btn btn-secondary"
data-bs-dismiss="modal">
Close
</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
Output:
Example 2: In this example, we have a multi-step feedback form embedded in our modal and we have set its backdrop to static and the output is obtained.
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content=
"width=device-width, initial-scale=1" />
<title>
Disable click outside of bootstrap
modal area to close modal
</title>
<link href=
"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
rel="stylesheet" integrity=
"sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous" />
<script src=
"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
integrity=
"sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous">
</script>
</head>
<body>
<div class="container">
<h1 class="text-success">
GeeksforGeeks
</h1>
<h4>
Disable click outside of bootstrap
modal area to close modal
</h4>
<!-- Button trigger modal -->
<button type="button"
class="btn btn-outline-success"
data-bs-toggle="modal"
data-bs-target="#feedback">
Give Feedback
</button>
<div class="modal fade" id="feedback"
data-bs-backdrop="static"
aria-hidden="true"
aria-labelledby="feedbackLabel"
tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5"
id="feedbackLabel">
Feedback (1/2)</h1>
<button type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close">
</button>
</div>
<div class="modal-body">
<form>
<div class="mb-3">
<label for="name"
class="col-form-label">
Name:
</label>
<input type="text"
class="form-control"
id="text">
</div>
<div class="mb-3">
<label for="email"
class="col-form-label">
Email:
</label>
<input type="email"
class="form-control"
id="email">
</div>
</form>
</div>
<div class="modal-footer">
<button class="btn btn-success"
data-bs-target="#feedback2"
data-bs-toggle="modal">
Next
</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="feedback2"
data-bs-backdrop="static"
aria-hidden="true"
aria-labelledby="feedbackLabel2"
tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title fs-5"
id="feedbackLabel2">
Feedback (2/2)
</h5>
<button type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close">
</button>
</div>
<div class="modal-body">
<div class="mb-3">
<label for="feedback-box"
class="col-form-label">
Feedback:
</label>
<textarea class="form-control"
id="feedback-box">
</textarea>
</div>
</div>
<div class="modal-footer">
<button class="btn btn-outline-success"
data-bs-target="#feedback"
data-bs-toggle="modal">
Previous
</button>
<button class="btn btn-success"
data-bs-dismiss="modal">
Success
</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
Output:
Reference: https://getbootstrap.com/docs/5.2/components/modal/
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?
|
https://www.geeksforgeeks.org/how-to-disable-click-outside-modal-to-close-modal-in-bootstrap?ref=asr3
|
CSS
|
How to disable click outside modal to close modal in bootstrap ?
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.016841298, -0.0456985049, -0.00914785638, 0.0294145048, 0.0466499887, -0.00618125964, -0.00846142694, 0.012335334, -0.00643612165, -0.0106158629, -0.0300941374, 0.0104799364, 0.00501908781, -0.0825889707, -0.01347032, -0.0250784475, -0.0416478924, -0.0024534741, 0.00253503, -0.0148703642, 0.0080128694, -0.0178607479, -0.0781305805, 0.0310184378, -0.0271581225, 0.0321330354, -0.00664680777, 0.0293057635, -0.015115032, -0.00467927102, -0.0240589976, 0.00948087592, -0.0288436115, -1.56368624e-05, -0.0311815497, -0.00840705633, -0.00378215616, -0.019736534, -0.0662234128, 0.0364554971, 0.0143810278, 0.0127363168, 0.038494397, -0.0190840866, -0.0321602188, 0.00360545143, -0.0295776166, -0.0379506908, -0.0175345242, -0.0102760466, 0.0269134548, 0.00513122696, 0.0214492083, 0.024793, 0.0163519625, 0.0222239904, -0.0429799743, -0.0286805, -0.0038705084, 0.00910707843, 0.0355040133, -0.0205385014, -0.0182413422, -0.0322145894, -0.00843424164, 0.000776905159, 0.0109149013, -0.00673516, -0.0318068117, -0.0161616653, -0.0176024865, 0.0118731838, 0.0216123201, -0.0357486792, -9.97679599e-05, 0.00772742415, 0.0152781438, 0.0230395496, -0.0183772687, 0.0455625765, -0.0102556581, -0.016718965, -0.0473839939, -0.0077410168, 0.0013609645, 0.0124984458, 0.0207695756, -0.0344437845, 0.0144761764, 0.022672547, -0.0119343502, -0.00415595388, 0.00948087592, -0.0315893292, -0.0238551088, 0.0204433519, 0.00383992493, 0.015862627, -0.0768256783, -0.00985467434, -0.0214356165, 0.0244667772, 0.0302844346, -0.0144218057, 0.0040370184, 0.000452805281, 0.0324320719, 0.0137421731, 0.0241949242, -0.0075099417, 0.0134363389, -0.0230531413, -0.0146936597, 0.00189107808, -0.0568172932, 0.0385215804, -0.0183908604, -0.0382497273, 0.0116896825, -0.00422391715, -0.0119275544, 0.00145526358, -0.00450596493, 0.0564367, -0.0297679137, 0.0298222844, -0.0195870157, 0.00685069757, 0.00956243183, -0.00148329837, -0.00723129185, -0.00629339879, -0.0184860099, 0.0087400768, 0.0232434385, 0.0218026172, 0.0133072082, 0.00209666695, -0.0300669521, 0.034851566, 0.0147888083, -0.0234201439, -0.00890998449, 0.0435508639, -0.0311543643, 0.042409081, 0.000852939032, 0.0178063773, -0.0326767415, 0.0227269176, -0.0112887, -0.031290289, -0.000948937202, 0.0608407222, 0.020089943, -0.0119479429, -0.0278921258, 0.00503947679, -0.0204297602, -0.0235017, 0.0314262174, -0.0450460576, 0.00378895248, 0.00326903327, -0.0180374514, 0.00215103757, 0.00961000659, 0.0159305912, -0.0174937453, 0.0356943086, -0.0185267869, -0.00587542495, -0.0243852213, 0.00842064898, -0.0192064196, 0.024711445, 0.0123557225, -0.0348787494, 0.00384672126, -0.00192675879, -0.059046492, -0.0215579495, -0.00518899597, -0.00567153515, 0.0348787494, 0.00174155878, -0.0304747317, -0.000469796127, -0.0183093045, -0.0323777, -0.0427896753, -0.0133411903, -0.000737401482, -0.0136130434, 0.0171267446, 0.00511423638, -0.0611125752, 0.0134295421, 0.00111714622, -0.0346884541, 0.0103236213, 0.00286465185, -0.0269134548, 0.00498510618, 0.0328942239, 0.0292513911, 0.0110712172, -0.0130897257, 0.0432790108, -0.00417634286, -0.0170315951, 0.00124372786, -0.00815559272, 0.0103100287, -0.00411517592, 0.00833229721, -0.0421644151, -0.0102692507, -0.0103032319, 0.000622713473, 0.00838666782, 0.00206948165, -0.0179558955, 0.024317259, -0.0575784817, 0.0112683102, 0.0145985102, -0.0229987707, 0.0249153357, -0.00513122696, 0.00980030373, 0.0105411038, -0.0175888948, 0.0159985535, 0.0479005128, 0.0299310256, -0.0198724605, 0.014489769, 0.00741479313, 0.0373797975, -0.0222375821, 0.026668787, -0.0389293619, -0.0166781861, 0.00857016817, 0.0235696621, 9.76441079e-05, 0.00349671021, -0.0222103968, -0.0129130213, -0.0067827343, 0.0167733356, -0.0273076426, 0.0294416901, 0.00492054084, -0.0379506908, -0.0288164262, -0.00758470129, 0.0224142876, 0.0427624919, 0.0739440396, 0.0526035726, -0.0096303951, 0.0524132736, 0.0290882792, -0.0107993642, 0.0470849536, 0.00450256653, 0.0355311967, 0.013667414, 0.0364554971, -0.054506544, 0.0232162531, 0.0351506025, 0.0130149666, 0.0178607479, 0.0143946204, 0.00605892576, 0.0258124508, 0.0036768131, 0.029523246, 0.00634437148, 0.0404789262, 0.00969835836, 0.00456713187, 0.0104391584, -0.00512103271, 0.00734003354, -0.0586115271, 0.0210550223, -0.0205113161, -0.0142858792, 0.000848266587, 0.0361292735, 0.0708992854, 0.0199812017, -0.00153427082, 0.0102284728, -0.0238687, 0.00845463108, -0.0015368195, 0.00704099471, -0.0232842173, 0.00877405796, -0.00874687266, 0.0446110927, 0.0440673865, -0.0247522239, -0.0131440964, -0.0335466713, 0.0208783168, -0.0150334761, -0.0348243788, -0.0161072947, -0.0131780785, 0.0512443073, -0.00200491655, 0.0142722866, -0.0140276188, -0.0299310256, -0.00517200492, -0.0170995593, -0.0283270907, 0.00125052419, 0.00760509027, -0.0237055887, 0.00387390656, -0.0201307219, -0.0136130434, -0.0231618825, -0.0525763854, -0.0386303216, 0.0165422596, -0.00127091317, 0.0396361798, -0.0117848311, 0.0130217625, 0.00456373347, -0.0273620132, 0.00905270781, -0.0024806594, -0.0096643772, 0.0310184378, -0.012022703, 0.00518219965, -0.0664408952, 0.0199404247, -0.0048593739, 0.0248745568, -0.00423411187, 0.0013244343, 0.0222103968, 0.00826433394, -0.00272872532, 0.0470577702, 0.0250784475, -0.0159034058, -0.0264105275, -0.0451548, -0.00162432215, 0.021653099, -0.00502588414, 0.00349671021, 0.000457477785, 0.0116149234, 0.012647965, -0.0410226323, -0.000541157555, -0.0103847878, -0.008142, -0.0268862695, -0.0377603918, -0.0201035365, 0.0133683756, -0.0446654633, -0.00406080531, 0.0169092622, -0.017779192, -0.0202530548, 0.00863133557, -0.0204977226, 0.0791092515, -0.0073808115, 0.0277697928, -0.00923620816, -0.00623223186, -0.00753712701, 0.0153461071, -0.0219113585, 0.00933135673, -0.0360205323, 0.024426, -0.00243478408, -0.0250512622, 0.0267911218, -0.0318339951, -0.0132188564, -0.0228900295, 0.000843594084, -0.0391740315, -0.0163791478, 0.0303388052, 0.0408051498, 0.0140276188, -0.0236648116, -0.0207967609, 0.00931096822, 0.00487636495, -0.0149926981, -0.023651218, -0.0117916279, -0.022985179, -0.0215851348, 0.0413216688, -0.00389429554, 0.0484985895, 0.0235696621, 0.0121042589, 0.00136181409, 0.00547783962, 0.0673651919, 0.00177554041, -0.00753712701, 0.0241133682, 0.00521957921, -0.0253910776, -0.0265328605, 0.00398944411, 0.00486617, -0.00775460945, 0.000834673934, -0.00510064373, -0.0192336049, -0.0529297963, 0.00291222613, 0.0117032751, 0.0205792785, 0.00912067108, 0.000873328, -0.0266551953, -0.0290882792, 0.00505306944, 0.0223463234, 0.00958282128, -0.0344709717, 0.0223735087, -0.0283270907, -0.0481179953, 0.0240725912, -0.0331388898, -0.032568, -0.00635456573, -0.0138848964, -0.0247522239, 0.0315349586, -0.0395818092, 0.00396905513, -0.0148159936, 0.0523860902, -0.0306922141, -0.000844868424, 0.0255270042, 0.0052977372, 0.0171403363, -0.0215715431, -0.0267911218, -0.0298222844, 0.0193151608, -0.0173714124, 0.000422009442, 0.0192879755, 0.0105139185, 0.0421644151, 0.0257716719, 0.0451004282, 0.0290610939, -0.0196821634, 0.0177384131, -0.00759829395, -0.0227948818, 0.0204025749, 0.0170180034, 0.0494228899, 0.0142043233, 0.0191112719, 0.00123438297, 0.0052943388, 0.0070138094, -0.00510404166, -0.0337641537, 0.0304747317, -0.0135382833, -0.0357214957, -0.00515841227, 0.0218026172, -0.0375429094, -0.0300397668, -0.0128382621, 0.03759728, 0.0277154222, 0.00113413704, -0.0214356165, -0.0281367935, 0.0758470073, 0.0465956181, -0.00643612165, -0.00821675919, 0.0221832115, 0.0165830385, -0.00175175327, -0.0246162973, 0.000321126456, -0.0164607037, -0.00310592144, 0.00554580288, -0.0296048019, -0.0181597862, -0.00252993288, 0.00620844495, 0.01347032, 0.0153732924, -0.0118799796, 0.00770023884, 0.00805364735, 0.0107789747, 0.0376244672, 0.0353952721, -0.0417566337, -0.00863813143, -0.0228356589, -0.0109013086, -0.00079899322, -0.00346612674, 0.0187034924, 0.00176024868, -0.016841298, -0.00414915755, -0.00209156959, 0.000918353733, -0.0107449936, -0.0158218499, 0.00165490562, -0.0109216981, 0.0121994074, -0.0167869274, -0.0167461503, -0.000280560867, -0.0326495543, -0.00815559272, 0.00844103843, 0.0248745568, 0.0132120596, 0.0267095659, 0.0118867764, -0.0208511315, -0.0210278369, -0.0125800017, 0.00310762064, 0.00243478408, 0.00437683472, -0.0315893292, -0.0249561127, 0.0198860541, 0.0114178294, 0.0121654253, -0.00132698286, 0.0108605307, 0.00643952, -0.00275251246, -0.00456033554, -0.00601135148, 0.00890318863, -0.00695943879, 0.0242764801, 0.0337913372, 0.0193287544, 0.029523246, -0.0230939202, -0.0152645512, 0.0206608344, -0.00795849878, 0.00897794776, -0.0127091315, -0.00343044614, -0.0160665177, 0.00521618128, 0.00511763431, -0.00654826127, -0.0422731563, 0.00159373868, -0.00493753189, 0.0329214074, 0.00960321, -0.0076390719, 0.00524336658, 0.0254046712, 0.00770703517, 0.00167954236, -0.0230939202, -0.0129673919, 0.0163791478, 0.00198622653, 0.0248609651, 0.00695943879, 0.0322145894, -0.0446926467, 0.0165966302, 0.0381138027, 0.0132052638, 0.0174121894, -0.0103779919, -0.0123761119, 0.0281911641, -0.0231346972, 0.00755071966, -0.0287620556, -0.00520598656, -0.0186627135, -0.00532832043, -0.00903911516, -0.0105139185, -0.0172490776, 0.0323233306, 0.0172898564, 0.0141091747, -0.0123693151, 0.00971195102, -0.00461470615, -0.00173306337, -0.0140412115, -0.0250784475, -0.0142722866, -0.00293431431, -0.0250376686, 0.0248201862, 0.0338457078, 0.0263561569, 0.0310728084, -0.0273891985, 0.00320446817, 0.0150062907, 0.00391808245, -0.0188394189, 0.0808491111, -0.0226453617, 0.0161888506, 0.00346612674, 0.00543026533, 0.0380866155, -0.0123761119, -0.0345525257, 0.00544046, -0.0236919969, 0.00287144817, -0.00429188041, 0.00640214, 0.00898474455, 0.0175617095, -0.00962359924, -0.0140683968, -0.0281367935, -0.0510811955, 0.0276610516, 0.0138984891, 0.0203074254, -0.0374341682, 0.0535822436, 0.0311815497, 0.0176160801, 0.043387752, 0.0178743396, -0.0119275544, -0.00939932, -0.0094265053, -0.0187442694, -0.0348243788, 0.00997700822, 0.0381953567, 0.0268862695, -0.00931096822, -6.9343776e-05, 0.0198044982, 0.0202938337, 0.00694584614, -0.00861774292, 0.00212385226, -0.0273484197, -0.0196549781, 0.00960321, 0.00291392533, -0.0172762629, -0.00471665105, 0.0185403805, -0.000621863932, 0.00427149143, -0.014489769, -0.0033403947, -0.0472480655, 0.0162568148, 0.0321602188, -0.00780218374, -0.0135450801, -0.0426537506, 0.014530547, -0.0175073389, 0.0181869715, -0.00153002318, 0.00603513839, -0.00871289149, 0.000224915944, 0.0285989437, -0.00759149762, -0.00514821801, 0.0232706238, -0.0189753454, 0.00880804, 0.00852939, -0.00809442531, -0.0235560704, 0.021422023, -0.0115877381, -0.00222749612, 0.0230939202, -0.00192845787, 0.00230055675, -0.0184588246, -0.00155296072, 0.00524676451, -0.0120430915, -0.00289013819, -0.011159569, 0.011356663, 0.0304475464, -0.00521618128, -0.0134431347, -0.015386885, 0.00361564592, 0.0168684833, 0.00373798, 0.0264513046, 0.00336248288, 0.0106770303, 0.00743518211, 0.00118001224, 0.010534307, 0.0225774, 0.0140955821, 0.00928378291, -0.000879274798, -0.00954883918, -0.0132868197, 0.011669294, 0.0153189218, -0.0268047135, -0.0208239462, 0.00201681, -0.0158218499, 0.0410770029, 0.0113226809, 0.018445231, 0.0120430915, 0.0181461927, -0.0270765666, 0.01280428, 0.0139188776, 0.0139732482, -0.0129130213, -0.0185539722, 0.0294960607, -0.0181597862, 0.0218569878, -0.018757863, 0.0163927414, -0.0231482908, 0.00305155083, 0.0167325567, -0.00573949842, -0.0273620132, 0.00075736572, -0.0303388052, -0.00339816348, 0.00975273, 0.00116472051, 0.0148567716, 0.0136062466, -0.0085022049, -0.0110984026, 0.0166238155, 0.0283270907, 0.0369448327, 0.00491034659, 0.00917504169, 0.018051045, 0.00272362819, 0.00891678128, -0.0312631056, -0.0211229846, 0.0114993853, -0.011981925, -0.0220744703, -0.0285445731, -0.0411313735, -0.0263561569, 0.0204705372, -0.00259959511, -0.0118799796, -0.0223735087, -0.0191248637, -0.02529593, -0.00810122211, 0.0127227241, 0.0182277486, -0.0298222844, -0.00799248088, -8.0494e-05, 0.0204297602, 0.0173170418, 0.0139596555, -0.0106294556, 0.0297135431, 0.0164607037, 0.00102624542, -0.0132596344, -0.00279838778, -0.00717692124, 0.0174121894, -0.0185947511, 0.01280428, 0.0560561046, 0.019736534, 0.0241949242, 0.0124100931, -0.0389293619, 0.0378963202, -0.00937893149, 0.0188666042, 0.0168277062, 0.0270086043, 0.025961969, 0.000642252911, -0.0151694026, -0.00352729368, 0.00419673184, -0.0241269618, 0.00411517592, 0.0453179106, 0.0014348746, 0.00854298286, -0.00020527032, -0.00924980082, 0.00661962247, -0.0022478851, 0.0156043675, 0.0309912525, -0.0302844346, 0.0187442694, -0.0224278793, 0.0121858148, 0.0263697486, 0.00719051389, -0.0100313788, -0.0101129347, 0.00637835311, 0.0181190073, 0.0407507792, 0.0339816362, -0.0226453617, -0.00721090287, -0.0158354416, -0.031997107, -0.00923620816, -0.0227812883, 0.00279668858, 0.0261930451, 0.0249968916, -0.0224958435, 0.000314967299, -0.0138033405, 0.00984787848, -0.0166102238, 0.0355311967, 0.0252551511, -0.0237191822, -0.0158762205, -0.0326223709, 0.0153053291, -0.024358036, -0.016718965, 0.015781071, -0.00948767271, -0.0252415594, 0.00381953595, 0.0188394189, -0.0429527871, 0.0192879755, 0.0111391805, 0.00643272372, -0.0142858792, 0.0229579937, 0.0340903774, 0.000982069294, 0.000583209796, -0.0055254139, 0.0143946204, 0.0228356589, 0.00439382531, 0.0080128694, 0.028000867, -0.0133072082, 0.0094265053, 0.0221696198, -0.022400694, -0.000931946386, 0.00512782903, 0.0294688754, 0.0180782303, -0.0415935218, 0.0101469168, 0.0431159, 0.000932795927, -0.0083255, 0.0102420654, -0.0246978533, 0.0441217571, -0.0214356165, 0.000330259034, -0.0201714989, 0.0193287544, -0.0250512622, 0.0206064638, 0.0227676965, 0.0153189218, 0.0193287544, 0.035911791, -0.0321058482, -0.00985467434, -0.00193185604, 0.0327311121, -0.0373526141, 0.00664001144, 0.0268590841, 0.0350690484, -0.0206608344, -0.00199981919, 0.00883522537, -0.00878085475, -0.00837307516, -0.0193151608, -0.0366729796, -0.00748275639, 0.0149383275, -0.0154684409, 0.0268183071, -0.0287620556, -0.0135654686, 0.00127601041, -0.0240861829, 0.00615407433, -0.00427489, -0.000580661173, -0.0149247348, -0.0267095659, -0.0158762205, 0.00622883392, 0.0398264788, 0.00627640821, 0.0257852655, -0.00120889663, 0.0319427364, -0.0122469813, 0.0193559397, -0.0148567716, 0.0297407284, -0.00141108746, 0.0288164262, 0.0120770736, 0.0229987707, -0.0141635453, 0.000880124338, -0.026315378, 0.0468946584, 0.0234065503, -0.015427663, 0.00317218574, 0.024942521, 0.0117984237, 0.0404245555, -0.0254726335, -0.00456713187, 0.0232978091, 0.00263357675, 0.00704779103, -0.022006508, -0.0341719314, -0.00297849043, -0.0249153357, 0.0342806727, -0.019423902, -0.0278649405, -0.000414151174, 0.00460791, 0.00993623, -0.0204025749, 0.0044685849, -0.00975273, 0.0260299332, 0.00881483592, -0.0309640672, 0.0108673275, 0.000729330874, -0.0165422596, 0.013626636, -0.035639938, 0.00285615656, -0.0087672621, -0.00773422047, -0.0211365782, 0.00461810408, -0.0178471543, 0.00165150745, 0.0674739331, -0.0193287544, 0.0148159936, -0.0202666484, 0.0284086466, 0.0200355724, -0.00340326084, -0.0148567716, 6.22288717e-05, 0.0166102238, -0.0138441185, 0.000807488628, -0.00861774292, 0.0133411903, 0.000379957171, -0.0207423903, -0.0187306777, -0.024004627, -0.00201511104, -0.00567833148, -0.00145016634, 0.0032112645, -0.0281639788, 0.0192607902, 0.00429188041, -0.028354276, 0.00736721884, 0.0157267, 0.0141635453, -0.0422731563, 0.00821675919, 0.0101401201, 0.0161208883, -0.00850900169, -0.00977311842, -0.0171675216, -0.0087400768, -0.00497151352, 0.0315077715, -0.0100857494, -0.00508365268, -0.0341175608, -0.0403429978, 0.0307465848, -0.00898474455, 0.0165014826, 0.040913891, 0.0163519625, -0.00905950367, 0.00513462536, -0.0210414287, 0.00841385312, -0.0076118866, -0.00956922863, 0.0212181341, -0.0333291888, 0.00783616491, -0.00667399308, -0.0388749912, 0.00497151352, 0.0361836441, -0.0071157543, 0.0372438729, 0.00840705633, -0.0257988572, -0.00302096736, 0.004071, -0.00388070289, -0.000402894773, -0.0342806727, -0.00191996247, 0.0145713249, -0.00650748331, 0.00675554899, 0.0071429396, 0.00332000572, 0.04526354, 0.0717692152, -0.00142892776, -0.00811481476, 0.0261794515, 0.0130489478, -0.0225638058, -0.00458752085, 0.00751673803, 0.0224278793, -0.00617446331, 0.0427624919, -0.00606912, -0.00109845633, -0.00762547925, -0.014177138, -0.0114042368, -0.0172898564, 0.0238822941, 0.0230803266, -0.0145169543, -0.0181054156, -0.0127295209, 0.00523317186, -0.000723384088, -0.0175073389, 0.00903911516, 0.00906630047, 0.00227337144, -0.0309096966, -0.013585858, 0.00932456087, -0.00484917918, 0.0300397668, 0.00416954653, -0.000415000715, 0.0413760394, 0.0110236425, -0.0136062466, -0.0236240327, 0.0133208008, 0.00914785638, -0.0159985535, 0.0198996458, 0.0155092189, -0.0157946646, -0.00735362619, -0.0120702768, -0.0352593437, -0.00857016817, -0.0103168245, -0.0243852213, -0.018091822, -0.0107042156, -0.013667414, -0.0216666907, 0.012885836, 0.00543706166, 0.0112411249, 0.0214492083, 0.00121824164, -0.00198452757, 0.0076390719, 0.0111867543, -0.0252007805, 0.00843424164, 0.00264207227, 0.00274061901, 0.0125188343, -0.0143266572, -0.0055559976, 0.0262474157, -0.00567493308, -0.00424090819, -0.0123829078, -0.0110440319, -0.0109556792, -0.00793131348, 0.00706138369, 0.0294416901, 0.00656865025, 0.0177927837, 0.012532427, -0.0124576678, -0.00220710714, -0.0119751282, 0.0170315951, 0.00335398735, -0.0120906662, 0.0230667349, 0.0248745568, 0.0232026614, 0.019383125, -0.0167597421, 0.0136130434, 0.00862453878, -0.00737401517, 0.0168820769, 0.00252653472, 0.0240861829, -6.94499686e-05, 0.00329112145, 0.0218977667, 0.016284, 0.0123897046, -0.00557638658, -0.0193559397, 0.00910028163, 0.0235696621, -0.0128110768, 0.0172354858, 0.00112819031, 0.0184588246, -0.0323505178, 0.012335334, -0.0148295863, -0.013864507, 0.0038059433, 0.0484442189, -0.00242458959, 0.0290882792, -0.00464868778, 0.0210006516, -0.000109272194, 0.0271853078, 0.00187408726, 0.000701720768, 0.00559677556, 0.00632738043, 0.00322145899, 0.0168956686, -0.00684390124, -0.00367001677, -0.0142586939, 0.00802646205, -0.00930417143, 0.016651, -0.024711445, 0.0134023568, 0.00805364735, 0.0303931758, 0.00857016817, 0.0167869274, -0.00289353635, -0.00182481378, 0.0228356589, 0.00275760982, -0.032187406, 0.0102896392, 0.00554580288, -0.0039350735, -0.00826433394, -0.0207423903, -0.00948767271, 0.0165150743, 0.00625262083, -0.0153325144, 0.00307873613, 0.0179558955, 0.0125732049, -0.00808762945, 0.0149655128, 0.0412944853, 0.0152645512, 0.0145577323, 0.0152781438, 0.00351709919, -0.00330641307, -0.0337913372, -0.00887600332, -0.000335143879, 0.00567493308, -0.0248745568, -0.00076628587, -0.00132528378, 0.0215443578, -0.00679972535, 0.0376244672, 0.0129402066, 0.0126819462, -0.0208511315, -0.00772742415, 0.0203482043, -0.0240454059, 0.013198467, -0.010024583, -0.0231211055, -0.00704099471, 0.0173034482, 0.016718965, 0.000715313421, -0.00857696496, 0.00827113, 0.00487636495, 0.0149519201, 0.0168548916, 6.24412569e-05, -0.0112479217, -0.00999739766, 0.00987506378, 0.0202258695, -0.0320786647, 0.00800607353, 0.0024823586, 0.0266551953, -0.00744877476, -0.0184860099, 0.00212385226, -0.0110916058, 0.0109556792, -0.00988186, 0.00267435471, -0.00369380391, -0.00450936286, -0.0196821634, 0.00862453878, -0.00263017858, 0.0160801094, 0.000867806, 0.0103440098, 0.00690167025, 0.00327073247, 0.0108605307, 0.0175888948, 0.013823729, 0.0123149445, 0.014448991, 0.0117372572, -0.0107246041, 0.0114450147, 0.0069152629, 0.00273722084, 0.0321330354, 0.0146664744, 0.00235662633, 0.000688552915, 0.0233249944, 0.0371895023, -0.0113838483, -0.0163247772, 0.00987506378, 0.0186355282, 0.00599436043, 0.0207695756, -0.00592979556, -0.0177384131, 1.55970392e-05, 0.0188801959, -0.0188801959, -0.0110440319, 0.0161752589, -0.0153732924, -0.0131305037, -0.000800692302, -0.0235560704, -0.00371079473, -0.00765266456, -0.01746656, -0.0106022703, -0.00859735347, -0.0113294777, 0.00671816943, 0.0110644205, -0.0233929586, -0.024004627, -0.0025843035, 0.0283270907, -0.0022495843, 0.0149926981, -0.024317259, -0.0113498662, 0.0236648116, -0.00356467348, 0.0327039249, -0.00659923349, -0.020321019, -0.0119683323, 0.011866387, -0.00299378205, 0.00177214225, -0.0162024442, -0.00361904409, -0.000139537093, 0.00795170292, 0.0259347837, -0.0215987284, 0.0179015249, 0.00355787715, -0.0219113585, -0.0228084736, 0.0163927414, 0.00145016634, -0.00186219369, 0.0455897637, 0.0249968916, -0.0123761119, 0.0358846076, 0.00078752439, 0.00491374452, -0.0101944907, 0.00516181067, 0.00487296656, -0.0233249944, -0.0250240769, 0.00576668372, 0.0210278369, -0.0220608786, 0.0327039249, -0.0308281407, 0.00477441959, -0.0124440752, 0.00933815353, -0.050863713, 0.0195190515, -0.00481859595, 0.00093619409, -0.00928378291, 0.00624582451, 1.89421062e-05, 0.00103049306, -0.0247794092, -0.0218298025, -0.0199812017, -0.0390109196, -0.000369550282, 0.0263017863, -0.0129673919, 0.00869929884, 0.0012777095, 0.00119105633, -0.00059850153, 1.98314701e-05, -0.022985179, -0.0418653749, 0.0290067233, 0.0089711519, 0.00434964942, -0.0139324702, -0.012294556, -0.00905950367, 0.0106634377, -0.0185267869, 0.0231482908, 0.00085166475, 0.00576328533, 0.00675215106, 0.0147072524, -0.0156315528, -0.00175685051, -0.00715653226, -0.0118527943, -0.00178743398, -0.00120379939, 0.0115741454, 0.00797888823, 0.0155771822, 0.0138169331, 0.0189481601, 0.0173442271, -0.00653127, 0.0164063331, 0.0330845192, 0.0135654686, -0.0074079968, 0.00725847716, -0.00467247469, -0.0272804573, -0.00085166475, 0.00765266456, -0.00272192899, 0.0213132817, -0.0202258695, 0.00837307516, -0.00723808818, 0.0123285372, -0.00730605144, -0.000298826, -0.0192471985, 0.00569872046, 0.0136810066, -0.0029156243, 0.0126275755, -0.00264207227, -0.000412876863, 0.0115401633, -0.0209870581, -0.0107857715, -0.0110712172, -0.0142586939, 0.0116557013, 0.0268047135, 0.0392012149, 0.00582445227, 0.00737401517, 0.0026114888, -0.020361796, 0.0345253423, -0.00933815353, 0.0240318123, 0.000338966813, -0.0028136794, 0.0190569013, -0.014802401, -0.0172490776, 0.00526715349, 0.0224414729, 0.00569872046, -0.0075099417, 0.0113906441, 0.00640553841, -0.0237055887, 0.0225774, 0.00373458187, -0.00707497634, -0.000513122708, -0.00447198329, 0.00337437633, -0.020674428, 0.00815559272, -0.0197229423, 0.00499530043, 0.0065822429, 0.0203346107, -0.000563670357, -0.0220880639, 0.0128518548, -0.0284358319, 0.0219521374, -0.0100177862, -0.00825074129, -0.0201579072, -0.010846938, 9.1484937e-05, 0.00357486797, -0.00719051389, -0.019736534, 0.0310728084, -0.0234609209, 0.00643272372, -0.0326223709, 0.0110304393, 0.00809442531, 0.00361224776, 0.0134771168, -0.018173378, 0.000211854262, -0.0152373658, 0.0240182206, -0.00411857432, 0.00103983807, -0.00710895797, -0.00336927921, -1.92474108e-05, -0.00397585146, 0.0129537992, -0.0275523104, -0.0182413422, 0.00933135673, -0.0204977226, 0.0170044098, 0.0112547176, -0.0104323626, -0.0290610939, -0.021068614, 0.000205482705, 0.00604533311, 0.0154548483, 0.0175888948, -0.00360205327, 0.00927698612, 0.00600795308, 0.00151728, -0.016447112, 0.00369720208, 0.00395546248, 0.00421032449, -0.0131644858, -0.0115265707, 0.000395248906, -0.00606912, 0.00980710052, 0.0112954956, 0.0120838694, 0.0037413782, 0.0115673486, 0.0489335544, 0.0288436115, 0.0199404247, -0.00102114817, 0.0281367935, 0.0127702989, 0.019383125, 0.0232842173, -0.00717012491, 0.0170044098, -0.0110916058, -0.00327073247, -0.0135043021, -0.00106192613, -0.00788374, -0.0298494697, 0.0171947069, -0.00101520133, -0.0148431789, -0.0161888506, 0.00173136429, 0.0109488834, -0.00186729094, 0.0102896392, 0.0194374956, 0.0157674793, -0.00477441959, -0.0195598304, -0.0262338221, 0.00967117306, 0.0129741887, 0.00578367431, -0.00221730163, -0.0155092189, 0.0102080833, 0.00646670535, 0.0171811152, 0.011512978, 0.020715205, -0.0265328605, -0.00914106, 0.0127023356, -0.0152645512, 0.00927698612, -0.00792451762, -0.0120906662, 0.00753033068, 0.00941291265, -0.00430887146, -0.0117236646, -0.0166102238, -0.0331117064, -0.00429527881, 0.017779192, -0.0022869641, -0.00502248574, -0.0137965437, 0.0125188343, -0.0164607037, -0.020008387, 0.000982069294, -0.0104459552, 0.00252143736, 0.00346952491, 0.0230395496, 0.015386885, 0.0156723298, -0.00377535983, -0.0192607902, 0.0078429617, 0.0116217192, 0.0176704507, -0.00120210031, -0.00290373084, -0.00717692124, 0.00757110864, -0.00389429554, -0.00447877962, 0.00910028163, 0.00965078454, -0.00812840741, -0.0091682449, 0.00353069184, 0.0145713249, 0.00599436043, -0.0161072947, 0.00465208571, 0.0053249225, 0.0331932604, 0.0108401421, 0.0176840425, 0.0311815497, -0.00211705593, -0.0159849618, -0.00327922776, -0.00955563597, -0.0112683102, -0.0196413863, -0.00241099694, -0.00205079163, 0.0265328605, 0.017697636, 0.00352389552, 0.0263561569, -0.0165558532, 0.0121246474, -0.00831190776, -0.00584823964, -0.00675894739, -0.0154140703, -0.00250784471, 0.00267945207, 0.012607187, 0.0152509585, -0.00837307516, -0.0184588246, -0.00878765061, 0.00374817452, -0.00193015696, -0.0189481601, -0.00483898493, -0.0216395054, 0.0148975495, 0.00637835311, -0.0229715854, 0.0181869715, -0.015740294, -0.0363739431, 0.000898814236, 0.00161157909, -0.00641913107, -0.0144082131, 0.0129062254, 0.0271717161, -0.00422391715, -0.0203482043, 0.00695604086, 0.0145713249, -0.00157165062, -0.0106770303, 0.027375605, 0.0111527732, 0.0195190515, -0.00924300496, -0.0264920834, 0.00236512185, 0.00336248288, 0.0242628884, -0.0148975495, 0.00780898, -0.0236240327, 0.0120498883, -0.00962359924, -0.0217074696, -0.0087060947, -0.00755071966, 0.0249697063, -0.00149943971, 0.00975273, 0.00151897909, -0.0076390719, 0.000490185106, 0.0106838262, -0.0233521797, -0.00658564083, -0.00971874781, -0.000553475867, 0.0269542336, -0.0101876948, -0.00127261225, -0.00443120534, -0.0181869715, 0.0067861327, 0.00736721884, -0.0111187911, 0.00108571327, 0.0134499315, 0.0310184378, 0.0127499094, 0.027647458, -0.000635031844, -0.00746916374, 0.0126207797, -0.00315689389, -0.00852259435, 0.016365556, 0.011275107, -0.00729925511, 0.00104153715, 0.00616426859, -0.0199540164, 0.0105275111, 0.0407779627, 0.0121926107, -0.000664341, 0.00631718617, -0.00932456087, -0.00963719189, 0.0160121471, -0.0161752589, 0.0149791054, -0.00981389638, 0.00440741796, 0.00526715349, -0.00548803434, -0.0077138315, -0.00738760782, -0.00515841227, -0.0113702556, -0.0057293037, 0.00937893149, -0.0126547609, -0.00561036821, 0.00229376042, 0.0220880639, 0.00465888204, 0.0103032319, -0.011669294, -0.0224686582, 0.00627301, -0.00760509027, 0.0391740315, 0.0121110547, -0.00052459148, 0.0154684409, 0.0230395496, -0.0142858792, -0.00101435184, -0.0172626711, -0.00471665105, -0.00546084903, -0.00818277802, 0.00377535983, 0.0387390628, 0.0190161224, 0.00113328756, -0.0182141569, 0.00182821194, -0.00431906572, -0.00268964656, 0.00490015186, 0.0151422173, 0.0165014826, -0.0172083, 0.0185131952, -0.0219113585, -0.00913426373, 0.0242221095, 0.00248745573, 0.00508025475, -8.86708312e-06, -0.00160478277, -0.00746236742, -0.0119207576, -0.0211093929, -0.0083255, 0.0271445308, -0.00505986577, 0.00404381473, 0.000821506, 0.00659923349, -0.0108333454, 0.0137081919, -0.0109760687, -0.0225774, 0.0140004335, 0.00417974126, -0.0138713038, 0.0194510873, -0.0125188343, 0.0142722866, -0.00690167025, 0.000464698882, 0.00627301, 0.0103643993, 0.00611669431, -0.0116624972, -0.0224958435, 0.0082439445, 0.000702570309, 0.0194103103, 0.00358166429, 0.00280348491, -0.00147310388, -0.00953524653, -0.000247853546, 0.0125528164, 0.000609970361, 0.0109760687, 0.00705458736, 0.000417974108, 0.00863133557, -0.00215953286, -0.00104068755, 0.00437343633, 0.0232162531, 0.0156859234, -0.0408595204, -0.0228084736, -0.00271853083, -0.00472004898, -0.00126326736, 0.00543026533, -0.00191996247, -0.00521278288, -0.0222919527, -0.0137285804, 0.0292785782, 0.00332000572, -0.0101876948, 0.0242492948, -0.00149519194, 0.00986826699, 0.0334923, 0.0288979821, -0.00231754757, -0.00431906572, -0.00534870941, -0.0104051773, -0.0194782726, -0.00625601923, 9.17504149e-05, 0.00258090533, 0.0065822429, -0.00352729368, -0.022047285, 0.0136810066, 0.000298188854, 0.00880804, -0.00612349063, -0.00235322816, -0.0302028786, 0.0183364898, -0.0226045847, 0.00670797471, -0.00487636495, 0.0132664302, -0.00361224776, 0.00712934695, -0.0426265635, -0.000806214288, 0.0279193111, 0.0231346972, 0.0135926539, 0.0103779919, -0.00816238858, -0.00242798775, -0.00880804, -0.0112343291, -0.0383312851, 0.00675894739, 0.00616087066, -0.00348651572, 0.00113498664, 0.00256391452, 0.0121450368, 0.0124508711, 0.00784975756, -0.00390449, -0.0246027038, 0.00159883592, -0.000659243728, 0.0154956263, -0.0268862695, -0.0171675216, 0.00190806889, 0.00518899597, -0.0152917365, -0.0126275755, -0.00176024868, 0.00491374452, 0.00559337717, 0.0109420866, -0.0140683968, -0.00303116185, 0.0224142876, -0.0253231153, -0.00708856899, 0.0103236213, -0.00120210031, 0.00758470129, 0.0206880197, -0.00995662, -0.00388410105, -0.004071, -0.000639704289, 0.000170014377, 0.00876046531, -0.0155771822, -0.00062016485, 0.04259938, 0.00502248574, 0.00580746168, -0.0182277486, -0.0156587381, -0.0202666484, 0.00449577, 0.00168633868, -0.0122469813, -0.0192879755, 0.00697982777, 0.00100160867, -0.000763312506, 0.0205656867, 0.00405061105, -0.00526375556, 0.00387390656, 0.0321330354, -0.00627640821, -0.00420352817, 0.020361796, 0.0152101805, 0.0232978091, 0.00605552737, -0.000989715103, 0.0119751282, -0.0115401633, 0.0141499527, 0.0199540164, 0.00976632256, 0.000882672961, -0.00167104695, 0.0287348703, 0.0150062907, -0.00729245879, 0.0128314653, -0.00381953595, 0.00616087066, 0.011159569, -0.0275115315, -0.0156859234, -0.0111119952, -0.0158218499, 0.00862453878, -0.0036360349, -0.001767045, -0.00423751, 0.0168956686, -0.00799927674, -0.0309912525, 0.0014348746, 0.0124372784, 0.0134635242, 0.0263561569, 0.0152781438, 0.00484578125, 0.00559677556, 0.000843169342, 0.0152373658, 0.0120566841, 0.000723384088, -0.00103559031, -0.00433265837, -0.00643272372, 0.00180782296, -0.0150334761, -0.0158082563, -0.0308281407, -0.00120125082, -0.0113974409, 0.00782257225, -0.0252823364, -0.00646330696, 0.000227464567, -0.0057870727, -0.0155635895, 0.0115197748, 0.0109692719, -0.0194374956, 0.0098954523, -0.00972554367, -0.0208375398, 0.0313718468, -0.0115605528, 0.00715653226, -0.000450256659, 0.00299038389, 0.0131169111, 0.00204059714, 0.02396385, 0.0126207797, -0.00397585146, 0.00713614328, -0.0171267446, 0.00461130776, 0.00289013819, 0.00329961674, -0.0190025307, 0.000951485825, -0.0198996458, 0.0105071217, -0.013585858, 0.00488655921, 0.00106957194, 0.03993522, -0.0210550223, 0.0146664744, 0.00818277802, -0.032187406, -0.00893717, 0.0149519201, -0.0294416901, -0.00248915493, 0.0164199267, 0.00133887643, -0.0101741021, -0.00907309633, 0.0143538425, 0.00856337231, 0.00667739147, 0.00115027837, -0.000705968472, 0.0281911641, -0.0087400768, 0.00194035145, 0.019614201, -0.00106957194, -0.00358166429, 0.0267231576, 0.00755751599, -0.00309912511, -0.0226453617, -0.0096643772, 0.0196277928, 0.00658564083, 0.000486362173, -0.019383125, -0.00593659189, 0.00909348577, -0.0135654686, -0.00105173164, -0.0277969781, 0.00352389552, 0.00154701399, 0.00123268389, 0.0168005209, 0.00298698572, -0.00327922776, 0.011315885, 0.0191928279, 0.0206064638, -0.00244667777, 0.00981389638, 0.0201850925, -0.0116489045, 0.00315009756, 0.00747596, 0.00695604086, 0.00393847143, -0.00232434389, -0.00769344252, -0.00146715716, 0.00977991521, 0.0115741454, 0.0238551088, 0.0426809341, 0.0211909488, 0.014489769, -0.00523657026, 0.00492054084, -0.00750314537, -0.00200151838, 0.0104051773, 0.00171097531, 0.0142858792, 0.0309912525, -0.0100585641, 0.00854298286, 0.000879274798, -0.0256357454, 0.00500209676, 0.021422023, -0.0271037519, -0.00540987635, 0.0104255658, -0.0063205841, -0.00682691066, -0.0201714989, 0.00160818093, -0.0169772245, -0.00586183229, -0.0155228116, -0.0100177862, -0.0257037096, -0.0266144164, 0.00364283123, -0.0204977226, 0.013001374, -0.0299853962, 0.0283814613, -0.0150470687, 0.0305291023, 0.0220880639, 0.00319597288, -0.00205249083, -0.00671137311, -0.0143946204, 0.00729245879, 0.00947408, -0.00236172369, 0.0186355282, -0.00511423638, 0.0123897046, 0.0289523527, 0.0201986842, -0.00915465225, -0.011825609, 0.00602834206, -0.0143402498, -0.019029716, -0.0121314442, 0.0146392891, -0.00202700449, 0.00520258863, 0.0294688754, -0.014720845, -0.00647010328, -0.00625262083, -0.00245007593, -0.0164607037, 0.00999060087, 0.0080740368, 0.00782257225, 0.0143810278, 0.0198996458, 0.00132528378, 0.00165575522, -0.0135518759, -0.00679292902, 0.0230803266, -0.019614201, 0.00716332858, -0.00169738266, -0.0190976784, -0.0182413422, -0.00969835836, 0.00148329837, -0.00940611679, -0.0169500392, -0.0194510873, 0.033302, -0.00345253409, -0.0160665177, -0.00551521964, 0.00612349063, 0.00831870455, -0.0154684409, -0.00710895797, -0.0148975495, 0.0166238155, 0.0231075119, -0.018051045, -0.00541327475, -0.0147480303, -0.00222239899, -0.0123081487, 0.00800607353, 0.0340088196, 0.00398264779, -0.00229885755, -0.0163519625, 0.0146121029, 0.00844783429, 0.00799248088, 0.00361224776, -0.0189889371, 0.00737401517, 0.0031093196, -0.00113328756, -0.0135518759, -0.00882842857, 0.00686768861, -0.0153189218, -0.00160308369, -0.00623902818, 0.0150470687, 0.00130829297, -0.00812840741, 0.00578027638, 0.00497151352, -0.0221016556, 0.00867211353, 0.0202258695, 0.0234473292, -0.00091495557, -1.91279451e-05, -0.00736721884, 0.0107381968, 0.00939932, 0.00775460945, 0.0120362956, 0.0109828645, 0.0034049598, 0.0123217413, -0.0133751715, 0.0106770303, -0.014802401, -0.00114688021, 0.00625941716, -8.32550068e-05, -0.0135178948, 0.000785825308, -0.00146715716, -0.0146936597, -0.00125222327, -0.0167461503, 0.00987506378, 0.00215273653, -0.00219351449, 0.0238551088, 0.0121178515, -0.00531812618, -0.013511098, -0.00412876857, 0.00375836901, -0.0169636328, 0.01746656, -0.0101741021, -0.0103915846, -0.00105003256, 0.0107381968, 0.00873328, -0.0101061389, -0.00216463022, 0.00833909307, -0.0146800671, -0.0238551088, -0.00521618128, -0.0189209748, 0.00976632256, 0.0155771822, 0.00579047063, -0.00445499225, -0.0299310256, 0.0116081266, 0.00332170492, -0.00866531674, 0.00972554367, -0.00179932755, 0.00926339347, 0.00263527595, -0.00851579756, 0.0281096082, -0.0107925674, 0.00259959511, 0.0149111422, -0.0142315086, -0.00316878757, -0.000448132807, -0.022672547, 0.00489335554, 0.0234065503, -0.000637155666, 0.0451819822, 0.0173985977, -0.010296436, 0.00141958287, -0.00535210781, 0.00778859109, 0.0102896392, 0.010609067, -0.0149383275, -0.00595358247, -0.0255270042, 0.00582105434, -0.00147650205, -0.0112139396, -0.00452635391, 0.00411517592, 0.0102080833, -0.0130421519, 0.0112954956, 0.0157674793, 0.0258804131, 0.016841298, -0.00169143593, 0.00396905513, 0.012688743, 0.00962359924, -0.0105546964, 0.032187406, -0.000553051126, 0.00135077, -0.00759829395, 0.0123761119, 0.0029445088, 0.0205792785, 0.0173034482, 0.00689487392, -0.00683370698, 0.0300125815, 0.0034423396, -0.0175209306, -0.00819637068, 0.0128790401, -0.00842064898, -0.0111527732, 0.0173850041, -0.00311441696, -0.0179015249, 0.0257580802, -0.00504967105, 0.0119955176, -0.0011757646, 0.00392487878, -0.00370060024, 0.00630359352, 0.0114925895, 0.0323777, -0.00399284204, 0.000115856143, 0.00340156164, -0.000255924184, -0.000548803422, -0.0174393747, -0.00061039516, -0.00597397145, -0.0187306777, 0.0130353551, -0.0159713682, -0.00155381032, -0.0124168899, -0.0212589111, 0.00695943879, -0.0383584686, -0.0151558099, 0.0157674793, 0.0073808115, 0.0116760898, 0.00604193471, -0.0102012875, -0.0140819894, 0.00353748817, -0.0144353984, 0.0386575088, -0.0172354858, -0.0242628884, -0.00385011942, 0.00335398735, -0.00607591635, 0.00716332858, -0.0105275111, -0.0116624972, -0.00952845067, -0.0186627135, 0.00864492822, 0.00377535983, 0.0235696621, 0.00338457082, -0.026043525, 0.0024823586, -0.0156859234, 0.00704779103, 0.0105411038, -0.0145033617, -0.0161752589, -0.00818957388, -0.0192064196, 0.0127906874, -0.0210278369, -0.0162296295, -0.00778859109, -0.00443460327, -0.00279498962, 0.00289693451, 0.0226045847, -0.000646500615, -0.024942521, 0.0143538425, 0.00728566246, -0.00323165348, -0.00509044901, 0.0195054598, 0.0020541898, 0.01413636, -0.0248473715, -0.00236002449, 0.0153189218, -0.00730605144, 0.00176534592, 0.0058890176, -0.0160665177, -0.00772742415, 0.0105614923, -0.0103304172, 0.0103915846, -0.00845463108, -0.00927019, -0.0104731405, 0.0108197527, -0.00545745064, 0.0102624539, 0.00991584174, -0.000635456585, -0.00693905, 0.0146392891, -0.00984108169, 0.0291154645, 0.0176840425, 0.00475403061, 0.0190025307, 0.0209190957, -0.00514142169, -0.00443120534, -0.00849540904, -0.00296489778, -0.0206608344, -0.0656253323, 0.00767305354, 0.00799248088, -0.00174495694, 0.0144082131, 0.00455693714, -0.000747596, -0.0155771822, 0.0108333454, -0.00413216697, -0.0103576025, -0.011866387, 0.0163791478, 0.0280280523, -0.0218026172, -0.0111799585, -0.0121518327, -0.00674875267, -0.00725168083, -0.0047302437, -0.0107925674, -0.00851579756, -0.00110185449, -0.000502928218, 0.0167325567, -0.00895755924, 0.0059909625, 0.00399624044, -0.0131848743, 0.00845463108, 0.00717692124, 0.00611669431, -0.0307465848, -0.00684390124, -0.00154276623, -0.00961000659, 0.0140819894, -0.00763227558, -0.0074079968, -0.00512443064, 0.00155720848, -0.00539968209, -0.00231924653, -0.0342806727, 0.00984787848, 0.0036768131, 0.000318577833, 0.00267775287, -0.00543366373, 0.00177214225, -0.0131440964, -0.004071, -0.00220201, 0.00388749922, 0.0149383275, -0.00616766699, -0.0216666907, -0.0133751715, 0.000488061254, -0.00419333391, 0.00614387961, -0.00213914388, -0.00248405756, -0.00667399308, 0.00926339347, 0.0142994719, 0.00280688307, 0.00854978, 0.0303388052, 0.0451819822, -0.00281877676, -0.00298358756, 0.0131169111, 0.00583124859, -0.0159305912, 0.0161072947, 0.00826433394, -0.00194544869, -0.0196685717, 0.0156859234, 0.00031539207, -0.00997700822, 0.0130149666, -0.0128178727, 0.0210414287, -0.0027117345, -0.000854213373, 0.00411517592, 0.00953524653, 0.00100755552, 0.0248201862, -0.0100041935, -0.0198724605, 0.0132460417, -0.0110372351, 0.0350418612, -0.0257308949, -0.0013235847, 0.00540987635, 0.0122809634, 0.00106107653, 0.00417974126, 0.0103711952, -0.0112954956, 0.028354276, -0.0291970205, -0.000246791635, -0.0208239462, 0.0138441185, 0.0209190957, 0.0287348703, -0.0144761764, 0.00478801224, 0.0213812459, 0.0191112719, -0.0113090882, 0.0155771822, 0.00633417675, -0.0140276188, -0.0136198392, 0.000481264928, -0.0402886271, 0.00570211839, -0.00533851516, 0.00676574372, 0.00269134552, 0.00102369674, 0.00842744578, 0.00190127257, -0.0335194841, -0.0179558955, 0.00655845553, 0.0235560704, -0.00103304174, -0.00236342265, -0.023025956, -0.00259619695, -0.00424430612, 0.00194035145, 0.0122537781, 0.0135382833, 0.0015368195, 0.00665020617, 0.0178063773, -0.00468606735, -0.0221832115, -0.0151014393, 0.0121178515, -0.0261114892, -0.0024160943, 0.00558658084, -0.00481179962, 0.0199540164, 0.00975952577, -0.0251871888, -0.00697982777, -0.00130319572, -0.0184996016, 0.00429867674, 0.000816833577, -0.0140140262, 0.006422529, -0.00604873104, 0.0026471694, 0.0144218057, 0.00295810145, 0.0139596555, 0.0155228116, 0.00123353337, 0.000219181544, -0.00848181639, 0.0208375398, 0.0207016133, 0.00501568941, 0.0285989437, -0.0104255658, 0.0145169543, 0.0103236213, 0.0169908181, 0.0202802401, 0.0258124508, 0.00408459269, 0.00275760982, 0.01213824, -0.00284936023, -0.0211637635, 0.00725847716, 0.0198316835, -0.00819637068, 0.00359525695, 0.00180612388, 0.0236240327, 0.0161616653, -0.0184588246, -0.0151694026, 0.0123761119, -0.0122333886, -0.0173985977, 0.0206880197, -0.00568172941, 0.000804090465, 0.00295810145, 0.00286974921, 0.00699342042, -0.00121569296, 0.0121110547, 0.00475063268, 0.0174121894, -0.0295776166, -0.00544385798, -0.00295130513, -0.00642592739, -0.00371419289, 0.000377833319, 0.0205656867, 0.0137557657, -0.0324320719, 0.00556619186, -0.0156995151, 0.00220540818, 0.0100653609, 0.0155092189, -0.00523317186, -0.00296489778, 0.0253095217, -0.0145441396, 0.00305494899, 0.0270086043, 0.0112207364, 0.00459431717, -0.00682011433, -0.00181292021, 0.00512443064, -0.00560017349, -0.00432246411, 0.00969835836, 0.00444819592, 0.010846938, 0.00427149143, 0.00383312861, 0.0171811152, -0.00311611593, -0.00588222127, -0.00164216256, -0.00115197746, 0.0200491659, 0.00960321, -0.000897964695, 0.0162568148, -0.00107466918, -0.00754392333, -0.00852259435, -0.00440741796, 0.0123421298, -0.0123897046, 0.0043700384, -0.0139188776, 0.0309912525, 0.00482879, -0.00148499745, -0.00713614328, 0.00161157909, 0.00618465757, 0.000371249364, -0.00614387961, -0.0128110768, -0.0161072947, -0.0270901602, -0.0151014393, -0.0173306335, 0.00994302705, -0.0279193111, -0.0107653821, -0.0159577765, -0.006422529, -0.0139460629, 0.00746236742, 0.0208103545, -0.0187850483, -0.00939932, -0.00278819329, 0.00456713187, -0.0147888083, 0.0111323837, 0.00860415, 0.013001374, -0.0262202304, -0.00614727801, -0.0149655128, -0.0178879332, 0.00129724899, -0.0190569013, 0.00912067108, -0.00690506818, -0.0384128392, -0.00958282128, 0.0142315086, 0.00543706166, 0.01213824, 0.00379235065, 0.000680907047, -0.0114857927, 0.00359525695, 0.0264920834, 0.00187918451, -0.0296863578, 0.00971874781, -0.0130557446, -0.00534531148, -0.0250784475, -0.0133615788, 0.000910707808, 0.00516181067, -0.0120498883, -0.00525356084, -0.00188428175, -0.00897794776, -0.0190025307, 0.0156315528, 0.00605212944, -0.0292242058, -0.000425832375, -0.0149926981, -0.0112207364, 0.0128178727, 0.0192064196, 0.00897794776, 0.00630699145, -0.001889379, -0.00047361906, -0.00225638063, -0.0101537127, -0.0172626711, 0.0179287102, -0.0101401201, -0.00855657551, -0.00891678128, -0.0173442271, -0.0101129347, -0.0148295863, -0.0144353984, 0.0168277062, 0.00228866306, -0.0263969339, -0.00460791, -0.00914106, -0.0193967167, -0.0116760898, 0.0135382833, -0.016447112, 0.00594338821, -0.0153597, -0.00185709645, 0.0367001668, 0.00574969267, -0.0116353119, -0.0280280523, -0.026981419, 0.0398264788, -0.00574629474, 0.000564519898, -0.0228492524, -0.00700021675, -0.0146936597, -0.0184180457, -0.00410158327, -0.00446518697, 0.0165014826, -0.0022869641, 0.00876046531, 0.00593319349, -6.65827683e-05, 0.0115469601, 0.0724216625, 0.0195734221, -0.0102352686, -0.0288707968, 0.00939252414, 0.000472344749, -0.0213948376, 0.0367817208, -0.0162160359, 0.013585858, -0.00421372289, 0.0142179159, -0.00690506818, 0.0280824229, -0.0113022923, 0.00702740205, 0.0198180899, -0.00502588414, -0.00409818534, 0.00757110864, 0.0052943388, -0.00588222127, 0.0144761764, -0.0206336491, -0.0026760539, -0.0119207576, -0.0151965879, -0.00918183755, -0.0338728949, 0.00862453878, -0.0203889813, 0.012213, 0.0212725047, -0.00542007107, -0.00350350654, -0.0141499527, 0.0108945128, 0.01413636, 0.0161208883, -0.00367001677, 0.0195870157, 0.0158082563, 0.021422023, -0.0179151185, 0.00126496644, -0.0120091103, -0.00944009796, -0.017072374, -0.0143674351, -0.015862627, -0.0080740368, -0.00439042738, -0.0211773552, 0.00637835311, -0.00347632123, -0.0198180899, 0.0293873195, -0.0134635242, -0.00898474455, 0.00135416817, -0.014530547, 0.0221696198, 0.0253231153, 0.0112207364, -0.00494772615, -0.0114586074, -0.00414236123, 0.0066536041, -0.021422023, 0.00829831511, 9.38211742e-05, -0.0106226597, 0.0114654042, -0.00409138901, 0.0124644637, 0.0125800017, -0.01746656, -0.00782936905, -0.00241949246, 0.0012403297, -0.0167053714, 0.0106226597, 0.00170078082, -0.00887600332, -0.0153189218, -0.0142722866, -0.0176704507, 0.00321806083, -0.0136402287, 0.01413636, -0.00142807828, 0.0103304172, -0.0185267869, 0.00510064373, 0.0249968916, 0.0015741993, -0.0176568571, 0.000898814236, -0.00308553246, 0.00448217755, -0.00585163757, -0.00153172226, 0.0110372351, -0.0232706238, -0.00744877476, 0.0212860964, 0.00128025818, 0.0160393324, 0.00672836369, 0.00871289149, -0.012335334, 0.00840026047, 0.00545405271, 0.0254046712, 0.00451955758, 0.00905950367, -0.0145033617, 0.00241949246, 0.012213, 0.00160563225, 0.0198996458, -0.00612349063, -0.00717012491, 0.0154548483, 0.00709536532, 0.00127601041, 0.0155228116, 0.0257444866, 0.0125392238, -0.0154548483, -0.00672836369, 0.00812840741, 0.0113090882, 0.00462490041, 0.00581425801, 0.0393915139, -0.00935174618, 0.00320107, -0.0140955821, 0.00364283123, -0.0185131952, -0.0106022703, 0.0134771168, 0.00967117306, -0.0101265274, -0.00846142694, 0.0145169543, -0.0229715854, 0.0083255, -0.00812840741, -0.00585163757, -0.00246366858, 0.00171352399, -0.0177248213, 0.00305664819, 0.00526375556, 0.00280008675, -0.0159169976, -0.00274061901, -0.0003678512, -0.00912746694, 0.00348991388, 0.0189617518, 0.00372098922, -0.00355447899, -0.00189617532, 0.00184350379, -0.0105886776, 0.000580661173, 0.00862453878, 0.0288436115, 0.0251192246, 0.0200627577, 0.0118120164, -0.0217754319, 0.00808762945, 0.00368021126, -0.00290542981, 0.00118426, -0.0178607479, -0.00530113513, -0.000148457271, 0.000976122508, 0.0427353047, 0.0169092622, -0.00445499225, -0.00199642102, -0.0325951837, 0.00458412245, -0.0184860099, -0.0184724163, 0.000507175922, -0.0132868197, -0.0149247348, -0.00184520287, 0.00100415736, 0.0138916923, 0.010493529, 0.00656525185, 0.014761623, 0.0294416901, 0.00451955758, 0.00675215106, 0.00712255063, -0.0146664744, 0.0102556581, -0.0133615788, -0.0103915846, 0.00515841227, -0.0117032751, 0.00363943307]
|
10 Feb, 2022
|
Which tag is used to display additional information when we click to open or close on demand in HTML ?
10 Feb, 2022
HTML provides many predefined tags which have some specific functionality for the contribution of developing web pages. In this article, we will learn how to show the additional information when the user clicks to open or close on demand in HTML. This can be simply done with the help of the HTML <details> tag in the document.
This tag is used to display the hidden information. It is used to develop a control called ” disclosure widget”. This control can be toggled (opened and closed) to disclose its details. This control is introduced with a triangular button that represents the state of the widget’ whether hidden content is visible or not. The caption is always specified in the HTML <summary> tag.
Syntax:
<details>
<summary>... </summary>
...
</details>
Example: Below HTML code shows the list of browsers when the user clicks on the triangular button.
HTML
<!DOCTYPE html>
<html>
<body>
<h1 style="color:green">
GeeksforGeeks
</h1>
<h3>
Summary tag to display the
additional information
</h3>
<!-- Details open tag starts -->
<details>
<summary>Clent Side Browsers</summary><br>
<div>
<div> Google Chrome</div>
<div> Mozilla Firefox</div>
<div> Apple Safari</div>
<div> Opera mini</div>
</div>
<!-- Details open tag ends -->
</details>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?
|
https://www.geeksforgeeks.org/which-tag-is-used-to-display-additional-information-when-we-click-to-open-or-close-on-demand-in-html?ref=asr9
|
CSS
|
Which tag is used to display additional information when we click to open or close on demand in HTML ?
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0401802696, -0.0212148447, -0.0235767365, 0.0213413741, 0.0510056056, -0.00282407692, -0.000259649882, 0.013630081, -0.0415299237, 0.0149586452, 0.00453047315, -0.0154366465, 0.0010869269, -0.0253762733, -0.0258261561, -0.0167160053, -0.0336007141, 0.0147477621, 0.0352034271, 0.0145087605, -0.0192747209, 0.0218756124, -0.0440324023, 0.0058906693, -0.00427389843, 0.00247084768, 0.0037396613, -0.0127232838, -0.0133699914, 0.0348097794, -0.00608046399, 0.00162819366, -0.00396811776, -0.0458600558, -0.0309014115, -0.00917341746, -0.0149586452, -0.0115915444, -0.0386619121, 0.0297767017, 0.0205962546, -0.0091031231, -0.00330559351, 0.00135140959, -0.0448478162, -0.0045375023, 0.00299805542, -0.0257136859, -0.0402927399, -0.0063546123, 0.00367288152, -0.0425983965, -0.0104668336, 0.0274288692, -0.00672717253, 0.0144947022, 0.00153329631, -0.0130255492, -0.00773941167, 0.0117672803, 0.033966247, -0.0308732931, -0.0229300279, 0.0115142204, -0.0238438547, 0.0218896717, 0.00856888574, -0.0133067267, -0.0124210175, -0.0176438913, -0.0289612859, 0.00534237316, 0.0115634259, 0.0157459415, 0.000476244459, -0.00854076724, -0.0108956294, -0.00205259607, 0.0236048549, -0.00304550421, -0.0132715795, -0.0163082965, -0.0490092449, 0.0233096182, 0.0300297607, 0.0248560943, -0.000777192297, -0.039421089, 0.0374528468, -0.017362712, -0.0211445503, -0.00839315, 0.0159427654, -0.00232322933, 0.0146212317, 0.0170955937, -0.0108393943, 0.00982715469, -0.0529457293, -0.0241672099, 0.00695914403, 0.0277100466, -0.019485604, -0.0211164337, 0.0110713653, 0.0145790549, 0.00937024131, -0.0157318823, -0.0203291364, -0.0194574855, 0.00243218569, -0.00879382715, -0.0104738632, 0.0284692254, -0.0130958436, 0.0322510637, 0.00999586098, -0.0439199321, 0.0058906693, -0.0076480289, -0.0461131148, -0.0238297954, 0.0193168968, 0.0802480653, -0.044679109, 0.0207368433, -0.0178266559, -0.0164910629, 0.0369186103, -0.032419771, -0.0292424634, 0.0316887088, -0.0159849431, -0.00184171286, 0.0358501375, 0.0174189489, 0.0823287815, -0.017629832, -0.0329540074, 0.0091523286, -0.0306483507, -0.0154366465, -0.00158250227, 0.0413893349, -0.0299454071, -0.0284551661, -0.0309576467, 0.0452133492, -0.0468722954, 0.024378093, 0.00350241759, -0.0435262844, -0.0147196436, -0.0345567204, 0.0283708125, 0.0176438913, 0.030254703, 0.00276256935, -0.0330383591, -0.0114228372, 0.0145790549, -0.0222692601, 0.0142486719, 0.0368061401, -0.029636113, 0.037677791, 0.00609100843, -0.0309576467, -0.0256715082, 0.0264025703, -0.0323916525, 0.0401521511, 0.0183468349, -0.0187404826, -0.0205681361, 0.00869541522, 0.019584015, -0.0294955242, 0.00529668201, 6.8591944e-05, -0.0478282981, 0.0150851747, 0.00259210542, 0.0325884782, 0.00983418431, 0.0228737928, 0.0508369, 0.0161255319, -0.00512446044, -0.0199214276, -0.0474346504, 0.0191903673, 0.0234361477, -0.00300332764, 0.0553919747, -0.020919608, -0.032054238, 0.0243640337, -0.00368694053, -0.0182765406, -0.030507762, -0.0120484577, -0.0210039616, 0.0197527222, 0.00696968799, 0.014480643, 0.0215241406, -0.0358782522, 0.0488124192, 0.00961627159, 0.0301141143, -0.014944586, -0.0125897238, 0.00194715441, -0.0361031964, 0.0114368964, -0.00880085677, -0.0129341669, -0.00335655687, -0.0278084576, 0.00483625382, 0.021285139, -0.00820335466, 0.0076902057, -0.0343598947, 0.00863215048, -0.00230741315, 0.000418690935, 0.0130747557, -0.00882897433, -0.0134473154, 0.00278365752, 0.00443557557, 0.0109659238, 0.0282864608, -0.0264588054, -0.000370143855, -0.046647355, 0.0270211603, -0.0124210175, 0.00239879591, 0.014789938, -0.0189513657, -0.0368342586, 0.0159708839, 0.0215522572, 0.00914529897, -0.0326447114, 0.00707864435, -0.00522990199, -0.00607343484, 0.0109167183, -0.00895550475, 0.0107972175, 0.00340752024, 0.0256012138, 0.00615778798, -0.0204837844, 0.0097498307, 0.0140448175, 0.0578101, -0.0191622488, -0.0222692601, 0.0173345953, -0.0426546335, 0.00160271197, 0.0511461943, -0.0460006446, -0.00898362231, -0.0221849084, 0.0153944697, -0.0559262112, 0.0152960578, 0.0251653902, -0.0068607321, 0.0345567204, 0.0472378246, -0.0273866914, 0.0328415371, 0.00674123131, 0.0260229819, 0.0194012504, 0.0409675688, 0.0112330429, 0.0211586095, 0.0092648, 0.0068009817, 0.0235626772, 0.00918044616, 0.00259913481, -0.0164910629, 0.0019893311, 0.0142697599, 0.0269789845, 0.0365530811, -0.00983418431, 0.00258331862, 0.0150851747, -0.0162942391, -0.0015596567, -0.00358149898, -0.00232674414, -0.0462537035, 0.0186983068, 0.0122031048, 0.0266134534, 0.0149305267, 0.0336850695, -0.041276861, -0.0142978774, 0.0173486546, -0.00865323842, -0.0430482812, 0.00848453213, 0.00640030345, -0.00104123552, 0.0292986985, 0.0187686011, 0.00503659248, -0.0461412333, 0.00371154351, -0.00115107058, -0.03152, 0.044791583, 0.0367780216, 0.0259948634, -0.00440042838, -0.0174048897, 0.0223254971, 0.00231444254, -0.0516804308, -0.0289331693, 0.0276819281, 0.0156615879, -0.0177563615, -0.0266837478, 0.0111346301, -0.00296290824, 0.00819632504, -0.0035164766, -0.00933509413, 0.0162661206, -0.0281739887, -0.0282442831, -0.00454804674, -0.0303952917, -0.0375934355, -0.0372560248, 0.00391539698, 0.0319698863, 0.00094809552, 0.00923668221, 0.0224379674, -0.00201920629, 0.0324478894, -0.00999586098, -0.0316324718, -0.00776752923, -0.0223114379, 0.00233025872, 0.0327571817, -0.0033231671, 0.0300859958, -0.0186842475, -0.054998327, -0.0332633033, -0.0171377715, -0.00238825171, -0.0357939, -0.0184311867, -0.0326447114, 0.00404192694, -0.0134121682, 0.0107831582, -0.0358501375, 0.00758476416, -0.0386337936, -0.00574305095, -0.0471815914, 0.0147055853, 0.00240934, 0.0656830743, 0.00881491601, 0.0429076925, 0.0287925806, -0.00870947447, -0.00368342572, 0.00819632504, -0.00378886727, 0.0213273168, -0.00861106161, 0.0490092449, 0.00610506721, -0.0252638012, 0.0357095487, -0.022620732, -0.0335163623, 0.0120906336, 0.0233939718, 0.0204275474, 0.029636113, 0.0391961485, 0.00920856465, 0.00737388106, -0.0327009484, -0.0123858703, -0.0159427654, 0.025516862, 0.00261495099, 0.0152257634, 0.0136019634, -0.0085970033, 0.00241636951, -0.025151331, 0.0388587341, 0.0406863913, 0.00428444287, 0.0648395419, -0.0013285639, 0.00869541522, 0.0459444076, -0.00861809123, -0.0233236775, 0.00683612889, -0.0353158973, -0.0160411783, -0.0215382, -0.00535643194, 0.0413893349, -0.0272742212, -0.00338643184, 0.0101926858, -0.0159990024, 0.000226040385, 0.0141572887, -0.0291299932, -0.000586518785, -0.000900646788, -0.0183749516, -0.0125967534, -0.0431045145, 0.0213132575, -0.0035252634, -0.00471323868, -0.0505557209, 0.00615778798, -0.0143962903, -0.0239282083, 0.0248139184, 0.0497121885, -0.0406301543, 0.0123577528, -0.0440605208, -0.0286801085, 0.0666953102, -0.0338818915, -0.0233236775, -0.0173908304, 0.0475471206, -0.00820335466, 0.0129622845, 0.0343598947, 0.00837206095, 0.00244097249, -0.000443074299, -0.0127373422, -0.0341349542, -0.00311931339, 0.00222481717, 0.01576, -0.0421766303, -0.0248279758, -0.0313794129, 0.0151835866, 0.016181767, -0.00481516542, 0.0299172904, -0.00259210542, 0.00636867108, -0.0249263886, 0.00973577239, 0.0177563615, 0.0161958262, 0.0147196436, -0.0128849605, -0.0229300279, 0.0597783439, -0.0197808389, 0.00939835887, -0.000407487765, -0.0015552633, -0.00901174, 0.00875165127, -0.0316605903, 0.0124631943, -0.00518772565, -0.0286801085, -0.00337940245, 0.0334601253, 0.0603969358, -0.025151331, 0.0135879042, 0.00480462098, 0.0340787172, 0.0062948619, 0.0330664776, -0.0327290669, 0.0464786477, -0.021285139, 0.0235205013, -0.0223254971, -0.00297520985, -0.0400959179, -0.0165051222, 0.00174945151, -0.0107339527, -0.0169831235, 0.00806276593, -0.00880788639, 0.0246311519, 0.0262338649, 0.0238438547, -0.000383324077, 0.0181359518, -0.0139323473, 0.024687387, 0.0352877825, -0.00603477284, -0.042823337, 0.00724735111, -0.00668148138, 0.0176720079, 0.000698111078, 0.0323073, -0.0106917759, 0.0238016788, 0.0235626772, 0.0218756124, 0.00917341746, -0.0193590727, -0.0218053181, 0.000120708639, -0.0228316151, -0.00911015179, 0.00256574503, -0.0257418025, 0.00702592358, 0.0114509547, -0.00248314906, -0.00731061585, 0.0204416066, 0.0149727035, 0.0060628904, 0.00847047288, -0.0125124007, -0.0193028376, -0.0170955937, -0.00566221261, 0.00718057156, -0.0292986985, 0.00274323835, -0.00986230187, 0.0207368433, 0.0273585748, -0.036075078, -0.00612615561, 0.0161677077, 0.00388376461, 0.00733873388, 0.0366093144, -0.00326868892, -0.00986230187, -0.0148883509, -0.000328406575, 0.00602422887, -0.00224063359, 0.0186701883, -0.0320823565, 0.0063546123, 0.0107761286, -0.0163504742, 0.00747229299, 0.00206841226, -0.0198370758, 0.0116688674, -0.0350066051, 0.00912421104, -0.0344161317, -0.0944756493, 0.0449040532, -0.0173345953, 0.0219037309, 0.0182905979, 0.0311544705, 0.00139534357, 0.0330945961, -0.0162661206, 0.00373614649, 0.00631946512, -0.0284270495, -0.00494520972, 0.027780341, 0.0557012707, 0.0170393586, 0.0118164858, 0.000734576315, -0.00554271229, 0.00150517852, 0.0313794129, 0.0102348626, -0.0655706, -0.0573883355, 0.0239282083, -0.0205540787, -0.00424929569, -0.000906797533, -0.00163434446, -0.00250950945, -0.0123015177, -0.0229300279, 0.0588223413, -0.000534237304, 0.0274569858, 0.020919608, 0.00947568286, -0.018192187, -0.0442011096, -0.0475752391, 0.010825335, 0.016800357, -0.0131801972, -0.0282442831, 0.00513851969, 0.0111838365, -0.00202975026, 0.00376074947, 0.00443557557, 0.0079713827, -0.0110221598, 0.0127724893, -0.000227138735, 0.0318011791, -0.0422047488, 0.0929010585, -0.000616833218, 0.0277944, 0.00932103489, 0.0344161317, 0.0195418391, -0.0172502417, -0.0131169325, -0.0127303125, -0.0286519919, -0.00344442483, -0.0138479937, 0.00205611065, -0.00524747558, -0.00435473723, 0.00528613757, 0.00927182939, -0.00754961697, -0.0462537035, -0.00727546867, 0.00572196301, 0.0138128465, -0.0447072275, 0.0239985026, 0.00478353305, -0.0082244426, 0.0215241406, 0.00181008037, -0.0424859263, -0.0096584484, 0.0149727035, 0.00589769892, -0.010073185, 0.00102102594, 0.0176017135, -0.00646708347, 0.0345286019, -0.016856594, -0.00670608412, 0.00282583432, -0.00844235532, -0.0160552375, 0.00122400094, -0.0225785561, -0.00202975026, 0.0139745232, 0.00183292606, 0.0284692254, 0.013088814, 0.0303952917, 0.00313161477, 0.00862512086, -0.0578101, 0.00851265, -0.018810777, 0.00103508483, 0.00210531685, -0.00661118701, 0.00343563803, -0.0143892607, 0.0387462638, -0.00964438915, 0.0375934355, -0.0175735969, -0.0229440872, -0.0323916525, -0.0125334887, 0.0164629444, 0.014789938, 0.0273023397, 0.0360469595, -0.0279490463, 0.0114861019, 0.011310366, 0.00422469247, -0.0104105985, -0.000864620903, -0.00722626271, -0.014846174, -0.00151923741, -0.00719463034, 0.00343739544, -0.0436106361, -0.000683173537, 0.000814536179, 0.00499441614, 0.00336358626, 0.00851967931, 0.0144384662, -0.0178125966, -0.0035270208, -0.0389149711, -0.00796435401, 0.0161395911, 0.0363562554, 0.00157020078, -0.00733170426, -0.00658306899, 0.0175876543, -0.0227613207, 0.00749338139, -0.0120414281, 0.00854779687, 0.0283145774, 0.0377621427, 0.023914149, 0.00245327409, 0.0132294027, -0.00092612853, 0.04318887, -0.0424296893, 0.0101715978, -0.0119219273, -0.00168970122, -0.0153522938, 0.0408550948, 0.0201323107, 0.0296079945, 0.0094053885, -0.0225082617, 0.00524044642, -0.00321772532, -0.0298329368, 0.000394087896, -0.00659361342, 0.00266942917, 0.00782376528, 0.0358782522, 0.0131731676, 0.00565166865, -0.0221005548, 0.0122452816, 0.0085970033, -0.0132575212, -0.00534588797, -0.0257136859, -0.0340787172, -0.0215663165, 0.00232322933, -0.0307608228, -0.00631946512, -0.0116126323, -0.0151414108, 0.0435825177, 0.00870244484, 0.0304515269, 0.00972171314, 0.0531706735, 0.0345286019, 0.0325603597, 0.0375372022, -0.0172783602, -0.0292705819, 0.0192184839, -0.0118094562, 0.0230706166, -0.0330102444, 0.0131380204, -0.00796435401, 0.0146774678, -0.00419657491, 0.0404614471, -0.0432451069, -0.0149164684, -0.0280193407, -0.0157037657, 0.00617184676, 0.00338291726, 0.00624917075, -0.013939376, -0.0196402501, 0.0344161317, -0.0296079945, -0.00561300665, 0.0185436588, -0.00652331905, 0.0135668162, 0.0179813039, -0.00324935792, 0.00563409505, 0.0107128639, -0.0240828563, 0.019991722, 0.0260229819, 0.0026061642, 0.0232112054, -0.00388376461, -0.0272179861, -0.00484328298, 0.00592581648, -0.00269754697, -0.00404192694, -0.0271336325, 0.00808385387, 0.0465067662, 0.011057307, 0.0311544705, 0.000727986218, 0.0146071734, -0.0174189489, -0.00145421503, -0.0013074755, 0.00728952745, 0.00197527208, -0.0224801432, 0.0126178423, 0.0297767017, 0.030507762, -0.0187545419, 0.00465348829, 0.046281822, -0.0148602324, 0.00721923308, -0.0301984679, 0.00363070494, 0.0323354155, 0.00823850185, 0.00673068734, 0.0188670121, -0.00252532586, 0.00953191891, 0.0328696556, 0.0330383591, 0.0181359518, -0.0350909568, 0.0052123284, -0.00461131148, 0.0019805443, -0.000741605763, -0.00307362201, 0.00617887639, 0.0355408415, -0.0251091532, -0.0192887783, 0.00267645856, 0.0340506, -0.00545484433, 0.0522427857, 0.0151554691, 0.00146827393, 0.00518421084, 0.0250669774, 0.0151554691, -0.0452414639, -0.0155912945, 0.0267399829, -0.0193731319, -0.0185436588, -0.0065268334, 0.0226347912, -0.057107158, 0.00478353305, 0.0393086188, -0.0251935069, -0.00824553147, -0.0162661206, 0.0168847106, 0.00123278773, -0.0217772, 0.0251794476, 0.00588364, 0.01152125, -0.0117180739, -0.00124772533, 0.0217772, -0.0163645335, 0.0204837844, -0.00443557557, 0.00670959894, -0.00909609348, -0.00688884966, 0.0175454784, 0.0049803569, -0.0272882804, 0.00385564705, -0.00377832307, -0.0110783949, 0.00335479947, 0.0161536504, -0.0136230513, 0.0292424634, -0.0165051222, 0.0032634167, 0.00601368444, 0.016701946, -0.0123647824, 0.000387717475, -0.00934212375, -0.00239000912, 0.0167441219, 0.00466051744, -0.0186280124, -0.010902659, -0.0542391464, 0.0503870137, -0.0228034984, -0.010923747, 0.0310982354, -0.00724032149, -0.0173064768, 0.027878752, -0.00751447, -0.0257558618, 0.00509985769, 0.0126670478, -0.0142205535, 0.0254043899, -0.013531669, 0.0024058253, -0.0564604476, -0.0413612165, 0.00620699394, -0.0194153097, -0.0175033025, -0.011907869, 0.014944586, 0.0239985026, 0.0114861019, 0.00146212324, 0.00157371548, 0.0137003753, 0.0598908141, -0.00412979489, -0.0167160053, 0.00407356, -0.0108323647, -0.00785188284, 0.0361875482, -0.00383807346, 0.0261354521, -0.0113455132, 0.00206138287, 0.0218334366, 0.0194996614, -0.0151695283, 0.0113173956, -0.0248560943, -0.0015455978, 0.00579225738, 0.0150711164, 0.00707512954, 0.0304515269, 0.00145070034, 0.0301141143, -0.00802761875, 0.00281177531, 0.000723592821, 0.00150342111, 0.013939376, -0.00157986628, -0.00105793052, 0.00532831438, 0.00298048183, 0.0338256583, -0.0427952223, -0.0508650169, -0.022620732, 0.00875868, 0.00849156175, -0.020821197, 0.0147758797, -0.00791514758, 0.0285676382, 0.010902659, -1.57201302e-05, -0.00855482649, 0.0256574508, -0.0138128465, -0.00055312895, 0.00979200751, 0.0156475306, -0.00766208768, 0.00291545969, 0.00585552212, -0.0216225535, -0.0142767895, 0.010438716, 0.0132294027, -0.0182905979, 0.0134191979, -0.0265712775, 0.00667093694, 0.010825335, 0.00133207859, -0.00722626271, 0.0300859958, -0.0176438913, 0.00795732439, -0.0124983415, 0.0146212317, -0.000590472831, -0.0182624813, 0.000795644533, -0.0213413741, -0.0309576467, -0.0200620163, 0.0200339, 0.00342157925, 0.00630540634, -0.00989744905, 0.0156475306, -0.00403138297, 0.00706458557, 0.00852670893, -0.00458670873, -0.0113455132, -0.0128287254, -0.0358782522, -0.0212710798, 0.00639327429, -0.0290737581, 0.00594690489, 0.00250599487, -0.0112541309, -0.000626059365, 0.0210883152, 0.0162801798, 0.0177985374, -0.0233517941, -0.00984121393, 0.000316764083, -0.0202166643, 0.00341279246, 0.0120695457, -0.00918044616, -0.0192184839, -0.0106706871, -0.00916638784, -0.0436668731, -0.0163785908, 0.00336007145, -0.000830352423, -0.00650223065, 0.0107550407, 0.0037291171, -0.0111627486, -0.0223817322, 0.0188670121, 0.012217164, 0.0198370758, 0.0272039268, -0.0244483873, 0.0146634085, 0.0153944697, 0.00954597723, -0.0369467288, -0.0432732217, -0.0193871912, -0.00131626229, -0.002203729, -0.00384510285, 0.0142838191, -0.0179953631, -0.0013232918, 0.0690009668, 0.00855482649, 0.00778158847, -0.035512723, -0.020357253, -0.0395054445, -0.0277381632, 0.0332914218, 0.0242515616, -0.0278646946, 0.0171377715, -0.0127232838, -0.00746526336, 0.0232815, -0.0134262275, -0.0150429979, -0.00988339074, 0.0153522938, 0.0341349542, -0.0197246037, -0.0110221598, 0.0109096887, 0.0111276014, 0.0153944697, 0.0055462271, -0.0172221232, 0.00524044642, 0.00171430432, -0.0118727218, 0.00165894744, 0.0209055506, -0.0138128465, 0.00802058913, 0.00455156155, -0.0158865303, 0.0471253544, 0.0111978957, -0.0132715795, -0.0178688318, 0.00934915338, -0.0138620529, -0.0200479589, -0.0072051743, -0.000749074505, -0.0061823912, 0.0132575212, -0.0143962903, 0.0151414108, -0.0175173599, 6.34296957e-05, -0.00369045511, 0.00752852857, 0.0294111706, -0.00398569135, -0.0110362181, -0.00751447, 0.0141783776, 0.00709270313, 0.0278928112, -0.0356814303, 0.0110854246, -0.00558840344, 0.0213976111, -0.0181640685, 0.0017380286, 0.00961627159, -0.00698374724, 0.0139042288, -0.0158865303, 0.00173275662, 0.00608046399, 0.00801355951, 0.0196261927, -0.00844938494, -0.0322510637, 0.0151414108, -0.0321948268, 0.0216084942, 0.00345145422, -0.00214222143, 0.0106566288, 0.0122031048, -0.0291862283, 0.0179672446, -0.0104738632, 0.0226488505, -0.00294709206, -0.0175173599, -0.00357622677, 0.00602774322, 0.00482570939, -0.0466754697, 0.023548618, -0.00987636112, 0.0112049244, -0.00101926853, 0.00329856388, 0.0350909568, -0.013222374, -0.00993962586, 0.0096584484, 0.0180656575, 0.0190919545, -0.00225996436, 0.0125826951, -0.00628431793, 0.0106285112, -0.00395054417, -0.00546187349, -0.00788, 0.00636867108, -0.00892035756, -0.0181781277, 0.00545835914, -0.0189794842, -0.00785891246, -0.013067726, 0.00711730635, 0.013067726, 0.0195277799, -0.00651980424, 0.0418954529, -0.00779564725, 0.0173767712, 0.00307362201, 0.00980606675, -0.0095670661, -0.0144384662, 0.0319980048, -0.00324408594, -0.00707864435, 0.0104668336, 0.0218474939, 0.00683612889, -0.0208493136, 0.0175314192, 0.00551810907, 0.0232393239, -0.00233025872, 0.00411925092, 0.00803464837, -0.0216084942, -0.00480462098, 0.0233096182, -0.0017635104, 0.00569384499, -0.0086883856, 0.00394351501, 0.00933509413, 0.0030806514, 8.32549122e-05, -0.00366936694, -0.00300332764, 0.0281458721, 0.0181640685, -0.0210461393, 0.0170112401, 0.00157283689, 0.0225926153, 0.0108534526, -0.0143049071, 0.0302828215, 0.0160130616, 0.0194996614, -0.00896956306, 0.00319487974, -0.0046570031, -0.0719814524, -0.0013048395, -0.0234783236, 0.032166712, -0.0202166643, -0.00193485292, 0.00653737783, 0.00433364883, 0.0248279758, 0.00525099039, -0.0100802146, -0.0270492788, 0.0104527753, -0.0202166643, 0.000525011157, -0.0127092246, 0.00202975026, -0.0154366465, -0.00968656596, 0.0105793048, -0.000591790827, -0.00301035703, 0.0131309908, -0.0150851747, 0.00427389843, 0.046338059, 0.0255871564, 0.00681504048, 0.0209055506, -0.00636164192, -0.0111065125, 0.0180797148, 0.0201744884, -0.0181078333, 0.0129411966, 0.0103403041, 0.0287222862, 0.00719111552, -0.011774309, -0.00934212375, 0.0299172904, -0.0189091899, -0.0221567899, 0.0184311867, 0.0239844434, 0.0281739887, -0.0172221232, 0.024842035, -0.00989041943, 0.0502745435, 0.000252181111, 0.0210039616, 0.0174189489, 0.024068797, -0.00148848363, -0.0196543094, -0.0168847106, -0.00999586098, 0.00943350606, -0.019330956, 0.00453047315, -0.00574656576, 0.0250388589, -0.0135105802, 0.0294674058, 0.0182765406, -0.0052755936, -0.00560597703, 0.000169036022, 0.0218615532, 0.0137566114, -0.0145228198, -0.0085970033, 0.0212991983, 0.00210004463, 0.0167300627, 0.00175648089, -0.0101645682, -0.00028644962, -0.0196964871, 0.00235661934, 0.00786594115, 0.0163645335, 0.0013083542, -0.00495575415, 0.0150711164, -0.00193485292, -0.00452344352, -0.00732467463, 0.00393648539, 0.00210355944, -0.0141362008, -0.0189794842, 0.00183644076, 0.0217209645, 0.0026377968, -0.0137987873, 5.49998622e-05, 0.0390836783, -0.0111908661, -0.000278102147, -0.00792920683, -0.0128568429, -0.00291721686, -0.00197527208, 0.0274991635, 0.0194012504, 0.0059715081, 0.00296993763, 0.0155631769, -0.00124245323, 0.00553568266, -0.00682558492, -0.00311404117, -0.000273708749, -0.0102840681, -0.0147337029, -0.0204837844, 0.0135105802, 0.00958112441, -0.0424859263, 0.00301035703, 0.0242937393, 0.0297485832, 0.0106988056, 0.00334601267, 0.00650926, -0.0234361477, 0.0226488505, -0.00761288172, 0.00333546847, 3.31976225e-05, 0.00430904562, -0.00650926, 0.012624871, 0.00924371183, 0.0019594559, 0.0174892433, -0.0142627303, 0.0108464239, 0.0125264591, 0.0152819995, 0.00779564725, 0.0030701072, -0.0128216958, 0.0153944697, -0.00560246222, -0.00185401435, -0.00381347025, 0.00563058024, -0.0174611248, 0.000948974164, -0.0145228198, -0.00428444287, -0.0107550407, 0.0118727218, 0.000815414882, 0.00790811796, -0.0244905632, 0.0228316151, -0.00355513836, 0.0152257634, -0.022213025, -0.0227472633, -0.00448478153, -0.0298610535, 0.0329258889, 0.0174330082, 0.0039189118, -0.015253881, -0.011830545, 0.017362712, 0.0249545071, -0.0380433202, 0.0197105445, -0.0240266211, -0.0254887436, 0.0257418025, 0.00582740456, 0.0121749872, 0.0321385935, -0.0221708491, -0.0151554691, -0.0140167, -0.00508931326, 0.0097498307, -0.00379941147, 0.0052545052, 0.00328099029, 0.0103965392, -0.00797841232, -0.0094475653, 0.00313337217, -0.00136986177, 0.00305604842, 0.00396460341, 0.0183749516, -0.014480643, -0.0264588054, 0.00853373855, 0.0229019094, -0.001759117, 0.0136511698, 0.000748635211, -0.0280896351, 0.00240231049, -0.00831582583, -0.000645829656, 0.0099115083, 0.0114509547, 0.0239422675, -0.00188916153, 0.00249720807, -0.0170534179, 0.0127443718, 0.0198792517, -0.010438716, 0.0196261927, -0.0141783776, -0.000838260516, 0.0282161664, -0.00406301534, 0.00713136513, 0.0247998592, -0.016800357, 0.0165332388, 0.0161677077, -0.0220021419, -0.0145931141, -0.0235205013, -0.0191341322, -0.0273585748, 0.0107128639, 0.0158021767, 0.0257418025, 0.00466403225, 0.0116899563, 0.0178125966, 0.00150957191, -0.0312669426, -0.0241953265, -0.0170815345, -0.0170253, 0.00158689567, 0.0157881193, 0.0187123641, -0.0343598947, -0.021285139, -0.0067798933, -0.00207544165, 0.00870947447, 0.00364476372, 0.00124069583, -0.0129341669, 0.0156615879, 0.00608046399, -0.0171940066, 0.00488546, -0.00340224826, 0.0235064421, -0.0222692601, -0.0264588054, 0.00578522775, -0.0147337029, -0.0209758449, -0.0158865303, 0.0322510637, -0.0293549355, -0.00464645866, -0.0314075314, 0.0115915444, -0.00627025915, 0.00806276593, 0.000446149672, -0.00569736, 0.0180656575, -0.0172502417, -0.0222411435, 0.00797841232, 0.00731061585, -0.00873759203, -0.00990447868, 0.0204416066, 0.00580983097, -0.00501198974, -0.0130466381, 0.00208774325, 0.00392945623, 0.0037291171, 0.00638975948, -0.0420922786, -0.0109588942, 0.0141151119, -0.0110783949, -0.0188248362, -0.00170463882, 0.013686317, 0.000721396122, 0.00239879591, -0.00681152567, -0.0119781634, 0.0125967534, 0.0290175211, -0.00758476416, -0.0312950611, 0.0275413394, -0.00615075883, -0.00164840335, -0.0126389302, -0.00162204297, -0.00901174, -0.0152960578, 0.00454804674, 0.00708215917, 0.00447423756, 0.00296466565, 0.0158443544, 0.0220864955, 0.0805854797, 0.018037539, 0.027007103, -0.0106495991, 0.00282056211, 0.0129763437, 0.0269086901, 0.00733170426, -0.0271898676, 0.00484679779, -0.00298751122, 0.0160130616, 0.00780267641, -0.0100028906, 0.016856594, 0.00690642325, 0.0129130781, -0.00920153502, -0.00553216785, 0.00938430056, 0.0216928478, -0.00734576304, 0.00715245353, 0.00410167733, 0.00908203423, -0.00148760492, -0.0106495991, -0.000127847918, 0.0146493493, 0.0108393943, 0.0132926684, -0.0111346301, -0.0250669774, -0.0124561647, 0.0121187521, 0.0140307592, 0.0116196619, 0.0139885824, -0.0147337029, -0.0102770394, -0.0151976459, 0.000659009849, 0.000629134709, 0.000783343043, 0.0115423379, 0.0105511872, 0.00623862678, 0.000942823419, -0.0150992339, 0.0066076722, -0.0165051222, 0.00425632484, 0.00515960762, 0.0212710798, 0.00573602179, -0.0263182167, 0.00185401435, -0.0259526875, 0.00806979556, -0.00126969232, 0.0178547744, 0.0048503126, 0.00505768089, 0.00372560229, 0.00778861763, -0.00101839, -0.0189794842, -0.00437582564, 0.018557718, 0.022213025, 0.00188740424, -0.0144244079, -0.0113384845, -0.00648114225, 0.0128919901, -0.0164207686, -0.01051604, 0.0103543624, -0.00655846624, 0.011928957, 0.00192430872, 0.000419130258, 0.0138198761, -0.00180656568, 0.00534940278, -0.014094024, 0.00469215028, 0.0281458721, -0.00301738642, 0.0129482253, 0.0142908487, -0.0095389476, -0.0089414455, 0.0149727035, -0.0188388955, -0.00149199832, -0.017109653, -0.020919608, 0.00629134756, 0.00328977709, 0.0180515982, 0.0126178423, 0.00718760071, -0.018192187, -0.0156756472, -0.0205259603, -0.000250863086, -0.00844235532, -0.00467809103, -0.00211234624, -0.0178266559, -0.00655846624, 0.00271336315, -0.00205611065, 0.0198511332, -0.00809791312, 0.000906797533, -0.00997477304, 0.00629837671, 0.000688885, -0.04082698, -0.0108323647, -0.0186842475, -0.0334601253, -0.0132996971, 0.0265712775, -0.0149164684, 0.00162116427, -0.00272039277, 0.0192184839, -0.0282302238, 0.0224239081, 0.0230706166, -0.00380644086, -0.0151976459, 0.00260264962, 0.0215100814, 0.0091945054, 0.0047694738, 0.0300859958, 0.00221778778, 0.00252181105, -0.0180094205, -0.0151976459, 0.0205400195, 0.0104176281, 0.0136652282, -0.000755225308, 0.000963911763, -0.0189935435, -0.0308451764, 0.00903985742, -0.00979903713, -0.001536811, -0.00428795721, -0.00377480849, -0.00286098151, -0.0301422328, -0.014635291, -0.0118375747, 0.003982177, -0.0160692967, -0.00120203395, -0.0136441402, 0.00234080292, -0.000126420055, 0.0280474592, -0.00187334535, -0.00466403225, 0.000296334765, -0.0156756472, -0.00665336335, -0.00099202944, -0.00718057156, 0.0115634259, 0.015310117, 0.0101223914, -0.000556643645, 0.0076269405, -0.0193871912, -0.0200057812, 0.00717354193, -0.0119219273, -0.0239422675, 0.00471323868, 0.0297767017, -0.0180094205, -0.0234923828, 0.0107409814, -0.00624565594, 0.0160692967, 0.0102418922, 0.0177141856, 0.00982715469, -0.00698023243, -0.0202869587, 0.00532128476, 0.00878679845, -0.0234220885, -0.00717705674, -0.00907500461, 0.00889926869, 0.0186420698, 0.000848365366, -0.0284411069, -0.00556731503, -0.0050611957, -0.00237419293, -0.00981309637, 0.0208914913, -0.0274148099, -0.00977092, 0.00866729766, 0.00632649474, 0.00529668201, 0.0255730972, -0.000479319831, -0.00321421074, 0.0103051569, 0.00740199862, 0.0112611605, 0.0144525254, 0.0312950611, 0.0145509373, 0.0205821954, 0.00251478166, -0.0042141485, -0.00170903222, 0.00431256043, -0.0243640337, -0.0136792874, 0.00370451412, 0.0146493493, 0.00781673566, -0.0198651925, 0.00510688685, -0.00624565594, -0.0138972, 0.00438285479, 0.0023952811, 0.00689587928, 0.0076480289, -0.0236048549, 0.0125053711, 0.00223887619, -0.00140149426, 0.0478564166, 0.0147758797, -0.00419306, -1.39627709e-05, 0.00893441588, 0.0141924359, -0.00245678867, -0.00178547739, 0.0191341322, 0.00628431793, -0.00338818925, 0.0103262449, -0.0157318823, -0.0115001611, 0.00253059785, 0.0122031048, 0.00903985742, -0.0274007507, -0.00670256931, 0.00651277462, -0.00280123111, 0.00602774322, -0.0165894739, 0.0127443718, 0.000784221746, -0.00160183327, -0.0010957137, 0.0190497786, 0.000257013831, -0.00409816252, -0.00403489778, 0.00702240877, -0.0054267263, 0.0193168968, -0.0010719893, 0.014171348, 0.0140096704, -0.0132012852, 0.0229300279, -0.0178407151, 0.0127865486, 0.011753221, 0.0073035867, 0.014789938, 0.0122031048, 0.00581686, 0.0056376094, 0.0033126229, 0.0223957915, 0.0161114726, -0.00342685124, 0.00227402337, -0.00618942035, -0.0165191796, -0.0220021419, 0.0147196436, 0.00352174859, 0.0108886, -0.0118235154, -0.0312669426, 0.0206524897, -0.00499441614, 0.000741166412, 0.020919608, 0.015928708, 0.0152960578, 0.0123858703, 0.00354986638, -0.00324057112, 0.00469215028, -0.00337061565, -0.00403138297, -0.0128287254, 0.00624214113, 0.00163873786, -0.00379238208, -0.0287644621, -0.00713488, -0.0126600182, -0.000805310032, 0.00789406, 0.0183468349, 0.0147477621, -0.0129271373, -0.0187826585, 0.00598556688, -0.0146493493, 0.00374669069, -0.0150148803, 0.0175173599, -0.00154296169, 0.00644599507, -0.0242515616, 0.0198089574, 0.00043824155, -0.00600314047, 0.0114017492, -0.0135386987, -0.0125897238, -0.0116688674, -0.00802761875, -0.00839315, -0.00599611085, 0.00435825204, -0.0030824088, 0.00877976883, 0.00967953634, 0.00225469237, -0.00544078555, 0.0135386987, 0.0259526875, -0.0059117577, -0.0230284408, 0.0119641041, -0.00823147222, -0.00417900132, -0.0214960221, -0.00121257815, 0.00345672644, 0.0166878868, -0.0115001611, -0.00409816252, 0.0127724893, 0.0303109381, 0.00651277462, -0.0176157728, 0.00721220393, 0.01152125, -0.00497332774, 0.0175033025, 0.0092858877, 0.00723329233, -0.00863215048, 0.0190638378, -0.00346199842, 0.000564551796, -0.0124561647, 0.00619293517, -0.0144665847, 0.00280650333, -0.00744417543, -0.0306764692, 0.00493466575, 0.0103965392, 0.0068607321, -0.0152257634, -0.0108112767, 0.00131626229, 0.0015420831, 0.00958815403, -0.00510688685, -0.0102208033, 0.00583794853, -0.0021914274, -0.0138761112, -0.00616481761, 0.00700132083, -0.00459022308, -0.0155491177, -0.0062034796, -0.0015253881, -0.00321948272, -0.00727546867, 0.0138479937, 0.00215803762, 0.0108112767, 0.0137144346, 0.00178284128, 0.0169128291, -0.0079713827, 0.00604180247, -0.00274499576, 0.0246030353, -0.0122663705, -0.00702240877, -0.012371812, 0.0116477795, 0.0213132575, -0.011465014, -0.0374247283, 0.0139464056, 0.0216647293, -0.0264588054, 0.0272461027, -0.00680449652, -0.00364476372, 0.0335444808, 0.00270457636, -0.00877976883, -0.000291721692, 0.0233096182, 0.00127144973, -0.0229019094, -0.0141924359, 0.003982177, -0.00280826073, 0.00214573601, 0.00799247157, 0.0110432478, -0.00186455855, -0.00134789478, 0.00106847461, -0.00576413935, 0.0133067267, 0.0152679402, 0.00878679845, 0.0343036577, 0.00255871564, -0.0128709013, -0.030563999, -0.0112611605, -0.00835800264, 0.00386619102, 0.0190778952, -0.0163082965, 0.0058695809, 0.0183327757, -0.0101715978, -0.00774644129, -0.00318785035, 0.0203150772, 0.00347781461, 0.00184171286, 0.0103332745, 0.00244273, -0.00674474612, 0.0106495991, 0.0171799473, -0.0301141143, -0.00905391667, 0.014846174, 0.00649168622, 0.0208352562, 0.00297696725, 0.00076269405, 0.00591527252, 0.00625971472, -0.00887818076, 0.0024339431, -0.0141924359, -0.00891332794, 0.000708215928, 0.000120598801, 0.0156615879, -0.00854076724, -0.000198361959, 0.00251302426, 0.0342755429, -0.0294674058, -0.0320823565, -0.00750744, -0.0390555598, 0.00123278773, 0.0221427307, 0.00191024994, 0.0176720079, 0.00888521, -0.00464997347, 0.0178266559, 0.00801355951, 0.014382231, 0.00223360397, -0.0190638378, -0.0235064421, -0.0256715082, 0.0099607138, -0.00913827, 0.0107691, 0.00262198062, -0.00555677107, 0.00685370248, 0.00831582583, 0.00166861294, 0.00783782359, 0.00983418431, 0.0110221598, -0.00491357734, 0.00586606655, -0.0100450674, 0.00426686928, -0.00894847512, -0.0226769689, 0.014094024, -0.00341630704, 0.0125616062, 0.00841423776, -0.00346902781, 0.00903985742, 0.00535643194, -0.0302828215, -0.0161114726, 0.0221708491, 0.0151835866, 0.00433716364, 0.00137161918, -0.000942823419, 0.00468863547, -0.00787297077, -0.0128919901, -0.0362437852, 0.00648465706, 0.00828067865, 0.0136933457, -0.023914149, -0.00847047288, 0.00480110664, 0.00321245333, 0.0176860671, 0.00340224826, 0.00655495143, 0.0215382, -0.0175454784, -0.012238252, 0.00315270317, 0.023815738, 0.00671311375, -0.0307045877, -0.0113525428, -0.0183468349, -0.00415439811, -0.00472378265, -0.0053142556, 0.000619029917, -0.0274991635, 0.0220162012, -0.0134684043, 0.0110854246, 0.0073035867, 0.00215803762, -0.0252356846, -0.0221989658, -0.0212148447, 0.00815414824, -0.00395405898, -0.0124350768, -0.0292705819, -0.00840720814, -0.00563058024, -0.00325638731, 0.00114140508, 0.0185717754, -0.0282302238, -0.00114316237, 0.012681107, 0.0159427654, -0.0120133106, -0.0118938098, -0.00575711, 0.00659712777, 0.0173767712, -0.00668499572, 0.01314505, -0.00543727074, 0.00867432728, -0.0105722751, 0.0248982701, 0.0145228198, 0.0103051569, -0.00830879621, -0.00564112421, 0.00499090133, 0.0161395911, -0.00724032149, 0.00364827854, -0.0279631056, -0.0129763437, 0.0227753799, 0.0185155403, 0.00924371183, -0.00207192707, 0.00126529892, 0.00321596814, 0.00483625382, 0.0152679402, 0.0125897238, -0.00527910842, 0.0306764692, -0.00212113303, 0.0163645335, 0.0239844434, -0.00537752034, -0.00662173098, -0.00099730154, -0.0281458721, -0.0048292242, 0.00932806451, 0.00454453193, -0.00122663705, 0.00523693161, -0.00473081227, -0.0300859958, 0.00544781471, -0.000767087447, 0.0240547378, 0.00144718564, -0.0261916872, 0.00129341672, 0.018810777, -0.0137917586, -0.0079221772, -0.00740902824, -0.00239000912, 0.0338256583, -0.00823147222, -0.0244202688, -0.0212148447, -0.00423875125, 0.00692399684, 0.0101645682, 0.0319136493, 0.00435473723, 0.00896956306, -0.0155491177, 0.0125897238, 4.81900952e-06, 0.0164488852, 0.00336358626, 0.0208071377, -0.00779564725, 0.00504362211, -0.00642490666, -0.0189513657, -0.00124860404, -0.000913827, -0.00113525428, -0.0127654597, 0.0121960761, -0.00201217667, 0.0118235154, -0.00802761875, -0.01152125, 0.00128550851, 0.0189232491, -0.000898450089, 0.0153663522, 0.0135386987, 0.00790108833, -0.00420711888, -1.76697013e-05, 0.0214538462, 0.0127724893, -0.00550405029, 0.0363281369, 0.0150992339, 0.0109096887, -0.00227753795, 0.00102102594, -0.00192958082, 0.0121468697, 0.000121147976, 0.0196121335, -0.0171377715, 0.00771832326, 0.00433364883, 0.0132926684, 0.00263076741, 0.0274288692, 0.00375372, -0.0076691173, -0.00925777, -0.0119992513, -0.00692048203, 0.00299102603, 0.0151554691, 0.0120414281, -0.0128287254, -0.00476595946, -0.00147969683, -0.00462537026, -0.00243218569, -0.0202447828, -0.0113033373, 0.0264588054, 0.0151835866, 0.00564463902, 0.0146915261, -0.0133699914, -0.0142064951, -0.0171237122, -0.0133418739, -0.00214222143, -0.00705052679, 0.0273445155, 0.0165754166, -0.00921559334, 0.0139182881, -0.0495153628, 0.0100380378, 0.0235626772, -0.0228175577, 0.00920153502, -0.00889926869, 0.0147337029, 0.0123366648, 0.0247014463, 0.00496629812, -0.00517718121, 0.00552865351, 0.0153944697, 0.00602422887, -0.000687566935, -0.00840720814, -0.0100099202, -0.00654089265, 0.017728243, 0.00685721729, 0.00996774342, 0.00699429121, -0.0118656922, 0.00326517411, -0.00380995567, 0.00308416621, 0.0192044266, -0.00522287283, -0.0243499745, 0.00258331862, -0.00228105276, 0.0125475479, 0.014635291, 0.00188388955, 0.00069371768, -0.00636515627, 0.0110994829, -0.000667357293, 0.0102208033, -0.000848365366, 0.0182484221, 0.0213554334, 0.0182905979, -0.00887818076, 0.00233904552, 0.0192606617, -0.0142064951, -0.00616130279, -0.00993962586, 0.00863215048, -0.0109659238, 0.0136581985, 0.00565518299, -0.0242515616, 0.00717354193, -0.00816820748, -0.0092858877, 0.0111627486, 0.00514554884, -0.0136441402, -0.00689236447, 0.0192325432, -0.0252778605, 0.0059117577, 0.010614452, -0.0133629628, -0.00429498684, 0.0300578792, -0.00349187362, -0.0176157728, -0.00404544175, -0.00440042838, -0.00521935802, 0.0145790549, 0.0314075314, -0.00678340811, -0.0199495461, 0.0131801972, -0.00780970603, 0.00406653, -0.00402435334, -0.0272601619, -0.00420711888, 0.0199636053, -0.000898450089, 0.00160446926, -0.00271160598, -0.0160974134, -0.00985527225, -0.00721220393, 0.0087305624, -0.00736685144, 0.00152450951, 0.0192887783, 0.0184311867, -0.00471323868, 0.00806979556, -0.0109448358, -0.0099607138, -0.00853373855, -0.00101136044, 0.0370592, -0.0175173599, 0.00382401445, 0.0194153097, 0.00935618207, -0.0236189123, -0.00337237306, -0.00206489745, 0.00892738719, -0.0192466024, -0.0129552549, 0.0041122213, -0.0168706514, 0.00555325625, 0.0246733297, -0.0112049244, -0.0129833724, 0.00092612853, 0.0132012852, 0.0144525254, -0.0205259603, 0.00386970583, 0.014480643, -0.00275905454, 0.0294392873, -0.00435825204, -0.0111557189, -0.0178407151, -0.00220900099, -0.00873759203, 0.00855482649, 0.011310366, -0.0107761286, -0.0106285112, -0.00717705674, -0.0171658881, -0.00321772532, -0.00974280201, 0.0104035689, -0.0108464239, 0.0137425521, -0.00472026784, 0.00927182939, 0.00295060687, 0.0127092246, 0.0377621427, 0.0193168968, -0.0181781277, 0.00444612, 0.00688884966, 0.00344969681, 0.025769921, 0.00757070538, -0.0104527753, 0.010537128, 0.00170815352, -0.00515257847, 0.00459022308, 0.00891332794, 0.00492412178, -0.00350241759, -0.00393297058, 0.0119851921, -0.00867432728, 0.00823850185, 0.0056586978, -0.0226488505, 0.0100802146, 0.00523693161, 0.00133383588, 0.00470620906, -0.0209617857, -0.00174945151, -0.0193450153, 0.00864620879, -0.00321069593, -0.00304726162, -0.00139270746, -0.00250072265, 0.0270914547, 0.0254325084, 0.0283848718, 0.00296290824, -0.00366233732, -0.0144384662, -0.00560949184, 0.000806628086, -0.0173908304, -0.00108341221, 0.00816820748, -0.0133559331, -0.0231830887, -0.0037185729, 0.0142557006, 0.00310525438, -0.0195699558, 0.00283637829, 0.0126670478, -0.0087305624, 0.00733170426, -0.0076902057, -0.0140377888, -0.0286941677, 0.00428795721, 0.00938430056, -0.0129341669, 0.000909433584, 0.0176438913, -0.00971468352, -0.00193661032, 0.00316500454, -0.0130185196, -0.0068009817, -0.000521057111, 0.0148321148, -0.0301422328, -0.000860666856, 0.00185752905, -0.0139112584, -0.00887818076, 0.000497772126, -0.00492412178, 0.00945459493, -0.0210742559, 0.0109940413, -0.00267997338, -0.016181767, -0.00907500461, -0.0023847369, -0.0154366465, -0.0261495113, 0.0045972527, -0.0039189118, -0.0177704208, -0.00366936694, 0.015000822, -0.00588012533, -0.00627025915, 0.00949677173, 0.00594690489, 0.0120976632, 0.0121468697, 0.0530300848, -0.000922613777, -0.034163069, 0.00327747571, -0.0181781277, -0.0022019716, 0.0135105802, -0.0298048183, 0.0202447828, 0.00943350606, 0.0328134187, 0.00629134756, 0.016336415, 0.0193731319, 0.014536879, 0.0135035515, -0.0054267263, -0.000550053548, -0.0103965392, 0.000400678, -0.00167827844, 0.0159568246, -0.00496629812, 0.00391188264, -0.00783079397, -0.000806188735, -0.00337237306, -0.00316324737, -0.0174892433, 0.0170674771, -0.00365882274, -0.018192187, -0.0234783236, 0.0104105985, -0.0129763437, 0.0145228198, 0.00297520985, 0.0115774851, -0.025516862, 0.010923747, -0.00334425527, 0.00646708347, -0.00269051758, 0.0165332388, 5.42310181e-06, 0.000782903691, 0.00898362231, -0.000301167514, 0.0074160574, -0.00329153449, -0.0298891719, 0.00428444287, -0.0106917759, -0.0135246394, -0.0333476551, 0.0058695809, 0.0112260133, -0.00580631616, -0.00605586125, -0.0177001264, -0.00439691357, -0.0120836049, -0.0102770394, -0.0117602507, 0.00892738719, -0.0139182881, -0.00140500895, 0.0108815711, 0.00597502245, 0.00113613298, 0.00683261408, 0.0156194121, -0.0110783949, 0.0015508699, -0.000877801096, -0.0143470839, -0.0157178249, 0.00543375593, -0.000567187788, -0.024321856, -0.00159480388, -0.022887852, 0.0159427654, 0.0287785213, 0.000388596149, 0.0123647824, -0.00574305095, -0.00939132925, -0.00590472808, 0.00761991134, -0.0104808928, -0.00628783274, 0.0015166013, 0.00746526336, -0.00095073157, -0.000336973695, 0.0119430162, 0.0125405183, 0.0115001611, 0.00365530793, 0.0013285639, -0.0013136263, 0.00457967911, 0.0136511698, 0.0170253, -0.00754258735, -0.0261635706, 0.00210707425, -0.0143611431, 0.0278506353, 0.0151414108, 0.00607694965, -0.00165806874, -0.00692048203, 0.00831582583, -0.0125967534, -0.00982715469, 0.00248314906, 0.00750744, 0.00676583452, -0.00353229279, -0.00692048203, -0.00215628021, -0.0100872442, 0.000914705684, -0.01576, 0.0139042288, 0.00761288172, 0.00136107497, -0.00118885376, 0.0149867628, 0.013608993, 0.0128849605, 0.00239176652, -0.014846174, -0.011830545, 0.00556028588, -0.0123015177, -0.0132294027, -0.0101926858, -0.00691345287, -0.00790108833, 0.00579928653, -0.00398569135, 0.0109518655, -0.0142838191, 0.00771129411, -0.00601368444, 0.00891332794, 0.00866729766, 0.00332843908, -0.0131028732, 0.0286238734, -0.00146651664, 0.00744417543, 0.00827364903, 0.0082244426, -0.0175735969, 0.00651980424, 0.0108745415, -0.00719814515, -0.0200198404, -0.0184733644, 0.00663930457, 0.00508579891, -0.00275026774, 0.000119061115, -0.0107409814, 0.000756982656, -0.0208914913, -0.00700483518, 0.00889926869, 0.00422117766, 0.0151414108, -0.014171348, 0.00545132952, 0.00893441588, 0.00998180266, 0.0125897238, 0.00775347045, 0.0233658534, 0.0220443197, 0.00411925092, -0.0406863913, -0.00122048624, 0.0175173599, 0.000634846161, -0.00787297077, -0.000332360622, -0.00507525448, -0.016955005, 0.0113736317, -0.00808385387, 0.0252216253, -0.0182624813, -0.0126178423, 0.00863215048, 0.00613669958, -0.0127162542, -0.0106425695, -0.0155350585, -0.0028100179, -0.00302968803, -0.00951786, -0.025615273, 0.037565317, 0.0042141485, -0.00534237316, 0.0219037309, 0.0138550233, 0.00812603068, 0.00515960762, 0.000654616451, -0.000550492899, 0.0182062462, 0.00861106161, -0.0142557006, -0.0209617857, -0.00140325166, 0.00193485292, 0.012758431, -0.0185858347, -0.0121960761, 0.025516862, 0.000264043279, 0.0035164766, 0.00161501346, -0.0116548091, -0.000791251136, -0.00156844349, -0.0151554691, 0.0117040146, -0.00723329233, -0.00409464771, -0.00948271248, 0.00110889389, -0.0144244079, -0.00490303338, -0.0328415371, 0.00384158804, -0.00867432728, -0.023140911, 3.33074568e-05, -0.00503659248, -0.00310525438, -0.0109940413, -0.00412979489, -0.00350768981, -0.00108956301, 0.00976389, 0.0154366465, -0.0152257634, 0.022114614, 0.0114790732, 0.0026465836, -0.0128216958, -0.0184874237, 0.0203713123, -0.000471851061, -0.0121117225, 0.0120133106, 0.0130255492, 0.00449532596, -0.0247295648, -0.0084353257, -0.0117391618, -0.00250599487, -0.00696617365, 0.00399272097, -0.0128990198, 0.0125616062, 1.19582828e-05, 0.00927885901, -0.0208914913, -0.00409113336, 0.0171377715, -0.00547944708, 0.00350944721, -0.00580280134, -0.00202975026, -1.76147842e-05, 0.00659712777, 0.0074371458, 0.00578522775, 0.0110151302, 0.00191727933, 0.017362712, -0.000710852, 0.0151835866, 0.0484750085, -0.00513149, -0.0153241754, 0.0111135421, -0.0247576814, -0.00103684212, 0.0109518655, 0.0043863696, 0.00952488929, 0.0156053528, -0.00200338988, 0.0195558984, -0.00364476372, -0.00982012507, 0.0111135421, 0.00535994675, -0.0102137737, -0.00773941167, -0.0183608923, 0.00171254692, -0.0061226408, -0.0205962546, 0.0434419289, 0.0118235154, 0.00807682518, -0.00489600375, 0.0125264591, 0.00267821597, 0.0099115083, -0.0124561647, 0.00191552192, 0.0139323473, 0.00472729746, -0.0102840681, -0.00260089221, 9.11081152e-05, -0.0028504373, -0.0146774678, -0.0017626317, -0.0150851747, 0.00915935822, -0.0158443544, -0.0247858, -0.0291299932, -0.00296115084, -0.00555325625, 0.0121187521, 0.0103684217, -0.0115142204, -0.0206524897, 0.00818929542, -0.0047519, -0.0386900306, -0.0181218926, -0.0140659064, 0.0105441576, 0.0230003223, -0.0135176098, 0.00158865307, 0.00714190956, 0.00378886727, 0.0218896717, -0.0234220885, -0.0252216253, -0.00749338139, -0.00101926853, -0.0100942738, -0.00344266742, 0.0096584484, 0.00670256931, -0.00243921508, 0.0120906336, 0.00897659268, 0.00685370248, -0.0125334887, 0.00395054417, 0.000102695703, 0.00316851935, 0.00847047288, 0.000577292638, -0.00866729766, -0.0181640685, -0.0117251035, -0.0146493493, -0.00515960762, -0.0072051743, -0.00602071406, -0.0144947022, -0.00227050856, 0.00120642735, 0.0216787886, -0.00334074069, 0.0203010179, -0.024321856, -0.0144103486, 0.00104475033, 0.0168284755, 0.00518069603, 0.000313249358, 0.00698374724, -0.0183327757, -0.0228175577, 0.00777455885, -0.027934989, 0.00556731503, -0.00664984854, 0.0175735969, -0.0147055853, 0.0212148447, 0.0146634085, 0.00607343484, 0.012217164, -0.029326817, 0.0164629444, 0.0123507231, 0.0246452112, -0.0127303125, 0.0232112054, -0.00949677173, -0.0262619816, 0.00126969232, -0.00556028588, 0.00361664617, 0.00435122242, 0.01138769, -0.0128849605, 0.00435473723, 0.026697807, 0.000355865312, -0.0052931672, 0.000992908143, -0.0101856561, -0.00607343484, -0.00504010729, 0.00158777437, 0.00770426448, 0.00681152567, 0.0111346301, -0.00283462112, 0.0289894044, 0.0111135421, 0.0102137737, 0.019485604, -0.0105582168, -0.0153663522, 0.00447072275, -0.0268665142, 0.00605937606, 0.00574305095, 0.0167863, 0.0259808041, 0.0211023744, 0.0201463699, 0.00689236447, 0.0154366465, -0.00619293517, -0.0095670661, 0.0130466381, 0.0186139531, -0.00899768155, -0.00869541522, 0.0117813386, 0.00140500895, 0.0510618389, -0.00554974144, -0.00913827, 0.00871650409, -0.00182413927, -0.0165613573, 0.0141080832, -0.00188740424, 0.00840017851, -0.0411081575, 0.0119641041, -0.0179110095, 0.00713839475, 0.00998883229, 0.00457264949, 0.00521935802, 0.0195277799, 0.00139270746, 0.0155912945, -0.0103824809, 0.00319312233, 0.00195418391, 0.0184311867, 0.0157037657, -0.000913827, 0.0177001264, 0.00412979489, -0.0140377888, 0.0130185196, 0.0120906336, 0.0190357193, -0.00447423756, 0.00236892072, -0.0151976459, 0.0326165929, 0.00559191825, 0.00295939366, -0.0114087788, -0.00727546867, 0.00292951846, 0.0102418922, -0.00420360407, 0.00509985769, -0.00343739544, -0.00986230187, -0.012624871, 0.0045972527, -0.00208422844, -0.0100942738, 0.00626322953, -0.00400326541, -0.0143541135, -0.00517015206, -0.00306834979, 0.00650926, 0.0052123284, -0.0165051222, -0.0184733644, 0.00989744905, 0.00359907257, 0.00869541522, 0.00483625382, -0.00118182437]
|
17 Jul, 2023
|
Which tag is used to define the header for HTML document ?
17 Jul, 2023
The <header> tag in HTML is used to define the header for a document. It contains information related to the title and heading of the related content. The <header> element is intended to usually contain the section’s heading (an h1-h6 element or an <hgroup> element), but this is not required.
The <header> element can also be used to wrap a section’s table of contents, a search form, or any relevant logos. The <header> tag is a new tag in HTML5 and it requires a starting tag as well as an end tag. There can be several <header> elements in one document. A <header> tag cannot be placed within a <footer>, <address>, or another <header> element.
In this article, we will discuss the tag that will define the header for an HTML document.
Syntax:
<header> ...</header>
Example: In this example, we will see the tag which is used to define the header of the HTML element.
HTML
<!DOCTYPE html>
<html>
<head>
<title>
How to define a header for a document
or section using HTML?
</title>
<style>
h1 {
color: green;
}
body {
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>GeeksforGeeks</h1>
<h2>
How to define a header for a document
using HTML?
</h2>
<p>
<a href=
"https://www.geeksforgeeks.org/fundamentals-of-algorithms/">
Algo</a> |
<a href=
"https://www.geeksforgeeks.org/data-structures/">
DS</a> |
<a href=
"https://www.geeksforgeeks.org/category/program-output/">
Languages</a> |
<a href=
"https://www.geeksforgeeks.org/company-interview-corner/">
Interview</a> |
<a href=
"https://www.geeksforgeeks.org/student-corner/">
Students</a> |
<a href=
"https://www.geeksforgeeks.org/gate-cs-notes-gq/">
Gate</a> |
<a href=
"https://www.geeksforgeeks.org/articles-on-computer-science-subjects-gq/">
CS Subjects</a> |
<a href=
"https://www.geeksforgeeks.org/quiz-corner-gq/">
Quizzes</a>
</p>
</header>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?
|
https://www.geeksforgeeks.org/which-tag-is-used-to-define-the-header-for-html-document?ref=asr10
|
CSS
|
Which tag is used to define the header for HTML document ?
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0107264593, 0.01894808, -0.0138185555, 0.0315441787, 0.047148481, -0.00689729303, -0.0104567995, 0.0102470648, -0.0537881, -0.0103489356, 0.0380639508, 0.000269659591, 0.00909052417, -0.0395500734, -0.0360025503, 0.00909651723, -0.0227472838, 0.00973770767, 0.00805982575, -0.0113017326, 0.0245689843, 0.0105287088, -0.0356669761, -0.00453927, -0.00867704675, 0.00568682095, -0.00311007397, 0.0110800127, 0.013063509, -0.00662164111, -0.00925232, -0.0103549277, 0.0151968161, -0.0389028899, -0.0343246683, 0.0153765893, -0.0189600661, 0.0518225804, -0.0203982498, 0.00397598092, 0.0453267805, -0.00567483623, -0.00486885384, -0.0308730267, -0.00113481749, 0.00604337081, -0.00150260318, -0.0285000224, -0.01894808, -0.0355231576, 0.0137826009, 0.0341089405, 0.0219682679, 0.0523499139, -0.00488383463, 0.00342467683, 0.0251682289, 0.0110620353, -0.0411081053, 0.0100073665, -0.00190709252, -0.0747376531, -0.0280445963, -0.00479994062, -0.0277090203, -0.00780215068, -0.0167788193, 0.0211173426, 0.0442960821, -0.0313524231, -0.00660965592, -0.0128118265, 0.0102350796, 0.0624172054, -0.0169466063, -0.050288517, 0.00393103762, 0.00524038449, -0.0337973349, 0.024616925, -0.00900663063, 0.00974969193, -0.0100253439, 0.0157001801, 0.0554180406, 0.00429058354, 0.0126080839, -0.0295786615, 0.0237540137, -0.00748455152, -0.0108043607, 0.00952198, 0.00964182802, -0.0115054762, -0.00370931742, 0.020122597, -0.0145136779, 0.0135189341, -0.0352834575, -0.0181091391, -0.0271097776, 0.00855120551, 0.000775271328, -0.0124283107, -0.013399085, 0.00858116709, 0.0295786615, 0.00968377572, -0.0182409734, -0.0253839567, 0.00769428676, -0.0260071699, -0.032239303, 0.0247367732, -0.0110260807, 0.0224716328, -0.00390107534, -0.0872019157, 0.0399815291, 0.0386631936, -0.0428818688, -0.038519375, 0.0201585516, 0.0498091206, -0.0629445389, 0.0261030477, -0.0298902672, 0.00427859882, 0.00566884363, -0.021920329, -0.0374407358, 0.0349958204, 0.0161196515, 0.0217285696, 0.0163473636, 0.0217645243, 0.0138664953, -0.00142769772, -0.0128597664, -0.025336016, -0.00757443812, -0.0134470249, -0.0186005197, -0.000388759247, 0.011715211, 0.000715721515, 0.00211383146, 0.0412039869, -0.0481552109, 0.0153526189, -0.00990549568, -0.00204192242, -0.0306812692, -0.0158200283, -0.0018471682, -0.0270378683, 0.0423305631, 0.00330482796, -0.045854114, 0.0113916192, 0.00970175304, -0.0375605859, 0.0193076264, 0.0523499139, -0.0395500734, 0.0617939942, 0.0186604429, -0.00388609432, -0.0169346221, 0.0228311792, -0.00315801334, 0.0250723492, -0.00387111329, 0.0135309193, -0.0436249301, 0.003868117, 0.0642868429, -0.0117391804, -0.0149451336, -0.0116073471, -0.0147893308, 0.00556397624, 0.0218364336, 0.025671592, -0.00279247481, 0.029434843, 0.0385912843, 0.00607632939, 0.0156282708, -0.000788005244, -0.0383036472, 0.0135309193, 0.000598494487, -0.00743661216, 0.0320235752, -0.0254079252, -0.0121526588, -0.0118170828, 0.0114755137, -0.0133511461, 0.0120687643, 0.00946205575, -0.030777147, 0.00212431839, 0.0212012362, 0.00938415341, 0.0111698993, -0.0193555653, 0.0430975929, -0.000558420084, -0.0254798345, -0.0417792574, -0.00858716, 0.0134230554, -0.0311127249, 0.0176177602, -0.036601793, 0.00618419331, -0.0274453536, -0.00689130044, 0.0146215418, -0.00850326568, 0.0132073276, 0.0301299654, -0.0223397985, -0.00719691487, -0.0299142376, -0.0325029679, -0.00374826835, 0.00390407164, -0.0160477422, 0.0168147739, -0.00635198131, 0.0208416898, 0.014801315, 0.0125721293, -0.00559094222, -0.0112178391, 0.0250244103, -0.000165541031, 0.00194604334, 0.0300580561, -0.0147294058, -0.0172342435, 0.00683736848, 0.0173660778, -0.0151129216, -0.025336016, -0.0225075874, 0.019283656, -0.00778417336, 0.00111009867, 0.0026771205, 0.0116852485, 0.0298662968, 0.0676426068, 0.028140476, -0.00896468293, 0.0294108726, 0.0244371518, 0.0338452756, 0.0227952246, 0.01670691, -0.0108463075, 0.00385613204, -0.0158919375, 0.063184239, -0.0345164277, 0.0312325731, -0.0356669761, 0.0440803543, -0.0392864048, 0.00195203582, 0.030777147, -0.0159758329, 0.0419710167, 0.0216207057, -0.0249285307, 0.0332220607, 0.0253120475, -0.00752649875, -0.033965122, 0.0196312182, 0.00463814475, 0.0130395396, 0.00519843772, 0.0365778245, -0.00376025308, 0.000501117378, 0.0238379072, -0.0040418976, -0.0053991843, 0.0155803319, -0.00208386942, 0.0329823643, 0.00414976152, 0.0174260028, -0.0149451336, -0.0137706166, -0.00814971235, 0.00448833406, -0.000916842604, -0.0177495927, -0.00282093883, -0.0275172628, -0.00964782108, -0.000480518414, -0.00568082882, -0.00212282012, -0.0129556451, -0.00338872219, -0.0374886766, -0.000274528429, -0.00109586655, -0.0198589303, -0.00353553682, 0.0197270978, -0.00865906943, -0.02219598, -0.0521581583, -0.0368414931, -0.039574042, 0.000805982563, 0.0637115687, 0.0168507285, -0.0288595688, 0.00349059352, -0.00234903465, 0.0252161678, 0.00929426681, -0.0266064126, -0.0121526588, 0.0558494963, 0.00107189687, 0.0323112123, -0.0347800963, 0.0185166243, 0.00361943082, 0.0116672711, -0.00412279554, -0.0291951448, -0.0171143953, -0.0248566214, -0.0325029679, -0.00235502701, -0.0237899683, -0.0407965, 0.00562390033, 0.0219083428, 0.00316400593, 0.000744560093, 0.0247607417, 0.0576711968, 0.0169226378, 0.0243532564, 0.00253629824, -0.0394062549, -0.0232266784, -0.026630383, -0.0018261947, -0.0104747768, -0.0075564608, 0.0317119658, -0.049617365, -0.0577670746, -0.0404609218, -0.0327666365, -0.00900663063, -0.00791001413, -0.0440324135, -0.0253839567, -0.0163593479, -0.0151968161, -0.014801315, -0.0209375694, 0.0263187755, -0.0103609208, -0.00606134813, -0.0234424062, 0.00893472135, 0.0203622952, 0.0251442585, 0.0289554466, 0.0221360568, 0.0367216431, -0.0400054976, 0.0204701591, -0.0291711744, -9.98115e-05, 0.0441522636, -0.0254318956, 0.00497372122, -0.0129316757, -0.0327186957, -0.0239697415, 0.0111279525, -0.0153526189, -0.0196072478, 0.0252641067, -0.0021048428, 0.0384714343, 0.0103729051, 0.026965959, -0.016539121, -0.0547468886, -0.018217003, 0.00322093396, -0.00867105369, 0.00431155739, -0.00457522413, 0.0380399786, 0.0173540935, 0.0414436832, -0.0357388854, 0.0153885735, 0.0345164277, -0.0429537781, 0.0600202307, 0.00696920231, 0.0246648639, 0.0125241894, -0.00261120358, -0.0196192339, -0.00914445613, -0.0443679914, 0.0157241505, 0.000400744117, 0.0077302414, 0.00524038449, 0.00288835377, -0.0279007796, -0.0111099752, 0.0261030477, 0.0108283302, -0.0125361746, -0.0566644669, 0.0372010395, 0.0118230749, -0.0275891721, 0.026127018, -0.010091261, 0.0261989273, 0.00991148781, -0.00761039276, -0.023490347, 0.0265824422, 0.00234304229, -0.0341329128, 0.0406047404, 0.0269419886, -0.0367935523, -0.000659167883, -0.0448473841, 0.0161316358, 0.0853322819, -0.0178095177, -0.0134470249, 0.0167188942, 0.0402931347, -0.0285479613, 0.0348520055, -0.0174739417, 0.00327786221, 0.00115204568, 0.0628007203, 0.0243892111, -0.0275412332, -0.0274453536, -0.0190319754, -0.0098335864, -0.0211053565, -0.0621295683, -0.000567034178, -0.000358797057, 0.0050905738, -0.0349239111, 0.0143339057, -0.0114095965, 0.035379339, -0.0194035061, -0.00038145596, 0.0350197926, 0.0648621172, 0.00933022145, -0.00216027303, -0.0261030477, 0.0134230554, -0.0165990461, 0.00703511899, -0.00515649049, 0.00358647248, 0.0146814669, 0.0104208449, -0.0509596691, 0.0268940497, 0.00924632791, -0.035427276, -0.0121047189, 0.0251921974, 0.0383036472, -0.0131593877, 0.0134829795, 0.00459320145, 0.035259489, 0.0170904249, 0.0290273558, -0.0291711744, 0.0505282134, -0.042714078, 0.0421148352, -0.000287262374, 0.0128837358, -0.0386871621, 0.0208896287, -0.00851525087, -0.000573401165, -0.0101991249, 0.0174260028, 0.0276610814, 0.00115354382, 0.00473102788, -0.00104268373, -0.023322558, -0.0219922382, -0.0157121662, 0.00138799788, 0.0240895897, 0.0125241894, -0.00986354891, -0.0228191931, 0.000340070692, -0.013231297, 0.0123204468, 0.0379201323, 0.00169585925, 0.00371231372, -0.0231667552, 0.0159998015, 0.0155683467, -0.0016494178, -0.0305134803, -0.000393253576, -0.0236101951, -0.015136892, -0.0204821434, -0.0273255054, -0.00116702681, 0.00260820752, 0.00144417689, 0.00971973, 0.0108043607, 0.0247367732, 0.0205300841, 0.0168387424, 0.0165870618, 0.000226963486, -0.0141541325, -0.00699916435, 0.000811225909, -0.0350437611, -0.00443140604, 0.00387410936, -0.00331381662, 0.0176537149, -0.0102830194, -0.0261749569, -0.00528233172, 0.00730477879, 0.0155803319, 0.0397897698, 0.0022816197, -0.0098335864, 0.0175937898, 0.00274453545, 0.036050491, -0.0047430126, 0.022591481, -0.0150050577, 0.013734662, 0.0154005587, 0.0174140166, 0.0134829795, 0.0465492383, -0.0114095965, 0.00608531805, -0.0174859259, -0.00713099819, -0.0181930345, -0.0755526274, 0.0193675514, -0.0178934112, 0.0279007796, -0.0298662968, 0.00644786051, 0.00778417336, 0.01250022, -0.0520622768, 0.0252401382, -0.00686733099, -0.0150410123, 0.0140103139, 0.0123923561, 0.0327426679, -0.00339171849, 0.0115294456, 0.0212971158, 0.00981560908, -0.0466930568, 0.0169945471, 0.0191278532, -0.0235622562, -0.0261509884, 0.00286738039, -0.0164552275, -0.032239303, -0.015244755, -0.0193196107, -0.0040418976, -0.0137226768, -0.0192357171, 0.0206379481, -0.011882999, 0.0261030477, 0.0198589303, -0.00730477879, -0.0194035061, -0.0408444405, -0.0151968161, -0.00147339, -0.0220162068, -0.0162514839, -0.0189241115, -0.0233105738, 0.016635, 0.00571977952, 0.0230828617, -0.01087627, -0.0134110702, -0.000476398593, -0.0137106916, -0.00295726676, 0.029434843, 0.0230708756, 0.10000176, -0.0110380659, 0.0244850907, 0.0165031664, 0.00514450576, 0.0020628958, -0.0146934511, -0.00558195356, -0.0375126451, -0.0238139387, -0.00900063757, -0.00754447607, -0.00247787195, 0.0114155896, 0.0293869022, 0.0122964773, -0.0154125439, -0.00532427896, -0.03060936, 0.0330542736, 0.00435650069, -0.00433852337, -0.0331501514, 0.00012509209, 0.00947404, 0.012668008, 0.0199308395, 0.00138125638, -0.0273494739, 0.0102051171, 0.00325988489, 0.00498570595, -0.0134949647, -0.00599842751, 0.0556577407, 0.00266513554, 0.0319756344, -0.000294003868, -0.0054830783, -0.00912048668, -0.0193076264, -0.0290273558, -0.00285689346, -0.0158919375, -0.0177495927, 0.0141781019, -0.0212491751, 0.0146694817, -0.00231158198, 0.0060104127, 0.0208057351, 0.0101691624, -0.00791001413, 0.00814971235, 0.018276928, 0.0113316951, 0.00743061956, 0.0148971938, 0.00599543145, 0.00929426681, 0.0317599066, -0.0272296257, 0.0354033075, -0.00723886164, -0.0368175209, -0.0214888733, -0.0204461887, 0.0277569611, -0.0120687643, 0.0127519025, 0.0383755565, -0.00828753784, 0.0147533761, 0.00185465871, -0.0167788193, -0.0274932925, -0.00118275697, -0.00959388912, -0.0164552275, -0.016539121, 0.0212851297, 0.00992946513, -0.0204461887, 0.0265584737, 0.00459320145, -0.0300340857, -0.00733474083, -0.0165870618, -0.0145975724, -0.0102111101, -0.00639392855, -0.0229630116, -0.0224836171, 0.0272296257, 0.0100253439, 0.00980961695, 0.000897367194, -0.00358347641, 0.00160896883, -0.00592951477, 0.00113706465, -0.0265345033, 0.00713699032, 0.0226154514, 0.0343965776, -0.00955793448, -0.00330482796, -0.0277329907, -0.0107144741, 0.0491379686, -0.0550824665, 0.0122605227, -0.0110500511, -0.013063509, -0.0331261829, 0.0379920416, 0.0213330705, 0.00113781367, -0.00510555506, 0.000402991282, -0.000117414282, -0.0247847121, 0.0028164445, -0.0238379072, -0.00479994062, 0.00584262423, 0.0325269401, 0.0406526811, -0.0233345423, 0.0149451336, 0.0313763916, 0.0251682289, -0.00695122499, -0.00813173503, 0.00762837, 0.00600142404, 0.00744859688, -0.0105167236, -0.0288595688, -0.00808978733, -0.0196551885, -0.00769428676, -0.0343007, 0.032910455, -0.00521641504, 0.00394901494, 0.0357149132, 0.0417073481, 0.0351636112, -5.65536066e-05, 0.0271816868, -0.00583063951, -0.0130395396, 0.00770027936, -0.030944936, -0.0181930345, -0.0201585516, 0.00945606269, 0.00602539349, 0.0117691429, 0.00909052417, 0.0319756344, -0.0299861468, 0.00941411592, -0.0165151525, -0.026127018, 0.0205660388, 0.00559094222, 0.00816169661, 0.0158200283, -0.018672429, 0.00994145, -0.00746058207, 0.0125601441, 0.0178454723, 0.0226274356, -0.0198709164, 0.00423065946, -0.00491080061, 0.01109799, 0.0169466063, -0.0270858072, 0.00787406, 0.0243053176, 0.00328984694, 0.0166110303, 0.00410481822, 0.0124762505, -0.0283322334, 0.0317838751, 0.0126200691, -0.00529132038, -0.0260311384, -0.00562390033, 0.0137826009, -0.00460518664, 0.0112298233, -0.0158439986, 0.0110140964, -0.00450331531, 0.00353254052, -0.0171982888, 0.0238139387, 0.011439559, -0.00586359808, 0.00101571775, 0.0208057351, 0.0305374507, -0.00187563221, -0.000144099336, 0.0288355984, 0.00822162163, 0.0376564637, -0.0624172054, 0.010426837, 0.0359066725, -0.00922835059, 0.00276251277, 0.0341329128, 0.0147533761, 0.0321673937, -0.00548008224, 0.0221120864, 0.035930641, 0.00652576191, 0.0302258432, 0.0167428646, 0.00876693241, 0.00405088626, 0.0219922382, 0.0580067746, -0.000373029092, -0.0172821842, 0.0108822621, 0.00173181377, 0.0164192729, 0.0106126033, 0.0358107947, 0.0165870618, 0.00286588212, -0.00516847568, 0.0235023312, 0.0185405947, -0.023262633, -0.00787406, 0.0254079252, -0.0405328311, -0.0176417287, 0.000688755536, 0.0355950668, -0.028811628, 0.00722687691, 0.0330782421, 0.0238978323, 0.0244251657, 0.00279846718, 0.0391186178, 0.0147893308, -0.0028509011, -0.00259921886, 0.00844334159, 0.0166949239, 0.00291531975, 0.00679542171, 0.0192117468, -0.0235382859, 0.0239817258, 0.0468848124, 0.00977965444, -0.0238019526, -0.0151608614, 0.0275891721, 0.00106215919, 0.0188761707, -0.00833547767, 0.0191038828, -0.0129316757, 0.0265584737, 0.0195832793, -0.0184567012, -0.00833547767, -0.011493491, -0.0181690641, -0.0155683467, 0.0167548489, -0.0117451735, 0.00240596267, -0.0170305017, 0.0154484985, 0.00421867426, -0.0178694427, -0.00946804788, -0.0228072088, -0.0574794412, 0.0280685667, -0.0654853359, -0.0114635285, 0.00881487224, 0.0305374507, 0.0177016538, 0.0249285307, 0.0121886134, -0.0442481413, -0.0139503898, -0.0210933723, -0.0072927936, 0.0120088402, 0.00314003602, 0.00517746387, -0.040365044, -0.00265464885, 0.0130275544, -0.0203143563, -0.00518944906, 0.00462316396, 0.016635, 0.00932422932, 0.0390467085, -0.00302168541, 0.0231068302, 0.00352355186, 0.0362901874, 0.0124402959, 0.00701114908, -0.00605835207, -0.00867105369, 0.00976766925, 0.0298183579, -0.0212611612, 0.00625610258, -0.00446436414, 0.000355613593, 0.0264146551, 0.0035145632, -0.0141781019, 0.0168627128, -0.0245330296, 0.00958789606, -0.00460219, -0.000950550078, 0.000654673553, 0.0313044824, -0.022423692, -0.0137106916, -0.0151968161, -0.00798791647, -0.00926430523, -0.00119474181, 0.01670691, 0.00131758675, 0.0153646041, 0.0176057741, 0.0111519219, 0.0191638079, 0.00257674721, -0.0291951448, -0.0139503898, 0.00794596877, 0.0188761707, -0.0344445184, 0.00827555358, 0.00495574391, 0.0445118099, -0.0105526783, 0.011211846, -0.0255996827, 0.0177975334, 0.00265464885, -0.00350557454, 0.00698118703, -0.00632801186, -0.0188282318, 0.0136387823, -0.00510555506, -0.00621415535, -0.00143443921, 0.00436249282, -0.00331681292, -0.0336774848, -0.00679542171, -0.0184447151, 0.000882386114, -0.00793997664, -0.00215727673, 0.0128837358, 0.0218484197, -0.00862910692, -0.00560292695, 0.00568981748, -0.00379920402, 0.001184255, -0.0263427459, 0.021021463, -0.0388789214, -0.0115354378, -0.00330782426, -0.00224416703, -0.0220641475, -0.00406586751, -0.0296745393, -0.0177376084, -0.0152687253, 0.0125241894, -0.00394302234, -0.0172821842, -0.00980362389, 0.0200986285, -0.00111684017, -0.0112178391, 0.00855120551, 0.0237420294, -0.0127039626, 0.0032958393, -0.0197990071, 0.026462594, 0.0263667144, -0.000669280125, 0.0141421473, -0.0184327308, -0.000831450394, -0.00879090279, -0.0312325731, 0.0340610035, 0.0146455122, 0.00812574197, 0.0186005197, -0.00184267387, 0.0138065713, -0.042042926, -0.00290633109, -0.00564187765, -0.000313104742, -0.00562689686, -0.00604037475, 0.00564487418, -0.00891674403, -0.0497132428, -0.0123204468, 0.0052194111, 0.0152088013, 0.0238379072, 0.00716695283, 0.0170904249, 0.00723286951, 0.024497075, -0.0208416898, -0.0287157502, -0.00974969193, -0.00847929623, 0.0201585516, -0.0160477422, 0.0159878172, 0.00306513067, -0.00533925975, 0.0368414931, -0.0120088402, -0.00583363557, -0.0178215019, 0.0127878571, -0.0212252066, 0.00606134813, 0.0253120475, 0.0136148129, 0.0079939086, 0.0224356782, 0.0116373096, -0.00263067917, 0.00599842751, 0.00470705796, -0.00924033485, -0.0208177194, 0.00447035674, 0.00854521245, 0.00159099163, -0.00353254052, 0.0217285696, 0.0130035849, -0.000261045469, 0.0178574566, -0.000771526073, 0.0090306, -0.017881427, -0.019451445, -0.0326947272, 0.00537821045, 0.00502166059, -0.004569232, -0.0152327707, -0.0210574176, 0.0196432024, 0.00440144353, -0.0143818446, -0.00600142404, -0.000999238575, 0.00393403368, -0.0133271758, 0.0240895897, -0.0111099752, -0.00629205722, 0.0105526783, -0.0234663766, 0.0133151915, -0.00205540541, 0.0145855872, 0.0157960597, 0.000127245614, 0.0535484031, -0.0143099353, 0.00125466613, -0.0117631508, 0.0132912211, -0.0190918986, 0.000647183, -0.025455866, 0.000542315422, -0.0272296257, 0.0268221404, 0.00903659221, 0.0137826009, 0.00267112814, -0.00717893755, -0.00795196183, -0.00151009369, 0.0129316757, -0.00867105369, 0.0157001801, 0.0293149929, 0.00494076312, -0.00362542341, 0.00708905095, -0.0128597664, -0.00387410936, -0.00622614, -0.0116133392, 0.0321434215, 9.81261255e-05, -0.0179293659, 0.00693924027, 0.0130155692, 0.014297951, -0.00284191244, 0.0168267582, 0.00212581642, 0.0193435811, 0.000352242845, -0.0101092383, 0.00614823867, -0.00265315082, 0.0211652815, 0.0325748771, -5.61322668e-05, 0.00680141384, -0.0237180591, -0.0144417686, -0.00699317222, 0.0117571577, 0.0165750757, 0.00168087811, 0.00593550736, -0.0108223381, 0.0227712542, -0.000811225909, -0.0363141596, 0.01345901, 0.00467110332, -0.00251682289, -0.0148971938, -0.000964782084, -0.00738268, -0.0175338648, 0.00599243538, -0.00971373729, -0.000159174058, -0.0216566604, -0.0142859658, 0.0414676517, -8.73584722e-05, -0.0050965664, -0.00447634934, 0.00856918283, 0.00342168054, -0.0103069888, 0.000898865284, 0.00954594929, 0.0189241115, 0.0165750757, 0.00163443678, 0.00899464544, -0.0204102341, 0.00491379714, -0.0162874386, 0.0180971548, -0.00775421131, 0.0146574965, 0.0140222982, -0.0286438409, 0.0151129216, -0.00369733269, -0.006417898, 0.0280685667, -0.0015864973, 0.00888678152, 0.0143099353, -0.0126799932, -0.0147653604, -0.00285689346, -0.000847929623, 0.0134709943, 0.0131833572, 0.00551304035, 0.0277569611, -0.00366737042, -0.0205061138, 0.00892273616, 0.0174739417, 0.0488982722, 0.0175578352, -0.00713699032, -0.00471005403, 0.0153646041, 0.0369373709, -0.0515349433, 0.00738268, -0.0254318956, 0.0389508307, -0.00352954445, -0.00746058207, 0.00103968754, -0.00995343458, 0.00731077092, -0.00821562856, -0.0279487185, -0.00770627195, 0.0131833572, 0.0115594082, 0.0130155692, -0.0149091789, 0.0114515442, -0.0224117078, -0.0103908824, 0.00264266389, 0.00943808537, -0.00562390033, -0.00973770767, -0.0151608614, 0.017773563, 0.0150410123, -0.000604486908, 0.0125122052, 0.0156642254, 0.0118710147, -0.00674748234, -0.0152327707, -0.0118710147, -0.0197750367, 0.00931823719, -0.0078141354, -0.00361343846, -0.0161675904, -0.00873697083, -0.0187443383, -0.00994744245, -0.00353853311, -0.0137826009, 0.00672351243, 0.0124163255, 0.0239218026, -0.00349958218, 0.00862910692, 0.00910850149, 0.0176896695, 0.0141781019, 0.0160237718, 0.0335336663, 0.0211293269, -0.0164791979, -0.0069751949, -0.00828753784, -0.0133751156, -0.00584861683, 0.00314902468, 0.00791001413, -0.00340669951, 0.0308969971, 0.0204222202, 0.0179173816, -0.00730477879, 0.00900663063, -0.00493776659, 0.00567483623, 0.0302498136, 0.00964182802, -0.00177975325, 0.00158200297, -0.0176177602, 0.00203742809, 0.0102350796, 0.00701714167, -0.0135309193, -0.000228274337, -0.0123204468, -0.00374227576, 0.020961538, 0.00645984523, -0.031568151, -0.0118770069, 0.012835796, -0.0192237329, 4.87821671e-05, 0.00144192972, -0.0376324952, 0.00326587725, -0.0228791181, -0.0320235752, -0.011547423, -0.00164642162, 0.0118530374, -0.0111758914, 0.00651377719, 0.0357388854, -0.016982561, -0.023658134, -0.0219682679, -0.00528832432, 0.0138545102, 0.0151728466, 0.0420908667, -0.0168387424, 0.00673549715, 0.00964782108, 0.0191997625, 0.0268221404, -0.00608531805, -0.0158439986, 0.00202544313, -0.00581565825, -0.0192716718, -0.00182769273, -0.0189121254, 0.0134350397, -0.00536622573, -0.0432893522, -0.0230708756, 0.00833547767, 0.0191278532, 0.0251921974, 0.0388309807, -0.0286198705, -0.0210933723, 0.0184327308, -0.0135429036, 0.00912647881, 0.00265914318, -0.0141181778, -0.00392804155, 0.0167908035, 0.0168387424, 0.0124642653, 0.0275652017, -0.0118530374, 0.00290183676, 0.0127519025, 0.0241255444, 0.00124343031, 0.0149331484, -0.00626209471, -0.0133751156, 0.00397298438, -0.0122245681, -0.0107384445, -0.0191518236, 0.00245090597, 0.0178454723, 0.00817967393, -0.00531828636, 0.00112732686, -0.00705309631, -0.0281884149, -0.00204192242, -0.053260766, 0.0366497338, 0.0180132613, 0.0119129615, -0.00119998516, -0.00369134, 0.0131474035, -0.0441043228, -0.00671152771, 0.023658134, 0.0212132204, -0.00407485617, -0.0137706166, 0.0198589303, 0.00352954445, -0.0298902672, 0.00614224607, -0.00284790481, -0.0199068692, 0.00253180391, 0.00570479827, 0.00837742444, 0.00922235753, -0.0235862248, 0.0165990461, 0.0078560831, -0.0106006181, 0.012110712, 0.00544113107, -0.00346362754, -0.00693324767, 0.000430706277, 0.015808044, -0.0141541325, -0.0197510663, 0.0025452869, 0.00535723707, -0.00357149146, 0.016539121, -0.0245689843, -0.0235862248, -0.00392804155, 0.0046591186, 0.0179173816, 0.0388070121, -0.0101511851, -0.00950999465, -0.00109661568, 0.000169192659, 0.0313284509, 0.0119129615, -0.0185645651, 0.0292191152, 0.00497072516, -0.0245929547, -0.0220281929, -0.0178215019, -0.00147189188, -0.00382916606, 0.0199548099, 0.00180971541, -0.00651977, 0.0197990071, -0.00949201733, 0.0170305017, -0.00713099819, -0.00802986324, -0.00221120869, 0.0292430837, -0.0260071699, -0.0312805139, -0.0375605859, 0.00102920074, 0.00539319171, 0.0108942473, 0.0288835373, 0.032910455, 0.00264416216, 0.00942610111, 0.011715211, 0.0170305017, -0.0268221404, -0.0165750757, -0.00545011973, -0.0153765893, 0.0131833572, -0.00262468657, -0.00284790481, -0.0123084625, 0.00273255049, -0.0227233153, -0.0233105738, 0.00930026, 0.00948003307, -0.0279247481, -0.0326707587, 0.000660666, -0.00533326762, -0.0146574965, -4.72606516e-05, -0.0454466306, 0.000808978744, 0.0242933333, -0.0115654, 0.016311409, -0.0125361746, -0.0103609208, -0.020122597, 0.0197031274, -0.0109002395, 0.0189720504, -0.00609131064, 0.00816769, -0.0208776444, 0.00491978927, 0.0193555653, -0.000961036829, 0.0136987073, -0.0143698603, -0.0111279525, 0.00157301431, 0.0157001801, -0.0221480411, 0.00730477879, -0.00157151616, -0.00112058537, -0.0115654, -0.0183847919, 0.00909651723, 0.00134904694, 0.00908453204, -0.0137826009, -0.0129796145, -0.0032988356, 0.0229390431, -0.0243053176, -0.00934220664, -0.00424264418, 0.0138065713, 0.0145496326, 0.0207937509, 0.00325089623, -0.0110140964, -0.00136402808, 0.00843734853, 0.0074665742, -0.0182649419, 0.0396459512, -0.0267502312, -0.00894071348, -0.0261030477, 0.00641190587, 0.00224117073, -0.0128597664, 0.0153406346, -0.0214049798, 0.0164552275, 0.00782012846, 0.00274303718, -0.000605985, 0.0515349433, 0.0107684061, 0.0135069489, 0.0180971548, -0.00128163211, 0.0156522412, 0.020853674, -0.00771226408, -0.0422346853, -0.0246888343, 0.00601640483, -0.003952011, 0.000973770744, -0.00570180221, 0.0163233932, 0.00889277365, 0.00327486591, -0.0193076264, -0.0190559439, 0.00713099819, 0.0361463688, -0.0110021112, 0.0192596875, -0.00348160486, 0.00409582956, -0.00574075291, -0.00186364737, -0.0213690251, 0.00752649875, -0.00261419988, -0.00271457317, -0.0115953619, -0.0162395, -0.00521641504, 0.0243412722, 0.0196911432, -0.003952011, 0.00303367036, -0.0289554466, 0.00604037475, 0.00111684017, 0.00901262276, -0.00729878619, -0.016311409, 0.0164911821, 0.00019269425, 0.0106006181, 0.00684935367, -0.000884633278, 0.0117032258, 0.0128717506, 0.0020179525, -0.00328685087, 0.0140822232, 0.00903659221, -0.014297951, 0.0134949647, -0.0151129216, -0.00436249282, 0.0127519025, 0.0181091391, -0.0137586314, 0.0101212235, -0.0104028676, -0.00327486591, 0.00942610111, 0.0101092383, -0.0117631508, -0.00379021536, 0.0143578751, 0.00222019735, -0.0248566214, -0.000822461734, -0.00528532779, 0.0183847919, -0.00313104736, 0.02500044, -0.00510855112, -0.00158949348, 0.00517446781, -0.012050787, -0.00174379873, 0.00247787195, 0.015244755, 0.00661564851, -0.0125361746, 0.0191038828, 0.0176417287, 0.00899464544, 0.0271577165, -0.00253779627, 0.0164672118, 0.00231308, 0.00131833577, -0.0215008575, 0.00190859067, -0.0163593479, -0.0193315968, 0.0154844532, -0.0187563226, 0.0117991054, 0.0105227167, -0.00277599576, -0.0020239451, -0.00163144048, 0.00855719764, -0.00466810726, -0.00260820752, -0.000281644461, -0.0222918596, -0.0156402569, 0.00254378887, 0.00988751836, -0.0154484985, -0.0051355171, 0.00822162163, 0.016203545, 0.0167428646, 0.00956991874, -0.00816769, -0.0363141596, -0.00696320971, -0.0176417287, -0.010762414, 0.00560891954, 0.0293869022, -0.0199188553, -0.00106515537, -0.00350557454, 0.000453926972, -0.00644786051, 0.00533925975, 0.0320715122, -0.00855719764, 0.00133406592, -0.0117032258, 0.0323831216, -0.00369733269, -0.0204821434, 0.0203622952, 0.00145241653, 0.0379680693, 0.000350931979, -0.00662164111, -0.00499169854, 0.00273554679, 0.0261989273, -0.00614823867, 0.0090306, 0.000523589, -0.00164342544, -0.00255127926, 0.0167668331, 0.00262169051, -0.00660366379, 0.00322692632, 0.009306252, -0.0106305806, -0.0206019934, -0.0150290281, -0.0176537149, 0.00492578186, -0.0034306692, 0.00102395739, 0.00907254685, 0.00520443, 0.00738867279, -0.00335876, -0.0110919978, -0.0134829795, -0.00445837202, 0.0180851705, -0.0150649827, -0.0147653604, 0.0153646041, 0.017773563, 0.0244251657, -0.0113077257, -0.00449732272, -0.00943209324, -0.00586060155, -0.00653175451, 0.0058366321, -0.0243292879, 0.0131953424, 0.0218244493, 0.00787406, 0.00296625542, 0.00103669136, 0.00635198131, -0.0021977257, 0.0248566214, 0.00313404365, -0.00502166059, -0.00660965592, -0.0154964374, -0.00668755779, 0.00182469655, -0.0330303051, -0.0170664564, -0.0122005986, -0.00629804935, -0.0154604828, 0.00195203582, -0.00784409791, -0.0126440385, -0.00740065752, -0.00823959894, 0.0169585925, 0.00435650069, -0.0165750757, -0.00783810578, 0.0118650217, 0.00326587725, 0.00416773884, 0.0205420684, 0.00536922226, -0.00194604334, 0.012050787, 0.0127998414, -0.0127878571, 0.0273734443, 0.00280445977, 0.0241375286, -0.00534525234, 0.00375426072, 0.013063509, -0.00704710372, 0.00406886358, -0.00169735728, -0.0152327707, 0.00854521245, 0.0143219205, 0.000763661, 0.00282842945, -0.0129916, 0.00871899351, 0.00108762702, 0.0166829396, 0.0164192729, -0.00925831217, -0.0111339446, -0.0251202881, 0.0353314, 0.00847330317, -0.00365838176, 0.0362662189, 0.0190679282, -0.00559393829, -6.62445e-06, 0.035427276, 0.0274453536, 0.0010314479, 0.0223517828, -0.00568382489, 0.0162395, -0.0109541714, -0.0143099353, 0.00540218037, -0.00733474083, 0.00289884047, -0.0108043607, 0.0107923755, -0.0111639071, 0.00562390033, 0.000788005244, 0.0157840755, 0.0268940497, -0.00590254879, 0.00765234, 0.00367635908, 0.00683137635, 0.00162694615, 0.0114455512, 0.00767031731, 0.00723886164, -0.0241375286, 0.0030351684, 0.000526959775, 0.0169585925, -0.0212012362, 0.00865906943, -0.00044381473, -0.0233944673, 0.0147054363, -0.00372130238, -0.00500967586, 0.0257195327, 0.00474001653, -0.00420968561, 0.00567783229, 0.00916842557, 0.0118650217, 0.000901112449, 0.00161795749, 0.00868303888, -0.0175218806, -0.00686733099, 0.0381598286, -0.00311307, -0.0184327308, 0.0287636891, 0.00277599576, -0.00116927398, 0.0194274746, -0.0190439597, 0.0109901261, 0.0186604429, 0.00374527206, 0.0165151525, -0.00482391054, 0.0194634292, -4.21343102e-05, -0.00600741617, 0.0126320533, -0.0134470249, -0.00160896883, -0.0128238117, 0.0100612985, -0.00851525087, 0.00704710372, 0.00485986518, -0.00383815472, 0.00811975, -0.019115869, -0.0102350796, -0.00415275758, 0.00813173503, 0.00700515695, -0.0162275154, -0.00150485034, -0.00530030904, 0.00931224413, -0.00118125882, -0.00793398451, 0.00598644279, -0.00724485423, -0.0153885735, -0.00359845744, 0.0166110303, -0.0224356782, -0.00541416509, 0.00134455261, -0.00577071542, -0.0354752168, -0.00610329537, -0.0043954514, -0.0133032063, 0.00227562734, 0.0104088597, 0.00263367523, 0.0187683068, -0.016539121, -0.0124402959, -0.00666958047, -0.0146814669, 0.025671592, -0.0226633903, -0.00192956417, -0.000565161579, -0.00532128243, -0.000564787, -0.00474600866, -0.0159758329, -0.00436249282, 0.00868303888, 0.00118500413, -0.00586060155, 0.00686133839, 0.00867105369, 0.0190199893, -0.021081388, 0.00417972356, 6.29205679e-05, -0.00856918283, 0.0306333285, 0.00903659221, -0.00165690831, 0.00454226602, 0.0212611612, -0.0151009373, 0.0057916888, 0.00306213438, -0.0119668934, -0.016203545, -0.0065377471, -0.00299771572, -0.0127039626, -0.00240446464, 0.0271097776, 0.00153855782, -0.00744260475, -0.0117212031, 0.000870401214, -0.0234783608, -0.00595048815, -0.0118530374, -0.010259049, -0.0172582138, 0.0210094787, -0.0036943364, -0.0138784805, 0.0166230164, -0.0101392008, -0.0127878571, 0.00292281038, 0.00562390033, -0.00988152623, -0.0331261829, 0.0129676303, 0.0143818446, 0.00489582, 0.0124882348, -0.0151848309, 0.0179173816, -0.0131953424, -0.0155084226, 0.00655572442, 0.0181810483, 0.000556547428, -0.0205540527, -0.020578023, -0.0136507675, 0.00747855939, -0.0350197926, 0.00564187765, 0.021812465, 0.00954594929, 0.00415875, 0.0309689064, -0.00076441, 0.0154844532, 0.0132432822, 0.012668008, 0.00437148148, 0.00590254879, 0.00679542171, -0.00107489305, 0.0104508074, -0.0166230164, -0.00294528203, -0.00686133839, 0.038519375, 0.0139144352, -0.0100133596, -0.0202544313, 0.0130754942, 0.0119549083, 0.0105107315, 0.00722687691, -0.00616621599, 0.00944407843, 0.00085916539, -0.0143099353, -0.0118710147, -0.0444638692, -0.0132552665, -0.00292880274, 0.00486286124, 0.00178424758, 0.00382617, 0.00913247094, -0.000369845628, -0.0128118265, -0.00418871222, 0.000295876496, 0.0117391804, 0.0121047189, 0.0125601441, 0.0209375694, -0.0126560237, 0.00228012167, -0.00380819268, 0.0117331883, -0.0203982498, 0.00440743612, 0.017378062, 0.00307112304, 0.0197510663, 0.00363441207, -0.0147294058, 0.000188480815, -0.00849128049, 0.00723886164, 0.0145855872, 0.0120208254, -0.026127018, 0.00305464398, -0.01205678, -0.00462915609, -0.0180372298, -0.0121047189, 0.0105646634, -0.00576771889, -0.00820963643, 0.0205660388, 0.0161196515, -0.0182050187, 0.00405088626, 0.0132552665, -0.0166589692, 0.00747855939, 0.00494375918, -0.00178424758, -0.00352055579, -0.0220641475, -0.0072927936, -0.00283891615, -0.0189600661, -0.0189001411, -0.0235023312, -0.0180851705, -0.00949801, 0.0248805918, 0.00752649875, -0.00432653818, 0.0109421872, -0.0146574965, -0.00167638378, 0.003027678, 0.00598344672, -0.00533925975, 0.000865157868, 0.00991748087, 0.0045153, 0.0107803913, -0.00137301674, -0.0253599863, 0.00396998832, 0.00479994062, -0.0124882348, 0.0078141354, 0.00822761375, 0.00721489219, 0.000232768652, -0.00758642331, -0.00190259819, -0.00671152771, 0.00105466857, -0.0019790018, -0.00859914441, -0.0195832793, -0.00894670561, 0.00885681901, 0.00394601887, -0.0113976123, 0.00826356839, -0.00361643475, 0.0202064924, -0.0123564014, 0.0155683467, 0.00647782255, 0.0113137178, 0.0229510274, 0.000812724058, -0.00586359808, 0.0186005197, -0.0239098165, 0.0122964773, -0.00983957853, 0.0159039237, 0.0106605422, -0.0356669761, 0.013566874, -0.0369134024, -0.0131953424, 0.00719691487, 0.011829067, 0.00660965592, -0.00775421131, 0.0306333285, -0.0129916, 0.0186844133, 0.0204461887, -0.0122425454, -0.0045632394, -0.00693924027, -0.0314243324, -0.00407785224, -0.00126665097, -0.00853922, -0.013231297, -0.0231427848, -0.0149451336, 0.0146694817, -0.00625011, 0.00769428676, -0.0264865644, 0.0122844921, 0.0124762505, 0.00538420305, -0.0139983287, -0.0331980921, -0.00568082882, -0.00124268129, 0.0206019934, 0.00403890153, 0.0423305631, 0.0127039626, 0.0167548489, -0.00199997518, 0.0142500112, -0.0139384046, 0.0146814669, 0.000631078321, -0.0103309583, -0.0014966107, -0.00548607437, -0.00405987492, -0.00622614, -0.0156881958, 0.00819165912, 0.0225435421, 0.0196192339, -0.00806581788, -0.0056179082, 0.000798492, 0.00961186644, 0.00669954251, 0.0134470249, 0.0215607826, -0.0164072886, 0.0299861468, -0.0207817648, 0.0155923171, 0.0130994637, -0.0101332078, 0.00246888329, 3.25077917e-06, -0.0144777233, 0.0160597265, -0.00453327736, -0.0123564014, -0.00177376089, 0.00145691086, -0.0230229367, -0.0364100374, 0.0031220587, 0.00522839976, 0.0094860252, 0.00113107217, -0.0155923171, 0.00571079087, -0.0111639071, -0.021920329, 0.0323831216, 0.00811375771, -0.0134470249, 0.0171263795, -0.0246888343, -0.0277329907, -0.0393103771, -0.00627408, -0.000550180441, -0.0137826009, 0.0393822864, 0.0154365133, 0.0203622952, -0.0211413112, 0.01670691, 0.00470106537, 0.00115129666, 0.0109841339, 0.0244611204, -0.00624411739, -0.00542015769, 0.00594749209, -0.0156162865, -0.00623213267, 0.0206019934, -0.00216926169, 0.0122365532, -0.0243652426, -0.00419470482, 0.0106905047, 0.00216326909, -0.00988751836, 0.00319996034, 0.0287636891, -0.0122725079, 0.00637595123, 0.0191038828, -0.00856319, 0.00451230397, -1.89604398e-05, 0.0116133392, -0.000836693798, -0.00973770767, 0.0362182781, 0.023490347, -0.0108642848, -0.0114695216, 0.0173181389, 0.00123069645, 0.00408384483, 0.00744859688, 0.0114215817, -0.020122597, 0.0318557844, 0.0175818056, 0.0165870618, 0.013063509, 0.025791442, -0.0129077053, -0.0146934511, 0.0043445155, -0.00292880274, -0.0108582927, 0.0253120475, 0.0206139777, -0.0043055648, -0.0115713924, -0.00159548596, 0.00673549715, -0.000576397346, 0.00354152918, -0.0183728058, -0.0238978323, 0.00368235144, 0.000819465553, 0.00726283155, 0.00647782255, 0.00369733269, -0.000549431425, -0.00247487589, -0.00165690831, -0.00404789, -0.00950999465, 0.022088116, 0.0187203679, -0.00572277559, -0.00110260805, -0.0176657, 0.00851525087, 0.0219083428, -0.0122065907, 0.0235382859, -0.0013018566, 0.0175218806, 0.0024554003, 0.0158200283, 0.00194604334, 0.00221270672, -0.00283891615, 0.0269180201, -0.0295786615, 0.00883884169, -0.00186364737, -0.011439559, -0.0130994637, -0.00628606463, -0.00014157129, 0.0145256631, -0.012895721, -0.010762414, -0.00370032876, 0.0094860252, -0.00568682095, 0.0202664156, 0.00222469168, 0.00763436267, 0.0170065314, -0.0308730267, 0.00891674403, -0.0131234331, 0.0043894588, 0.0139384046, -0.00605235947, -0.00463814475, 0.00485686865, 0.0216087215, 0.00952198, 0.00309509272, 0.0235382859, 0.00654373923, -0.0100732837, 0.00572876818, -0.000214604093, -0.00909651723, -0.015808044, -0.000471155217, 0.0024554003, -0.025671592, -0.00279846718, 0.00600741617, -0.0032479, -0.00214529177, -0.00844933372, 0.00806581788, 0.00329284323, 0.00175128924, 0.00113182119, -0.00657370174, 0.0122005986, -0.00158200297, 0.00720889959, -0.00225465372, -0.00409283349, 0.00354452548, 0.0145496326, -0.003167002, -0.0104028676, -0.0021977257, 0.0231427848, -0.00325089623, -0.00284041441, 0.0211173426, 0.0226633903, -0.00961186644, 0.019283656, -0.0056179082, -0.0151608614, -0.00474600866, -0.0199068692, 0.0183608215, 0.00977965444, 0.000775271328, -0.0180012751, -0.00564187765, -0.00900063757, 0.0226154514, 0.000632201903, -0.0076403548, -0.024221424, 0.00549805956, 0.0251442585, 0.0191997625, -0.0267022923, 0.00789803, -0.0189001411, -0.0125361746, -0.0178334881, 0.0157720894, 0.034204822, -0.0391905271, 0.000970025489, 0.00740065752, 0.00262019224, -0.0112957405, -0.0198109914, 0.015867969, 0.0197270978, 0.00892872829, -0.00754447607, 0.02175254, -0.0234184377, -0.0192357171, 0.00326887355, 0.0191997625, 0.0126560237, 0.00453927, 0.0111639071, 0.0177256241, 0.00792199932, 0.00332280528, 0.004569232, 0.0103729051, 0.0231547691, -0.00192057551, 0.00310108531, -0.029650569, 0.0135788582, -0.00269210152, 0.00714298291, 0.0384234935, 0.00728680147, 0.00214229571, -0.00158050482, -0.00107039872, -0.0177855473, 0.0106605422, -0.00497971382, -0.00964182802, 0.007202907, -0.00203892612, 0.0158320144, -0.00253330194, -0.0145256631, 0.0384714343, 0.0252641067, 0.0112957405, 0.00260221492, 0.0110800127, -0.0035145632, 0.0134110702, 0.00907854, -0.00783211272, -0.00101646688, 0.000696995121, -0.00567783229, -0.00267562247, 0.0103069888, -0.011044058, 0.00291382172, 0.021416964, 0.00367336278, -0.012835796, -0.011661279, -0.00158200297, -0.019283656, -0.00672950502, 0.000588007737, 0.00690927776, 0.0110081034, 0.00213330705, -0.0132672517, -0.0139743593, 0.00856319, -0.007119013, -0.00218274444, 0.00624411739, 0.00236701197, 0.0240416508, 0.0218004789, 0.0102890115, -0.00727481628, 0.00760440063, -0.011715211, -0.00376924174, -0.0131114488, -0.0221839957, 0.0176537149, -0.00440144353, -0.00635797391, -0.0230828617, -0.0207458101, 0.0228671338, -0.00803585537, 0.00296775368, -0.00859315228, 0.00250633596, 0.0171982888, -0.00717893755, 0.00847929623, -0.00450031878, -0.0119609013, 0.00259322627, 0.0068553458, 0.00892872829, 0.000942310435, 0.0215008575, 0.00516248308, -0.000398122414, 0.0111878766, -0.0134829795, -0.010708482, -0.0001139499, -0.000252431346, -0.00405088626, 0.00990549568, -0.012895721, -0.0156282708, -0.00181870407, 0.00838341657, -0.0123204468, -0.00588756753, -0.00446136808, -0.00586959, -0.00419770088, 0.00827555358, 0.0119069694, -0.00153331435, -0.0159398783, 0.00202694116, 0.00308910036, -0.00909651723, -0.0189360958, -0.00550405169, 0.0140942074, 0.000306925038, 0.000375276257, 0.0250244103, -0.00194005098, 0.01390245, 0.00635198131, 0.0258393809, -0.00775421131, -0.0189001411, -0.00480892928, -0.0245689843, 0.0151608614, -0.020242447, -0.00599543145, 0.0166709553, 0.00495274784, 0.00618419331, -0.00148837117, 0.0241255444, 0.0080837952, 0.0250723492, 0.00313704, 0.00507559255, 0.00304715335, 0.000810476893, -0.0117092188, -0.00148837117, 0.0262468662, 0.0108343232, 0.00932422932, -0.01250022, -0.00971373729, 0.00420668954, -0.0074665742, 0.00262019224, -0.014070238, 0.0233465284, -0.0343965776, -0.00188162469, 0.0182649419, -0.0268221404, 0.0268221404, 0.0123564014, 0.00266213948, -0.0188881569, 0.0172701981, 0.000147563725, 0.00802387111, 0.0144537538, 0.0166709553, 0.00137376576, -0.00390407164, 0.00322692632, 7.52331543e-05, 0.00213929941, -0.0369613394, -0.00906655472, 0.0120447949, -0.0183248669, -0.019283656, -0.014297951, 0.00625610258, 0.00684336107, -0.0038231737, -0.0209375694, -0.0255517438, 0.00901262276, 0.000127807405, 0.00197750353, 0.0154125439, 0.00464114128, -0.0173900481, -0.00375426072, -0.00629804935, -0.00108987419, -0.00123968511, -0.0116373096, 0.011439559, -0.0181690641, -0.015244755, -0.00964782108, -0.00529431645, -0.0300101154, -0.0164911821, -0.00576472282, -0.0188522022, 0.0108043607, 0.00732275611, 0.0132193118, 0.00604636734, -0.0259832, -0.00112208351, -0.0110260807, -0.00477896724, 0.0108043607, 0.00864109211, -0.00792799145, -0.00212132209, -0.00936617609, 0.00388609432, -0.0141661167, 0.0121346815, 0.00823959894, -0.00897067599, -0.0171743203, -0.0106905047, 0.00364340073, 0.0186484586, 0.0198709164, -0.0111758914, 0.0114275739, -0.0280206278, -0.0149810882, 0.0340370312, -0.0112298233, 0.0157601051, 0.0129436599, 0.000255240302, 0.025791442, -0.0244491361, -0.000714597933, -0.0164911821, -0.0172701981, 0.00326887355, -0.0118530374, -0.00933621451, 0.00558195356, 0.00288685574, -0.00952797197, 0.0125481598, -0.00834746193, -0.0278528389, -0.00517446781, -0.00765833212, -0.0260071699, 0.0154604828, 0.0143818446, 0.0197270978, 0.000913846365, 0.000897367194, -0.0130035849, -0.00992946513, -0.00585460942, -0.000925082189, 0.0017602779, 0.00594749209, -0.00958190393, 0.0106905047, 0.0127159478, -0.00251532462, -0.0148732243, 0.00809578, -0.00788604468, -0.00515948702, 0.0223997235, 0.0182889123, 0.000817218388, 0.00693924027, 0.0259832, 0.00130709994, -0.0150170429, 0.00242394, 0.0102230944, -0.0131474035, 0.0139264194, -0.0190679282, -0.0181211252, 0.000258423766, -0.001114593, -0.00463215262, -0.0202784017, 0.00560292695, 0.0158799533, -0.00183068903, 0.00605235947, -0.0159398783, 0.0159278922, 0.00232506497, 0.00251981895, 0.0249285307, -0.00870700832, 0.00578869227, 0.00441043219, 0.0275412332, -0.0100732837, -0.0164672118, -0.0108702779, -0.00213031075, 0.00105841388, -0.0103549277, -0.00518944906, 0.00242843432, 0.0213210844, 0.0115953619, -0.014633527, 0.00594149949, 0.00817967393, -0.00294378377, -0.00289434614, 0.0162395, -0.00198649219, -0.0289794169, 0.00371830608, -0.00242543826, -0.0171863046, -0.00897067599, -0.0120208254, -0.0105047394, -0.0179053973, -0.0143458899, -0.0159878172, 0.0221720114, 0.0150290281, -0.0250483789, -0.0196432024, -0.00420968561, 0.0143578751, 0.0050006872, 0.00499469461, -0.0014688957, -0.00690328563, -0.0014688957, -0.00488683116, -0.0131114488, -0.0307292081, 0.00248386455, -0.000936318, 0.00168986677, -0.0412039869, 0.0121406736, -0.010762414, -0.0230229367, 0.00742462743, 0.00863509905, -0.00895269867, 0.0126560237, -0.00427859882, 0.0036014535, 0.00462316396, 0.0128118265, 0.000134642527, -0.000508982455, 0.00459320145, -0.0162754543, -0.0189241115, -0.0138185555, -0.00757443812, -0.0224476624, 0.0223278143, 0.000714223366, -0.0143818446, -0.0108822621, -0.00813772716, 0.00623812526, 0.0114755137, 0.00645984523, 0.000232019607, -0.0160357561, 0.00333778653, 0.0230948459, 0.011882999, -0.0181570798, -0.047651846, -0.00774821872, -0.0118350601, -0.0130994637, 0.00989950355, 0.00435949676, -0.00611528, -0.007119013, 0.000709729036, -0.00333179394, -0.00423665158, -0.0202064924, 0.00332879787, 0.00108013651, 0.00152132951, -0.00224866136, -0.00214079744, -0.0243652426, -0.0028509011, 0.0107384445, 0.00561491167, 0.0253599863, -0.0193076264, 0.0194754153, -0.0127399173, -0.0139384046, -0.0160956811, -0.00158499915, -0.0109901261, -0.0372010395, 0.011325703, -0.0170065314, 0.0130155692, 0.0244491361, -0.00232057064, -0.00857517496, -0.00259322627, 0.00397598092, -0.0112597859, 0.0205300841, 0.0170664564, -0.00806581788, -0.00335876, -0.00100747822, 0.00607333332, -0.0135908434, 0.00529431645, -0.0196911432, 0.00550105562, 0.016982561, -0.00615423126, 0.00153556152, 0.00560592301, -0.00639992068, -0.0165990461, 0.0297464486, 0.00336175621, 0.0177495927, -0.0365059152, 0.00938415341, 0.0111698993, -0.000292131212, -0.0178574566, 0.0028059578, 0.00292430841, -0.00395500707, -0.0116013549, -0.0199308395, 0.00475499732, 0.0180612, -0.0106006181, 0.0149571188, -0.0178334881, 0.0168866832, 0.0216566604, -0.01951137, -0.0248805918, 0.00383515866, -0.021920329, 0.0119369309, 0.0189720504, 0.00791600719, -0.017437987, 0.0102350796, -0.0179053973, -0.0167308785, -0.00244491361, -0.0154604828, 0.015867969, 0.0183728058, -0.00515649049, -0.000153368892, 0.0128717506, 0.0120268175, -0.0164312571, -0.0168627128, -0.0187683068, -0.0192117468, 0.0123444172, -0.00784409791, 0.00602839, 0.0026321772, 0.00798791647, 0.00120747567, 0.000717594114, 0.0123923561, 0.00218124641, -0.0207458101, 0.000363665924, 0.0144417686, 0.00996542, -0.00158499915, -0.00732874824, -0.0268461108, -0.00229809899, -0.00516248308, -0.0162754543, -0.0119549083, -0.0252161678, -0.00121047196, -0.0152687253, -0.0122665148, 0.00323291891, 0.00976167712, 0.0052194111, 0.00692725508, -0.0200267192, -0.007202907, -0.01951137, 0.00314003602, -0.0129556451, -0.0104388222, -0.0100193517, -0.0320954844, -0.024616925, 0.00355351414, -0.0161915608, -0.0187683068, -0.0156043014, 0.0308490563, -0.00788604468, 0.0174499713, -0.0035175595, -0.00825757626, 0.0134470249, -0.00814971235, 0.0328385457, 0.00801787805, 0.0164911821, -0.0142500112, 0.000243255417, -0.00415275758, -0.00667557307, 0.00600442, -0.00865906943, -0.00193555665, 0.00265315082, 0.00859315228, 0.00530630164, 0.000559543667, 0.00819765124, 0.017713638, 0.00396099966, 0.0183368511, -0.00691527035, 0.00164342544, -0.00640591327, 0.00536622573, 0.0119189536, 0.00482091401, 0.0214409344, 0.00374227576, 0.0214888733, 0.00834147, 0.00678343698, -0.000628456648, -0.00613325741, -0.0172941685, 0.0114695216, -0.00842536427, 0.00339771085, 0.000263854425, 0.0275412332, 0.0118949842, 0.00456623547, 0.0033407826, -0.00708905095, 0.0266064126, -0.0018022249, -0.0102171022, -0.0196432024, -0.00186214922, -0.0110260807, 0.000236326669, 0.000493252359, -0.00671752, 0.0210094787, -0.00223368034, 0.000573026598, -0.0186364744, -0.0256476235, -0.0488982722, -0.0160477422, -0.0132552665, -0.0111579141, -0.0411800146, 0.00317599066, -0.00426961, -0.000464413723, -0.00216776342, 0.0155323921, -0.0107564209, 0.015076967, -0.0151968161, 0.0103609208, -0.0197990071, 0.0125361746, 0.006417898, 0.0128477812, 0.00689130044, -0.00464413734, -0.00488982722, 0.0135309193, -0.00752050616, 0.00277299946, 0.00181570789, 0.0142500112, -0.0136507675, 0.0149930734, -0.000302618, 0.00847929623, -0.000614973658, 0.00279397285, -0.000141758544, -0.000860663538, 0.0142020714, 0.0127159478, 0.0162275154, 0.0166949239, 0.0138545102, 0.0144537538, -0.0100553064, 0.00661564851, 0.00202843943, 0.0252641067, 0.0255996827, -0.0251202881, 0.0245450158, -0.00120223232, -0.0155923171, 0.0169945471, -0.00439245487, -0.0262468662, -0.00754447607, -0.010540694, -0.00740065752, 0.00952797197, -0.00667557307, 0.00355051784]
|
30 Jan, 2024
|
What is usually included in the header of an HTML document ?
30 Jan, 2024
The <header> is a tag introduced in HTML5. In this article, we are going to discuss the use cases of header tags and what is usually included in the header of an HTML document.
The <head> section in HTML usually includes the document’s title (<title>), which appears in the browser’s tab, and metadata such as character set information (<meta charset=”UTF-8″>) and links to external stylesheets or scripts.
Note: The default CSS for <header > tag is display: block.
Syntax:
<div id="header"></div>
In HTML5, we have <header> tag along with tags like <main>,<footer>, etc.
header web structure
HTML5 <header> tag:
In our normal notebook, we use the uppermost section of the page for heading or header. We specify the heading of the content on that page. The <header> tag is generally used to hold the information about the content. It generally gives the user information about what the page is actually for and what the user can expect in the <main> section of the website.
The <header> tag is generally used for heading purposes, you may see the use of these header tags <h1> to <h6>. The <nav> tag is used inside the <header> tag. This may happen if <nav> is very small and if the content of <nav> tag is used to identify the different web content. In such cases, the <nav> is usually taken inside of the <header> tag.
A <header> element generally contains:
one or more heading elements (<h1> to <h6>)
icon or logo
about authorship information
Where we can / cannot use <header> tag?
As the header is used for heading purposes, it cannot be used in the <footer>, but it can be used inside the <main> tag for describing different sections such as every <article> tag in our <main>.
Example 1: In this example, we will see where we can use the header tag.
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible"
content="IE=edge">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<style>
header {
background-color: aquamarine;
}
footer {
color: white;
background-color: black;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
left: 0;
}
</style>
</head>
<body>
<header>
<h1>Heading</h1>
<a href="#">article1</a>
<a href="#">article2</a>
<a href="#">article3</a>
<a href="#">article4</a>
<p>
This paragraph give more info
about the web content. So it
is placed inside the header tag.
</p>
</header>
<main>
<header>
<h2>Header for sub heading</h2>
</header>
<p>
This is our original content, which
is introduced in both the header of
this web page. but the header in main
tag is specifically for the content
itself rather than web page as whole.
</p>
<article>
<header>
<h3>Article heading</h3>
</header>
<p>
This shows that header tag can
also be found inside the article
tag to show the article title/
heading. So header tag is also
used for that purpose also.
</p>
</article>
</main>
<footer>
The footer usually have copyright
info and address.
</footer>
</body>
</html>
Output:
Example 2: In this example we will see what exactly the header is useful for. We can also include our navigation bar in the header as it is also an important part of the web page that defines the structure of our content and navigate through the different sections of the page. Hence it can also be placed inside the header tag.
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible"
content="IE=edge">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<style>
header {
width: 100%;
height: 10%;
background-color: #E1A2B8;
}
nav {
color: white;
}
a {
text-decoration: none;
background-color: lightgreen;
padding: 5px;
border-radius: 5%;
margin: 20px;
}
main {
font-size: 150px;
}
</style>
</head>
<body>
<header>
<h1>Coffee shop</h1>
<nav>
<a href="#">Menu</a>
<a href="#">Review</a>
<a href="#">Contact</a>
<a href="#">About Us</a>
</nav>
</header>
<main>
Main content...
</main>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?
|
https://www.geeksforgeeks.org/what-is-usually-included-in-the-header-of-an-html-document?ref=asr10
|
CSS
|
What is usually included in the header of an HTML document ?
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.00149210379, 0.0183006302, -0.0119067067, 0.0242502186, 0.0610021, -0.0218703821, -0.00885660108, -0.000473754742, -0.0359083973, -0.00358858029, 0.0373543724, 0.00912772212, 0.0255154464, -0.0627191961, -0.00960971322, 0.00156459096, -0.0233012959, -0.00186866, 0.00346431672, -0.0153559605, 0.0253949482, 0.0117184287, -0.0381677337, -0.0022838132, -0.0133828064, 0.0203490965, -0.00551654818, 0.0079829907, 0.00635626819, -0.0014026718, 0.00348502747, -0.00634873705, 0.00782483723, -0.0391015932, -0.0284073986, 0.00997873861, -0.0014431515, 0.0283320863, -0.00104494335, 0.0142187616, 0.0540734679, 0.00832942221, 0.00636379933, -0.0249129571, 0.000500349037, -0.0162521638, 0.00143373769, -0.0462410972, -0.0259673148, -0.049916286, 0.00924821943, 0.0318114646, 0.0259371903, 0.0400655791, 0.00451867422, -0.00265095546, 0.00685708784, -0.00648806291, -0.0344925448, 0.0285881441, 0.00945156, -0.0810348913, -0.0143769151, -0.0253949482, -0.0101670166, 0.0053546289, -0.0231205486, 0.0303805526, 0.02842246, -0.0192344896, -0.0176680163, 0.00713950535, 0.00859301165, 0.0662136376, -0.0189934932, -0.0360590182, -0.00756877894, 0.0124941338, -0.0332574397, 0.032323584, 0.00865326077, -0.00447348738, 0.000149563406, 0.013307495, 0.038137611, -0.0054299403, -0.00555043807, -0.0415718034, 0.0459097289, 0.0116657102, -0.0111008761, 0.0242200941, 0.0297780633, -0.0190838668, -0.0273982268, 0.0314198472, -0.00833695382, 0.00774199516, -0.0162371024, -0.0050232592, -0.0162069779, 0.0133978687, -0.00130947412, -0.0211473946, -0.00558432797, 0.00770810479, 0.0469339602, -0.0122230137, -0.00215954962, -0.0393124633, 0.020800963, -0.0292960703, -0.0261781849, 0.0192947388, -0.0170956496, 0.0240544081, 0.00275450852, -0.078142941, 0.0298081879, 0.028106153, -0.0193549879, -0.0329260714, 0.0402162, 0.0561520569, -0.0674788654, 0.0553989448, -0.0223071873, -0.0294015072, 0.0196261071, -0.00436428608, -0.0223523751, 0.0258468166, 0.0239640344, 0.011838926, 0.0147459395, 0.0247472711, 0.00334758451, 0.00772693288, -0.00370154716, -0.0237983502, -0.0134054, -0.0206654035, -0.0414513052, 0.00910512824, 0.0134054, 0.00841226522, -0.00658973306, 0.038137611, -0.0622372031, 0.0261179358, -0.0393124633, 0.0109653156, -0.0283320863, -0.00118050363, 0.011838926, -0.0366916321, 0.011356934, 0.0291605107, -0.0513020121, 0.0273681022, 0.0111761875, -0.0527178645, -0.00746334344, 0.0253798869, -0.00896203704, 0.0547060817, 0.024159845, -0.0137593625, -0.0497957878, 0.0276542865, -0.012426354, 0.0180897582, -0.0137217073, 0.00347561343, -0.0410898104, -0.0131945284, 0.0619962104, -0.0227741171, -0.00985071, -0.013706645, -0.0152128693, -0.00695875799, 0.0213432033, 0.0052416618, -0.00633744057, 0.0356674, 0.028000718, 0.00293337251, -0.000661326805, -0.0199725404, -0.0507296473, 0.000888672599, 0.0179993846, 0.00180841109, 0.0278199706, -0.0342816748, -0.014105794, -0.00897709932, -0.00143185491, 0.0101293614, 0.0145953177, -0.00777965039, -0.0165985972, 0.0205750298, 0.0253798869, 0.0248075202, 0.00128405658, 0.00147139328, 0.0280459039, -0.0245815869, -0.0221113786, -0.026238434, -0.0019449126, 0.0138723291, -0.0307571087, 0.0078624934, -0.0478979461, 0.00804324, -0.0260727499, 0.00618681777, 0.0183759406, -0.0152053386, -0.0152053386, 0.0287688915, -0.0394028388, 0.00462034438, -0.00697382027, -0.0388605967, 0.0076742149, 0.00750099914, -0.0239188485, 0.0127803171, 0.0046805935, 0.024159845, 0.0204695929, 0.0103778886, -0.0162371024, -0.0102272658, -0.00427014707, 0.00478602899, -0.0225783084, 0.0347335413, -0.0361192673, -0.0170655251, -0.00563328061, 0.00581779284, -0.0128706899, -0.0205599666, -0.00552031351, 0.0254250728, 0.0159358568, 0.00857041869, 0.018240381, 0.00680813566, 0.0135560222, 0.0468134657, 0.014587786, -0.00238548336, 0.0321127102, 0.016583534, 0.0346732922, 0.0225331225, 0.00573118497, -0.0125242583, 0.010664071, -0.0285881441, 0.0645869151, -0.0190838668, 0.0129384706, -0.0244912133, 0.0621769577, -0.0397040844, 0.0100841746, 0.0528986119, -0.0222017523, 0.0398547053, 0.0440420099, -0.0242954046, 0.0288140792, 0.0214787647, 0.0102950456, -0.0192646142, 0.0453674868, 0.0157400481, -0.00794533547, 0.00102611561, 0.0221565664, 0.00765538728, -0.00256811315, 0.0156948622, -0.0228494294, -0.0021764948, 0.00959465094, -0.0144296326, 0.0293563195, -0.00651818747, 0.0115678059, -0.0264191814, -0.0193549879, -0.00360929104, 0.00589310424, -0.0139024537, -0.00108448183, 0.0038540524, -0.012027204, 0.00645040721, -0.0055014859, -0.00143279624, -0.00268108, -0.0296876896, -0.0103176394, -0.0466929674, -0.0127501925, -0.00473331101, -0.037113376, 0.0197466053, 0.0137593625, -0.0021011834, -0.0247773957, -0.0419634208, -0.0319018401, -0.0296726264, -0.021599263, 0.0435901433, -0.00288442033, -0.0178939495, -0.00520400656, -0.000983753, 0.0221866891, -0.0230151135, -0.0329260714, -0.0260878112, 0.0554893166, -0.0146179106, 0.0270066094, -0.0391919687, 0.02325611, 0.00637886161, -0.00306705013, -0.0031894308, -0.0300341211, -0.0123284496, -0.0168998409, -0.029386444, 0.0110330964, -0.0340708047, -0.0511212684, 0.0176830776, 0.0155291772, 0.013435524, 0.00145915523, 0.0445240028, 0.0495246686, 0.0263739955, 0.0347636677, -0.00130853266, -0.0326549523, -0.0100465184, -0.0122456066, -0.0123736355, -0.00526802102, -0.0106716016, 0.00141961675, -0.0291906353, -0.0338900574, -0.0253648236, -0.0260727499, -0.00673659, 0.00429274049, -0.0136991134, -0.0271722935, -0.0209967718, -0.0372941233, -0.0292659458, -0.023994159, 0.0359987691, -0.011545212, -0.00808089599, -0.0407283157, -0.00235912437, 0.0237381011, 0.0310282297, 0.0325043276, 0.0362397656, 0.0276090987, -0.0278049074, 0.0321428366, -0.0243405905, 0.00764785614, 0.037444748, -0.0200930368, 0.0156496745, 0.000294184516, -0.0260576867, -0.00700771064, -0.00835954677, -0.0171408374, -0.00902228616, 0.0435901433, -0.0167642813, 0.026720427, 0.0136915827, 0.0421441682, -0.0283019617, -0.020529842, -0.00915784668, 0.0126673495, -0.00690227468, 0.00410822779, -0.020695528, 0.0202888474, 0.0101971412, 0.0189031195, -0.00579519942, 0.029386444, 0.0328658223, -0.0388907231, 0.0724795312, 0.00833695382, 0.00966243166, 0.0124338847, -0.00633744057, -0.0206051543, 0.00831436, -0.0428069048, 0.0196562316, -0.00656713964, -0.0177583899, 0.0184813775, 0.00162013294, -0.0278651565, -0.00477849785, 0.030666735, 0.00704160053, -0.0167190935, -0.0649484098, 0.0285278969, -0.0116732419, -0.0356372781, 0.0165985972, -0.0181801319, 0.0185115021, 0.0255305097, -0.00272814953, -0.0400354527, 0.0131644038, -0.00856288709, -0.0226536188, 0.0240694713, -0.00260012038, -0.0453976132, -0.00232335157, -0.0507898964, 0.0203942824, 0.0849510729, -0.0230151135, -0.00697758608, -0.00165496441, 0.0264342427, -0.0220360681, 0.0215239506, 0.00559939025, -0.00826164242, 0.00225933711, 0.0567545481, 0.00500066625, -0.0298985597, -0.023994159, -0.0260878112, -0.0209063981, 0.00444336282, -0.0433792733, 0.0224879347, 0.0117410216, 0.00976786762, -0.0209214613, 0.0184361897, -0.00987330265, 0.0272476058, -0.021599263, 0.0108222244, 0.0625384524, 0.0608213544, -0.00125769759, -0.0137668941, -0.0105887596, 0.0146480352, 0.00903734844, 0.00765538728, -0.00704536587, 0.0303504281, 0.0381074846, 0.0143844457, -0.0459398553, 0.0198821668, 0.000164390309, -0.0303654894, -0.0152053386, 0.0182253197, 0.0544349626, -0.00342101278, 0.0213432033, -0.00832189154, 0.038981095, 0.022563247, 0.0364205129, -0.0572666638, 0.0479883179, -0.0238736607, 0.0180746969, -0.0128029101, 0.033377938, -0.032685075, 0.0222770628, -0.00162954687, -0.00519270962, -0.0289044529, 0.0265698042, 0.0139099853, 0.00171050639, 0.0150396535, 0.00380698289, -0.0189633686, -0.0136991134, -0.00350008975, -0.010264921, 0.0440721363, -0.000563892885, -0.0328357, -0.0390112214, -0.0183910038, -0.0146103799, 0.014986936, 0.0466025919, 0.0104004815, 0.00283358525, -0.0101670166, 0.0207407139, 0.0194453616, 0.0122606689, -0.0457289815, 0.000785590324, -0.0294466931, -0.014000359, -0.0310282297, -0.00343795796, -0.00102329138, 0.00242502172, 0.0285580214, -0.00902981684, 0.0105661666, 0.010829756, 0.00746334344, 0.017442083, -0.00286370981, 0.00639768923, -0.0318717137, -0.00633367477, -0.00136595755, -0.0212678928, 0.00701524178, -0.00518894428, 0.019249551, 0.0261480603, -0.000497995527, -0.0357577763, -0.0127351303, 0.00805077143, 0.0178035758, 0.0241146572, 0.0145802554, -0.00182912161, 0.0176228285, 0.00323085207, 0.0334080644, 0.00935365539, 0.0267354883, -0.0255003851, 0.0220360681, -2.07694266e-05, 0.0173065215, 0.00297291111, 0.0246870238, -0.0306064859, -0.00618681777, -0.00144879986, 0.00973021146, -0.0135560222, -0.058562018, 0.0112740919, 0.00628095726, 0.0321127102, -0.0135334292, 0.00594582222, -0.000758760725, 0.0250485167, -0.0387702249, 0.0230000522, -0.00253987149, -0.0224728733, 0.0137970187, 0.00628095726, 0.0118841128, 0.00822398718, -0.00682319794, -0.0124112917, 0.0132397152, -0.0380472355, 0.0275337882, 0.00683826, -0.0250937045, -0.0105511043, -0.000523413066, 0.00345302024, -0.0241749063, -0.0229096785, -0.00781730656, 0.0110029718, -0.00186677719, -0.0279254057, 0.023090424, -0.00784743112, 0.0271722935, -0.00040691602, -0.0237682257, -0.0180746969, -0.0422646664, -0.0112213744, 0.0018554806, -0.0238134135, -0.0199424159, -0.0334381871, -0.0230753627, -0.011921769, 0.0236176029, 0.0340406783, 0.0080583021, -0.013390338, 0.00760643464, -0.019731544, -0.00853276253, 0.0407885648, 0.00656337431, 0.125679389, -0.0152128693, 0.0120874532, 0.0122531382, -0.00013038257, 0.0130439056, 0.0110330964, -0.00954946503, -0.0227289312, -0.0142338239, -0.00787755568, -0.0163877252, -0.00516258506, 0.0125769759, 0.0167642813, -0.00199198211, -0.0139099853, -0.00638262741, -0.0388605967, 0.027518725, 0.00554667227, -0.00230075815, -0.0353059061, 0.00579896523, 0.00739556318, 0.0357879, 0.0341009274, 0.026238434, -0.037113376, 0.0117937392, 0.0260275621, -0.00536592538, -0.0252443254, -0.0146254422, 0.0451566167, 0.00152881804, 0.0170052778, -0.00956452731, 0.00371660944, 0.0102950456, -0.0289345775, -0.0246870238, 0.00178393489, -0.0240544081, -0.0187073108, 0.00465046894, -0.0112289051, 0.0169902146, 0.0022856961, 0.0250937045, 0.0222770628, 0.0209063981, -0.0163877252, 0.0157551114, 0.0207708385, 0.0116431173, 0.0155141149, 0.0405475684, -0.00754618598, -0.0126221627, 0.021810133, -0.0170805883, 0.0426562838, -0.00831436, -0.0266149901, -0.0391618423, 0.00642781379, 0.0258769412, -0.0032628593, 0.00873610377, 0.0411500596, -0.00154952868, 0.0311186016, 0.00176887261, -0.0183307547, -0.0312993489, -0.000421036879, 0.00363376713, -0.00718092639, -0.0130589679, -0.00192420208, -0.00951180886, -0.0161166042, 0.0136388652, 0.00276392233, -0.033227317, -0.00532450434, -0.017276397, -0.0185416266, 0.00947415363, 0.00411199359, -0.0336791836, -0.0103929508, 0.030290179, -0.00557679683, 0.00737296976, 0.00422119489, 0.0145802554, -0.00124451821, -0.0106716016, -0.0189483073, -0.00705289701, 0.0195507966, 0.014986936, 0.0446445, -0.00342289568, -0.0172613356, -0.0312993489, -0.00875869673, 0.0354264043, -0.0588632599, 0.00240054564, -0.013601209, -0.00297855935, -0.0109201288, 0.038499102, 0.0418730453, -0.00815620646, -0.0070001795, -0.0133828064, 0.00186960143, -0.00837460905, -0.00661609182, -0.0197164807, -0.0125995697, 0.00610774104, 0.0147685334, 0.0316909663, -0.00662738876, 0.0350046605, 0.0110858139, 0.0132773705, -0.0128179723, -0.0288291406, -0.0097753983, -0.025816692, -0.00976786762, -0.00423249137, -0.000238524808, -0.00881894585, -0.0297328755, 0.00689850934, -0.0381677337, 0.0261179358, -0.00236289, -0.0128405653, 0.0266149901, 0.0531697311, 0.0372941233, 0.00597971212, 0.0155291772, -6.83684775e-05, -0.0224879347, -0.00316307181, -0.0255003851, -0.000590251817, -0.021011835, 0.0254250728, -0.0308776069, -0.00435675494, 0.0144446949, 0.0300943702, -0.0347636677, -0.00157118065, -0.0297780633, -0.0329260714, 0.0168245304, 0.0155894253, 0.0103854192, 0.00103741232, -0.00207859, -0.00530567672, 0.00545253325, 0.0337394327, 0.0414814278, 0.0182705056, 0.00877375901, 0.0023930145, 0.0220360681, 0.0234368574, -0.00788508635, -0.0386196, 0.0115602743, 0.00918797, 0.0109276604, 0.0207859017, 0.00180652831, 0.0180897582, -0.0266149901, 0.028964702, 0.0278651565, -0.0144672887, -0.0158002973, 0.0316909663, 0.00809595827, -0.00129911886, 0.0156948622, -0.0145651931, -0.000640145503, 0.000256764237, 0.0131794661, -0.0122606689, 0.0295521282, 0.00342477835, -0.010536042, 0.00884907, 0.00498560397, 0.0444336273, 0.00750853028, 0.00765162148, 0.0189934932, 0.00857041869, 0.0235422924, -0.04874143, 0.00722987857, 0.0338599309, -0.00368271931, 0.0247924589, 0.031841591, -0.00747840572, 0.0258317534, 0.0156496745, 0.0277747829, 0.0328959487, 0.000205576143, 0.0168697163, 0.00200516172, 0.0177734513, 0.000232758786, 0.0220812541, 0.0488016792, -0.0100314561, -0.0330766961, 0.00892438181, 0.0151526202, 0.00624706689, 0.0182855688, 0.0190838668, 0.00891685, -0.00343230949, -0.0196562316, 0.0214787647, 0.0137141757, -0.00394254318, -0.000777117792, 0.0237230398, -0.033016447, -0.00205034832, 0.0136614582, 0.0229096785, -0.0319922119, 0.00760643464, 0.0366313867, 0.0196411703, 0.0268108, 0.00436052075, 0.0364807621, 0.00927834399, 0.0062508327, -0.0108372867, 0.00561821833, 0.0320223384, -0.000417742, 0.00360929104, 0.00488016801, -0.0129460013, 0.0202888474, 0.0259673148, -0.0029258416, -0.0394028388, -0.00671399664, 0.0143392589, -0.00158247736, -0.0091427844, -0.00491782371, 0.0206503402, -0.00449984614, 0.0279856548, 0.0287086423, -0.0152655877, 0.0201532859, -0.0250786413, -0.00966243166, -0.0124037601, 0.0335285626, -0.0317813419, -0.00406680675, -0.00712820841, 0.0189483073, -0.00854029413, -0.0177734513, -0.00400655763, 0.00286182691, -0.0589536354, 0.0351251587, -0.0585318916, -0.00578013714, 0.0118238637, 0.0452469885, 0.0142413545, 0.0217197612, 0.00302939443, -0.044795122, -0.0197466053, -0.015468928, 0.00945909135, -0.00168226473, 0.0145501308, 0.0059910086, -0.0366615094, -0.00534709776, 0.00586674502, -0.02111727, -0.0199424159, 0.0103778886, 0.00311411964, 0.00297291111, 0.0360891446, 0.00551278237, 0.0221565664, 0.00056718773, 0.0244460274, 0.00321202422, 0.00860054325, -0.00932353083, -0.00750853028, 0.0058818073, 0.0147685334, -0.0305161122, -0.011650648, -0.00718092639, -0.00661985762, 0.0260275621, 0.00361870485, -0.0280910917, 0.0144522265, -0.0136991134, 0.00933859311, 0.00809595827, -0.00235347613, -0.00106471265, 0.0396438353, -0.0308776069, 0.0073842667, -0.019144116, -0.00801311526, 0.00851770118, 0.00319507928, 0.0183156934, -0.00687215, 0.0207407139, 0.013812081, 0.0114849638, 0.03593852, 0.0077118706, -0.0343419239, -0.0163877252, -0.00501572806, 0.00260012038, -0.0183910038, 0.0200779755, 0.0122154821, 0.0550977, 0.000505997392, 0.00607385114, -0.0181500074, 0.00154388032, 0.000157682894, -0.0294165686, -0.00131512247, -0.000927740301, -0.00329110096, 0.0187374353, -0.0117560839, 0.00111178216, 0.00399526116, -0.0124037601, 0.00417224225, -0.0165232848, 0.000360081845, -0.0196110457, 0.0110481586, -0.000927269575, 0.00535839424, -0.000276768784, 0.0204997174, -0.01253179, -0.0115979305, 0.0136162713, -0.000260059111, -0.0173366461, -0.00796039775, 0.0275789741, -0.0358180217, -0.0421140417, -0.00500066625, 0.00248903641, -0.0125543829, 0.00755748246, -0.0215088893, -0.00852523185, -0.00547512667, 0.009316, 0.00492912, -0.0166287199, -0.00407810323, 0.0128782215, 0.00950427819, -0.00869091693, 0.00423625717, 0.0234519187, -0.00975280534, -0.000480109127, -0.0045299707, 0.0170203391, 0.039523337, 0.000604372646, -0.00157023931, -0.0127652548, -0.00863819849, -0.00645793835, -0.0311186016, 0.0284676477, 0.0141735747, -0.00594205642, 0.0147911264, 0.00851017, 0.021011835, -0.0365108885, -0.0106941955, 0.0015900085, 0.00718845753, -0.00242313906, 0.0154839903, -0.00738803204, -0.00191102258, -0.0443733782, -0.00368083664, 0.00378815504, 0.0259974394, 0.0288893897, 0.011944362, -0.00285994424, 0.0111837182, 0.0215691384, -0.0121778268, -0.0151601518, -0.00352456584, -0.00402162, -0.00730519, -0.00747840572, 0.00111837185, 0.0171408374, -0.00642781379, 0.0761547238, -0.00684579136, -0.00864573, -0.0199725404, 0.0260878112, -0.0147459395, 0.00335323275, 0.0182705056, 0.0208762754, 0.00498936931, 0.0122606689, 0.00739556318, -0.00922562648, 0.0130966241, -0.0102272658, 0.00991095882, -0.0215842, 0.00780977495, 0.00807336438, -0.0127501925, -0.0115000261, 0.024370715, 0.0270066094, -0.0059608845, 0.01421123, 0.0022856961, -0.00265472103, -0.028211588, -0.0254853219, -0.0225331225, 0.018451253, 0.000511175, 0.00462034438, -0.00878882129, 0.00093433, 0.0243104659, -0.00489523029, -0.0119368304, -0.015468928, 0.0166437831, 0.0045676264, -0.0247623343, 0.00877375901, -0.00719975401, 0.00522659952, 0.0145576615, -0.0394028388, 0.0103402324, 0.0103929508, 0.0227590557, 0.0254100114, -0.0138422055, 0.0444035046, -0.0216595121, 0.000224756965, 0.0117560839, 0.00622447347, -0.0190989301, 0.0227590557, -0.0330766961, -0.00411575893, -0.0167190935, 0.0186922494, 0.00375614781, 0.0137894871, -0.00316683738, -0.0173065215, -0.00285429577, -0.0045713922, 0.0219456945, -0.00847251434, -0.00451114308, 0.0128857521, 0.0011663828, -0.00796792842, 0.0141133256, 0.00260953442, 0.000192514344, -0.00379192061, -0.0172914602, 0.0259522516, 0.0125619145, -0.0195357352, 0.0154990526, 0.00447348738, -0.00686461898, -0.00802064687, -0.00154670444, -0.0026227138, 0.00997120794, 0.0153107746, -0.0140681388, 0.0011645, -0.0084273275, 0.0204545315, 0.0158605464, -0.0132698398, 0.0239339098, -0.00985824, 0.013601209, 0.00533580082, 0.00583662093, 0.0082089249, 0.00290701375, -0.00424378831, -0.0107996315, 0.0147610018, -0.0131644038, -0.039673958, 0.0150019983, 0.0113644656, 0.015468928, -0.00909759756, -0.00758760702, -0.00672152778, -0.00666127866, 0.0116732419, -0.000516823377, -0.00273756334, -0.0180746969, -0.00657090545, 0.0500367843, 0.0109351911, -0.0089921616, 0.00902981684, 0.0131267486, 0.0189633686, -0.014693222, 0.0143317282, 0.0130288433, 0.000278180873, 0.0166136585, 0.00915784668, 0.0180144478, -0.00986577198, 0.00236665551, -0.00669893436, 0.0141961677, -0.00076958671, 0.0123058558, 0.0120949848, -0.0247171484, 0.0014986936, -0.00233088271, 0.00319884461, 0.0110330964, -0.00853276253, 0.0117711462, 0.0111535937, -0.0128782215, -0.0171107128, -0.0375049971, 0.00829176698, 0.0124414163, 0.0217197612, 0.0059910086, 0.0156044876, -0.00565587357, -0.0180295091, -0.0107770376, 0.014693222, 0.0561520569, 0.0269463602, -0.000610962394, -0.00329486653, 0.0116657102, 0.034884166, -0.0525069945, 0.0079829907, -0.0293412581, 0.0282266513, -0.010829756, -0.00790014863, -0.000762996962, 0.00316495472, -0.000442453515, 0.00378438947, -0.0155743631, -0.00873610377, -0.000220756061, 0.00594958756, 0.00392371556, -0.00186960143, 0.0116205234, -0.0220059436, 0.000789355894, -0.000541299523, -0.00426638126, -0.0119368304, -0.00934612472, -0.0017086236, 0.0149718737, 0.0131794661, 0.00445465976, 0.0101971412, 0.00392371556, 0.00692863343, -0.0121778268, -0.0184361897, -0.0141283879, -0.0347636677, 0.009316, -0.00105341594, 0.00715833297, 0.000971514964, -0.0129761258, -0.0215540752, -0.0183608793, 0.00935365539, -0.0077495263, -0.000151093162, 0.0177583899, 0.0259221271, -0.0117108971, 0.01696009, 0.0155593008, 0.0247773957, 0.00463540666, 0.0161467288, 0.0139476405, 0.0154388035, -0.0161467288, 0.00139514066, -0.00189031207, -0.00555043807, -0.00385970087, 0.00444712862, -0.00367707107, -0.00117862085, 0.0156496745, 0.0164329112, 0.0188428704, 0.010746913, 0.00847251434, -0.0159207955, 0.00695499266, 0.0354565307, 0.00725623732, 0.00248150527, -0.00893191248, -0.00680813566, -0.00254363706, 0.00848757662, 0.00712067727, -0.0180596337, -0.000125087259, -0.00494041713, -0.019731544, 0.00242502172, 0.00310847117, -0.0163576, 0.00192796765, 0.0260576867, -0.0237079766, 0.000694275426, 0.00954946503, -0.0284525845, 0.00449984614, -0.0215239506, -0.035095036, -0.0109427227, -0.000784648932, -0.00373920286, -0.00587427616, -0.00616422482, 0.0466929674, -0.0114699015, -0.0201382246, -0.0168395918, -0.00196185778, 0.00859301165, 0.0194001738, 0.0171558987, -0.0073842667, 0.0104381377, 0.0110029718, 0.0143166659, 0.00902228616, -0.0120347356, -0.0186169371, 0.0190838668, 0.00655584317, -0.0188428704, 0.0105962912, -0.000752171, 0.00509103946, -0.0147384088, -0.0495849177, -0.0176378917, 0.00495924475, 0.00698888255, 0.0173968952, 0.0315102227, -0.0251539517, -0.0140229519, 0.0169299655, -0.0188428704, 0.00297479378, -0.00480485661, -0.0107695069, 0.00704913167, 0.0137217073, 0.00431909924, 0.0186018758, 0.0205147807, -0.0150396535, -0.00337582617, 0.0137593625, 0.01796926, 0.0097076185, 0.00628095726, -0.033377938, -0.0114247147, -0.00365259498, -0.00583285512, -0.0140907317, -0.0265095551, 0.00484627811, 0.00503455615, -0.000875493104, 0.00225180597, -0.000802535331, -0.0110255647, -0.0291605107, 0.0139627028, -0.037444748, 0.0356372781, 0.0163425375, 0.0166588444, -0.0208160263, -0.000885848422, -0.0112514989, -0.0466327183, -0.00766668376, 0.0141434502, 0.000489523052, 0.00321955536, -0.0115602743, 0.0180445723, 0.0154162096, -0.0357577763, 0.0177583899, -0.0125619145, -0.0223523751, 0.0138798608, 0.0179090109, 0.0188880581, 0.0131267486, -0.0208612122, 0.0183458161, 0.00150716607, -0.00802064687, 0.00742568774, 0.0238736607, -0.000687685737, -0.0132623082, 0.0054261745, 0.037113376, -0.0176680163, -0.0097000869, -0.0148513755, 0.011334341, -0.00882647652, -0.00815620646, -0.0120347356, -0.0244460274, -0.00382392807, 0.00570482621, 0.0286634564, 0.0463013463, -0.0148438448, -0.016688969, -0.0059608845, 0.0025492853, 0.018134946, 0.0226084329, -0.00767044956, 0.0258769412, 0.00796792842, -0.0130363749, -0.0370230041, -0.0193399247, 0.00663492, -0.00192043651, 0.00652948394, -0.0013894923, -0.00549772, 0.0194604229, -0.00881141424, -0.00547889248, 0.00268296269, 0.0078624934, -0.0149492798, 0.02842246, -0.0406379439, -0.00216519809, -0.0491933, 0.00572741963, -0.00615669368, 0.00826164242, 0.0155442394, 0.0216444489, -0.000129558859, 0.00881141424, 0.0236627907, 0.0219155699, -0.00556926569, -0.00414211815, 0.00945156, -0.0238887239, 0.0169450287, -0.00459022, -0.0144221019, -0.00860807393, -0.00987330265, -0.00281664031, -0.0214486402, 0.0178337, -0.000942331855, -0.0258468166, -0.0153107746, -0.00212377682, 0.00119274168, -0.0117560839, 0.00100069807, -0.0350347869, 0.00492912, 0.0117259594, -0.0294466931, 0.0183759406, -0.0209666472, -0.000510233629, -0.00457892334, 0.0236627907, -0.0154990526, 0.0234067328, 0.00216708076, 0.0122154821, -0.0109954402, -0.00333817047, 0.0130589679, 0.00797546, 0.00603996124, -0.0134430556, -0.0124564786, 0.00472201454, 0.00382769364, -0.0116657102, 0.0130062504, -0.0017462793, 0.0107845692, -0.0127125364, -0.0199122913, 0.0106264157, -0.00247209123, 0.00863819849, -0.0209063981, -0.0052416618, 0.00232335157, 0.0273530409, -0.00854782481, -0.0274283513, -0.0103778886, 0.00991095882, 0.0129685951, 0.02325611, 0.0118841128, -0.014105794, 0.0036356498, 0.0130062504, 0.00809595827, -0.0347034186, 0.0334683135, -0.0106113534, 0.00348502747, -0.0116431173, 0.00563704595, 0.00455256412, -0.00933859311, 0.0023930145, -0.0180445723, 0.0176228285, 0.0121627646, 0.0142790107, 0.0183006302, 0.0486811809, 0.0100992369, 0.00578013714, 0.0296123773, -0.00929340627, 0.0306366105, 0.0121251093, -0.00514752278, -0.0386497267, -0.0176077671, 0.00818633102, -0.00886413269, 0.0128631592, -0.00396890193, 0.0109803779, 0.000330663403, -0.0112289051, -0.0111987805, -0.00737673556, 0.0096323071, 0.0352757834, -0.0116883041, 0.0160111692, -0.0053546289, -0.000407857413, 0.0082767047, -0.0247472711, -0.0115226191, 0.00257564429, 0.00793780386, 0.00620941119, -0.00100069807, -0.0066311541, 0.0094063729, 0.0211323332, 0.0176981408, 0.00320261018, 0.00654454622, -0.0359686464, 0.00242878729, 0.00886413269, 0.00335323275, 0.00764409034, -0.00270743901, 0.00355845597, 0.00991848949, 0.00511363288, 0.00132830197, -0.00997120794, 0.0168094672, 0.00389735634, 0.0012511079, -0.00756877894, 0.0149116246, 0.000594488054, -0.00473707682, 0.00904487912, -0.0177734513, 0.00788508635, -0.00064061617, 0.0133602135, -0.0080583021, 0.00167096802, -0.00177169684, -0.000493288564, 0.00890178792, 0.0120573286, -0.0097753983, -0.0129384706, 0.0175625794, 0.0101896105, -0.0158906709, 0.00217837747, 0.00598347746, 0.0176378917, -0.0142639484, 0.0125619145, -0.0030689328, -0.00013638394, -0.00267354888, 0.00614539674, 0.00196750602, 0.0109803779, 0.0067027, -0.00915784668, -0.0051324605, 0.0199424159, 0.0114021208, 0.0180295091, 0.020424407, 0.0061792871, 0.0153408991, -0.010558635, -0.0122832628, -0.0207407139, 0.026931297, -0.0199122913, 0.00100163941, 0.0052115377, -0.00825411174, 0.0225783084, 0.0158756077, 0.00746710878, 0.000438923307, 0.00549772, 0.0126447566, 0.00240807678, -0.00321767246, 0.00911266, -0.0152881807, -0.00635250285, -0.00628472259, 0.00355092483, -0.0081788, -0.00219908799, 0.00760643464, 0.00531320786, 0.000581779284, 0.00354527635, -0.000193926433, -0.040848814, -0.0112514989, -0.00765915262, -0.0184663143, -0.00668763788, 0.0201834105, -0.0221264418, 0.0055014859, -0.0125167277, 0.00758007588, -0.00228193053, 0.000848663505, 0.0184663143, -0.00212189415, -0.0170052778, -0.0053546289, 0.0245514624, -0.00116261723, -0.0133526819, 0.0183458161, -0.00259258924, 0.0243104659, -0.00960218254, -0.0104155438, -0.0130815618, -0.00324403145, 0.0227138679, 0.00382957631, 0.0075311237, -0.0046429378, -0.00750099914, -0.00945909135, 0.00633367477, 0.00444336282, -0.000340312632, 0.0145124746, 0.0150321228, -0.00555420341, -0.00933859311, -0.0126522873, -0.0110481586, -0.00704536587, 0.0148363132, -0.0144446949, 0.0142413545, 0.0204846561, 0.0159207955, 0.00301056658, -0.00223297812, 0.00427767821, 0.00405174447, 0.00754242, -0.00844992, 0.00530191092, 0.0187675599, 0.0131945284, 0.0149944667, -0.00184041832, 0.00423249137, -0.0135710845, -0.0177132022, 0.00157588755, 0.0144296326, -0.0103025772, 0.0103402324, 0.00826917402, -0.0013847854, 0.00308022951, -0.000273238576, -0.00305951899, 0.00353586255, 0.0387702249, 0.00010696549, -0.0207407139, -0.00526425522, -0.0187826212, -0.0089921616, 0.0113268094, -0.0267505515, -0.0227439925, -0.0218703821, -0.0129836574, -0.0129460013, 0.00372037501, 0.00157118065, -0.0173065215, 0.00695499266, -0.00356786977, 0.00233276561, 0.000133677444, -0.0294617545, -0.0155291772, 0.00825411174, 0.0023948974, -0.000661797472, 0.0289496388, 0.0122757312, -0.0129911881, 0.00860054325, 0.0143166659, 0.00612656912, 0.0177583899, -0.00288253743, 0.0232862346, -0.000636850658, 0.000591193209, 0.00386346644, -0.00687215, -0.00646546949, 0.000167214472, -0.0101519544, 0.00232711714, 0.0309679806, 0.0172010865, 0.00252857478, -0.0192043651, 0.00935365539, 0.00535839424, -0.0046015163, 0.0069248681, -0.00684579136, -0.00407057209, -0.0372941233, 0.0289496388, 0.0111686559, -0.0112891542, 0.0367518812, 0.0156044876, -0.0144522265, -7.74440741e-06, 0.0252895132, 0.0225783084, 0.00596841518, 0.0197466053, -0.013412931, 0.0230151135, 0.000979046104, -0.00724870618, 0.00154952868, -0.0026227138, 0.00207294174, 0.000155800124, 0.0212377682, -0.0164479744, 0.0211473946, 0.00314989244, -0.00335323275, 0.0343720466, -0.0289496388, 0.0285881441, 0.00494041713, 0.00967749394, 0.00390488748, 0.0136991134, 0.0164630357, 0.00368460221, -0.0152731184, -0.0153408991, 0.00680437032, 0.0113945901, -0.021599263, 0.0150170606, 0.0122606689, -0.0193399247, 0.0128104407, 0.000392324466, -0.0102573903, 0.0377459899, 0.000124969578, 0.00925575104, -0.00187713257, 0.00183571142, 0.000161801479, 0.00645417301, -0.0079076793, 0.00341348164, -0.0221264418, 0.00377121, 0.0339503065, 0.00785496179, -0.0197767299, 0.0170354024, 0.0254702605, 0.0126071, 0.0159509201, -0.0147911264, 0.0138045494, 0.0120347356, -0.00819386262, 0.024159845, -0.00767798023, 0.00631108135, 0.00458645402, 0.00281099183, 0.021975819, -0.0052454276, -0.0085026389, -0.0183458161, 0.00886413269, 0.000101787839, -0.0138271432, 0.00434169266, 0.00245891185, 0.00666127866, -0.0193098, -0.0127501925, 0.00645040721, 0.0109653156, 0.0128782215, -0.0257564429, -0.0023948974, -0.00561068719, 0.00857041869, -0.00791521091, -0.000634497148, 0.0104833236, -0.00823904946, 0.00030807, 0.0023948974, 0.0152279316, -0.0247472711, 0.00329674943, 0.000847722113, -0.0138346739, -0.0314800963, -0.00727506541, -0.00641275151, -0.0204997174, -0.00331369438, 0.00199198211, 0.0140982633, 0.0177282654, -0.00354151078, 0.00951934047, 0.00282605411, -0.00666127866, 0.026554741, -0.0161316674, -0.0180445723, 0.0075650136, 0.00376556185, -0.00320261018, -0.00572741963, -0.0166437831, -9.3433e-05, 0.00880388357, 0.00538475346, -0.0158153586, -0.00286182691, 0.0109050665, 0.0201231614, -0.0230000522, -0.014188637, -0.0206804648, -0.0077495263, 0.0281513389, 0.0104833236, 0.00604749238, 0.00578390295, 0.0161166042, -0.0067780111, 0.0128857521, -0.00668763788, -0.00491405791, -0.00466176542, -0.00603243, -0.0138873914, -0.012155233, 0.0047144834, 0.017547518, 0.00954946503, -0.0203641579, -0.0140304836, -0.0153936166, -0.0100465184, -0.00297479378, -0.00370154716, -0.000347608409, -0.0153936166, 0.0184964389, -0.00128782215, -0.0160412937, 0.00658973306, -0.00679683918, -0.0133451512, 0.00386723201, 0.0068194326, -0.00424378831, -0.0176077671, 0.0067817769, 0.00748217106, -0.00854029413, 0.0115903988, -0.0208160263, 0.00836707838, -0.0170052778, -0.0168245304, 0.00614539674, 0.0125543829, 0.00268484559, -0.00589686958, -0.0128330346, -0.00759137236, 0.0100239255, -0.0108824736, 0.0123133874, 0.0289797634, 0.0202888474, 0.00542240916, 0.0164178498, 0.00637133047, 0.00319319637, 0.00363000156, 0.00799805298, 0.0175023302, 0.00794533547, 0.0125468522, -0.00430780277, -0.00229699258, 0.00356033863, 0.00295031769, 0.00343607506, 0.0308776069, 0.0151526202, -0.00390865328, -0.0220210049, 0.00941390451, 0.00385970087, -0.00455256412, -0.000871727534, -0.00342289568, 0.0241899695, 0.00470318645, -0.00986577198, -0.0257564429, -0.0378966145, -0.0119067067, -0.000652854273, -0.00118897611, 0.00634120591, 0.00476720138, 0.0081336135, 0.00558056263, -0.0149568114, -0.00475967024, -0.005173882, 0.00054694782, 0.00782483723, 0.0179993846, 0.00284488196, -0.0171107128, 0.00540734688, -0.00613033446, 0.00988083426, -0.0038898252, -0.00777965039, 0.0235422924, 0.00516258506, 0.0137819564, 0.000722987868, -0.0141585125, 4.71871972e-05, -0.0159358568, 0.000746051897, 0.0129610635, 0.0113719963, -0.00917290803, -0.00373920286, -0.0272927918, -0.00660856068, -0.0233615451, -0.0165232848, 0.0103025772, 0.00883400813, -0.0129460013, 0.0109050665, 0.0076365592, -0.0257715043, 0.00474084215, 0.01696009, -0.00523789646, 0.000405739294, -0.0027695708, -0.00162201573, -0.0144522265, -0.0181500074, -0.0117259594, 0.00413458701, -0.0114473077, -0.0263589323, -0.0247924589, -0.0233012959, -0.0114021208, 0.00498936931, 0.0103176394, 0.00343042682, 0.00704160053, -0.00485757459, 0.012320918, -0.00170203391, -0.00625459803, -0.0166136585, -0.00134807115, 0.0124037601, -0.00626966031, 0.0079829907, -0.00676294882, -0.0273229163, -0.00115414464, 0.00930846855, -0.00930093788, -0.00168508885, 0.0143769151, 0.0147233466, -0.0131493416, 0.00911266, 0.000990342698, -0.002440084, 0.00234029675, -0.00583662093, -0.01005405, -0.00725247199, -0.001933616, 0.00274886, 0.00990342721, -0.00121062808, 0.00325721083, -0.00394630851, 0.0120121418, 0.00855535641, 0.0095569957, 0.00594205642, 0.00106565398, 0.0143467905, -0.00298232492, -0.00264907279, 0.0122757312, -0.0229548644, -0.000531414931, -0.0111084068, 0.010852349, 0.00862313621, -0.0324440785, 0.0246117115, -0.0240092222, -0.0119293, 0.000593076, 0.00890931953, -0.00845745206, -0.00197691983, 0.0367518812, -0.0201382246, 0.0191290546, 0.0226837434, -0.000116732415, -0.0012689943, 0.00159565685, -0.0293563195, 0.00242313906, -0.00125487347, -0.0199876018, -0.0265095551, -0.0162371024, -0.00851770118, 0.0154162096, -0.0145802554, -0.00474084215, -0.0308324192, 0.0140832011, 0.0166287199, 0.00898463, -0.00496677589, -0.018933244, -0.00220285356, -0.000808183686, 0.0114548393, -0.0061416314, 0.0282567758, 0.00865326077, 0.00916537736, 0.00609267876, 0.00598347746, -0.0165082235, 0.0185868125, 0.00768551137, -0.00569352927, 0.0138647985, 0.00147327606, -0.00565587357, -0.0107393824, -0.00886413269, 0.0140078897, 0.0221866891, 0.0278500952, -0.0153634921, -0.0102272658, -0.0124338847, 0.00738803204, -0.0017773452, 0.0166287199, 0.00260200328, -0.00882647652, 0.0226084329, -0.0214185156, 0.0237531643, 0.011439777, -0.0142338239, -0.0013894923, 0.0122757312, -0.0160412937, 0.0252142, 0.00381263136, -0.0165985972, -0.009361187, -0.00705289701, -0.0130589679, -0.0141133256, 0.00847251434, 0.000712632551, 0.0224578101, 0.0117410216, -0.0309378561, -0.00131041545, -0.000746051897, -0.010664071, 0.0332574397, -0.00763279386, -0.00999380089, 0.00976786762, -0.026931297, -0.0226837434, -0.0276090987, -0.0248376448, 0.0082842363, -0.00766291842, 0.0309077315, 0.0143769151, 0.0272777304, -0.0271271076, 0.00892438181, 0.00782483723, -0.00548642362, 0.0200327896, 0.0176077671, -0.00313294749, 0.000203811025, 0.017652953, -0.0131869977, -0.0112364367, 0.0164027866, -0.0121928891, 0.0203340333, -0.0202587228, 0.00982058514, 0.0174270198, 0.000379380363, 0.00101576024, 0.00149022113, 0.0212227069, -0.00518894428, -0.0068533225, 0.00627719145, 0.00164178491, 0.00472954568, -2.15784348e-05, 0.00866079237, -0.000479167735, 0.0054299403, 0.0372037515, 0.0189031195, 0.000959276862, -0.0160563551, 0.0199273527, -0.00571612269, 0.0121477023, 0.00189407752, 0.0194302984, -0.00860807393, 0.0124414163, 0.0135635538, 0.00167190947, 0.0124037601, 0.0155593008, -0.0035170347, -0.0255305097, -0.00498560397, -0.00366954, -0.0133526819, 0.0142714791, 0.0228946153, -0.00862313621, -0.0108824736, -0.003599877, 0.00483498117, -0.00389359077, -0.0158002973, -0.0182554442, -0.00714703603, 0.00317248586, 0.0157400481, -0.000281475746, -0.00367895374, -0.00395760546, 0.00274509448, 0.00159753964, -0.015092372, -0.00432286505, -0.000923974731, 0.0171408374, 0.00912772212, -0.00260765152, 0.00699264836, -0.0186018758, 0.00987330265, 0.0207407139, -0.0158304218, 0.0140380142, -0.0033344049, 0.0157551114, 7.8370751e-05, 0.00891685, -0.000662738865, -0.00859301165, 0.00381263136, 0.0283471495, -0.0182102565, 0.0076026693, -0.0123811672, -0.0245966502, -0.0053885188, 0.0125393206, -9.69632165e-05, 0.010242328, 0.00491405791, -0.0232259855, -0.0101820789, 0.0209817104, -0.00782483723, 0.00414964929, 0.0155442394, 0.0187073108, 0.00767044956, -0.0220059436, 0.00237230398, -0.0110858139, -0.00589686958, 0.00863819849, 0.00473331101, -0.0173065215, 0.00107224367, 0.0212980174, 0.00346055138, 0.0108222244, 0.0183759406, 0.00733908, -0.00731272111, 0.01005405, 0.0158002973, -0.00608891342, -0.00480485661, -0.00272061839, 0.0115828682, -0.0153634921, -0.0125091961, -0.0124564786, -0.00539981574, 0.000926328183, 0.00353586255, 0.0108900042, 0.0263137463, -0.00301433215, -0.00435298961, 0.00211059744, 0.0107619753, -0.00854029413, 0.00674788654, -0.00369778159, -0.0151902763, -0.00582909, 0.0336189345, -0.0177433267, -0.0152505254, -0.00472954568, 0.0238284748, 0.0081788, -0.00142432377, 0.00886413269, 0.0195959844, -0.0208913367, 0.00551654818, -0.0156044876, -0.0105962912, -0.00661985762, -0.0253045745, 0.0185868125, -0.00615669368, 0.000397266762, -0.00647676643, 0.0152128693, -0.00575377839, 0.0163576, -0.0129008144, -0.00777965039, -0.0200629123, -0.00572365383, 0.0344322957, 0.0118690506, -0.0167341568, 0.0123661049, -0.0195357352, -0.0190085564, -0.00757254474, 0.0156496745, 0.0243556537, -0.0247171484, -0.00997120794, -0.00796039775, 0.00632614363, -0.0130514372, -0.0124414163, 0.0164329112, 0.00905241072, 0.00467306236, -0.00770433946, 0.0232109223, -0.0260878112, -0.00987330265, 0.00652948394, -0.00117673806, 0.00253422302, 0.00223674369, 0.0116054611, 0.0104833236, 0.0226084329, -0.00219532242, -0.00811102, -0.00201269286, 0.0133225573, 0.000310423493, -0.00616799, -0.0174119584, 0.0125920381, 0.000396090036, 0.0150396535, 0.0360891446, 0.00565587357, -0.00658596773, -0.000572365418, -0.00699641369, -0.0252142, 0.0136539266, -0.000105376894, -0.00482745, 0.00891685, -0.00709055271, 0.0140832011, 0.00288065476, -0.011545212, 0.0355167799, 0.0204093456, 0.00433792733, 0.00860807393, -0.00154388032, -0.00589310424, 0.0202888474, 0.0128179723, -0.00564834243, -0.0211624578, 0.00893191248, -0.00207105908, -0.00573495077, 0.00787755568, -0.0095569957, 0.0166739076, 0.0273078531, -0.00134054, 0.00361305661, -0.00230264105, -0.00735037681, -0.00859301165, 0.00580649637, 0.0075273579, -0.00954193342, 0.00304822228, -0.00715833297, 0.0040894, -0.0398245826, 0.0118916444, -0.00310094, -0.00144409295, 0.0149417492, 0.0035170347, 0.0236477274, 0.0320825875, 0.00368460221, 0.0177282654, 0.00618681777, 0.00131323969, -0.0108824736, 0.00127370132, -0.012238076, 0.00891685, 0.00268484559, -0.00495171361, -0.0198821668, -0.0208461508, 0.0242351554, -0.0089921616, -0.000972456299, -0.0107318508, -0.000524825184, 0.0206051543, 0.000657561235, 0.00883400813, -0.0111385314, -0.0122079514, 0.0172010865, 0.0034812619, 0.0179541986, -0.00466929656, 0.0117410216, -0.00480485661, -0.0128405653, 0.00912019052, -0.010641478, -0.00863819849, -0.0052830833, 0.00120309694, 0.00392371556, 0.00257564429, -0.00756877894, -0.00297291111, -0.00630731601, 0.00802817754, -0.0256208815, -0.00801311526, -0.0104155438, 0.0114774322, 0.00256811315, 0.004492315, 0.0240694713, -0.00698888255, -0.0175625794, -0.00237230398, 0.0109427227, -0.0162371024, -0.00312541635, 0.00491782371, -0.00477473252, -0.00376932742, 0.000317248574, 0.0110556893, -0.0125242583, 0.00676671462, 0.00787002407, 0.0232711714, -0.000336076395, -0.00632237829, -0.00312729902, -0.0139852967, 0.00989589654, -0.00547136134, -0.000854311802, 0.0132849021, 0.0122682005, 0.0184964389, 0.00516258506, 0.00414588349, 0.0232259855, 0.00999380089, 0.00814114418, 0.00706795929, -0.0150622474, -0.0052454276, -0.00361682218, -0.00997120794, 0.0194604229, -0.00101764302, 0.00370531273, -0.0120422663, -0.0107695069, 0.00881141424, -0.0202285983, 0.00436052075, -0.00857794937, 0.0159358568, -0.0207105894, -0.00160412933, 0.023677852, -0.0318114646, 0.0362397656, 0.00705666281, -0.00737296976, -0.0135710845, 0.00758384122, 0.00777965039, 0.0196863562, 0.00883400813, 0.0119368304, 0.0104833236, 0.00845745206, 0.000181217663, -0.000504114607, -0.00511739822, -0.0233615451, -0.0115226191, 0.00632614363, -0.0120723909, -0.00544500211, -0.0122682005, 0.00862313621, 0.00391618442, -0.0107243201, -0.0189031195, -0.02527445, 0.0106565394, 0.00372037501, 0.00167849916, 0.0152731184, -0.00617175596, -0.0110707516, -0.00230828929, 6.84273182e-05, 0.00259823771, 0.00450361194, -0.00926328171, 0.0121853575, -0.0136313336, -0.00193549879, -0.0080583021, -0.00326850754, -0.0329260714, -0.0187826212, 0.00744075, -0.0139627028, 0.00568223279, 0.000127323059, 0.000933859323, 0.00717339525, -0.0168697163, -0.0157099236, -0.0026227138, -0.0025511682, 0.010641478, 0.00546759553, -0.00773446402, 0.00793780386, -0.0149568114, 0.00480862241, -0.0104155438, 0.00957205798, -0.00117485528, -0.0037825068, -0.0115903988, -0.00252292631, 0.000175804671, 0.0216896366, 0.0104080131, -0.0298081879, 0.0158304218, -0.0203792211, -0.0124640092, 0.0287538301, -0.012238076, 0.0177433267, 0.00875116512, 0.00357163534, 0.028693581, -0.0178939495, 0.00417977339, -0.0128179723, -0.0116883041, 0.0132924328, 0.0168697163, -0.00157400477, 0.0159207955, 0.00744451582, 0.0065972642, 0.00998627, -0.0081788, -0.0260727499, -0.00895450544, -0.0119594242, -0.0161919165, 0.0196562316, 0.0242502186, 0.0272174813, 0.00520024076, 0.00861560553, 0.00221603317, -0.00398396421, -0.018240381, -0.00549395476, 0.0141434502, -0.0039274809, -0.0139099853, 0.0157400481, -0.00312353345, 0.00582532398, -0.0164329112, -0.00564457709, 0.00459022, -0.0239790976, 0.0156346131, 0.00998627, 0.00550901704, -7.40756586e-05, 0.0152429938, 0.000419860124, -0.0192796756, 0.0221866891, -0.00408563437, -0.0116657102, 0.0134204626, -0.0118088014, -0.00821645558, 0.000170274, 0.0089921616, 0.00502702501, -0.0192194264, 0.00636379933, 0.0130288433, 0.00216331519, 0.0188579336, -0.00964736938, 0.0273078531, 0.0119744865, 0.00280722626, 0.0247924589, 0.00425508479, 0.0102799833, 0.00359611143, 0.0343720466, 0.00684202556, -0.0138873914, -0.00521906884, 0.00472954568, -0.00435675494, -0.00945909135, -0.0184361897, 0.0116355857, 0.0119368304, -0.000497995527, -0.0094063729, 0.00151375588, 0.0101670166, -0.0170805883, 0.00515128858, 0.0230000522, 0.00339277112, -0.017863825, 0.00308964355, -0.00854029413, -0.0116807725, -0.0177583899, -0.0189633686, -0.00188842928, -0.0152957123, -0.0122757312, -0.0235573538, 0.0079829907, 0.00960971322, -0.0111912498, -0.0115075568, 0.000269473, 0.000575660262, -0.01253179, -0.00973021146, -0.014587786, -0.00873610377, -0.0039651366, -0.00252669188, -0.0148287825, -0.0314499736, 0.00317060295, 0.00380886579, 0.00651442166, -0.0284977723, 0.00389735634, -0.0154162096, -0.0200779755, 0.0066311541, 0.0132472459, -0.0131493416, 0.0184211284, -0.0190688055, 0.00197691983, -0.000489523052, 0.00864573, -0.00298232492, 0.00094044907, -0.00245138071, -0.0158906709, -0.0206503402, -0.0156195499, 0.00184512523, -0.0148589071, 0.0165232848, -0.00620941119, -0.013917516, -0.0113494033, 0.00131888804, 0.000392559828, 0.00010637712, 0.0139401099, -0.00600607088, -0.0052115377, 0.0100314561, 0.00750099914, 0.00802064687, -0.00639015855, -0.0247171484, -0.00250598136, -0.0112514989, -0.0173065215, 0.014482351, 0.00105435727, 0.00717716059, -0.00779471267, 0.00242878729, 0.00130853266, -0.00324779702, -0.00959465094, -0.00645040721, 0.0115678059, 0.000614727964, -0.00665751332, 0.00666881, -0.0156647377, -0.00980552286, 0.0134807108, 0.000947038759, 0.0160714183, -0.0219155699, 0.0235422924, -0.00945909135, -0.00152881804, -0.0235874783, 0.0101896105, -0.00319131371, -0.0160714183, 0.017547518, -0.0107845692, 0.00629978487, 0.0196411703, 0.00331557705, -0.0058818073, -0.0128932837, -0.0150999026, -0.0226084329, 0.00996367633, 0.0110782832, 0.00168414752, 0.000748405408, -0.000718280906, -0.0045337365, 0.000129441192, 0.00960218254, -0.00834448449, 0.070009321, 0.0123962294, 0.00337582617, -0.00698511722, 0.00346619962, -0.00944402907, -0.0124414163, 0.0475364514, 0.000302657019, 0.020529842, -0.0141585125, 0.0146405045, -0.00140455458, -0.000258882385, -0.0142865414, 0.00387852872, 0.0199273527, -0.00634120591, -0.00562198367, -0.027684411, 0.0060286643, 0.00559185911, 0.00334381894, 0.00537722232, -0.0184060652, 0.0104080131, 0.00662738876, -0.00903734844, -0.0288291406, 0.00301056658, -0.0294617545, 0.0126296943, 0.018722374, 0.0154839903, -0.0254853219, 0.00294466922, -0.0142940721, -0.0136087406, 0.00520024076, -0.0162822884, 0.0271572322, 0.0276994724, 0.00663868524, -0.00772693288, 0.0152429938, 0.00369025045, -0.0238134135, -0.0183458161, -0.015679799, -0.0132999644, 0.00956452731, -0.00921809487, -0.00512116402, -0.00197127159, 0.00511739822, -0.00288442033, 0.00431909924, 0.00732401758, 0.0113945901, -0.0179090109, -0.00112025463, 0.019520672, 0.00576884067, -0.0050232592, -0.00226875092, -0.0177583899, -0.00973774306, 0.00607761648, -0.0168395918, -0.00688344706, -0.0310583543, -0.000536121835, -0.0118765822, -0.00644287607, 0.00603996124, 0.0174872689, 0.00844239, 0.0133451512, -0.0102573903, -0.00465423428, -0.0145651931, 0.013894923, -0.0194453616, -0.00510233641, -0.0221565664, -0.00515881972, -0.0291605107, -0.00244573248, -0.0162371024, -0.0134204626, 0.00211436301, 0.0437407643, -0.0250033308, 0.0190838668, 0.00684202556, -0.00715833297, 0.0074219224, 0.00259635481, 0.0307269841, 0.00234971056, 0.0156496745, -0.0134731801, 0.000969632179, -0.00628472259, -0.00420613261, 0.0246719606, -0.00373920286, 0.00521530304, 0.0159057323, 0.00489523029, 0.00275827409, 0.00321955536, 0.0111686559, 0.019249551, 0.0114096524, 0.000687685737, 0.00390865328, -0.00674788654, 0.010453199, 0.00709431851, -8.86672133e-05, 0.00858548097, 0.00844239, 0.00505714957, 0.0119594242, 0.00818633102, 0.0184361897, 0.00594958756, 0.00981305353, -0.00130853266, 0.0122079514, -0.00872857217, 0.009067473, 0.00196185778, 0.0112439673, 0.0254551973, -0.00825411174, 0.00924821943, -0.00200704439, 0.0256961938, -0.00308776065, -0.0136539266, -0.0161768533, -0.00348691014, 0.000510704296, 0.00891685, 0.00523413066, -0.0142790107, 0.00142997212, -0.00439441064, 0.00154388032, 0.00430027163, -0.0195056107, -0.0356674, -0.0195658598, -0.00995614566, -0.00737296976, -0.0336490609, 0.0121928891, 0.0068872124, -0.00182159047, -0.000315601152, 0.0120648602, -0.00063920411, 0.00886413269, -0.012908346, 0.000652383605, -0.0206804648, 0.00890931953, 0.007346611, 0.00703030406, 0.0105812289, -0.0106565394, 0.00306516723, 0.0141961677, 0.00339088845, -2.13136682e-05, -0.014715815, 0.0077118706, -0.0112289051, 0.0130890924, 0.0149191553, 0.000687215, 0.0313294753, 0.00492912, 0.00948921591, -0.00639392389, 0.0113795279, 0.0152354632, 0.0175625794, 0.0101670166, -0.011944362, 0.0100163948, -0.00556926569, 9.21385872e-05, 0.00518894428, 0.0196712948, 0.0219456945, -0.0161919165, 0.022397561, 0.00413082121, -0.00661232648, 0.0250485167, -0.00719598867, -0.0187976845, 0.0156647377, -0.0161316674, -0.00945909135, 0.0157099236, -0.00854782481, 0.0081788]
|
25 Jul, 2024
|
How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?
25 Jul, 2024
When designing a website with a fixed header, we might face an issue where clicking on a link obscures the target element due to the header. This affects the user experience negatively as the content gets hidden. In this article, we will see how to offset HTML anchors for a fixed header, ensuring proper visibility for users. HTML anchors, also called anchor links or hash links, create internal links on a webpage. Clicking on them scrolls to the target element, but a fixed header can hide it.
Syntax:<a href="#section-id">Text</a>Here, the “#section-id” refers to the section’s identifier that the anchor link should navigate to. For example, if the section has the ID “about”, the anchor link would be <a href=”#about”>About</a>.
Approaches: Using CSSOne approach is to adjust the scroll position of the anchor link using CSS. By making the position:fixed to the fixed header’s height, we can ensure the target section is not obscured. The given HTML code displays a webpage that has a header that remains fixed in position and includes offsetting anchor links that adjust the scrolling position. The <header> tag represents the fixed header, which includes a navigation menu designed with CSS. Each navigation link corresponds to a specific section on the page, identified by its unique id. The CSS properties control the header and navigation menu’s position and appearance. By using CSS, the target element is adjusted to accommodate the fixed header. When anchor links are clicked, the browser smoothly scrolls to the relevant sections. This code showcases a fixed header with offset anchor links for better navigation.
Example 1: This example illustrates the basic techniques that can be used to offset an HTML anchor to accommodate a fixed header.
HTML
<!DOCTYPE html>
<html>
<head>
<title>
offsetting an html anchor to
adjust for fixed header
</title>
<style>
body {
padding: 0px;
margin: 0px;
}
/* Add styles to adjust for the fixed header */
#target-element {
display: block;
position: relative;
top: -100px;
/* Replace with the height of your fixed header */
visibility: hidden;
}
/* Style the navigation menu */
header {
position: fixed;
top: 0;
width: 100%;
height: 100px;
background-color: green;
z-index: 100;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
height: 100%;
padding: 0 20px;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
nav ul li {
margin-right: 20px;
}
nav ul li:last-child {
margin-right: 0;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-size: 16px;
font-weight: bold;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: red;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li>
<a href="#home">Home</a>
</li>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#services">Services</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</nav>
</header>
<section id="home"
style="height: 200px;
margin-top: 10rem;">
<h1>Welcome to Our Website</h1>
</section>
<section id="about"
style="height: 300px;">
<h2>About Us</h2>
</section>
<section id="services"
style="height: 400px;">
<h2>Our Services</h2>
</section>
<section id="contact"
style="height: 600px;">
<h2>Contact Us</h2>
</section>
<a href="#target-element">
Go to Target Element
</a>
</body>
</html>
Output:
https://media.geeksforgeeks.org/wp-content/uploads/20240724231252/ezgifcom-gif-to-mp4-converter(10).mp4Approach 2: Using JavaScriptThis approach is to utilize JavaScript to adjust the scroll position after clicking on an anchor link. By offsetting the scroll position by the fixed header’s height, you can ensure the target element is visible below the header.
Here, JavaScript is utilized to enable smooth scrolling when anchor links starting with # are clicked. The code selects these anchor links using a document.querySelectorAll(‘a[href^=”#”]’) and adds event listeners to prevent the default behavior. When an anchor link is clicked, the script uses document.querySelector to find the target element. The window.scrollTo() method is then called, smoothly scrolling to the target element’s offsetTop position using the ‘smooth’ property.
Example 2: This is another approach that will be utilized to adjust an HTML anchor to account for a fixed header.
HTML
<!DOCTYPE html>
<html>
<head>
<title>
offsetting an html anchor to
adjust for fixed header
</title>
<style>
body {
margin: 0px;
padding: 0px;
}
/* Add styles to adjust for the fixed header */
#target-element {
display: block;
position: relative;
top: -100px;
/* Replace with the height of your fixed header */
visibility: hidden;
}
/* Style the navigation menu */
header {
position: fixed;
top: 0;
width: 100%;
height: 100px;
background-color: green;
z-index: 100;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
height: 100%;
padding: 0 20px;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
nav ul li {
margin-right: 20px;
}
nav ul li:last-child {
margin-right: 0;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-size: 16px;
font-weight: bold;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: red;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li>
<a href="#home">Home</a>
</li>
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#services">Services</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</nav>
</header>
<section id="home"
style="height: 200px;
margin-top: 10rem;">
<h1>Welcome to Our Website</h1>
</section>
<section id="about"
style="height: 400px;">
<h2>About Us</h2>
</section>
<section id="services"
style="height: 400px;">
<h2>Our Services</h2>
</section>
<section id="contact"
style="height: 400px;">
<h2>Contact Us</h2>
</section>
<script>
// Smooth scrolling functionality using JavaScript
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetElement =
document.querySelector(this.getAttribute('href'));
window.scrollTo({
top: targetElement.offsetTop,
behavior: 'smooth'
});
});
});
</script>
</body>
</html>
Output:
https://media.geeksforgeeks.org/wp-content/uploads/20240724230933/ezgifcom-gif-to-mp4-converter(9).mp4In conclusion, To ensure the visibility of anchor links on pages with fixed headers, offsetting an HTML anchor is a technique that adjusts the scroll position by the height of the header. This can be done using JavaScript or CSS, improving the user experience.
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?
|
https://www.geeksforgeeks.org/how-to-set-offset-an-html-anchor-element-to-adjust-fixed-header-in-css?ref=asr10
|
CSS
|
How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0101447972, 0.00242856727, -0.00984734111, 0.0244696252, 0.0595224, 0.0201800037, -0.0168140605, 0.0201486927, -0.0500664487, -0.00906456355, 0.0171428286, 0.022136949, -0.0126027185, -0.0430840738, -0.00271623791, -0.018567482, -0.0325948559, -0.00604304252, -0.0109040905, -0.027647702, 0.0449627414, -0.0156477224, -0.0641877577, 0.0353502333, -0.0290097352, 0.0249549467, -0.000632092822, 0.0400782079, -0.000192025109, 0.0226222705, 0.013557707, -0.0214794148, -0.0101995915, -0.0313267559, -0.0381056108, 0.0267553367, 0.0169549603, -0.00763208093, -0.0360390767, 0.01315849, -0.000387964101, 0.0291662905, 0.00962033588, -0.0101526249, -0.000381604041, -0.00122700376, -0.0115929348, -0.0307631567, -0.00605087029, -0.0320156, -0.00461447332, 0.0302778352, 0.020868849, 0.0291036684, 0.0187710058, -0.0134324627, 0.0343169682, -0.00310371281, 0.0116633847, 0.0246418361, 0.0198042709, -0.0297612, -0.00843834132, -0.0273032803, -0.00915066898, -0.00517415954, -0.0373228341, -0.00656358944, -0.000269324402, 0.000474803499, -0.0423952304, -0.00753814774, 0.0105361855, -0.00911935791, -0.0160782505, -0.0292289127, -0.00921329111, 0.00737376418, 0.00717415614, 0.0239686482, 0.00712327566, -0.0222778488, -0.0707004666, -0.00171917514, 0.0650018454, -0.0245635584, 0.0254246145, -0.037761189, 0.0101604527, 0.0119921518, -0.0354441665, 0.00973775238, 0.0294480901, -0.0332210772, -0.0154050617, 0.0158825554, -0.00914284121, -0.0110763023, -0.0379490554, 0.0187396947, -0.025878625, 0.0484695844, -0.0232641473, -0.00661447, -0.0054990123, 0.00855575874, -0.00335028791, -0.0197103377, 0.0325635448, 0.000659000827, 0.0362582542, -0.0290567018, -0.00510762352, 0.0199608263, -0.019365916, 0.00777298072, 0.0192093607, -0.0747709125, 0.0341604128, -0.0132837342, -0.0191937052, -0.00679059513, 0.0344422124, 0.0771505535, -0.0250332244, 0.0430527627, -0.0199295152, -0.0207122937, 0.0272876248, -0.0113111353, 0.00466144038, 0.017831672, 0.0228884146, 0.0118825631, 0.0325009227, 0.0397337861, 0.0268962365, -0.0283052344, -0.0266300905, 0.0159843173, -0.00686104503, -0.0295420233, -0.0319686346, 0.0148571171, -0.0136829512, 0.0300899688, -0.00345791969, 0.039170187, -0.0644382462, 0.00552640948, -0.0170175843, -0.0352876112, -0.00147847109, 0.0305283237, 0.0446496308, -0.0440234095, -0.00141976273, 0.0292758793, -0.0315929, -0.000513208506, 0.0350371227, -0.0541368946, 0.000240948706, 0.0040939264, -0.00808609184, 0.0413932763, 0.0308727454, -0.0266770571, -0.050316941, 0.0488766283, 0.00449314294, -0.0087749362, -0.0194128826, -0.0191623941, -0.045714207, 0.0036262169, 0.0521642938, -0.0474050082, 0.00567513704, -0.0121487072, -0.0587083139, -0.0370410308, 0.00401956262, 0.00144324603, 0.0120704295, 0.029886445, -0.00652836449, 0.00415263465, -0.0165009499, -0.034254346, -0.0353189223, -0.0144657288, 0.0259412471, 0.0298081674, 0.0106614297, -0.0142387236, -0.00763208093, -0.0291349795, 0.0285087582, -0.00758511433, -0.0131428344, -0.0282895789, -0.0645634905, 0.0239999592, 0.0174089726, 0.0052759205, 0.00601564534, -0.0129471403, 0.0409862325, -0.0169393048, -0.0454950295, -0.00102543854, 0.0112563409, -1.04574183e-05, -0.019334605, 0.0210567154, -0.0555772036, 0.0295263678, -0.0209784377, 0.0112719964, 0.0136829512, 0.0122582959, -0.00818002503, 0.0427396521, -0.0590527356, -0.0212915484, 0.0192563273, -0.0186927281, 0.039201498, -0.0067044897, -0.0152328508, -0.0215107258, -0.00216046604, 0.0178160165, 0.0275068022, 0.0151310898, -0.0268649254, 0.00342660863, 0.0118903909, 0.0254872367, -0.0325948559, 0.0166888162, -0.0259882137, 0.000675145595, 0.0154520283, -0.00762033928, -0.00113404891, 0.0079177944, -0.0212602373, 0.0173306949, 0.0129001737, 0.0170645509, 0.0107240519, -0.00364187243, 0.0211193375, 0.0214167926, -0.0157416556, -0.0132524231, 0.0244070031, 0.00796867535, 0.0475928746, -0.00729157263, -0.00252641435, 0.0263169799, 0.0396398529, -0.0275537688, 0.0219647381, -0.00798041653, -0.00475537358, -0.0309823342, 0.042708341, -0.036633987, 0.0381682329, 0.000878178515, 0.00467709592, 0.0187396947, 0.0117416633, 0.029651612, 0.0355381, -0.000665360887, 0.0179099496, -0.0120156351, 0.0414559, 0.067131, 0.00736202253, -0.0122817792, -0.0117808022, 0.00639529247, -0.013189801, -0.0279764682, -0.0138551621, -0.0149432225, 0.0136829512, -0.00907239132, 0.0576124266, -0.00122504681, -0.0155459614, 0.025142815, 0.00205087708, -0.0243913475, -0.0058003813, -0.0094089862, 0.00353424042, -0.00911153, -0.020634016, 0.0260821469, -0.0100352075, -0.0061174063, -0.013956923, -0.0124618178, 0.026348291, -0.0138081955, -0.0129158292, -0.0214167926, -0.0301369354, 0.00281408522, 0.0221526045, 0.0088453861, -0.0237338152, -0.0229040701, -0.0223874375, -0.0333463214, -0.0115381405, 0.0252210926, 0.00918980781, -0.0314676575, -0.0244383141, 0.00221917429, 0.00950291939, -0.0132054565, -0.0498472713, -0.0464656726, 0.0226222705, -0.0102856969, -0.000427836843, -0.0108179851, -0.00428179326, 0.0160782505, -0.00337377121, 0.0199764818, -0.0392954312, -0.0153972339, 0.00669666193, -0.0135185681, 0.0293385014, -0.0493776053, -0.00565556763, 0.00602347311, 0.0466222279, -0.00570644811, 0.00157044746, 0.0434598066, 0.0403600074, 0.0148649449, 0.0464969836, -0.00758511433, -0.0169706158, -0.00354989618, -0.0214011371, -0.0103404913, 0.0210880265, -0.009917791, -0.0301995575, -0.00448922906, 0.00310958363, -0.0352876112, -0.030888401, -0.0028414824, 0.00663403934, -0.030183902, -0.0323756784, -0.0263639465, -0.0047514597, -0.0269275475, -0.0229197256, 0.0099882409, 0.0164539833, -0.0267083682, -0.0390449427, 0.0179882273, 0.0129080014, 0.0124774734, 0.0536985397, 0.0170645509, 0.0262230467, -0.0121800182, -0.0134402905, -0.0225596484, 0.00261447695, 0.0408609882, -0.0298238229, 0.00355968089, 0.0145048676, -0.0248140469, -0.000542073452, -0.00915066898, -0.0302934907, -0.00616045902, 0.00289431983, -0.0127827572, 0.0137064345, 0.00956554152, 0.0438668542, 0.00968295801, 0.00681016454, 0.0269901697, -0.0216203146, -0.0341291, 0.00965947472, 0.00872014184, 0.0120156351, -0.0100900019, 0.00872797, -0.0197103377, 0.0285087582, 0.0366026759, -0.0177533943, 0.0383874103, 0.00624265056, 0.00163698348, 0.0521329828, 0.0061878562, 0.0175342169, -0.0046418705, -0.0206183605, -0.00970644131, -0.0145440064, -0.010183936, 0.0321565, -0.0236242265, -0.0326261669, -0.0186457615, 0.0163913611, -0.0287435912, -0.0205713939, -0.0233111139, 0.0840389952, -0.0255968254, -0.041236721, -0.0220586713, -0.0165948831, 0.007663392, -0.018301338, -0.035663344, -0.0317181461, 0.00209980062, -0.0276007354, -0.0132837342, 0.0133776683, -0.00530331768, -0.0616515577, -0.0289314575, -0.017127173, 0.00642268965, 0.0326887891, -0.0307944678, -0.0404539406, -0.0144422455, 0.0153502673, -0.00926808547, 0.00370058068, 0.00965947472, 0.0134402905, -0.0113894129, 0.0439294763, -0.0184422377, -0.0262700133, -0.00640703412, -0.0214950703, -0.0124070235, -0.0119921518, -0.0142700346, 0.0391075648, -0.00776515296, 0.020367872, 0.024845358, -0.00208218815, -0.0229353812, 0.00807043631, -0.0368218534, 0.0258629695, 0.0532601811, 0.0533228032, -0.0204304941, 0.0132837342, -0.0359764546, 0.0185205154, -0.00218003546, 0.0170645509, -0.00545595912, 0.0294011235, 0.00990996324, -0.00341291, -0.036164321, 0.0105283577, 0.000752934138, -0.0527592041, -0.0320938788, -0.0015518564, 0.0395772308, -0.000999509, 0.0261604246, 0.00300195185, 0.0524774045, 0.0236242265, -0.00994910207, -0.051287584, 0.0590527356, 0.0117025236, -0.0335341878, -0.000979450415, 0.00321917259, -0.00335028791, 0.028117368, -0.0275224578, -0.0149119115, -0.0443365201, 0.00337768509, 0.00697454764, -0.00981603, 0.0143639678, 0.000806260854, -0.00417611795, 0.00584343402, 0.0319686346, -0.000298678555, 0.0303717684, 0.00906456355, -0.0260038693, -0.0191467386, -0.00640312023, -0.00844616909, 0.000132582936, 0.0234833267, -0.0279138461, -0.00407827087, -0.00891583599, 0.0361330099, 0.0208218824, 0.00729157263, -0.0221995711, -0.0109823691, -0.0387944542, 0.00978471898, -0.0369470976, 0.0140821673, 0.0247357693, -0.0205713939, 0.0501916967, 0.0262073912, 0.0199764818, 0.0204148386, 0.010919746, 0.0165009499, 0.0102387303, -0.0202895943, -0.0412993431, -0.0164383277, 0.00140899955, -0.0136046736, -0.00929156877, -0.0289471131, 0.0400155857, 0.00455967896, 0.00491975667, -0.0257533807, 0.00986299664, 0.0397650972, -0.0187866613, 0.0345048346, 0.00135126966, -0.0142856902, 0.025878625, 0.00373580563, -0.000386007159, 0.00191193412, 0.0297298897, -0.0107631907, 0.04014083, 0.0145988008, 0.00976123568, -0.0240156148, 0.0212915484, -0.00889235269, -0.0126105463, -0.0123913679, -0.00496280938, -0.022136949, -0.0441173427, -0.014825806, -0.00195792224, 0.0168766826, -0.0229197256, 0.00130038918, -0.0081878528, 0.0354128554, -0.0450879857, 0.0179569162, -0.00471623475, -0.0233111139, -0.00580429519, -0.000466241851, 0.0238277484, -0.0145048676, -0.00277298945, -0.0209001601, 0.0126418574, -0.00934636407, 0.00274363533, 0.002545984, -0.0340038575, 0.0124070235, 0.0234050471, -0.0088219028, -0.0236868486, -0.00965164695, -0.0142778624, 0.039170187, 0.00993344653, -0.0239216816, 0.0194755048, 0.0138629898, 0.0444304533, 0.012320918, 0.0345048346, 0.00352249877, -0.0119373575, 0.00909587462, -0.00422699843, -0.0212445818, -0.0249549467, -0.0403286964, -0.0199138597, -0.00187866611, 0.0252993703, 0.0204618052, -0.0101447972, -0.00266144355, -0.000363502302, -0.00370645151, -0.0363208763, 0.0490018725, -0.00245792139, 0.12850076, -0.0183169935, 0.0108727794, -0.00432876, 0.00405087369, 0.00943246949, -0.0227475148, -0.0061408896, -0.0229823478, -2.06396417e-05, 0.00828961376, -0.00399020826, -0.00744421408, -0.00418003183, 0.0134324627, -0.00083219033, -0.00163111265, 0.0072524338, -0.0492523611, 0.0232328363, 0.0233580805, 0.000765165, -0.0128375515, 0.020399183, 0.00264578802, 0.0339099206, 0.0538864061, 0.00633267034, -0.0188962501, -0.0183952712, 0.0253933035, 0.000685419596, -0.0256907586, -0.00809392, 0.0350684337, 0.00457924837, 0.00103130937, 0.00304891844, 0.00747943902, 0.00630918704, 0.011921702, -0.014794495, -0.0107240519, -0.049690716, -0.0139647508, 0.00529549, -0.000529353274, 4.64162622e-05, 0.00571036199, 0.027882535, 0.0102778692, -0.0162661169, -0.00663403934, 0.0129314847, 0.00492758444, 0.0133463563, 0.00687670056, -0.0115772793, -0.0133776683, 0.00911935791, 0.0229510367, -0.00308022951, 0.0362582542, -0.00284735323, 0.0143170012, -0.00566339539, -0.0263326354, 0.033158455, 0.0266927127, -0.0116242459, 0.0483130291, -0.000427592226, 0.021808181, -0.0113424463, -0.00611349242, -0.0315615907, 0.0142935179, -0.0347866341, -0.00101369689, 0.0110919578, -0.0446496308, -0.0353189223, 0.000359099184, 0.0243443809, 0.0167201273, -0.0459960066, -0.00309001422, -0.00368883903, 0.000310175586, 0.0224970262, -0.00299412408, -0.0386065878, 0.00216046604, 0.0122582959, 0.0105361855, -0.00756163104, -0.0144187622, -0.0131428344, 0.0015352224, 0.0138160232, -0.0145440064, -0.0159608331, -0.0043874681, 0.00139530096, 0.020367872, 0.00942464173, -0.000704989, -0.0023874715, 0.00864969194, 0.006410948, -0.0178473275, 0.00240899785, -0.0175655279, -0.013455946, -0.00641877577, 0.0295576788, 0.0322817452, 0.0140899951, 0.00926808547, -0.0159216952, -0.00592171215, 0.00237768679, -0.00111154409, -0.0357259661, 0.00107044831, 0.0182700269, -0.00844616909, 0.0228884146, -0.00138649473, 0.0414559, -0.0166888162, -0.0152171953, 0.0227318592, -0.0153737506, -0.0244383141, -0.0189275611, -0.00810174737, -0.00807826407, 0.00310371281, -0.0041643763, -0.00587083166, 0.0215263814, 0.0125166122, -0.00361056137, 0.00345791969, 0.0227162037, 0.0256281365, 0.00757728657, 0.0414559, 0.0103013525, 0.0385439657, 0.00599607592, -0.0182387158, -0.00851662, -0.0429275185, 0.0047514597, -0.038199544, -0.00249706022, -0.0153659228, -0.00200586743, 0.00637963694, 0.0185518265, -0.0446809418, -0.00127886282, 0.0115381405, -0.0242034812, -0.00114089821, 0.00143443979, 0.0219177715, -0.0322191231, -0.0116477292, 0.0303091463, 0.0137220901, 0.0259725582, 0.0270214807, 0.00126516423, 0.0287749022, -0.0115616238, 0.0139334397, 0.00573384529, -0.0220273603, -0.0482190959, 0.0114676906, 0.0159060396, -0.0129471403, 0.0395146087, 0.00353424042, 0.00425439607, -0.00343835028, 0.00371232233, 0.0406418107, -0.00861055311, 0.00712327566, 0.00251271576, 0.00212328392, -0.0214481037, -0.0027612478, 0.00450879848, 0.0123913679, 0.00166242372, 0.00426613772, -0.012320918, 0.0408609882, -0.00929939654, -0.00387670565, 0.0376359448, -0.00403521815, 0.0211506486, 0.0181134716, 0.0348805673, 0.0182074048, 0.00572601752, 0.0140821673, -0.031389378, 0.00790213887, 0.0161721837, -0.0339412317, 0.0345361456, 0.00807826407, 0.0118825631, -0.0120391184, 0.0381369218, 0.0383874103, -0.00760859763, -0.00656750333, -0.00258512283, 0.00201369519, 0.0106222909, -0.00588257331, 0.0145361787, 0.0415811427, 0.00702542812, -0.00881407503, -0.014825806, -0.00255772565, 0.0210410599, -0.0101447972, 0.0295733344, 0.00242856727, -0.0283365473, -0.0245009363, -0.0102309026, 0.0188805945, -0.0340664797, -0.0108101573, 0.00686495891, -0.0376985669, 0.00918198, -0.00545204524, 0.0198042709, -0.00102152466, 0.00624656444, 0.0156555511, -0.00592954, 0.00634832587, 0.0131663177, 0.0390762538, 0.00788648333, -0.000437621551, -0.00500194822, -0.0413306542, 0.0206653271, -0.00852444768, -0.0106144631, 0.016829716, -0.00503717316, 0.0216829367, 0.0369784087, -0.0249706022, -0.0339725427, -0.0326887891, 0.00706065306, -0.00753032, -0.0469040275, -0.000742660195, 0.00428570714, 0.0110215079, 0.0362269431, 0.0146770785, -0.0297612, 0.0335341878, -0.0434284955, -0.000233487852, 0.00776906684, 0.0122426404, -0.0204618052, 0.0127044795, 0.0316398665, 0.0285713803, 0.0242191367, -0.0136594679, -0.0258473139, 0.00401564874, -0.0476868078, 0.0307788122, -0.0288688354, -0.0173933171, 0.0207122937, 0.0476554967, -0.0146614229, -0.0059099705, 0.0142543791, -0.0326261669, 0.00263404637, 0.00376320304, 0.000371819333, 0.00597259263, 0.00561251491, 0.0159138665, 0.00629744539, -0.0308727454, 0.0118277688, -0.0239686482, -0.0259099361, 0.00239334232, -0.0109588858, 0.00927591324, 0.0122817792, -0.00389823201, -0.000436398463, 0.00257729506, 0.00729157263, 0.0100900019, -0.00285909488, -0.00982385781, -0.00813305844, -0.00312328222, 0.0222308822, -0.0144500732, 0.0296672676, 0.0141213061, -0.00780037791, 0.0134011516, 0.0181134716, -0.0442425869, 0.00651270896, -0.00589040108, 0.00837571919, 0.0130332457, 0.0106927408, -0.00460664555, 0.0242034812, -0.0256124809, 0.0109119182, -0.0366966091, -0.0130802123, 0.0174089726, 0.0102387303, 0.0150136733, 0.00352445571, -0.00494324, -0.0248923246, 0.0186927281, 0.0233267695, -0.00983951334, -0.0207436047, -0.0137142623, -0.0135733625, -0.000752934138, -0.00203326461, 0.00644617295, -0.0140117174, 0.0323443674, 0.0228571035, 0.000638942176, -0.00459099, -0.019569438, -0.0156007558, 0.0116946958, -0.0169079937, 0.00263208942, 0.0110919578, -0.00361643219, -0.00506457081, 0.00181408692, -0.0280704014, -0.00623090891, 0.00211154227, -0.0202113148, 0.0276007354, -0.0198982041, 0.00622699503, 0.00588257331, -0.00922894664, -0.0063404981, -0.0101995915, -0.00306066, -0.0259412471, 0.0229823478, 0.000346134446, -0.0284774471, -0.006727973, 0.0297298897, -0.0291662905, -0.039671164, -0.00544421747, 0.0099882409, 0.0283835139, 0.0039823805, -0.0106066354, 0.0121408794, 0.00321134483, -0.0244383141, 0.0250958484, 0.00151760993, -0.0126418574, -0.0157103445, 0.003864964, -0.00340703921, 0.00469275145, 0.00859489758, -0.00025905043, -0.00315067964, -0.0157416556, -0.000536202628, 0.0292289127, 0.00123483152, -0.00173874456, -0.0181760937, -0.00960468, -0.0292915348, -0.00161056477, 0.0240782369, 0.0126183741, 0.00820350833, 0.00343835028, 0.0181760937, 0.000589040108, 0.0156790335, 0.0110293357, -6.45179898e-05, 0.0212915484, -0.0053463704, 0.0175342169, -0.00556554832, -0.00710370624, -0.0370410308, -0.0217299033, -0.00131115236, 0.0198982041, 0.0464343615, -0.00184539799, -0.0234363582, 0.0310449563, 0.0173150394, -0.0207279492, -0.0264735352, -0.0082583027, -0.00641877577, -0.00445009, -0.0013600759, -0.000841975096, 0.014794495, -0.00327005307, 0.0900507271, -0.0135263959, -0.0058864872, -0.0297925118, -0.00215459522, -0.0105440132, 0.00953423, 0.021369826, -0.00265948661, -0.000980918063, 0.0180508494, 0.00508805411, 0.016798405, 0.0187866613, -0.00857141428, -0.00415263465, -0.00717415614, 0.000466731086, 0.0203522164, -0.0216359701, -0.00515850401, 0.00745986961, 0.0081408862, -0.00338355592, 0.0174089726, -0.00183463481, 0.00276711863, -0.0232328363, -0.0408923, -0.00531114545, 0.0361956321, 0.00047358041, 0.00908804685, -0.0105205299, -0.0132524231, 0.0468727164, -0.00198629801, -0.0270684473, -0.0421447419, 0.0171897952, -0.00774558354, -0.0194911603, -0.0191780496, -0.00684147561, -0.00762816705, -0.0113894129, -0.0258003473, 0.0180821605, -0.0226692371, 0.0162974279, -0.00750292279, -0.00241486868, -0.0056164288, -0.0103952857, -0.00980820227, 0.014457901, 0.00437181257, -0.00326026836, 0.0244383141, -0.0310919229, -0.00646182848, -0.0169236492, -0.00055185816, 0.0169079937, 5.21953625e-05, -0.00748726679, -0.0167827494, 0.0026497019, -0.0149353947, -0.00102446007, 0.0094089862, 0.0148884282, 0.0112719964, 0.00885321386, 0.00464969827, 0.0217142478, -0.0166575052, -0.00967513, 0.0109432302, -0.0110763023, 0.025174126, 0.00717807, -0.00932288077, 0.0232641473, -0.00404304592, -0.00127984129, -0.0258473139, -0.0188023169, -0.00688452832, 0.00710370624, 0.00424656784, -0.0213541705, -0.0299490672, -0.0145205231, 0.0219960492, 0.015561617, 0.000691290421, 0.0185361709, -0.00201173825, -0.0240938924, -0.00425439607, -0.012688824, -0.0036966668, 0.00567905093, -0.00154989946, 0.00101174, 0.024876669, 0.0204304941, -0.014794495, 0.0290253907, 0.0168923382, 0.0121800182, -0.00340899616, 0.000194104359, 0.00123091764, -0.00108023302, -0.00537376758, -0.00851662, -0.0205713939, 0.0190841164, 0.0195850935, 0.0423012972, 0.0166575052, 0.0176907722, 0.00146183698, 0.00562034268, -0.0224970262, 0.000983853475, -0.000415850547, 0.00585517567, -0.00425048219, 0.0249236356, -0.00130626, 0.00131702318, 0.0118434243, 0.0110763023, -0.00604304252, 0.0157886222, -0.00792170875, 0.0119608408, 0.0034109531, 0.00751075055, 0.00305478927, -0.00908804685, 0.0130880401, 8.00512353e-05, 0.0030234782, -0.00170351961, 0.0108727794, -0.00972992461, -0.0161252171, -0.0345674567, 0.0213541705, 0.00853227545, 0.00941681396, -0.000878178515, 0.0271310695, -0.00219764793, 0.0121173961, 0.00776123907, 0.0149823623, 0.0364461206, 0.0294794012, -0.0160469394, 0.00723677827, 0.0069354088, 0.00296477, -0.0443052091, 0.00110469479, -0.0277572908, 0.0217612144, -0.0266614016, -0.00123189611, 0.00378864328, 0.0242661033, 0.0130175902, 0.0129706236, -0.00949509162, 0.00803912524, -0.0157494843, 0.0187553503, 0.00810957514, -0.00780820567, 0.000776906672, -0.00813305844, -0.000594910933, -0.000744127901, -0.00349901547, 0.00596085098, -0.00830526929, -0.00731505593, 0.0236868486, 0.0110371634, 0.0162034947, 0.0182543714, 0.0177220833, -0.00602347311, -0.0188492835, -0.0069823754, -0.0127436183, -0.0173306949, 0.000978472, -0.00709587848, 0.0293071903, -0.000103901482, -0.0187710058, -0.0324383, -0.0050528287, 0.000363991538, -0.0116633847, 0.0115694515, -0.0056164288, -0.00820350833, -0.00199510413, 0.0231545586, 0.0167044718, -0.0047279764, -0.00356359477, 0.0131506622, -0.00550292619, 0.0206966382, -0.00240508397, -0.00638355082, 0.028649658, -0.00303913374, 0.00970644131, 0.00642268965, 0.00977689121, -0.0121330516, 0.0243600365, 0.00378668634, 0.0334402546, 0.0378551222, 0.00691192551, 0.0123052625, 0.00756554492, 0.031686835, -0.00936984736, -0.022841448, 0.0150136733, 0.00183072092, 0.00904108, -0.0128375515, 0.00802347, -0.0040939264, -5.30515244e-05, 0.00380234187, -0.00569470646, -0.0103483191, 0.0193815716, -0.0250332244, -0.011553796, 0.0145753175, -0.0400782079, 0.00323874201, 0.00868883077, -0.00861838087, -0.0072524338, -0.0169706158, -0.0161095615, 0.0125322677, 0.00886886939, -0.0184109267, 0.0130645568, -0.0209627822, 0.0383247882, -0.0329705887, -0.0169393048, -0.00778863626, 0.00952640269, 0.0126575129, -8.05710442e-06, -0.00592562603, -0.0188179724, 0.0153815784, -0.00465361215, 0.0046418705, 0.0203835275, -0.0247044582, -0.0155146504, -0.0202426277, 0.0082348194, 0.0166888162, -0.00287083653, 0.0124539901, 0.022136949, -0.0161252171, -0.00190214941, -0.0248923246, 0.0142074125, 0.0173776615, 0.000664871652, 0.0402347632, -0.00196575, -0.00315263658, 0.0127514461, -0.0225909594, -0.000309686351, -0.0323756784, -0.00531505933, -0.000738746312, 0.0226535816, -0.0376985669, 0.0273345914, -0.00539333699, -0.00335028791, 0.0128140682, -0.0196946822, 0.0276320465, 0.0139412675, 0.0132289398, -0.0376672558, -0.00711153401, -0.0128845181, 0.00697846152, 0.00202739378, 0.00496672327, 0.0185205154, 0.0184735488, 0.00517807342, -0.00688061444, -0.0128532071, 0.00343247945, -0.0234989822, 0.00626613386, -0.0176907722, 0.0276007354, 0.00580429519, 0.0332837, -0.0156477224, -0.0178942941, 0.00474754581, -0.0126731684, 0.00382582517, 1.66034461e-05, 0.00994910207, -0.00245987833, 0.0132993897, 0.0107005686, 0.0241565146, -0.0396398529, 0.0361330099, -0.00153033, -0.0169393048, -0.00896280259, -0.00117123092, -0.00404304592, -0.00843834132, -0.0181291271, 0.0121956738, -0.0162504613, -0.00408609863, 0.00150195439, 0.0201017261, 0.0167201273, -0.00807826407, 0.019835582, -0.000104084946, -0.0123991957, -0.00509588188, -0.00912718568, 0.0330332108, -0.00902542472, -0.0215263814, 0.00126809964, -0.0250645354, 0.00192563271, 0.0040234765, 0.00873579737, 0.0165948831, -0.0114442073, 0.00746378349, 0.0013737746, 0.0131976288, 0.0214167926, 0.030684879, 0.00570253422, 0.00392758613, 0.00475537358, -0.0131271789, -0.005475529, -0.0309353676, -0.0171584841, -0.0187396947, -0.0064344313, -0.0119373575, 0.00151076063, 0.0109119182, 0.00890800823, 0.00254794094, 0.00594128156, 0.0131193511, 0.0033326752, 0.00972209685, -0.0329392776, 0.00496672327, -0.0293385014, -0.00045572329, -0.00461447332, 0.0005454981, 0.0221839156, 0.0283835139, -0.000400439632, 0.0110763023, 0.00831309706, 0.0300430022, -0.0232484918, -0.00785125885, 0.013690779, -0.0207749158, 0.015694689, -0.0155381337, 0.00178766821, -0.0152641619, 7.29573148e-05, 0.00745595573, -0.0131193511, 0.0323443674, 0.0199295152, -0.00958119705, 0.00273189344, -0.0275068022, 0.00861055311, -0.0199451707, -0.0244696252, -0.026583124, 0.0241878256, 0.0134089794, -0.0190528054, 0.000626222, -0.0125400955, -0.00425048219, -0.0185987931, 0.000661447, 0.0249549467, 0.00914284121, -0.00145792309, -0.0246261805, -0.0145361787, -0.0121800182, 0.0154755116, 0.0175655279, 0.00338551286, -0.0250175688, 0.00323874201, -0.0101761082, -0.0054990123, 0.00349901547, 0.0132680787, -0.00237181596, 0.017095862, 0.00144226756, 0.000701564364, 0.00708022248, -0.0113972407, -0.0176438056, -0.0120469462, -0.00807826407, -0.00648531178, 0.00399216544, 0.00519372895, -0.0200234484, -0.013589018, 0.00316242129, 0.0265048463, 0.019569438, -0.0051819873, -0.00310371281, 0.00508805411, 0.0198982041, 0.0254246145, -0.0289471131, 0.00171134737, -0.00730722817, 0.0154755116, -0.0203365609, -0.0101917638, -0.00787474215, -0.00106164196, 0.0165948831, -0.00110273785, 0.0101369694, 0.0108571239, 0.0134794293, 0.00774949742, 0.0463717394, 0.0132054565, 0.00115166139, 0.0148884282, -0.00852444768, 0.0425204746, 0.0111780632, 0.00200782437, -0.0353502333, 0.00693932269, 0.00366339879, -0.00759685598, 0.0079177944, -0.0177220833, -0.00819568057, 0.00908804685, 0.00045988179, -0.00695497822, -0.0046418705, 0.0137377456, 0.027146725, 0.00388257648, 0.0221212935, -0.00395694049, 0.00765556423, 0.0174715947, -0.0262700133, -0.0262387022, 0.00609783689, 0.0282269567, 0.0274285246, 0.00238355761, -0.0115459682, -0.00381604047, 0.00337377121, 0.0011614461, 0.0258629695, -0.00512719294, -0.0296359565, 0.0175811835, 0.0245635584, 0.00220938958, 0.0192876384, -0.00742855854, -0.00632092869, 0.0133463563, 0.00235224655, -0.00646182848, -0.0224657152, -0.0122269848, -0.0283365473, 0.0284931026, -0.00459099, 0.00890018, 0.000791094557, -0.0136125013, 0.00358512113, -0.0117494911, -0.00354011124, -0.0120078074, 0.0304813571, 0.00106066349, -0.00310371281, 0.00673971465, -0.010050863, 0.0283052344, -0.00961250812, -0.0211349931, 0.00161741406, 0.0147397006, -0.00192856812, -0.0172993839, -0.01499019, 0.0130958678, 0.0260978024, -0.0100900019, 0.0144031066, 0.0146849062, 0.00289431983, 0.00388453342, 0.00893149152, 0.00359490584, -0.00879059173, 0.00482190959, 0.000150440057, -0.00787865557, 0.0245009363, 0.0218238365, 0.0223561265, 0.00947160833, 0.00898628589, 0.00317807682, -0.00408609863, -0.00267905602, -0.0172680728, 0.0144265899, -0.00577298412, -0.00521721225, -0.0131350067, 0.00838354696, 0.0198512375, 0.00983951334, 0.0221839156, -0.0099647576, 0.00835223589, 0.00775341131, 0.00191976188, -0.0340664797, -0.0154050617, -0.0193032939, -0.0103483191, -0.0137064345, 0.000325341913, -0.0166575052, 0.00646965625, 0.00354402536, 0.00528374827, 0.0169079937, -0.00253619929, -0.0234833267, -0.0406731218, -0.00091878511, -0.0118277688, -0.0378551222, 0.00769078918, 0.0101213139, -0.0233893916, -0.000213551495, 0.00771427248, -0.00389431813, 0.000735321664, 0.0122348126, 0.0129706236, -0.0032289573, -0.00805478077, 0.000532778, 0.0200391039, 0.00430527655, -0.0189275611, 0.0279608127, -0.0069588921, 0.0191623941, -0.0206653271, -0.0100038964, -0.0032994072, 0.00820350833, 0.033628121, 0.00552640948, 0.0026497019, -0.0148492893, 0.00602738699, -5.48861572e-05, -0.00641486188, -0.0106066354, -0.00553423725, 0.0141056506, 0.00513893459, -0.0239686482, -0.00799215864, -0.0113033075, 0.0099647576, -0.00624265056, -0.00793345, -0.01108413, 0.0111232689, 0.0107397074, 0.0214637592, -7.96231543e-05, -0.0123052625, 0.0105674965, 0.000969176413, 0.0167044718, 0.00316633517, 0.00594910933, 0.0103561468, 0.0324696116, 0.00861055311, 0.00853227545, 0.00972209685, 0.00974558, -0.0311075784, 0.00696280599, 0.0148179783, -0.0215107258, -0.0140508562, 0.000117783558, -0.000346868299, 0.00457533449, -0.00563991209, -0.0100743463, 0.0136829512, 0.0243130699, 0.00832092483, 0.00114872598, -0.00490801502, -0.0134246349, 0.00306653092, 0.0043639848, -0.0203365609, -0.00754988939, -0.0308257788, 0.00212328392, -0.0122269848, -0.0157103445, -0.00708413683, -0.00763208093, 0.00416046241, -0.0144970398, 0.000148116189, -0.0128297238, -0.0235459488, -0.0155851, 0.0150997788, 0.00653619226, -0.0103404913, 0.0416437648, 0.00918980781, -0.000614969584, -0.00727983098, 0.0228884146, -0.00703716977, 0.00612914795, -0.00886104163, 0.0114755183, 0.0134011516, 0.0049823788, 0.0215107258, 0.001932482, 0.0104657356, -0.0104344245, -0.0123365736, 0.0214324482, 0.020602705, 0.00802347, -0.00287475041, -0.00147944957, 0.0024207395, 0.00253619929, -0.0194755048, -0.00946378056, 0.00903325249, 0.00391584449, -0.0278042573, 0.020399183, 0.00224461453, -0.0188492835, 0.0299334116, 0.0183483046, -0.00455576507, -1.41496212e-05, 0.011819941, -0.00720546721, -0.00500977598, 0.00165655289, -0.003831696, 0.0120312907, 0.00790996663, -0.000493394444, -0.0120469462, -0.0122191571, -0.00972209685, 0.00530723156, 0.0093855029, -0.0292602237, 0.0172054507, -0.00137083919, 0.00304304762, 0.0153894061, -0.0176594611, 0.0128062405, 0.00896280259, 0.00320938788, 0.00711936178, -0.00428570714, 0.008681003, -0.00441877916, -0.00112817809, -0.00969861355, -0.00717024226, 0.0194911603, -0.00790213887, 0.00313111, -0.00637963694, -0.0213072039, 0.000873775396, -0.000827298, -0.00900976919, 0.031859044, -0.0137768844, -0.0102074193, -0.000769078906, 0.011452035, -0.0136438124, -0.000783755968, -0.00233072019, 0.00639920635, -0.00842268579, -0.00617220066, 0.0152876452, 0.0107710185, -0.0115068294, -0.014457901, 0.0139882341, 0.00879059173, 0.000588550873, -0.00679059513, 0.0353189223, 0.0259569027, -0.0156555511, 0.0230136588, 0.00103620172, 0.000473335793, -0.0034911877, 0.0110215079, 0.0157416556, -0.0140821673, -0.000503423798, -0.00659490051, -0.00511936517, -0.0061408896, -0.00361056137, -0.0010401156, 0.00423482619, 0.00457924837, -0.0126496851, -0.00594519544, -0.00842268579, 0.0078708278, -0.00317416294, -0.00626222, -0.00516241789, 0.0021585091, -0.00377885858, -0.00585908955, -0.0248297025, 0.0110136801, -0.0194598492, -0.00828961376, -0.009283741, 0.00721720885, -0.0304970127, -0.00678668125, -0.00398825156, -0.00344813499, -0.00527983438, -0.00981603, -0.0156712066, -0.0237494707, -0.0198668931, 0.0043170182, 0.0210097488, -0.00263208942, 0.00857141428, 0.0124774734, 0.00735028088, 0.0124070235, 0.0151624009, -0.00351271406, -0.00854010321, 0.0143170012, -0.0119999796, -0.000328521943, -0.0172367617, -0.011953013, -0.00242269645, 0.0174715947, -0.00140997802, -0.00937767513, -0.00812523067, -0.00488061784, 0.0136594679, 0.015091951, -0.021103682, -0.0151467454, 0.0087984195, 0.00105870655, 0.00567122316, 0.00321721565, 0.00277298945, 0.0114911739, 0.00148629886, 0.00112230727, -0.00898628589, -0.0179725718, 0.00443052081, -0.00110665173, -0.0280860569, -0.0199921373, -0.00603912864, 0.0371662751, -0.0012622287, -0.012289607, -0.00890800823, -0.013823851, 0.00807043631, -0.00131213083, -0.00351662794, 0.0101604527, -0.0125166122, 0.00892366376, -0.00540899253, 0.00149216969, 0.0213072039, -0.000636496, -0.00717024226, -0.00601955922, 0.00528374827, -0.0165166054, -0.00699803093, 0.0174402837, -0.00448531518, -0.00633267034, 0.0144422455, 0.00432093209, 0.00992561877, -0.00929156877, -0.00973775238, 0.0182387158, -0.00495106773, -0.0047279764, 0.00305674621, 0.00478277076, 0.00630527316, 0.022606615, 0.0070528253, 0.00198825495, 0.0168453716, 0.019099772, 0.00106457749, 0.00836789142, 0.00754988939, 0.00596476486, 0.00136888225, -0.000625732762, -0.00169079949, -0.000290361524, 0.022637926, -0.00476711523, -0.0303091463, -0.00508022634, 0.0182387158, 0.000940311525, 0.0152328508, 0.00864969194, 0.00436789868, -0.00926025771, 0.00263796025, 0.0262073912, -0.00720938109, -0.00125440094, -0.00508805411, -0.00207827426, 0.0106301187, -0.00533854263, -0.0127357906, -0.0303248018, -0.0087984195, -0.000108121145, 0.0100273797, 0.00187964458, -0.0031585074, -0.00223482982, 0.0204148386, -0.00814871397, 0.0107162241, 0.0169549603, 0.012187846, 0.0132524231, 0.0106222909, -0.0101369694, -0.0075224922, 0.0100665186, 0.0103483191, 0.0189745277, 0.0119843241, 0.0047514597, 0.0246418361, 0.0139021287, 0.0219803937, 0.0169706158, -0.00978471898, -0.0108258128, -0.000137230687, -0.0105048744, -0.0178473275, 0.00170547655, 0.00115948915, 0.00779255, -0.0109354025, 0.00763599481, -0.0310606118, -0.00270449626, -0.00701760035, 0.0202269703, -0.0360703878, -0.0150997788, 0.00511936517, -0.022136949, 0.00088698481, -0.000592464756, -0.00768687529, 0.00345987664, -0.0153424395, 0.0196320601, -0.00893149152, -0.00573384529, -0.0102074193, 0.00311936834, 0.00312132528, -0.0105988076, -0.0111937188, -0.00947943609, -0.0171741396, 0.0103326635, 0.00872014184, 0.00273385062, -0.00429744879, 0.00830526929, 0.0141995847, 0.00704891142, -0.0268962365, -0.0252993703, 0.00918980781, 0.0125792352, 0.00132680789, -0.000268101314, 0.00455185119, -0.0144031066, -0.00741290301, 0.0148023227, 0.00101174, -0.00476711523, 0.0100978296, 0.00673580077, 0.00596867874, 0.00909587462, -0.000259784283, 0.0202739388, 0.0173933171, 0.0158434175, -8.83070898e-05, 0.00190704176, -0.01045008, -0.0049823788, 0.00435224315, -0.00833658, 0.00774558354, -0.00453619566, -0.00131115236, -0.00863403641, 0.00530723156, -0.00056359981, 0.00418003183, 0.00751075055, 0.01315849, 0.00188453693, 0.0170019288, -0.0343169682, 0.00935419183, -0.00933070853, 0.0134481182, -0.0101682805, -0.0285087582, 0.0177690499, 0.00662621157, -0.00509979576, 0.00183267787, 0.0123365736, 0.00415654853, 0.00765165035, 0.016798405, -0.0197729599, 0.00657141721, 0.0165792275, -0.00489627337, 0.0117494911, -0.0112641687, -0.031686835, -0.000282533758, 0.0183169935, -0.0158669, -0.00643051742, -0.0146222841, -0.0194441937, 0.0122739514, -0.00388649036, 0.0119451853, -0.0236868486, 0.0145126954, -0.00154696405, 0.0257690363, -0.00299803796, 9.29548332e-05, 0.00160371547, -0.012720135, 0.0155772725, -0.0169862714, 0.0349745, -0.0153502673, -0.00100097677, 0.0152406786, 0.0212758929, 0.0230449699, 0.0218551476, 0.00418394571, -0.00491975667, 0.0330645218, -0.000939333055, -0.0176124945, -0.00163306959, 0.00854010321, 0.00176907715, 0.0121252239, 0.0150136733, -0.0100900019, 0.00150488981, -0.00398629438, -0.0112250298, -0.0018649674, 0.0124931289, -0.00577298412, -0.00414480688, -0.00193052506, 0.00432093209, 0.00903325249, 0.0067514563, -0.0104344245, -0.00398433767, 0.0242504478, -0.00139138708, -0.00316829211, 0.0132759064, -0.00109491008, -0.0122739514, -0.0105048744, 0.00357337948, -0.0163757056, -0.00494324, -0.00985516887, 0.0250332244, -0.00186888129, -0.0171584841, -0.0150371566, -0.00025269037, -0.00127103506, 0.0227318592, -0.0141369617, -0.0278981905, 0.0147788394, -0.00488061784, -0.00346379052, -0.000319960323, -0.0102387303, 0.0217299033, -0.00377885858, 0.0168923382, 0.0108727794, 0.00799607206, 0.00260469224, 0.00810174737, 0.0110919578, 0.00368296821, 0.0208218824, -0.0023091936, 0.00490801502, 0.00154598558, 0.0323130563, -0.0125087844, -0.00666926429, 0.0130332457, -0.0135263959, 0.0159530062, -0.0184422377, 0.0123130903, 0.00807043631, -0.00330332108, -0.00557729, -0.0035792503, 0.013925612, 0.0038082127, 0.00686887279, 0.00637180917, 0.0196946822, 0.00495106773, -2.16181143e-05, -0.0137299178, 0.0116790403, 0.00475928746, 0.0333776325, 0.00573384529, -0.00569470646, -0.0102074193, -0.00252641435, -0.0150762955, 0.0173306949, 0.00246574916, 0.00130723848, -0.00974558, -0.000652151532, -0.0112172021, 0.0014608585, 0.00829744153, 0.0134168072, -0.00746769737, -0.0145674897, -0.0202895943, -0.0111232689, -0.00962816365, 0.0277572908, 0.0105205299, -0.0134402905, -0.0320938788, 0.00082680874, 0.0185205154, -0.00163894042, 0.0116633847, -0.0146222841, 0.0105361855, 0.015091951, 0.0122739514, 0.00567513704, -0.00814871397, -0.0164383277, 0.00218394934, -0.00597650651, -0.0157651398, -8.51882069e-05, -0.0120234629, 0.0354754776, 0.0178160165, -0.00442660693, 0.0107945018, -0.0117338346, -0.00222308817, 0.0100821741, -0.0154363727, 0.0111780632, 0.000733364664, -0.0168923382, -0.00951857492, -0.00779255, -0.00797258876, 0.00104305102, -0.00619959785, 0.015091951, -0.022872759, -0.00763208093, -0.0066653504, -0.0155694447, -0.0113972407, 0.00735810865, 0.0110997856, 0.0200391039, -0.00417220406, -0.0177064277, -0.016062595, 0.0129471403, 0.0181134716, 0.011921702, 0.0197259933, 0.0093072243, -0.00828961376, -0.0104579078, 0.00911153, -0.0118355965, -0.00236594514, -0.00686495891, -0.0114676906, 0.00411349582, 0.00626613386, 0.0164696388, -0.000638452941, 0.0118434243, 0.0173933171, -0.00910370238, -0.00531114545, 0.00421917066, 0.0116085904, -0.000489725207, 0.013557707, -0.0108258128, 0.0288218688, 0.0143326567, -0.00623873668, -0.0111310966, 0.00785125885, 0.00470057921, -0.00479059853, -0.00564382598, 0.0433971845, -0.00854793098, -0.000723090721, 0.0064344313, 0.0286653135, -0.0149667058, -0.00617220066, 0.00883755833, -0.0104344245, -0.0135968458, 0.0112485131, -0.0149667058, -0.00916632451, -0.00832092483, 0.0330958329, 0.0322191231, 0.0135420514, 0.0265518129, 0.0187710058, -0.00198825495, 0.0149510503, -0.00634832587, 0.0148884282, -0.0180195384, -0.019835582, 0.0115381405, -0.00891583599, -0.0137455733, 0.0105205299, 0.00658315886, -0.000257093488, -0.00757728657, -0.0102387303, -0.00238942844, -0.0229510367, 0.00781211955, 0.0164696388, 0.00298825325, -0.00470057921, 0.0265987795, -0.0267396811, -0.0157573111, 0.0107475352, 0.0290097352, 0.0307944678, -0.0343169682, 0.00676319795, 0.000782777497, 0.0144500732, -0.005475529, -0.00401564874, 0.0134794293, 0.00394128496, 0.00697063375, -0.00272602262, 0.00163991889, -0.00443834858, 0.00334637403, -0.000404842751, 0.00766730588, -0.00138649473, 0.00654010614, 0.0233111139, -0.0154520283, 0.00835223589, -0.00456750672, -0.0143091734, -0.0238590594, 0.0138943009, -0.0017778835, -0.0183796156, 0.000120902434, -0.00209588674, -0.00422308454, 0.0125087844, 0.0411427878, -0.00858707, -0.0134872571, -0.0101995915, -0.00649313955, -0.0255968254, 0.0157416556, 0.0117964577, 0.00889235269, -0.0102935247, -0.00276711863, 0.00141193497, -0.00155479182, -0.00615654513, 0.0188492835, 0.00342856557, -0.0123052625, 0.00106457749, 0.00206066179, 0.0124305068, 0.0338786095, 0.0485948287, -0.00649705343, -0.0125948908, 0.0186614171, 0.00232093525, 0.00562817045, 0.0144813843, 0.00570253422, -0.0154128894, 0.00239334232, -0.0132759064, 0.00694715045, 0.0221212935, -0.0113972407, 0.00421525678, 0.00139138708, 0.00500194822, 0.00517807342, 0.00601564534, -0.0237494707, -0.00890800823, -0.0526026487, 0.00195890083, 0.0093072243, 0.00900976919, -0.00376516, -0.0120312907, 0.0203365609, 0.0195381269, -0.00556554832, 0.0159216952, 0.0082348194, -0.00993344653, -0.00904108, -0.00143346132, -0.0203365609, -0.00966730248, 0.0184265822, 0.00871231407, 0.00128375518, 0.000510762329, 0.0226222705, -0.0143404845, 0.00789039768, -0.00650879508, 0.00326026836, 0.000630135881, 0.0058238646, -0.00750683667, -0.014223068, -0.0106144631, 0.0144344177, 0.0325948559, 0.00975340791, -0.0151702287, 0.00208805897, -0.0124305068, -0.0040058638, -0.0117964577, 0.00337181427, -0.0242504478, 0.00511153741, -0.000817024033, -0.000566535222, -0.0139490953, -0.00377494469, -0.00302934903, -0.00152054534, 0.00557729, 0.00344617805, 0.00104892184, -0.0221212935, 0.0150528122, -0.0284774471, 0.0139804063, -0.0023405049, -0.00807043631, -0.00281799911, -0.0152876452, 0.0148336338, 0.000625732762, 0.000717709132, 0.000215386128, 0.00152445922, -0.00569079258, 0.0143639678, 0.0192406718, 0.0104422523, -0.00218394934, -0.00430136267, 0.0245322473, 0.0119373575, 0.00762033928, 0.00630135927, 0.000873775396, -0.00593345379, -0.00607826747, -0.0107553629, 0.00936984736, -0.00685713114, 0.00817219727, 0.0149197392, -0.0173776615, 0.0177064277, 0.0145753175, 0.0165322609, 0.00765556423, -0.0226692371, 0.0102543859, 0.000289383053, -0.00976906344, 0.0152798174, -0.0135263959, -0.0170332398, 0.000678081, -0.00468101, 0.00733853923, -0.0251115039, -0.0229197256, -0.0183952712, 0.00648531178, 1.60071886e-05, -0.00675537, 0.000777885143, -0.0067044897, 0.0384187214, -0.00176614174, 0.0202426277, -0.0164539833, 0.00153033, 0.0154989948, 0.0389510095, -0.000957924, 0.0204774607, -0.00265557272, 0.0103561468, 0.00802347, -0.0173463505, 0.00285713794, -0.020367872, -0.019569438, -0.00588257331, -0.014927567, -0.0228101369, 0.000244006427, 0.00363208773, 0.00175929244, -0.00380625576, -0.0043170182, -0.0219177715, 0.00942464173, 0.0187083837, 0.00468492368, 0.0216985922, -0.0224970262, -0.00999606866, 0.000186154284, 0.00410566805, 0.0247357693, 0.0022857103, -0.0114598628, 0.00882973056, 0.000454989437, -0.00191095565, 0.00607826747, 0.000906065, -0.0215107258, -0.013056729, -0.00295694219, -0.00342660863, -0.00635615364, 0.00623873668, 0.00396281108, 0.00262817554, -0.0103874579, -0.0373228341, 0.000504402269, -0.0109901968, 0.00661055604, 0.0018248501, -0.028884491, 0.0142935179, -0.0120234629, -0.00223482982, -0.00814871397, 0.0291036684, -0.00610566465, 0.00114774751, -0.00444226246, -0.0181134716, -0.00187475223, -0.00386887789, 0.0240625814, -0.0312954448, 0.0161408726, -0.0125400955, -0.0185048599, 0.00514284847, -0.0188962501, 0.0138786454, 0.000547455042, 0.00631310092, 0.0262073912, -0.0203052498, 0.0183639601, -0.0237338152, -0.0214637592, 0.0161095615, 0.011819941, 0.0052524372, 0.00701368647, 0.00904890802, 0.00939333066, -0.00485322066, 0.00201173825, 0.000693247363, -0.0365400538, -0.0108179851, -0.00591779826, 0.019600749, -0.00213893969, 0.0150841232, 0.0286340024, 0.00335615873, -0.00641486188, 0.0140038896, 0.00119275728, 0.00915066898, 0.000889920222, -0.00495106773, 0.00146672933, 0.0161095615, -0.00350684323, -0.00139921485, -0.0174246281, 0.000172211061, -0.00145988, -0.0249862578, 0.0219803937, 0.00138649473, 0.0112563409, 0.0308727454, 0.000276907551, 0.023076281, -0.0153972339, 0.0281799901, -0.0126496851, 0.00917415228, 0.00912718568, 0.000160591706, -0.00897063, 0.00804695301, -0.00951074716, -0.0161721837, -0.01045008, 0.0079882443, 0.0115146572, 0.000378913246, 0.00704499753, 0.0138395065, 0.0151624009, 0.0192406718, 0.000278864492, -0.00736202253, 0.020367872, 0.0102700414, 0.0185987931, 0.0102465581, 0.00530723156, -0.0134168072, -0.0125714075, 0.0087984195, 0.00328179472, -0.0110371634, 0.00475537358, 0.0054990123, 0.00735810865, 0.00724852, -0.010653602, -0.00795693323, 0.005475529, -0.0218238365, 0.0049823788, 0.0214637592, -0.00177984044, -0.00998041313, -0.00983951334, -0.0102778692, -0.0214011371, -0.0116085904, -0.0247827359, 0.00827395823, -0.0214794148, -0.0150058456, -0.00925243, 0.0135733625, 0.022136949, 0.00394715555, -0.00833658, -0.0155694447, -0.00298238243, -0.0081643695, -0.00171623973, -0.0105909798, -0.00633267034, -0.0142935179, -0.014160445, -0.0192250162, -0.00826613, 0.00155577029, 0.000421721401, 0.0336907431, -0.0039588972, 0.0064813979, 0.000653619238, -0.0225753039, 0.00312719611, 0.00251858658, -0.0103404913, -0.0111310966, -0.0013806239, 0.000915849698, -0.0158121064, 0.0211193375, 0.00312328222, -5.43663446e-05, -0.0121330516, -0.00291976, -0.0361956321, -0.00993344653, -0.0127592739, -0.030418735, 0.0165166054, -0.0164696388, 0.0098943077, -0.0165792275, 0.0109432302, -0.0131036956, -0.00718981167, 0.0162817724, -0.00618002843, -0.012289607, 0.0184109267, 0.00349901547, -0.000192392035, -0.00295498525, -0.0162348058, 0.00831309706, -0.000845399743, -0.0223091599, -0.00817219727, 0.0118512521, 0.0108571239, -0.0176751167, -0.00861838087, 0.00488453172, -0.0064579146, -0.0266457461, -0.00781211955, -0.0121487072, -0.00609783689, 0.00582777848, 0.0087514529, 0.00258903671, -0.0174246281, 0.00460273167, -0.0152406786, -0.0100038964, -0.0114128962, 0.0245792139, -0.00538942311, -0.00954205822, -0.0113346186, -0.00992561877, 0.00155087793, -0.00459099, -0.0030704448, -0.00690801162, -0.0133776683, 0.0202113148, -0.0114833461, -0.0104813911, -0.0153189562, -0.0121565349, -0.018097816, 0.00661447, 0.00012903598, -0.0064344313, 0.00479842629, -0.00722112274, 0.00549509842, -0.00687278667, -0.0169549603, -0.00630527316, 0.082035087, 0.00934636407, 0.0190371498, -0.0253306814, 0.00755771715, -0.0115772793, -0.0162661169, 0.0456515849, -0.00463404274, 0.0284774471, -0.00750683667, 0.0145440064, -0.00992561877, -0.00339921145, 0.00744421408, 0.00221721735, -0.022136949, -0.00363600161, -0.00172015361, -0.0130332457, 7.81554409e-05, -0.00181995775, 0.0139177842, -0.00414872076, -0.0147240451, -0.0062113395, 0.00312132528, -0.00751075055, -0.033158455, 0.0112406854, -0.0162191503, -0.000837082742, 0.0115068294, 0.00238355761, -0.0367905423, 0.00144226756, 0.00292563089, 0.00599607592, 0.0123678846, -0.0116007626, 0.00735419476, 0.0270997584, 0.00415263465, 0.0100900019, 0.0138003677, -0.0156868622, -0.0050293454, -0.0138943009, -0.00604304252, 0.0050293454, 0.0129001737, -0.0144109344, 0.0028082144, 0.00462230109, 0.000413893606, 0.0186144486, 0.0142074125, -0.00908021908, 0.0233111139, -0.0140352007, -0.0043639848, 0.0301682465, 0.0329392776, 0.0157103445, -0.00108903926, -0.0219177715, -0.019365916, 0.0066653504, 0.00258512283, -0.011420724, -0.0142387236, -0.00753423385, -0.00167220854, -0.00588257331, 0.0294011235, -0.00671231747, 0.012720135, -0.00336202956, -0.00728374487, -0.0186614171, -0.000777885143, 0.00863403641, -0.0070919646, -0.020070415, -0.0121173961, 0.0069354088, -0.010418769, 0.00801172759, -0.0218238365, 0.0219490826, -0.00879059173, 0.0357572772, -0.0163757056, 0.0211976152, 0.018567482, -0.0117808022, 0.00966730248, -0.00521329837, 0.014191757, -0.00139530096, 0.00177201268, -0.0163443945, 0.00332484744, 0.00903325249, -0.0101213139, 0.0220586713, 0.00430527655, 0.00985516887, 0.0206809826, 0.00360664749, 0.00199314719, -0.00433658762, 0.011318963, 0.0272719692, 0.0178160165, 0.00656358944, -0.00441486528, -0.0196946822, 0.0101526249, -0.00660272827, 0.0109275738, 0.0130097624, 0.00564382598, -0.0052054706, 0.0121487072, -0.00352054182, 0.0174559392, 0.00282778381, 0.0230136588, -0.00205870485, 0.0143013457, 0.00102543854, -0.0102856969, -0.00371623621, 0.0159530062, 0.0122269848, -0.010183936, 0.0179256052, -0.00485713454, 0.0109119182, -0.00527983438, -0.00285909488, -0.0023972562, 0.0133854961, -0.00309588504, 0.0190841164, 0.0137690566, -0.0029902102, 0.000757826492, 0.00735419476, -0.00163502654, 0.0233111139, -0.00776515296, -0.00795302, -0.0167357828, -0.00744812796, 0.00324069895, -0.0306379125, 0.00414480688, -0.0070058587, -0.00270058238, -0.000331212737, 0.018066505, -0.00496672327, 0.00324069895, -0.0204461496, -0.00771818636, -0.017127173, 0.00900194142, 0.00927591324, 0.0241252035, -0.000557239749, -0.000830722624, 0.0135811903, 0.00403913204, -0.0107475352, -0.0026262186, -0.0154755116, -0.00115851068, -0.0169706158, 0.00788648333, -0.00321525871, 0.00914284121, 0.0368218534, 0.0147866672, -0.0120782573, -0.017596839, -0.00557729, 0.0183796156, -0.00123581, -0.013956923, -0.000138331467, -0.00972209685, -0.00778472237, 0.000617905, 0.0174872503, 0.014191757, 0.00508022634, 0.00317220599, 0.00774166966, 0.0104970466, -0.00289431983, 0.015428545, -0.00106946984, -0.00165850983, 0.018332649, 0.00483756512, -0.0103796301, -0.0016868856, -0.0158825554, 0.00485322066]
|
23 Mar, 2022
|
Tailwind CSS Ring Offset Width
23 Mar, 2022
This class accepts more than one value in tailwind CSS. All the properties are covered in class form. This class is used to set the ring-offset width of buttons.
Ring Offset Width classes:
ring-offset-0: This class is used to deny the ring-offset.
ring-offset-1: This class is used to set the smallest ring-offset.
ring-offset-2: This class is used to set the medium ring-offset.
ring-offset-4: This class is used to set the large ring-offset.
ring-offset-8: This class is used to set the largest ring-offset.
Note: Currently the browsers are not supported by Tailwind CSS Ring Width, so for the output, I share the link of the output. (Tailwind CSS Playground)
Syntax:
<button class="ring-offset-{width}">...</button >
Example:
HTML
<!DOCTYPE html>
<html>
<head>
<link
href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css"
rel="stylesheet">
</head>
<body class="text-center">
<h1 class="text-green-600 text-5xl font-bold">
GeeksforGeeks
</h1>
<b>Tailwind CSS Ring Offset Width Class</b>
<div class="mx-16 grid grid-cols-2 gap-6 p-2">
<button class="ring-4 ring-green-600 ring-offset-4
ring-offset-green-700 bg-green-400
ring-opacity-25 w-full h-12 rounded-lg">
ring-offset-4 ring-offset-green-700
</button>
<button class="ring-4 ring-green-600 bg-green-400
ring-offset-4 ring-offset-yellow-700
ring-opacity-25 w-full h-12 rounded-lg">
ring-offset-4 ring-offset-yellow-700
</button>
</div>
</body>
</html>
Output:
ring-offset width
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width
|
https://www.geeksforgeeks.org/tailwind-css-ring-offset-width?ref=asr10
|
CSS
|
Tailwind CSS Ring Offset Width
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0152212316, -0.00304992055, -0.0169660691, 0.000629489427, 0.0657648, 0.00114460674, -0.00212075864, 0.0353507064, -0.0258746743, -0.0253356192, -0.000219988811, 0.0335633121, -0.0180299953, -0.0672968477, -0.0415356606, 0.00318468432, -0.0433230586, -0.00523096835, 0.00805037189, 0.000507138, 0.0220019855, 0.00669563934, -0.0546432287, -0.0149800749, -0.06389229, 0.00235836883, -0.00959661, 0.00521323644, -0.0503307804, 0.0131075652, 0.0053692786, -0.0149517031, -0.000809470192, 0.0176895391, -0.0307545476, -0.0154907592, 0.0274776556, 0.0210373588, 0.00267577334, -0.002420431, -0.0412519462, -0.0248249341, -0.0187676512, 0.0025747004, 0.033081, -0.00397198927, -0.0133770928, -0.0356627926, 0.0174767543, -0.0362585895, 0.0011782978, -0.0271372, 0.0214487426, 0.00477702683, 0.00265626796, 0.011142849, 0.007124756, 0.0602040105, -0.0156326164, 0.0107882069, 0.0233779959, -0.0145261334, -0.0410533473, 0.00458552, -0.0209238734, 0.00238496694, -0.00747585157, 0.0229098685, -0.0260874592, 0.00847594161, -0.022810569, -0.0395780392, -0.0152354166, 0.0343293361, 0.0152779743, 0.0164553858, 0.0382729545, -0.0149233323, -0.0277188122, 0.0531111732, -0.00722405594, 0.0188243929, -0.0475503877, 0.00743329478, -0.00541183585, 0.0150510026, 0.0265272148, -0.0442876816, -0.0297331791, -0.0204131883, -0.0132494224, 0.0101782233, 0.00692615658, -0.0135686, -0.00108077121, 0.000477879978, -0.00663889665, 0.0145261334, -0.0136111565, 0.0325703137, 0.0132636074, 0.0297048073, 0.0169093274, -0.000348435686, 0.0290522669, -0.0121642174, 0.048373159, -0.00106481242, 0.0229666103, -0.0278322976, 0.0229240544, -0.0274492837, -0.0282294974, 0.0447416231, -0.0342442244, 0.0141998623, -0.0176186115, -0.039606411, 0.0131217511, 0.0309247747, -0.0109229712, 0.0101002017, 0.0310098901, 0.0379325, -0.0164412, 0.0142636979, -0.0124975815, 0.0307545476, -0.0032148289, 0.0165546853, 0.0392092094, 0.0306410622, 0.000562107423, -0.0598068126, -0.000841387955, 0.0012048959, 0.0377906412, -0.00968881696, 0.00659279339, 0.0140083563, -0.0127174594, -0.0267967433, 0.00634099729, 0.0448551103, -0.0228956826, 0.00928452518, 0.013696271, -0.00591897359, -0.012774202, 0.0352088511, -0.0209806152, -0.0266832579, -0.0168951415, 0.00178916845, 0.023732638, -0.0161433, -0.0411952063, 0.02336381, 0.0100150881, -0.0210231729, 0.0616793223, 0.00494016195, -0.00176257035, 0.0453657955, -0.0203280747, 0.0382729545, 0.00469191279, 0.0224417411, -0.0457913652, 0.0308680329, 0.0279599689, -0.0106534436, 0.019902505, 0.0307545476, -0.0240021646, 0.0196471624, 0.0284139104, -0.025023533, 0.0296196938, 0.00658215396, -0.0245128497, 0.039464552, 0.0146396188, 0.0147672892, 0.00858942699, -0.00245944178, -0.0104832156, 0.0107598361, -0.0238886792, -0.0178030245, -0.00369891524, 0.0178455822, -0.0214061867, 0.0345846787, -0.00707865274, -0.00851849932, -0.0455360226, -0.0446281396, 0.0165830553, -0.00539410347, 0.0217466429, -0.0299601499, -0.0163419, -0.00463517, 0.0171930399, -0.0110364566, 0.000344002648, -0.0141785843, 0.057338506, -0.0131146582, -0.0402589515, 0.0357762761, 0.00266868039, 0.0137672, -0.0107243713, 0.0194911193, -0.0139161488, 0.0372799598, 0.0205408596, -0.0219452418, -0.00456778798, 0.0148240319, 0.00105062674, 0.002647402, -0.061906293, 0.0179732516, -0.0121287536, -0.012050732, -0.0113059841, 0.00121198874, -0.0497349836, -0.0234914813, -0.0233779959, 0.027193943, 0.0188385788, 0.0349535085, -0.0126323448, 0.00456778798, -0.00444366317, -0.00833408535, -0.00922069, -0.0107527431, -0.0166823566, -0.0203422606, -0.00459615933, 0.0123344455, 0.0295062084, 0.030130377, 0.00641901884, 0.00118982361, -0.0447699949, 0.0285983235, -0.00619559456, -0.00516003976, -0.0221863985, 0.0186541658, -0.00961079635, -0.036513932, 0.0667294264, 0.00243107043, 0.0192215927, 0.027945783, -0.0176044255, 0.0155900586, 0.051891204, -0.0120720109, -0.00495789386, -0.017349083, 0.0230659097, -0.0382445827, 0.0152212316, -0.051891204, 0.0364855602, -0.0160865579, 0.00975265261, 0.0304424632, 0.0196187906, -0.0256902613, 0.0131146582, 0.0162851568, -0.0021189854, 0.0313219726, 0.026470473, 0.00811420754, -0.0175193101, -0.0324000865, -0.0167107265, 0.0326838, -0.00705737434, -0.0446848832, -0.0126181599, -0.0168667696, 0.0301587489, 0.0183846373, 0.0746166632, -0.00402873242, 0.00648994697, -0.0346697941, -0.02411565, -0.0183704514, -0.0134763932, 0.0178455822, -0.00914266892, -0.0274209138, 0.0119301537, 0.0498768389, 0.000390106114, -0.0343293361, -0.0322582275, 0.00584449898, -0.000154490888, -0.0133487219, -0.00790142175, -0.0327972844, -0.0344428234, -0.0183704514, 0.0401454642, 0.0159872584, -0.0374218151, -0.0417058915, -0.00299495109, -0.0091852257, -0.0304424632, 0.0414221771, -0.0307829194, -0.00158524932, -0.0148382178, -0.0231652111, 0.0108520426, -0.0299885198, -0.0508414656, 0.0122847958, -0.0310382601, -0.00613530539, 0.0580761619, -0.0626439452, -0.0136111565, -0.0224417411, -0.0126961805, 0.00757515151, 0.0122635178, 0.0130721014, 0.0223140698, -0.0262435023, 0.0255200323, -0.0318042859, -0.0134196505, -0.026669072, 0.00657506101, 0.025747003, 0.00098235812, 0.0527990907, 0.0295345783, 0.0229382385, 0.0306978039, -0.0198599473, 0.00848303456, 0.0226687118, 0.00808583573, -0.0218459424, 0.00744038727, 0.00580194173, 0.00415994972, -0.00215799618, -0.0396347791, -0.0353790782, -0.00381240062, 0.0527990907, -0.0316624306, -0.00537637156, -0.0484299, -0.010589608, -0.0117386477, 0.0124833956, -0.00544729969, -0.00121198874, 0.0365990475, -0.0362585895, 0.00158436282, 0.0155616878, -0.0486852415, 0.0485150144, 0.00749003747, -0.0493094139, 0.0119159687, -0.00703964196, 0.00887314, 0.00649349345, 0.0116180694, -0.0274918415, -0.0111286631, 0.028853666, 0.0132423295, -0.0421030894, 0.0129798939, -0.00974556, -0.00516713271, 0.0211650301, -0.0108875073, -0.0312652327, 0.0153914597, 0.0168525837, 0.0202004034, 0.0188953206, 0.0128380377, -0.0147531042, -0.0430393443, -0.00275556766, 0.0414221771, -0.000599344843, 0.00361912069, -0.0030587865, -0.0131643079, -0.0008697593, 0.0539055727, -0.00510329707, -0.00165440456, 0.030499205, 0.0128309447, 0.00618140865, 0.0251370184, 0.00507137924, 0.031407088, -0.00324497349, 0.0298466645, -0.00412093895, -0.0168100279, 0.0127600161, 0.0360032469, 0.0089795338, -0.071439065, -0.00473446958, 0.00692615658, -0.0168100279, 0.00612466596, -0.0208813157, 0.00817095, 0.0633816049, -0.012781295, 0.00533026783, -0.00111534889, 0.0180016235, -0.00596507685, -0.00539765, -0.0102065941, 0.0289104097, -0.0573101342, -0.0250802767, 0.0089795338, 0.0250660907, 0.00827734265, -0.0213352572, -0.0288962238, 0.00275911414, 0.00780212227, 0.00340456236, 0.050586123, -0.0240163505, 0.0118946899, 0.00519905053, -0.0282862391, -0.00335313939, 0.000157594, -0.00439756, 0.00744038727, -0.0272506848, -0.0269669723, -0.0145970611, 0.00301445625, 0.00946893916, 0.00249667908, -0.0152637884, 0.00691906363, 0.0294778366, 0.0215054862, -0.00736236619, -0.010603793, 0.0216899, -0.0240305364, -0.00359429582, 0.0342725962, -0.0187818352, 0.00427698158, -0.00385850412, 0.0255200323, -0.00768154394, 0.0415356606, -0.00361734768, 0.0197180901, 0.0169235133, 0.0190655496, 0.00555369258, -0.0476922467, -0.0360032469, -0.0108023928, -0.005294804, -0.0125401383, -0.0285983235, -0.0122777028, -0.0107456502, 0.00109850336, 0.0373367, -0.0346697941, 0.0432946868, 0.0310098901, 0.00897244085, -0.0152212316, 0.0187676512, -0.000829418772, 0.0124621168, -0.0367692746, 0.0181151088, -0.0107101863, 0.00431244588, -0.0130933793, -0.0180158094, -0.0131855868, -0.0211224724, -0.00102048216, -0.0252221338, 0.00951858889, 0.0109939, 0.00655023614, -0.00961079635, 0.0193776339, 0.0269386, -0.000369270885, -0.00176345697, 0.00870291237, 0.0240447223, -0.00327689131, -0.0253214333, -0.00651477184, 0.000979698263, -0.0425002873, 0.0486568697, -0.0246547069, -0.0110222707, -0.00659988634, 0.0285841394, -0.015703544, -0.0107030934, -0.00810002163, -0.00187605573, 0.000267976313, 0.0248958636, 0.00336200534, -2.70137389e-06, 0.00236546155, 0.0474085324, 0.0152921593, 0.00860361289, 0.0263144299, 0.0044543026, 0.0351521075, -0.0231084675, 0.0235765949, -0.0111073852, 0.0105399583, -0.00887314, 0.014235327, -0.000219767171, 0.0359465033, 0.0156326164, -0.00566363148, -0.0038053079, 0.0138168493, 0.0168809555, -0.048373159, -0.00602182, 0.0290806368, 0.0164412, 0.015348902, -0.0499903262, -0.00591542711, 0.0199876186, 0.0157319158, -0.0222998839, 0.00457842695, 0.000957533193, -3.27489652e-05, -0.0261442028, 0.0152070457, 0.0148807745, -0.00912139, -0.00423442433, 0.00722760241, -0.0187960211, -0.0331944823, -0.0300736353, -0.00372019364, 0.0466708764, -0.00630553346, -0.0079936292, -0.0194201916, -0.000933594827, -0.0184839368, -0.00705028139, 0.0291941222, -0.0261442028, -0.00147708354, 0.0142140482, 0.0263428017, 0.0078375861, -0.0106676286, -0.00196826272, 0.0375636704, 0.0134976711, 0.0131430291, -0.0200301763, -0.0231226534, -0.00611402653, 0.0400603525, 0.00540119642, 0.0118095763, -0.0110222707, -0.010696, 0.0114194695, -0.00103466783, 0.00446494156, 0.0144481119, -0.00824897084, 0.00705382787, 0.0208245739, 0.014965889, -0.0142636979, 0.00304282759, -0.0285841394, 0.0106179789, -0.0103981011, -0.0325986855, -0.0298182927, 0.00224488345, -0.000789521553, 0.00917813275, 0.00449331291, 0.0189095065, 0.000697314681, -0.0196329765, 0.0306410622, -0.0244986638, 0.0180441812, -0.0107385572, 0.039265953, 0.000658304081, 0.0271797571, -0.00857524201, 0.0324852, -0.00633035833, 0.015348902, 0.0172497835, -0.00865326263, -0.0176327955, 0.0101924092, -0.00275202119, 0.0185123086, -0.00921359751, 0.0390389822, -0.0109300641, -0.0101924092, -0.0393794402, -0.0166397989, 0.0203280747, 0.00651122583, -0.000767356425, -0.0394361801, -0.00327511807, 0.0114194695, -0.00446848804, 1.36731087e-05, 0.00392943248, -0.0452239364, 0.030300606, -0.00385850412, 0.00155865122, -0.0101285735, 0.0106250718, -0.0082206, -0.00446848804, 0.00318113808, 0.00956114568, 0.0215054862, -0.0304424632, 0.0217750147, -0.00251441123, -0.010774022, -0.0310666319, 0.0250802767, -0.0162284151, 0.00234241, 0.00878802687, 0.0116464403, 0.011688998, 0.0184697509, 0.00335668586, 0.00243107043, 0.00294707436, -0.0176186115, 0.0354358219, -0.0115755126, -0.0346414223, -0.015902143, -0.0184130091, 0.00553596, -0.0167390984, 0.0407412648, -0.0144410189, 0.0106179789, -0.0148524037, 0.00221828511, -0.00978811737, 0.0402589515, -0.0023477294, 0.0474936441, -0.0351521075, -0.0205976032, -0.00110559619, 0.00583031308, -0.0304424632, -0.0392092094, -0.0203990024, -0.00826315675, 0.00773828663, -0.0491959266, -0.00370246172, -0.0165688712, -0.00916394684, 0.00993706658, -0.0142282341, -0.00535154669, -0.0315205753, 0.0540190563, 0.00569554931, -0.0185832363, -0.00278748549, 0.00626297621, -0.00673819659, 0.00827734265, -0.0123486314, -0.0212927014, 0.00721341651, 0.0351521075, -0.00300736353, -0.0408263765, -0.0155616878, -0.00944766, 0.0467276201, 0.00161450729, -0.00736945914, -0.00626652269, -0.0164695699, -0.0612821244, 0.0211650301, -0.00788723584, -0.0044188383, -0.0201294757, 0.017703725, -0.00529835047, -0.00145757827, -0.0171930399, -0.0231084675, -0.00682331063, -0.0119868973, -0.0190655496, -0.0156751722, 0.00633390481, -0.0332228541, -0.00591188064, 0.0280592684, -0.019902505, 0.0154198306, 0.00488696573, -0.0164553858, 0.0178597663, -0.0208245739, -0.00298785814, -0.00851140637, -0.00949021801, 0.0241014641, -0.00711411703, -0.00445075613, 0.0206685308, 0.031407088, -0.00867454149, 0.0247398205, 0.0138594061, 0.0161433, -0.00392233953, 0.000617520243, 0.024668891, 0.0159872584, 0.0184130091, 0.00708929216, 0.0339321382, 0.021008987, 0.00978811737, 0.00125986547, -0.00149747555, 0.0184413791, -0.0435500294, -0.00296657975, -0.00307119894, 0.00353046041, -0.00777375093, 0.00924196839, -0.00655023614, -0.0359465033, -0.0190229919, -0.0299317781, 0.0125756022, -0.00139108289, 0.0293643512, -0.0245837774, 0.00020746552, -0.00966044609, -0.0123911891, 0.000218437257, -0.00646157563, 0.00412448542, 0.0252221338, -0.0119798044, -0.00165883754, 0.0170228127, 0.0123628173, -0.0369678736, 0.0017448382, 0.0352939628, -0.00346662477, 0.0371664725, -0.0229807962, -0.0370246172, -0.0191932209, -0.0551822819, 0.0175902396, 0.00627361564, -0.00849722, 0.00822769292, 0.0113059841, 0.00212785159, 0.0287685525, -0.0278890412, 0.0185123086, -0.0377906412, -0.0190939214, 0.0267400015, 0.005752292, 0.00969591, 0.0197748337, 0.0451671965, -0.033591684, 0.0211934019, 0.0335349403, 0.0175051242, 0.0305843186, 0.0102136871, 0.00343648018, -0.00537991803, -0.0170228127, -0.0276053268, -0.0111144781, -0.0209948011, -0.0130508225, 0.000405178405, 0.0375920422, -0.0061388514, 0.0117741115, 0.0157744717, 0.00391524658, -0.00154535216, -0.00966044609, 0.0121571254, 0.00661052531, 0.0346130505, -0.0051884111, 0.0165546853, 0.0221863985, -0.0595231, -0.0185548645, -0.00473801605, 0.0159305148, 0.0207110886, 0.0333647132, -0.0303857196, -0.0098093953, -0.0112847062, 0.0208529457, -0.000915862736, -0.0297048073, -0.0228814967, -0.0298466645, -0.0170086268, -0.00731271645, 0.0251086485, -0.0408831201, 0.0248958636, 0.00212075864, 0.0183562655, -0.00625233725, -0.00369891524, 0.00823478494, 0.0204273742, -0.0194769334, 0.0050430079, -0.0458764769, 0.0304140914, -0.0251512043, -0.00152939325, 0.0337051675, -0.00939801056, 0.0433230586, 0.0428123735, 0.0103342654, -0.0103555443, -0.0234205518, 0.00170050806, 0.00888732634, -0.0121216606, 0.0226828977, 0.0158170294, -0.00210834621, -0.00823478494, 0.039265953, -0.0338186547, 0.0274918415, -0.0327689126, 0.00429826, -0.0132210506, -0.0134267434, -0.00914976187, 0.00661761826, 0.025747003, 0.0106605357, 0.00535863917, 0.0121003827, -0.0136040645, 0.00226793508, 0.0274776556, 0.017703725, -0.0543878861, -0.0227821972, 0.0213778149, 0.0219452418, -0.0105541432, -0.00290806382, 0.0224275552, -0.0253639892, -0.00518131861, -0.0103626372, -0.00636936864, 0.0391808376, 0.00756096561, -0.00463871611, -0.00735527324, 0.00570973475, 0.0241865795, 0.0161291137, -0.0111073852, -0.00228921347, -0.0053692786, 0.0163844563, 0.0256618895, -0.0355209336, -0.0271372, 0.00439756, 0.0148382178, 0.00375920441, 0.016980255, -0.0416491479, 0.0281018261, -0.0019735822, 0.00137246423, 0.000276399049, 0.0201011039, 0.0164128281, -0.0279599689, 0.0293076076, 0.00694034249, -0.0215764139, 0.0318326578, 0.0114833051, 0.0179448817, -0.000916749355, -0.00140260882, -0.00425570318, 0.004011, -0.00342406775, 0.0402589515, -0.00753968721, -0.0100860158, 0.00720987, 0.00917104, -0.0193067063, -0.0219026841, -0.0440039709, 0.00932708289, 0.00988741685, 0.0101285735, 0.0223424416, -0.0245695915, 0.00899371877, -0.0192925204, -0.00107722485, 0.0106889075, 0.0321447439, -0.0313219726, 0.0108236717, 0.00302686868, 0.0512102917, -0.0403156951, 0.0266407, 0.0292792376, -0.00204983028, 0.00860361289, -0.0132919792, 0.0177888386, 0.0233921818, -0.00875256211, -0.0161149297, -0.0106676286, 0.0363720767, 0.00756805856, -0.00485859439, 0.0252788756, 0.00446139555, 0.0118308542, 0.00856105611, -0.00245766854, -0.00197180896, 0.00978811737, 0.00684104254, 0.0153205311, -0.00569554931, -0.00454650959, -0.0241440218, 0.00593670551, -0.014412648, -0.0417342596, -0.0246547069, -0.015902143, -0.0316624306, -0.040911492, 0.00731271645, -0.0201011039, -0.0186825357, -0.0138168493, 0.00197003596, -0.00099920365, 0.00971009582, 0.00118627725, -0.0164128281, -0.0137530137, 0.0027307428, -0.00874547, 0.0121145677, 0.0195194911, -0.0187818352, -0.00596507685, -0.0226687118, 0.0209948011, 0.0122706108, -0.0219594277, 0.00243284367, 0.00700772414, -0.0159305148, -0.000706180697, 0.00286196033, 0.0270804577, -0.00540119642, -0.0176611673, -0.0305559486, -0.00717085972, 0.0262576882, -0.00639419397, -0.0114336554, 0.00149304245, -0.00848303456, -0.00426279567, 0.00235659559, -0.0308396611, -0.00378402928, 0.00305524, 0.00594734494, 0.0295629501, -0.024285879, -0.0174625684, 0.00409966055, 0.0183278937, 0.00120578252, -0.0143417194, -0.0168383978, -0.018256966, -0.00612111948, -0.0129869869, 0.0263144299, 0.0105612362, 0.000800604117, -0.0247256346, 0.0806313902, -0.00520614348, -0.03251357, 0.0143346265, -0.024470292, -0.0159872584, -0.0140650989, 0.019363448, 0.0168809555, 0.018625794, 0.0317759141, 0.000489849132, 0.0155900586, 0.0168667696, 0.0153772738, 0.0196329765, -0.0182285942, -0.00692970306, -0.00185477722, -0.0300452635, 0.0125897881, 0.000291692966, 0.0120649179, 0.0190229919, 0.00787305087, 0.0175902396, -0.0239312369, 0.00412093895, -0.0115613267, -0.016795842, 0.0393226966, 0.00850431342, 0.00272364984, 0.0209664311, 0.0128238518, 0.0218885, -0.00949731097, 0.0229666103, -0.0227821972, 0.0195053052, -0.00991578773, -0.00068135577, 0.0118875969, -0.0589556731, 0.00566717796, -0.0154056447, 0.000584715861, 0.0135898786, -0.0146821756, -0.0191648491, -0.0143346265, 0.0110222707, -0.00584804546, 0.0046954588, -0.01551913, -0.0071744062, 0.0127954809, -0.0146396188, 0.0224984828, -0.0453374237, 0.00867454149, -0.00652541127, -0.0156609863, 0.0200585462, 0.0173916388, 0.00193457166, -0.00590833416, 0.0299601499, -0.00259243231, 0.010050552, -0.0118946899, 0.0297048073, -0.0119443396, -0.00479830522, -0.0312936045, -0.00791560765, 0.0184981227, 0.0192499626, 0.0164128281, -0.0257044472, 0.00242220424, -0.022087099, 0.00164110551, 0.0396915227, -0.00561043527, 0.00498271873, 0.0115826055, -0.0176327955, 0.00866744854, 0.0158595871, 0.00420250697, -0.0405426659, -0.0167390984, -0.00781630818, 0.0167390984, -0.0105328653, 0.00723824138, 0.025945602, -0.014433926, 0.00415994972, 0.00209593377, -0.00134675275, 0.0199592467, 0.00883058365, -0.00360670825, -0.0234205518, 0.00837664213, 0.00944056828, -0.00611757301, 0.0112917991, -0.0232928805, 0.0375353023, 0.00539765, 0.00303750811, -0.0110719204, 0.0173065253, -5.78509644e-05, -0.0292508658, 0.0138239423, -0.00922069, -0.0229524244, -0.0136253424, 0.0394929238, -0.0142636979, -0.00729143806, -0.00497562625, -0.012774202, 0.0296764355, 0.0156609863, -0.00526997913, -0.00564235309, 0.0144764828, -0.00674174307, 0.019533677, -0.0102988016, -0.00431953836, 0.0114123765, 0.00194698409, -0.00714248838, 0.00242929719, 0.0149942599, 0.0214061867, 0.00594734494, -0.00850431342, -0.00605019135, 0.0235907808, -0.00156751729, 0.0168100279, 0.00229098671, -0.00161628053, -0.0337619111, -0.0319745168, 0.00829862058, -0.0035978423, 0.010043459, -0.0294210929, 0.0137955705, -0.0124337459, 0.00773119368, -0.00221828511, 0.0103555443, 0.00683040358, -0.00406774273, -0.00440110639, -0.00695452793, -0.0161007438, -0.0251512043, -0.0224984828, -0.0134622073, 0.0146254329, 0.0287827384, -0.03251357, -0.0102491518, 0.0078375861, 0.00223956374, 0.0254065469, 0.012965709, -0.0198315755, 0.0207252745, 0.0139303347, -0.0339321382, 0.000109772758, -0.00847594161, -0.0204699319, -0.0387552679, -0.0247681923, -0.0209380593, -0.00634454377, 0.00737655209, -0.00975265261, -0.0105754221, 0.0166539848, 0.0101427585, 0.0207394585, -0.00373792578, 0.00680203224, 0.0103555443, -0.011859226, -0.0100931088, 0.00651477184, -0.00452168426, -0.0036705439, 0.0315205753, 0.028853666, -0.000646334898, -0.00477702683, 6.95984781e-05, -0.00478766579, 0.00568491, 0.0180441812, 0.00727725215, 0.000199375252, 0.00534445373, -0.0198741332, -0.0149800749, 0.001209329, -0.00237610075, 0.0209096875, 0.0184697509, 0.00119071023, 0.00975974556, 0.0142211411, 0.00961079635, 0.00109229714, -0.0155049451, -0.00196471624, 0.00712120952, -0.00887314, -0.00883767661, 0.0192641485, -0.0224984828, 0.0124550238, 0.0271655712, 0.019533677, -0.0168667696, -0.00950440299, 0.00887314, 0.00852559134, 0.0111783138, -0.0171221122, -0.00866035558, 0.0224701129, -0.00464935554, -0.0193208922, 0.00834827, -0.000188846825, 0.00928452518, -0.0241440218, -0.0102917086, 0.0245695915, -0.00188669504, 0.0121216606, 0.00850431342, -0.0160156284, 0.0102136871, 0.00880930573, -0.00512457592, 0.0187534653, -0.00543311425, 0.00822769292, 0.0069580744, 0.00819222815, 0.00452523073, -0.0568845645, 0.00348613015, -0.00776665797, -0.0403440632, 0.0134196505, -0.00626297621, -0.0157602876, -0.0119301537, 0.0321163721, 0.0256193317, 0.0078375861, -0.00633745128, 0.012781295, 0.0209948011, 0.0165405, -0.0185123086, -0.00969591, -0.00805037189, -0.00651831832, 0.0167816561, -0.034159109, -0.038159471, 0.00381949358, -0.0024931326, 0.00318291131, -0.000126673665, 0.00461389124, -0.00880221277, -0.000299894076, 0.0202145893, -0.00319177727, 0.0121216606, 0.0187960211, -0.0033229948, -0.00387623627, -0.0279032253, 0.0274351, 0.000664953608, 0.0178030245, -0.00716376677, 0.0204131883, -0.0209522452, 0.0111783138, 0.000251352467, -0.0162709709, 0.00540119642, -0.0304424632, -0.0111995917, -0.0179874375, -0.0105186794, -0.0326270573, 0.0134622073, -0.0172781534, -0.00255874149, -0.0164837558, 0.0212217718, -0.0289104097, -0.00517422566, -0.0190797355, -0.00896534789, 0.00402518595, -0.0110364566, -0.000756717171, 0.0169093274, -0.00409611408, 0.00660343235, 0.00123326725, -0.00915685389, -0.00376629713, -0.0161716715, -0.0114194695, 0.0223566275, 0.00612466596, -0.00377693633, 0.0156751722, -0.00265804119, 0.000783315336, -0.0306410622, 0.0112137776, -0.0124337459, -0.0119939893, 0.00938382559, -0.0154340165, -0.0106889075, -0.00627716212, -0.020455746, -0.00735527324, -0.00959661, -0.0331944823, -0.00411384646, -0.00855396315, 0.00176789, 0.0238744933, 0.00125543238, 0.0273357984, -0.0132281436, -0.00622751191, -0.00317404512, -0.0171079263, 0.00300027058, 0.0314922035, -0.0128876874, 0.00430180645, 0.0116535332, -0.0226119682, 0.0197039042, 0.0186967216, -0.00617076922, 0.0207252745, 0.0117457407, -0.0196329765, 0.0185974222, 0.0176327955, 0.00792979356, -0.0419612303, 0.00546857854, 0.00506783323, -0.0160298143, -0.0108449496, 0.0136395283, -0.00583031308, -0.00426634215, 0.0032502932, 0.00279989792, 0.0284280963, 0.00172267307, -0.0104761226, 0.035804648, 0.0276478846, 0.0188811366, 0.019008806, 0.00919941161, 0.000746521226, -0.00148240326, 0.00465999497, -0.0108733214, -0.0027307428, 0.0147105465, 0.0102491518, 0.0156184305, 0.00800781418, 0.0238177516, -0.0219452418, 0.0131075652, -0.0201436616, 0.00880930573, -0.0223849975, -0.00228212075, -0.00547921751, -0.0223708116, 0.0159447, -0.00287969247, 0.0008334085, -0.0110435495, 0.011142849, -0.00662471121, -0.00167125009, -0.00518131861, -0.011873411, 0.00328575727, 0.0187109075, 0.0251795761, -0.0302722342, -0.00509975059, 0.0121500324, 0.00977393147, 0.00121376198, -0.0224842969, -0.0127174594, -0.0164837558, 0.00617076922, 0.0249526054, -0.0212359577, -0.00293998141, 0.00900790468, 0.00407483568, -0.0100009022, -0.00905046146, 0.00926324725, 0.0153772738, 0.00846175663, -0.00650413288, -0.00669209287, 0.00495434739, 0.0248533059, 0.0102420589, 0.00160741445, -0.00129355642, -0.00385141117, 0.00927743223, 0.0202145893, 0.0150368176, -0.0160581861, -0.00865326263, -0.00369182229, -0.0201011039, 0.00348258368, 0.0137884775, -0.00933417492, 0.00424861, -0.0298182927, 0.00341165531, 0.00800072215, 0.00469900528, -0.013880685, -0.00665662903, 0.0236475226, 0.00304814731, -0.0157461017, 0.0254774746, 0.00209948025, 0.0239454228, 0.0176327955, 0.0042379708, -0.00652186479, -0.0359748751, 0.0310950037, -0.00108254445, -0.0146538038, 0.00411384646, 0.00973137468, -0.00831280649, 0.0610551536, 0.0113414489, 0.00762480125, -0.0118521331, -0.023917051, 0.00488696573, 0.0178030245, -0.000582942681, 0.00400745356, 0.000434436341, -0.00817095, -0.0122847958, 0.010603793, -0.028470654, -0.0158028435, 0.0129869869, 0.000996543793, -0.0319745168, 0.00587996282, 0.00187782897, 0.0243709926, -0.00601827353, -0.014058006, -0.00988741685, 0.0182995237, -0.0186825357, -0.0118308542, -0.0107882069, 0.00896534789, 0.0422733165, 0.00951858889, -0.00278748549, -0.00231581181, -0.00367409037, 0.0230375398, -0.00899371877, -0.00449685939, -0.00139817572, -0.0270095281, -0.0160014443, -0.00508911163, 0.0187392794, 0.00673819659, -0.000291249686, 0.00726306671, 0.0353223346, 0.0024558953, -0.00363862608, -0.0106179789, -0.0149517031, -0.00895116199, 0.0126252519, -0.0102633368, 0.0186825357, 0.008022, -0.00683040358, 0.00503591541, -0.0222147703, -0.00609984109, 0.0063906475, 0.00189556112, 0.00215799618, -0.00465999497, 0.000153271802, -0.0331093706, -0.0189236924, 0.000146068138, -0.0114762122, 0.0109016923, 0.0142920697, 0.00313503458, 0.00107545161, -0.0118095763, -0.00908592623, 0.00926324725, 0.00685168197, 0.0101498514, 0.0242007654, -0.0138310352, 0.00347194448, -0.00144782569, 0.00508201867, -0.00451459177, 0.0171079263, -0.00845466368, 0.000398972159, 0.00472028414, 0.00595443789, 0.00471319119, 0.0299885198, 0.0244561061, 0.00682331063, -0.0162993427, -0.0203138888, 0.00370246172, -0.00310134352, 0.00429471349, -0.0222573262, -0.0226545259, 0.0272506848, -0.00305701327, 0.00385850412, -0.00318468432, -0.0226970837, 0.0111783138, 0.023732638, 0.0208955016, -0.0259597879, 0.00939801056, -0.000376363751, -0.011880504, 0.0152921593, -0.0111215701, -0.0155758727, -0.0378757566, -0.0302154906, -0.00428762101, 0.00379466848, 0.000439755968, -0.0185264945, -0.0439756, -0.0144410189, -0.00997253, -0.0191506632, 0.0163560845, 0.0142282341, -0.0291657522, -0.00609984109, -0.00474865548, 0.0205124877, -0.00625588326, 0.0224275552, -0.0190797355, 0.0133487219, -0.00322014862, -0.00550758885, 0.0270662718, -0.0245837774, 0.0130366366, -0.00426279567, 0.0315205753, 0.03691113, -0.0130224517, -0.00182640587, -0.000742974808, -0.0282294974, 0.00290274411, 0.00640837941, -0.00353400665, -0.00771700824, -0.00330703589, -0.00851849932, 0.00229807966, 0.00758933695, -0.000488962571, 0.00256760744, -0.0040925676, -0.0134409284, -0.00768154394, 0.0100292731, -0.0265697725, 0.00758933695, -0.00479121227, -0.0147105465, -0.0122138681, -0.00490824413, 0.0133061651, 0.00868163444, -0.0142991617, 0.00900081173, 0.0119727114, 0.0039968146, -0.0371097289, -0.00325738592, -0.00131838128, 0.0269527864, 0.0202429611, -0.0185123086, 0.00473801605, 0.0198173895, -0.0076673585, 0.00875256211, 0.00844757073, -0.0238035657, -0.0208813157, 0.0055501461, 0.00508556515, -0.0169660691, -0.00352691393, -0.00807165, 0.00931289699, 0.0177746527, 0.0140296342, -0.00969591, -0.014235327, -0.00498626521, 0.0181009229, -0.00206401595, -0.0212643296, 0.00360138877, -0.0197039042, 0.018256966, -0.0209522452, -0.0139019629, 0.00388332899, -0.0317759141, 0.0210657306, -0.0229098685, 0.0147814751, 0.000983244739, -0.0138097564, -0.0076673585, 0.000859563355, 0.00270414469, 0.0200018045, 0.0315205753, -0.0102846157, 0.000146289793, -0.00269882497, 0.0165121276, 0.0116038835, -0.0108520426, -0.0106392577, 0.0101002017, 0.0040925676, 0.00453232368, 0.0161149297, 0.00174040522, -0.0174200106, 0.00498271873, -0.00846884865, 0.00309779728, 0.0155049451, -0.00833408535, 0.0212075859, 0.00184945762, 0.0177604668, 0.00618495513, -0.00144161936, -0.00838373508, -0.0202429611, 0.00104353379, -0.0147247324, -0.000219102207, 0.00775247253, 0.0147672892, 0.0236758944, 0.0112776132, -0.00900790468, -2.02810843e-05, -0.00452168426, -0.0192499626, -0.00616367674, 0.0160014443, -0.00667081447, -0.00481603714, 0.0139303347, 0.0241723936, -0.00586577738, -0.0047663874, -0.00606083032, 0.0111995917, 0.00312971487, -0.0249667913, 0.00667081447, 0.00630553346, -0.01204364, 0.0188243929, 0.00455360208, 0.00648285449, 0.00410320703, 0.00908592623, 0.0232645106, 0.0242575072, -0.00220941915, 0.0063551832, -0.0241298359, 0.00353932637, -0.0191648491, -0.00988741685, 0.00125188602, 0.0104193799, 0.000922069, -0.0104690297, -0.00704318844, -0.013157215, 0.00054836506, 0.00351627474, 0.006667268, -0.0038159471, 0.0324852, 0.0116748121, -0.0192074068, -0.0172355976, 0.0123557243, 0.0190797355, 0.000363951258, 0.0091001112, 0.00745457318, -0.00536573213, 0.00445075613, 0.00775247253, 0.0103626372, 0.00160386809, -0.00644739, 0.0237610079, 0.0467276201, 0.012412467, -0.0156893581, 0.0418477468, 0.0173632689, 0.00920650456, 0.0142566049, 0.0134551143, 0.00603600545, 0.00791560765, -0.0196755342, 0.0161149297, -0.00720632402, -0.00595798437, 0.0127954809, -0.00704673491, 0.00250731828, -0.0140012633, 0.00181576668, -0.00758224446, 0.000496055407, 0.0165546853, 0.00118627725, -0.00425924966, -0.0187818352, -0.00520969, -0.00717795221, 0.00406774273, -0.0198315755, 0.0313219726, 0.00519905053, -0.00225197617, -0.0130153587, 0.00750422291, 0.00194875733, 0.00952568185, -0.0137955705, -0.00770991528, -0.00863907672, 0.0314922035, -0.0286834389, -0.013327443, -0.0232786965, -0.00871709827, 0.000279945467, -0.00376629713, -0.0276904404, -0.00325383968, 0.0143700903, 0.0108733214, 0.0438621119, 0.0207394585, 0.0191364773, -0.0139728915, 0.0307545476, 0.00996543746, -0.0166965406, 0.0119656185, -0.007029003, 0.019349264, 0.00729143806, -0.011873411, 0.000664067, 0.0194911193, 0.00843338482, 0.00990160275, -0.00783049315, 0.00707865274, -0.00580194173, 0.00428762101, -0.00675592851, 0.00898662582, 0.00888732634, 0.00242220424, 0.00321128266, -0.033052627, -0.00580548821, 0.00143718638, -0.0114123765, 0.00392588601, 0.0249667913, 0.0107172783, 0.014412648, 0.0263144299, -0.00858942699, -0.0174483825, 0.0073198094, -0.0298750345, -8.5889842e-05, 0.00387268979, -0.0151928598, -0.0108378567, 0.0105328653, -0.0020462838, -0.0127671091, 0.0293359794, 0.0189236924, 0.0219736136, -0.0135331359, -0.0126394378, -0.00259065931, -0.00315808621, 0.0116960909, 0.0180441812, 0.025392361, 0.00956114568, 0.00326447887, 0.0258463025, 0.0235198513, -0.0143133476, -0.00307474541, 0.00941219646, -0.000687562046, -0.00657860748, 0.0032609324, -0.00125543238, -0.00518131861, 0.0220303554, -0.00600408763, -0.0182427801, 0.0223849975, 0.0232645106, 0.00493661547, 0.0100718308, -0.00815676432, 0.00457133446, 0.0324284583, -0.000751840882, -0.0183704514, -0.0149375172, 0.0106250718, 0.014965889, -0.0282720532, -0.00768863689, -0.00663535, 0.011497491, 0.00630908, 0.00990160275, 0.0290522669, 0.00588705577, -0.000350652204, -0.0143913692, 0.00640128646, -0.00812839251, -0.0132352365, 0.00926324725, -0.0160581861, -0.00488341926, -0.00443657, -0.0250660907, 0.00963207427, -0.012965709, 0.00785886496, 0.0152070457, -0.019902505, -0.00182463264, 0.0189095065, -0.0176044255, 0.00723469537, 0.0216757134, 0.000382348313, 0.00932708289, -0.00125454576, -0.0105754221, -0.00381240062, 0.0185832363, 0.0068836, 0.0202997029, -0.00906464737, -0.0138381273, 0.00714248838, 0.000120356599, 0.00671337172, 0.00406419626, -0.0291657522, 0.00209948025, 0.00653959718, -0.0198883191, -0.0349535085, 0.00585868442, -0.00345066586, 0.00697580632, 0.0177888386, 0.0191648491, 0.00236014207, 0.000525756623, 0.0182002224, 0.0350386202, -0.00875965506, 0.0107314643, -0.00318113808, -0.0167107265, 0.00155333162, 0.0238461234, -0.0112279635, -8.64993781e-05, -0.00108520431, 0.000645891589, -0.00528061809, 0.00429826, -0.00387623627, -0.000285486749, -0.0310382601, -0.026300244, -0.0213778149, -0.00739783049, 0.0117102759, -0.00986613799, -0.00312439539, 0.0214203727, -0.00588350929, 0.00602182, 0.0150793744, 0.0162851568, -0.00369891524, -0.0253356192, 0.00795107149, 0.0176611673, 0.0112634273, -0.00179537467, 0.026115831, 0.0071389419, -0.0071602203, 0.00311375596, -0.00488341926, 0.0240021646, -0.0106605357, 0.0113414489, 0.0101143876, 0.00975974556, -0.0107243713, 0.010412287, 0.0085326843, 0.0164412, 0.0216473434, -0.0146396188, -0.00146201137, -0.0119514326, 0.0101640373, 0.00263853581, 0.018625794, 0.0033229948, -0.000328043767, -0.0032148289, -0.000880841864, 0.00286018709, 0.0101924092, 0.0148098469, 0.0435783975, 0.00183172547, 0.0197464619, 0.00237964722, 0.00955405366, -0.000298120867, -0.00327689131, -0.000237831744, 0.00614949083, 0.0220445413, -0.00369536877, 0.0160156284, 0.0119017828, 0.0124337459, -0.00692615658, -0.00156485743, 0.0190939214, 0.0103413584, 0.00663889665, 0.0179590676, 0.0278890412, -0.00753968721, -0.0214203727, -0.0212075859, 0.0018175398, 0.00774537958, -0.00184591115, -0.0136111565, -0.00218636752, -0.0356344208, 0.0140367271, -0.0247681923, 0.00475220149, -0.0362018459, 0.0149942599, -0.00300913677, 0.0220729131, 0.00814257842, -0.0238744933, 0.00488341926, 0.00525579322, 0.00594379846, 0.00785886496, 0.015150303, -0.0103129866, -0.0119301537, -0.00351272826, 0.0321447439, 0.0186541658, 0.00981648825, 0.0103910081, 0.000194942229, 0.00347194448, 0.02408728, 0.00402873242, -0.00828443561, -0.0109229712, -0.0164412, 0.00873128418, 0.0141927693, -0.0121500324, 0.000267976313, -0.00544375367, -0.010589608, 0.00600408763, 0.0363720767, 0.0146396188, -0.0229098685, 0.0113343559, -0.00411739247, 0.000707953935, 0.00466708746, 0.00822769292, -0.0223708116, 0.0108520426, -0.0284848381, 0.00264208228, 0.00822769292, -0.0153914597, -0.00499335816, 0.00958242454, -0.0153205311, 0.00135650532, -0.00522742188, -0.0129373372, 0.0108733214, -0.0108449496, 0.00137335085, 0.00903627649, 0.0126749026, 0.0130579155, 0.0161007438, 0.00640837941, -0.0086177988, 0.00303573487, -0.000619736733, -0.0106392577, 0.0256193317, 0.0119727114, -0.0221012849, -0.0240447223, 0.0141431196, -0.00523451483, -0.00141324801, -0.01022078, -0.0154340165, -0.0184697509, 0.00237964722, 0.00620978, 0.0150084458, -0.0120932898, 0.000569643569, 0.00402163947, -0.00851849932, -0.00992288068, 0.0121429395, -0.0235198513, -0.0126323448, 0.0271088276, 0.0168809555, -0.0044543026, -0.012596881, -0.00914266892, -0.00387978251, -0.00100186339, -0.00694388896, 0.00915685389, -0.00118450401, -0.0131146582, -0.0101711303, -1.44211808e-05, 0.00444366317, -0.00835536327, -0.00625233725, 0.015703544, 0.0294778366, -0.000753170752, 4.20583165e-05, -0.0334498249, -0.00579484878, -0.00598280923, -0.0146679897, -0.0088944193, -0.00245944178, 0.0137246419, 0.0213778149, -0.0234772954, 0.00413157837, 0.0136466213, -0.00455714855, -0.00155510486, -0.0191648491, -0.00646157563, 0.00645448314, -0.00574519904, 0.0150793744, -0.0202997029, 0.0066318037, 0.00836245622, -0.00527352514, 0.000650767935, 0.00455360208, -0.00884477, -0.00137955707, 0.0113769127, 0.0079936292, 0.00279812468, -0.00767445099, -0.0133558149, 0.0282436833, -0.0163560845, -0.000610870717, -0.00886604842, 0.0166965406, 0.0225126687, -0.0399468653, 0.00647576153, 0.0112705203, 0.00163223944, 0.0184981227, 0.0182711519, 0.00478766579, 0.0128735015, -0.00644384371, -0.00241511152, 0.0043443637, 0.0149800749, 0.0209948011, -0.0182853378, 0.00181576668, -0.0100860158, -0.0129444301, -0.0159872584, 0.0133629078, 0.00127405114, -0.00961079635, 0.02411565, 0.00263498956, -0.00258533959, 0.00232999749, -0.0188953206, -0.00997253, -0.00195762329, 0.0216615293, 0.00373083306, -0.0174909402, -0.0107882069, 0.00651831832, 0.00137246423, 0.00066096388, 0.027747184, 0.0291090086, -0.00737655209, -0.0314638317, 0.025392361, 0.0198032055, 0.0384148136, -0.00752550131, 0.00645093666, -0.00245234882, -0.00485150144, 0.00122174143, -0.0136678992, -0.00330880913, 0.00285841385, 0.0279315971, -0.00762480125, -0.00786595792, 0.00251263799, 0.0115896976, 0.018625794, 0.0306126904, -0.0114123765, 0.0032963967, -0.00415285677, 0.00297189923, -0.0112137776, 0.0120365471, 0.0089795338, 0.0141502125, -0.0103413584, -0.00671337172, 0.0193776339, -0.0278181117, -0.0436067693, -0.00463517, -0.0209522452, -0.00498271873, 0.00178828184, 0.0198457614, 0.0238461234, 0.00664953608, 0.0125188595, 0.0196471624, 0.00235304912, 0.00916394684, 0.00892279111, -0.00516003976, -0.0196329765, -0.00991578773, 0.00648994697, -0.0231510252, -0.00586577738, 0.0123202605, 0.0111641278, -0.00986613799, -0.000168676561, -0.0127671091, 0.021363629, -0.0183704514, -0.00417413516, 0.0279315971, 0.000245146221, -0.00297721894, 0.0251228344, -0.0186541658, -0.0111712208, 0.0180299953, 0.00180601398, 0.00667790743, -0.00605373736, -0.00130330911, 0.0101214806, 0.0118379472, 0.00885895547, 0.0020055, 0.00315276673, 0.0170369986, 0.00151875406, 0.00506074028, 0.0208813157, 0.00782340113, -0.0150084458, 0.00435145618, -0.0192925204, 0.0244277362, 0.00128469034, 0.0050430079, -0.0124337459, -0.00945475325, 0.0196187906, 0.00833408535, -0.00686586741, 0.0223991834, 0.0200159904, 0.00660343235, 0.00207820162, 0.00270237145, -0.0126890875, 0.026669072, 0.0400887243, 0.0109513421, 0.00226616184, -0.00893697608, -0.00965335313, 0.00243639, -0.0031669524, 0.0130650084, -0.000732335553, 0.0107456502, -0.0179165099, -0.00278748549, 0.00688714627, 0.0020817481, 0.0148807745, -0.0276336987, -0.00357124419, -0.000767356425, 0.00364571903, 0.00649704, 0.0276478846, 0.0215054862, 0.00842629187, -0.0262151305, -0.00603245897, -0.0174200106, 0.0266832579, -0.0268960427, 0.00469900528, -0.0117315548, 0.00989451, -0.00132724736, -0.00251973094, 0.00915685389, 0.000798387628, 0.0159588866, -0.00674528908, 0.00198599463, 0.0170937404, -0.00940510351, 0.0178030245, -0.00770991528, -0.0453657955, -0.00734818075, 0.00968172401, 0.00452877721, 0.00449331291, -0.00558915688, 0.00988741685, 0.00972428173, 0.00285486737, 0.0181576665, 0.0082560638, -0.0256618895, -0.0137033639, 0.0288111102, -0.00431599235, -0.0124904886, 0.0015107746, -0.000984131359, -0.0172214117, 0.00968172401, 0.00877384096, 0.0266265161, -0.0213778149, -0.00927034, 0.0130437296, 0.00486923335, 0.00484086201, 0.0141360266, -0.0300736353, -0.0122918887, 0.0135331359, 0.00966044609, -0.00344889262, -0.0316908024, -0.011504584, -0.00714603486, 0.0225126687, -0.00546857854, 0.0218033846, -0.00780921523, -0.0110577354, 0.00469191279, 0.00746875862, -0.0144835757, -0.00509620458, 0.0115967905, 0.000519993715, 0.0281443819, 0.00935545377, 0.0178030245, -0.00358188339, -0.0160298143, 0.00116765848, -0.0232219528, -0.00121287536, -0.00453941664, -0.00140083558, -0.0122989817, 0.00395071087, 0.031605687, 0.0114336554, -0.00331235561, 0.00704318844, 0.00816385727, 0.0131784938, -0.00384786492, 0.0172072258, 0.00905046146, 0.014611247, 0.0167816561, -0.00713184895, 0.00104264729, -0.00741910888, -0.000114482842, 0.00267577334, 0.00963916723, 0.000152939334, 0.00218104781, -0.0089086052, 0.018625794, 0.0152496025, -0.0120081753, 0.0218317565, -0.00687650684, -0.00481249066, 0.00953986775, 0.00367409037, -0.00680912472, 0.00464226259, -0.014795661, 0.014412648, 0.0115400478, -0.0135827856, 0.0132777933, 0.00148063, 0.0117244618, 0.0130011728, -0.0380459838, 0.00907174, 0.0207962021, -0.000938027864, 0.00400390709, 0.00859652, 0.0171221122, 0.00149392907, 0.0170795545, 0.0187534653, -0.00024691943, -0.0129018733, 0.0362585895, 0.0217466429, 0.0122564249, 0.0132777933, 0.00536573213, 0.0207110886, -0.00946893916, -0.0121287536, 0.00073854177, -0.0182853378, 0.0126536237, -0.00900081173, -0.0154765733, -0.0082560638, -0.00902209058, 0.00296657975, -0.00843338482, 0.0138594061, -0.0135331359, 0.0150793744, -0.00092561543, -0.00344889262, 0.0155616878, 0.0111570349, 0.0125401383, -0.00470255176, 0.00590478815, -0.0243568067, 0.030130377, 0.00761061581, 0.0199592467, -0.00270237145, 0.00770282233, -0.00834827, 0.00824897084, -0.0102349659, -0.0157319158, -0.00584804546, 0.0121500324, -0.00125365914, 0.00854687, -0.00267931959, -0.0105470503, 0.00842629187, 0.0246972628, -0.00228921347, -0.00815676432, -0.00247540069, -0.00369536877, 0.00629134756, -0.0166397989, 0.0101285735, -0.000214558357, 0.0108165788, -0.00734818075, 0.0018902414, 0.0276904404, 0.00627716212, 0.0185832363, -0.00826315675, 0.0275060274, -0.00823478494, 0.0203422606, -0.0245695915, 0.000467240723, 0.00337087153, -0.0267825574, 0.0234631095, -0.00785177201, 0.0178172104, -0.00922069, 0.0178739522, 0.00875965506, 0.00635163672, -0.00980230235, -0.0110931993, -0.0116606262, 0.00215090322, 0.0298466645, 0.00897244085, -0.0128593156, 0.0149517031, 0.0265130308, 0.000657417462, -0.00517422566, -0.0117386477, 0.00703609549, -0.0008515839, 0.0144410189, 0.00371664739, 0.0149517031, 0.00944766, 0.00822769292, -0.00905046146, -0.00903627649, -0.000716819952, 0.0155475019, 0.0201862175, 0.00581612764, -0.0181009229, 0.0178739522, 0.00776665797, -0.00758933695, 0.00990869477, -0.00365635823, 0.0123840962, 0.0035251407, -0.00176079711, 0.00115613267, 0.00418477459, 0.00892279111, 0.0304140914, 0.0122138681, 0.0255484041, 0.0157602876, 0.0195620488, 0.00541892834, 0.0130721014, 0.00273251603, 0.0165830553, -0.00341874803, -0.0105257723, -0.0238035657, 0.00393652543, -0.0260732733, 0.0220161695, -0.0106889075, 0.0237751938, -0.00836954918, -0.0203564465, 0.0335633121, 0.0231793951, 0.0159163289, -0.0125259524, 0.00636227615, -0.000797501, -0.0123840962, -0.000607324298, -0.0277897399, 0.0162142292, -0.0127316453, 0.00260307174, -0.0315205753, -0.0180583671, 0.00764607964, 0.00158790918, 0.0207678303, 0.0148949604, 0.00669563934, -0.00902918354, 0.0119656185, -0.0270379, -0.00927034, -0.0115826055, -0.00498271873, 0.00322192186, -0.000938914483, -0.00260484498, -0.00411384646, -0.00406419626, 0.000902120373, -0.00295416708, -0.02483912, 0.0174058247, -0.00930580404, 0.010043459, 0.00178650871, 0.00880930573, 0.0232077669, -0.00590478815, 0.00304460083, 0.0108591355, -0.000162137847, -0.0173348971, -0.0258037467, 0.00722050946, 0.0253639892, -0.0172923394, -0.0138523132, -0.000181864816, 0.00334427319, 0.00230162614, -0.018072553, 0.00867454149, 0.00352159422, -0.0183846373, -0.0038053079, 0.0264988448, -0.00983067416, 0.00515649328, 0.000205913966, -0.0192925204, -0.00772410119, 0.0122918887, 0.0116180694, 0.00760352286, -0.00907883327, 0.00516003976, -0.0195904188, 0.0117315548, -0.0220303554, -0.0196897201, 0.0237184521, -0.0334214531, 0.0295913219, -0.00312971487, 0.00341520179, -0.00322724157, 0.00374147226, 0.00207288191, -0.0067843, -0.0124337459, 0.0142991617, 0.012057825, -0.000463694305, 0.00700417813, -0.0211508442, -0.0122564249, -0.00972428173, 0.00465290202, -0.0128380377, 0.00517067919, -0.0141502125, 0.00186187, -0.0179306958, -0.0132636074, 0.00724533433, -0.00934836082, 0.00293998141, -0.0142707909, -0.0187534653, -0.00192570558, 0.0117882974, -0.0307829194, -0.00716731325, 0.0135898786, -0.0135331359, 0.00588705577, 0.00871000532, 0.027945783, -0.00560334232, -0.0157461017, -0.0106108859, 0.0119868973, 0.0150935603, 0.0108236717, -0.00651477184, 0.0088944193, 0.00451104529, -0.00584449898, -0.0271088276, -0.0291373804, 0.0043088994, -0.00599699467, -0.0174625684, -0.0110293636, 0.00503236894, 0.0105754221, -0.00500754407, 0.000354863558, -0.0247965623, -0.0114336554, -0.00844047777, 0.000552798097, 0.00810002163, -0.0031882308, 0.0267967433, 0.0066814539, 0.000881728483, -0.00798653625, -0.00262080389, 0.0435783975, 0.0251795761, 0.0126394378, -0.0135827856, -0.00210479973, -0.00360493502, 0.00974556, 0.00956823863, -0.00400390709, -0.0182144083, -0.0110009927, -0.00605019135, -0.00672755716, 0.0174909402, -0.00301977596, 0.00379821495, -0.0186967216, -0.0120294541, -0.0062239659, -0.0190513637, -0.00169075537, -0.00602182, 0.0104335649, 0.0402305797, 0.0194060057, 0.0150793744, -0.0114194695, -0.00858942699, -0.000260883447, -0.0107882069, 0.0115684196, -0.00359961553, -0.0311801173, 0.0211366583, 0.00802909303, 0.00117120496, 0.00737655209, 0.00195585028, -0.0151928598, -0.0174909402, -0.0229240544, -0.0151077453, -0.00843338482, -0.000899017265, -3.86504289e-05, -0.00536218565, 0.00479830522, 0.0108945994, 0.0304424632, 0.00666372152, -0.0178313963, 0.00392233953, -0.0115826055, -0.0085326843, 0.00910720415, 0.0229666103, 0.00319000403, -1.55017315e-05, -0.0260732733, -0.0125330454, -0.00595089141, 0.0123840962, -0.00241511152, 0.0210515447, -0.00928452518, -0.00402518595, 0.0103271725, 0.00417058915, -0.0128096659, -0.00790142175, -0.00442238478, 0.00512812193, -0.0111570349, -0.0111144781, 0.00491533708, 0.00178739522, -0.0129869869, -0.00971009582, -0.00549695, -0.00921359751, 0.000210346989, -0.0034896764, 0.00971009582, -0.00546503207, -0.00214913, -0.00596153084, -0.00519550405, 0.000578952953, 0.00181488006, 0.00205160351, 0.00932708289, -0.0195904188, 0.00190620031, 0.00682331063, 0.00978811737, 0.00217750133, 0.00554659963, 0.0123131676, 0.00995834544, -0.00134763925, 0.0028034444, 0.0159447, -0.00428052805, -0.025193762, 0.0289245956, 0.0133841857, 0.00471319119, -0.00632326538, 0.0277329981, 0.00143541314, 0.00171646685, 0.00233709021, -0.0083411783, -0.00711411703, 0.00520614348, 0.020640159, -0.00625942973, 0.0216331575, -0.0158312153, -0.00286373356, -0.000440864242, 0.00322192186, -0.0281585678, 0.00126075197, 0.0138310352, -0.000206689743, -0.00115879253, 0.0146254329, 0.0241014641, 0.00146289787, 0.0139445206, 0.00652541127, 0.00323433429, -0.0192783345, -0.00662116474, -0.00113396754, 0.0160865579, 0.000883945, -0.00814257842, 0.00254810229, -0.0117599256, 0.0107314643, -0.000955759955, -0.022810569, -0.020285517, -0.0121571254, -0.00191683962, -0.0181009229, 0.00424506376, 0.00771700824, -0.00654314319, 0.0137672, -0.0141643984, 0.0107882069, 0.010603793, 0.00922069, 0.00203919108, -0.00630198698, -0.00961079635, -0.0079085147, -0.0281018261, 0.0250660907, -0.0085326843, 0.0343009681, 0.0208245739, -0.0134480214, -0.0196329765, -0.00873128418, -0.0125472313, -0.00923487544, 0.00736945914, 0.0182002224, -0.0168525837, -0.00828443561, 0.0129089663, -6.30043505e-05, -0.0029860849, -0.00317404512, 0.00365635823, 0.00978102442, 0.00384786492, 0.0285699535, -0.0196046047, 0.0126536237, -0.010582515, -0.0268676709, -0.00390460761, 0.00888732634, -0.00187605573, 0.00563526, -0.00405355729, 0.0156042445, 0.00479830522, 0.0110577354, -0.0138664991, 0.001209329, 0.0104548438, -0.010589608, 0.0224275552, 0.018980436, 0.00357833691, 0.0107598361, 0.0107243713, -0.00219700672]
|
23 Feb, 2023
|
How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?
23 Feb, 2023
In this article, we will see how to add background color for the text width instead of the entire element width using CSS.
The display: inline or display: inline-block property is used to set the background color of the text width.
Syntax:
display: inline;
display: inline-block;
Approach: We will create an element and then apply the display: inline or display: inline-block property value to set the background color for the text width. The inline value is used to display an element as an inline element and the inline-block element is used to display an element as an inline-level block container.
Example 1: The following code demonstrates the above approach with display: inline-block property value.
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content=
"width=device-width, initial-scale=1.0">
<title>
How to add Background-Color for
Text Width Instead of Entire
Element Width using CSS ?
</title>
<style>
body {
text-align: center;
}
h1 {
color: green;
}
h2 {
display: inline-block;
background-color: green;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h3>
How to add Background-Color for
Text Width Instead<br> of Entire
Element Width using CSS ?
</h3>
<h2>Web Technology</h2>
</body>
</html>
Output:
Example 2: The following code demonstrates the above approach with display: inline property value applied on the span elements.
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content=
"width=device-width, initial-scale=1.0">
<title>
How to add Background-Color for
Text Width Instead of Entire
Element Width using CSS ?
</title>
<style>
body {
text-align: center;
}
h1 {
color: green;
}
span {
display: inline;
background-color: green;
color: white;
padding: 10px;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h3>
How to add Background-Color for
Text Width Instead<br> of Entire
Element Width using CSS ?
</h3>
<p>
<span>Web Technology</span>
<span>HTML</span>
<span>CSS</span>
<span>JavaScript</span>
</p>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?
|
https://www.geeksforgeeks.org/how-to-add-background-color-for-text-width-instead-of-entire-element-width-using-css?ref=asr10
|
CSS
|
How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0137598105, 0.00579958968, -0.0197868347, 0.00524521712, 0.0795453489, 0.017597774, -0.00980102178, 0.0185928028, -0.0300498344, -0.0464535765, 0.00830137357, 0.00299929758, 0.0436959267, -0.0777258724, -0.00817344151, -0.0269510336, -0.0162047353, -0.000108442466, 0.0214925967, 0.0104051465, 0.00368160219, 0.00476191798, -0.0644777939, 0.0227719191, -0.0469653048, 0.00910450332, -0.0156645775, 0.0331770629, -0.01378824, 0.0204122812, 0.00492538698, 0.00601281, 0.00592396827, -0.0270931814, -0.048784785, -0.034939684, 0.00109986088, 0.0375267565, -0.0359347127, 0.0128003201, 0.0317271687, 0.0175409149, 0.0066382559, -0.000851548219, 0.000597905, 0.00800997205, -0.00404052297, -0.042558752, 0.00400498603, -0.0933620185, 0.0202701353, -0.000262971589, 0.0412510037, 0.0126155289, 0.0143923638, 0.00580669707, -0.0208955798, 0.0215352401, 0.00563967461, 0.0238238052, 0.00612652721, -0.0517982952, -0.000707624538, -0.00708246464, -0.00487918919, 0.0116489306, -0.0313860141, 0.00300818169, -0.00346660521, 0.0256006401, -0.0268231016, 0.00805972423, -0.00406539859, 0.0248756912, 0.00749824382, 0.00523810973, 0.0150959911, 0.0125018116, -0.0342858098, 0.0281877108, 0.0162758101, -0.0280455649, -0.0628857464, 0.0142715396, -0.0296233948, -0.000641881663, 0.0437527858, -0.036446441, 0.0304478463, -0.0103127509, -0.036645446, 0.000402231031, 0.064022921, -0.0520825908, -0.0135394828, 0.0280313492, 0.00212687161, 0.00592752174, -0.034740679, 0.0249183346, -0.01090266, 0.0401991159, 0.00275587128, -0.0346269608, 0.0376120433, -0.00756931724, 0.0191898178, 0.0188344512, 0.0285146497, -0.0329496302, 0.000338042883, 0.0100853154, -0.056204848, 0.0391188, -0.0490690768, 0.0288558, 0.0229993537, -0.0485289209, 0.0441792272, 0.0195736159, -0.00303305755, -0.0223454777, 0.015039132, 0.0652169511, -0.0416205861, 0.049182795, -0.0150249172, -0.0247904025, 0.0115352133, 0.00202026148, 0.00862120371, 0.0209808685, -0.00389837613, -0.00444208784, 0.0523668826, 0.00810236763, 0.0221038274, -0.0141222849, -0.00714643067, 0.00310413097, -0.0222317595, -0.0196446888, 0.000701849873, 0.0151528493, -0.0188913103, 0.0433547758, 0.0202985629, 0.0163610969, -0.0399716832, -0.00632908661, -0.0263682324, -0.0452879705, -0.00917557627, 0.0254300628, 0.0233831499, -0.0200426988, -0.0242218152, 0.0168443955, 0.00248046173, -0.00676974142, 0.0268515311, -0.0224307664, -0.0193603951, 0.022587128, 0.0172992665, 0.0136532011, 0.0320967473, 0.023838019, -0.0524806, 0.0403128341, -0.0183653664, 0.0121748736, 0.0128785009, 0.0256717131, -0.0466525815, -0.00788204, 0.0174982715, -0.0466241539, 0.0284720045, 0.00137793564, -0.0413078628, 0.010895553, 0.0249894075, 0.0177257061, 0.0104620047, 0.0228714217, -0.00325693865, 0.0367875919, -0.0305899922, -0.0259560067, -0.0275338367, 0.00858566724, 0.0369297415, 0.026325589, 0.0119190095, -0.0235252958, -0.0542716496, 0.00589553872, -0.00901210774, -0.0164037421, -0.00620826194, -0.00653164554, -0.0269083902, -0.00504976511, 0.0388913676, 0.0192182474, -0.0218053199, -0.00583157269, 0.0242644604, -0.0190334581, -0.052992329, 0.0101919258, -0.014513189, 0.00305793318, -0.028102424, -0.00301706605, -0.0119900834, 0.00907607377, -0.0371287465, -0.0265245941, 0.0145700471, 0.0247193296, -0.0196446888, 0.000970152, -0.050888557, -0.00958069507, 0.00217662286, -0.00023920642, 1.38190571e-05, -0.0215210263, -0.0386923589, 0.00958069507, 0.0123170204, 0.00671999, 0.0261692274, -0.010966626, -0.00668445369, -0.0115209986, 0.0225729123, 0.01982948, -0.018521728, 0.00194030395, -0.0255011376, -0.0283582881, 0.00483654486, 0.0121322302, 0.00901921466, -0.0224591959, 0.0162758101, 0.000936392054, -0.0120966928, -0.00256575, -0.00416490156, -0.0209240094, 0.0171002615, 0.0318977423, 0.00822319277, -0.060213387, 0.0286567956, 0.023639014, 0.0244066063, 0.0113788517, 0.0082658371, -0.0317840241, 0.0170576163, -0.0329496302, 0.0602702461, -0.0327790529, 0.0198436938, 0.0143781491, 0.0274201185, -0.0746555, 0.0215352401, -0.0242644604, -0.0246624704, 0.0467378683, -0.0104193613, -0.0174271986, 0.00330491317, 0.0343710966, -0.0125799924, -0.00384507119, 0.0246909, 0.0321251787, 0.00951672904, -0.0489269309, -0.0302488394, 0.0253732055, -0.000619227, -0.0586782023, -0.0196731184, -0.0439233631, 0.0177825652, 0.00110696827, 0.0187491644, 0.0146553358, -0.000872426, -0.037043456, -0.0316987373, -0.0189339537, 0.0295096766, -0.0177541357, 0.0148685556, -0.0279034171, -0.0242644604, 0.0186212324, 0.0102772145, 0.00773278624, 0.0201137736, -0.0138593139, 0.00812369, -0.00809526071, -0.0186496601, -0.0326937661, -0.00944565516, -0.00423952844, 0.0470505916, 0.0280882083, -0.0450605378, -0.00405473774, 0.00780385965, -0.035138689, -0.0282445699, 0.049580805, 0.000771590625, 0.0270363223, -0.0382943489, -0.0134044439, 0.0264819507, -0.0336319357, -0.077271007, 0.0107534062, 0.0314713, 0.00592041435, 0.0223881211, -0.0452026837, 0.00790336262, -0.0217058174, -0.00620115455, 0.00861409679, 0.00859988201, -0.0146695506, 0.00963755324, -0.0569440089, 0.0135821272, -0.0443498045, -0.0304762758, 0.0316703096, 0.021279376, 0.0127292462, 0.00138593139, 0.0383227803, 0.00545133, 0.0456859842, -0.0103980387, 0.00592396827, -0.019303536, 0.000926619512, -0.0291116666, 0.0107747279, 0.0290405918, -0.0027843006, -0.00922532752, -0.023639014, -0.00109986088, -0.0514002852, -0.017597774, 0.0129211443, 0.0199431963, -0.0124662751, -0.0636817664, -0.0176262036, -0.0519404411, 0.000741384458, -0.0284293611, 0.0147264088, 0.0297939703, -0.0498935282, -0.0181947909, 0.000382685859, -0.0430420525, 0.070845969, 0.0410804264, -0.00194385753, 0.0107534062, 0.00335644139, -0.0334045, -0.00149787194, 0.0240085963, -0.0409667082, -0.00230455515, 0.0203412082, -0.0110661285, -0.0258422885, 0.0225018393, 0.0024555861, -0.019374609, 0.00669156108, 0.0394883826, -0.0521394499, 0.0220469702, -0.0194456838, 0.0257996451, -0.0206397157, -0.0121464441, -0.0144136865, -0.0140938554, 0.012807427, 0.0273774751, -0.032636907, 0.0109950555, 0.0143852569, -0.0209240094, -0.0118052922, 0.0424734652, 0.0150533468, -0.00526298536, 0.017398769, 0.0290548075, 0.0192751065, 0.0253732055, -0.00640726741, 0.0139943529, -0.00734188268, 0.0147548383, -0.0404834114, 0.0199005529, 0.0124520604, 0.0247477591, 0.0018603463, -0.0583939068, 2.64720657e-05, 0.0170434024, -0.00351991015, -0.0112082753, -0.0149254147, 0.0175551306, 0.0166453905, -0.00248756912, -0.000352257543, -0.000594351324, 0.000280517823, 0.00413647201, -0.0297086816, -0.00909739546, 0.0204833541, -0.020810293, 0.00526298536, 0.00584934093, 0.0280171353, -0.0300214048, -0.0320114605, -0.0620897263, -0.0195594, 0.00280206883, -0.0269794632, 0.0288700163, -0.0195451863, 0.00195629545, 0.0214357376, -0.0245771818, -0.0183937959, -0.0396305285, 0.0315565914, 0.0120042982, -0.0108600156, -0.0295665357, 0.0046695224, -0.00345594413, -0.0100568868, -0.00142235646, 0.01234545, 0.0279460624, 0.00860698894, 0.0219616815, 0.0093390448, 0.00515992893, -0.0152097084, 0.0256575, -0.0323526114, 0.0432126299, 0.0152665665, -0.00348082, -0.0164606, 0.023440009, -0.0104762195, 0.00035647754, 0.00107765046, 0.018521728, -0.021933252, 0.0481593385, 0.056602858, -0.056602858, -0.0260270797, 0.00664891675, -0.00232587708, -0.0039196983, -0.0300498344, 0.00969441235, 0.0103127509, 0.000855101855, 0.0453164019, -0.0184364412, 0.0314713, 0.0743143484, 0.00193497341, -0.012736354, 0.0473348871, -0.00910450332, 0.00971573405, -0.00987920258, 0.00145433948, -0.00124111935, 0.023440009, -0.00991474, -0.0140796406, -0.0198152643, 0.0082658371, 0.0112153832, -0.0348259658, 0.00790336262, -0.00131041592, 0.0124591673, -0.00199716259, 0.000391570036, 0.00830848049, 0.0239943806, -0.0303909872, -0.0125942072, -0.00162402727, -0.0239943806, -0.0100924233, 0.00271678087, 0.0158777982, -0.00699362298, -0.0238664486, -0.00348792714, 0.0178536382, 0.0409382805, 0.00975127053, -0.0240654536, -0.00776832271, -0.0331486352, 0.00252488256, 0.00366383395, 0.0100142425, -0.0120895859, 0.00113273237, 0.0159773, 0.0414500087, 0.00887706783, 0.0361905769, 0.0272779725, 0.00685502961, 0.0139588164, -0.00117359951, -0.00779675227, -0.0199716259, 0.0030668173, 0.0164748151, 0.0136674149, -0.0118123991, 0.045572266, 0.0228856355, -0.0168301817, -0.0399716832, 5.083414e-05, 0.00100568868, -0.0425871834, 0.0108742304, 0.0140867485, -0.00805972423, -0.00953094289, -0.0161763057, -0.00614429545, 0.00925375707, 0.0484720618, -0.0195451863, -0.00454869773, 0.00671643671, -0.00822319277, -0.0456859842, 0.00134151045, -0.000947941502, -0.00355011644, -0.00475836452, -0.00150853302, 9.54493589e-05, -0.0543285087, 0.0106752254, 0.00943144, 0.0110803433, 0.00489340397, -0.00729213096, -0.00762617588, 0.0229424946, 0.00132285373, 0.00680883182, -0.00160625891, -0.035337694, 0.00112384814, 0.0331202075, 0.0174129829, -0.00258351816, 0.000309835625, -0.0462545715, 0.0251741987, 0.0143852569, 0.000733388646, -0.00536959572, -0.0428999066, -0.028273, 0.00630065706, 0.00302950386, 0.00415779417, -0.0449468195, 0.0193461794, 0.000249423232, 0.00242537982, -0.0321820378, -0.00646767952, -0.0195309706, 0.0413078628, -0.0285430793, 0.0330633484, -0.00703626685, -0.0228998512, -0.0345701, -0.0148969851, -0.0388060771, -0.0199431963, -0.0316134505, 0.0184933, 0.0201137736, 0.0332907811, 0.00234542228, 0.0147832679, 0.0114570325, -0.0256148539, -0.00415068679, -0.0208245069, 0.0290405918, 0.00527364668, 0.0755652413, -0.0046091103, 0.0296802521, -0.0147832679, 0.0250604823, 0.0141649293, 0.0190050285, 0.00540157873, -0.00729213096, -0.0083866613, -0.0017137574, -0.0176119898, 0.0562617071, 0.00498224562, 0.0152097084, 0.00333334249, 0.00335821835, 0.00656718249, -0.0263540186, 0.0251884144, 0.0277897, -0.00975837838, -0.02666674, 0.000896857528, -0.00133440318, 0.0380669162, 0.0108386939, -0.00960201677, -0.0100000277, 0.0197157618, 0.00882021, -0.00962333847, -0.0134684099, -0.00953805074, 0.0103340726, 0.0113930665, 0.000225769109, -0.0187775921, 0.0119261174, 0.0263682324, 0.0359915718, -0.00699006906, -0.00849327166, -0.0256575, 0.00821608491, 0.00326759974, 0.00913293194, 0.00789625477, 0.0123241283, 0.0349112563, -0.00586355571, 0.0136816297, 0.0215210263, 0.00910450332, -0.0216347445, 0.0203696378, 0.00938168913, -0.0124449525, 0.0263540186, -0.0285146497, -0.00616917154, 0.00264926115, 0.0382374898, -0.0108458009, -0.00995027646, -0.00449539255, -0.0164037421, 0.0168301817, 0.0315565914, 0.0122246249, 0.0369297415, 0.00729213096, -0.0214357376, -0.0123667717, -0.0122388396, -0.0223596934, 0.0145842619, -0.0293675307, -0.000565033581, 0.0272779725, -0.0505758338, -0.000480633898, -0.0147264088, -0.00584578747, 0.00544777652, -0.00211265683, 0.00013759367, -0.0139161721, -0.00899789296, 0.0312438682, -0.0159346573, -0.017924713, 0.00606256118, -0.000964821433, 0.0193319656, 0.000693409878, -0.0258280747, 0.00298330607, 0.0208245069, -0.00138948497, -0.0172281936, -0.0204691403, 0.0215778854, 0.000364695385, 0.0254584923, 0.0123312352, -0.00511728507, -0.00364251179, -0.0488416441, 0.0231415, -0.00774700101, 0.00549397385, 0.016744893, 0.0224591959, 0.00563612068, -0.00740584871, -0.00233653816, -0.00675908057, 0.0259133633, -0.00546554476, 0.0137598105, -0.00503199687, -0.0110021625, -0.0243781768, -0.0398863927, 0.0040192008, -0.000676529948, 0.0092395423, -0.00278785429, 0.0471358821, -0.0112651344, -0.00401209341, 0.00274876389, -0.0230988562, -0.0277186278, -0.0190618858, -0.00350036519, -0.00577826751, 0.0265245941, -0.0116915749, 0.00938168913, -0.00471216673, -0.0150533468, 0.00567876501, -0.013262297, 0.00445985608, 0.00573562365, 0.0192608926, 0.052395314, -0.00448117824, -0.0113859596, 0.000300285115, -0.0109310895, -0.00181237177, -0.0176546331, -0.00877045747, -0.0352808386, 0.0191613901, -0.0235963706, -0.00360342162, -0.0174129829, 0.016616961, -0.025813859, -0.0186354462, 0.000998581294, -0.00477613276, -0.00910450332, 0.00331379729, -0.00177683507, -0.0335182175, -0.0135181611, -0.00144989742, 0.0199147668, 0.00707180379, 0.00336532551, -0.0111372024, 0.0131414719, 0.00685858354, -0.00020344762, 0.0146695506, -0.0174271986, -0.0280455649, 0.016417956, 0.0357641354, 0.00488985, 0.00208245078, 0.0111798467, 0.00441721175, -0.0209382251, -0.0283582881, 0.033034917, -0.00416490156, 0.0132267606, 0.0100000277, 0.0286425818, 0.0287562981, 0.00648544822, 0.0131485797, -0.00205402123, -0.0155224316, -0.0139801381, -0.00342396111, 0.0149538442, -0.0301635526, 0.00576760666, 0.00798865, -0.0353945531, 0.0446340963, -0.000855990278, 0.00582091184, 0.0244776793, -0.013724274, 0.0111514172, -0.0178252086, -0.00641792826, 0.00729923835, -0.0295949653, 0.0262260847, -0.00415424025, 0.0121535519, -0.00795311388, 0.0185785871, 0.0139303869, -0.00492183305, -0.0167733226, -0.00229034037, -0.0158351548, -0.00995738339, 0.00697585428, 0.00240761158, 0.0139019573, 0.00815922674, -0.0165032446, 0.00227790256, 0.00350391865, -0.00932483, 0.0135821272, 0.0122601623, 0.010639688, -0.0155508602, -0.0301635526, -0.00150320248, 0.0140583189, -0.0242076013, -0.0174982715, 0.00782518182, -0.0346838199, 0.00579248229, 0.0151244197, 0.0386923589, -0.0485004894, 0.00306148687, 0.051087562, -0.0134541951, -0.00267769047, -0.00225302693, 0.00558281597, 0.000441099313, 0.0178394243, 0.000367360655, -0.00586355571, 0.0075906394, -0.00708957203, -0.0252168439, 0.0114570325, 0.0192040335, 0.0212367326, 0.0165032446, 0.00873492099, -0.0124236308, 0.00678751, 0.0135110542, 0.00274876389, -0.0143710421, 0.0309027154, 0.00778253749, -0.0112438127, 0.00546554476, -0.00545488345, 0.0140085677, 0.0295381062, -0.0388060771, 0.00176350877, -0.00187278411, 0.0114783542, -0.0399432518, -0.015039132, 0.0289268754, 0.0186923053, -0.00757642463, 0.0064143748, -0.0225160532, 0.000477968628, -0.0328643396, 0.0274911914, -0.0479034744, -0.0182658639, -0.0101634962, 0.0604408234, -0.0101421745, -0.0199858416, 0.0323526114, -0.0305899922, -0.0199289825, 0.023838019, 0.00429638708, 0.0187207349, 0.0138166696, 0.0142075736, -0.014250217, -0.0213504508, -0.00165867549, -0.0300214048, -0.025813859, 0.0132196527, 0.00101901486, 0.00219616806, 0.048784785, -0.0127718905, -0.0093390448, 0.00493249437, 0.0199147668, -0.0104691125, -0.00220682914, -0.01576408, -0.00542645436, -0.00502844341, 0.0121180154, 0.0034897041, 0.00321429456, 0.00940301083, 0.00627222797, -0.0248614755, 3.23994755e-05, -0.0268373173, 0.0416490138, -0.00947408471, 0.0175835602, -0.0155792898, 0.0170434024, 0.0117271114, 0.0164606, -0.012018512, 0.0676050186, 0.00102256855, -0.0236532278, 0.0312722959, 0.00861409679, 0.0297371112, -0.0418480188, -0.0125018116, -0.0357641354, 0.00192075875, 0.0344563872, -0.00212509464, -0.0190476719, -0.00806683116, 0.00689056655, -0.0209666546, 0.00439944351, 0.045174256, 0.0198010504, 0.0409667082, -0.0322388969, 0.0044456413, -0.0251031257, 0.0337456502, -0.036446441, 0.000331157644, 0.0265245941, -0.00627222797, 0.0203412082, -0.0121180154, -0.00858566724, 0.017071832, -0.0151244197, 0.0153092109, 0.0388060771, -0.0184790846, 0.0156219341, 0.0108244792, 0.017071832, 0.00915425457, -0.0310164336, -0.0160483737, 0.00190121355, -0.0115494281, 0.00926797185, 0.00318053481, -0.00608743681, 0.000516170578, -0.0271642543, -0.00481166923, -0.00573917711, -0.0400001109, -0.00809526071, -0.0224449802, 0.017597774, 0.0216773879, 0.00146411208, -0.00480100838, -0.00192786602, 0.00225125, -0.0127434609, -0.00447762432, 0.0128003201, -0.00494670868, 0.00198650151, 0.00769014237, 0.00324983126, -0.00746981474, 0.00686924439, -0.0116347158, -0.0137384888, -0.0015351855, 0.00249289954, 0.00539091742, -0.0146269063, 3.83685328e-05, -0.0107605131, -0.0179531407, -0.0204407107, 0.0116276089, 0.01982948, 0.0101848189, -0.00574983843, -0.00252843625, 0.0228856355, -0.00928929355, -0.00412936462, -0.0193888247, 0.00861409679, -0.00673420494, 0.019303536, -0.000165245656, -0.000200005, -0.0323526114, 0.00151830551, 0.00187100738, 0.0136389863, 0.00010100197, 0.00165334507, -0.0293106716, 0.019104531, 0.00622603, -0.00303128059, -0.0305331331, -0.00687990524, 0.00132551894, -0.00664180936, -0.0200569145, -0.0033724329, 0.0033919781, -0.0263113733, 0.0872781351, -0.0108529087, 0.0105615072, -0.00411159638, 0.00297975237, -0.0278181303, -0.0157072227, 0.0329780579, 0.0111656319, -0.0126866028, 0.0329496302, -0.00248579215, 0.00367449503, 0.0200569145, 0.00830848049, 0.0152239231, 0.00187100738, 0.00223170477, 0.0378963389, -0.0180952884, -0.00601636339, 0.0160768032, 0.0222459752, 0.00351813342, 0.0223170482, -0.00373490737, -0.012608422, -0.0102843214, -0.0131556867, 0.00367449503, 0.0222744048, -0.0194883272, 0.0269652493, 0.0242502447, 0.00748402951, 0.0325800478, -0.0275054071, 0.01378824, -0.0157356504, -0.00647834083, 0.00266702939, 0.00113006716, -0.0140298894, -0.0152665665, 0.0143994717, 0.000794245279, -0.0270221084, 0.000340041821, -0.0383227803, 0.0108031575, -0.00320541044, -0.0045025, -0.023838019, -0.0255579948, 0.00465175416, 0.00660271896, -0.00438167527, -0.0235537253, 0.00906185899, -0.0680598915, 0.0162615944, -0.0278607737, 0.00570364064, 0.0327221937, 0.033432927, -0.00597371953, -0.00810236763, 0.016346883, -0.00668089977, -0.00205757492, 0.0201137736, -0.00546199083, 0.0261123683, -0.0116347158, -0.0124947038, -0.0076759276, -0.00202203821, 0.0231699292, 0.0278465599, -0.0183937959, 0.0298224, 0.0138379913, 0.000431104621, 0.00916136149, -0.0100711016, 0.00317698112, -0.00305082579, 0.00824451447, -0.0272353273, 0.00814501196, -0.00486142095, -0.0327790529, -0.0193603951, 0.0110732364, 0.019175604, -0.0194598977, 0.0133546926, 0.014641121, 0.00952383596, -0.00162580411, -0.0139446016, 0.0162615944, 0.0207392182, 0.0123028057, -0.0214641672, -0.0264677349, -0.0122246249, -0.00787493307, -0.000533050508, 0.0086922776, -0.00759774679, 0.0468515866, -0.0147264088, 0.01090266, 0.00361230574, 0.00774700101, 0.0260555092, -0.00523810973, -0.00323028606, 0.00107587362, -0.00345594413, 0.0212367326, 0.00388416136, -0.00917557627, -0.017270837, -0.0160768032, -0.00867806282, -0.0168017522, 0.0321536064, -0.000117049007, 0.00238628942, 0.00551174255, 0.00203802972, 0.0506611206, -0.0116133941, 0.0161763057, 0.0152097084, 0.00142591016, 0.0050568725, -0.0135323759, 0.0305047035, 0.0110945581, -0.0123241283, -0.00625445927, 0.00254798145, 0.00754088815, -0.022914065, 0.0151954936, -0.00189410616, -0.00860698894, -0.0104264682, -0.0398011059, -0.0173561256, 0.0169012547, 0.0128856078, 0.00797443558, -0.00348259672, -0.0044456413, -0.0152097084, -0.0010669895, 0.0283298586, 0.0316987373, 0.000350258604, -0.00376333669, -0.00250889105, 0.0171144754, 0.00101723813, -0.0108529087, 0.00368160219, -0.0117200045, 0.0132338675, -0.0370718874, -0.0104477899, 0.0112509197, 0.019104531, 0.00894814171, 0.016417956, -0.0112224901, 0.0129211443, -5.6636618e-05, -0.00610520551, -0.0113077788, 0.0138735278, -0.00307570142, -0.037043456, 0.00114517019, -0.0188628808, -0.0225729123, 0.00332801207, 0.00820187107, -0.0113930665, 0.00329247536, 0.0147406235, 0.0407677032, -0.00261727814, 0.0106894402, 0.00651743123, -0.0116133941, 0.0076972493, -0.0057071941, 0.00135661359, 0.00951672904, 0.0096446611, 0.0269368198, 0.0127008166, 0.00521323411, -0.0111656319, 0.00909739546, 0.0197441913, -0.0061336346, -0.0123809865, -0.00988631, -0.0103838239, 0.0155935045, -0.0101919258, -0.000848438765, 0.0010634358, -0.000684969942, 0.0229709242, 0.01333337, 3.74245901e-05, 0.0088344235, 0.00939590391, -0.00903342944, -0.00664536329, 0.00424308237, 0.0208955798, 0.00899078511, 0.00455935858, 0.00333334249, 0.00282161403, 0.0255011376, 0.0213788804, -0.0147548383, -0.00404052297, -0.00417911587, 0.0178109948, -0.0178962834, -0.00452026865, 0.00434969226, -0.00786071829, 0.0148543408, -0.00523100235, 0.0178394243, 0.00577116, -4.68917897e-05, 0.0279460624, -0.0250320528, -0.00621892279, 0.0251884144, -0.0124947038, 0.0229567084, 0.0126439584, -0.0301351231, -0.00368515588, -0.0115920724, -0.0117910774, -0.0124520604, -0.00973705575, 0.000312945078, -0.00607322203, 0.0121677667, 0.00200782367, -0.0266809557, -0.0173276961, 0.0102558918, 0.01378824, 0.0021730694, -0.00354300905, -0.0154087134, 0.0155366454, 0.0296518244, 0.0333476402, 0.00382374902, -0.000899967, -0.00804550946, 0.00757642463, 0.02022749, -0.020156417, -0.00560769159, -0.0118692582, 0.00505331904, 0.0274343342, -0.00758353202, -0.020526, 0.0261265822, -0.00941011868, -0.0218906086, -0.0267378148, -0.003004628, -0.00636817701, 0.00135394838, 0.0330917761, -0.00184613164, -0.0208671503, 0.0246056113, -0.000843996648, 0.00471216673, -0.00320363371, 0.011293564, 0.0195878297, -0.0044847317, -0.00398721779, 0.00785361137, -0.000667201588, 0.00464464677, 0.00327293016, 0.000424441474, 0.00399077171, -0.00544066913, -0.0256717131, -0.035138689, 0.00235608337, -0.00615495676, 0.00549752777, -0.0187065192, -0.000554372557, 0.0170434024, 0.00895524863, 0.0182800796, -0.0251315553, -0.0042821723, -0.00806683116, -0.000833335624, 0.026197657, -0.00415779417, 0.0236532278, -0.000773367472, 0.0302204117, -0.0169012547, -0.00430349447, -0.0104264682, -0.016417956, 0.0162473805, -0.00599859515, 0.00194563437, 0.00557570858, -0.0143355057, 0.00415424025, 0.0109168747, -0.0474486053, 0.0243639629, -0.00829426572, 0.00747692212, 0.0231841449, -0.00154229288, 0.0118479365, 0.0204122812, -0.0308174267, 0.0238522347, 1.749072e-05, -0.0292538125, -0.00525232451, 0.0124307377, 0.00805972423, -0.00295665348, 0.0393462367, 0.00249289954, 0.0152665665, -0.000359587, -0.0140796406, 0.00940301083, -0.0186212324, 0.00145256263, -0.0148685556, -0.0197015479, 0.0132978335, -0.0184648708, 0.0421323143, 0.0202701353, -0.021933252, 0.00495026261, -0.0012197973, 0.0110590216, -0.0288984459, 0.0254584923, 0.00288024964, 0.0140583189, 0.00729213096, -0.0326937661, -0.0355367027, 0.0260270797, 0.00131396949, -0.0117910774, -0.00364251179, 0.00393035915, -0.00019034346, -0.00419333065, 0.00558636943, -0.00695808604, 0.0151528493, 0.00734188268, 0.0038379638, 0.00468373718, -0.0278749894, 0.00524521712, -0.0119261174, -0.0136460932, -0.0108600156, -0.0055224034, -0.00310057728, -0.0118550435, 0.0013530599, 0.0101563893, 0.0267093852, -0.0163895264, -0.0251457691, -0.00925375707, 0.00475125713, -0.015892012, -0.00427506538, -0.00781096704, -0.0370150283, -0.0165601037, -0.0122885909, 0.0132836187, 0.00539091742, 0.0352239795, 0.0112153832, -0.00761906896, 0.0114641394, -0.0209097955, 0.00114072813, -0.00556860119, -0.0121748736, -0.0251173414, 0.00726725534, -0.00850748643, -0.0143781491, -0.0073276679, -0.0115281055, -0.0154655725, -0.0143070761, -0.0033528877, -0.0243355334, -0.00306148687, 0.00867095497, -0.00328181428, -0.00825872924, -0.00915425457, -0.00378821231, 0.0203696378, 0.00547975954, 0.00188166834, 0.00717486, 0.000109830617, 0.0224876255, 0.0165032446, 0.00340441591, 0.000271855766, 0.0143852569, -0.0142360022, -0.0100284573, 0.00202026148, 0.000300285115, 0.0103127509, -0.000196451321, -0.0209524389, 0.00209488859, 0.0247761887, -0.00244847871, -0.0389766544, -0.0224307664, -0.0174840577, 0.0215921, 0.00393035915, 0.000974594033, -0.0114712473, -0.00960912369, 0.0145487254, -0.0132054379, -0.0313860141, -0.00231343927, -0.0187065192, 0.0108529087, 0.00522389496, -0.0197441913, -0.00432837, -0.0171429049, 0.0124378456, 0.0164463855, 0.0156645775, -0.016744893, 0.0267378148, 0.0115281055, 0.0481593385, 0.0221891161, 0.0148543408, 0.0052985223, 0.00155917276, 0.0407961346, 0.015565075, 0.00288024964, -0.00532339793, 0.00407961337, -0.00312367594, 0.0181521475, 0.00668445369, -0.0159062278, -0.00072494871, -0.00711444765, -0.00103678321, -0.0257712156, -0.00249289954, 0.0273632593, 0.0133120483, 0.0118976878, 0.00394102, 0.0179531407, 0.00896946341, 0.0196304731, -0.00945987, -0.00950251427, 0.0197015479, 0.0255011376, 0.0140867485, 0.00312189921, -0.00898367818, -0.011883473, 0.00296731456, 0.00851459336, 0.000752045424, 0.00300995866, -0.0314144455, -0.0108102644, 0.0101279598, 0.0206397157, 0.0136958444, 0.00909028854, 0.00157338742, 0.0194172543, 0.00444919523, -0.00878467225, 0.00162136205, -0.00294421567, 0.0232125726, 0.0195736159, -0.00167377864, -0.00418267, 0.0114854621, 0.000940834172, 0.0154229281, -0.0136460932, -0.0106894402, -0.00162758096, 0.0147974826, 0.00858566724, -0.0113788517, 0.000801352609, -0.0388913676, 0.00991474, 0.0216916017, -0.0124307377, 0.0149964876, 0.0325231887, 0.0107534062, -0.00887706783, 0.00355367013, -0.00119136786, 0.0440086499, 0.00518835848, -0.00757642463, 0.0189197399, -0.0097797, 0.00145345111, 0.00402630819, 0.00367094134, -0.00205046777, 0.00664180936, -0.0115352133, -0.00382374902, 0.00534827355, 0.0229567084, 0.0254016332, 0.0305331331, 0.010177711, -0.00778253749, -0.0118408287, -0.01801, -0.0117128966, -0.0074556, -0.0125728846, -0.0243639629, -0.00638239179, 0.00374201476, 0.0156219341, 0.0195594, 0.00521323411, -0.0105259707, 0.0031290066, 0.0128429634, -0.00445274869, -0.0043674605, -0.0010181265, -0.0152949961, -0.015892012, -0.0050959629, 0.00450605387, -0.0214357376, -0.014840126, -0.0183795821, -0.0173703395, -0.00733477529, -0.000972817186, 0.0110590216, -0.0359631404, 0.0164748151, 0.0078393966, -0.0297371112, 0.00511017768, 0.00922532752, -0.0212367326, -0.00781807397, 0.00386994681, 0.0169296842, -0.00020333656, -0.00220327545, -0.00674131233, -0.00773989363, -0.00508530205, 0.0031449981, 0.0240512397, -0.03602, -0.00504265772, 0.0177683514, 0.00578892883, 0.0166880358, -0.0135679124, -0.00653875293, 0.0017857193, -0.00307925511, 0.0142004658, 0.00776832271, -0.00609809812, -0.00351457973, -0.000999469776, 0.00933193788, 0.0165885314, -0.00665957807, 0.00424308237, 0.0259275772, 0.00650321646, -0.00777543, 0.00217839982, -0.00472282758, -0.00104300224, 0.00351457973, -0.0204264969, -0.00631131837, -0.00432481663, 0.00654941425, 0.0170149729, 0.000785361102, -0.00691899564, -0.000407561543, 0.00571430149, -0.000551263103, -0.0076759276, -0.00339908549, 0.00943854824, 0.0255579948, 0.0201706309, 0.00882021, 0.0195025411, 0.00857855938, -0.00744138518, 0.00778964488, -0.00173596782, -0.00876335055, -0.00334222685, 0.00305793318, -0.0118052922, -0.0174271986, 0.00598438038, -0.0140227824, 0.0226155575, 0.021933252, 0.00642148172, -0.0208387226, 0.00127487921, -0.0144421151, 0.0105828298, -0.0119474391, -0.00653875293, 0.0158635844, -0.0104762195, 0.00362296682, -0.0138379913, -0.0321820378, -0.00944565516, -0.0058706631, 0.00779675227, -0.00392325176, 0.0175409149, 0.00594529, -0.0319830328, 0.0113006709, -0.000181015072, 0.0107462984, 0.00969441235, 0.0486710668, 0.0013592788, 0.00389126875, 0.00943854824, 0.0018603463, 0.00980102178, -0.0133831222, -2.70412093e-05, 0.00358565315, 0.0110732364, 0.00474414974, 0.00501422863, -0.0168159679, -7.44604913e-05, -0.00363895833, -0.0119474391, 0.0112011684, 0.0141436076, 0.00433903141, -0.00280562253, 0.0125231333, -0.000824895687, 0.0307321399, 0.00740584871, -0.00985788088, -0.00509951683, -0.0027381028, -0.0333192125, 0.000169021441, -0.00796732865, 0.00131130428, 0.0175409149, 0.000983478152, 0.00196873327, -7.93329127e-06, -0.0115849646, 0.00795311388, -0.00784650352, -0.0067626345, -0.0272068977, 0.0244350359, 0.00373135367, -0.0168443955, -0.00769014237, -0.000947053079, 0.00835823175, 0.0336319357, -0.000790691585, 0.0015547307, 0.0240228102, 0.00208067382, -0.00971573405, 0.0171429049, -0.0200995579, -0.00805972423, -0.0100568868, -0.00480456185, 0.0191471744, 0.00416134764, -0.0106823323, -0.004630432, -0.00927507877, 0.00572140887, 0.00756221, 0.00850748643, 0.00210021902, 0.000687191, 0.00722105755, -0.0202985629, 7.55154906e-05, -0.001674667, 0.00129442429, 0.0150959911, -0.00648544822, 0.0119687608, 0.0340583734, -0.0226724148, -0.0121109076, 0.00671288278, -0.0196162593, 0.0198579095, -0.0211230144, -0.00165689865, 0.00465530809, 0.00344350631, -0.00445630215, 0.000681860431, 0.00325693865, 0.0191613901, -0.00383085641, -0.00813790504, 0.0176119898, 0.0239375215, 0.000331379735, 0.00699717645, -0.00696164, -0.0113930665, 0.00624379842, -0.00248046173, -0.004793901, 0.0033724329, -0.0277186278, -0.00998581294, -0.0121677667, -0.00547975954, 0.00962333847, 0.00825872924, 0.00913293194, 0.0104833273, -0.0104620047, -0.00221571326, -0.00447051693, 0.000580136664, 0.0168159679, -0.0150959911, -0.0323241837, 0.0282019265, -0.0123241283, 0.00461977115, -0.0250746962, 0.0172566213, -0.00171642273, 0.00210732641, -0.00514571415, -0.00939590391, -0.0101350676, -0.00154051604, -0.0045913416, -0.0103553943, 0.00452026865, -0.00536248833, -0.00712155504, -0.00543711521, -0.00922532752, -0.0289695188, 0.00519191194, 0.00725304056, 0.00683726138, 0.0155792898, 0.0195878297, 0.0157072227, 0.017668847, 0.0220469702, 0.014250217, 0.0147264088, 0.0171571188, 0.0202559195, -0.0206539314, 0.0126866028, 0.00249645323, 0.0191613901, 0.0186638758, -0.00887706783, 0.00122423936, 0.0183937959, 0.00968019757, 0.00484009879, -0.0109168747, -0.0172281936, -0.00514926808, 0.00597727299, -0.00654230686, 0.0286283661, -0.0173134804, -0.00982234441, 0.0137171671, -0.0219758954, 0.0148116974, -0.00662404113, 0.00346660521, 0.0122885909, 0.00551529601, 0.00236141379, 0.0158351548, 0.0177825652, -0.0144065786, -0.015494002, -0.00264215376, -0.0155508602, -0.0237811599, 0.0116133941, -0.00879888702, -0.01378824, -0.00122779305, 0.0102701066, -0.00852880813, 0.00851459336, 0.0089126043, 0.0188344512, -0.0144634377, 0.0043070484, 0.0201706309, 0.00394812739, -0.0105259707, 0.0304478463, -0.00885574613, -0.00550818862, -0.0052807536, 0.00781807397, 0.0169296842, -0.0110377, -0.00692254957, -0.000185568206, 0.00493249437, -0.0096446611, 0.00450605387, -0.016147878, -0.00630421098, 0.0112864561, -0.000754266512, -0.0166453905, -0.00458423467, 0.0128927156, 0.0100142425, 0.0185501575, 0.00389482244, 0.00388771505, 0.0148969851, -0.00564322807, -0.0179673564, -0.000128598433, 0.0376973338, -0.00667023892, -0.0186354462, -0.0359062813, 0.00505331904, -0.00517769717, -0.0104335751, 0.0179957859, -0.00523100235, -0.0076972493, 0.00360519835, 0.00629354967, -0.0121606588, 0.017597774, -0.0149538442, -0.0141365, -0.00432126271, 0.0202985629, -0.000688967819, -0.0197726209, -0.0102274623, 0.00117626484, -0.0143710421, 0.0282445699, -0.0224449802, -0.00287491921, 0.0170149729, 0.00545133, -0.0104477899, 0.0079388991, 0.0148969851, 0.00713932328, -0.00287136552, -0.0136745228, 0.0107747279, -0.00549752777, 0.0158351548, 0.00156983384, -0.0125444559, -0.0138522061, 0.0232836474, 0.0170434024, -0.0100711016, 0.00451316126, 0.0117128966, -0.00665247068, 0.00852880813, -0.00778964488, 0.0105544, 0.000613896525, 0.00996449124, 0.00539091742, -0.0258991476, 0.013660308, -0.0173419099, -0.0171286892, -0.00411515, 0.0154087134, -0.0231841449, -0.0143923638, 0.00141969125, -0.0207676478, 0.0224734098, 0.0140227824, -0.00345239043, 0.0083866613, 0.0153092109, -0.0132978335, 0.00840798393, 0.00730634574, 0.0153944986, -0.00181326014, -0.0185928028, 0.00169687753, 0.0158635844, 0.00590619957, 0.0119971903, -0.0112224901, 0.00583512615, 0.00148188043, -0.0194883272, 0.0143426126, -0.0116773602, 0.0213220213, -0.0155224316, -0.0185075141, 0.0247619729, 0.00827294402, -0.00652098469, 0.00808815286, 0.00114961225, -0.0117413262, -0.000874202873, -0.00400498603, -0.0234115794, 0.0134684099, 0.0116844671, 0.00859988201, 0.009005, 0.0047086128, -0.000859544, 0.0225586984, -0.0122388396, -0.00848616473, 0.00714287721, 0.00150320248, -0.00458068075, 0.0163753126, -0.00675552711, -0.00557215465, 0.0116702523, 0.000869316573, 0.01576408, 0.00164001877, 0.0026403768, 0.0049111722, 0.0112224901, 0.0223454777, 0.0151812788, 0.00718907453, 0.00990052521, -0.0300214048, -0.00348437368, -0.0323526114, -0.000307170354, 0.0172850508, -0.0130206477, 0.0177114923, 0.0280313492, -0.0113930665, 0.0117697557, 0.00669156108, 0.00504621165, -0.0108386939, 0.0361621492, 0.0192466769, 0.0249325503, 0.0173703395, 0.0152949961, -0.00580314314, -0.0205828566, -0.0352808386, 0.00111407554, 0.0128500713, -0.0231130701, -0.0180952884, -0.000984366634, -0.0319830328, -0.00161514303, -0.0033688792, -0.00110163772, -0.0258991476, 0.00417556241, 0.00352346385, 0.0155082168, 0.00170131959, 0.0063966061, 0.00270789675, 0.00787493307, 0.0133049414, -0.00257108035, 0.0212651622, -0.00221038284, -0.00232410035, -0.00224591955, 0.0234684367, 0.0200569145, 0.0217484608, -0.0215778854, -0.0112509197, 0.00389837613, 0.000412225723, -0.00208422751, -0.0277897, 0.0101848189, -0.0016977659, -0.0148116974, 0.00995027646, -0.014250217, -0.0063752844, -0.00370647805, -0.0220754, 0.00672354409, 0.0249751937, -0.00434969226, -0.00464109331, 0.00739874132, -0.00520257326, 0.0113504222, 0.0287989434, 0.00666668499, 0.0010767621, 0.00114694703, -0.0129495738, 0.0155935045, 0.004793901, -0.00301173539, 0.0123241283, 0.00516348286, -0.00813790504, -0.0247904025, 0.0220469702, -0.0133262631, 0.00875624362, 0.00337776355, -0.0319261737, -0.0143639343, 0.000698740419, 0.00521323411, 0.0189908128, -0.0233689342, -0.0367591642, 0.00414002594, -0.0257712156, 0.00700073037, 0.00222104392, -0.00453803688, 0.00642148172, -0.00806683116, 0.0104620047, 0.0210945867, 0.0105259707, -0.0267662443, -0.00227257214, 0.00805261638, 0.0131485797, 0.0264535211, 0.00262438529, -0.0308458563, 0.00873492099, 0.0137669183, -0.000184901903, -0.028301429, 0.0187065192, -0.0179531407, -0.0212367326, 0.000541934685, 0.0115991794, -0.0048329914, -0.0079388991, 0.0126510654, 0.00305615622, -0.00700073037, -0.000256752654, -0.0120398346, 0.00338309398, -0.00257641077, -0.0174129829, -1.85457156e-05, -0.0159630869, 0.00256930362, 0.00644991128, 0.0136674149, 0.0210519414, 0.0156503636, -0.00535538094, -0.00264926115, -0.00651743123, 0.0110945581, -0.019175604, 0.00801708, -0.0164037421, 0.0154371429, 0.00614784937, -0.0026830209, 0.00815211888, -0.00187456096, -0.00909028854, -0.00870649144, -0.0114641394, 0.000258751621, -0.0173845552, 0.00770435669, 0.0229567084, -0.006698668, 0.00221038284, 0.00798154343, 0.0079175774, -0.0111300945, -0.0175693445, -0.00957358722, 0.00324627757, 0.0159488712, 0.00799575821, -0.0127079245, -0.00520612672, -0.0107249767, 0.00433903141, -0.0224165507, -0.0014081418, 0.0093390448, -0.0113859596, 0.0304194167, -0.00904053729, -0.0182658639, 0.0121819815, -0.00695097866, 0.00842219777, 0.00975837838, -0.0052772, 0.00885574613, 0.0129424669, -0.00393391261, -0.000262749498, 0.0152523518, -0.0153802847, -0.018450655, -0.00222104392, 0.0181379318, -0.0214073081, 0.0178109948, -0.00534827355, -0.0151954936, -0.011954546, 0.0261265822, 0.0071251085, 0.0110234851, 0.0120682642, -0.0159630869, -0.0190761015, 0.0121322302, 0.0231983587, -0.00687635178, -0.00688345917, 0.0109453043, -0.00452737557, -0.00633974746, 0.00581025053, 0.0142288953, 0.00439589, -0.00111141033, -0.005483313, -0.00683726138, -0.00670222193, 0.00107853883, 0.0133760143, 0.011293564, 0.00916846935, 0.00878467225, -0.00122690457, 0.010639688, 0.0204407107, -0.00433903141, 0.0108173722, -0.0209524389, 0.00336532551, -0.00732056051, -0.00719618192, -0.00485075964, 0.000133373687, -0.0114996769, -0.00517414371, -0.0198436938, 0.00335821835, -0.0169439, -0.0103696091, 0.0132480823, 0.00379176601, -0.00774700101, -0.0162047353, 0.017199764, -0.013724274, -0.0184933, 0.00159737468, -0.0121961962, -0.0164890289, 0.00465530809, 0.00145967, 0.00283405185, 0.0197726209, -0.00886285305, 0.00917557627, -0.0128571782, 0.00169065862, -0.0207676478, -0.0088131018, -0.0116702523, -0.0162047353, 0.0197157618, -0.0452026837, -0.00928218663, 0.021208303, 0.00620470801, -0.00706114247, 0.0159488712, -0.00780385965, 0.0320398882, -0.0124023091, -0.00269368198, 0.010113745, 0.0153944986, 0.0129424669, 0.00766882, -0.0108813383, 0.0112722414, 0.00280739949, -4.71138919e-05, 0.0178109948, -0.0218479633, -0.00124289608, 0.00713221589, 0.0185501575, -0.00121890882, 0.0100853154, -0.00471216673, 0.00302239647, -0.00845773518, -0.0136318784, -0.0066773463, -0.00882731657, -0.00142591016, -0.0039801104, -0.00751956599, 0.0107391914, -0.00456291251, 0.0084648421, 0.00227434887, -0.00425018929, -0.00707891071, 0.00687635178, -0.0166880358, 0.0127221392, 0.00146677729, 0.0104335751, 0.0289979484, -0.0200853441, -0.00454869773, 0.0045913416, 0.0194172543, 0.00613718852, -0.00991474, -0.0124023091, -0.0158209391, 0.016218951, 0.00911161, 0.000467307633, -0.000245869538, 0.0139232799, -0.0174129829, -0.0311585795, 0.00550818862, 0.00673775841, 0.00384507119, -0.00260839378, -0.0161052328, 0.016346883, -0.00121446676, -0.00975127053, -0.00302950386, 0.0188913103, 0.0052807536, 0.00504976511, 0.00722816493, -0.00769014237, 0.0214783829, -0.00687635178, -0.00764039066, -0.0214641672, 0.00541934697, 0.00705403509, 0.0125942072, 0.00680172443, 0.00353590189, -0.00286781183, 0.00131574634, -0.0112153832, -0.00293888524, -0.0092182206, -0.014314183, -0.000504176947, -0.0482446253, 0.00794600602, 0.0163326673, 0.0124165239, -0.00376333669, -0.0199005529, -0.000422886747, 0.00740584871, -0.00348615041, 0.0237527303, 0.00334222685, -0.0124947038, -0.0170007572, 0.0143781491, -0.0139374947, -0.00832269527, -0.0077541084, 0.0028002921, -0.0189908128, -0.0127576757, -0.00584223354, -0.00549397385, 0.00793179218, -0.00887706783, 0.0120753711, 0.0243355334, 0.0221180432, 0.00141524908, -0.0139659233, -0.0136887375, -0.00281628361, 0.0295096766, 0.016218951, -0.0162615944, -0.0165032446, 0.0141507145, -0.00685147615, 0.00319830305, 0.0073276679, -0.0190476719, -0.000628111186, 0.0127718905, 0.0192893222, -0.015494002, -0.0015351855, -0.00653519947, 0.00270611979, 0.00661338028, -0.00486852787, 0.00309880031, 0.0129708964, -0.0127576757, -0.00751956599, -0.00402275473, -0.00351457973, 0.010568615, -0.00722461147, -0.00126244128, 0.000979036093, -0.00770435669, 0.0107960496, 0.00413647201, -0.00237029791, 0.0052807536, -0.00181414862, 0.00235252967, 0.00911871716, -0.00622958364, 0.0225586984, 0.0303909872, -0.00815211888, -0.00339020137, -0.00256219623, -0.00275587128, -0.0140725337, 0.00698296167, 0.00393391261, 0.00994316861, 0.0138095617, 0.0235537253, 0.00412581116, -0.0180810746, 0.0147264088, -0.0139943529, -0.002659922, -0.0197584052, -0.0184648708, 0.00677329535, 0.0103482874, -0.0100924233, 0.0307605695, -0.0125018116, -0.0050355508, 0.0177541357, 0.00466596894, 0.0190334581, 0.00920400582, -0.0195309706, 2.1210968e-05, 0.0073276679, -0.00200249301, 0.00326759974, 0.00663114851, -0.0125515629, 0.00759774679, 0.00386283942, -0.0161763057, 0.00872781407, -0.0049111722, 0.0353945531, 0.0152381379, 0.00158849056, 0.0110021625, -0.00604123902, 0.0205686428, 0.00226724148, -0.0101066381, 0.0097654853, -0.000977259246, -0.0251031257, -0.00849327166, -0.0264535211, 0.00700073037, -0.00433192402, 0.0108458009, -0.0124804899, 0.00450605387, -0.0166453905, 0.0113859596, -0.0215068124, 0.000573473517, 0.00809526071, 0.0124165239, -0.00577826751, -0.00236319075, -0.00154406973, 0.0054442226, 0.0233547203, -0.0119900834, -0.000461088697, 0.000760041177, 0.00299574388, -0.0172139779, 0.0050355508, -0.0077541084, -0.0259133633, -0.0128927156, 0.00337598659, 0.000961267797, -0.0127008166, 0.0146553358, -0.000183236116, 0.0125942072, -0.0123809865, -0.00877045747, 0.0267520286, 0.0102203554, -0.0135679124, 0.00520257326, -0.0043674605, 0.0130490763, -0.009260864, 0.00286425813, 0.0125586707, -0.00467307633, -0.00404052297, 0.00295843044, 0.0191329606, 0.000254087412, 0.0145416185, -0.00771857146, 0.00128998223, -0.0186212324, 0.0224876255, -0.0034310685, -0.00679106358, 0.0142857544, -0.015167064, 0.00630776444, -0.0059097535, 0.0237527303, 0.0017661741, 0.00297442195, 0.00188877573, 0.00918268319, 0.000242982191, 0.0269083902, 0.00586355571, 0.0109737329, -0.00740584871, 0.0200995579, -0.00386994681, -0.0067626345, -0.0176119898, -0.0196304731, -0.0132267606, -0.013397336, -0.000332934462, -0.00344528328, 0.0063966061, -0.00677684881, 0.02666674, -0.0125302412, 0.0109239817, 0.00632553268, 0.0057071941, 0.00512083853, 0.00582801923, 0.00850037858, 0.00385573204, 0.0108244792, -0.018450655, -0.0142786466, 1.5144743e-05, 0.00262438529, -0.00910450332, -0.0155935045, 0.014641121, 0.00350391865, 0.0202985629, -0.0126866028, 0.0183937959, 0.0177683514, 0.0059879343, 0.0205686428, -0.017398769, -0.00438878266, 0.0119190095, -0.012018512, -0.024491895, 0.00918979105, 0.00232232339, 0.00612297375, -0.0210235119, 0.00972994883, 0.0103625022, 0.00113628607, 0.0121748736, -0.00527009275, 0.0262260847, 0.0276049096, -0.0011869258, -0.0142431101, 0.00808815286, -0.000736498157, -0.000778697955, -0.00329247536, -0.0065600751, 0.0316987373, -0.00317875785, -0.00945276301, -0.00178927288, -0.0163753126, -0.00238451269, 0.00642503565, -0.00436035311, -0.0118337218, 0.016744893, -0.026794672, 0.0181947909, -0.0137953479, 0.00327470712, 0.012018512, 0.0107960496, -0.0012162436, 0.0074556, -0.0193177518, -0.0280597787, -0.00493604783, -0.00787493307, -6.35773831e-05, -0.0275054071, 0.00805261638, -0.00833691, 0.00197051, 0.00339908549, 0.00235786, 0.0124733821, -0.00655296771, -0.00849327166, -0.00887706783, -0.0154655725, -0.0138379913, -2.81239681e-05, 0.000656984746, 0.0179815702, 0.00159026741, -0.026595667, -0.000732500281, -0.00896946341, 0.00272921869, -0.0206397157, 0.022587128, -0.0224307664, -0.0209666546, 0.00501067471, 0.0131841162, -0.0137313819, 0.00761196157, -0.0113148857, -0.000871537603, -0.0151386345, 0.00858566724, 0.00885574613, 0.000364473293, -0.00815922674, 0.0126866028, -0.0161336623, 0.00444208784, -0.017199764, -0.0200142693, 0.0281450674, -0.00751956599, -0.00114072813, -0.00956648, -0.021009298, -0.0176119898, -0.00844352, 0.00140458811, -0.000580580847, -0.020810293, 0.000515282154, -0.0137100592, -0.0177257061, -0.00438522873, -0.00899078511, 0.00773278624, -0.00507108727, 0.00706825, -0.00348792714, 0.0028429362, 0.00293888524, -0.000971928763, -0.0140014607, 0.00894103386, 0.00512083853, -0.0166311767, -0.000518391607, -0.0159915164, 0.00636106962, -0.00727080926, 0.018976599, 0.00497158431, -0.0163184535, 0.0218337495, -0.00201670779, -0.0382943489, -0.00694742519, -0.0039196983, 0.00585289486, -0.0117768627, -0.00583157269, 0.0018603463, 0.0286710113, 0.0041435794, 0.0117768627, 0.00239517377, 0.000930173148, 0.0179957859, -0.00809526071, -0.0276901983, -0.0126297437, -0.0274201185, -0.0128429634, -0.0163895264, -0.0187349487, -0.00784650352, -0.00924665, -0.0170434024, -0.0076759276, -0.016346883, 0.00383441, 0.0115778577, 0.064420931, -0.00442787306, 0.00905475114, -0.0262118708, -0.000542823109, 0.00367449503, 0.00607322203, 0.0407392755, -0.00751956599, 0.00860698894, 0.0108386939, 0.0145558333, -0.024491895, -0.00297619868, -0.018976599, -0.00298863649, 0.0161905214, -0.0188628808, -0.00184435479, -0.0203980673, 0.00517414371, -0.0122388396, -0.00513860723, -0.0167591088, -0.0116276089, -0.00222459761, -0.0168017522, -2.6416541e-05, -0.0215352401, -0.00239517377, -0.0033724329, 0.0184080116, 0.0105899367, 0.00764749805, 0.00277897, 0.00981523655, 0.00463398593, 0.0210377276, 0.0056858724, -0.0229709242, 0.00120735948, 0.0133689074, 0.0164748151, -0.00306148687, 0.00634330139, -0.0174982715, -0.0119261174, -0.00315032853, -0.0213788804, -0.0104620047, 0.00955226552, -0.00884863827, -0.0234684367, 0.0187918078, -0.00181326014, 0.0152097084, 0.0142075736, -0.00763328327, 0.0123667717, -0.0160199441, 0.00692254957, 0.0215352401, 0.00414002594, 0.0211514439, 0.000389348977, -0.0246766862, -0.0137171671, 0.012210411, -0.00447407085, -0.0110377, -0.0144563299, -0.00857855938, 0.00303838798, 0.00240583462, 0.0152949961, 0.0100995302, -0.00314677483, 0.0171855483, -0.00357854576, -0.0114499256, -0.012935359, 0.00551885, 0.00798865, 0.00300995866, 0.000965709856, 0.00137171661, -0.00486852787, -0.0040192008, -0.0191187449, 0.0139161721, 0.00369581697, 0.0358209945, -0.00766882, 0.0103838239, -0.00393035915, 0.00850748643, -0.00363362767, -0.00304904906, 0.0109381964, 0.00423952844, 0.00312012248, -1.34928414e-05, 0.00208067382, -0.00253909733, -0.00671643671, 0.0226155575, -0.0181947909, -0.00837955438, 0.00766882, 0.019104531, -0.0221606866, -0.0139232799, 0.0203980673, 0.0186780896, -0.00866384804, 0.00237029791, -0.004793901, 0.00267236, 0.00945276301, -0.0184080116, 0.00874202885, -0.00023676327, 0.0121109076, -0.00969441235, -0.00575339189, 0.00288558, 0.00147566153, 0.009005, 0.00356077752, -0.0233262908, -0.0105970446, -0.00896946341, -0.00910450332, -0.0117057897, 0.0178678539, 0.0238806624, -0.0144705446, 0.00735609699, 0.0227008443, 0.00431415532, -0.00998581294, -0.00583157269, 0.0140725337, 0.019175604, 0.0144776525, -0.0101421745, 0.0110945581, -0.00830848049, 0.0140227824, -0.0220327545, -0.000420221506, -0.000753378088, 0.0105188638, -0.0280313492, 0.00573562365, 0.00506398, -0.00569298, -0.0327790529, 0.0162615944, 0.00711444765, 0.0151386345, 0.0139303869, 0.00898367818, 0.00526298536, 0.00328181428, 0.00286070444, 0.00942433346, -0.0156503636, 0.00578892883, -0.00226901844, 0.0281877108, 0.0172850508, 0.0140583189, 0.00125266868, 0.00210554944, 0.00385217834, -0.00299752085, 0.0101990337, 0.00253376691, -0.0263682324, 0.000549930439, -0.00890549738, -0.00243426394, 0.0519120134, 0.00901921466, 0.0132978335, -0.00206112862, 0.00687990524, 0.0221038274, -0.0116062863, -0.000864874455, 0.0152523518, -0.0124520604, -0.00390192983, 0.0196589027, 0.00749824382, 0.00918979105, -0.00192964287, -0.0145487254, 0.00784650352, -0.0070078373, -0.009260864, -0.01378824, -0.0191613901, -0.0182090066, 0.0327506252, 0.0152381379, -0.00276297843, -0.000761818, 0.0127647836, 0.00120380579]
|
07 Sep, 2021
|
How to change background color of canvas-type text using Fabric.js ?
07 Sep, 2021
In this article, we are going to see how to change the background color of the canvas-like text using FabricJS. The canvas means text written is movable, rotatable, resizable, and can be stretched. But in this article, we will change the background color. Further, the text itself cannot be edited like a textbox.Approach: To make it possible, we are going to use a JavaScript library called FabricJS. After importing the library using CDN, we will create a canvas block in the body tag which will contain our text. After this, we will initialize instances of Canvas and Text provided by FabricJS and use the textBackgroundColor property to change the background color and render the Canvas on the Text as given in the example below.
Syntax:
fabric.text(text :string, textBackgroundColor:string);
Parameters: This function accepts two parameters as mentioned above and described below:
text: It specifies the text.
textBackgroundColor: It specifies the background color.
Program: This example uses FabricJS to change background color of canvas-like text as given below.
html
<!DOCTYPE html>
<html>
<head>
<title>
How to change background color of
canvas-like text using Fabric.js?
</title>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000;">
</canvas>
<script>
// Create a new instance of Canvas
var canvas = new fabric.Canvas("canvas");
// Create a new Text instance
var text = new fabric.Text('GeeksforGeeks', {
textBackgroundColor: "green"
});
// Render the text on Canvas
canvas.add(text);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?
|
https://www.geeksforgeeks.org/how-to-change-background-color-of-canvas-type-text-using-fabric-js?ref=asr10
|
CSS
|
How to change background color of canvas-type text using Fabric.js ?
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0136087574, 0.00514505524, -0.0138392197, 0.0355832726, 0.060150478, 0.0218708068, -0.0217440519, 0.00621670159, -0.0329329632, -0.0491805077, 0.022308683, -0.00107092632, 0.00953534897, -0.0537897386, 0.00783569459, 0.0150837116, -0.019762082, -0.00672947895, 0.0113559952, 0.00633193273, 0.00938554853, -0.0335091166, -0.0188748054, 0.00540432474, -0.015233512, 0.018252559, 0.0308818556, 0.0270792376, -0.0249129, 0.0402616411, 0.0184138827, 0.0202345289, -0.00251923339, -0.0342235491, -0.0359059162, -0.022009084, -0.00613027858, 0.0588138029, -0.0359520093, -0.0060150479, 0.0466684736, 0.00978885684, 0.0238297302, -0.0041944012, -0.0199810211, 0.00867687911, -0.0183447432, -0.0284389611, -0.00366433943, -0.0931525826, 0.0183332209, -0.00595167093, 0.0292686243, 0.00574137457, 0.0319880694, 0.0321493931, -0.0264109, 0.0116959261, -0.000623326632, 0.000914644508, 0.0139083583, -0.0382335819, -0.00252931612, -0.0165817123, -0.00709821749, 0.0115288422, -0.00468125148, 0.00242704875, -0.00556852855, 0.0271483772, 0.00456025917, -0.00216201786, 0.0142655736, 0.00880363304, 0.0131939268, -0.014668881, 0.0417596437, -0.000481448689, -0.0240371451, 0.0434650593, 0.00893038698, -0.0181142818, -0.0257425606, 0.0245211143, -0.0183447432, -0.0145997424, 0.036804717, -0.041298721, -1.34135853e-05, 0.0120646646, -0.00562902447, 0.0336013027, 0.043925982, -0.0560482629, -0.0203497596, -0.000734956469, 0.0138853118, -0.0286694244, -0.046945028, 0.0156713892, 0.00542737078, 0.0281393621, 0.0164895281, -0.0438337959, 0.0290151164, -0.0342005, 0.0193587746, 0.00735172536, 0.0272175148, -0.0227350369, 0.0114654647, -0.0144384196, -0.0299600083, 0.0611184165, -0.0202345289, 0.0390401967, 0.00863078702, -0.0293838549, 0.0510702915, 0.0253046844, 0.0163512509, -0.0227811299, -0.000944172381, 0.0511624776, -0.0238297302, 0.0360672399, -0.0128251882, -0.0263187159, 0.0216518678, 0.00784721784, -0.04436386, -0.00255236216, 0.00418863958, 0.00969667174, 0.088543348, -0.00526604755, -0.0225276221, 0.0426584445, -0.0158557575, 0.00246305834, -0.0376804732, -0.0318728387, -0.0281163156, 0.0249129, -0.0191859286, 0.018298652, 0.0202114824, 0.00228589098, 0.00136980612, 0.0131363114, -0.0340622254, -0.0410682596, 0.00539568253, 0.0193126816, 0.028784655, -0.0140927276, -0.0163051579, -0.0347766578, 0.0267565921, 0.0157981422, 0.0324259475, -0.0335091166, -0.0103189182, 0.00776655599, -0.0100308415, -0.00803734828, 0.0248437617, 0.00283611822, -0.0448247828, 0.023172915, -0.0170772057, 0.0123988343, 0.012986511, 0.016524097, -0.0632386655, -0.015752051, 0.0186673906, -0.025719516, 0.0114481803, -0.0214674976, -0.0702447, 0.0115691721, 0.0521765091, 0.0522226, 0.0044191014, 0.00723073306, 0.00586524792, 0.00576154, -0.00454873592, -0.0271253306, -0.0274940692, 0.0477055535, 0.0303287469, -0.0197736062, 0.0461614579, 0.0123988343, 0.0105666649, 0.00133811764, 0.00784721784, -0.0118918186, 0.0200040676, -0.00864807144, -0.0176187903, -0.0230231136, 0.0142886192, 0.00937402621, -0.0102785872, -0.0598739237, 0.05203823, -0.00353758573, -0.0196929444, 0.0277706236, -0.000865671376, -0.0252585914, -0.00412238203, -0.00208135648, 0.000634489581, 0.00177887548, -0.0159018505, -0.00865959469, -0.00316308555, 0.0258808378, -0.0165125746, -0.0149569586, -0.0510702915, 0.0128367115, 0.0122490339, 0.0145997424, -0.00568087865, -0.0364820734, 0.0022138718, -0.0079221176, 0.0339700393, -0.00844065659, 0.0678939894, -0.0172385275, -0.00840608682, 0.0261343457, 0.000801574264, 0.00272520841, 0.0145651735, 0.00468413206, -0.0346844718, -0.0396854877, 0.0293838549, 0.0506554618, -0.0113963261, -0.00567223644, 0.0112292413, 0.00250482955, -0.0107971262, -0.0453318, -0.000342991698, 0.0228156988, -0.00498661306, 0.00824476406, -0.00460058963, -0.0436955206, 0.0144384196, 0.049318783, 0.0471524447, 0.0281854551, -0.00837727915, -0.0123757878, -0.0173998512, -0.0273097, 0.0237605907, -0.0501023531, 0.0172270052, 0.00163051591, -0.02079916, -0.0437877066, 0.0082101943, -0.0318267494, -0.033739578, 0.0407456122, -0.0286233313, -0.00416271295, 0.0223202072, 0.00517674396, -0.000555988634, 0.0278858542, 0.0376804732, 0.0529600754, -0.00026016956, -0.0377265662, -0.0437416136, 0.02977564, -0.033439979, -0.0384870879, -0.0194048677, -0.0221704058, 0.0138046499, -0.0431885049, 0.0199464522, -0.00533518614, -0.0159825124, -0.0172385275, -0.0131017426, -0.0123988343, 0.0221588835, -0.0454700738, -0.0206147898, -0.0248898529, 0.017088728, 0.0118342033, -0.00746119441, 0.0222395454, 0.0230115913, 0.0224584825, 0.0379570276, -0.0166854206, -0.0367125347, -0.0229770225, 0.017134821, -0.00891310256, -0.00508167828, 0.0119033419, -0.0344540104, -0.00340795098, -0.0259269308, -0.0174689889, 0.0213637911, 0.0360672399, 0.023518607, -0.0342696421, -0.0137585578, -0.0250972696, 0.0444560423, 0.0215020683, -0.046991121, -0.0148647735, 0.0382335819, 0.0441103503, 0.0288077, 0.0153717892, -0.0187941436, -0.0108547416, -0.0147380196, 0.0385101326, 0.0265261307, -0.00727106351, -0.0405381955, -0.0138161732, 0.0156829115, -0.0503789075, 0.00509032048, 0.0476133674, 0.0329790562, 0.0145075582, 0.000738917501, 0.0187480524, 0.017134821, -0.00276265852, -0.0016319562, -0.00709821749, 0.00278138346, -0.0406764746, -0.0471754894, 0.010094218, 0.0307205319, -0.00288653164, 0.0350071192, -0.0193357281, 0.00160458894, -0.0566474609, -0.0214214064, 0.0294760391, -0.00812377129, -0.016696943, 0.00713854842, -0.0040388396, -0.0438337959, -0.00348285097, -0.0176764056, -0.0230692066, -0.0129058501, -0.00566359377, -0.0260882545, 0.00890157931, -0.0327716395, 0.0486274, 0.0446404144, 0.00259701419, 0.023172915, 0.0331173316, -0.0526374318, -0.0437877066, 0.017261574, 0.00306513929, -0.0304670241, 0.00839456357, -0.00344540109, -0.0135396188, 0.00739205582, -0.000992425252, -0.00261862, -0.0161207896, 0.0280932691, -0.0640222356, -0.012859758, 7.66892481e-06, 0.0180105753, -0.041252628, 0.00519114779, -0.0187941436, -0.00766284857, -0.00648173271, 0.0179644823, -0.0264109, -0.0116325496, 0.0238066837, 0.0192204975, -0.0378648415, 0.00795668736, 0.0324259475, 0.0245902538, 0.0410682596, 0.0125371115, 0.0151067581, 0.0642066, -0.0123066492, -0.013032604, -0.00196900638, -0.0144960349, -0.0258577913, -0.00454585534, -0.000293658493, -0.0222741142, 0.00179760053, -0.0731024221, -0.00855588727, -0.0103477258, -0.0199579746, 0.00366433943, 0.0104629565, 0.0527296141, 0.0061706095, 0.0181142818, 0.0215827301, 0.00624550926, -0.0152450353, 0.00963329524, -0.0209028684, -0.0278628077, 0.0112407645, -0.0235992689, 0.00988104101, -0.00167804852, 0.00309394696, -0.0289459769, -0.0119840037, -0.0607957728, 0.00289517385, -0.00648173271, -0.036505118, 0.00227004685, 0.013032604, 0.0197390355, -8.31597299e-06, -0.00405900506, 0.00612451695, -0.0279780384, 0.0207876358, -0.00108244934, -0.00320917787, -0.0117823491, -0.0175496507, -0.00875178, 0.00568664027, 0.006838948, 0.0250972696, 0.0113214264, 0.0407456122, 0.0109814955, 0.0120531423, 0.00214185263, -0.0297065, 0.0429349951, -0.041506134, 0.019462483, 0.00374212023, -0.00606690161, -0.000707589148, 0.0191513598, -0.0398237668, 0.00343099725, -0.0194394365, -0.000921126222, 0.00424049376, 0.035859827, 0.062270727, -0.00875754096, -0.0282776393, 0.00660848664, 0.0170195904, -0.00421168562, -0.0518077686, 0.023691453, -0.00839456357, 0.0112234801, 0.0550803244, -0.0142655736, 0.0120300958, 0.0563248172, 0.0220551752, 0.00471582077, 0.0332095176, -0.020580221, -0.00142166007, -0.0376343802, 0.00301616616, -0.00238527753, 0.0207645912, -0.0187019594, -0.0282315463, 0.0235416535, 0.00548498612, 0.0220436528, -0.00315156253, 0.00371619337, -0.0339700393, 0.0171463434, -0.00390632404, -0.00513929361, 0.031365823, 0.00694265589, -0.0161207896, 0.0120992344, -0.0309279468, -0.015924897, 0.000580835273, 0.00420016283, 0.0207645912, 0.0342696421, -0.0330481939, 0.00443638582, -0.00672371732, 0.024636345, -0.018298652, -0.0536053702, -0.0194048677, -0.0264569931, -0.00637802482, -0.00707517145, -0.00739205582, -0.0163858198, 0.00524300151, -0.0148762967, 0.0102670649, -0.0182410367, 0.0127560496, -0.0055800518, 0.0254890528, 0.0275171157, 0.0145075582, -0.011044872, -0.0280010849, -0.00553972088, 0.00359520107, 0.0329790562, 0.0140466345, 0.0375421941, 0.0143462345, -0.00668914802, -0.0199234057, -0.00585948629, 0.0055800518, -0.0199464522, -0.0144960349, 0.0213753134, -0.0532366298, -0.00816410221, -0.00508455932, -0.00227580825, 0.000660056423, 0.0339009, -0.0320111178, -0.00608994812, 0.0100596491, -0.00595743256, -0.0410452113, -0.00418287795, 0.0259499773, -0.0120992344, 0.0194509588, -0.031711515, 0.011736257, -0.0584911555, -0.0145651735, 0.00667762477, 0.0116383107, 0.00457754359, 0.00779536366, -0.0136318039, 0.0312736407, 0.0235762224, -0.00165788317, -0.000320125575, -0.0238988679, 0.0175266042, 0.0212485604, -0.00629160181, 0.0144384196, 0.0122605572, -0.0346383788, 0.0216172989, 0.00991561078, 0.00291966042, 0.00478207832, -0.022481529, 0.00840608682, 0.0122605572, -0.000552387675, -0.0172846206, -0.0106530879, 0.027355792, 0.0224008672, -0.000970099296, -0.0140581578, -0.0309970863, -0.00534959, 0.0187826212, -0.011177388, 0.02839287, 0.031458009, -0.0217094831, -0.0332786553, 0.0117304958, -0.023345761, -0.0335091166, 0.0101460721, -0.00917237159, 0.0311814547, 0.0247515757, 0.0161553584, 0.0211102832, 0.00572985178, -0.0273327455, -0.00135684269, 4.11635046e-05, 0.0132169733, -0.00465244381, 0.0517155826, 0.00444502803, -0.000629088143, -0.0315962844, -0.00374500104, -0.00353758573, 0.0119263884, -0.0217440519, -0.0161784049, -0.0285081, 0.00688504055, -0.0197275132, 0.0308127161, -0.00609570928, 0.0267105, -0.0119033419, 0.0213637911, 0.0208337288, -0.0150260963, -0.00581627479, -0.0153487427, -0.000281775312, 0.00534094777, 0.0347536094, 0.011004542, 0.0240601916, -0.0124794962, 0.0122836037, 0.0176648814, -0.0193011593, 0.0151298046, 0.00456602033, -0.0118572498, -0.0102555417, 0.0410913043, 0.00181200437, -0.00188834476, 0.00882668, -0.0164434351, 0.00512777083, 0.0172500517, -0.00440469757, 0.000848386786, -0.00183649093, 0.00120056095, -0.0010097099, -0.00693689426, 0.0391093343, 0.0173883289, 0.0329790562, -0.0094834948, 0.00380837801, 0.00652782479, -0.00519979, -0.0396854877, -0.000226860648, 0.00933369529, -0.0156252962, 0.000844065624, -0.00437012827, 0.0135280965, -0.0155792041, 0.0449400134, -0.0190015584, 0.00666610198, -0.0277475771, -0.0120646646, 0.00806615595, 0.0109642111, -0.00521131326, 0.0258577913, -0.0203958526, -0.00670067128, 0.0139314039, -0.0187941436, 0.011304142, 0.0248207152, -0.0235646982, 0.00431539351, 0.012813665, -0.0270101, -0.00409645494, -0.00202950253, 0.0154294046, -0.00784145575, -0.00178895821, -0.00171261781, 0.00712702516, -0.0220436528, 0.0250972696, 0.00257540843, -0.0269179158, 0.028784655, -0.0306513943, 0.015060666, -0.0181142818, -0.0137700811, -0.0165125746, -0.00289949495, -0.0201308206, -0.0119609572, -0.0186904352, 0.00989832636, -0.00992137194, 0.0135972351, 0.020845253, -0.00332152797, -0.00939707179, -0.0456083529, 0.0442025363, -0.023345761, 0.028346777, 0.0170772057, -0.0111601036, -0.00143030228, 0.00543025136, 0.0328638256, -0.00377380871, 0.0390171483, -0.0569240153, 0.0444099531, 0.00305649708, -0.00346844713, -0.00509896316, -0.0382796712, 0.0127560496, -0.00277130073, 0.0042289705, 0.0131478347, 0.0276093, -0.00137412734, -0.0112983799, 0.000788610778, 0.015752051, -0.0106876567, -0.0204188973, 0.00446519349, -0.00181056396, 0.0246132985, 0.0186443441, 0.0114539415, -0.00559157459, 0.0182295125, 0.0200847294, -0.0207300205, 0.0181142818, 0.0284159165, -0.0215596836, 0.0197851285, 0.0155215887, 0.00319477404, 0.00994441845, -0.00172846206, -0.019116791, 0.0129519422, -0.0046639666, -0.0432806909, -0.0190822203, -0.0126062501, 0.0250050835, -0.00339642796, 0.0304439776, -0.0215020683, -0.0208222065, -0.00763404043, 0.011090965, -0.00122432725, -0.0215827301, -0.00356351258, -0.0186558664, 0.0142194806, 0.0121568497, 0.00894191, 0.027701484, 0.0124679729, -0.00372771639, 0.0127445264, -0.0152565585, -0.0268718228, 0.0199003592, 0.0078587411, -0.0507476442, 0.0287616085, 0.0406303816, 0.0175150819, -0.0108259339, 0.0241523758, 0.00932217203, -0.0163397286, -0.0289920699, 0.0391093343, 0.0186097752, 0.0111831492, 0.0260882545, 0.0356063172, 0.0303057, 0.0200847294, -0.0325181335, 0.00345980492, -0.0111197727, 0.00134748023, -0.00469853589, 0.0282776393, -0.0131824035, 0.0328407772, 0.0220551752, -0.0356293656, 0.0363207497, 0.0102440184, 0.0130210808, 0.0241984688, 0.0213407446, 0.0176764056, -0.0151758967, 0.00484545529, -0.0113099031, -0.0270792376, -0.0162705891, -0.0186097752, -0.000844065624, 0.0327255465, -0.00432403572, -0.0400081351, -0.00410509715, 0.00797973294, -0.00908594858, 0.036251612, -0.0303517934, 0.000376660697, 0.0183332209, 0.0051565785, 0.009062903, -0.019243544, 0.00254516024, 0.00893038698, 0.00130931, -0.00743814837, 0.016961975, -0.00444790907, -0.000238203676, -0.018079713, -0.0101172645, 0.0155907273, -0.0212024674, -0.00248610461, 0.00803734828, -0.0446865037, -0.00293838535, 0.0280471779, 0.0145306038, -0.0518077686, 0.0425201654, 0.044018168, 0.0214559752, -0.0142079582, 0.00348285097, 0.0316884704, 0.00619941717, 0.00950077921, -0.00538415927, -0.00434996281, 0.0262034852, -0.0144153731, -0.00865959469, 0.0208106823, 0.00869992562, 0.0390632413, 0.00476191286, 0.0197044667, 0.00425489759, 0.0241984688, 0.0241062846, 0.00739205582, -0.0108777881, 0.0177109744, 0.00962753315, 0.0125716804, 0.00513641303, 0.0066833864, 0.0262726229, 0.0251433607, -0.0141388196, 0.00250194874, -0.0225852374, -0.00428946642, -0.012514065, -0.0128828036, 0.0334169343, 0.0126984343, 0.0190706979, 0.01350505, -0.0229309294, -0.0181488506, -0.0302365627, 0.00897647906, -0.0355371796, -0.0153372195, 0.0162014514, 0.0202114824, 0.0134589579, -0.0307205319, -0.00630312506, -0.0360441953, 0.000954255054, -0.0109642111, 0.0048540975, 0.0228502676, 0.0158327129, 0.0318497941, 0.0461384133, -0.0303748399, 0.00388615881, 0.0138392197, -0.00916084833, -0.00404172, 0.00888429489, -0.00356063177, 0.0355141349, -0.00776079437, 0.00078140886, 0.00857317168, 0.0276323464, -0.0183447432, -0.0263417605, -0.00858469494, 0.0206608828, -0.0140696811, -0.0116037419, 0.0120185725, -0.00332152797, 0.0216172989, 0.00939707179, -0.00697722519, -0.00344540109, -0.00887853373, -0.0199925434, -0.0126753887, 0.0151067581, -0.00655663246, -0.0134013426, 0.0275862534, 0.00302768941, -0.0038054972, 0.0288768392, 0.000389624154, -0.01212228, 0.0211794209, -0.0228156988, 0.0161323119, -0.025973022, -0.0235877447, -0.00263014296, 0.00389192044, 0.0420822874, 0.018079713, -0.0377035178, -0.017906867, -0.00568375923, 0.00406476669, 0.00556276692, -0.00772046391, 0.00550803216, 0.0481664762, 0.0122375116, -0.011995527, -0.00789331, 0.0291994847, -0.0554490611, 0.00559445564, 0.02839287, -0.00882668, -0.00305361627, 0.0291533936, 0.00921270251, 0.00811224803, -0.0125716804, 0.024636345, 0.0148532502, -0.0199579746, 0.0240601916, -0.0383488126, 0.00387463579, 0.0139890192, -0.0162360203, 0.000524300151, 0.0196583755, -0.0312736407, 0.00580187095, -0.00993289519, -0.00603233231, -0.00728258677, -0.000737477152, 0.00804311, -0.0130210808, -0.0588138029, -0.024728531, 0.00146127061, -0.0151182814, 0.0126177724, 0.0194048677, -0.00814105663, -0.0283006858, 0.00198629103, 6.42321684e-05, -0.0168582667, -0.000492251595, -0.00272664893, 0.00511624757, 0.0112119569, 0.00473310519, -0.026065208, -0.00193731789, -0.0165932346, -0.0214444529, -0.00797397178, 0.00903409533, -0.00314003928, -0.0130671728, -0.0100250794, -0.00272088731, -0.0284159165, -0.01941639, 0.0101057412, 0.0148762967, 0.01605165, -0.000707589148, 0.00999627169, 0.0181373283, 0.000372699637, -0.00683318637, -0.00580187095, 0.0196583755, -0.028784655, 0.00588541338, 0.00744967116, -0.0245441608, -0.00737477141, 0.0259269308, 0.0187365282, 0.0285311472, -0.00537839765, -0.0175496507, -0.00107380701, 0.00607842486, -0.0129173733, -0.000413390517, -0.0169965439, -0.0160170812, 0.0150030507, -0.00418287795, -0.00177023315, 0.00188114285, -0.0124564497, -0.0120992344, 0.0372886881, -0.00733444048, 0.00749576371, -0.00798549503, 0.00293262396, -0.0281854551, -0.0179183893, 0.0339469947, 0.0244289301, -0.0288768392, 0.0233688075, 0.0150952348, -0.0138276964, 0.0241984688, 0.00602657115, 0.0158442352, 0.0255121, 0.0105090495, 0.0263417605, -0.00819867197, -0.0155446352, 0.0107567953, 0.00488002459, -0.0182871278, -0.00256676623, -0.0171809122, -0.00711550191, -0.00652782479, 0.0178838205, 0.00420592446, -0.0105551416, 0.00414542807, 0.0431885049, 0.00719040213, 0.000227940924, 0.0265030842, 0.0101979263, -0.0183216967, -0.00277850265, -0.0022873315, 0.0117247337, -0.00929336436, -0.012168373, -0.0227580834, 0.0115576498, -0.00390056265, 0.00395529717, -0.00875754096, -0.0178953428, 0.00693113264, -0.0302135162, 0.00916661, -0.0359981023, -0.00967362616, 0.0133091575, 0.011649834, -0.0106761334, -0.0103650102, 0.0227350369, -0.0453548431, 0.00460058963, -0.0171002503, 4.09159366e-05, -0.00426930143, 0.0108086495, -0.000472086191, -0.046599336, 0.0372425951, -0.0240601916, 0.0117881112, 0.010226734, 0.0184830204, 0.0110160643, -0.0236684065, -0.0303978864, -0.0010874907, -0.00860197935, 0.00806615595, -0.00234350655, -0.00532654393, 0.028692469, 0.0223778225, 0.00305649708, -0.0131824035, -0.0240371451, 0.00683318637, -0.0273327455, -0.0147380196, -0.0139659736, 0.0234033763, -0.0138853118, 0.0165817123, -0.0258577913, 0.0107971262, 0.0118918186, -0.0227350369, -0.000230461606, 0.00994441845, 0.0174113736, -0.0222856365, -0.0195200983, 0.0332556106, 0.0118457265, 0.0037709279, -0.0103362026, -0.0266874544, -0.00982342567, 0.00223835837, 0.00466972822, 0.006838948, 0.010872026, 0.0394089334, -0.0300521925, -0.00566071318, 0.00464092055, 0.0139314039, 0.00791635644, -0.0256042834, 0.00818138663, -0.00619365554, -0.00825628731, 0.0192204975, 0.0174805131, 0.01605165, -0.0283698235, -0.0049318783, 0.0134935267, -0.00559733622, 0.0075994716, -0.00307378173, 0.0228387453, 0.00541296694, 0.0086826412, 0.0191398356, -0.0148647735, 0.00231613917, -0.00219946797, -0.00431827409, 0.0151643734, -0.00579610933, 0.0208337288, 0.00709245587, 0.0014360639, 0.00294846809, 0.0276323464, 0.00844065659, -0.0181603748, 0.0149223888, -0.00853284076, -0.00105220126, -0.0173652824, 0.00309394696, 0.0102497796, 0.0210526679, 0.0173422359, 0.0205226056, 0.0142425271, -0.00495780539, -0.00938554853, 0.00584220188, 0.000134585978, 0.00854436401, -0.000627287664, -0.00944892596, 0.0086826412, 0.00880363304, -0.022481529, 0.00357215479, 0.0267796386, 0.00347420876, -0.00282171438, -0.0141849117, -0.0125255883, -0.00497509, 0.00401867414, 0.0101979263, 0.0148186814, -0.0150376195, 0.00585372467, -0.019370297, 0.0059459093, 0.0252816379, -0.0106473258, -0.0116844038, -0.025973022, -0.0173076671, -0.00272376812, -0.0131478347, -0.00884972606, 0.0190361291, 0.00081237714, 0.0190476514, -0.006838948, -0.00034335177, 0.00254948158, -0.0318497941, -0.0305592082, -0.0196007602, 0.0037997358, 0.0156944357, -0.0120070493, 0.0117650647, -0.0139890192, 0.0279319473, -0.00270648347, -0.00172558124, -0.00312275463, -0.00486562075, 0.0177685898, 0.00913780276, 0.0140581578, -0.00969667174, -0.0149684809, 0.0360441953, 0.00319189322, 0.00533806672, 0.0149223888, -0.0116613572, 0.0156713892, 0.00807191804, -0.00750152534, 0.025973022, -0.0026042161, 0.0166162811, 0.00175582932, 0.0149108656, 0.0180681907, 0.0156022506, 0.0125025418, 0.0120070493, -0.020453468, 0.00660272501, 0.0363207497, -0.0107913651, -0.00201221788, 0.00348573178, -0.000973700255, -0.00797397178, 0.00790483318, 0.00577594386, 0.00674676336, 0.0256273299, -0.00218938524, 0.0120877111, 0.0103362026, -5.54210658e-07, 0.0241062846, -0.0149569586, 0.00826781, -0.00130354846, -0.0205341298, 0.0147956349, -0.00724801747, -0.0197044667, -0.0211794209, 0.0146804042, -0.0066833864, -0.0223778225, -0.00465532439, 0.00428082421, -0.00461787451, 0.0168813132, -0.0103938179, -0.0230576843, -0.0371043198, 0.00140509557, -0.0359289646, -0.00915508717, -0.0153948348, -0.0263187159, -0.00987528, 0.0295221321, 0.0548959561, 0.00403307797, 0.0013417186, -0.000582995825, -0.0066833864, -0.0085904561, -0.0330712385, 0.000250446959, -0.0293838549, -0.0244519766, 0.0174344201, -0.0156598669, -0.0163627733, 0.0407456122, -0.0193357281, 0.0123757878, -0.0428428128, 0.00231469865, 0.0242445599, 0.00312563544, 0.0273788385, -0.0114193726, -0.00277562207, 0.00751304813, 0.0231613908, 0.0243828371, 0.0165817123, 0.0179990511, 0.00479360158, 0.000970099296, -0.00358079723, 0.0123066492, -0.00333881238, -0.00378245115, 0.0146227889, 0.000713350659, 0.0402385965, -0.00711550191, 0.008457941, -0.0160977431, 0.0150952348, -0.00234206603, -0.0123296957, -0.0162360203, 0.000939851219, 0.00629160181, 0.0121568497, 0.00152392732, -0.0289459769, -0.0279319473, 0.0207300205, -0.00409645494, -8.11904556e-06, -0.0148993423, -0.00424625492, 0.0233111922, 0.0243137, 0.0190361291, -0.0126523422, 0.00570104411, -0.0333477929, 0.0267796386, 0.00477055507, -0.00484545529, 0.01182268, -0.00825052522, 0.0075418558, -0.00820443314, -0.0299139172, 0.036597304, 0.00344252028, 0.000245045492, 0.00931064878, -0.00150664279, 0.0167776048, 0.00442198198, -0.0161668807, -0.00316308555, -0.00520843221, -0.00760523276, -0.0216172989, 0.0109008336, -0.00177167356, 0.0296373628, 0.019635329, -2.80199893e-05, 0.0340622254, -0.0140466345, 0.0176072661, 0.00615908625, -0.00789331, 0.0161553584, -0.00553107867, -0.00198196969, -0.0226428527, -0.00875178, 0.0401233658, 0.00659696339, -0.00163915812, -0.0170772057, 0.00247458159, 0.011649834, -0.00897647906, 0.0401925035, 0.0184484515, 0.0202806219, 0.0237605907, -0.024728531, -0.0119379107, 0.00793940201, -0.00118831766, -0.0246132985, -0.00730563281, 0.00205110828, -0.00560885947, -0.0168928355, 0.00780112529, 0.0257656071, -0.00729410956, -0.0164664816, 0.0109699722, 0.0273788385, -0.0161553584, -0.00878634863, -0.0215251148, 0.0103304414, 0.0143808043, 0.00197044667, 0.01009998, 0.00732867885, 0.0239449609, -0.00543313241, 0.0556795225, -0.00492611667, 0.00638954807, -0.00239824108, -0.0199118834, 0.0102209719, -0.0190706979, 0.018298652, -0.0351453945, -0.0360672399, 0.00662000943, 0.0217786208, -0.00347708957, -0.00403595902, 0.00742086349, -0.0258577913, 0.0171809122, -0.002761218, -0.00131867244, 0.00856164843, -0.00804311, -0.00430387026, 0.0115518877, 0.00168381014, -0.00628007855, 0.000241084446, 0.00394953554, 0.00916661, -0.0193011593, -0.0187595747, 0.00194740051, -0.0186097752, 0.0016319562, 0.00337914331, -0.0192665905, 0.0100884568, 0.0162475426, 0.0171924364, 0.00969091058, -0.0014749543, -0.00506151281, 0.000313463795, 0.0141042499, 0.0215942524, -0.0210641902, 0.00722497143, 0.0101575954, -0.00224123918, 0.000322466192, -0.00274825469, 0.000617925194, 0.0154409278, -0.0204188973, 0.0113559952, -0.00719616376, 0.000213537074, -0.00611299416, -0.00561750168, -0.00855588727, -0.00663153268, 0.0239449609, -0.00184801396, -0.0125371115, 0.00101979263, 0.0105781881, 0.00943164155, -0.0027900259, -0.0380492099, 0.00528045138, 0.00946044922, 0.0103304414, -0.00343099725, -0.000126753876, 0.00257972954, -0.00957568, 0.0196007602, 0.0128943268, 0.00657967897, -0.00144182541, 0.00215769676, -0.0197390355, 0.0446634591, -0.00905714091, 0.00598624, 0.000575073704, 0.0112119569, 0.0351684391, 0.0265952684, 0.0129749887, 0.0155561585, 0.0160286054, 0.0113444729, -0.00138348981, -0.00817562547, -0.014668881, -0.000526460703, 0.00891310256, -0.000439677533, -0.0149223888, -0.00617637113, 0.00332728936, -0.000448319828, 0.000132785499, 0.0134820035, 0.00385447033, 0.0103534879, 0.0243828371, -0.0105666649, -0.000444358768, 0.0251203142, 0.00920117926, -0.0175266042, 0.0108605027, -0.00791635644, -0.0111889113, 0.0168006513, 0.00965634082, 0.0026834372, 0.0175726973, -0.0248898529, 0.00219370634, -0.000210116166, -0.00623974809, 0.0210411437, 0.0136548504, -0.00205254857, 0.00536399381, 0.00963329524, -0.00647597108, -0.00117823493, -0.00261717965, 0.00320053543, 0.0108489804, 0.00455449754, 0.00967938732, -0.00810648687, 0.000482889067, 0.036804717, -0.0124564497, -0.0197736062, 0.0119379107, 0.0236684065, 0.0118342033, -0.00324374717, 0.021018099, -0.0253046844, 0.0297065, 0.00259701419, -0.012986511, 0.0229770225, 0.0240832381, -0.00348573178, -0.00606114, 0.0102209719, -0.00876330212, 0.0347536094, -0.00153977156, -0.00112061959, 0.00940859504, -0.00277274125, -0.0129519422, -0.00274249306, -0.0041944012, -0.00983494893, -0.00243281038, -0.0199003592, -0.00784721784, 0.0104456721, 0.0109814955, 0.0150721893, 0.02218193, 0.017215481, -0.0104917642, -0.0155561585, -0.0161207896, -0.0115230801, -0.013850742, -0.0132976342, -0.033439979, -0.00570392469, 0.0211333297, 0.00391784729, 0.00234782766, 0.00458042417, -0.0138276964, 0.00700027123, -0.000500533788, -0.00690232497, -0.0161323119, -0.0277475771, -0.0271022841, -0.024982037, -0.0223893449, 0.00803158712, 0.00153256964, -0.00910899509, -0.0182871278, 0.0154639734, 0.00306225847, 0.00814105663, 0.00274105277, -0.0415291823, -0.0164664816, 0.0237836372, -0.00989256427, 0.0343848728, 0.0117938723, -0.0289920699, -0.00603809394, -0.000790051185, 0.0264569931, -0.0152219888, -0.00971971825, -0.00763980206, -0.0209604837, -0.00203526416, -0.0113963261, 0.017215481, -0.0106358035, 0.00471005915, 0.0222625919, 0.0377035178, 0.0232074838, -0.0401464105, -0.00250626984, 0.0109469267, 6.13514e-05, 0.0100423647, 0.00391496671, -0.0236223154, 0.000511696795, 0.0156944357, 0.00619941717, 0.0356754549, 0.00457754359, -0.0121107576, 0.0313197337, 0.0041944012, -0.00139933405, -0.00151816581, 0.0202690978, -0.000164383935, -0.0103592491, 0.0127560496, 0.00123224943, -0.00448535895, 0.00115014741, 0.0156944357, -0.000921126222, -0.0075994716, 0.00633769436, -0.0221012682, 0.0214444529, 0.000553467951, -0.0120300958, 0.0139544504, 0.0170541592, 0.0267335456, 0.014023589, 0.0221473593, -0.0117132114, 0.00911475625, 0.00891886372, 0.00260565663, -0.00755337905, 0.0159018505, -0.00811801, 0.0119033419, -0.01803362, -0.00271368539, -0.007852979, 0.002761218, 0.033739578, -0.0113387108, -0.00858469494, -0.00406476669, -0.00443062419, 0.00846370216, -0.00619941717, 0.00772046391, 0.0314810537, 0.00179616013, 0.0111140106, -0.0223662984, -0.0402385965, 0.0120992344, 0.00556852855, 0.00347132795, -0.00720192492, 0.00114294549, 0.00352606247, -0.0154639734, 0.00511336699, 0.0112234801, 0.00354910875, 0.00177743507, 0.0554490611, 0.0170311127, -0.0188402366, 0.00989832636, 0.0125486348, 0.012686911, -0.00451128604, -0.00511336699, -0.00393225113, -0.00650477875, 0.0144153731, -0.0126638655, 0.00676980941, 0.00667762477, -0.00223259674, -0.00539856311, -0.0102728261, 0.0258577913, 0.00438741269, -0.0261573922, -0.0208913442, 0.00420880504, 0.0148302047, 0.0138276964, -0.0296143163, -0.0121914186, 0.00359520107, -0.0320341624, -0.00882091746, -0.0234379452, 1.81173436e-05, 0.0315501951, 0.000665457861, 0.00608418649, -1.86799934e-05, -0.0212946516, 2.32487146e-05, 0.00266615278, 0.00819867197, -0.026065208, 0.0179644823, -0.0108893104, -0.0116267884, 0.00955839548, -0.0038054972, 0.0144268963, 0.00674676336, -0.0192665905, -0.00985223334, 0.0140581578, -0.000987383886, -0.0204073749, -0.00169677357, -0.0143462345, -0.00492035504, -0.00629160181, 0.00103491661, 0.0309509933, 0.0137355113, -0.0150145739, -0.00672371732, -0.0290151164, -0.0131132649, 0.0112983799, 0.0216864366, -0.00381702022, -0.0115979798, -0.000369098678, 0.00356927421, -0.00849251, 0.00458042417, 0.00339642796, 0.00549650937, -0.0029124585, 0.00717887888, 0.0105897104, -0.00353470491, 0.0040734089, 0.0187365282, -0.0122490339, 0.0292225312, -0.0223778225, 0.00949501805, 0.0130210808, -0.0105090495, -0.00147063308, -0.00817562547, -0.0025264353, 0.00822748, -0.00713854842, 0.00588253234, 0.0366894864, 0.0115806954, 0.0145651735, 0.014196435, -0.00175871013, -0.000650333823, 0.00474462844, 0.0229309294, -0.00508455932, 0.00204678718, -0.0393397957, -0.0195431449, -0.0150952348, -0.00663153268, 0.00991561078, -0.00676980941, 0.00249618734, 0.0115230801, -0.024682438, -0.0109526878, -0.0144499429, 4.49220097e-05, -0.0038775166, -0.0160977431, -0.00529197464, 0.0128482347, -0.00252931612, 0.0168467425, -0.0196122825, 0.0190015584, -0.00879787188, -0.00520555163, 0.00608994812, 0.0022484411, -0.00650477875, 0.0148302047, 0.00660272501, -0.00539568253, -0.0026387854, -0.0112695722, -0.00365281641, -0.0089073414, -0.00367586268, -0.0169965439, 0.00695994031, -0.00681014033, -0.0106300414, -0.00201365817, 0.00180624286, 0.00377668953, 0.00972547941, 0.0103650102, 0.00231902, -0.0109987799, 0.00115014741, 0.0146227889, -0.0140351113, 0.00129058503, -0.00934521761, 0.0175266042, 0.00113214261, 0.000336870056, -0.00474462844, 0.0203497596, 0.0075994716, -0.0216057748, -0.00768589461, -0.0100826956, 0.0229885448, 0.00531214, -0.00358943944, 0.0376574248, 0.0111716259, -0.0206378363, 0.00611875579, -0.00918965694, 0.0017860774, -0.0053553516, -0.00710397912, 0.012813665, 0.012859758, -0.00967938732, 0.0339469947, 0.0133667728, -0.00865959469, -0.00201797951, -0.0110103032, -0.00781841, -0.0265030842, -0.0103362026, -0.016696943, -0.0117708268, 0.0129749887, 0.0117881112, -0.0126753887, 0.00749576371, 0.0204419438, 0.011563411, -0.000985223334, 0.0192781128, 0.0250050835, -0.0012999475, -0.00872873329, 0.00846370216, 0.00197764859, 0.011350234, -0.0094143562, -0.00803158712, 0.0138737885, -0.0070290789, -0.00104715989, 0.00483969366, -0.00281595276, 0.008457941, -0.0037997358, -0.00094993395, -0.0119033419, 0.000836143503, -0.00761099439, -0.00546194, -0.00446231291, 0.0163282044, 0.0035663934, 0.0129634654, -0.00633193273, -0.00161179085, 0.00471870136, -0.0015541754, 0.00468989369, -0.0122259883, 0.0204188973, -0.0327025019, -0.0222856365, -0.0322415791, -0.00497509, -0.000371979433, 0.00518826675, 0.0319189318, -0.00701179449, 0.0265722238, 0.022354776, 0.0241754223, 0.00420592446, 0.00848098751, -0.015533112, -0.00370178954, -0.0186097752, 0.00958144106, -0.00615332462, -0.0133437272, -0.0127675729, 0.0202806219, -0.00347420876, 0.0176533591, -0.00394665496, 0.00355775096, -0.00850403309, -0.00149944087, -0.0148302047, 0.0123296957, 0.0229078829, -0.000140527569, -0.00569240144, -0.0112926187, 0.00291533931, -0.00324662775, 0.00708093261, -0.0109699722, -0.00215625647, -0.00803734828, 0.0235070828, 0.00742086349, 0.00838304125, -0.000460923213, 0.0143347122, -0.0166047588, 0.0117996344, -0.000568231917, 0.012514065, 0.00848098751, 0.00548498612, 0.00153689086, -0.00716159446, 0.0219745133, -0.00160746975, -0.0120185725, 0.0145882191, 0.0104975263, -0.016915882, 0.00286348537, 0.00154697348, -0.00166364468, 0.0105090495, 0.0043067513, -0.0176303126, 0.00724225584, 0.0299369618, 0.00531790173, -0.0126984343, 0.0192089751, -0.00154841389, 0.00311699323, -0.0204073749, 0.0235992689, 0.0315271467, 0.0159133747, -0.00508455932, 0.00683318637, 0.00671795569, 0.0217670985, -0.0135741886, 0.00812377129, 0.00355775096, 0.0170541592, -0.010180641, -0.0130095575, 0.0212024674, 0.00888429489, -0.00147423404, -0.00137988885, -0.0053467094, -0.0141618652, 0.00720192492, -0.0169274043, -0.0319880694, 0.0209143907, 0.0162014514, -0.00529773626, 0.0156829115, -0.00514505524, 0.0141849117, 0.031458009, -0.000702907913, -0.00999627169, 0.00704636378, 0.0235416535, -0.0131824035, -0.00288509112, 0.00478784, 0.0175381284, -0.00750152534, -0.00348285097, -0.00382854347, 0.00839456357, -0.00996746402, 0.000889437739, 0.00487426296, 0.0091262795, 0.0197736062, 0.0169043578, 0.0148762967, -0.00579322875, 0.00417711679, -0.0139544504, -0.000149439948, -0.0163858198, -0.00481664762, 0.020972006, 0.0152796041, -0.0143231889, 0.00303057, -0.00312275463, 0.00982342567, 0.00694841752, 0.016869789, 0.00805463269, 0.0239219144, 0.0309740398, -0.00356351258, -0.0136202807, -0.0146919275, -0.019197451, 0.00548210554, 0.0145997424, -0.00826781, 0.00260133529, -0.0182295125, -0.00916661, -0.0019027486, -0.00739205582, 0.0188517589, -0.00342523563, 0.00264022569, 0.00266327197, -0.00236799289, -0.00171981973, -0.0102094486, -0.0104514342, 0.0066833864, -0.00845217891, 0.00180912355, 0.0329329632, 0.0125601571, 0.0240371451, 0.00655663246, 0.0016708466, 0.0092587946, 0.0214559752, -0.0168121736, -0.00755337905, 0.000951374299, -0.0145306038, 0.011004542, -0.0370812714, 0.00386887416, 0.00265895086, -0.00717887888, 0.00864231, -0.018079713, -0.0255812388, -0.00491747446, -0.00775503321, 0.00588253234, 0.010872026, 0.00616484787, 0.0114020882, 0.00950077921, 0.00678133266, 0.0025653257, -0.00692537101, -0.00743238674, 0.00315156253, -0.00234638713, -0.0063261711, 0.0131824035, 0.0203382373, -0.0150260963, 0.00958144106, -0.00117751479, 0.0204419438, -0.0126523422, 0.0151528502, 0.000651774229, 0.00445078965, -0.00359520107, -0.0180681907, -0.00822748, 0.00167804852, 0.00260997773, 0.0328638256, -0.0164664816, -0.0106415646, 0.00569240144, -0.00607842486, -0.0174459442, -0.00954111, 0.00663729431, 0.0218592826, 0.00266183144, 0.00933369529, 0.0112983799, 0.012168373, -0.0273097, 0.00901104882, 0.00545041682, 0.00105724263, 0.014023589, 0.0191859286, -0.0168006513, 0.0206839293, 0.0041166204, -0.00916661, -0.0113271875, -0.0188863277, -0.013850742, -0.0202460513, 0.0128943268, 0.0217786208, -0.0209950525, 0.00721344817, -0.00544465519, 0.00164491974, 0.00166220427, -0.00623398647, -0.00789331, 0.0134474346, -0.00955263339, -0.0100769335, -1.17593936e-05, 0.00744391, 0.0230807289, -0.00564630935, 0.0261343457, 0.00240256218, 0.00322646252, 0.00927608, -0.00369314733, 0.0187826212, -0.000295639038, -0.00504999, -0.000160782976, -0.00288941246, 0.0215135906, -0.00289661437, 0.0144153731, 0.00818714872, 0.00779536366, -0.018298652, -0.0152796041, 0.00681590196, -0.000860630069, -0.0138622653, 0.0208798219, -0.000400066929, -0.0307205319, 0.00394089334, 0.0161784049, 0.0242215153, -0.0352375805, -0.0122259883, -0.00876330212, -0.00106084358, 0.0196583755, 0.00687927892, 0.00389480102, 0.00887277164, 0.00327543565, 0.0200732052, -0.00063052855, -0.024682438, 0.0111658648, -0.0151643734, 0.0131593579, -0.00158010237, -0.0176418349, 0.014668881, -0.0135511421, 0.00447671674, -0.00499525527, -0.0149454353, 0.00807191804, 0.0207645912, -0.0168582667, 0.00851555634, 0.011476988, 0.00640107086, -0.00405036286, 0.0207761135, 0.0179183893, -0.0153833125, 0.0142079582, -0.0134589579, -0.00360384327, 0.00543313241, 0.0151758967, -0.00746119441, 0.0213983599, -0.00258117, -0.0106646111, -0.0092587946, 0.00508167828, 0.00501253968, 0.00560309784, -0.00314292, 0.00974852592, -0.00285628345, -0.00509320153, 0.00481664762, 0.0130786961, 0.0114942724, 0.00532654393, -0.00086639158, 0.00734020211, -0.0157635733, -0.00770317903, 0.0195200983, 0.0103362026, 0.00962177198, 0.00198629103, 0.0190476514, -0.00149511965, 0.00998474937, -0.0310201328, 0.00481088599, -0.0190591756, -0.0100769335, -0.0143462345, 0.00497220922, -0.000285196234, 0.0135280965, 0.00610147091, -0.000921846426, -0.00113718398, 0.00856741052, -0.0117881112, 0.00610147091, 0.0147495428, -0.000499813585, -0.00383718568, -0.0330251493, 0.00089735986, 0.00270072185, -0.00490019, -0.000989544555, -0.022135837, -0.000562110275, -0.0063953097, -0.00407917053, 0.00887277164, -0.0127445264, 0.00257972954, 0.00829661731, -0.00502982456, 0.00501542073, 0.0215135906, 0.0107107032, -0.0120646646, -0.00497220922, 0.0080143027, -0.00289517385, -0.00621094042, 0.00080661563, 0.0017457467, -0.00145766966, 0.00652206363, 0.00127330038, 0.0221473593, 0.0105148107, -0.0138392197, -0.0111140106, 0.0123066492, -0.0059459093, -0.00596319418, -0.00130931, -0.0142655736, 0.00988680311, -0.00375940488, 0.022135837, -0.0072537791, -0.003883278, -0.00161611196, 0.0126984343, 0.011736257, 0.0152796041, 0.0131132649, -0.0108086495, 0.0022930929, -0.0349379778, 0.0241984688, 0.00777807925, -0.00175726973, -0.00128914462, 0.0017443063, 0.0205110833, 0.0108374571, 0.00424049376, -0.00900528766, -0.00108893111, -0.00804887153, -0.00421168562, -0.0280471779, 0.00203238335, -0.00787602551, 0.0144384196, 0.00527180918, -0.0136548504, 0.0206954516, -0.00137196679, 0.0151182814, 0.00559733622, 0.00286348537, 0.00514505524, -0.0187134817, 0.0190706979, -0.00709821749, -0.0204765145, -0.000651054, -0.00959296431, -0.0318958871, -0.0116383107, 0.00676404824, -0.00366433943, -0.000525020354, 0.016915882, -0.0181718972, 0.0253507774, 0.0113214264, -0.000973700255, 0.00446231291, 0.0159133747, -0.0149108656, -0.0159479436, 0.000888717535, 0.0043413206, -0.00642411737, 0.00148503692, -0.00439605489, -0.0215251148, 0.0213061757, -0.0105032874, 0.00795092527, 0.0160862207, 0.0128943268, 0.00780688692, -0.00829661731, -0.0194740053, -0.0166162811, -0.0112753343, -0.0173652824, 0.000493691943, -0.0230115913, 0.0144384196, 0.0018264082, 0.0202690978, -0.0174689889, -0.00293550477, 0.0136433272, -0.00458042417, 0.00143174268, 0.0129173733, 0.0114539415, 0.00573273236, -0.0107567953, -0.00745543279, -0.0091262795, 0.0215712059, 0.019808175, -0.000675900665, -0.0142655736, -0.00498373201, -0.00646444783, 0.00191715243, -0.00755337905, -0.00363553176, 0.0124679729, 0.00202230061, 0.0107567953, -0.00865383353, -0.0150376195, -0.0128712803, -0.0105436184, 0.000851267541, 0.0140120657, -0.00491171284, 0.00656815572, 0.013977496, -0.000498733309, 0.00861350261, 0.00956415664, -0.000151420478, 0.00826781, -0.0230576843, 0.00879787188, -0.018471498, -0.0125025418, -0.0189900361, -0.0105378572, 0.00199493323, -0.0246593915, 0.00301904697, 0.0205917452, -0.0135857118, -0.00643564, 0.00622246321, 0.00423761271, 0.00629736343, -0.0024140852, 0.0103707723, 0.0171002503, -0.0241523758, 0.010094218, -0.00743238674, -0.0064932555, 0.0108605027, 0.0125601571, 0.0189208984, 0.0154409278, -0.0145306038, 0.0109930187, 0.00954687223, -0.00556564797, 0.00259125256, 0.00266903336, 0.0174459442, 0.00959872548, 0.00296431244, -0.00704060216, 0.0141733885, -0.000929768546, 0.00969091058, 0.000209215927, -0.027056193, 0.00066725834, 0.00357791642, -0.00079293194, -0.016869789, -0.00826204848, 0.0141042499, -8.74583784e-05, -0.0122951269, -0.00391496671, 0.000646012661, 0.0148186814, 0.0144038498, 0.00631464785, 0.0190130826, 0.0162936356, -0.00394377438, 0.000404388091, -0.0106876567, 0.000654655, 0.00637226319, 0.00200069486, -0.00713854842, -0.00983494893, 0.0139083583, -0.01039958, 0.00268199691, -0.0332786553, 0.0310201328, 0.00568952085, 0.017088728, 0.0208106823, -0.00613027858, 0.000937690667, -0.00960448757, -0.0012416119, 0.000948493544, -0.0125716804, -0.0241062846, -0.000970819499, -0.00575001724, -0.0131824035, -0.0046870131, 0.000701107434, -0.0123642655, -0.00418287795, -0.00174142548, -0.00332152797, -0.0254660081, 0.00323510473, 0.00998474937, -5.49146789e-05, -0.00689080218, -0.000360096252, 0.00352894329, 0.000621526153, 0.0173883289, -0.00694265589, -0.0173191894, 0.00134676, -0.0149454353, -0.0247054845, -0.0161207896, -0.00833118707, -0.0382105336, -0.0128367115, 0.00387463579, 0.00199061213, 0.0101691186, 0.0185060669, 0.00749000208, 0.0127790961, 0.00855012517, 0.0019848505, -0.00897647906, -0.000817418506, -0.015752051, -0.00428082421, -0.00183937163, 0.0144960349, 0.00739781745, 0.0210872367, 0.027056193, -0.00660272501, -0.00776079437, 0.00744967116, 0.00114006479, 0.0011458263, 0.0146112656, 0.00916084833, 0.0262265299, -0.0088151563, 0.00672947895, 0.00522571709, -0.0275171157, -0.0137931267, -0.0133206807, 0.00905138, 0.00238959887, 0.0211678986, 0.0201653913, 0.0153833125, -0.00797397178, 0.0100884568, 0.00225708331, 0.0135626653, 0.00581339421, 0.00375076267, -0.0186673906, -0.0129288957, -0.0191398356, -0.00697722519, -0.00879211, 0.00967362616, -0.0173307136, -0.0110506341, -0.0230692066, 0.00804311, -0.0109469267, -0.00097298011, 0.043879889, -0.0127560496, 0.0169274043, 0.0126177724, 0.00116095028, 0.0160055589, 0.00115374837, -0.0204765145, 0.0203036666, 0.0261113, -0.00784145575, -0.0200962517, -0.00806039479, -0.0226313304, -0.0119609572, -0.0177685898, 0.0219284222, 0.00203382364, 0.0110275876, 0.0062051788, 0.00669490965, 0.0197159909, 0.00176447164, 0.000552747748, -0.000970099296, 0.00875178, 0.0409760736, -0.0212946516, -0.00257828925, 0.0127906194, -0.00312851625, 0.014369281, -0.0396624431, 0.00463804, 0.020626314, 0.0159709901, 0.0275632087, 0.0102670649, 0.0108259339, -0.00526892859, 0.00523147825, -0.0253277309, 0.00503846677, 0.0132400189, 0.0178146828, 0.009062903, -0.00480224378, 0.00487714354, -0.017261574, 0.00519979, -0.0165586658, -0.0306744389, -0.00395529717, -0.0070290789, 0.00970819499, -0.00605537882, 0.00931641, -0.0269179158, -0.000131615176, -0.0114308959, -0.00549074775, 0.0238527767, 0.00765132532, -0.00226860633, -0.0147034507, -0.0100826956, -0.0288768392, 0.00471582077, -0.0203497596, 0.00686199451, -0.0193126816, 0.00869992562, -0.0132169733, 0.00994441845, 0.00049513235, 0.0114481803, 0.00492035504, 0.0108432183, -0.0102613028, -0.0358137339, -0.00670643291, -0.0358367786, 0.0248668063, 0.0114424182, 0.0272866543, -0.0216288213, -0.0162014514, -0.00686775567, -0.00250338926, -0.00909171067, -0.0278858542, 0.0143577578, -0.0106358035, -0.044317767, 0.00700603286, 0.00696570193, -0.0196814202, 0.0332325622, 0.00368450489, -0.00360384327, -0.0175381284, 0.0055800518, 0.000975140661, 0.0104687186, -0.000573993428, 0.00913780276, -0.02502813, -0.0048627397, -0.0295912698, -0.0151989432, 0.00439605489, -0.00394089334, 0.00143390335, -0.00469565531, -0.0108547416, -0.00149367924, -0.0178377274, -0.000911043549, -0.00822171755, -0.00981766451, -0.0242215153, 0.00131075038, -0.0122259883, -0.00370178954, -0.00305649708, 0.0139890192, -0.00111269741, 0.0110333497, -0.00872873329, 0.00597471697, -0.00475615123, 0.0128251882, 0.00608994812, -0.00719616376, 0.00463515893, -0.0034540433, -0.00982342567, 0.00190130819, -0.00528045138, -0.00592862489, 0.0186904352, 0.000434276095, -0.0141618652, 0.0102036875, -0.00294990861, -0.0180566665, -0.00249330653, 0.0171117745, 0.00394953554, -0.00652782479, -0.00513641303, 0.0102843493, 0.025719516, -0.00500389747, 0.0112926187, -0.0165932346, -0.00623974809, 0.0162936356, 0.0176533591, -0.0184830204, -0.0130671728, -0.0144268963, -0.00430098968, -0.0187826212, -0.0165356193, -0.0157635733, -0.0124910185, -0.0332095176, -0.00203814474, -0.0280010849, 0.0117304958, 0.00293694506, 0.00581915537, -0.00185665628, -0.00109685317, -0.00951230247, 0.00100322813, 0.0225737151, -0.0141157731, 0.031112317, -0.0264109, 0.0143116657, 0.0031025894, -0.00614180183, -0.0157290045, 0.00610723253, -0.0265261307, -0.00317748939, -0.00443926686, -0.00324374717, 0.00721344817, -0.0081698643, -0.0154178813, -0.0190706979, 0.00644716341, -0.0180912353, -0.0142194806, 0.0123066492, -0.0134243881, -0.0167660825, -0.00609570928, 0.0019848505, -0.00331864716, -0.00191283133, -0.00341659319, -0.00489442842, -0.0154754966, 0.0212716069, -0.00346844713, 0.00719040213, 0.00450264383, -0.0233111922, 0.000639891077, 0.00394377438, -0.00626855576, 0.00573273236, 0.0081468178, -0.0182756055, -0.00944892596, -0.0234609917, -0.0188287124, -0.0374269634, -0.000399706856, -0.00509320153, 0.00252355449, -0.0183677897, 0.0253277309, 0.0145306038, 0.0102613028, -0.0117074493, 0.00967938732, 0.000136296439, 0.00687927892, 0.0252355449, 0.012686911, 0.0095065413, -0.0124449264, -0.0319419801, 0.00821595639, -0.00495492434, -0.0222049765, 0.00255524297, -0.00610147091, -0.0163973439, -0.00910899509, 0.0215135906, 0.00731715607, 0.00606690161, 0.00466684764, -0.00378821255, -0.000933369505, 0.000486129953, -0.00769165624, 0.00192579476, 0.0176764056, -0.0137009425, 0.00214329292, -0.0122375116, -0.00459482847, -0.0164319128, -0.00434420118, 0.00742086349, -0.0201538671, 0.0327485949, 0.0119033419, -0.00371907419, -0.0255812388, 0.0202575754, -0.00549650937, -0.0142194806, 0.0100654103, -0.00539856311, 0.00167660823, -0.00618213275, 0.0112868575, 0.00573273236, -0.0106646111, 0.00303921243, 0.00875178, 0.00832542591, -0.0046870131, 0.0033762625, -0.00224123918, 0.00112710125, -0.00269640074, 0.000968658947, 0.00130282831, 0.0215827301, -0.00386023195, 0.00523724, -6.8958434e-05, -0.00226284494, 0.0191283133, 0.000112440059, -0.000250266894, -0.0156829115, -0.017042635, 0.0272866543, 0.00710974028, 0.00691961, -0.00522283604, -0.0114308959, -0.0205686986, 0.0015945062, -4.57547321e-05, -0.00848674867, 0.0217210054, 0.0171693899, -0.00203814474, -0.00747271767, 0.000692105, -0.020845253, -0.018471498, 0.00217354111, 0.0143001424, 0.0105090495, -0.00953534897, -0.00720192492, 0.00554260146, -0.00157578127, 0.0196007602, -0.0299830548, 0.00777231762, 0.00250482955, -0.00827933289, -0.00137124653, 0.00389480102, 0.0081698643, 0.00295855082, -0.0291533936, -0.00837727915, 0.00811801, 0.00559733622, 0.00135252159, -0.000544465554, -0.00841761, -0.00404460123, 0.0142540503, 0.0211909451, -0.000465244375, -0.000722713186, -0.00476479391, 0.0358367786, 0.0205341298, 0.0325181335, 0.00766284857, 0.0193818212, -0.0189900361, 0.00364993559, -0.000536543434, -0.00378245115, -0.0270792376, -0.00791059434, -0.00419728179, -0.00207415433, 0.0110275876, 0.00958144106, 0.000347492896, -0.0078587411, -0.00617637113, 0.00802006386, -0.00149223884, -0.00296143163, -0.019762082, -0.00747271767, -0.0140696811, 0.00737477141, 0.0158327129, 0.00899376441, 0.000301580614, -0.016961975, 0.00736324815, 0.00246593915, -0.0200616829, 0.00573849399, -0.0315501951, -0.0172500517, 0.0122144651, 0.00519402837, -0.0031803702, -0.0375191495, -0.00207847566, -0.0070290789]
|
04 Sep, 2021
|
How to add vertical skew to a canvas-type text using Fabric.js ?
04 Sep, 2021
In this article, we are going to see how to add a vertical skew to the canvas-like text using FabricJS. The canvas means text written is movable, rotatable, resizable, and can be stretched. But in this article, we will add vertical skew. Further, the text itself cannot be edited like a textbox.Approach: To make it possible, we are going to use a JavaScript library called FabricJS. After importing the library using CDN, we will create a canvas block in the body tag which will contain our text. After this, we will initialize instances of Canvas and Text provided by FabricJS and use the skewY property to add vertical skew and render the Canvas on the Text as given in the example below.
Syntax:
fabric.text(text :string, skewY: number);
Parameters: This method accepts two parameters as mentioned above and described below:
text: It specifies the text.
skewY: It specifies the vertical skew.
Program: This example uses FabricJS to add vertical skew to canvas-like text as given below.
html
<!DOCTYPE html>
<html>
<head>
<title>
How to add vertical skew to a canvas-type
text using Fabric.js ?
</title>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000;">
</canvas>
<script>
// Create a new instance of Canvas
var canvas = new fabric.Canvas("canvas");
// Create a new Text instance
var text = new fabric.Text('GeeksforGeeks', {
skewY: 10
});
// Render the text on Canvas
canvas.add(text);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?
|
https://www.geeksforgeeks.org/how-to-add-vertical-skew-to-a-canvas-type-text-using-fabric-js?ref=asr10
|
CSS
|
How to add vertical skew to a canvas-type text using Fabric.js ?
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.018432105, 0.0105183208, -0.0187201072, 0.0199472439, 0.0639113188, 0.0105934516, -0.0346102826, 0.0166665297, -0.0337087139, -0.017906189, 0.00815795921, 0.00153470435, 0.0144752124, -0.0474576615, -0.00392871816, 0.0121273734, -0.0165162683, 0.00613881741, 0.00437637279, 0.00623586169, 0.00131244224, -0.000883570232, -0.0280488562, -0.012747203, -0.00975449, 0.0198971573, 0.0177809708, 0.00825813413, -0.0298019089, 0.02359109, 0.0249810126, 0.0161907, -0.0124341575, -0.0377908237, -0.0145253, -0.00112304988, 0.0124466792, 0.0540942214, -0.0154894795, 0.00532176951, 0.00850230921, 0.0243799649, 0.00971692521, 0.0217128191, -0.00703725731, -0.0297768656, 0.0276231132, -0.0171924457, -0.0128473779, -0.0381163917, 0.0324565321, 0.0318805277, 0.0307034794, 0.00138209481, 0.0111444118, 0.020435594, 0.0339591503, 0.0129350303, 0.0355619416, -0.0015018346, 0.0092097912, -0.0924610496, -0.0175054912, -0.0267215427, -0.0362130776, -0.0242672693, -0.0255319718, 0.00590090314, -0.0173677504, 0.0166665297, -0.0131854666, -0.0126720723, 0.036889255, -0.00233844807, -0.00353741134, -0.0149385203, 0.0159778297, 0.0132105099, -0.0321309641, 0.0335834958, -0.00228679553, -0.0138992099, -0.0395689197, 0.00812039431, 0.00522785587, -0.00302245189, 0.00827691704, -0.033082623, -0.00916596502, 0.0318554863, -0.0067680385, 0.00183131476, -0.0038128912, -0.0544448309, -0.0181941912, -0.00348106329, -0.000427306775, -0.0325316638, -0.0121774608, -0.000801395858, 0.00379410852, 0.0408962332, 0.020335421, -0.0674675182, -0.028449554, -0.0183194093, -0.00125765929, -0.0191708915, 0.0337087139, 0.00648003677, 0.0336586274, -0.0182067119, 0.0289504249, 0.050262548, -0.0543947443, 0.0231528282, -0.020598378, -0.0846474394, 0.0453289524, -0.00272192853, -0.0152515648, -0.0282241609, -0.00748804258, 0.0246930104, -0.0234408285, 0.0349859372, -0.0207110737, -0.020861337, 0.0244300514, -0.00341532379, -0.04718218, -0.0308286976, 0.0284745973, -0.00512768142, 0.0583516359, 0.00422924152, 0.00355306361, 0.0197093301, -0.038016215, 0.00481463596, -0.00575064123, -0.0231653489, 0.00562542351, 0.0344850644, -0.0271723289, -0.00873396266, -0.0150512159, 0.0287500769, -0.0271472856, 0.0355869867, -0.0315299183, -0.0457546972, 0.0225643031, 0.0127847688, 0.0297518224, -0.0280739, 0.00467376597, -0.0262206718, 0.0324064456, 0.0108063221, 0.0147131272, -0.0201350711, 6.6473207e-05, 0.0162533093, 0.00349358516, -0.0136487735, 0.0115701528, -0.0277733747, -0.0219256897, 0.0234909169, -0.0199597664, -0.0380913466, 0.0267716311, 0.0120710256, -0.0594034679, -0.0142498203, 0.0277483314, -0.0390430056, 0.0101614492, -0.0312293954, -0.0655642, -0.00360002043, 0.0162783545, 0.047407575, -1.42093204e-05, 0.0102678845, 0.0175180137, -0.0235159602, -0.00828943867, -0.0163910501, -0.0261455402, 0.0108376266, 0.0121524166, -0.0205608122, 0.0233656988, -0.0127096372, -0.0043544597, 0.00703725731, 0.00245740521, 0.0110567585, 0.0145127783, -0.00428559, -0.0168042704, -0.0358624645, 0.0103492765, -0.00117235456, 0.00101661449, -0.0463056564, 0.0209364668, 0.00684316922, -0.00427619833, -0.00146270404, 0.0194588937, 0.00526542123, 0.000926614, 0.00317427889, -0.00807656813, 0.0138240792, -0.0111757154, -0.015376783, -3.50463961e-05, 0.0262206718, 0.0164536592, 0.00518402969, -0.0398694463, 0.00357184652, 0.0375904739, 0.0198470689, -0.0178435799, -0.0123402439, 0.00659273332, -0.02233891, 0.0112633687, -0.0236286558, 0.060856, -0.0203479417, -0.0339341052, 0.019483937, 0.0119771119, 0.00348106329, 4.0842624e-05, -0.013799035, -0.0155520886, -0.0415974557, 0.0272474587, 0.0395438783, 0.00301306066, 0.00449533, -0.0193336755, -0.031079134, -0.00960422866, -0.00795761, 0.0286248587, 0.0126282461, -0.00411967561, -0.00342471525, -0.000788482779, -0.0202728119, 0.0341845416, 0.0342346281, 0.0365386419, 0.0106310174, -0.0231778715, 0.00662403787, 0.00879031047, -0.0139117315, 0.00545637868, -0.0352614187, -0.0111506721, 0.00925361831, 0.0106059732, -0.0495362803, 0.00518402969, -0.0398944877, 0.00778230513, 0.0101864925, -0.0261705834, 0.0108814528, 0.0122400699, 0.000404219696, 0.000492263702, 0.0104181459, 0.0484844483, 0.0826439485, 0.0203228984, -0.0176933184, 0.00642368896, 0.00579133723, -0.0463306978, -0.00746299885, 0.0135485986, -0.0346854143, 0.0210742075, -0.0209865551, 0.0283493791, -0.00657395041, 0.0104181459, -0.0155520886, 0.0198846348, -0.0244550966, -0.0130477268, -0.0219632555, -0.00804526359, -0.0183068868, -0.00694334367, 0.00742543349, -0.0119207632, 0.0311542638, 0.00266088475, 0.029501386, 0.0620080046, -0.0238415264, -0.0478583612, -0.00155348715, 0.00285966857, 0.00766334822, 0.0355869867, -0.00349671557, 0.00461428706, 0.0168042704, -0.0182317551, -0.00586020714, 0.00800143648, 0.0212119464, 0.0721256286, -0.0276732016, -0.00660525495, -0.0555467494, 0.00714995386, 0.00118878938, -0.0242547467, -0.0424238928, 0.00557846669, 0.0227896944, 0.00834578648, 0.00496802852, -0.00892179, -0.00166696601, -0.0244676173, 0.00340280193, 0.0207987279, 0.00526542123, -0.044252079, -0.0333080143, 0.0436760746, -0.0700720549, -0.00958544575, 0.018958021, 0.0483091436, 0.0231778715, 0.000782221847, 0.0384920463, 0.0259201471, -0.0231403057, -0.00111522374, -0.0339341052, -0.00898439903, -0.0413219742, -0.00971066393, 0.0424990244, 0.0227396078, -0.0293761678, 0.0164160933, 0.000736047688, -0.000947744527, -0.0630097538, -0.0424238928, -0.0321810544, -0.0309789591, -0.0258700605, -0.0387675241, -0.0293010361, -0.0101113617, -0.0536935218, -0.0404204056, -0.0424990244, -0.0267966744, -0.00590403378, -0.0238916148, 0.0173927955, -0.0218255147, 0.0153016523, 0.0214623827, -0.00253253616, 0.0269970242, 0.014850867, -0.0562980585, -0.0134484246, 0.019383762, 0.0200599395, -0.036964383, 0.00523411669, 0.00939135812, -0.00291288621, -0.0128599, -0.0328071415, 0.000578742416, 0.00377845624, 0.0092097912, -0.0327320136, -0.00880909339, 0.00752560794, -0.0149259977, -0.0350610688, 0.0347855911, 0.0186449755, -0.0325066186, -0.0179312322, 0.0399946608, -0.0263208449, 0.00910335593, 0.00557220588, 0.000134120331, -0.0431000702, 0.0332078412, 0.0342095867, 0.0155896544, 0.0473825298, 0.00069848221, -0.014850867, 0.0629095733, -0.0131854666, 0.00897813775, 0.00567864114, -0.0494611524, 0.029701734, 0.00957292411, 0.0113885868, 0.00138366, -0.0225768238, -0.0930620953, 0.0049085496, -0.00225236057, -0.0166039206, 0.0151889557, -0.00260453648, 0.0680184737, 0.0203479417, 0.0479334891, 0.0146880839, -0.0166790523, 0.0126845939, 0.0137489475, 0.0205357689, -0.0276481584, 0.0308787841, -0.0276231132, -0.00947901048, 0.0172926206, -0.0190081075, -0.0307285227, -0.00563168433, -0.0693207458, -0.0149385203, -0.0107562356, -0.0274227653, 0.01764323, 0.00872770231, 0.019283589, -0.0371146463, -0.0089718774, 0.000257479725, -0.0112132812, -0.000986875151, 0.00963553321, -0.0253942311, -0.0196592417, 0.00338714966, -0.000593220757, 0.0095791854, 0.0235284828, 0.0140369497, -0.00162470492, 0.0322561823, 0.0172300115, 0.0056066406, -0.00165287894, -0.0341094099, -0.000432393776, -0.0150512159, 0.00835204776, -9.22505278e-05, 0.00560977124, -0.0178561024, -0.00991727412, -0.0423738062, 0.0292759929, -0.0241796151, -0.0112320641, 0.0286749452, 0.0685193464, 0.0376405604, 0.0158150457, -0.0253691878, 0.0183444526, 0.0154644363, -0.0173927955, -0.0188828893, 0.0294763427, -0.00888422411, 0.00329949707, 0.0433755517, -0.00851483084, 0.0235034376, 0.0229399558, 0.0166790523, -0.0186950639, 0.0263959765, -0.0260453653, -0.0210491642, -0.0145253, -0.00378158665, -0.0123089394, 0.0126595506, -0.01833193, -0.0209865551, -0.0120960688, 0.000914092176, 0.0322311409, -0.00207862048, 0.011958329, -0.0214248169, 0.019546546, -6.25112225e-05, 0.00577568496, 0.0387174375, 0.0082205683, -0.0190957617, 0.0069809095, -0.0169294886, -0.0298019089, 0.00217879494, -0.0106936265, 0.0129225086, 0.0250686649, -0.0207361188, -0.0141997328, -0.00253253616, 0.0177183617, -0.0198971573, -0.0412468426, 0.0106372777, -0.0476580113, -0.00371271675, -0.00812665466, 0.0140369497, -0.0042104586, -0.0205357689, -0.0145378215, -0.00421672, -0.00993605703, 0.0188703686, -0.0193336755, 0.0133106848, 0.027923638, 0.0132856406, -0.0291507747, -0.02427979, -0.0115513699, -0.00641742768, 0.0142122544, 0.0263208449, 0.0376906507, 0.0221636053, 0.0065864725, -0.0277984198, 0.00692456122, 0.0387675241, -0.0310040023, 0.00397254433, 0.0407459699, -0.0248683151, 0.00717499759, 0.00649881968, 0.00703725731, 0.0129725952, 0.0287751202, -0.0146630397, 0.0279737245, -0.00142670376, 0.0125531154, -0.0239417013, 0.00773847895, -0.0086838752, 0.010461973, 0.0402200557, -0.0247931853, -0.0153266964, -0.0480086207, -0.00249027507, 0.0123214619, 0.0257448424, -0.00537498714, 0.0370896, -0.00627029641, 0.0188077595, 0.0103617981, 0.00914718211, 0.0285747722, -0.0401449241, 0.0246178787, 0.0482590571, -0.0134609463, 0.0280238111, -0.0241170079, -0.0171924457, 0.019483937, -0.0147381714, 0.0161155704, 0.0135986861, -0.0466061793, 0.0188954119, 0.0213246439, -0.0156647842, -0.0374652557, -0.011776763, -0.00813917723, 0.0258951038, -0.0157774817, 0.0118831983, 0.00693708286, 0.024605358, 0.0257698856, -0.0111444118, 0.0500121117, 0.036964383, 0.00379723893, 0.000309914816, 0.0214999486, -0.0244550966, -0.0318805277, -0.000235370899, -0.0427745059, -0.000212088169, 0.0400948375, 0.0180940162, -0.0126407677, 0.00801395904, -0.0388677, -0.00785743631, -0.00934127066, 0.0324064456, 0.00532176951, 0.0349859372, -0.00570368487, -0.00278923335, -0.0288752951, -0.000369784713, 0.00740038976, 0.00982336048, -0.0179562755, 0.00397567498, -9.31798786e-05, 0.00289253821, -0.0118080676, 0.00915970467, -0.0114136301, 0.0242923126, -0.0130226826, 0.0267215427, 0.0297518224, -0.00952283666, -0.00234940462, -0.00411654497, 0.00301149534, 0.0123903314, 0.0187075846, 0.00899692066, 0.0035874988, -0.0301024318, 0.0303278249, 0.00129600742, -0.0345101096, 0.0325316638, 0.0127158985, -0.0182192344, 0.0105746686, 0.0264711082, 0.0358374231, 0.0128724212, 0.0119332857, -0.00540942233, 0.0098984912, 0.0133106848, -0.0263959765, -0.00031832789, 0.00350297638, 0.00252940576, -0.000696134404, -0.0130852917, 0.0173176639, 0.0137865134, 0.0244801398, 0.00693082204, 0.0255695377, -0.0243674424, 0.0252690129, -0.0125718974, -0.00763204368, 0.0171047933, -0.00174053165, -0.0184947141, -0.00651760213, 0.0116327619, -0.0286248587, 0.0339841917, -0.00937257521, 0.0386423059, -0.0348106325, -0.0199848097, 0.0144501692, 0.0383668281, -0.0192585438, 0.0201100279, 0.0215124711, 0.0257698856, -0.00272192853, 0.0146004306, 0.00498681096, 0.0224891715, -0.0226769987, -0.00158322637, 0.00779482722, -0.0373149961, -0.0106310174, 0.00450472115, 0.019120805, -0.0215500351, -0.021124294, -0.0046362, 0.000603394757, -0.00277358107, 0.00730647659, 0.0116452836, -0.0316300914, 0.0103179719, -0.0158526115, -0.00309288711, -0.0261956267, -0.0285246838, -0.0143750384, -0.0469567887, -0.0186449755, -0.00797639322, 0.00579759805, -0.00390993524, -0.00743169431, 0.00627029641, 0.0355619416, 0.0197343733, -0.00967935938, -0.0450534746, 0.0356370732, -0.0217253417, 0.0461804383, -0.0111631937, -0.0133357281, -0.0252564922, 0.0148383453, 0.0325066186, 0.0031523658, 0.0552462265, -0.0191708915, 0.0330575779, 0.00956666283, -0.00283462484, -0.00375028234, -0.0159903523, 0.00226175203, -0.0165538341, 0.026871806, 0.00510889851, 0.0211368166, -0.0244175307, -0.0203479417, -0.0160529613, 0.0241670944, 0.00790752284, -0.0229900442, 0.00337775843, 0.00669916859, -0.00191740226, 0.00807656813, 0.0388927422, 0.00869013648, -0.0114762392, 0.0101802321, -0.0180814937, 0.0059384685, 0.0160153955, -0.00220540375, 0.029501386, 0.0274728518, -0.00198157644, 0.00353741134, 0.0171799231, -0.0229149126, -0.00587899, -0.0239542238, -0.0407209285, 0.00344662834, -0.016854357, 0.020435594, -0.00101348408, 0.00963553321, -0.0132480757, -0.00978579465, 0.00332141016, 0.0120835472, -0.021487426, -0.0249810126, 0.0363382958, -0.00930370484, 0.028449554, -0.0146004306, 0.029601559, 0.0272474587, 0.00293010357, 0.0176807959, 0.000929744449, -0.013172945, -0.0140745146, 0.0305031296, 0.0040508057, -0.0283994656, 0.0213121213, 0.0215876009, -0.00312575698, 0.0111882379, -0.0178310573, 0.0228523035, -0.0266464129, -0.0297518224, 0.0481338389, 0.00796387158, 0.0047895927, 0.0292008612, 0.0436009429, 0.00825813413, 0.0247931853, -0.0377908237, -0.00917848665, -0.0219382122, -0.0115012825, -0.0110692801, -0.00574751105, -0.0084397, 0.000714525813, 0.0323563591, -0.0217128191, 0.0346603729, 0.00155974797, 0.0265963245, 0.0303278249, 0.018068973, 0.00602612132, -0.00960422866, 0.0222637784, 0.0146004306, -0.0108313663, 0.0053718565, -0.0167667046, 0.00138992094, -0.00999240484, 0.0103931027, -0.0298019089, 0.00614194805, -0.00125374622, -0.0423237197, 0.018594889, -0.000421828503, 0.00674299477, 0.0204606391, 0.0163534842, 0.0162783545, -0.010217797, -0.0145378215, 0.0209489893, -0.0244175307, -0.0113071948, 0.0339090638, 0.0129851177, 0.00511202915, 0.000160044394, -0.00570681505, -0.0194213279, -0.0157774817, -0.00829569902, 0.0148258237, -0.0364885554, 0.0136112077, -0.0039600227, 0.0274728518, -0.0221385602, 0.025819974, 0.0450534746, 0.0137113826, -0.0164536592, 0.00446402561, 0.00680560386, 0.0179562755, -0.00210992503, 0.00260140607, -0.0163910501, 0.0236286558, -0.0383167416, 0.00300836493, 0.0138741657, 0.0109190186, 0.0364885554, -0.017743405, -0.0111131072, -0.00326819252, -0.0103743197, 0.0056066406, 0.00641742768, -0.00381602184, 0.0011700067, 0.00946648885, 0.00957292411, -0.0205858555, 0.00198783749, 0.0245803148, 0.0384169146, -0.012909987, 0.0188077595, 0.00122400699, -0.0178185366, -0.00626090541, -0.012039721, 0.0106497994, 0.0325567089, 0.0325567089, -0.0094727492, -0.00231027394, -0.0277984198, -0.0396190099, 0.0174178388, -0.019383762, -0.0235034376, 0.0100675356, 0.0146129532, 0.0288001634, -0.0201601144, -0.0349358507, -0.0597039908, 0.00561916223, -0.000479741866, 0.0069683874, 0.0424489379, -0.0196717642, 0.0214999486, 0.0261705834, -0.0311793089, 0.0285246838, 0.00057561195, -0.00170453149, -0.00479898369, -0.00875900686, -0.0191458482, 0.0136237293, -0.0107875401, -0.00331827975, 0.0273726769, 0.0115388483, -0.0172800981, -0.017380273, -0.0225142147, 0.0184696708, -0.0123715485, -0.0287250336, 0.00688073505, 0.0179187115, -0.0144000817, -0.0237413533, -0.0166039206, 0.0225893464, -0.0285497271, -0.0242422242, -0.00469880924, 0.00403515343, 0.00127409422, 0.00795135, 0.017806014, -0.0118393721, -0.00416350178, 0.0239667445, -0.0113322381, -0.0387925692, 0.0278234631, -0.0170421842, -0.00171235763, -0.0367890783, -0.0196341984, -0.00119583285, 0.0207486395, 0.0355619416, 0.0268467609, -0.0514896847, -0.0240919627, -0.000534916064, 0.00427619833, -0.000705134473, 0.00050087244, -0.00411654497, 0.0303278249, -0.00522472523, -0.0130226826, -0.0130978134, 0.0219006464, -0.0289253816, 0.00872770231, -8.24678646e-05, 0.00275166775, -0.0239542238, 0.0114011085, -0.00875900686, 0.0106059732, -0.00838335231, 0.0349108092, -0.0154268704, -0.00952283666, 0.00566298887, -0.0242046602, -0.00552524906, 0.00114026736, 0.00336210616, -0.0054751616, 0.0314798318, -0.0326318368, -0.0208237711, 1.36040182e-06, 0.0113635426, -0.00123652874, -0.0016638356, -0.0227396078, -0.0153392181, -0.0568490177, -0.00936005358, -0.000778308779, -0.0101489276, 0.00697464822, 0.0326067954, -0.00751934713, -0.00533116097, -0.00436072052, 0.0140745146, -0.00616699178, -0.0149886068, -0.000225979544, 0.0220383871, 0.0382666513, 0.00875274558, -0.0145503441, 0.0059384685, -0.0185322799, -0.0274728518, -0.0160153955, 0.0276982449, 0.00947901048, -0.00926614, 0.00712491, 0.00133435545, -0.00677429931, -0.0126282461, 0.0210867282, 0.022864826, 0.00036352381, 0.00898439903, 0.010036231, 0.00763830449, 0.0261455402, 0.0128473779, 0.0144501692, 0.0276231132, -0.0132480757, -0.00679934304, -0.0161155704, -0.0305782612, -0.0210366417, 0.0106685823, 0.014587909, 0.0190456733, -0.0211368166, -0.0260704085, -0.0181065388, 0.00559098832, 0.00889048539, 0.0126219848, -0.0285246838, -0.0207235962, 0.0151513908, -0.0145628657, -0.011795545, -0.0166164432, 0.000221283874, -5.37068263e-05, 0.0574500673, -0.010480755, 0.00971692521, -0.0264711082, -0.00638925377, -0.0242672693, -0.0157524385, 0.0295264293, 0.0147882579, -0.00707482267, 0.0243674424, 0.00483028824, 0.00100565795, 0.027397722, -0.00559098832, -0.00130696397, 0.0278485063, 0.00973570719, 0.0268968493, -0.0209114235, -0.0114449346, 0.0102491016, -0.00113244122, -0.0218255147, -0.0011160064, -0.0278985929, 0.00852735247, 0.00239010062, 0.00960422866, -4.68100479e-05, 0.00217879494, -0.0140995588, 0.0352864601, 0.0144626908, 0.00967309903, 0.0303027816, 0.0126845939, -0.0282992907, -0.00339028, -0.00272349385, -0.0114950221, -0.00485846261, -0.0142122544, -0.0264961515, -0.00215844717, 0.0162407886, -0.00348106329, -0.0124404188, -0.0172550548, -0.0105558867, -0.0367640369, -0.0119270245, -0.0221886486, -0.0107374527, -0.0086838752, 0.0180564504, 0.0209364668, -0.0151013033, 0.0106623219, -0.0261204969, -0.000172272717, 0.00539063942, -0.00352802, -0.00678682141, -0.010461973, 0.0104682334, -0.0343598463, 0.0305281747, -0.0168794, 0.00885292, 0.00741917267, 0.0235159602, 0.00160748744, -0.00631725322, -0.02359109, -0.0148884328, -0.00851483084, -0.0209865551, 0.0212995987, -0.0275229402, 0.0260704085, 0.00275166775, -0.0110004107, 0.00642368896, -0.0386923961, 0.00894057285, -0.00997988321, -0.0315048769, -0.00778230513, -0.00536872633, -0.0187451504, 0.00428872, -0.00756317331, -0.016528789, 0.0266714562, -0.0168668795, 0.00913466047, 0.00513081206, 0.00732525904, -0.0174929686, -0.030428, 0.0308286976, 0.0147632146, -0.00726891076, 0.000989223, 0.00851483084, 0.0115388483, -0.00706856186, -0.0100925788, 0.00862126611, -0.00349358516, 0.0200098529, -0.00779482722, 0.021387253, 0.00359689, 0.0206860304, 0.00127879, -0.0354617685, 0.0108000617, 0.00320871384, -0.000668351655, 0.0245302264, -0.00495237624, -0.00110113667, -0.0361629874, 0.011776763, -0.00462367851, 0.0146630397, 0.00832074322, 0.0134108588, 0.0274478085, -0.00778230513, 0.0125030279, 0.00915344339, -0.00755065167, 0.0103931027, -0.00322749675, 0.0199973304, 0.00972318556, -0.0105934516, -0.00839587394, 0.0263709333, 0.00197062, -0.020335421, 0.00566298887, 0.0172800981, 0.00849604793, 0.0334332325, 0.000815482927, -0.0142372986, 0.00346854143, -0.00362506416, 0.0243549217, 0.0217503849, 0.0100487527, -0.00407271879, 0.00404454488, 0.0290005133, 0.0198595915, -0.00243549212, 0.00945396721, 0.00937883649, -0.015113825, 0.0117078926, 0.0109190186, 0.0146004306, -0.0159903523, -0.0120084165, 0.0084397, -0.0187451504, -0.014587909, -0.00169357483, -0.00788248, -0.000907048641, 0.0223514307, 0.00924735703, 0.0343097597, 0.000182348871, 0.0159903523, 0.00823935121, 0.03160505, 0.0245302264, -0.0233406555, -0.00185009744, -0.0224891715, -0.00885292, 0.0029097558, -0.00289253821, -0.00751934713, 0.00782613177, -0.00414784951, 0.0160279181, 0.00747552095, -0.0113009335, -1.14029181e-05, -0.015113825, -0.0123402439, -0.0151639124, -0.00551272696, 0.00426680688, 0.0068995175, 0.0112195425, -0.00087339629, 0.0360878594, 0.00510263769, 0.00112539774, -0.0252439696, -0.0139492964, 0.00349358516, 0.00118487631, 0.0101426663, 0.00458298251, -0.0158150457, 0.00331827975, -0.0020394898, 0.0167040955, 0.00130226824, -0.00121070258, 0.00999240484, 0.0170046184, 0.015113825, 0.0224140398, 0.0119145028, 0.0141746895, 0.00397567498, -0.00927866157, 0.0048678536, 0.00813917723, 0.000577959814, 0.0129350303, -0.0250811856, 0.0231903922, 0.0352363735, 0.00353428093, -0.00127879, 0.0161406137, -0.0029144513, -0.0113071948, -0.00612629578, 0.0152014783, 0.000164153113, 0.0270471107, -0.00120757206, 0.00678056, -0.000437089446, -7.91417551e-05, 0.00229462166, -0.0183444526, -0.0132105099, 0.0024996663, 0.000885135494, 0.0217253417, -0.00879657175, -0.0353115052, -0.0137739917, 0.0271222405, -0.0229650009, -0.0177308843, -0.0141496453, -0.0237789173, 0.0175054912, 0.000978266471, -0.0122400699, -0.0108063221, -0.0196592417, -0.0159778297, -0.0334833227, -0.00825187284, 0.00221323, -0.014587909, -0.016528789, 0.0248683151, 0.0156773068, -0.0129350303, 0.0144626908, 0.00550959678, 0.0126720723, -0.00631099241, -0.0204230733, 0.000426132872, -0.0319556594, -0.0191959348, 0.0092724, -0.0117454585, -0.00948527176, 0.0175681, -0.0244050082, 0.0194338504, -0.0230526533, 0.0114386743, 0.0273225904, -0.00152922608, 0.0158776548, -0.0132981623, -0.0103054503, 0.0137113826, -0.000457046088, 0.0101051014, 0.0144626908, 0.0116703277, 0.000843657, -0.000239088316, -0.0133357281, 0.000980614335, -0.016854357, -0.00432941597, 0.000520046451, -0.0065864725, 0.0335834958, -0.00396941369, -0.00189079333, -0.0252439696, 0.0133106848, -0.0198470689, -0.0150762601, -0.0261956267, 0.00930370484, -0.00623586169, 0.0012255722, 0.00299427798, -0.0337588, -0.00740665104, 0.0260954536, -0.0272725038, -0.0154143488, -0.0156021761, 0.0063329055, -0.00685569132, 0.0145127783, -0.0078386534, 0.000125805062, -0.00342471525, -0.0110379755, 0.0111819766, 0.0229775216, 0.0119019812, 0.00516211614, 0.0082205683, -0.0102929277, -0.0060856, -0.0280989427, 0.0702223107, 0.0053029866, -0.00530611724, 0.00449846033, -0.0117391972, -0.00117861538, 0.00333706243, -0.014487735, 0.0146505181, 0.0259451903, -0.014850867, 0.00641742768, 0.00781361, 0.0197594166, 0.0314297453, 0.0176682752, 0.00330575788, 0.0161155704, -0.0272975471, -3.34811702e-05, 0.0070998664, -0.00675551686, 0.0325066186, -0.00851483084, -0.0275479835, -0.00728769368, 0.00659273332, 0.0303027816, 0.00830196, -0.00887170248, -0.0010283537, 0.0302526932, 0.0101614492, 0.00555029232, 0.0405957103, 0.0158526115, 0.00347167184, 0.010743713, -0.0286999904, -0.0498868935, 0.00156992197, 0.000673047325, -0.000857744, -0.0032181053, 0.0206359439, 0.00165444426, -0.0174679253, 0.00765082613, 0.0323563591, -0.0127033768, -0.00651134131, 0.0187201072, 0.0350610688, 0.00720004085, -0.00887796376, -0.0303779114, 0.0154769579, 0.0127910292, -0.0250686649, 0.00177027099, -0.0037878477, 0.0183194093, -0.00113791949, 0.0226018671, -0.00765708694, 0.00874022394, 0.0171423592, -0.0557471, -0.00674299477, -0.00599168614, 0.00880909339, -0.0341094099, -0.0189830642, -0.00782613177, 0.0180314071, -0.000555655337, 0.0172049683, 0.00247305748, -0.0189079344, 0.00252314471, 0.0105183208, 0.0029347993, 0.016854357, -0.0130602485, 0.00902196486, 0.0274478085, 4.28969834e-05, -0.00188766292, 0.00684316922, -0.0113760652, -0.00165913987, 0.000592438155, -0.0302526932, 0.0251187515, -0.0139117315, 0.00321184448, -0.00321184448, -0.0100487527, 0.00395689206, 0.0154519137, 0.0169795752, 0.0213246439, -0.00726891076, -0.0280989427, -0.00560977124, 0.00556281442, -0.00237288303, -0.00953535829, -0.00011915285, 0.0199848097, 0.0106685823, 0.0052403775, 0.00221323, 0.00629847078, 0.0187326279, -0.0155896544, 0.00189392385, -0.0098984912, -0.00449846033, -0.00569116278, -0.0179813206, 0.0150011294, 0.00479585351, 0.0238665715, 0.0105183208, -0.032030791, 0.00167322694, 0.0281991176, 0.00400384888, 0.0323814, -0.0175555777, 0.012565637, -0.00918474793, 0.00694334367, -0.00501185469, 0.00710612722, 0.00675551686, -0.0118205892, 0.0164286159, 0.00240731798, -0.0117329368, -0.00127018115, -0.000750526029, -0.00261862366, 0.0543446578, 0.00421672, 0.0126157245, 0.00880283304, 0.00701221405, 0.0208989, 0.0146004306, 0.00693708286, -0.0035906292, 0.0102491016, 0.00618577423, -0.0141746895, 0.0105809299, -0.0226769987, 0.0153893046, 0.00482402742, 0.0142372986, -0.00654264586, 0.000172272717, 0.00044374165, -0.00260923221, 0.0114386743, 0.020235246, -0.00242766598, 0.00618264405, 0.0313045271, -0.0103993639, -0.011006671, -0.00278140721, 0.0377657786, -0.000520046451, 0.00291288621, -0.00486159278, -0.0126532894, 0.0227896944, 0.000373893447, 0.00646125432, 0.00350923743, -0.0195089802, 0.00509637687, -0.0121211121, -0.00558785768, 0.0393435284, -0.00198314176, 0.0142498203, 0.00104557117, 0.00270784157, -0.00511202915, -0.00360315107, -0.00315706152, -0.0107124085, 0.00300210412, 0.00526229106, 0.0392183103, -0.00251062308, -0.0127597246, 0.0222512577, -0.0138992099, -0.0263959765, 0.0119395461, 0.00910335593, 0.00779482722, -0.0128223337, -0.00493985415, -0.0284745973, 0.0298770405, -0.0102616241, -0.0252314489, 0.0325817503, -0.00308036548, -0.0125030279, -0.0151639124, 0.00429811142, -0.0146379964, 0.0124905063, 0.00385671761, 0.0192209799, 0.0100424923, -0.00612316513, -0.00751934713, 0.00498368079, -0.0058069895, 0.0056066406, 0.00438576424, -0.0186700188, -0.0174178388, 0.00939135812, 0.0212369896, -0.00500872405, -0.00128739863, 0.0287751202, -0.0205733348, -0.00434819888, -0.00358123775, 0.0236787442, -0.00726265, 0.00700595276, -0.00791378412, -0.0068369084, 0.0140119055, 0.00204105512, -0.0145753874, 0.00929744449, -0.00125687674, -0.000673047325, -0.0126783326, -0.000740352, -0.0137113826, -0.0296766907, -0.0471320935, -0.0170296617, -0.00492420187, -0.00199722871, 0.0147882579, -0.0103868414, -0.0256697107, 0.0333330594, 0.0116452836, 0.00072704762, 0.00303653907, -0.0481338389, -0.00820804667, 0.0117705017, -0.0150762601, 0.0309038274, 0.014850867, -0.0266714562, -0.00960422866, -0.00154174794, 0.0203103758, -0.014850867, 0.00975449, -0.0093162274, -0.0343598463, 0.00745047722, -0.0194338504, 0.0128348554, -0.00816422049, 0.00607307814, 0.0263709333, 0.0323563591, 0.0196592417, -0.0364635102, -0.00959796738, 0.0111819766, -0.00382228266, 0.0116891097, -0.0119332857, -0.0346102826, -0.00127565942, 0.0236912649, -0.00952283666, 0.0132480757, 0.0241545718, -0.0159402639, 0.00614820886, 0.00662403787, -0.0265211947, -0.0186574981, 0.0109252799, 0.020235246, -0.00191114133, 0.00158948731, 0.0059791645, 0.000216001237, 0.00857744, 0.0112445857, -0.00188140199, -0.00524663879, 0.00225549121, -0.000846004812, 0.00167635735, -0.0148884328, -0.00478333142, 0.00429185061, 0.0139367748, 0.0132105099, 0.0151513908, 0.0124091143, 0.00372836902, 0.00887796376, 0.000938353187, 0.0125280712, -0.0103868414, -0.000441785116, -0.00211305544, 0.0136487735, -0.0207862053, -0.00904700812, 0.0013046161, -0.00423550233, 0.0228022169, -0.012747203, -0.00289879902, 0.000725873688, -0.00309914816, 0.000565046677, 0.0163910501, 0.0108689312, 0.0155145228, -0.0270471107, -9.46472792e-05, -0.0211493373, -0.0229650009, -0.00465498306, -0.00365949911, -0.0171548799, -0.00562542351, -0.0177684482, 0.0135110337, -0.00379723893, -0.00155035662, 0.0187827162, 0.0220759511, 0.000935222721, 0.0427995473, 0.0106497994, -0.0178811457, -0.00411341479, 0.0116765881, 0.00319306157, -0.00144705176, -0.00493672397, 0.00396941369, -0.0241420511, 0.0222136918, -0.00205201167, 0.011958329, 0.0219382122, -0.00208175089, -0.00321184448, -0.0147381714, 0.0210867282, 0.000999397, -0.0120710256, -0.0191082824, -0.00302714761, -0.0204105508, -0.0112445857, -0.0257698856, -0.00994231738, 0.00681812596, -0.0215375144, 0.00821430795, -0.00899692066, -0.0104995379, 0.0438513793, 0.00379410852, 0.0221886486, -2.27080091e-05, -0.00437950343, -0.00627342705, -9.27885703e-05, 0.000272740697, 0.000488741905, 0.0171674024, -0.0161907, 0.0223013442, 0.00502437633, -0.00125139847, 0.00340593234, -0.0011394847, -0.0126407677, -0.00706230104, 0.0159152206, 0.0167040955, -0.000648395, -0.00530924741, 0.00255288417, -0.00420732843, 0.0214623827, 0.00149479113, 0.0252439696, -0.00459237397, -0.0106122345, 0.00575690251, -0.0141872112, -0.0106623219, 0.00910961721, 0.0186449755, 0.00247775321, -0.0112195425, -0.00365323829, -0.020698553, -0.000305414782, 0.00674925605, 0.00272818934, 0.0119332857, -0.00233375235, 0.0156021761, -0.00108783226, -0.000265110197, 0.0162783545, 0.00101426663, 0.000465263525, -0.00274384161, -0.0145127783, 0.000880439824, 0.00301932148, -0.00233688299, -0.0218255147, -0.00212714262, -0.0104682334, 0.022013342, -0.0100299697, 0.00952283666, 0.0384169146, -0.00336836698, 0.0166414864, 0.0382165648, 0.0185573231, -0.00157696556, 0.0125343325, 0.021812994, -0.00748804258, -0.0133858155, -0.037515346, -0.0194588937, -0.0309539158, -0.00064682978, -0.012747203, -0.0112758903, 0.0109252799, 0.00103070156, -0.0119458074, -0.0248182286, -0.022864826, 0.00939135812, -0.00857744, -0.0179312322, 0.0104431901, 0.0121649392, 0.0146755623, -0.00564420596, -0.00896561611, 0.0140494714, -0.011351021, -0.0186700188, 0.00733152, -0.00658021122, -0.0134609463, 0.0098170992, 0.0195966326, -0.00215688185, -0.0170922708, -0.0183444526, -0.00534055196, -0.0146880839, -0.0199597664, -0.0202978551, 0.00731899822, 0.00601673, 0.00538124796, 0.00403515343, 0.0124717234, 0.00207392476, 0.0255570151, 0.0145753874, -0.00189079333, -0.00726891076, -0.00763204368, 0.00435759, -0.0149385203, 0.0119270245, -0.0180188846, 0.0251187515, -0.000970440335, 0.00130226824, -0.0150762601, 0.0145628657, 0.0118080676, -0.00803274103, -0.0277733747, -0.00302401721, 0.0167416614, -0.00782613177, 0.00633603614, 0.030553218, 0.0137614701, -0.00570055423, 0.0151513908, -0.0250937082, -0.00334958429, -0.00342784566, 0.000714525813, 0.0165037457, -0.0086838752, -0.015276609, 0.00843344, 0.00806404557, 1.08281865e-05, -0.00768839149, -0.0133106848, -0.0166039206, -0.00887170248, -0.0212244689, 0.00224296935, -0.000610438234, 0.00226957817, 0.0138616441, -0.00558159687, -0.0263959765, 0.0129475519, 0.000901570369, -0.00263271062, 0.0208112486, -0.00224296935, -0.0118205892, -0.00793256704, 0.00746299885, 0.0223013442, 0.00610751286, 0.000146055187, -0.000315393088, 0.0152891306, -0.010217797, 0.0230526533, 0.0110379755, -0.00930996612, 0.0108063221, -0.0171548799, -0.00364071643, -0.0206359439, -0.00610438269, -0.00555342296, -0.0197844598, 0.00332141016, -0.000932874857, 0.00239949184, 0.0163409635, -0.00270471117, -0.015376783, 0.0119896336, -0.00265462371, 0.00188766292, -0.00282210298, 0.00991101284, -0.0303027816, -0.0227521304, -0.0255069286, 0.00077009137, -0.013435903, 0.000290153839, 0.0396690965, -0.0017734014, 0.024442574, 0.0211368166, 0.0358875096, -6.76960408e-05, 0.0134734679, -0.0289003383, 0.000730178086, -0.00632977532, 0.00889048539, -0.0102491016, -0.0175806209, -0.0160654821, 0.0132981623, -0.00317114848, 0.0119458074, 0.00493985415, -0.00860248413, 0.0025200143, -0.00587272923, -0.00667412486, 0.00935379229, 0.0191333257, 0.0105997128, -0.00333706243, -0.00213809917, -0.0176181868, -0.0142122544, 0.0211368166, 0.0122025041, 0.0101677105, 0.00349045475, 0.00570055423, 0.0103304936, 0.012909987, 0.000957918528, 0.00107687572, -0.00288471207, 0.0135736428, -0.0075068255, -0.00301306066, -0.00706856186, 0.00535933487, -0.00251375348, -0.00227583898, 0.00805152394, -0.00516524678, -0.00115044136, 6.85764753e-05, -0.0079826545, -0.00783239212, -0.000419089338, 0.00550020533, -0.00792004541, 0.00665534241, 0.0157649592, -0.0163033977, -0.00104948424, -0.00152844354, 0.00445776433, 0.000109174536, 0.0199597664, -0.0106122345, 0.00411654497, -0.0128974644, 0.00642995, -8.00711059e-05, 0.00597603386, -0.00634855777, 0.0063329055, 0.00023361003, 0.0120647643, 0.0141371237, 0.00226175203, -0.0136362519, 0.0349608958, -0.00947901048, -0.00780108804, 0.0214248169, 0.0105496254, -0.00179061887, -0.00580072869, 0.00829569902, 0.0105057992, -0.00154253049, 0.0158526115, -0.0137865134, 0.0039600227, 0.0310040023, -0.0110692801, 0.010217797, -0.0131604224, 0.00581638096, 0.0163159184, 0.00160435692, -0.00573185878, -0.000170511834, 0.0103242323, -0.0243674424, 0.0153642613, 0.0148007795, 0.00891552866, 0.00189235865, 0.0104118856, -0.0016215744, 0.0138491224, 0.00174053165, 0.00448280806, 0.0116640665, 0.0138992099, 0.01902063, -0.00114026736, 0.0128724212, -0.0247556195, 0.00710612722, -0.00122165913, -0.00264992821, 0.0018391409, 0.00520594278, 0.0201100279, 0.0134609463, -0.0119207632, 0.0100612743, -0.000904700777, 0.0186950639, 0.00720004085, 0.00902196486, 0.0122275483, 0.00292071234, 0.0159903523, 0.0059102946, -0.00973570719, -0.00464246143, -0.0134985121, 0.00323062716, 0.0230526533, -0.00224766508, -0.0170296617, -0.0141997328, -0.00557846669, -0.00842717849, 0.00660525495, 0.0164411366, 0.0108188447, 0.00181253208, 0.00619516568, 0.00417602388, 0.027397722, -0.00344662834, 0.00918474793, 0.00629847078, -0.00557533605, 0.00420419779, 0.0169420093, -0.00797013193, 0.0174178388, -0.00129052904, 0.0241295286, 0.00396315288, 0.0147256488, -0.00593533833, -0.00404454488, 0.00890300702, -0.00415724097, 0.0035217593, -0.0256947558, 0.000672264723, -0.0059384685, -0.0116891097, 0.00674925605, -0.0137489475, -0.0104181459, -0.00865257066, -0.00556907523, 0.0126971155, 0.0200348962, 0.0126845939, 0.0128599, 0.0067179515, -0.00455167796, 0.0102365799, -0.00992353447, -0.017806014, -0.00729395449, 0.0053436826, 0.00498368079, 0.0163910501, 0.015539567, -0.000201522882, 0.00447028643, -0.00250592735, 0.0161531363, -0.0190081075, 0.00956666283, 0.00678056, -0.00205201167, -0.00379410852, 0.0119958948, -0.000674612529, -0.00809535, 0.0209114235, 0.020072462, 0.000666003791, -0.00263271062, 0.00186731503, 0.00514333369, 0.00518402969, 0.00118487631, 0.0067680385, 0.014587909, 0.00157540024, 0.000680482131, 0.000399915327, 0.000724699756, -0.00516524678, 0.0245803148, 0.00669916859, -0.00956666283, 0.0209990758, 0.0241044853, 0.00234783953, 0.00600107759, 0.0133482497, -0.0052528996, -0.0220008213, -0.0119520677, -0.00640490605, -0.00569429342, 0.00900944229, 0.00259984098, -0.0120271994, -0.00730647659, -0.00895309448, 0.00442019897, -0.00212244689, -0.014061993, 0.00111678895, 0.00900318194, -0.00492420187, 0.0122400699, -1.20387913e-05, -0.00408837106, 0.023916658, -0.00334958429, 0.0241295286, -0.00666786404, -0.00703725731, 0.00830196, -0.0234658737, 0.0172425322, -0.00972944684, -0.00991101284, -0.0111506721, 0.0115388483, 0.0187075846, -0.0121899825, 0.00472385297, 0.00100174488, -0.00634855777, -0.0252189264, -0.0160529613, -0.00571307587, 0.00774473976, -0.0189329777, 0.0238665715, 0.0017092271, -0.0277483314, -0.0031523658, -0.0046048956, 0.0177809708, -0.00426054606, -0.0141872112, 0.00106670172, -0.0273225904, 0.0160279181, 0.0213371646, 0.00921605248, -0.00244018785, 0.00543759624, 0.0282742474, 0.00910335593, -0.025819974, -0.00586333778, -0.0100487527, 0.0181065388, 0.0056473366, -0.0128599, 0.0205232482, -0.0132605974, 0.0179687981, 0.00867135357, -0.0133732939, -0.00120757206, 0.013273119, -0.0196842868, 0.00133513799, -0.00944144465, -0.00706856186, 0.0134859895, 0.00250436203, 0.0300773885, -0.00683064759, -0.00155974797, -0.0181941912, -0.0298770405, 0.0031069743, 0.00538750878, 0.00717499759, 0.0212369896, 0.00262331939, -0.0167166162, -0.0336836688, 0.00853361376, 0.0154519137, 0.0137239043, -0.000779091381, -0.00677429931, -0.015376783, -0.00879657175, 0.00521533424, 0.0153642613, -0.000420654571, 0.00280645071, -0.00882161502, -0.00364384684, -0.00806404557, 0.0153266964, 0.00942892302, 0.00483341888, 0.0206735097, -0.0209489893, 0.00974823, 0.00766960904, 0.0151764341, -0.0272975471, -0.00635794923, -0.0141496453, 0.0111005846, -0.0122838961, 0.00108470186, 0.00244018785, 0.0102866674, 0.0092911832, 0.00770091359, -0.00402576197, 0.0204105508, -0.0133858155, -0.00223357789, 0.014061993, 0.000536872598, -0.00312106125, -0.0373149961, -0.0191458482, -0.0174053162, -0.0134734679, -0.000480915769, -0.00181879301, 0.000222653442, -0.00277514616, 0.0154519137, 0.0102240583, -0.00805778522, 0.0268217176, 0.0250436217, -0.0113322381, 0.000893744233, 0.0240919627, 0.0118518937, -0.0161030479, -0.0216752533, 0.00296610384, -0.00309288711, -0.00919100922, 0.0180814937, -0.00490541942, 0.00745673804, 0.0092097912, -0.0048678536, 0.0123527665, 0.000836613472, -0.0115764141, 0.0166414864, 0.00280645071, -0.0100424923, 0.000908613845, -0.0068494305, -0.0238039624, 0.0044734166, 0.0112758903, 0.0211743806, -0.0115764141, 0.0039600227, 0.0025607103, -0.00233531767, 0.0021427949, 0.010480755, 0.00383793493, 0.00818926375, 0.0034184542, -0.0249434467, 0.0241921376, 0.00890300702, -0.0178185366, 0.00169357483, -0.000908613845, 0.00854613539, 0.000673438597, 0.011958329, -0.0111131072, 0.0058977725, 0.00484594051, 0.0038786307, -0.030127475, -0.000865570153, -0.0178811457, -0.0134484246, -0.00739412894, -0.00516524678, -0.00565672806, -0.00226644776, 0.0126407677, -0.00784491468, 0.0110755414, 0.016491225, -0.0165538341, 0.0111757154, 0.000447263417, -0.0181566253, -0.00506820297, -0.0124717234, -0.0210616849, 0.0182818435, 0.0130727701, -0.000486785371, 0.0119958948, 0.0102428412, -0.00365323829, -0.00393497897, -0.00449219951, 0.0154769579, 0.01902063, 0.00958544575, -0.0111631937, -0.0059791645, -0.0142623419, 0.02233891, 0.0107124085, 0.00069378654, 0.0104181459, 0.00415724097, 0.00132731185, -0.00684316922, 0.0128974644, 0.0108689312, 0.0149009544, -0.0132605974, -0.00890300702, -0.00711864932, -0.00218975171, -0.00867761485, -0.00303027802, 0.00160748744, -0.0053718565, 0.00741291186, -0.00162313972, 0.0225142147, -0.0176181868, -0.0182693209, 0.0247180536, 0.00222888216, 0.0045642, 0.025819974, -0.00111209333, -0.000286045106, 0.00191740226, -0.00603238214, 0.00319775729, 0.0191834141, 0.0354367234, -0.010743713, -0.0060699475, 0.0168668795, 0.0254317969, -0.00150731299, 0.00266871089, 0.00752560794, 0.00488663651, -0.00392245734, 0.00450785179, -0.00889048539, -0.0252064038, -0.00910961721, -0.00764456531, 0.0236787442, 0.0115576312, -0.00566611905, 0.0224390849, 0.0216627326, -0.00692456122, -0.00720630214, -0.000325371424, -0.00194714149, 0.000934440119, -0.0287500769, 0.000270588498, -0.0251062308, 0.00191427174, -0.0192084573, -0.010562147, -0.00900318194, -0.0249559674, -0.0024542748, -0.00392558752, -0.0094727492, -0.0296266042, -0.00582264178, -0.00386297842, 0.00467689615, 0.00132965972, 0.0104557117, 0.00466750469, 0.00114261522, 0.000828787335, -0.0219006464, -0.00529672578, -0.00254505803, 0.00822683, 0.0216001235, 0.00731899822, 0.00112852815, 0.0148007795, 0.0060824696, 0.0102804061, 0.00530924741, 0.0119896336, -0.0148258237, 0.0188328028, -0.0110004107, -0.0401699692, 0.00352802, -0.00895309448, 0.0145503441, -0.00792630576, -0.0109127574, 0.00225392589, 0.00636734068, 0.00965431612, -0.0337588, -0.0162908752, 0.0227145646, 0.0065050805, -0.0233281329, -0.00976701174, -0.00832074322, 0.0160529613, 0.0111882379, 0.000860091881, -0.000885918096, 0.00628907932, -0.0177559275, 0.00574438041, 0.00455480861, 0.0130602485, 0.00814543758, -0.00592907704, -0.0029754953, 0.00235253503, 0.012909987, -0.00323688798, -0.0123652881, -0.0169670526, 0.0168418344, 0.00669290777, 0.0154143488, 0.0293761678, -0.00472385297, 0.0103117106, -0.00612942642, 0.00548142241, -0.00884039793, -0.016002873, -0.0241921376, -0.0218756031, -0.0255570151, -0.029601559, -0.00763204368, 0.00358436815, 0.0038535872, -0.00900944229, 0.00262331939, 0.00463933079, -0.0170672275, 0.00542820478, 0.0183694959, -0.00364384684, -0.0119145028, 0.00360941188, 0.0149009544, 0.00180314074, -0.0103555368, 0.0196091551, -0.00576942414, 0.00495237624, -0.013799035, 0.00622960087, -0.0148884328, -0.00799517613, -0.0196968075, 0.00984840374, 0.00792630576, -0.00287062512, 0.000979831675, 0.0192335, -0.0068995175, -0.00730021531, 0.0164286159, -0.00226644776, 0.00273601548, -0.00494611496, -0.00782613177, -0.00933500938, -0.00661151577, 0.0170547049, -0.00817674212, 0.0276732016, 0.0216752533, -0.0168794, 0.0047770706, 0.00119426765, 0.000741134631, -0.00958544575, 0.00145879097, 0.0365887284, 0.0293511245, -0.015013651, 0.00397567498, 0.00582890259, -0.0239417013, -0.00820804667, -0.0240043104, 0.0236787442, -0.0173677504, 0.0226018671, 0.00632664468, 0.0191959348, -0.00796387158, 0.0105746686, -0.00786369666, 0.00116609363, 0.0162032228, -0.00228992617, -0.0142748635, 0.000601438223, -0.0102741458, -0.0081830034, 0.000195653294, 0.0188453253, -0.0129851177, -0.0189705435, -0.0147757363, 0.0104056243, -0.0185322799, -0.000333980162, 0.0136362519, -0.00367828179, -0.00314610498, -0.00483967969, 0.00988597, 0.0221009962, 0.00761326076, -0.0111506721, 0.00445150351, 0.0149009544, -0.00426367624, 0.00283932057, 0.00444211205, -0.0248182286, -0.010825105, -0.00466437452, 0.0246429238, 0.00646125432, -0.00540003087, 0.0139367748, 0.00900944229, 0.0247305762, -0.00264523248, -0.0154894795, -0.00112461508, 0.00968562067, 0.0192084573, -0.0244676173, 0.00999240484, 0.00235879607, -0.0103054503, 0.00267653703, -0.0228022169, 0.000822526403, -0.0172300115, 0.00400697952, 0.0234533511, 0.00358436815, 0.00601673, 0.000157500894, 0.0141997328, -0.00796387158, -0.00792630576, 0.0245177057, 0.0116077187, 0.00851483084, 0.00823309, -0.00914092176, -0.0103617981, -0.0104118856, -0.000908613845, -0.0125343325, 0.0122964177, 0.000821743801, 0.0217879508, -0.00706230104, -0.0126720723, -0.00602925196, 0.00110504974, -0.0130727701, -0.00218975171, 0.0211994257, -0.0119207632, 0.00875900686, -0.0203479417, 0.0189079344, -0.0347855911, -0.00107531052, -0.00586333778, 0.00454541715, 0.00593533833, -0.00270627625, -0.00980457757, 0.0123965926, 0.00225236057, 0.0193712413, 0.0289504249, -0.00818926375, -0.0093162274, -0.0171298366, 0.00370645593, -0.0305782612, 0.00493046269, 0.000579525, 0.00954788085, -0.0103430152, -0.0200223755, 0.00449533, 0.00716247549, -0.00991101284, -0.00223357789, 0.00415724097, -0.00141418201, -0.0284996405, -0.000397371827, 0.0146755623, -0.00287532061, 0.0124091143, -0.0181190595, -0.00838335231, -0.0149635635, 0.0215124711, -0.00347793289, 0.00893431157, -0.00796387158, 0.00427306769, -0.0246804878, -0.0150887817, -0.0288001634, -0.0116390232, 0.014750693, -0.0101864925, 0.00954788085, -0.00789500121, -0.0196341984, 0.00827065576, -0.00885918085, -0.00792630576, -0.0142498203, -0.00330575788, -0.00542820478, -0.000367241213, -0.0201225486, -0.0266213696, 0.00777604431, 0.0122150257, 0.0162032228, 0.0086838752, 0.00146113872, -0.00324001838, -0.0243924875, 0.0156146977, 0.00247149239, 0.00751308631, -0.00474263588, 0.0108626708, -0.0100675356, 0.00587899, -0.00425741542, 0.00837709103, 0.0173051413, -0.00845848303, -0.00318210502, 0.00648003677, -0.0140870372, -0.0101113617, 0.0140995588, 0.0236537, -0.0170672275, 0.00198001135, -0.0034184542, 0.00682438677, -0.00299114757, -0.0101113617, 0.00399445742, -0.0204982031, -0.00861500576, 0.0281740744, 0.0117642414, -0.00828943867, -0.0100299697, -0.00862752739, -0.0278234631, -0.00491794106, -0.011169455, -0.00915970467, 0.00437950343, -0.0270471107, 0.0229524784, -0.00928492285, 0.00915970467, 0.00930370484, 0.00327758398, 0.00124122447, 0.0208488144, -0.028649902, -0.00183444528, -0.000938353187, -0.00107296265, 0.038467, -0.00216627331, 0.0294763427, -0.00307723484, 0.00498368079, -0.00927866157, -0.00288784248, -0.00376280397, 0.0120146768, -0.0130226826, 0.00459237397, 0.00336836698, -0.00429185061, 0.00289097289, -0.0252439696, 0.0215249918, 0.00852109212, -0.0230150875, -0.00154722622, -0.0131228575, -0.0125030279, 0.00351236784, -0.00402889261, 0.00829569902, 0.0161406137, 0.0224516056, -0.0166414864, -0.00925361831, 0.00216470798, -0.0163785275, -0.00842091721, -0.0100737968, -0.0379661284, -0.0104369288, 0.0281991176, -0.00954788085, 0.0166414864, 0.0116640665, -0.0125593757, 0.000792787119, -0.0196091551, -0.00596351223, -0.0183694959, -0.0189329777, -0.00147522578, -0.00160044385, -0.00879657175, 0.0345101096, 0.0273726769, 0.0183194093, -0.0105558867, 0.0175555777, 0.014224777, 0.0110254539, 0.0282992907, 0.0188077595, 0.00346854143, 0.00613881741, -0.0123277223, 0.00523724733, -0.0199597664, -0.0116390232, -0.0045266347, 0.00306784362, -0.00989223, 0.000162294396, -0.0130226826, 0.00534994341, -0.00115278922, 0.00936005358, 0.0074943034, -0.00158087863, -0.0162908752, -0.0114762392, -0.0105308425, 0.0237288307, -0.0240043104, -0.00942892302, -0.00677429931, 0.00368767325, -0.00618264405, -0.0126345064, 0.00733778113, -0.0167040955, 0.0284996405, -0.00380663038, 0.00556281442, -0.0245677922, 0.0152640874, -0.0114073697, -0.000595959893, 0.00344036752, -0.0138992099, -0.00800143648, -0.00832700357, 0.00148148672, -0.000228327393, -0.0172300115, -0.00264679757, -0.00126626808, 0.0185072366, -0.000818613335, -0.00608873041, -0.00661151577, 0.00447654724, -0.00176714046, 0.00604177359, 0.00721882377, 0.00423237216, 0.0183444526, -0.00200975058, 0.00656142877, -0.00609812187, -0.00223357789, -0.00176244485, 0.00253253616, -0.0121962437, -0.00874022394, 0.00300523452, -0.0115263266, 0.00144705176, 0.00544072641, -0.00280801603, -0.00666160323, 0.0114386743, -0.0186449755, -0.00373149943, 0.0389678739, 0.0112884119, 0.00349984597, -0.00646751514, -0.00548142241, 0.00673673395, -0.0049085496, 0.00266088475, 0.00880909339, 0.0185698457, 0.00058539462, 0.0163159184, -0.0160780046, -0.0122964177, 0.0275229402, 0.0013789644, -0.0131353792, 0.00405706652, -0.00282836403, -0.0187075846, 0.0190331526, 0.00913466047, -0.00158400903, -0.00774473976, 0.00916596502, 0.00230088271, 0.00700595276, 0.00288001634, 0.00543133542, -0.0259201471, -0.00244957907, -0.0183945391, 0.0105871903, 0.016591398, 0.00224453444, -0.00566298887, 0.0183444526, 0.0196592417, 0.0155896544, 0.00430437224, 0.0421734564, -0.00826439448, 0.00339654111, 0.00332454056, -0.000230479578, -0.0309789591, 0.0228523035, -0.0101677105, -0.00819552504, 0.0119019812, 0.00635794923, -0.00885918085, -0.0081016114, -0.0116014574, 0.0131854666, 0.000903135573, -0.00175148819, -0.0162783545, -0.00867761485, -0.0120209381, 0.00815795921, -0.0171799231, 0.0169294886, 0.0117204143, -0.0112258028, -0.00375654316, 0.00826439448, -0.0279987678, 0.00824561249, -0.0403452739, 0.00446715578, 0.0174178388, 0.0169920959, -0.00169514, -0.0334582776, -0.00258888421, -0.00123965926]
|
08 Feb, 2022
|
How to lock vertical scaling of a text canvas using Fabric.js ?
08 Feb, 2022
In this article, we are going to see how to lock vertical scaling of a text canvas using FabricJS. The canvas means text written is movable, rotatable, resizable and can be stretched. But in this article, we will lock vertical scaling so that it cannot be scaled vertically and the height of the Text object cannot be changed. Further, the text itself cannot be edited like a textbox.Approach: To make it possible, we are going to use a JavaScript library called FabricJS. After importing the library using CDN, we will create a canvas block in the body tag which will contain our text. After this, we will initialize instances of Canvas and Text provided by FabricJS and use the lockScalingY property to lock vertical scaling and render the Canvas on the Text as given in the example below.
Syntax:
fabric.Text(text, lockScalingY: boolean);
Parameters: This function accepts two parameters as mentioned above and described below:
text: It specifies the text to be written.
lockScalingY: It specifies whether to enable or disable the vertical scaling lock, disabled by default.
Program: We can use FabricJS to lock vertical scaling of a canvas-like text as given below.
html
<!DOCTYPE html>
<html>
<head>
<title>
lock vertical scaling of a canvas-type text
</title>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000;">
</canvas>
<script>
// Create a new instance of Canvas
var canvas = new fabric.Canvas("canvas");
// Create a new Text instance
var text = new fabric.Text('GeeksforGeeks', {
lockScalingY: true
});
// Render the text on Canvas
canvas.add(text);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?
|
https://www.geeksforgeeks.org/how-to-lock-vertical-scaling-of-a-text-canvas-using-fabric-js?ref=asr7
|
CSS
|
How to lock vertical scaling of a text canvas using Fabric.js ?
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0134800933, 0.024787074, -0.01546985, 0.0358835347, 0.0744834617, 0.000194073451, -0.0151438834, 0.02337455, -0.0320534222, -0.0249908026, 0.0204136837, 0.00840723235, 0.00923573133, -0.0681814328, 0.00744291302, -0.0123527907, -0.0383282863, -0.0204136837, -0.00582326436, -0.0221793372, 0.0122305537, -0.0377306789, -0.00138366199, -0.00297954213, -0.0109402677, 0.019775331, 0.0120404055, 0.0138264336, -0.0147635881, 0.00812880229, 0.0027910925, 0.0200469699, -0.041669447, -0.0282233097, -0.0145734409, -0.0186751932, 0.0230078362, 0.0515027866, -0.0302877668, -0.00482159527, 0.015714325, 0.0297716521, 0.00545994705, 0.0241215583, 0.0020712486, -0.0217854604, -0.0310211927, 0.000911688956, -0.0101864683, -0.00262641115, 0.0282504726, -0.00475029, 0.0192592163, -0.0126991309, 0.0122169713, 0.0113205621, 0.0031815737, 0.0168008823, 0.030722389, -0.0169231202, 0.0269194413, -0.0764392614, -0.00672306912, -0.0234152954, -0.0337104201, -0.011286607, -0.0207939781, 0.0100031123, -0.0189604145, 0.0153068667, -0.0151031371, 0.00256529241, 0.0103087062, -0.0219076984, -0.000549644872, -0.0209977068, 0.00439715898, 0.0104988534, -0.0137856873, 0.0404470712, -0.0038946264, -0.00618658215, -0.0347426496, 0.0227497797, 0.00309838424, 0.0105396, -0.00183865754, -0.0408816934, 0.0102272145, 0.0281689819, -0.0287937522, 0.0321349129, -0.00259245629, -0.0613904521, -0.0267700404, 0.0266885478, -0.0252216961, -0.0230893288, -0.01005744, -0.0179825127, 0.0048589455, 0.0195580199, 0.00208313274, -0.0565009452, -0.0249908026, -0.00167227862, 0.0234288778, 0.013901134, 0.0265934747, 0.015347613, 0.0301791113, -0.0297444891, -0.00397611829, 0.053512916, -0.0763849318, 0.0181319136, -0.019313544, -0.0415607914, 0.0177923646, 0.00773492502, -0.00873319898, -0.0606298596, -0.00230044406, 0.0535944067, -0.0198296588, 0.0579677969, -0.0266478024, -0.00535468711, 0.0119724963, -0.0127534587, -0.0422127247, -0.0067841881, 0.00683512026, -0.0105871363, 0.0790469944, -0.00640728883, -0.000199697228, 0.0165020786, -0.0383011214, 0.0272861533, -0.0253303517, -0.024203049, -0.0125089837, 0.0169095378, -0.0400667749, 0.00339379185, -0.0052698, 0.0285492763, -0.0202235356, 0.0362095, -0.0494654924, -0.0456625447, 0.0251402054, 0.0198704042, 0.0387900732, -0.0163798407, -0.0244203601, -0.00320194662, -0.00387764908, 0.021744715, 0.0240943935, -0.0259007942, 0.0299346354, 0.0224102307, -0.0137449419, -0.0106346728, 0.0162847675, -0.00373164308, -0.0189196672, 0.0243388694, -0.000703290745, -0.0188789219, 0.0165835712, -0.00578251854, -0.0463144779, -0.0168416277, -0.00133442739, -0.0220299363, 0.010363034, 0.00757194171, -0.0549797677, -0.0173713248, 0.0409903489, 0.0146006048, 0.00169180264, 0.00451600086, 0.0113680987, 0.0129300244, -0.00605415786, -0.0198432412, -0.0125021925, 0.0317546166, 0.0401211046, -0.00560595328, 0.0168008823, -0.0286850948, 0.0184850451, 0.0032766473, 0.0150759732, -0.0054463651, -0.000112369482, -0.00461107492, -0.0105599724, -0.0305322427, -0.0131948721, 0.00656348141, -0.0235782787, -0.0350686163, 0.0337104201, -0.0230621658, -0.0199790597, -0.00109334767, -0.0150352279, 0.00222744117, -0.0023174216, 0.00988087431, -0.0265255645, -0.00907953922, -0.0239857379, 0.00527659059, 0.00550069287, 0.00468917098, 0.00475708069, -0.0141931465, -0.0317546166, -0.0169231202, 0.027000932, 0.0114428, -0.00397611829, -0.0116736926, 0.016637899, -0.0151710473, 0.000666789245, 0.00263999309, 0.0398223028, -0.0256291553, -0.0242573768, 0.0349871255, 0.0207532328, 0.0111711603, -0.0069811265, -0.00898446515, -0.0187838487, -0.0204544291, 0.0243117046, 0.039550662, -0.0255748276, 0.00690303044, -4.7483798e-05, -0.0263218358, -0.0104784807, -0.0249772202, 0.0329226665, -0.00344981742, 0.025493335, -0.00396932708, -0.00501174247, -0.0183220617, 0.00448204624, 0.0445216596, 0.0287394226, 0.0241215583, -0.0250858776, 0.0241215583, 0.013222036, 0.012393537, 0.00901162904, -0.0287937522, 0.00819671154, -0.00976542756, 0.00854984298, -0.0534042604, 0.0340092219, -0.0353674181, -0.00130896119, 0.0187702663, -0.0467762649, 0.0247599091, 0.0145055316, 0.0126448032, 0.020359356, -0.00829857681, 0.0184578802, 0.0626943186, -0.000479612907, -0.0301519465, -0.0151982112, 0.0216632225, -0.0349327959, -0.0187431015, -0.0118434671, -0.0151846288, 0.0100166937, -0.0296358336, 0.0309940279, -0.00998953, 0.00139299955, 0.00193712674, -0.0244882703, -0.0222472474, -0.0369157605, -0.0335202739, -0.0222744122, -0.0457983613, -0.0103222886, 0.00374522503, 0.00357205491, 0.0204544291, 0.0135412123, 0.00704903621, 0.0449834466, -0.032352224, -0.0543821603, -0.0078979088, -0.00047536855, -0.0148450807, 0.0229535084, 0.0261181053, -0.0159859639, 0.0231029112, 0.00706940936, -0.0201827902, 0.0078979088, 0.0579677969, 0.0559576675, -0.0553329, -0.0352859274, -0.0404199064, 0.0324337147, -0.00635296106, -0.0260501951, -0.025126623, -0.0186208654, 0.0255069174, 0.00571460882, -0.00946662482, -0.0109945955, -0.0315101445, -0.0220571, 0.0191098154, 0.0192048885, -0.0101525141, -0.0252352785, -0.0278701782, 0.0390073843, -0.0499272794, -0.0214866586, 0.0408002026, 0.0409631841, 0.0169367027, 0.000934608513, 0.022233665, 0.0128892781, 0.00514756236, 0.0103154974, -0.00275883521, 0.0115718283, -0.051203981, -0.0368886, 0.0121218972, 0.0296629965, -0.0294728484, 0.0110692959, -0.00590136088, -0.00277241715, -0.0419139229, -0.0280603264, -0.0177108739, -0.0224645585, -0.002414193, -0.0132763637, -0.0466947705, -0.00138705748, -0.0273676459, -0.0172355045, 0.0103358701, -0.0315916352, -0.0362366661, -0.0232387297, 0.012393537, -0.0174256526, 0.0437610708, 0.0599779263, 0.0298531447, 0.027802268, -0.00557539379, -0.0540833585, -0.0235782787, -0.00292521412, 0.0212014373, -0.0346611589, -0.00459070178, -0.000262089336, -0.0184035525, -0.00499137, -0.00101864687, 0.0185665376, -0.0345253386, 0.0251537859, -0.0352315977, 0.0119385412, 0.00526640425, -0.0099284118, -0.0142474743, 0.0358835347, 0.00841402262, -0.0184850451, -0.0258872118, 0.0309397, -0.0457168706, 0.0130930077, -0.00248040515, -0.00768738845, -0.0105463909, 0.0279516689, 0.0242302138, 0.0122033898, -0.0071712737, -0.000171790554, 0.00942587852, 0.0568269119, -0.0283591282, 0.00143204769, -0.00672306912, -0.0418052673, -0.0125701027, -0.0284949485, 0.00911349431, -0.0231979843, -0.00387085811, -0.0385727622, 0.00544976071, -0.00468238024, -0.0145191131, 0.000529271958, 0.00367731508, 0.05117682, 0.00842081383, 0.045336578, 0.0255612452, -0.0151438834, 0.00123680709, 0.00462805247, -0.0132492, -0.0142338919, 0.00943946093, -0.0218805354, -0.0391432047, 0.0150895556, -0.020576667, -0.0127738314, -0.0247599091, -0.0509051792, -0.0177108739, -0.00909312069, -0.0172898322, 0.00821029395, -0.00260094507, 0.0034735857, -0.0223423205, 0.00516453944, 0.00611188123, -0.0108587751, 0.0156192519, 0.0141116548, -0.0218805354, -0.0417509377, -0.0108791487, 0.00454656035, -0.00702866353, 0.0154426862, 0.0206717402, 0.00412551966, 0.0499544404, -0.000915084442, 0.0197481681, -0.0274355561, -0.0358292051, -0.011626156, -0.0285764392, 0.0568812415, 0.0147771705, 0.0177652016, 0.0121558523, -0.00391499931, -0.0424028747, 0.0208483059, -0.0399581194, 0.00111287169, -0.000237684275, 0.0233881325, 0.0432449542, -0.00379276183, -0.0178195294, 0.0314829797, -0.00763306068, -0.0176972914, -0.0414521359, 0.0276936125, -0.0148179168, -0.000699895259, 0.040936023, -0.022573214, 0.0521547198, 0.048406098, 0.0267157108, -0.0118298857, 0.0299074724, -0.0295815039, -0.0092900591, -0.00260094507, -3.24958964e-05, -0.0377578437, 0.00806768332, -0.0123867458, -0.0109131038, 0.00411193771, -0.017439235, 0.0236326065, -0.00959565304, -0.0155241778, -0.0391975306, 0.00271808938, -0.0324880444, -0.00632240158, 0.0255748276, 0.00201692083, -0.00770776113, -0.0216496419, -0.0324065536, -0.0294728484, -0.00138451089, -0.00558897574, 0.0309397, 0.00420701131, -0.0209297966, -0.00549729774, -0.0206174124, -0.00254322169, -0.0102136321, -0.0466676094, -0.00886901841, -0.0560119972, 0.0314829797, 0.0020695508, 0.0115854107, -0.000440564763, -0.0200469699, -0.0169095378, -0.00275034644, -0.0315101445, 0.00653292192, -0.0309125371, 0.0217582975, 0.0159452185, -0.021405166, -0.0145055316, -0.0420225784, -0.00859738, -0.00901842, 0.0221657548, 0.019435782, 0.0346339941, 0.0382196307, 0.00258566532, -0.0305050779, 0.0261995979, 0.000395786745, -0.0256970655, -0.0140437447, 0.0110828774, -0.0277207773, -0.0136566591, 0.00592173357, 0.018145496, 0.0135412123, 0.0161217842, -0.00582326436, 0.0242573768, 0.00358224148, -0.00584024191, -0.0130590526, -0.00277581275, -0.0127262948, 0.00609150808, 0.0272861533, -0.0241487212, -0.0347698145, -0.0407730378, -0.0141659826, -0.00540901488, 0.0277207773, -0.0110217594, 0.0030797089, -0.00170198909, 0.0291197188, 0.0155649241, -0.00518830819, 0.0248142369, -0.0486234091, -0.00167312752, 0.019435782, -0.000943097228, 0.0375948586, -0.0131201716, -0.00691661239, 0.0053512915, -0.0114292176, 0.0285492763, 0.00335304602, -0.0405828916, -0.00259585166, 0.0125225652, -0.0217582975, -0.0341450423, -0.0102136321, 0.00427831663, 0.0210112892, -0.0128960693, -0.0145870233, -0.00348377228, 0.00569084054, 0.0185393728, -0.0244746879, 0.0108384024, 0.0111439964, 0.00601341203, 0.006173, 0.0245969258, -0.0388172381, -0.0069811265, -0.0256970655, -0.0193542913, -0.00398290902, 0.035150107, 0.0119657051, 0.00250417343, 0.0133850202, -0.0307495538, -0.0173577424, 0.00768059725, 0.035611894, 0.0138468063, 0.0536758974, -0.00629184209, -0.010702583, -0.0238091722, -0.00763306068, 0.0178738572, 0.00259585166, -0.0145055316, -0.014301802, -0.00117568823, 0.00788432639, -0.0044345092, 0.029554341, -0.0139215067, 0.0373775475, -0.00798619166, 0.0219620261, -0.000897258113, -0.0122033898, -0.0125701027, -0.0011833281, 0.00378257525, -0.00935117807, 0.0268515311, 0.0250179674, 0.0134461382, 0.00924931373, 0.00498118298, 0.00797260925, -0.00818992, 0.0201284625, -0.00407458749, -0.0320262574, 0.00850230549, 0.0561206527, 0.0247055814, 0.0150623918, 0.0296358336, 0.00159927562, 0.0208211411, 0.0378936641, -0.0195716023, -0.00312215253, -0.00758552365, 0.00144478085, -0.00884864572, -0.00888260081, 0.0259958673, 0.0278701782, 0.0224373955, -0.000251054, 0.00499476492, -0.000741490046, 0.0196123477, -0.022573214, -0.00196429063, 0.0122645078, -0.0121151069, -0.02232874, -0.00912707578, 0.0131948721, -0.0396321528, 0.0216088947, -0.00654310826, 0.0253982618, -0.0333844535, -0.0186480284, 0.00881469063, 0.0225867964, 0.00829178561, 0.0293098651, 0.0142746381, -0.0176701266, -0.00521547208, 0.00955490768, -0.0159316361, 0.0231029112, -0.0378936641, 0.00728672044, 0.0327053554, -0.0300704557, -0.00533431396, -0.0164205879, 0.0100166937, -0.0145191131, -0.00477066264, -0.00305254501, -0.0103766164, -0.0146549325, 0.0171404313, 0.00388444, -0.0286036041, 0.0134597206, -0.00916782208, 0.0220435187, 0.000833592669, -0.00610169489, -0.00859738, -0.0232115667, -0.00406779628, 0.00923573133, 0.00372145651, -0.0117212301, -0.014301802, 0.0100710215, -0.000681644538, 0.00469256658, -0.00638012495, -0.0094937887, 0.0344438441, -0.0355847292, 0.0182269886, 0.0186208654, -0.00956169888, 0.000774596061, 0.00372485211, 0.0505520478, -0.0171811767, 0.0357477143, -0.0279788338, 0.0196938384, 0.0153747769, -0.0281146541, -0.00278090592, -0.0319176, -2.39541168e-05, -0.0227633622, 0.0142474743, -0.00726634776, 0.0455810502, -0.0175886359, -0.013717778, 0.0354217477, -0.00200673426, -0.00614244072, -0.00826462172, -0.00485215476, 0.00493025081, 0.00711694593, 0.00484196795, 0.0226139612, 0.0203729365, -0.0120811518, 0.0159995463, -0.0122577175, 0.0463144779, 0.0292012095, -0.000575111, 0.00257547875, 0.0459613465, 0.00239382, 0.00107976573, -0.00514756236, -0.0316731259, -0.0108723575, -0.0340635516, -0.0478899851, 0.00231402623, -0.0202914458, 0.021894116, -0.00208143517, 0.0132831549, -0.00628844649, -0.0170589387, 0.0344981737, -0.00632919231, -0.0113341445, -0.0164749157, 0.0314829797, -0.0309668649, 0.0163255129, -0.0291468818, 0.0143289659, 0.0440598726, 0.0109878043, 0.00865849853, 0.0396593176, -0.010179678, -0.0220027715, 0.00402025972, 0.00872640777, -0.0133510651, 0.0159316361, 0.0281418171, -0.0131337531, 0.0307495538, 0.00391499931, 0.0188653395, -0.00473331241, -0.0256970655, 0.0561749786, 0.00744970422, 0.0131201716, 0.0221385919, 0.0372417308, 0.0107569108, 0.0293913577, -0.0215409864, 0.00641068444, -0.0120200329, -0.00371806114, -0.0019473132, 0.00384369423, -0.0110692959, 0.0233609676, 0.0361280069, -0.0394148417, 0.0486505739, -0.00163323048, 0.023496788, 0.0187702663, 0.00540901488, 0.025126623, -0.0128349504, 0.0177108739, 0.0116533199, -0.0192592163, -0.0244203601, -0.0474282, 0.0176972914, -0.00799298193, 0.0269194413, -0.034416683, -0.00979259145, -0.00601341203, -0.0414249711, 0.0385184325, -0.0218262076, 0.00942587852, 0.0206717402, -0.013072635, 0.0123595819, -0.00915424, -0.0239314102, -0.000724937, -0.0208754689, -0.0333572887, 0.0210112892, 0.00679437444, -0.0192727987, 0.00785716251, 0.00200503669, -0.00552446162, -0.0179960951, -0.0294456854, -0.00608811295, -0.0460971668, 0.00739537599, -0.00815596618, 0.0333029628, -0.0156871621, 0.020142043, 0.0413434803, -0.00734783942, -0.0150352279, 0.00137092895, 0.0231164936, 0.00829857681, -0.0203321911, -0.00624770066, -0.024664836, 0.0255205, -0.00851588789, 0.000283947826, 0.0118910046, 0.00353470468, 0.0187566839, -0.00323759927, -0.0112526519, 0.0129707698, -0.0148722446, -0.00311026839, 0.0139486706, -0.054192014, 0.0185937, 0.00370787457, 0.0174935628, -0.017805947, 0.00855663326, 0.00475368556, 0.0482431166, -0.0154970139, -0.00601001643, 0.0107840747, -0.00428510783, 0.00531394128, -0.00850909669, 0.0337919109, 0.0361823365, 0.0213644207, -0.00787753612, -0.0113748899, 0.00105854392, -0.00946662482, 0.0131609179, -0.0258464664, -0.0178602748, 0.00438357703, 0.00646161661, 0.0184850451, -0.0317546166, -0.0212693457, -0.0414249711, 0.00460428372, 0.00706940936, 0.0123799546, 0.0307495538, 0.00348377228, 0.023836337, 0.0357748792, -0.0252216961, 0.00613564951, 0.00573498197, -0.0115107093, -0.0146956788, -0.0191777255, -0.00590475649, 0.0136906141, -0.0143425474, -0.019897569, 0.0103698252, 0.0165292434, -0.0087196175, -0.00350414519, -0.0209705438, 0.0411533341, -0.00286749098, -0.00806089211, 0.00624770066, 0.0127262948, 0.00643784832, 0.00694038067, -0.00708978204, 0.000665515952, -0.0295000132, -0.0107772835, -0.0301791113, 0.029092554, -0.00399988657, -0.00110608072, 0.00243626372, -0.00338700088, -0.0302334391, 0.0349871255, -0.0152117936, -0.015008064, 0.0228312723, 0.00989445671, 0.00666534575, -0.00776888, -0.030695226, 0.00434962194, 0.00176565454, 0.0583480932, -0.00825783052, -0.0332486331, -0.0129503971, 0.0186208654, 0.000351220951, -0.00295747141, -0.0140301632, 0.0202778634, 0.0176565461, 0.00100251834, 0.00254322169, -0.0175478905, 0.0020712486, -0.0289295707, 0.0240536481, -0.0104309442, -0.0121151069, -0.00627146941, 0.00383350765, -0.0121558523, 0.0251945332, -0.0257921387, 0.0262267608, 0.00831215829, -0.000870094169, 0.0046687983, -0.0251673684, 0.00545315631, 0.00471973047, -0.0156192519, 0.00135140482, 0.0200605523, -0.00692000752, 0.00467219343, -0.016053874, 0.000285433343, -0.00975863729, 0.0118434671, -0.00123765599, -0.0216360595, -0.0548711121, -0.0236461889, 0.00741574913, -0.0132899461, 0.00263999309, 0.00648198975, -0.00376220234, -0.0147500066, -0.000586995273, 0.00728672044, -0.0107501196, -0.00829178561, -0.00677060615, 0.00937834196, 0.0241758861, 0.0154426862, -0.0410990044, 0.0140844909, -0.0183492247, -0.0364811383, -0.0299346354, 0.0277751051, 0.00776888, -0.0157686528, -0.011103251, -0.000514841115, -0.00618997728, -0.0191369783, 0.0204680115, 0.0157550722, 0.024298124, 0.00109759194, 0.013439348, 0.00731388433, 0.0248278193, 0.00638012495, -0.0141252363, 0.040936023, -0.0446031503, 0.0129503971, -0.00265187724, -0.0242166314, -0.0108316112, -0.00719164684, 0.0119724963, 0.0138264336, -0.0227633622, -0.0290110633, -0.00259245629, -0.00428850343, 0.0223559029, 0.0114360088, -0.0231029112, -0.0168552101, 0.0189332496, -0.00995557569, -0.00110353413, -0.00336832553, -0.00989445671, 0.0137585234, 0.0575331748, -0.00663139112, 0.0133646466, -0.0287394226, -0.0215138216, -0.0134936757, -0.0319176, 0.0414521359, 0.017466398, -0.0364268124, 0.0292555373, 0.0196123477, -0.0132152457, 0.0414521359, -0.0159723833, 0.0183899719, 0.0334387794, 0.0227226168, 0.0195444375, -0.00956169888, -0.00151353946, -0.00231402623, -0.017805947, -0.0102747511, 0.00863133464, -0.00204748, 0.00513398, 0.00592852477, -0.00567386299, 0.000593361794, -0.0133374827, -0.0182269886, 0.0436252505, -0.00749724079, -0.0141524, 0.0104852719, 0.00709657324, -0.0280059986, -0.0251130406, 0.00489969132, -0.0108451936, -0.000298590865, -0.000191314612, -0.0258464664, -0.0107229557, 0.00130217022, 0.00114173337, -0.0275713746, -0.0319719277, 0.0108791487, -0.0286850948, -0.000142716672, -0.0450106077, -0.0231029112, 0.00751761394, 0.00788432639, 0.023496788, -0.0196395107, 4.06928193e-05, -0.0353945829, 0.0027418579, -0.00501174247, -0.00776208891, 0.00786395371, 0.010458108, -0.00193712674, -0.0271095876, 0.0248821471, -0.0125565203, 0.00714411, 0.0324337147, 0.0184850451, 0.0147228427, -0.0176157989, -0.0122577175, -0.00979259145, 0.00778925279, -0.0150352279, 0.0210927818, -0.0309125371, 0.0138060609, 0.0197074208, -0.0268786959, 0.00356186857, -0.02884808, -0.00595568866, -0.0166243166, -0.0465861149, -0.0124614462, 0.0169638656, -0.0273948088, 0.0148179168, -0.0145598594, 0.0118502583, 0.0177652016, -0.00996236596, 0.00408816943, -0.00256359461, 0.00899804756, -0.021894116, -0.0194493644, 0.0269058589, 0.0114292176, -0.00247361418, 0.000663818209, 0.0154291047, 0.00599303888, 0.0179553479, -0.0109334765, 0.014790752, 0.0135412123, 0.0321077481, -0.0168144647, 0.0168823749, -0.00349735422, -0.00219518389, -0.00485215476, -0.0304507501, 0.0183084793, 0.000381568127, -0.0304507501, 0.00490648253, 0.00958886277, 0.0115039181, -0.0191913061, 0.025927959, -0.00905916654, -0.00982654653, 0.0146413511, 0.00566707226, 0.0135344211, -0.00358903245, 0.00830536708, 0.0231708214, -0.0256563183, 0.0298531447, 0.000605246, -0.00415607914, 0.00996915717, -0.00443111407, 0.00800656434, 0.0251130406, 0.012346, -0.0325967, 0.00417305669, 0.0170861036, -0.00191505614, 0.0288209151, 0.0128077865, -0.00722560193, -0.0271503348, 0.006257887, 0.0267428756, 0.00941229705, 0.00376220234, -0.00590815162, 0.020698905, 0.0182269886, 0.0100778127, 0.00428850343, 0.0377306789, 0.0084819328, -0.00859058835, 0.0042409664, 0.00354489102, 0.0103834067, -0.0139350891, -0.00934438687, 0.0171811767, -0.0122780902, -0.000351220951, -0.0049574147, -0.00656348141, -0.0143561298, -0.00449562818, 0.00865170732, 0.0168552101, -0.0129843522, 0.0264984, -0.0174799804, 0.00359242782, 0.026756458, -0.0201827902, -0.00373164308, -0.0217582975, -0.018607283, 0.00285051344, 0.00189128763, 0.0103358701, 0.0179689303, -0.0055414387, 0.00685209781, -0.00823066663, -0.0158637278, 0.0175750535, -0.0121558523, -0.00936476048, -0.0201827902, 0.00415607914, 0.0154970139, 0.00412551966, 0.0339820608, 0.00627486454, 0.0356662236, 0.0102951247, 0.00545655191, -0.0302877668, -0.0158229806, 0.0172219221, 0.00351433177, 0.0183763895, 0.00611867197, -0.0287394226, 0.0152253751, 0.00713731907, 0.0066891145, -0.00447525503, 0.00349395862, 0.0243660323, 0.0133306915, 0.00748365885, -0.0039455588, 0.00913386699, 0.0229399279, 0.00787753612, -0.0228720177, 0.0153068667, 0.00990803819, 0.00510002533, 0.0193542913, -0.00994878449, 0.0230621658, 0.0313743241, 0.00434622681, -0.00158739137, 0.00700149965, -0.000744461082, -0.017004611, -0.0182948969, 0.0200198069, 0.00382671668, 0.0282504726, -0.00551427482, 0.0211878549, -0.0205223393, -7.84676376e-05, 0.022573214, -0.00852946937, -0.0172626693, 0.00653971266, 0.0106143, 0.00799977314, 0.00360261439, -0.0206717402, -0.00842081383, 0.0073682121, -0.0283048, -0.0152389575, -0.00667553255, 0.00883506332, 0.024787074, 0.00817633886, -0.0240808111, -0.00869924389, -0.0195308551, 0.00844118744, -0.0232523121, 0.0240943935, 0.00900483783, -0.0234288778, -0.00753798662, 0.00812201109, 0.0262539256, 0.000141018929, 0.0051577487, 0.0105531812, 0.0308853723, 0.0103222886, -0.0132152457, -0.00439715898, -0.0393876769, -0.0106482552, 0.0171268489, 0.000870943069, -0.000729605788, 0.0388987288, -0.0183628071, 0.0138332248, -0.0383282863, 0.0177380368, 0.0412619896, 0.00401007337, -0.000289253279, -0.00683851587, 0.00975863729, 0.027802268, -0.0157414898, 0.0109945955, 0.0272997357, 0.011809513, 0.00786395371, 0.00109589426, -0.0100981863, 0.00466200709, 0.00510681607, -0.00301689235, 0.00801335555, -0.024325287, 0.0544093251, 0.00651934, -0.000565773458, -0.0309668649, 0.00731388433, -0.00430548051, -0.00260094507, -0.0144919492, -0.00316120079, -0.0119724963, 0.00553125236, -0.00956848916, -0.0406915471, -0.0162576046, 0.0105735548, 0.000186645819, -0.000636229874, -0.000749978761, 0.0141659826, -0.0212014373, 0.00915424, -0.00869924389, 0.00386746251, -0.0143153835, -0.0160946213, 0.00981296506, 0.0193950366, 0.00308819767, -0.000128604166, -0.0132831549, -0.0040406324, 0.000704988488, -0.0356933847, 0.0526436716, -0.011008177, -0.00315610762, -0.010947058, -0.0129232332, -0.018946832, -0.0119453324, -0.0198839866, 0.025371097, 0.0089029735, -0.00838685874, 0.00387085811, -0.00873999, 0.0223830678, 0.0105803451, 0.0205630846, -0.00796581805, 0.0169638656, -0.00690982118, 0.00629184209, 0.00217650877, -0.000393452356, 0.0392790213, -0.011103251, -0.0127466675, 0.00325118122, -0.0117280213, 0.017805947, 0.00273506693, 0.0056399079, -0.000922724255, 0.0144647853, 0.00068885996, 0.0150759732, 0.0336560905, 0.0293913577, 0.0138128512, 0.0144783678, -0.0372688919, -0.0335202739, -0.0178602748, 0.011408845, -0.00598964375, -0.0050524883, 0.0237548444, 0.00403384166, -0.0160402935, 0.00117314165, 0.0306680612, 0.00395235, -0.0137449419, -0.00438357703, 0.0182813164, 0.0145055316, 0.0168008823, -0.0317817815, 0.0100370673, 0.00665855501, -0.0246376712, 0.0276664495, 0.000544127193, -0.00243965932, 0.00729351165, 0.0334116183, -0.0215545669, -0.00729351165, 0.0286579318, -0.0246105082, -0.00882148184, -0.00256699, 0.0251537859, -0.0202235356, -0.0199247319, -0.0029354007, 0.00956848916, -0.0128009953, 0.0271639172, 0.00966356322, -0.0113409348, 0.00331569556, 0.0141388187, -0.00830536708, 0.00747686811, -0.00800656434, -0.00192014931, 0.0138468063, -0.00942587852, 0.0105599724, -0.00109249877, -0.0128145777, -0.0130454712, 0.00456014229, 0.00138451089, -0.00395235, -0.00358903245, -0.000536487321, -0.0169367027, -0.011286607, 0.00591154722, -0.00774850696, -0.00110692962, 0.0113273533, -0.0162304398, -0.00619337289, -0.0297716521, 0.0132084545, 0.0129096508, -0.0150216455, 0.00621714117, 0.0165835712, 0.00146939815, 0.0036535468, -0.000711355067, 0.00776888, 0.0221385919, -0.019435782, 0.0106618367, -0.0133850202, -0.00436659949, -0.0117687667, -0.0149944816, 0.0128417416, 0.0105260173, 0.029065391, 0.0187838487, -0.0355304033, 0.00359921902, 0.0289838985, -0.00544976071, 0.0363724828, -0.0203865189, -0.0106482552, -0.00444469601, 0.00668571889, -0.0146549325, 0.00411533331, -0.0132016633, -0.021866953, 0.00852946937, -0.000904049084, 0.00216292683, -0.000966865628, 0.00804731064, 0.00291842315, 0.0655193627, 0.0029337029, 0.00424775761, 0.0233609676, -0.00178772525, 0.0415336266, 0.0107840747, -0.00284372247, -0.00213236734, 0.026756458, 0.013072635, -0.022206502, 0.00585042825, -0.020481592, -0.00237174938, 0.00827141292, 0.00571460882, -0.00753798662, -0.0204001013, 0.00530375447, 0.00683851587, 0.00490648253, 0.0147771705, 0.0110489232, 0.0206309948, 0.0251945332, -0.0315373056, -0.00346170156, 0.000657451688, 0.0279788338, -0.0151982112, 0.00203050277, -0.011286607, -0.00346509716, 0.0164070055, 0.000158102484, 0.0011587108, -0.00578591414, -0.0147771705, -0.005582185, 0.00271808938, -0.00799298193, 0.0406643823, -0.000328301394, -0.00633937912, -0.00802014675, -0.0089029735, -0.00578591414, 4.58921641e-05, -0.0136634503, -0.0158908907, 0.00963639934, -0.000853965641, 0.0216768049, -0.00631561037, 0.00201012986, 0.0127059221, -0.0145598594, -0.0198704042, -0.000640898652, 0.00481480407, 0.0227633622, -0.000667638145, 0.00763306068, -0.0159180555, 0.035611894, -0.00356526393, -0.0312385038, 0.0260909423, 0.00484196795, -0.00757873245, -0.0121626435, 0.0118230944, -0.0148722446, 0.0180640034, -0.00241079764, 0.00275543984, 0.0097314734, 0.000906595727, -0.013378229, -0.00711694593, -0.00219518389, -0.00173849065, -0.0239042472, -0.0141524, -0.00766022457, 0.0136566591, 0.0129368147, -0.000508474535, 0.00939192437, 0.00572819076, -0.00462126127, -0.0033768143, -0.000129346925, 0.019408619, -0.00274864887, -0.0141116548, -0.0168552101, -0.00474689435, 0.00736142136, 0.0221929196, -0.0117008565, 0.0100438576, -0.00912707578, 0.0127602499, -0.00623751432, -0.000781387032, -0.00962960813, -0.0299889632, -0.0400939398, -0.0121354796, -0.0203457735, -0.000314719422, 0.00715090102, -0.00527659059, -0.0236869343, 0.0231164936, 0.0100234849, -0.0152797028, 0.00420361618, -0.0210112892, -0.0326510258, -0.0062612826, -0.00427492149, 0.0278973412, -0.00471973047, -0.0430548079, -0.00657027215, 0.00417305669, 0.0108927302, -0.0131948721, 0.0106957918, -0.00793186389, -0.0322707333, -0.00485555, -0.0146141872, 0.0124478647, 0.00467219343, 0.00412891526, 0.027924506, 0.0271503348, 0.0286579318, -0.0117348116, -0.018634446, -0.00217650877, -0.0122848814, 0.0149265723, -0.0113613084, -0.0264440719, 0.000377111544, 0.0208618883, -0.00305594062, 0.0326510258, 0.0165835712, -0.0131744994, 0.0140980724, -0.00575875025, -0.0131065892, -0.0187566839, 0.00692340313, 0.0190554876, 0.00190656737, -0.00823745783, 0.00904558413, 0.00420361618, 0.00763306068, 0.0184578802, 0.0199926421, -0.00780283473, 0.0104852719, -0.0183220617, 0.0133374827, -0.0175614711, 0.00399649097, 0.00387764908, -0.004044028, 0.0164613333, 0.0163255129, 0.0149809, -0.0113001894, 0.00571460882, 0.00494043715, 0.0341178775, -0.00275374204, 0.0116804838, 0.00620016409, 0.0232658945, -0.010885939, -0.00143714098, -0.00370787457, 0.00892334618, 0.00548032, -0.0148994084, 0.000138578413, -0.00250247587, -0.0068826573, -0.000909991213, 0.0164613333, -0.0145734409, 0.00312215253, -0.0182813164, 0.00327494973, -0.0203050282, -0.0160810389, 0.00179621391, 0.00608471734, -0.00948020723, -0.00570442248, -0.0161896944, 0.0179281849, -0.00107382354, -0.00265017967, 0.0143425474, 0.00994878449, -0.0165835712, 0.051665768, 0.0159723833, -0.0201284625, 0.0042409664, 0.0133918105, -0.00636654301, -0.0103426613, -4.64757613e-05, -0.00945304241, -0.011748394, 0.0260909423, 0.00734783942, 0.0107365381, 0.00652273558, -0.0030814067, 0.0161217842, -0.00454656035, 0.0317546166, 0.00497778784, -0.0194222, -0.0398766287, -0.00831894949, 0.00153645896, -0.0212693457, -0.0315916352, 0.00290144584, 0.0049574147, -0.0335202739, -0.00139469735, -0.00888260081, -0.00896409247, 0.0357748792, 0.00454995595, 0.00784358103, -2.73230798e-05, -0.00164087035, 0.00215443806, 0.00674344227, 0.00375880697, -0.013439348, 0.0189604145, -0.0119996602, 0.00390820857, -0.00071220391, 0.00553804357, -0.000407458749, 0.00274525327, -0.00882148184, -0.00213576294, 0.0240264833, -0.00130301912, 0.00223932532, -0.0127874138, -0.0177923646, 0.0117076477, 0.00821029395, 0.00227667578, 0.0211063623, 0.00407798309, -0.0183084793, 0.00208822615, -0.0209569614, -0.0038470896, 0.0117959306, 0.0154426862, -0.0140437447, -0.00595568866, 0.00782320835, 0.00343623548, 0.00307801133, 0.0199654792, -0.00425454834, 0.00912707578, -0.0079794, 0.0145191131, 0.00679437444, -0.0202778634, 0.0026433887, 0.000276307954, -0.00723239267, 0.0144376215, -0.00743612228, 0.00785716251, 0.0106210914, -0.00291672559, -0.0114428, -0.000106586536, -0.0162847675, -0.000129453038, 0.00695056701, 0.00474010361, 0.0324337147, -0.00584024191, 0.0168416277, 0.0233202223, 0.00772134308, 0.0237005167, 0.015714325, 0.0271095876, -0.0129232332, -0.00304575404, -0.027000932, -0.0161896944, -0.0328411758, 0.0101864683, -0.00452618767, -0.000117887153, -0.00178432977, 0.012149062, -0.00799298193, 0.00284202467, -0.0097111, 0.000569168944, -0.00656008581, -0.0074700769, -0.000123935373, 0.0100302761, 0.00447186, 0.0052494267, -0.0143561298, 0.0221929196, -0.0164613333, -0.0190419052, -0.00664836867, 0.00346509716, -0.0183899719, 0.0056399079, -0.0023174216, -0.0159588, -0.0270145144, -0.0220706817, -0.0102475872, -0.0155513417, -0.00971789099, -0.00520868087, 0.00351093616, -0.0127738314, -0.00846835133, -0.00175037491, 0.0160946213, -0.000830197183, -0.000242353068, 0.00503890635, -0.00929685, 0.00625449186, -0.001775841, -0.00411872892, -0.0121626435, 0.00105514843, -0.00147958461, 0.022695452, 0.00523924036, -0.00264169089, -0.0130794253, 0.00981975533, 0.0133646466, -0.00356865954, -0.0126108481, -0.011992869, 0.000139957832, 0.0187159386, 0.00692340313, 0.0295271762, 0.0131269628, -0.014546277, -0.00343114207, -0.00844118744, -0.00440734532, 0.00595908426, 0.00781641714, 0.0178874396, -0.00383690326, -0.01906907, 0.00650575804, 0.0207396504, -0.00146939815, -0.0118027218, -0.0273269, -0.0158094, -0.0226275418, -0.00705582742, -0.00225630286, 0.0120404055, -0.0079047, 0.00854984298, -0.00774171622, -0.0136702405, 0.00146939815, -0.0182134062, 0.00299821724, 0.0267972033, 0.0041424972, 0.00059675728, -0.0170589387, 0.00221046363, 0.00316120079, 0.00850909669, -0.00478424458, -0.0191233978, -0.00303896307, -0.0032325061, 0.00581307802, 0.0108791487, 0.00245663663, 0.0245561805, 0.00253133755, 0.00312554813, -0.0163662601, -0.0148043344, -0.00753119588, -0.00924931373, 0.00429189857, -0.00402705045, 0.0110828774, 0.00289974804, -0.0280059986, -0.00482159527, -0.000770351675, -0.00433604, 0.016148949, -0.0111304149, 0.000113006136, -0.015836563, -0.0160946213, -0.0232115667, 0.0148994084, 0.00524263596, 0.0205223393, 0.0379751548, -0.00868566241, 0.0156192519, 0.0183763895, 0.0307495538, -0.00329702045, 0.0208754689, -0.00582326436, -0.0207396504, -0.0168416277, 0.0113884723, -0.0142746381, 0.00971789099, -0.007796044, -0.000961772399, 0.00522226281, 0.0132831549, 0.0122577175, -0.00536826905, 0.00252284878, 0.00710336398, -0.0106618367, 0.0154426862, 0.0216088947, 0.0181998238, 0.00955490768, -0.0182948969, -0.000381780352, 0.00426133955, 0.00848872401, -0.000800486654, 0.00677400175, 0.013962253, 0.0351229422, 0.00438697264, 0.0137517322, 0.000760589668, 0.00255340803, -0.0220842641, 0.00732746627, -0.0174256526, 0.00704903621, -0.00733425748, -0.000897258113, -0.00108910329, -0.00928326882, -0.00272997352, -0.00639710249, 0.00408477383, 0.0276392847, 0.000476641842, -0.0139486706, -0.00964998081, 0.00597945694, -0.00119521236, 0.00279958104, 0.00998953, -0.00929685, 0.00432585366, -0.00816954765, 0.0194222, -0.0227633622, 0.0187838487, -0.0122509263, 0.0110489232, -0.0100166937, -0.00218160194, -0.00548032, 0.0101932595, -0.010947058, 0.0171404313, 0.00623411871, 0.017099686, 0.0175478905, 0.0067909793, 0.00537845539, 0.0180911683, 0.000784782518, -0.00126397097, 0.017466398, 0.0057791234, -0.013840015, -0.00977901, 0.00263999309, 0.00232930575, -0.0057757278, 0.0195444375, -0.0222608298, 0.018946832, 0.0245833434, 0.00074531, 0.016515661, 0.00378257525, 0.00374862039, 0.00957528, -0.00503211562, 0.0100031123, -0.00124699355, 0.00745649496, -0.0196938384, 0.0116125746, -0.000149401545, 0.0136974044, -0.00424775761, 0.00412551966, -0.019897569, 0.0283591282, -0.0198296588, 0.00855663326, 0.0114835454, 0.0171947591, 0.00462805247, -0.00267225038, 0.0118977949, -0.030695226, 0.0256834831, -0.0110217594, 0.00900483783, -0.0143832937, 0.000826801697, 0.0180504229, 0.0217175502, -0.00285900221, 0.00477066264, 0.00101525139, 0.00234798109, -0.00233100355, 0.0180911683, 0.00956848916, -0.00631561037, 0.00931043271, 0.00543617876, -0.00493025081, -0.0171540137, -0.00335134822, 0.00143204769, 0.0134936757, -0.00237684278, -0.0100846039, -0.015714325, -0.0167737175, 0.00338700088, -0.00704903621, 0.0221929196, 0.00623072311, 0.0157414898, 0.0151846288, 0.00768059725, 0.0127262948, 0.0112526519, 0.0180096757, -0.0035381, -0.00806768332, 0.00516793504, 0.0312928334, 0.00124274916, 0.0248006564, -0.000372018316, 0.0234696232, -0.0053478959, 0.00812201109, -0.0170453582, -0.00383011228, 0.0139079252, -0.0153204491, -0.00253473292, -0.0192999616, 0.0255748276, 0.00699470844, -0.0121218972, 0.0132356184, -0.0178331118, -0.00634277426, -0.0076058968, -0.000951585942, 0.0108723575, 0.0112730255, 0.0140029993, 0.018634446, 0.00134546275, -0.00520528527, -0.00870603509, -0.0162711851, -0.012149062, -0.00612206757, 0.00541241048, -0.00639370689, -4.45658e-05, 0.0157686528, 0.00752440467, 0.000934608513, -0.0114767542, 0.0212693457, -0.0099216206, 0.0148586622, 0.00435301755, 0.00700149965, 0.00421040691, 0.0117551852, -0.00510002533, 0.0121151069, 0.0186480284, 0.024203049, -0.00196768623, -0.00316629396, 0.0111372061, -0.00711015519, -0.0137856873, -0.00327325193, 0.00643105712, 0.0275442116, 0.00282674516, -0.00140148832, 0.0056772586, -0.00797260925, -0.00627146941, 0.0263625812, 0.00343963085, 0.000781387032, 0.0210927818, 0.0138332248, -0.0017274553, 0.00881469063, 0.0122033898, -0.0114903366, -0.0244475249, -0.0147228427, -0.00623072311, -0.0184443, 0.0082849944, 0.0220842641, -0.00452958327, -0.00519849453, 0.00483178161, 0.0184986275, -0.00521547208, -0.0164884981, 0.00529696373, -0.00266545918, -0.00684191147, 0.00245154346, -1.34692173e-05, 0.0135683762, 0.0201827902, -0.00191675383, -0.00225969823, -0.00937834196, 0.00802693702, 0.00026548485, -0.0161353666, 0.0180640034, -0.00134716043, -0.00259754946, -0.00430548051, 0.00818992, 0.00713731907, -0.0104037803, 0.013500466, -0.00724597462, -0.0138943428, -0.018607283, -0.0199383143, 0.00633258792, 0.00787074491, -0.0238499194, 0.0228991807, -0.00937155075, -0.0209977068, 0.00838685874, 0.0062612826, 0.0238906648, -0.0150895556, -0.012916442, 0.0018980786, -0.00266715698, -0.00785037223, 0.00603378471, -0.000926119799, -0.0106686279, 0.00130047253, 0.0154562686, 0.000447355735, -0.0252216961, 0.0139350891, -0.0099284118, 0.0138535975, -0.00802014675, -0.0191641431, 0.0240943935, -0.0129571883, 0.00255510584, 0.00214255392, -0.0370244198, -0.00156022748, 0.00312724593, -0.00467219343, 0.000918479927, 0.00263659772, -0.0168959554, -0.00645143026, 0.0178602748, 0.0231164936, -0.0116397385, -0.0169367027, -0.0181862414, -0.0136294952, -0.00517812138, 0.00776208891, 0.00281655858, 0.0249093119, 0.00540561927, -0.00842081383, -0.0277751051, 0.00425454834, 0.00700149965, 0.0165428258, 0.00903200172, -0.014206728, -0.0206853226, -0.00931043271, 0.00943267, 0.0117619755, -0.00499476492, -0.0139350891, -0.00588438334, 0.00964998081, -0.0207124855, 0.000916782185, 0.0156599972, 0.00682153832, 0.0117823491, -0.0356390588, 0.0156871621, -0.011626156, -0.00112051156, -0.0380023196, 0.0041458928, -0.010118559, 0.00798619166, -0.0092900591, -0.00161370635, 0.00846835133, 0.0132356184, 0.0146006048, 0.00143883866, -0.0137721058, 0.0220299363, -0.0151167195, 0.0102272145, 0.00966356322, -0.00463144761, -0.00823745783, -0.0212829281, -0.012149062, -0.0108112385, -3.1275642e-05, 0.0043394356, -0.0176701266, -0.0124750286, -0.00761268754, 0.00500155613, 0.00477066264, 0.0026926233, 0.0244746879, 0.0113884723, 0.00168840715, 0.000492346, 0.0108995214, 0.00469256658, -0.00781641714, -0.00662120478, 0.00489629572, 0.00657706335, -0.0107229557, 0.022668289, 0.0011086273, -0.00475368556, 0.0203729365, -0.0181183331, 0.020359356, -0.0113545172, 5.47522686e-05, 0.00290993461, 0.00927647762, -0.00294219167, -0.0106754191, -0.026661383, -0.0141388187, 0.00456014229, 0.00352112274, 0.0357205495, -0.0111100422, 0.00484196795, 0.00329702045, -0.00768059725, -0.00728672044, -0.0011824792, 0.00258396752, 0.000117674936, 0.00386067154, -0.0356933847, 0.0243524518, 0.0144376215, 0.00652613072, -0.00147788681, -0.00829178561, 0.00571800442, -0.00694717141, 0.0100981863, -0.00530035933, -0.00338190747, -0.00842760503, -0.00678079249, -0.0337104201, -0.00248380052, -0.0125225652, -0.00679437444, 0.010118559, -0.000629438844, -0.00040512436, -0.018973995, 0.00640389323, 0.00519849453, -0.00929685, 0.00650575804, -0.0125904754, 0.00693019433, -0.00119691, 0.00291163218, -0.0180775858, -0.00986729283, -0.0168416277, 0.0122577175, 0.0172219221, -0.00494043715, 0.0144376215, -0.00641407957, -0.0124750286, 0.0104648983, 0.0124139097, 0.015347613, 0.0209297966, -0.00846156, -0.00346000376, 0.000789875747, 0.00106703257, 0.0146006048, -0.000119478791, -0.003752016, 0.000532667444, 0.00704224547, 0.018267734, -0.0112526519, 0.0135208396, 0.0180232581, 0.010240796, 0.00479103578, -0.0154426862, -0.029065391, 0.000104623519, -0.00869924389, -0.0125633115, 0.0111575788, -0.0167329721, 0.0115718283, 0.00613564951, 0.0380023196, -0.0272589903, 0.00110183633, 0.0151438834, -0.0121151069, 0.0180096757, 0.0139215067, -0.00517133065, -0.00889618229, 0.00878073554, 0.0104648983, -0.0156464167, -0.00116635067, 0.0394148417, -0.00425115274, -0.00897088367, -0.00320873759, 0.0149673177, -0.00382332131, 0.00735463, 0.00434283121, -0.00658385409, 0.00466200709, -0.00753119588, -0.0165835712, -0.0172490869, -0.00618658215, 0.0039897, 0.0162032768, 0.0331128128, 0.00212897197, 0.016176112, 0.037676353, -8.24997842e-05, -0.00904558413, 0.00415947475, 0.00255001266, 0.00215104269, -0.0286579318, 0.0144783678, -0.0275306292, -0.00158569356, -0.0122780902, 0.00511021167, 0.0172626693, -0.0102611696, 0.000303259672, 0.00857700687, -0.00770776113, -0.0136023313, 0.00321383076, -0.00651254877, 0.00572819076, 0.00433604, 0.0110285496, 0.00650236243, -0.0117280213, -0.00697433529, -0.0127195036, -0.00975863729, 0.00701508159, 0.00863812584, 0.0258464664, 0.0049642059, -0.0170861036, -7.5549644e-05, 0.0159723833, -0.00637333374, 0.0219756085, -0.00170538458, 0.00320534222, 0.00695396261, 0.00533770956, -0.027584957, 0.0136906141, -0.0156192519, -0.00238702912, 0.000918479927, -0.0190283228, -0.00141507026, 0.000671458081, 0.00782999862, -0.0229127631, -0.00253643072, 0.0239449926, 0.00200333889, -0.000223890092, 0.00119181687, -0.00452279206, 0.00542259682, 0.0150623918, 0.00960244425, 0.00882827304, 0.00323420367, -0.0168280452, 0.00512379361, 0.00673665106, 0.00954811648, 0.0106618367, 0.0248821471, -0.00580628728, 0.00747686811, 0.00620016409, -0.0231844019, 0.00248549832, -0.0347969756, 0.0405285619, -0.021065617, 0.0209705438, 0.0321892425, 0.0127262948, 0.0172626693, 0.0013785687, -0.00696754456, 0.00876715407, -0.0165428258, -0.0321077481, -0.00525961351, -0.012515774, -0.0139758345, 0.0053512915, 0.00190656737, 0.00686567975, 0.00996915717, -0.00867887121, 0.00632240158, -0.014546277, 0.00307631353, 0.0128689054, -0.0131065892, -0.0114292176, -0.00326476316, -0.00331739336, 0.0125633115, 0.00112475595, 0.0214730762, -0.011687275, -0.0122033898, -0.00341246696, 0.0107365381, -0.00259924727, 0.00287597952, -0.0268107858, -0.00126397097, 0.0100846039, 0.00380634377, -0.00191505614, 0.0089029735, -0.00744970422, -0.00188789214, 0.018946832, -0.00172490871, 0.0210520346, 0.00206275983, -0.0181183331, -0.0186887737, 0.000528423057, 0.0135276299, -0.0128756966, 0.0157279074, 0.0302877668, -0.00512718922, 0.00488271378, -0.00831215829, 0.0055414387, -0.0106482552, 0.0213372558, 0.0181183331, 0.0312113389, 0.00833932217, 0.00248719612, -0.00589117454, -0.0371330753, -0.0115854107, -0.0110760871, 0.0290382262, 0.014668515, 0.0261588506, 0.0135412123, 0.02232874, -0.00401686411, -0.00267055258, -0.018729521, 0.00536487345, -0.0140573271, 0.00154834322, -0.000929515285, -0.0120064514, 0.000294983154, -0.00217820657, 0.00203389814, 0.000671033631, -0.015252539, -0.0179281849, -0.0218805354, 0.0141116548, -0.0142338919, -0.0068894485, 0.0151574649, -0.0130250975, -0.012271299, 0.00576893659, 0.0028878639, 0.0160810389, 0.0136091225, -0.0251537859, 0.0163119324, 0.0166922268, 0.00438697264, -0.0139758345, 0.00128434389, -0.0383554511, -0.00927647762, -0.0225596316, 0.025927959, 0.00823066663, -0.00201012986, 0.0153883584, 0.0059726662, 0.0223151576, -0.000122025405, -0.00379615719, 0.00633598352, 0.00998274, 0.0150488093, -0.0121083157, -9.29515227e-05, 0.00506607024, -0.010702583, 0.0066246, -0.0211742725, 0.0184035525, -0.0143968761, 0.00303387, 0.0273948088, -0.00298124, 0.0120607791, 0.0103901979, 0.00986050162, -0.0303692576, -0.00935117807, 0.0129911434, 0.0155105963, 0.0140573271, 0.00442092726, -0.00336323236, -0.0113748899, 0.00522226281, 0.0119181685, -0.0254390072, 0.0187702663, -0.00622053677, 0.00887581, -0.00978580117, 0.011592201, -0.0165020786, 0.00863133464, -0.0134461382, -0.00541241048, 0.0182948969, -0.000447780185, 0.0221657548, -0.0220027715, -0.00528677739, -0.0210248716, -0.00368410605, -0.00372485211, 0.0110896686, 0.018145496, -0.019313544, -0.00582666, 0.0117212301, 0.0138671789, 0.0035381, 0.0135344211, -0.011103251, -0.0129843522, -0.0143425474, -0.00384029862, -0.0316731259, 0.0151982112, -0.00543617876, 0.012855323, -0.0270145144, 0.00636993814, -0.0027859991, 0.00312385033, -0.0132492, -0.00540222367, 0.011347726, -0.00709657324, -0.0359650254, 0.00873999, 0.00191335834, -0.00589456968, 0.0244882703, -0.00285390904, -0.010179678, -0.0143153835, 0.0247191638, -0.000858634419, 0.0157958176, -0.00794544537, -0.00439715898, -0.0122848814, -0.010947058, -0.0266478024, -0.00619676849, 0.00886901841, -0.0258872118, 0.00900483783, -0.0151438834, -0.000434622663, 0.0124003282, -0.0128485328, -0.00416626548, -0.0127195036, 0.00240740203, -0.00282334955, -0.00159927562, -0.0221793372, -0.0237684269, 0.00708978204, 0.0223694853, -0.00413231086, 0.0030372655, -0.0123120453, 0.00853626058, -0.00164935901, 0.00481480407, -0.0129571883, 0.0188789219, -0.00696075335, -0.000156616952, -0.0022664892, 0.00196768623, 0.0175478905, -0.0106007187, 0.00810163841, -0.00706261816, -0.0107501196, 0.00800656434, -0.00486913184, -0.0116669023, 0.00266715698, 0.0122101801, -0.0122780902, 0.00644463906, 0.00615262706, 0.00747686811, -0.00440394972, -0.0169095378, -0.00843439624, -0.0126448032, 3.45915505e-05, 0.0435980856, -0.00579270534, -0.00135140482, -0.0318089463, 0.00568744494, -0.0417509377, -0.0128349504, -0.0166514814, -0.0205495022, -0.0206853226, -0.0348513052, 0.0122848814, -0.0277615227, 0.00753119588, 0.0105735548, 0.00703545427, 0.0116940662, 0.0227361973, -0.0215002391, -0.00307801133, 0.00870603509, 0.00348037668, 0.042348545, -0.00582666, 0.00837327726, 0.00420022057, -0.0146141872, -0.0108451936, -0.00391839491, -0.00761268754, 0.00631900597, -0.023401713, -0.00450921, -0.00713052787, 0.00844797771, -0.00497439224, -0.0129368147, 0.013901134, -0.00598624814, -0.0138739701, 0.00185733277, -0.0210112892, -0.0150759732, -0.0180232581, 0.0018743102, 0.00235646963, -0.00227667578, 0.0120539879, -0.0172355045, -0.00575535465, 0.010363034, 0.0186751932, 0.0060711354, 0.000686737767, -0.00886222813, 0.000693528738, 0.0175614711, -0.00448544184, 0.00785716251, 0.0118298857, -0.00878073554, -0.00144053646, -0.0254390072, -0.00580968242, -0.0188110117, -0.000899804756, -0.006173, 0.00608811295, -0.0039489544, 0.0192456339, 0.00614244072, 0.00924252253, -0.0156056695, 0.00674683787, 0.00289805024, 0.0124750286, 0.0206309948, 0.0114767542, 0.00156277406, -0.00159078685, -0.0146549325, 0.00514077116, -0.00551087968, -0.00971789099, -0.00346849253, -0.000253600621, -0.01005744, 0.0130115161, 0.000162452954, -0.000117462718, 0.00840723235, -0.00454656035, -0.0123256268, -0.0100302761, -0.0184850451, -0.0119113773, -0.006166209, -0.00201861863, -0.0328411758, -0.00637672935, 0.00220197486, -0.00274864887, 0.00767380651, -0.0127127124, -0.0039897, -0.0055414387, 0.0242709592, 0.00780962594, 0.0156871621, -0.00239212229, 0.00502872, -0.0228041075, -0.0187838487, 0.0309125371, -0.0105939275, 0.000912537798, -0.00623072311, 0.020142043, -0.00231232843, -0.0114767542, -0.00290653901, 0.00386406714, 0.0260909423, -0.0080948472, 0.0057723322, -0.00924931373, 0.000981296529, 0.000658300531, 0.00309498864, 0.0149809, 0.00266545918, -0.000129983586, -0.000796242268, -0.00536826905, -0.00958886277, 0.0132152457, -0.00849551521, -0.0057723322, -0.00553464796, -0.0268243682, 0.00687586609, -0.0217039697, 0.0110217594, 0.0208890513, 0.000831894926, 0.00163492817, 0.00177074783, 0.000491497107, -0.0190419052, 0.0228856, 0.000751252053, -0.00286918855, -0.0138943428, 0.000960074656, 0.0158094, -0.00387085811, 0.0184035525, 0.0137585234, 0.025927959, 0.0128349504, 0.0191098154, -0.013901134, -0.00976542756, 0.0401211046, -0.0137924785, 0.00106873037, -0.0111847427, -0.000182719785, -0.00745649496, 0.00802693702, 0.000917631, 0.00365694216, -0.015836563, 0.00107212586, -0.00880110916, 0.00818313, 0.00451939646, 0.0227633622, -0.0124614462, -0.0191777255, 0.0082782032, -0.0111575788, -0.000382204802, -0.0155105963, -0.0142474743, 0.0278158505, 0.0132899461, 0.024203049, 0.00440394972, 0.0323793888, -0.0147771705, -0.00216802, 0.00216802, -0.00449902378, -0.0150488093, -0.00238702912, -0.00834611338, 0.00372824748, 0.0152797028, 0.00270960061, -0.00799298193, -0.0038470896, 0.0133646466, 0.0154970139, 0.0114292176, -0.00018611527, -0.00694717141, -0.0197481681, 0.00585382385, 0.0157686528, 0.00580628728, 0.0251945332, 0.0135887489, -0.00556181185, -0.0133578554, 0.0130590526, -0.0109742219, 0.00058529753, -0.0337375849, -0.0215817317, 0.0352315977, 0.026172433, -0.0118163032, -0.0118977949, -0.00808126479, 0.000453297864]
|
12 May, 2020
|
How to lock rotational movement of a canvas circle using Fabric.js ?
12 May, 2020
In this article, we are going to see how to lock the rotational movement of a canvas circle using FabricJS. The canvas means the circle is movable and can be stretched according to requirement. Further, the circle can be customized when it comes to initial stroke color, fill color, stroke width, or radius.
Approach: To make it possible, we are going to use a JavaScript library called FabricJS. After importing the library using CDN, we will create a canvas block in the body tag which will contain our circle. After this, we will initialize instances of Canvas and Circle provided by FabricJS and lock the rotational movement of the circle using lockRotation property and render the Circle on the Canvas as given in the example below.
Syntax:
fabric.Circle({
radius: number,
lockRotation: boolean
});
Parameters: This function accepts two parameters as mentioned above and described below:
radius: It specifies the radius.
lockRotation: It specifies whether to lock the rotational movement or not.
Example: This example uses FabricJS to lock the rotational movement of a canvas circle.
<!DOCTYPE html>
<html>
<head>
<title>
How to lock the rotational movement
a canvas circle using FabricJS?
</title>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a Circle instance
var circle = new fabric.Circle({
radius: 50,
lockRotation: true
});
// Render the circle in canvas
canvas.add(circle);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?
|
https://www.geeksforgeeks.org/how-to-lock-rotational-movement-of-a-canvas-circle-using-fabric-js?ref=asr10
|
CSS
|
How to lock rotational movement of a canvas circle using Fabric.js ?
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.00193888182, -0.0132084237, -0.0077154818, 0.022225393, 0.0310755037, 0.0102650607, 0.00545623386, 0.0209439285, -0.0198626928, -0.0293935817, 0.0149771115, 0.0120337484, -0.00473874714, -0.0950419158, 0.00525934203, 0.0100648329, -0.0189282931, -0.0156979356, -0.00602021161, -0.0348665, 0.0166990794, -0.0464530736, -0.014229591, 0.0259229504, 5.78264844e-05, 0.00628050882, 0.0155911464, 0.0137089957, -0.0259763449, 0.00870327652, 0.0207570475, 0.00377431209, -0.0321433917, -0.0149504142, 0.0041013523, -0.0353737473, -0.00428155856, 0.0285125747, -0.0562242344, 0.00942410063, 0.00316194585, 0.00724828104, 0.01239416, 0.0082027046, 0.00249117962, -0.00257961382, -0.0457589477, -0.0078489678, -0.0026813969, -0.0151906889, 0.0103451526, -0.00186045887, 0.0305148624, 0.00732169859, 0.0206903052, 0.0290999133, -0.00481550163, 0.013962619, 0.0331311859, -0.0264168475, 0.0219584201, -0.08591149, -0.00685449783, -0.0286460612, -0.0279519353, 0.00270809396, 0.00127145264, 0.00195389893, 0.000811343605, 0.00545623386, -0.0295537654, -0.000203670192, 0.0035440491, -0.016525548, -0.00979118608, -0.0225057136, 0.00438501, 0.0296605546, -0.0205568187, 0.0415941887, -0.0146834422, -0.00894355122, -0.0437032655, 0.016605638, -0.00870327652, -0.00528603932, 0.0149103682, -0.0401258431, 0.0244145598, 0.0163920615, -0.0263367556, 0.036948882, -0.000335174613, -0.0177402683, -0.0103184553, 0.0176067818, -0.00576992566, -0.00442839274, -0.0163787119, -0.00932398625, -0.00586002832, 0.0298741311, 0.00366752339, -0.0308352299, -0.0292067025, -0.00592343416, 0.0329176076, 0.0128546869, 0.0384172238, -0.00626382325, 0.0195957217, -0.0430091396, 0.0332913697, 0.0807856321, -0.0772616044, -0.0028132142, -0.0183009095, -0.0541952513, 0.0191819146, 0.0057766, -0.0107522849, -0.0333447643, -0.00332046021, 0.0507246181, -0.0158047229, 0.0754461959, -0.00277483696, 0.00389778661, 0.0203699395, 0.0139092244, -0.0396452956, -0.00732837245, 0.00534277083, -0.0111660901, 0.0734172091, -0.0321433917, -0.0107055642, 0.00809591636, -0.021304341, 0.0159115121, -0.0216247067, -0.0254023559, -0.0457055531, 0.0394851118, 0.000478463306, 0.00906368904, -0.0157513283, 0.00654414343, -0.00571653107, 0.0219717696, -0.0490960926, -0.0186479725, -0.01013825, 0.00803584792, 0.0529938787, -0.026243316, -0.0290999133, -0.0133953039, 0.011399691, -0.0270709284, 0.0404996052, -0.0263367556, 0.00664759474, 0.0011554868, -0.0290198214, -0.00429490674, 0.000649074907, 0.00573321665, -0.0125676915, 0.0273379, -0.0101716211, -0.0188081544, 0.02601639, -0.01545766, -0.0124742519, -0.0128947319, 0.00663758349, -0.0466933474, 0.0177669656, -0.0305949543, -0.0559038706, -0.0130415671, 0.0420747362, 0.0328375176, 0.0232532341, -0.0164187588, 0.0178070106, -0.00753527554, -0.0247616228, -0.0285125747, 0.00301010581, 0.0275247805, 0.0611365139, 0.00270308834, -0.00134653843, -0.0225324091, 0.00840960816, 0.000939406629, -0.0168859586, -0.0206769574, 0.00122306403, -0.0169260055, -0.00827612169, -0.0376163088, -0.027391294, -0.00215913355, -0.0217448436, -0.0414340049, 0.0241609365, -0.0374828242, 0.00209906488, 0.020236453, 0.00805587, -0.0047854674, 0.00323369447, 0.0119803539, -0.0335316435, 0.0113729937, -0.012354115, -0.0138691785, -0.0184343942, 0.0136689497, -0.00577993691, -0.00655749207, -0.0414073095, -0.023373371, 0.00577993691, 0.021077415, -0.000956926611, -0.0559572652, 0.0330243967, -0.0127412239, 0.00284658559, 0.0328108184, -0.00351401465, 0.00854976848, 0.00487890746, 0.0263901502, 0.00606693141, 0.0163787119, -0.0160583463, -0.000461777585, -0.0282456037, 0.00281488267, 0.0186613202, 0.0293401871, -0.0180739835, 0.0223321803, -0.00778889889, -0.029073216, 0.0019722532, -0.00195890479, -0.0123274177, -0.0168592613, 0.00131316693, 0.00568649685, -0.0228794739, -0.0293935817, 0.0249218065, 0.0534744263, 0.0329443067, 0.0399122648, -0.0197559036, 0.00121388689, 0.0379633717, 0.000389611785, 0.00137240125, -0.0167391244, 0.0121071655, -0.0173932053, -0.00744183548, -0.0404462107, 0.0274446886, -0.0431426242, 0.00114881247, 0.0352669582, -0.0548893772, 0.00652412046, 0.0315827504, -0.00462528458, 0.0413272157, 0.00211741915, 0.0133419102, 0.0228661243, 0.00334382034, -0.0125810402, -0.0361746624, 0.0195690244, -0.0510449857, 0.0138691785, -0.037723098, -0.0278184488, -0.00609696563, -0.0144832134, 0.0482150875, -0.00094024092, -0.00148085854, -0.00937738, -0.0260564368, 0.0152040375, -0.0341990739, -0.0280854218, -0.0161651354, -0.0167524721, 0.026817305, 0.0154977059, 0.0379366763, -0.00131566986, 0.00560306804, -0.00473207328, 0.0199828297, -0.0153642204, -0.0399389639, -0.0264568944, 0.0087099513, -0.0182742123, 0.0261231791, 0.0191819146, -0.0272311121, 0.0171662793, -0.0129614752, -0.00364416349, 0.0158848148, 0.0142429397, 0.0490160026, -0.0601754189, -0.00505577633, -0.0460259169, 0.0073417211, -0.00753527554, -0.0144565161, -0.0288863368, -0.0310488064, 0.0466399528, -0.0236803889, -0.00637394888, -0.0232932791, -0.00221419637, -0.0305949543, 0.00389111228, 0.00840960816, 0.00707474956, 0.0166857298, 0.00165522448, 0.0351334736, -0.0225591063, 0.00327207171, 0.0090436656, 0.0265236367, 0.00639730878, 0.000883509405, 0.0308352299, 0.00497234752, -0.0204633791, 0.00594345713, -0.0398321748, 0.0323302709, -0.0648207217, -0.0335583389, -0.00087766943, 0.00819603074, -0.0167391244, 0.00376430061, -0.00322702015, -0.00781559572, -0.0126010636, -0.0721891448, -0.00385106658, -0.0385507122, 0.000638646306, -0.0401525423, -0.0518459, -0.00553298788, -0.0198493451, -0.0274446886, -0.0181140285, -0.0129814977, -0.0265503339, -0.0343058594, -0.00189716753, -0.000282197405, 0.0474942625, 0.0376163088, 0.0133152129, 0.0274980832, 0.0103117814, -0.0440770239, -0.0276315697, -0.00564645091, 0.0260297395, -0.0502440706, 0.0134019786, 0.0106388219, 0.00162435579, -0.00647740066, -0.0184477437, 0.00471538724, -0.0539282784, 0.012814641, -0.0367887, 0.00490226736, 0.011019256, -0.00630720612, -0.00623712596, 0.00503575336, 0.012354115, -0.0202631503, -0.0188081544, 0.00918382592, -0.0216647517, 0.0232799314, -0.00201897323, 0.0104986615, 0.0104986615, 0.0173798557, 0.0290198214, 0.0175800845, 0.0256159324, 0.00911708269, -0.00640064618, 0.0500838868, -0.0254023559, -0.018514486, -0.00834286492, -0.0403661169, -0.013962619, -0.035160169, -0.00913043134, -0.0142963333, 0.0163787119, -0.0686117187, -0.00260464242, 0.000914378033, -0.0245747436, -0.0264168475, 0.00391113525, 0.0407131799, 0.010785656, 0.0246014409, 0.0438100547, -0.0152574312, 0.0306483489, -0.0186880175, -0.013008195, -0.00584334275, -0.0142429397, -0.0307284407, -0.0330243967, 0.0210640654, -0.0144031225, 3.59264632e-05, -0.0234668106, -0.0201830585, -0.00286994549, -0.00557970814, -0.0179938916, -0.0110392794, -0.0096243294, -0.0176067818, -0.0228661243, 0.00426821, 0.00998474099, -0.0155644491, 0.0157913752, 0.0218382832, -0.0292067025, -0.0225858036, -0.0250285957, 0.0096443519, 0.000511000457, 0.0404195115, 0.00844965409, 0.0219050273, 0.0504309498, 0.0148703223, 0.000599017716, -0.0283523928, -0.00946414657, -0.0383104347, -0.0553165339, 0.0231597926, 0.00714149233, 0.0167791694, 0.0201830585, 0.0211441573, -0.0249218065, 0.0238672681, -0.0463729799, -0.0353470519, -0.00113796676, 0.0457322486, 0.00859648827, -0.00549294241, 0.0156979356, 0.0344660431, -0.00384439225, 0.0082027046, -0.0108790956, 0.019088475, -0.0189683381, 0.0174999945, 0.0133686066, -0.0335049443, 0.0497902185, 0.0425552875, 0.0324103609, 0.00550295366, 0.0251887776, -0.0147101395, 0.0134086525, -0.0300877094, 0.00899027102, -0.00483218767, 0.00992467254, 0.0124275321, -0.0109525137, 0.0020807106, 0.00142162421, -0.0158714671, 0.0188748986, 0.0154977059, -0.0272444598, 0.0137356929, -0.0428489558, 0.0101249013, 0.0363882408, 0.0168726109, -0.0170861874, 0.000201063041, 0.00207069912, -0.01621853, -0.00701468112, 0.00936403219, 0.023907315, 0.0126411095, -0.027925238, -0.0168592613, -0.0291533079, 0.0233867187, 0.00333047169, -0.0548893772, -0.0215980094, -0.0483218729, 0.04797481, 0.0193821434, -0.00105620676, 0.00293668848, 0.00364416349, 0.00914378, 0.00404128386, -0.0196357667, 0.00316194585, -0.0224656668, -0.00117384107, -0.00841628201, -0.0112662045, 0.0272711571, -0.0442639031, -0.0141628478, 0.00300009432, 0.0288863368, 0.0076287156, 0.0313424766, 0.0349198952, 0.00442839274, -0.0244546067, 0.0054095136, 0.00908371154, -0.0110259308, -0.031102201, -0.00264301966, -0.0181807708, -0.0158714671, 0.00667762896, 0.0226391982, 0.00102283526, 0.0130949607, 0.00205568201, 0.00883008819, 0.0117267314, -0.0175400395, 0.00309520285, -0.00976449, -0.010825702, -0.00364750065, 0.00491227908, -0.00925724301, -0.0251620803, -0.0447978489, -0.011593245, -0.00318697444, 0.0153241744, -0.0081359623, 0.0173531584, 0.0148970196, 0.0353470519, 0.00196724758, -0.0253489614, 0.0133419102, -0.0488558188, -0.00189549895, 0.00550295366, -0.0028365741, 0.0148436259, -0.00806254521, -0.00947749428, 0.0017269731, 0.00654414343, 0.0127745951, 0.0206502602, -0.0237204339, 0.0158047229, 0.00810259, -0.0199427847, -0.0244279094, -0.0296338573, -0.00427822117, 0.0346262269, -0.018474441, -0.0305949543, -0.0175400395, 0.00860316213, 0.0259096026, 0.00563643966, 0.01904843, -0.0114864567, 0.0248150174, -0.00675438344, 0.0218916778, -0.0137356929, 0.0108790956, -0.019969482, 0.0103384787, -0.00419479236, 0.00621710299, 0.0110459533, 0.00645737769, 0.0126477834, -0.0195690244, -0.0110659758, -0.00377764925, 0.0345995314, 0.00555301085, 0.0504576489, -0.00537947938, 0.0170060955, -0.0339854956, 0.0048121647, 0.0252555218, 0.0105453813, -0.0255758874, -0.0282989983, -0.0127345491, 0.0202631503, -0.000952755217, 0.0191552173, -0.00979118608, 0.0137223443, -0.0220251642, -0.017940497, -0.00455186702, -0.00253789965, 0.00203565904, 0.000527686207, -0.0105320327, -0.010445267, 0.0371624567, 0.0236536916, 0.00892352872, -0.00997139234, -0.0126010636, 0.00182041316, -0.00626048585, 0.0131350067, 0.00863653421, -0.025055293, -0.0103651751, 0.0485621504, 0.031716235, 0.0186079256, 0.025135383, -0.0166590326, 0.0450381227, 0.0218916778, 0.000474291883, -0.00604023412, 0.00220752205, 0.00349732907, -0.00300843711, -0.040739879, 0.0380434655, 0.026590379, -1.84846613e-05, 0.0251754299, 0.00374094071, -0.0161651354, -0.0221853461, -0.024521349, -0.00399790099, 0.0184343942, -0.00450848415, -0.00504242769, -0.0312623829, 0.0207170025, -0.0493096709, 0.0323836654, -2.59280605e-05, 0.0102316895, -0.0272578094, -0.0430091396, -0.00195890479, 0.0151639916, -0.0123474402, 0.013121658, 0.0106187984, -0.00980453473, -0.0238672681, 0.0181407258, -0.0217047986, 0.0193420984, -0.0263234079, 0.0248283669, 0.0315560512, -0.0420747362, 0.00095358945, -0.0202097557, 0.0136822984, -0.0501372814, -0.0298474338, 0.00717486395, -0.0139092244, -0.0105053354, 0.0308352299, -0.0114731081, -0.0381769501, 0.00931731146, -0.00540283928, 0.0252822191, 0.0117601026, -0.0114397369, -0.016832564, -0.0210106708, 0.00114464108, 0.0160850435, -0.00297005987, -0.014309682, -0.0445575751, 0.00717486395, 0.0225591063, 0.00858314, 0.00198560185, 0.011706708, 0.0276048724, -0.0201029684, 0.00352068897, -0.0205167737, -0.020236453, 0.00746185845, -0.00678441767, 0.054782588, 0.0039478438, 0.0141628478, -0.0292067025, 0.0391113497, 0.0278718434, -0.0246815328, 0.00339554599, -0.0183676518, 0.018861549, -0.0219717696, 0.0128680347, 0.00291166, 0.0138024362, 0.00151840143, -0.0125343204, 0.0338787064, -0.0031252373, -0.028272301, 0.00990464911, -0.0190217327, 0.0242543779, 0.000748772116, 0.0262166187, 0.0118535431, 0.040019054, -0.00469202735, -0.0103651751, -0.0184610914, 0.0399656594, 0.0204099845, -0.012968149, 0.0137223443, 0.0397787802, 0.00366752339, 0.00632722909, 0.00574322836, -0.0336918272, -0.00762204174, -0.0392448381, -0.044450786, -0.0292600971, -0.0217581913, -0.00605358277, 0.00529938797, 0.0275781751, 0.0214244779, -0.00329710031, 0.0251754299, -0.00141161273, 0.00328875752, -0.0122273033, -0.0205167737, -0.027925238, -0.000368337496, -0.0279786326, -0.0141094532, 0.0366552137, -0.00716818962, 0.0019488933, 0.0697864, 0.0116599882, -0.0454652756, -0.00173531589, 0.0156044951, -0.0161117408, 0.0300610121, 0.0319031142, -0.00759534445, 0.0228127297, 0.00574656529, 0.00712814368, -0.0186212752, -0.0304347724, 0.056918364, 0.0300877094, 0.0028616027, 0.0144965621, 0.0333714597, 0.0233867187, 0.0148169287, -0.0189149436, 0.00218082499, 0.0201430134, -0.0209439285, 0.0131283328, 0.0184477437, 0.0145900026, 0.0264835916, 0.0313424766, -0.019395493, 0.029420279, 0.0142562874, 0.0146167, 0.0292867944, 0.00265803677, 0.0144431684, -0.00478880433, 0.0174732972, 0.0103184553, -0.0196491163, -0.0292067025, -0.0399923585, 0.00864988286, 0.00681445235, 0.0321967863, -0.0306750461, -0.0145499567, -0.0305148624, -0.0409801528, 0.021344386, -0.0261098314, 0.0245747436, 0.00368087203, 0.00520594791, 0.0188081544, -0.0139893163, -0.0329443067, 0.0139225731, 0.00050891476, -0.017366508, 0.00326372893, 0.00484553585, -0.0402860269, -0.00818935595, -0.00692124106, -0.00029054028, -0.00546290819, -0.0195556749, -0.0181807708, -0.0551563501, 0.00103451521, -0.011052628, 0.0155377518, -0.0152707798, 0.0461327061, 0.0250686407, -0.0128680347, -0.0233333241, 0.0209839735, 0.0177669656, 0.0124075087, 0.00801582448, -0.0141895451, -0.0186880175, 0.0381502546, 0.00110292679, 0.00459525, 0.0292600971, 0.00961098075, 0.0332646705, 0.00682446361, -0.01055873, 0.0265770312, -0.0141494991, 0.0160983931, 0.00136238988, -0.0453584902, 0.0237204339, 0.000393157505, 0.0116132684, -0.000727080682, 0.0184343942, -0.00831616763, 0.0304347724, -0.0289931241, -0.00269641401, -0.0144698648, 0.00344393472, -0.0163787119, 0.00639397185, 0.030568257, 0.0371891558, 0.030221194, 0.0128880581, -0.0199160874, -0.0104719643, 0.0206903052, -0.00474542147, -0.0254157037, -0.0343859531, 0.0236136448, -0.0077622016, 0.0108590731, -0.0217181463, -0.0264168475, -0.0118468683, 0.00358409481, 0.0120404232, 0.00302011706, 0.00298174, -0.0260964818, 0.018381, 0.0388977751, -0.0109725362, -5.80871965e-05, 0.0183943491, -0.0191285219, 0.00137490418, -0.00391780958, 0.00373092922, 0.0133218868, -0.0143363792, -0.0240941942, 0.0084896991, 0.0226125009, -0.0195556749, -0.00732837245, -0.0113262739, 0.0261632241, -0.00245447084, -0.00441170717, -0.00372091774, -0.00503575336, 0.00836956222, 0.0105387075, 0.0298741311, -0.00258795684, -0.0225724559, -0.018474441, -0.00748855574, 0.0242543779, 0.0176601764, 0.000498903333, -0.00383104361, 0.00921052322, -0.0157646779, 0.0116599882, -0.0100514842, 0.00696796086, 0.0118134972, 0.00191385322, -0.0146567449, -0.0183543023, -0.0266971681, 0.0090436656, 0.0191952642, 0.0320099033, -0.0107389363, -0.0466666482, 0.0145232594, -0.00631054305, 0.0120337484, -0.00311355735, -0.00461861026, 0.00877002, 0.0140827559, 0.00642400607, 0.0167391244, 0.0213710833, 0.000960263773, -0.0557436869, 0.0530472733, -0.0111994622, -0.0239607077, 0.00939740334, -0.00484553585, -0.0229996108, 0.0235469025, 0.00772883, 0.0283523928, 0.0128213149, -0.0154977059, 0.0259096026, -0.0312623829, -0.00251954515, -0.00090770371, -0.00800247584, -0.00276482548, 0.00139993278, -0.014883671, 0.00193554466, -0.00575323962, -0.00620709173, -0.0183543023, 0.0301944967, -0.0260030422, -0.0249351542, -0.0459992215, -0.012814641, -0.00840960816, -0.0157913752, 0.0163787119, -0.00226425356, 0.00468869, -0.0127812689, -0.0118735656, 0.000209405916, -0.00476544444, -0.00650743488, -0.024521349, -0.0146567449, 0.0143363792, 0.0121472115, -0.031102201, 0.0193420984, -0.0317429341, -0.0238405708, -0.0195823722, 0.00699465815, -0.000699549215, -0.0234668106, -0.00809591636, -0.0114530856, -0.0100181121, 0.0128813833, 0.0130148698, 0.0077154818, 0.00595013145, -0.0194755848, 0.0166189875, -0.00276649394, 0.0352135636, -0.00349399191, -0.0152574312, 0.0159649067, -0.02960716, 0.00488224486, -0.00613033725, -0.00678108074, -0.00624713721, -0.000689954963, -0.00592009723, 0.0219584201, -0.0181941204, -0.0113863423, -0.0138958758, -0.0148302773, 0.0114731081, -0.0122473259, -0.00799580198, -0.0145900026, 0.0207036547, -0.00475877, 0.00781559572, -0.000914378033, -0.0077355043, 0.00131066411, 0.0522196628, -0.00985792931, -0.0316094458, -0.0145499567, 0.0023276594, -0.0108523993, -0.0345995314, 0.0417276733, 0.00893687736, -0.0220385119, 0.04789472, -0.00868992787, -0.010672193, 0.0470938049, -0.0127679203, 0.00949084293, 0.0310755037, 0.0109124677, 0.0139893163, -0.0242543779, 0.0133752814, -0.00322702015, -0.0201563612, -0.0187414121, 0.0109725362, 0.0113462964, 0.01621853, 0.00468535302, -0.00930396281, -0.00228093937, -8.32200822e-05, -0.000411303248, 0.0278718434, 0.00586336572, -0.00740846433, 0.0321166925, 0.0386841968, -0.0394851118, -0.00255792239, 0.00537947938, 0.00137907558, 0.0039244839, 0.00541285099, -0.0111994622, -0.00209572772, 0.0250285957, -0.000753360742, -0.00818935595, -0.0321433917, 0.0068478235, -0.010825702, 0.024481304, -0.0143764252, 0.00456521567, 0.0135221155, 0.0020156363, -0.00386107806, -0.0299809203, -0.0157780256, -0.037376035, -0.00282322546, -0.0164187588, -0.0284324847, 0.00662757177, -0.00492229033, -0.010211667, -0.0201697107, 0.0215980094, 0.00643401733, 0.0250285957, 0.0243745148, 0.0102183409, 0.0184477437, -0.0203165449, -0.00313691725, 0.00442505581, 0.0043916842, -0.0216380544, 0.0227459874, -0.0189683381, 0.016031649, 0.0168058667, -0.0209172312, 0.00431492971, 0.00824275054, -0.0072950013, -0.0142162424, -0.0306483489, 0.00157263, 0.0118935881, -0.0156979356, 0.025135383, -0.0140293622, 0.0273379, 0.0155377518, 0.000399831799, -0.00676439516, -0.00221252791, 0.000981955207, -0.0235202052, -0.00220084772, 0.0342524685, 0.0138958758, -0.00628718315, -0.00530939922, 0.0167124271, 0.00764206424, 0.0192353092, 0.0196491163, 0.0193287507, 0.0206903052, 0.0292334, -0.00707474956, 0.010445267, 0.00697463518, 0.00939072855, -0.00166356727, -0.0170327928, 0.0223321803, 0.00620041741, 0.00265970547, -0.00832951628, 0.0318230242, 0.0184210464, -0.0077154818, 0.00254624244, -0.0153508717, -0.0015826415, 0.0175400395, 0.0115598738, -0.00476544444, -0.0111460676, 0.00489893043, -0.0117601026, -0.0193420984, 0.0237471312, -0.00621042866, -0.0181140285, 0.0161517859, -0.0018821503, -0.00229428778, 0.0220785588, -0.00526935374, -0.0306483489, 0.0234534629, 0.0100114383, 0.0100648329, 0.00643401733, 0.00142579561, -0.00179538457, -0.0224656668, -0.0133552579, 0.0323836654, -0.0036608493, 0.01197368, -0.0148970196, 0.0126811545, 0.00411136402, 0.00730167562, 0.00146667566, 0.0387375914, 0.013008195, 0.0162318777, -0.00113462959, -0.0039211465, 0.0183142573, -0.0248951092, 0.00241442514, 0.0200762711, -0.00607694313, 0.0166990794, -0.00665093213, 0.00772215612, -0.0114530856, 0.00606359448, 0.0303012859, 0.0169260055, -0.0231464449, 0.0215312652, -0.0102049923, 0.00403460953, 0.0270041861, -0.00294336281, -0.000866823655, -0.0242944229, -0.0194488876, -0.000743766432, 0.0146433972, 0.0293935817, 0.0154042663, 0.0027965284, 0.0122273033, -0.0219984669, 0.0001844816, 0.0197692532, -0.00925056916, -0.0142162424, -0.0272311121, 0.00562976534, 0.0134220012, 0.0111193703, 0.0420213416, -0.00240941951, 0.032864213, -0.00287495134, 0.0158581175, -0.0279519353, -0.0207837448, 0.0226258505, 0.0187814571, 0.00697463518, 0.00340388902, -0.016525548, 0.0259229504, 0.0137356929, -0.0132684922, 0.000213785912, 0.0157913752, 0.00955758616, -0.00363081484, -0.00134987559, 0.0152974771, -0.0127345491, 0.0174599476, 0.0212109, -0.00617705751, -0.000441337557, -0.000230471647, -0.00811593886, 0.0119136116, -0.00967772305, 0.0215980094, 0.0136155561, 0.0134220012, 0.00149337284, -0.0070080068, -0.00721491, -0.00989797525, -0.0134954182, 0.0110726506, 0.020236453, 0.0135554867, 0.014229591, 0.0196090695, -0.0108056786, -9.91758061e-05, 0.0327040292, -0.0199961793, -0.0177002233, 0.0102383643, 0.00689454377, -0.0044984729, 0.0164187588, -0.0204500314, -0.00495899888, 0.00232098508, -0.00675438344, -0.0146300485, -0.0186212752, -0.00170444732, 0.0369755775, 0.0174466, -0.0130549157, -0.0267505627, -0.0220518615, 0.0126277609, -0.01904843, 0.0157780256, -0.0117200566, -0.030755138, -0.0414874, -0.000350191753, 0.0141628478, -0.00654080603, -0.00208738493, 0.00933066, -0.00961098075, 0.0223188326, 0.000212430197, -0.0027965284, -0.0232932791, -0.00788901281, 0.0203699395, 0.00106037816, -0.00787566416, 0.0226792451, -0.00175867591, 0.0240674969, -0.00922387186, 0.0180873312, 0.0217715409, -0.0014883671, 0.0162318777, -0.00123724691, -0.0264702421, 0.0176468287, 0.00508247362, 0.0167658217, 0.0194889326, 0.0160049517, 0.00304848282, 0.0191151723, 0.00488558179, -0.00856979098, 0.00509582181, -0.0221052561, 0.0264301971, -0.00968439784, 0.044183813, 0.0226258505, -0.00754195, -0.0495766401, 0.0118735656, 0.0025479109, 0.00420146668, 0.0019155218, -0.00445175264, 0.0127812689, 0.0110059073, -0.0184477437, -0.0240541492, -0.00840960816, 0.00707474956, -0.0147768827, -0.00978451222, 0.00876334589, 0.000364583189, -0.00273312256, 0.0050991592, -0.000502657611, 0.00221419637, -0.0118802395, -0.0283790901, 0.0186212752, 0.0262700133, 0.00104536104, 0.0152440835, -0.000995303853, 0.0017102873, 0.0075819958, -0.0305148624, 0.0568115748, -0.00769545883, -0.0156712383, 0.00316027738, -0.00201229914, -0.0281121172, -0.0246948805, -0.0140026649, 0.00189216179, 0.0231330954, 0.00234768214, -0.0124075087, -0.0105453813, 0.0240141023, 0.0206636079, 0.0171128847, -0.0114998054, 0.016605638, 0.00289831124, 0.0178737547, 0.000936069468, -0.0122139547, 0.0255491901, -0.0156578887, -0.0189015958, 0.00607360573, 0.0142829847, 0.00636393763, 0.00408133, 0.0205701683, -0.00151256146, 0.0134954182, 0.010251713, 0.0363348462, 0.0211842023, 0.036228057, 0.00646405201, 0.021918375, -0.00724828104, -0.0338253118, 0.00170778448, 0.0159248617, -0.0115064792, -0.00850972254, 0.0219717696, -0.00838291086, -0.0206636079, 0.0127545726, 0.0552097447, -0.00159265299, -0.00713481801, 0.00272477977, 0.0310221091, 0.00754195, 0.0223989245, -0.0414340049, 0.00593010848, -0.0273112021, -0.0125610176, 0.0341189802, -0.0118802395, 0.00125810411, 0.00886346, 0.0572921224, -0.016605638, -0.00952421501, 0.00321200304, -0.0019488933, -0.00925056916, 0.00217415066, -0.00932398625, -0.0114397369, -0.00101532671, -0.00251453952, 0.017326463, -0.00414139824, 0.0375896133, 0.00709477253, 0.0129347779, 0.00897024851, -0.000559389126, -0.0172864161, 0.00661422359, -0.00543954782, 0.0133552579, 0.0112128109, -0.00996471848, -0.00544955954, -0.026243316, -0.0248817615, -0.010939165, -0.00691456674, -0.00847635, 0.0144031225, 0.0116599882, -0.012240652, -0.0253756586, -0.00877002, 0.0189549886, -0.00856311712, -0.00636393763, -0.00757532148, -0.0213577338, -0.00431492971, -0.0206102133, 0.010251713, 0.0247482751, 0.00143747567, 0.0081559848, 0.0202765, -0.00138408132, 0.0134286759, 0.0131617039, 0.0112595307, 0.00357408333, -0.0144298198, 0.0101649472, -0.0110726506, -0.0123474402, 0.0047854674, 0.000103712242, 0.00808924157, -0.0017269731, 0.031102201, 0.0233867187, -0.0187681094, 0.00480549037, 0.0107789813, -0.0128813833, 0.00568315946, -0.0176201314, -0.0121138403, -0.0103718499, 0.00143080135, -0.00284491689, -0.0014633385, -0.00752860121, -0.0196758136, 0.0151773402, 0.00336551177, 0.00594011974, 0.00856979098, -0.00588338822, -0.00620041741, 0.0732570291, 0.011513154, -0.00364416349, 0.00767543586, -9.07808e-05, 0.0118001485, 0.0126878293, 0.0114263883, 0.00994469505, 0.00629385747, 0.0171128847, -0.0152307348, 0.00311856298, -0.0207170025, -0.0141094532, 0.00529605057, 0.00409467798, -0.0139893163, -0.031636145, -0.00189549895, 0.0113396225, -0.00708809821, 0.0220652092, 0.00602021161, 0.030221194, 0.00866323151, -0.012928104, -0.0171529297, -0.00634725159, 0.0104252445, -0.0205968656, 0.00647740066, -0.00486889621, 0.0180339366, 0.0274179913, -0.00859648827, -0.000976115232, 0.00102700666, -0.0186346229, 0.00295671145, -0.00114714389, -0.00539950235, 0.0225724559, -0.0106655182, -0.00610364, -0.0104786381, 0.00526601635, -0.00185879029, 0.011132719, -0.00304180849, -0.00546290819, 0.00442171842, 0.00818935595, 0.0242944229, -0.00257961382, 0.00157847011, 0.00255625392, -0.0171128847, -0.00455186702, -0.00418144418, -0.0148970196, 0.0127278753, -0.00304681435, 0.0164588038, -0.0138291335, 0.011593245, -0.0183009095, -0.0260030422, 0.00364750065, 0.00103868672, -0.0106922155, -0.022265438, -0.0131083094, -0.00941742584, 0.0114664333, 0.00380434655, -0.00686117215, 0.00251453952, 0.000799663598, -0.00652745785, -0.00840960816, -0.013695647, -0.00850972254, -0.0121872574, -0.00994469505, -0.00399790099, 0.00934400875, 0.00223088218, -0.000550629105, 0.00398455234, 0.0134954182, -0.00618039444, 0.00321200304, 0.00842963066, 0.0273645967, -0.00409801537, -0.0109458389, -0.014536608, -0.0117334053, 0.0160449985, 0.0183676518, -0.00154343, 0.0138157848, -0.0161117408, 0.00556969689, 0.010712239, 0.00133318978, -0.0136022074, -0.0181941204, -0.0199427847, -0.0223722272, -0.0260297395, 0.00440169545, -0.00133819552, -0.00298674568, -0.0125543438, 0.0330510959, 0.0103985472, -0.00559305679, 2.72707402e-05, -0.0119670052, -0.0227192901, 0.00336050615, 0.00788901281, 0.0192887038, 0.00535278209, -0.0492562763, -0.0090703629, 0.00178871024, 0.0235469025, -0.0174199026, 0.021731494, -0.0204767287, -0.00713481801, 0.00415474689, -0.00219751056, 0.0198359955, 0.00593344541, 0.000492646184, 0.0115331765, 0.0230930503, 0.0280854218, -0.0344927423, -0.0201296657, -0.00109792105, -0.00863653421, 0.0127879437, 0.00746185845, -0.0240141023, 0.00582665717, 0.0170194451, -0.00967772305, 0.0116533143, 0.00069370924, -0.00456187874, 0.00764873857, -0.014536608, -0.0124275321, -0.0133152129, 0.0117467539, 0.0106922155, 0.011019256, -0.00545289647, 0.0121205142, 0.00112378388, 0.0107923299, 0.0242143311, 0.0218916778, -0.0138691785, 0.00808924157, -0.017940497, 0.00243611657, -0.00990464911, 0.00112878962, -0.0192219615, 0.0127679203, 0.0256960243, 0.0140560586, 0.00684114918, -0.010865747, -0.00285659707, 0.0070080068, 0.0119002629, -0.00340222032, 0.0277650543, 0.00705472659, 0.0127412239, -0.0164721534, -0.00884343684, -0.000794657914, 0.0048355246, -0.00230763643, -0.00794908218, 0.0202097557, -0.0058066342, -0.00927726552, 0.00191719038, 0.0148169287, -0.0141895451, 0.0039244839, -0.0123741375, 0.0183543023, -0.00645737769, -0.0136489272, 0.00202397909, -0.00285326, -0.00451849587, -0.0107990047, -0.00615369715, 0.0164187588, -0.0105654038, -0.005145879, 0.012127189, 0.00537614245, -0.00321200304, 0.0426620729, 0.0155777978, -0.0250819903, -0.000283240282, -0.00343392324, -0.00647406327, -0.00619708, -0.0104586156, -0.00690789241, -0.00987127796, 0.0245747436, 0.00482551334, 0.00701468112, -0.00220084772, -0.0152040375, -0.00284491689, 0.0119269602, 0.0336384326, 0.0134486984, -0.0272177625, -0.0232398845, -0.0096443519, 0.00505243894, -0.00379767222, -0.0161117408, -0.00168275589, 0.00930396281, -0.0264568944, -0.00426821, -0.0212242492, -0.00728832697, 0.0400724486, -0.00468201609, -0.000808840792, -2.47548451e-05, -0.00596014271, -0.00663758349, 0.000531440484, -0.00967104919, 0.00256960234, 0.0121739088, -0.0249084588, 0.0137890875, 0.00145165855, -0.00482217595, 0.0027948597, -0.00323703163, -0.00946414657, 0.00532608526, 0.00122139545, -0.000667846354, 0.0195690244, 0.00623712596, -0.0225457586, 0.00737509271, 0.0133152129, -0.00462528458, 0.0308352299, 0.00542619964, -0.0033471575, 0.0149237169, -0.0266437735, -0.00969774649, 0.0121071655, -0.00342391175, -0.00597349135, 0.00518258754, 0.0208771862, 0.00910373405, 0.0027948597, 0.00697463518, -0.000559806242, -0.00440503284, 0.0116399657, 0.0301944967, 0.00770213315, -0.0088033909, 0.00924389437, 0.0148970196, 0.00255124806, 0.00800247584, -0.0218249355, 0.000438834715, 0.0121138403, -0.0198359955, -0.0194488876, -0.00946414657, -0.00609696563, 0.00955758616, -0.00596014271, 0.00335550029, 0.0382837392, -0.00133485836, 0.0174866449, 0.0254557505, -0.00717486395, 0.0198359955, 0.00780224754, 0.0187147148, -0.00792905875, -0.00319531723, -0.0264969394, -0.0109124677, -0.0266304258, 0.0101449238, 0.00116716686, 0.000689120672, -0.0212509464, 0.00915045477, -0.0134420246, 0.000481800467, -0.0322501808, 0.00324370596, 0.0100781806, -0.00172864168, -0.00899694581, -0.00655749207, -0.00657084072, -0.0124675771, 0.00522263348, 0.0133686066, -0.0235335529, -0.00613033725, -0.00267138542, 0.00611031428, -0.00622377731, -0.00177202455, 0.00236937357, -0.0181006808, 0.00819603074, -0.00297005987, -0.0121538863, -0.00963100325, -0.00677440641, -0.0160983931, 0.00535611948, -0.000299300271, -0.0146567449, -0.00971776899, 0.0250285957, -0.0102650607, 0.00189216179, -0.0186079256, -0.0306483489, 0.00171529304, -0.00486222189, 0.00781559572, 0.00420146668, -0.00327374018, 0.00121805829, 0.0195423272, 0.00897024851, -0.0119803539, -0.0121138403, 0.00459191296, 0.0164855011, 0.0116533143, -0.0160583463, -0.0019722532, 0.00963100325, 0.0156712383, -9.35965145e-05, 0.0297406446, 0.0241208915, -0.0042581982, 0.00543954782, -0.0160449985, -0.0112528568, -4.14796814e-05, -0.00608361699, 0.00458190171, -0.0117734512, -0.0102183409, -0.00790903624, 0.0137890875, 0.00475209579, -0.010291758, -0.0132217724, -0.0166456848, -0.0062271147, -0.00913043134, 0.00134904124, -0.0155511005, -0.00704805227, 0.0164321065, -0.0140293622, -0.00809591636, -0.00234935083, -0.0128213149, 0.0199961793, 0.00620375434, 0.00990464911, -0.00781559572, -0.0150705511, 0.0103451526, 0.00205401331, 0.00210240204, -0.00589673687, -0.00570985675, -0.00222754502, -0.00361412903, -0.0226125009, 0.0122540006, 0.00721491, 0.0197692532, 0.0021040705, 0.00555968517, -0.00270976266, 0.00290498557, 0.00274813967, -0.0212242492, 0.00431159278, -0.00239607086, 0.0124876006, 0.00423150137, -0.0191018246, 0.00167191017, 0.0117334053, 0.00790236145, 0.0098846266, 0.000682446349, -0.000208884478, -0.0266170762, 0.000259254535, -0.0295804627, -0.00106037816, 0.00829614513, 0.0181006808, 0.0433562025, 0.0099313464, 0.0206903052, 0.0173131134, 0.0244012121, 0.000911875162, 0.0112795532, 0.00442839274, -0.0105387075, -0.00946414657, -0.00217248197, -0.0160716958, -0.00724828104, -0.00192553329, 0.00261799106, 0.0110259308, 0.0175667368, 0.00457189, -0.000582331966, -0.00346062053, -0.00932398625, 0.00957760867, 0.00901696831, 0.0137757389, 0.00662757177, 0.00418144418, -0.0253756586, 0.00340555748, 0.00255291676, 0.0153642204, -0.00933733489, -0.00654414343, 0.0179271493, 0.0357208103, -0.00199561333, 0.0216647517, 0.00747520709, -0.00193220749, -0.0235602502, -0.00217415066, -0.00850972254, 0.00534610776, 0.0119202854, -0.0057232054, 0.00944412313, -0.00768211, 0.00521929655, -0.0180472862, -0.000306808855, 0.0140293622, 0.0103451526, 0.000550629105, 0.00421481533, -0.0161918327, 0.0196090695, -0.00432827836, -0.000546457653, -0.00126394408, -0.00367419771, 0.00196391041, 0.0151773402, -0.0137490416, 0.0087566711, -0.00974446628, 0.0250285957, -0.00916380342, -0.0198226478, -0.0167791694, 0.00727497833, -0.00682780053, 0.0130949607, 0.0185411833, 0.0148436259, 0.000563560519, -0.0020389962, 0.00422148965, 0.0168993082, 0.00344727188, -0.0154843573, 0.000599434832, 0.00227760221, -0.0119002629, 0.00118301832, -0.00776887592, 0.00284825405, -0.000884343695, 0.000921886589, -0.0143363792, 0.0242944229, 0.00242944225, -0.00749523, 0.000251120247, -0.0168058667, -0.000515589083, 0.0078489678, 0.00560640544, 0.000275940256, 0.00533609651, 0.0227192901, -0.0252688695, 0.00452517, 0.00862318557, 0.00428823242, -0.00164938439, 0.00309019722, -0.0107789813, 0.0246948805, -0.0251487326, -0.00135070982, 0.014229591, 0.010712239, 0.0156311914, 0.0144565161, 0.00923054572, -0.019395493, 0.021384431, -0.00912375748, 0.0163119696, -0.00530939922, -0.015991604, 0.0239740573, 0.028539272, -0.00557303382, 0.0015742986, -0.00877002, 0.00903031696, 0.0197425559, 0.0354271419, 0.0104986615, -0.0212109, 0.0137623902, -0.00946414657, 0.00129064126, -0.0161918327, 0.0118668908, 0.00737509271, 0.0148970196, -0.00583333103, -0.00661756052, -0.011860217, -0.0160449985, -0.0082027046, -0.0051225191, 0.0106388219, 0.00673102355, 0.0071147955, -0.00803584792, 0.0154042663, -0.00495899888, 0.0114664333, 0.00423817523, -0.00363748916, -0.0176201314, 0.000896858, 0.0291533079, 0.00949751772, 0.0295537654, -0.00265469961, -0.00442839274, -0.00530272489, 0.012280697, -0.0011179439, -0.00522597088, 0.0209305789, -0.0270442311, 0.00524933077, -0.0134753957, 0.0122072799, -0.0158848148, -0.00704805227, 0.00461193593, -0.0330243967, 0.00412471266, 0.00923722051, -0.00647072634, 0.00295337429, -0.00593678281, 0.0157513283, -0.000206485915, -0.00598016568, 0.00304014, 0.00213410496, -0.00276649394, -0.0235869475, -0.000425694685, 0.022839427, -0.0201029684, -0.00678108074, 0.0195156299, 0.00141411566, 0.0128947319, -0.00544288522, 0.0062271147, -0.00325038028, 0.0242143311, 0.000904366549, 0.020196408, -0.0018087331, 0.0212242492, -0.00201730477, 0.01621853, 0.02960716, -0.00119553262, 3.16246733e-05, -0.0049423133, -0.00058191485, 0.0078489678, -0.0149370655, 0.00615036, -0.000642817758, 0.0138157848, -0.0168459136, 0.00830281898, 0.000554800499, -2.06225195e-05, -0.0055396622, 0.0227459874, 0.00784229301, -0.00486889621, 0.0237070862, 0.012127189, 0.00276816264, 0.0181674231, 0.0162318777, -0.0193821434, -0.0240007546, -0.00933733489, -0.00212242478, -0.0067410348, 0.0145900026, 0.00618373137, -0.0120804682, 0.00908371154, -0.00238939654, -0.00648073759, -0.00469870167, -0.0132684922, -0.00187213894, -0.0065641664, -0.000467200443, 0.0144298198, -1.27880476e-05, 0.0229729135, 0.0196758136, 0.00410802662, 0.00362080336, -0.0124742519, 0.00561641669, 0.0140026649, -0.0168459136, 0.00259963679, 0.0021040705, 0.00206736196, -0.00570652, 0.00281821983, 0.00206903042, -0.0220118146, -0.00259963679, -0.00148252712, -0.000941909442, -0.0149771115, -0.0194622353, 0.0123607889, 0.0099113239, -0.0180739835, 0.0157780256, -0.0126277609, -0.021304341, 0.00152257283, 0.0115665477, 0.0137623902, -0.0246948805, 0.00195223046, 0.0116666621, 0.00426153559, 0.00917047728, 0.0304614697, 0.000182083037, -0.0135354642, -0.00558304507, 0.0197559036, 0.00257961382, -0.0111660901, 0.00210740766, -0.00856979098, -0.00137657276, -0.00757532148, -0.0182074681, 0.0102450382, -0.0195690244, 0.00804919656, -0.00582665717, -0.0301944967, -0.0014633385, 0.00812261365, -0.00378766074, -0.00166440161, 0.00228928216, -0.0101315752, -0.0152307348, 0.00775552727, 0.023373371, -0.00690121809, -0.00403794646, -0.00129731547, -0.00445842696, -0.017940497, 0.0108123533, 0.00521262223, 0.0299809203, 0.0014841957, -0.00760869309, -0.0202231053, 0.002352688, -0.00123891549, 0.00823607668, 0.000517257606, -0.00425152387, -0.00703470362, 0.00796910468, 0.014269636, 0.00168943021, -0.0101315752, -0.023987405, -0.00742181297, 0.0207036547, -0.0145900026, -0.0062971944, 0.00794240739, 0.0154042663, 0.017366508, -0.0219851173, 0.00831616763, 0.00898359716, -0.0252421722, -0.0390846543, 0.0113129253, -0.00173531589, -0.0126945032, -0.0173398107, 0.00606359448, 0.00359076913, 0.019622419, 0.00762204174, 0.00132484699, -0.0194622353, -0.0052293078, -0.0337185226, 0.00800247584, -0.014229591, -0.0031502659, 0.0031485972, -0.00999809, -0.00227092789, -0.00402793521, -0.00854309369, 0.00111961248, -0.0106254732, -0.00979786087, -0.0140293622, 0.0193020534, 0.0185278356, -0.0023276594, 0.0128947319, 0.00467200438, 0.0089569, 0.0112128109, 0.0267238654, 0.00461193593, 0.00850304775, 0.00341723743, -0.004475113, -0.000146000137, -0.0102250157, -0.00506245065, -0.00225757924, 0.00391447218, -0.00307017425, -0.0132017499, 0.000671600632, -0.0139492704, -0.00824942533, 0.00881674, 0.0081359623, 0.00377764925, -0.00195723609, -0.0317429341, -0.00426487252, 0.0339321, -0.00660087494, 0.0326506384, 0.00139075564, -0.000520177651, -0.00435163826, -0.00658085197, -0.000926058041, 0.0020640248, -0.0105720786, 0.00727497833, 0.0117601026, -0.0242143311, 0.0121004917, 0.0209038835, -0.0129948463, -0.0150572024, -0.0071147955, -0.000703303551, 0.0033221289, 0.00186713319, -0.0104385931, -0.00302011706, 0.0118134972, -0.0123407664, -0.0426086821, -0.00518926186, -0.0130549157, -0.00792238489, 0.0101182265, 0.0155511005, -0.00568315946, -0.0177803133, 0.00778889889, -0.00529605057, -0.00907703675, 0.00262967101, -0.00403127261, -0.00339888316, -0.00709477253, 0.00224256213, -0.0112929018, -0.00105370383, -0.0119202854, 0.016605638, 0.0156578887, 0.00398788927, 0.0198359955, -0.00790236145, -0.0159649067, 0.0107389363, 0.0129748238, 0.0144965621, 0.0187013671, -0.00271143112, -0.00480549037, -0.0144832134, 0.00536946813, 0.00618373137, -0.0104586156, -0.0028382428, -0.000567732, -0.0127145266, 0.0219050273, 0.00262299669, -0.0014716814, 0.0296338573, -0.00124058407, 0.00951086637, -0.00323703163, -0.0280587245, -0.0137089957, -0.0342524685, -0.0075819958, 0.00431492971, -0.0206636079, 0.00984458067, 0.00320699741, 0.0273379, -0.0287795477, -0.000291583128, 0.0145900026, -0.0121538863, 0.00514921639, 0.00481550163, 0.00649408624, -0.0157780256, 0.0112328334, -0.0152173862, -0.018861549, 0.00117801258, 0.0268440023, -0.00611031428, -0.00200061896, -0.00513586774, 0.0146700935, 0.00448178733, -0.0157780256, -0.000836372201, 0.00258628814, 0.0168459136, -0.00416475814, -0.0137356929, -0.0207570475, -0.00229762495, -0.0128747094, 0.0220919065, 0.0365484245, -0.0171929765, 0.00866990536, 0.0293134898, -0.00566647388, -0.00157930434, 0.00513253035, 0.00594345713, 0.0107923299, -0.0252421722, -0.00442505581, -0.0205968656, -0.0236269943, -0.0174466, 0.00115715538, 0.00628718315, -0.0309420172, 0.0160850435, 0.00718821259, 0.0133752814, 0.00258962531, 0.0062504746, -0.0109725362, 0.0200629216, -0.00561641669, 4.25486105e-05, 0.0147635341, -0.00568649685, -0.00703470362, -0.00374094071, 0.00316862017, 0.00551630231, 0.0177002233, 0.018247515, 0.00278484845, -0.00889015663, 1.10803676e-07, 0.0102049923, -0.00802917313, 0.0164855011, 0.0105987759, 0.00763539, -0.00462194718, 0.0069813095, -0.0222921353, 0.014536608, -0.0248550642, 0.00444841571, 0.00665093213, -0.0252688695, -0.00357742049, 0.0148970196, -0.0138157848, -0.0270175338, -0.00101616094, 0.00282656262, 0.000853892241, -0.00360745494, -0.00156261865, -0.000524766219, -0.00219250494, 0.0155777978, 0.0344126485, 0.00668764068, 0.00788901281, -0.0234267656, -0.00908371154, 0.0107055642, -0.00236103078, -0.00444841571, 0.00901696831, 0.00941742584, -0.00920384843, 0.021918375, 0.00363748916, -0.00723493239, -0.0240274519, 0.035507232, 0.00270976266, 0.00548293069, 0.0244012121, 0.0326773338, 0.02470823, -0.00490226736, -0.000468034734, 0.00701468112, -0.0210240204, -0.025629282, -0.0112728793, -0.00977783743, -0.0126678059, -0.00428489549, -0.00472539896, 0.0223855749, -0.00159849296, -0.0114330621, -0.00308185443, -0.00879004225, 0.000393157505, 0.00141745282, -0.00327040302, -0.00976449, -0.0103318039, 0.00606025709, 0.00616370887, 0.00158097292, 0.00584334275, -0.00800247584, 0.00272644823, -0.00339888316, -0.00434162701, -0.0135554867, 0.0113062505, -0.0266571231, 0.0082027046, -0.0049690106, -0.00697463518, 0.0206369106, 0.0125943888, 0.0030835229, -0.00564311398, 0.0129080806, 0.0157780256, 0.00115298398, -0.00705472659, -0.0047020386, -0.0184210464, -0.00401458656, 0.00857646484, -0.0157913752, 0.020196408, 0.0373226404, -0.0090436656, 0.00893020257, 0.0195823722, 0.00279152254, -0.00297339703, 0.0141761964, 0.0127478978, 0.0356140211, 0.00293502, 0.001176344, 0.0167124271, -0.039671991, -0.0104919868, -0.00187714468, 0.0280854218, 0.00770880748, 0.0212109, 0.00129648123, 0.0117334053, -0.0102583868, -0.00281655113, -0.00309520285, 0.00911040884, -0.00591008551, 0.0112395082, 0.00834286492, -0.0163787119, -0.00100281241, -0.0112128109, 0.00139158987, 0.0204767287, -0.0149237169, -0.00444507832, -0.0389778651, 0.0192353092, -0.0217848886, 0.010098204, 0.0209439285, -0.00601353729, -0.00414807256, 0.00657751504, -0.006560829, 0.0133752814, 0.0184210464, -0.0219450723, 0.0161384381, 0.0213176887, 0.0012747898, -0.00476878183, -0.0126411095, -0.0178203601, 0.00689454377, -0.0225858036, 0.0247883201, 0.0146300485, 0.00239607086, 0.0330243967, 0.00578994816, 0.0181941204, -0.00698798383, 0.00267472258, 0.00340722618, -0.0015551101, -0.00037334321, -0.0123140691, -0.00792905875, 0.00311522582, 0.00594011974, -0.00470871292, -0.0261498764, 0.0230129585, -0.0177002233, 0.00943077449, 0.0229996108, 0.0038811008, 0.0264435448, 0.00358075765, 0.00547959376, -0.02677726, -0.000470537576, 0.0197025109, 0.00303680287, 0.0282989983, 0.00313358, -0.00788233895, -0.00981788337, 0.0130415671, 0.00691456674, -0.0144965621, 0.0186880175, 0.00236770511, -0.00270976266, -0.00463863276, 0.0209038835, -0.00551296538, 0.0159248617, 0.00736174406, -0.00805587, 0.00682780053, -0.00179872173, 0.0160049517, -0.0272444598, -0.0160049517, -0.0352936573, -0.00810926501, -0.00943744928, 0.00832284242, -0.00556969689, -0.0157513283, -0.0132951895, 0.0141361505, -2.66971674e-05, 0.000617372, 0.0169260055, 0.00174866454, 0.00223088218, -0.00550295366, -0.00798245333, -0.041967947, -0.000903532258, -0.000704554957, 0.00816266, -0.0315560512, -0.00471872464, -0.0135554867, 0.00584667968, -0.0155644491, 0.00389444944, 0.015684586, 0.00837623607, -0.0321967863, 0.014269636, 0.00725495536, -0.0117734512, 0.0186479725, -0.0103518274, -0.00895022601, -0.00941075198, 0.0264568944, 0.00189549895, 0.0156712383, -0.0124075087, -0.0105654038, -0.00339054037, -0.00343392324, -0.0187681094, -0.01097921, -0.0051225191, -0.00297506573, 0.0155911464, -0.019622419, 0.0129014067, 0.0015175672, -0.0264435448, 0.00269641401, -0.00798912719, 0.0150305061, 0.01013825, 0.00768878451, -0.00264635682, -0.0409267582, 0.00389778661, 0.0168058667, 0.00260797958, -5.43329079e-05, -0.0276582669, 0.0134486984, -0.00934400875, 0.00364750065, -0.0129481265, -0.00787566416, -0.0177269205, -0.0033221289, 0.0133352354, 0.00260797958, 0.00748855574, -0.0105387075, 0.0100715067, -0.0145766539, -0.00754195, 0.00717486395, 0.0101916436, -0.0185945779, -0.00313024293, 0.0229328666, -0.00856311712, 0.0116199423, 0.00143747567, 0.00744183548, 0.00397454109, -0.0111660901, -0.0220652092, -0.0025746082, -0.00307851727, 0.046826832, -0.018554531, -0.00463863276, -0.0243478175, -0.00135571556, -0.0259096026, -0.0198626928, -0.00780892186, -0.0144031225, -0.00422148965, -0.030755138, 0.000996972318, -0.00854309369, 0.0148569737, -0.00286493986, 0.00651410921, 0.0171929765, -0.00045260042, -0.0206369106, -0.00584667968, 0.00724160671, -0.00630386872, 0.0427955613, -0.00278651691, 0.0212109, 0.00220418489, -0.0137356929, -0.00599685125, -0.0096443519, -0.00118552113, 0.0151239457, -0.00630386872, -0.00112378388, 0.00360745494, 0.0246014409, -0.0126945032, -0.0231330954, 0.0250686407, -0.00593010848, -0.0388443805, -0.00550295366, -0.0136155561, -0.00917047728, -0.00593344541, -0.000126081548, -0.00144415, -0.0106855417, 0.00780892186, -0.028459182, -0.0209439285, 0.0183276068, -0.00965102669, 0.000115235824, 0.00523931906, -0.0138558298, 0.0216113571, 0.0166590326, 0.00660754927, 0.00782894436, 0.0169660505, -0.010865747, 0.00800915062, -0.0355606265, -0.000707057829, -0.0236670393, 0.00269975117, 0.015417615, -0.00196724758, -0.00306850579, 0.0124008348, -0.00109458389, 0.0189816859, -0.00788233895, 0.000189904473, 0.00347063178, 0.00124308688, 0.0167391244, 0.0140961045, 0.00948416907, 0.00237437943, -0.0217581913, 0.0291533079, -0.00202397909, -0.00948416907, 0.0161250904, 0.00949751772, -0.0159782544, 0.00885011163, 0.00303012854, -0.0121605601, 0.0176334791, -0.0149904601, -0.0102650607, 0.0149904601, -0.00891018, -0.00778222457, -0.00801582448, -0.000613617711, -0.01055873, -0.00953756366, -0.0099113239, -0.0103184553, 0.0031903116, -0.0157780256, -0.000470537576, -0.00752860121, 0.0142963333, -0.00486889621, 0.00511584477, -0.00854976848, 0.00913043134, -0.00881006569, -0.0215312652, 0.0192219615, -0.0207170025, 0.015991604, 0.012814641, 0.0125810402, -0.00139576127, -0.00102950959, 0.00745518412, 0.00754195, 0.0370289721, -0.00778222457, -5.50107652e-05, -0.000510166225, -0.00217915629, 0.0065374691, -0.000319948886, 0.00712147, 0.0251086876, -0.00266637956, -0.0127078518, 0.00100281241, -0.00291332859, 0.000897692284, 6.03293447e-05, -0.000505994773, 0.00545623386, -0.0230797026, 0.0122740231, -0.00511250785, 0.00201730477, 0.0130549157, -0.00768211, -0.00337552326, -0.000704972073, -0.00931731146, -0.00933066, 0.00295337429, 0.0108790956, -0.000105693674, -0.0164721534, 0.000490560487, 0.00485554757, 0.0143497279, 0.0087099513, 0.0219717696, 0.0259229504, 0.00959095731, -0.0015425958, -0.00292500854, -0.0170861874, 0.00821605325, -0.00840960816, -0.0231197476, -0.0243077725, 0.000995303853, -0.0146300485, 0.0123140691, 0.00672768615, 0.0121004917, -0.0202231053, 0.000487223326, 0.00206068764, -0.0129080806, 0.00975114107, 0.00338553474, -0.0225858036, -0.0126411095, 0.00911040884, 0.00586002832, -0.00707474956, -0.00957093481, -0.0183676518, 0.0206235629, 0.0312356874, 0.0133218868, -0.00649074884, 0.0184076969, -0.0121405376, 0.00311022019, -0.00520594791, -0.00503909029, -0.0098846266, -0.00105954381, -0.00792238489, 0.00224756775, 0.0143630765, 0.00539950235, -0.00289163692, 0.0134420246, 0.00761536742, 0.00167608156, 0.00848302525, -0.00967772305, 0.0103251301, -0.0107255876, 0.0113596451, 0.00686784647, 0.00824275054, 0.0224656668, -0.00386775215, 0.00135821837, -0.00778889889, 0.0138291335, -0.0100514842, 0.00957093481, -0.019969482, -0.0437833555, 0.0303279832, 0.00824275054, -0.00600352557, -0.0176067818, -0.00230096211, 0.0116933594]
|
12 May, 2020
|
How to scale controlling border of a canvas circle using Fabric.js ?
12 May, 2020
In this article, we are going to see how to scale controlling border of a canvas circle using FabricJS. The canvas means the circle is movable and can be stretched according to requirement. Further, the circle can be customized when it comes to initial stroke color, fill color, stroke width or radius.
Approach: To make it possible we are going to use a JavaScript library called FabricJS. After importing the library using CDN, we will create a canvas block in the body tag which will contain our circle. After this, we will initialize instances of Canvas and Circle provided by FabricJS and scale controlling border of the circle using borderScaleFactor property and render the Circle on the Canvas as given in the example below.
Syntax:
fabric.Circle({
radius: number,
borderScaleFactor: number
});
Parameters: This function accepts two parameters as mentioned above and described below:
radius: It specifies the radius.
borderScaleFactor: It specifies the size of the controlling border.
Example: This example uses FabricJS to scale controlling border of a canvas circle. Note that you have to click on the object to see the border.
<!DOCTYPE html>
<html>
<head>
<title>
How to scale controlling border of
a canvas circle using FabricJS?
</title>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a Circle instance
var circle = new fabric.Circle({
radius: 50,
borderScaleFactor: 5
});
// Render the circle in canvas
canvas.add(circle);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?
|
https://www.geeksforgeeks.org/how-to-scale-controlling-border-of-a-canvas-circle-using-fabric-js?ref=asr10
|
CSS
|
How to scale controlling border of a canvas circle using Fabric.js ?
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.00716573419, 0.0132453367, -0.007008621, 0.00855243, 0.0648673102, -0.0065885135, 0.0268185623, 0.0231571384, -0.0389367826, -0.0299198441, -0.00953609589, 0.0197279695, -0.00701545179, -0.063118577, 0.0121182194, 0.0189902205, -0.0219958667, -0.0194547288, 0.00989130884, -0.0168862678, -0.00583710195, -0.0288542043, -0.0248239059, -0.000955488125, -0.00119457371, 0.0289635, 0.0141265383, 0.0187306423, -0.0375159308, 0.0132248439, 0.0218729079, 0.018238809, -0.0329801366, -0.0233484078, -0.00380145945, -0.0200968441, -0.000495248532, 0.0381443836, -0.0161075313, -0.0132043511, 0.0129720969, 0.0078420043, 0.0123709673, 0.025998842, 0.00681393687, 0.013101886, -0.0566700958, -0.00681052124, -0.0171185229, -0.0333080254, 0.0106905373, -0.0247146096, 0.010786172, -0.00578928459, 0.012336812, 0.0418877825, -0.025056161, 0.0246326383, 0.0148096392, -0.00555703044, 0.0297832228, -0.0783107504, 0.007555102, -0.0170365497, -0.012999421, 0.0273240581, -0.0289635, 0.0362043753, -0.0146320332, 0.0222144593, -0.00998011231, -0.00778735662, 0.0270234924, -0.00358969811, 0.0163261238, 0.00698129693, 0.0189082474, 0.00419765851, -0.0337452106, 0.0351933874, -0.00235840771, 0.000145265789, -0.0279251877, 0.0229112227, -0.0289088525, -0.00891447347, 0.0568886884, -0.0478444248, 0.0141402, 0.0212034695, -0.00567657314, 0.0290727969, -0.00827918947, -0.0351114161, 0.00142853591, 0.0146047091, -0.000624610868, -0.0178562719, -0.0372973382, -0.00160614226, 0.0106017347, 0.0647033677, 0.0310947783, -0.0289635, 0.000929017959, -0.0316139348, 0.0157796443, -0.00402005203, 0.00960440654, 0.0142768202, 0.0339638032, -0.0303843524, 0.00557410764, 0.0583095402, -0.0726273432, 0.0318598524, -0.00522231078, -0.0334173217, 0.0424615853, 0.00689932471, 0.000100330522, -0.0135732256, 0.00393466419, 0.0623535, -0.0271874368, 0.0602768734, -0.00794447, -0.0279661734, 0.0340184532, -0.00582685554, -0.0275972988, -0.0200968441, -0.00248648925, -0.0498390831, 0.0499483794, -0.0278568771, 0.0200558584, -0.0144407647, 0.0117698377, 0.00848412, 0.00951560307, -0.0461776592, -0.00136705674, 0.042324964, -0.000818440923, 0.00222349516, 0.00730918534, 0.0121250506, -0.0190995168, -0.00116724963, -0.0414779186, -0.0146320332, 0.00594639825, -0.000764646684, 0.0341550708, -0.0318325274, -0.0103216628, 0.0243320744, 0.0297012515, 0.00647921721, 0.00671488745, -0.014372454, 0.0097751813, 0.0015028232, -0.018594021, 0.0055604456, -0.0144544262, 0.0149872461, -0.0385815687, 0.0157386567, -0.00139352691, -0.0147003429, -0.0111072296, -0.00062845333, -0.0197279695, -0.00657143584, -0.00245062634, -0.0495658405, -0.00319008366, -0.0067080562, -0.0653591454, -0.00552287512, 0.014727667, 0.0719169229, 0.0141128758, -0.0178426094, 0.0364502929, 0.00435818732, -0.0213537514, -0.0334446467, -0.00254284521, 0.0135322399, 0.0310128052, -0.0225286856, -0.00205955096, -0.0227746014, 0.0155337267, 0.0156840086, -0.013177027, -0.00139267312, 0.00585759478, -0.0150418943, -0.0158889405, -0.0213810746, 0.00162578141, -0.0265316609, -0.0107315239, -0.0622442029, 0.0424342602, -0.0394832641, 0.0108203273, 0.0323790088, -0.0196869839, -0.0271327887, -0.00293562841, 0.00181704981, -0.0070701, 0.0319145, -0.00244550314, -0.0203017741, -0.008852995, 0.0259032063, 0.00576879177, -0.0265999697, -0.0414232723, -0.0155473892, 0.0250424985, 0.0223784037, 0.0128149828, -0.0530633219, 0.0153561207, -0.0100962389, 0.0111072296, 0.0246599615, 0.0264770128, -0.0144954128, -0.000552885234, 0.0322423875, 0.000508910569, 0.013887452, -0.00164285896, -0.00144561345, -0.0177333131, -0.0265726466, 0.0347288772, 0.00560826296, -0.00540674804, 0.0194820538, -0.0081562316, -0.0368601531, -0.023375731, -0.00639724499, 0.00732284738, -0.000955488125, -0.0216953028, -0.0037331495, -0.0284989923, 0.00444015954, 0.0292640664, 0.0671625361, 0.0505768321, 0.00285365619, 0.00312860473, 0.0184027534, -0.0131906886, -0.016408097, -0.010253353, -0.0314226672, -0.00574829848, -0.0485275276, -0.0120225856, -0.0426801778, 0.0419970788, -0.03541198, -0.0195913501, 0.0425162353, -0.0344009884, -0.00245916517, 0.0374066345, -0.00041477065, 0.0248648934, 0.0352753587, 0.0200695209, 0.0591839105, -0.0334173217, -0.00695055723, -0.0263813771, 0.00627428666, -0.0223237555, -0.0218865704, -0.0424615853, -0.0298105478, 0.0197826177, -0.00676612, 0.0310674533, 0.00949511, -0.0202607885, -0.0082655279, -0.024878554, -0.00541699445, -0.0406035483, -0.0380624123, -0.0102465218, -0.025083486, 0.0494292192, 0.0227472782, 0.0319964699, 0.0122685023, 0.00607277174, 0.0181295127, 0.0315319635, -0.0252474286, -0.040521577, -0.0468334369, 0.0215176959, -0.0100962389, 0.0495111942, -0.0139899179, -0.0334992968, 0.00974102691, -0.00286731822, -0.0382810049, 0.00448797643, 0.0395379104, 0.037188042, -0.0513145812, -0.00948144775, -0.0340457745, 0.0230888296, 0.0149189355, -0.0145910466, -0.0104241278, -0.036122404, 0.00385610759, -0.00186828244, -0.00539650163, -0.0199329, -0.0342916921, -0.0339638032, 0.0453032888, 0.00291684316, 0.015643023, -0.00744580571, -0.0219958667, 0.0437458158, -0.0545661449, -0.0163671114, 0.00135168701, 0.0213264264, 0.0102806771, 0.000932433468, 0.0259851795, -0.0140035795, 0.0014259743, 0.00868905056, -0.0488827378, 0.0181431752, -0.0240041856, -0.0271054655, -0.00686175423, 0.0241271425, -0.013279492, -0.0110730743, 0.0124187842, 0.0178562719, -0.0239905231, -0.0289088525, -0.00605227891, -0.0184983872, -0.00221324875, -0.0485002026, -0.0128149828, -0.0112506812, -0.00293562841, -0.0336359143, 0.00803327281, -0.0207252987, -0.0248239059, -0.0563968569, 0.00385952322, -0.012999421, 0.0359038115, 0.00974102691, -0.00657485146, 0.0399477743, 0.0455218814, -0.037925791, -0.00366825471, -0.00328230252, 0.0205203667, -0.0404396057, 0.015110204, 0.023403056, -0.0249058791, -0.00199636398, -0.0238675643, -0.00953609589, -0.0678183138, 0.000147293744, -0.0347288772, 0.0124324467, 0.0108749755, -0.00383561454, -0.00979567505, 0.0150555559, 0.00136022572, -0.0127603346, -0.0412320048, 0.0190448686, -0.0210805107, 0.00421132054, 0.0155200651, 0.0242774263, -0.0254660212, 0.02579391, 0.0209712144, 0.0195913501, 0.0352207124, -0.0124666011, 0.0058302707, 0.0601675771, -0.00708376197, -0.00949511, -0.00127996132, -0.00902377, -0.0095497584, -0.038007766, -0.00312177371, -0.0341550708, 0.0235396754, -0.0741574913, 0.0101782111, -0.0242091157, -0.0197962802, -0.0199738871, 0.0162578151, 0.0520250052, 0.00261969399, 0.0117083592, 0.0065885135, 0.0129720969, 0.0150692184, 0.0106700445, -0.0290727969, -0.00862074, -0.00525988126, -0.0486095, -0.0330347866, 0.0207389593, -0.0201788172, -0.0133204786, -0.0181021877, -0.0420517251, 0.0110594127, -0.0112233572, -0.0269415211, -0.00804010406, -0.0013107009, 0.0154517544, -0.00195879349, 0.0026914198, -0.00852510612, -0.0232117865, 0.00743897492, 0.0233074222, -0.0136073809, -0.047516536, -0.0282530766, -0.00180168008, 0.0148642873, 0.0498937294, 0.00548530463, 0.013914776, 0.0256299656, -0.00589175, 0.0339091569, -0.0121660372, -0.0106768757, -0.00760291889, -0.0447021574, 0.0018870678, -0.00759608811, -0.0124939252, 0.0343736634, 0.0167359859, -0.0322150625, 0.019003883, -0.0082655279, -0.0193181094, -0.00864123367, 0.0268595498, 0.00603520125, -0.01373717, -0.0139899179, -0.0003750654, 0.0144954128, 0.00586442603, -0.0149735836, 0.00860024709, -0.0109091299, -0.00508569041, 0.0334719718, -0.0160528831, 0.0458770916, 0.0367235355, 0.0240861569, -0.00164883607, 0.0228019264, -0.0383629762, -0.00253089075, -0.0139899179, 0.0363956466, 0.0161621794, 0.00222520297, -0.0113258222, -0.0192361362, 0.00922186952, 0.0107383551, -0.0350840911, 0.000282206282, 0.00978201255, -0.0312587209, 0.00674221106, -0.0166266896, 0.0157249961, 0.0440737046, 0.014754991, -0.00122360548, 0.0187306423, -0.00223886501, 0.000937556732, -0.002162016, 0.0216543153, 0.00717256498, -0.00180509558, -0.0453579351, -0.00423181336, -0.011496597, 0.00572780566, 0.000141636818, -0.0285809655, -0.0229795333, -0.0288542043, 0.0105607482, -0.00624354742, 0.0138464663, 0.00655094301, 0.0135459015, -0.00192976161, 0.0148096392, -0.0270098317, -0.0154790785, -0.00851827487, 0.00514033856, 0.0184027534, 0.00202368805, 0.0547847375, -0.0589653179, -0.0230341814, -0.00688566267, 0.0325702764, 0.00469290698, 0.0257529244, 0.0238265786, -0.0130404066, -0.023225449, -0.00421815133, 0.0072955233, -0.0198099427, 0.00348894065, 0.009488279, -0.0187306423, -0.0127330106, -0.00335061271, 0.0198782515, -0.00894862879, 0.0381990336, -0.00915356, 0.0256709531, 0.0267639142, -0.00317642163, -0.0172824673, 0.00459727272, 0.0226106588, 0.0132385064, 0.0240724944, 0.00155661744, -0.0329528153, -0.0317232311, -0.0179245826, 0.0172004942, 0.0150282318, -0.0136415362, 0.00832700636, 0.000804778887, 0.0282530766, 0.0222554449, -0.0134639293, 0.0140445661, -0.0461230092, 0.00552629074, -0.0112028634, -0.00849778205, 0.00241817906, -0.028744908, -0.012159206, 0.0204930436, 0.010226029, 0.000667731685, 0.0117493449, -0.0127056865, 0.0321057662, 0.00112626352, -0.0259305313, -0.0267912392, -0.00672854902, -0.0024711194, 0.00890764315, 0.00195367, -0.0105880722, 0.0132589992, -0.010786172, 0.0389094576, -0.00165225158, 0.0188809242, -0.00801961124, 0.0187852904, -0.0182661321, 0.0182251465, -0.00283999415, 1.57700379e-05, -0.00654752739, 0.0150828799, -0.00423181336, -0.0120908953, 0.0141675239, 0.00597713748, 0.010123563, -0.0189628955, -0.0131155476, -0.00641432265, 0.0337452106, 0.00419082725, 0.0466421656, 0.00240793265, 0.0115034282, -0.0557410792, 0.0197689552, 0.0107793408, 0.0126578696, -0.0123846289, -0.00305858674, -0.040548902, 0.00862074, -0.0160118975, 0.0115990629, 0.00503445789, 0.0292094182, -0.0347288772, -0.00346332439, -0.00952243432, -0.0137235085, 0.0160118975, 0.00603861688, -0.0189355724, -0.0138259735, 0.0331987292, -0.00986398477, -0.00483294297, 0.00187169795, -0.02080727, 0.0196050107, -0.0265726466, 0.00985715352, 0.0184300765, -0.0158206299, -0.00288098026, 0.0528993756, 0.0324883051, -0.0104446216, 0.0164900683, -0.0270098317, 0.0022371572, 0.0041259327, -0.00399614358, -0.00243867212, -0.0317505561, 0.00243013329, -0.00182900415, -0.00372973387, 0.0565061532, 0.0279661734, 0.00242330227, 0.0103899734, 0.00909208, -0.014727667, -0.0144134406, -0.0117630074, 0.0162714757, 0.00956342, -0.000408366584, 0.00178289483, -0.0307395644, -0.00447089877, 0.00168128347, 0.037925791, -0.00411227066, 0.00735017145, -0.0511506349, -0.0348928235, 0.0112848356, 0.0460683629, -0.00806059688, 0.00891447347, -0.0142494962, -0.0213537514, -0.00648946362, -0.00844996516, 0.00563900266, 0.0264770128, -0.0266956054, -0.00113992556, 0.0159709118, -0.0266956054, 0.00435135607, 3.7864098e-05, 0.0359584615, -0.0139216073, -0.000156472932, -0.00855926145, -0.0172004942, 0.00651337253, -0.0120089231, -0.0165173933, -0.0339911282, 0.0356032476, 0.00184778939, 0.0325156301, -0.0288542043, -0.0168999303, -0.00818355568, -0.0182524715, -0.0166403521, 0.016763309, -0.0151785137, -0.0349747948, -0.0124461083, 0.00393124903, 0.00589175, 0.00540333241, -0.00634942809, -0.0212034695, 0.0410134122, -0.00080520584, -0.000311451557, -0.0149052739, -0.00236865436, 0.0172551423, -0.0129311103, 0.0555498078, 0.00353163457, 0.0112984981, -0.0342097208, 0.0327068977, 0.0129242791, 0.000381469465, -0.0235943235, -0.00518132467, 0.0265043359, -0.036149729, 0.0247146096, 0.00325668626, 0.0154244304, -0.00425572181, 0.0112370187, 0.0349747948, 0.0136415362, -0.0217089634, 0.00831334479, 0.00613766629, 0.0198372658, 0.00986398477, 0.0393193178, 0.0160802081, 0.0223920662, 0.00313885114, -0.00615132833, -0.0165037308, 0.0404669307, 0.0545934662, 0.00928334892, 0.0201105066, 0.000474328554, -0.00117749616, 0.00646555517, -0.000338989106, -0.028034484, -0.0154107688, -0.0134092811, -0.0486095, -0.0148642873, -0.030439, -0.008190386, 0.0204110704, 0.0427075028, -0.00549213542, 0.00316788303, 0.0199738871, -0.0225150231, 0.00338135217, -0.025821235, 0.000732199347, -0.0368601531, 0.00991863292, -0.00196904, -0.00284170196, 0.0225150231, 0.000893155171, -0.0091398973, 0.0551672727, 0.00233791466, -0.037188042, 0.0194957145, -0.0201651547, -0.0466148444, 0.0129379416, 0.0466421656, -0.0053521, 0.0352753587, 0.00857975427, 0.00114419498, 0.0023874396, -0.0306575932, 0.0555224866, 0.00369216339, 0.00744580571, 0.0252474286, 0.0368874781, 0.0318325274, 0.0436365195, -0.0165447164, 0.0174873974, -0.0013107009, -0.00989814, 0.0214903709, -0.00172824669, 0.0208755806, 0.0374612845, 0.0242501013, -0.0279525109, -9.68082823e-05, 0.0104514519, -0.00283316337, 0.0186076835, 0.0148096392, -0.0063904142, 0.0136961844, -0.00548872026, 0.00317300623, -0.0196596589, -0.0241134819, -0.00645872438, 0.0147140054, -0.00259920093, 0.0339911282, -0.0415052436, -0.00408836221, 0.00492857676, -0.0198372658, 0.0161211938, -0.0176376794, -0.00089059351, 0.0188809242, -0.00265897228, 0.0261217989, -0.0119337821, -0.04492075, 0.00861391, -0.00229522097, -0.00537942396, 0.00753460918, 0.000749703846, -0.0148369633, -0.000821429479, -0.0127876587, -0.0159299262, -0.0264223646, -0.00922870077, 0.000375919277, -0.0690752193, -0.0198099427, 0.00165395939, 0.0242637638, -0.0433906056, 0.0184164159, 0.0450573713, -0.010711031, -0.00182900415, 0.00677295076, -0.00408836221, 0.00456994865, -0.0154790785, -0.0111823706, -0.00866855774, 0.0281437803, -0.0126373768, 0.023403056, 0.0151238665, -0.00219446351, 0.00416691881, 0.0207799468, -0.00739115756, -0.016913591, -0.0037331495, 0.0251517948, 0.0103968037, -0.0344829597, 0.0285263173, 0.0132726608, 0.0142358346, -0.0200148728, 0.0150282318, -0.0109774405, 0.023225449, -0.0154244304, 0.00495590083, -0.0323790088, 0.016913591, -0.00213639974, 0.00283657876, 0.0200695209, 0.0410134122, 0.0427348278, -0.0227882639, -0.0375432558, 0.000862842542, -0.00682418328, 0.00654069614, -0.0349747948, -0.0216816403, 0.00889398064, -0.0130062513, 0.00333524286, -0.0233347453, -0.0177333131, -0.0160528831, 0.0068890783, 0.0236216486, 0.0198236033, 0.0232117865, -0.0192361362, 0.0244140457, 0.0500303507, -0.0103694797, 0.00735017145, 0.0126305455, -0.0181021877, 0.000376773154, 0.00144988287, -0.0069778813, 0.00780101866, 0.0025462606, -0.00689590909, 0.00990497135, 0.0147140054, -0.0288542043, -0.00871637464, -0.00292367418, 0.0202881135, -0.000220513684, 0.0170365497, 0.000951218768, -0.0134161124, 0.00946778618, 0.00523938797, 0.0386362188, 0.00864806399, -0.00945412368, 0.00799911749, -0.00391075574, 0.000552885234, 0.00351797254, 0.0133956196, 0.0131633645, 0.0155064026, 0.00247795042, 0.0082040485, -0.00730235456, -0.0274880026, 0.0227336157, -0.0231298152, -0.0116127245, -0.000900840038, -0.0394559391, 0.00774637051, 0.00960440654, 0.016940916, 0.00695738802, -0.0621895567, 0.00170689973, -0.0153424582, 0.0141402, 0.000720672, -0.00493199239, 0.0252884161, 0.0428987704, -0.0138737904, 0.0049251616, -0.00760291889, -0.00825869665, -0.0433086306, 0.0222691074, 0.00428304588, -0.0218729079, 0.0061205891, 0.00957708247, -0.000696763454, 0.00851827487, 0.010888637, 0.0313406959, 0.0102465218, -0.0215313584, 0.0383356549, -0.0101372255, 0.000745861384, 0.00862074, -0.0201924779, 0.0171048604, 0.0206160024, -0.00268800417, 0.00229522097, -0.00318325264, -0.00795130059, -0.00262481743, 0.0236216486, -0.0117971618, -0.0314499922, -0.0674904212, -0.0279798359, -0.0220368523, -0.0384722725, 0.0145090744, 0.00146696041, 0.00359311351, -0.00122702098, -0.0159709118, -0.00836116169, 0.00327205588, -0.028744908, -0.00901010819, -0.0028160857, 0.0256163049, 0.00910574198, -0.0328708403, 0.00669097854, -0.0129106175, -0.0172551423, -0.0107998336, 0.0166130271, -0.00240964047, -0.0128491381, 0.00904426351, -0.00984349195, -0.0310128052, -0.00399272796, 0.00627428666, 0.00313885114, 0.00439234218, -0.00645872438, -0.0022371572, -0.0167769715, 0.0221188255, -0.00129789277, -0.000628880283, 0.0192771237, -0.018594021, -0.0230341814, 0.00472364668, -0.00724087516, -0.0122753326, 0.0300291404, 0.0168999303, 0.0129584344, -0.0155200651, -0.0071179173, 0.00178289483, 0.00439917343, -0.016763309, -0.00313714333, -0.0409587622, -0.0209575519, 0.0175557081, -0.000930725713, -0.000240579786, -0.00452213176, -0.0217362884, -0.00131582411, 0.0647580177, -0.0139762554, -0.0214084, -0.00787616, -0.00769172236, -0.0270781405, -0.0201514922, 0.0384995975, 0.0235260148, -0.0356578939, 0.0421336964, 0.0234850273, 0.00250356691, 0.0142221721, -0.00376388896, 0.0010793003, 0.00687541626, 0.00880517811, 0.0187033173, -0.0179109201, -0.0272284243, 0.00293904403, -0.0150692184, -0.0186076835, 0.00870954338, -0.00394149544, 0.0162304901, 0.0103353253, -0.00558435451, 0.005393086, 0.0124256155, 0.00573805207, 0.0272147618, -0.00680027483, -0.000205464108, 0.0299198441, 0.0202881135, -0.0265726466, 0.00199636398, 0.000913648168, 0.00168982218, -0.00323277758, -0.00186657475, 0.00170263031, 0.00177094049, 0.00905109383, -0.0127808284, -0.0147413295, -0.0184847247, -0.00877102278, -0.00585417962, -0.0029749067, -0.0380350873, -0.0120157544, 0.00688566267, 0.00324643962, -0.00388684729, -0.0103080012, -0.00724770641, -0.0532819144, -0.00443674391, 0.0119952615, -0.00998011231, 0.0279798359, 0.000128188258, -0.0109296236, -0.029837871, 0.0388548113, -0.00503445789, 0.0307942126, 0.019003883, 0.0288815293, 0.0107042, -0.0116468798, -0.00640407624, -0.00316275959, -0.00603861688, 0.0081494, 0.0167223234, -0.00776686333, -0.00485002, 0.00922186952, -0.0414232723, 0.0225833338, -0.0107178614, 0.00199124077, -0.0196323358, -0.0132316751, -0.00476121716, 0.02080727, -0.0174327493, 0.0255343318, -0.0184983872, 0.0340731, 0.0122548398, -0.00304834, -0.0110525815, -0.00352821895, -0.007643905, -0.03057562, -0.0284989923, 0.0430353917, 0.0277749039, 0.0079034837, -0.0212717783, -0.00955659, -0.00518132467, 0.00900327694, 0.0315592885, 0.0176513419, -0.00869588181, 0.0154654169, 0.00805376563, 0.00864806399, 0.00625720946, 0.0251381341, 0.00163517403, 0.00396198826, 0.0234303791, -0.00531452941, 0.0034684476, -0.000355212745, 0.0220368523, 0.0202198029, 0.020274451, 0.00361019117, -0.0240724944, 0.0250288378, 0.0392100215, 0.00178289483, -0.00612400426, 0.00872320589, -0.000530684425, 0.0220915, -0.0106905373, 0.0114761041, -0.00931067299, -0.00314055895, 0.0269688442, -0.00886665657, 0.00280754687, 0.00891447347, -0.00203735, -0.040576227, 0.0298925191, 0.0152058378, 0.00657826709, 0.0150009077, 0.0163124632, -0.00657485146, -0.0347562023, -0.0131155476, 0.0360677578, -0.00592590496, 0.0154380929, -0.00698471209, 0.0292913895, 0.00408494659, 0.0137303388, 0.000229692858, 0.0377618484, 0.00366142369, 0.00441966625, 0.00464508962, 0.0209302288, 0.0131360404, -0.0329801366, 0.0026658033, -0.000808621349, 0.00847728923, 0.00597713748, -0.00170092261, -0.0112028634, -0.0111482153, 0.00372631848, 0.0240041856, 0.00472023105, -0.00309103401, 0.0164764076, -0.00894862879, -0.000297789549, 0.0285263173, 0.00368874776, 9.28591e-05, -0.0306849163, -0.0222964305, -0.00212786091, 0.00438209577, 0.0244003832, 0.0164217595, -0.00412934832, 0.0424889103, -0.00816306192, -0.00455287099, -0.00204076548, 0.0010024514, -0.0310401302, -0.0316139348, 0.00758925686, -0.00564241782, 0.00946778618, 0.0103968037, 0.00588833448, 0.0507681, -0.0103080012, 0.0119406134, -0.00909891166, -0.00287927268, 0.00505495071, 0.0265726466, 0.0200558584, 0.0124187842, -0.0216133296, 0.0183071196, 0.0120635713, -0.00757559482, -0.0172141567, 0.00544431852, -0.00112797122, -0.0112643428, 0.0205613542, 0.0105265928, 0.00859341584, 0.00864806399, 0.0104172975, 0.00980933663, 0.0082040485, 0.00733650941, 0.00247795042, 0.0317505561, -0.037188042, 0.019359095, 0.00703594508, 0.00606594095, 0.0157796443, 0.000861988636, 0.0211761445, -0.00497980975, -0.00514716934, 0.00911940448, 0.0178289469, 0.0338545069, 0.0160118975, 0.0230888296, 0.0114419488, -0.000112925205, 0.0299744923, -0.0137166772, -0.0225696713, -0.0119132893, 0.0161895044, 0.0031952071, 0.0167223234, -0.0104172975, -0.00143707462, 0.00772587722, 0.0079034837, -0.00198782515, -0.0217089634, -0.00582344, 0.0195913501, -0.00545115, -0.0261081364, -0.00396540388, -0.0290454738, 0.0157933049, -0.0376525521, -0.00461093476, -0.0241817906, -0.0106905373, -0.0174873974, 0.0176103562, 0.0238539018, 0.0219958667, -0.00699495897, 0.00528037408, -0.00174447033, 0.00571755925, -0.0140309036, -0.0014259743, -0.00856609177, -0.0118859652, -0.00226277346, -0.00176069397, -0.0111345537, 0.0368055068, -0.00179826457, 0.0217772741, -0.00980250537, 0.0216679778, 0.020656988, 0.00366483931, 0.01770599, 0.0123299807, -0.00670122541, 0.0285536405, 0.00617523724, 0.0165583789, 0.0245506652, 0.00769172236, 0.00684126094, 0.0109159611, -0.0193864182, -0.00516083138, -0.0132658305, -0.00601812359, 0.013914776, 0.0198782515, 0.0271874368, -0.00690274034, -0.0134639293, -0.0336905643, 0.0160392225, -0.0158889405, -0.00313714333, -0.00536576193, -0.00622988539, -0.00617523724, 0.025998842, -0.0117903305, -0.0168452822, -0.028007159, -0.00041071474, -0.0134024508, 0.000473474676, -0.000797947869, 0.00504128868, -0.0018136343, 0.00405762251, -0.00319008366, -0.0063904142, -0.00146183709, -0.0180475395, 0.0164900683, 0.00527012767, -0.00142170489, -0.0120704025, -0.0035828671, -0.00724087516, 0.00524963485, -0.0188262761, 0.0357398689, -0.0124529395, -0.0227882639, 0.00768489111, -0.0135527328, -0.0049422388, -0.0157249961, -0.0180338789, -0.00178118702, 0.00116981124, 0.00492174597, -0.00382878352, -0.0163534489, 0.00577562256, 0.0155610507, 0.0185393728, -0.00349406386, 0.00283145555, -2.44422245e-05, 0.0305209719, -0.0277885664, -0.0159845743, 0.0158889405, -0.0282257516, -0.0273103956, 0.00922186952, -0.00887348782, 0.0255889799, 0.0145363985, 0.00436843373, -0.0145227369, 0.0342916921, -0.00109893945, 0.0251927823, 0.0500030257, 0.0415325686, -0.00860707834, 0.0144680887, -0.00946778618, -0.0179928914, -0.00891447347, 0.0127603346, -0.0125007564, -0.00869588181, 0.0230478421, -0.00605569454, -0.00647921721, 0.0252747536, 0.0377618484, 0.0138532976, -0.00372290285, 0.0104924385, 0.0242364388, -0.00637675216, 0.0145227369, -0.0137849869, 0.0151375281, -0.0171185229, -0.0164900683, 0.019003883, 0.00358969811, 0.000888031907, 0.00324985525, 0.0470520295, -0.0191814881, 0.00392100215, 0.00629478, -0.0203427617, -0.0265316609, -0.00781468, 0.0069368952, -0.00666365447, 0.00427279947, -0.00012701418, -0.00211078348, -0.00413617911, 0.0282530766, -0.025056161, -0.00355554302, 0.0112028634, -0.00854559895, -0.00410202425, 0.000676270458, -0.008852995, 0.00110662438, 0.0210941732, -0.00171885407, -0.0140855517, -0.0163534489, -0.0413686223, -0.0149462596, -0.00776686333, 0.00796496309, 0.0221324861, -0.0149872461, -0.0159162637, -0.0150145702, -0.0196869839, 0.0120157544, 0.00214152294, -0.0130199138, -0.00144988287, -0.0123914601, -0.00777369458, -0.00595322903, 0.00649287924, 0.0222827699, -0.00538625475, 0.0058302707, 0.01434513, 0.0103558181, 0.0152058378, 0.0242637638, 0.0110594127, -0.00631527277, -0.0137713253, -0.00127910741, -0.0110799056, -0.0104309591, 0.00918088388, 0.00118603487, -0.00599421514, 0.0107315239, 0.0105470866, 0.0114692729, -0.0252884161, -0.0010784464, 0.0165993646, 0.0205750149, 0.00340013742, -0.017145846, -0.00642798468, -0.00965905469, 0.0145090744, -0.0208209325, 0.00422498258, -0.0108749755, -0.0217362884, 0.025971517, 0.020629663, 0.00653044973, 0.000222221439, -0.0138328047, -0.00604886329, 0.0717529729, 0.0202334654, 0.0104924385, 0.00112882513, 0.016790634, 0.0136005497, 0.00157198717, 0.0150282318, -0.00222007977, 0.00629478, 0.0138054807, -0.0134775918, 0.00448114565, -0.037188042, -0.017678665, 0.0132931545, 0.00450505409, 0.00259749335, -0.00120140472, 0.0103968037, 0.0126920249, -0.00485343579, 0.00835433, -0.0156293605, 0.0248102453, 0.0131223788, -0.00861391, 4.68031212e-05, -0.00123812142, 0.0109706093, -0.01770599, 0.0030500479, -0.00208516722, 0.00453920895, 0.014550061, -0.00194854685, -0.0121318819, 0.0183481053, -0.0209438913, -0.0159709118, -0.0109569468, -0.0051232609, 0.0172141567, -0.0021586006, -0.0134502677, 0.0120567409, -0.000408580061, 0.00154893252, -0.00614108192, -0.0159845743, -0.00530086737, 0.00777369458, 0.0052120639, 0.025056161, 0.00912623573, -0.0100074364, 0.00467924494, -0.00801278, -0.0074048196, 0.0118449787, -0.00495248567, 0.0112233572, 0.0158889405, 0.00760975, -0.00588491885, 0.0161758419, -0.0226106588, -0.017323453, 0.0201651547, 0.00444015954, -0.0105334241, -0.00769855315, -0.00734334067, -0.0233210828, -0.00603178563, -0.00161211938, 0.0153151341, 0.0184164159, -0.00529745175, -0.0016992148, 0.00750045385, -0.00610692706, -0.0101577183, -0.00163261243, 0.00155149412, -0.0195503626, 0.00214152294, -0.00178972573, -0.00953609589, 0.00736383349, 0.0157386567, -0.00107161538, -0.00174276251, -0.0107246926, -0.00117066514, -0.0132385064, -0.00768489111, -0.0178835951, 0.00256333826, -0.00304663251, 0.000318069098, 0.00670464057, 0.00540674804, -0.00454604, -0.00411568629, 0.00351455691, 0.00588833448, 0.00321570016, -0.0178426094, -0.0150145702, -0.0114829354, -0.0234167185, -0.00174532423, 0.00490125269, -0.00372631848, -0.0111208912, 0.038745515, 0.00819721725, -0.00462801242, 0.0032344854, -0.0197689552, -0.0303570274, 0.0111892018, -0.00566974189, 0.0162168276, 0.0118654724, -0.0394832641, -0.00924919359, -0.00319179147, 0.014194848, -0.00196904, 0.0197279695, -0.00982299913, 0.00295270607, 0.00773270847, -0.0023567, 0.0184847247, -0.00168640667, 0.0104719456, 0.0121045578, 0.0277885664, 0.0265453216, -0.0246872865, -0.0158889405, 0.00218763249, -0.00467582932, 0.00887348782, 0.00704277586, -0.00489783753, 0.00673196465, 0.0275153257, -0.00212103, -6.53749448e-05, 0.0179792307, -0.0127398418, 0.0135937184, -0.0205613542, -0.00924236234, -0.00796496309, 0.00558093889, -0.000950364862, -0.00105624564, 0.0026572647, 0.00455287099, 0.012719349, 0.0100279292, 0.0256846137, 0.0296466034, -0.00261969399, 0.00400297437, -0.012896955, 0.0140855517, -0.0094268, -0.00110577047, -0.00711108604, 0.0118381483, 0.0158206299, 0.0172688048, 0.0176376794, -0.0101645496, -0.0119679375, 0.000651081093, -0.0032037457, 0.0175283831, 0.00937898271, 0.0105265928, 0.0117971618, -0.0302750561, -0.00762341218, -0.0103148315, 0.00683443, 0.0110252574, 0.00579611585, 0.0075072851, -0.00676270435, -0.000770196901, 0.00800594874, 0.0107725095, -0.016940916, -0.00544773415, -0.0123914601, 0.0202881135, -0.0215996671, -0.0256163049, 0.00248307385, -0.003548712, 0.00428987714, -0.0115580764, -0.0114556113, 0.0181158502, -0.00956342, -0.00459044194, 0.0322697125, 0.00526671205, -0.00809475221, 0.037980441, 0.0133409714, -0.0149872461, -0.0118449787, 0.00107417698, -0.00150367711, -0.0148369633, 0.00226277346, 0.00070103287, 0.000387446606, 0.0261217989, -0.0104377903, 0.0118654724, -0.00561509375, -0.0193181094, -0.0223920662, 0.00208858261, 0.0428987704, 0.00463142758, -0.0175283831, -0.0118723027, -0.00923553202, -0.00696763489, 0.00245233416, -0.0219822042, -0.00314909779, 0.013457098, -0.0358764865, -0.00851144362, -0.0154654169, -0.00434110966, 0.0247965828, 0.00264531025, 0.00219446351, -2.46690342e-05, -0.0113599766, -0.00278193061, 0.00888031907, -0.0150282318, -0.00295953709, -0.000343685417, -0.0213674139, 0.00445382157, -0.0081494, -0.0117356833, -0.000861988636, 0.0121523747, -0.00341209164, -0.0109501164, 0.00296124467, -0.00350772589, -0.00497639412, 0.0102806771, -0.0321604162, 0.0194683913, 0.00437526498, -0.00888714939, 0.0247692578, -0.00429329276, -0.0184300765, -0.00610351143, -0.0340731, -0.00211590668, -0.00284511759, 0.0106358891, -0.0183207802, 0.00225423486, -0.0016548133, 0.00542724086, 0.00535551552, 0.0122821638, 0.00452213176, -0.00230888301, -0.00260090875, 0.0134092811, 0.0198099427, -0.0104856072, 0.0151238665, 0.0132999849, 0.011954275, 0.0147959776, -0.0242774263, 0.0125758974, 0.0104787759, -0.00473730871, 0.00136278744, -0.0338545069, -0.00604544766, 0.0131701957, 0.00713841, 0.0187579654, 0.0424889103, 0.0157113336, 0.0103694797, 0.0407948196, -0.00446065236, 0.0239495374, 0.0174737349, 0.0434179269, 0.00132692454, 0.00464850524, -0.0388274863, -0.0220915, -0.0296739265, 0.0242364388, 0.0192907844, 0.00677636638, -0.0227472782, 0.0109569468, -0.0157933049, -0.00884616375, -0.0255343318, 0.000466216734, 0.00300906179, -0.0102465218, -0.00197757874, 0.00589858089, -0.00808792096, 0.0105675794, -0.0151648521, -0.00333011965, -0.028389696, 0.00408836221, 0.00286561064, -0.0127056865, -0.016408097, -0.0115922317, 0.00352480356, -0.00348381745, 0.00721355109, -0.0072067203, -0.023758268, -0.00327205588, -0.00857292302, -0.00633576605, 0.00864806399, -0.00347186299, -0.0152058378, -0.000299497304, 0.0288542043, -0.0113121597, 0.019003883, -0.00561167859, -0.00931750331, -0.0150418943, -0.013101886, 0.00276826858, -0.00715890294, -0.00767122908, 0.00431037, 0.0133136474, 0.0117288521, -0.00268458878, 0.00156088686, 0.0297559, 0.000571243581, 0.0188126136, -0.018976558, -0.00717256498, 0.00394491106, -0.0129857585, -0.00180680328, 0.0182524715, 0.021162482, -0.012084065, -0.000495675486, -0.0237992536, 0.00172056176, 0.0018119266, -0.00566291111, 0.0216406547, -0.00555361481, -0.0165173933, 0.0190721918, 0.00170689973, -0.0091398973, -0.0174327493, 0.000394918025, -0.00839531701, -0.00930384174, -0.0162168276, -0.00877102278, -0.00946778618, -0.0184027534, 0.00730918534, -0.00545798056, 0.00991863292, 0.00137218006, -0.00452554692, 0.0108749755, -0.0001539113, 0.00648263283, -0.00540333241, -0.017296128, 0.0175693687, 0.0142221721, 0.00183412735, -0.0028912269, 0.0042454754, 0.0212854408, -0.00881200843, -0.0236626342, 0.00483294297, 0.0079171462, 0.0130677307, 0.00357603608, 0.00758925686, -0.00615132833, -0.00040665883, -0.00222178735, -0.0209165663, 0.00052897667, 0.0043650181, 0.00162578141, 0.0115034282, -0.000106734602, 0.00847045798, -0.00533502223, 0.00299027655, 0.000350943359, -0.0148916114, 0.0102670146, -0.0158342924, -0.0168726053, -0.0201924779, 0.00715207215, -0.00530769816, 0.00172226958, 0.0344283134, 0.0219412185, 0.00991863292, 0.0170638748, 0.0141811864, 0.0069368952, 0.0219685417, -0.00376047357, 0.0128764622, -0.0119201206, 0.0215176959, -0.0177606381, -0.00367167033, -0.0158616155, 0.00511301449, 0.000488844467, 0.0242774263, -0.00578245381, 0.00853193738, -0.0126305455, -0.0149599221, 0.00147293753, -0.00309957284, 0.0249468647, 0.00926285516, -0.0101645496, -0.0295099821, -0.0106358891, 0.00464167446, 0.00955659, 0.00177777151, 0.00679002842, -0.0100825774, 0.023785593, 0.00359994452, 0.00435477169, 0.0017359315, -0.00568681955, -0.0146320332, 0.0187716279, -0.00148574566, -0.00670122541, 0.00177777151, 8.40001303e-05, -0.00151392363, -0.002855364, 0.0265726466, -0.0128832934, -0.00453920895, 0.022337418, 0.0261901096, 0.00428304588, -0.00157027948, -0.0182251465, -0.00262652501, -0.0013508331, -0.00685492298, 0.00217055483, -0.000154871901, 0.00448797643, 0.0106905373, 0.00241988688, 0.0223510787, -0.0130813923, -0.0188536, -0.0218319222, -0.0006156452, -0.0100689158, 0.000366953551, -0.00989130884, 0.00470656902, 0.00998011231, 0.0204793811, -0.0256846137, 0.00197245553, 0.00399614358, 0.0403029844, -0.0208209325, -0.0175557081, 0.00620256132, 0.0190858543, -0.025971517, -0.0157113336, 0.00463484321, 0.00614791317, 0.00410202425, 0.00864123367, -0.00232596043, 0.0126783624, 0.00145329838, 0.00143536692, 0.00273923669, -0.0117493449, 0.000215283697, 0.0177742988, 0.0184300765, -0.0039278334, 0.0139352698, 0.0223647412, -0.0221188255, -0.0100825774, 0.00178460253, 0.0192771237, -0.0032344854, -0.00672513386, -0.00730235456, 0.018238809, -0.00626745587, 0.00477829482, 0.00643140031, 0.00758242607, 0.0293460377, 0.00935849, 0.00104941463, -0.00459044194, 0.0250424985, -0.0151785137, 0.00831334479, -0.0041566724, -0.00667390134, 0.0233347453, 0.00702911383, -0.00219617109, 0.0238265786, 0.00121079735, 0.00272557489, 0.0102465218, 0.0157386567, 0.0138259735, -0.00938581396, 0.0136961844, -0.0125690671, -0.00464850524, -0.00901693944, -0.00156601006, -0.00398931233, 0.0126920249, -0.0130404066, -0.00676270435, -0.0324883051, -0.0191268399, -0.00801961124, -0.00809475221, 0.0127261803, 0.00793080777, 0.0016146811, 0.00146952202, 0.0142631587, -0.0107520167, -0.0149052739, 0.0103763109, -0.000802217284, -0.00482269609, -0.00222349516, 0.016913591, -0.000960611389, 0.0252884161, -0.00911257323, 0.0110184262, 0.00601812359, 0.00768489111, 0.00313885114, -0.003777551, 0.0115922317, -0.0176240169, 0.00836116169, -0.0202334654, 0.00507885916, -0.00708376197, -0.00717256498, 0.0111345537, -0.018976558, -0.00782834273, -0.000546481169, -0.00384586118, -0.0016573749, -0.00383219915, 0.0128013212, 0.00118688878, -0.00581660867, 0.00314397435, 0.0117425136, 0.0101508871, -0.0202881135, -0.0101030702, 0.0129516032, -0.00805376563, -0.00401663641, 0.00855926145, 0.000340696861, 0.00578586943, -0.0050925212, 0.00838848576, -0.00999377389, 0.0183344427, -0.00640066061, 0.0135527328, 0.00405420689, 0.005710728, -0.00427279947, 0.0231708, 0.0239085499, 0.019714307, 0.0102191977, -0.00655094301, 0.00258383132, 0.00896229129, -0.00526671205, 0.00665340805, 0.024673624, 0.000779162569, -0.00939947553, 0.00875736, 0.00498664053, -0.00469632261, -0.0134434365, 0.00484660454, 0.0235943235, -0.00867538806, 0.0261491239, 0.0369967744, 0.0238675643, 0.0208482556, 0.00461776601, -0.0138806216, -0.0139352698, -0.016695, -0.0260261651, -0.00885982532, 0.015492741, 0.0195503626, -0.01602556, -0.00851144362, 0.0031593442, -0.00127825362, 8.46405383e-05, -0.00615474395, 0.00070914469, 0.00747996103, 0.014727667, -0.000223502255, -1.29615828e-05, 0.0102670146, 0.0333353505, -0.00684467657, 0.025998842, 0.00492174597, 0.00879834685, 0.00630161073, -0.0218592472, 0.00547847338, 0.000906817149, -0.00519157108, -0.0156293605, 0.010861313, 0.0120499097, -0.0145637225, -0.00165822881, -0.00538625475, 0.00363751524, 0.014194848, -0.00978201255, 0.0165720414, 0.00727503048, 0.00177094049, -0.00171031523, 0.0100894086, -0.0227882639, -0.0155883748, 0.020629663, 0.00255992264, -0.0255889799, 0.00205613533, 0.00669781, 0.0144271022, 0.0101577183, 0.0258348975, 0.0162851382, 0.00398931233, 0.00118945038, 0.0294280108, 0.000392996793, -0.0162304901, 0.0114077944, -0.0168862678, 0.00612742, -0.00896912161, 0.00489783753, 0.0165720414, -0.025438698, -0.027651947, -0.00660559116, -0.0126373768, 0.00417375, 0.00931750331, -0.0131975198, 0.0180202164, 0.00562875578, 0.003389891, -0.0143997781, 0.0189628955, 0.0194410663, -0.018621346, -0.00769172236, -0.00946778618, -0.00899644569, -0.0111208912, 0.0180202164, 0.00501738, 0.0249332022, -0.018061202, -0.0217362884, -0.0251791198, 0.00479537202, -0.0062708715, -0.0119611062, -0.00517449342, -0.0058610104, -0.00128679234, -0.00433769403, 0.00970004, 0.00726136845, 0.00159504183, 0.00358628249, -0.0120157544, 0.0167496484, -0.00285024079, 0.000430994318, 0.0144544262, 0.0158206299, -0.00152758555, -0.0247419346, -0.00763024297, 0.00353163457, -0.0147140054, -0.023567, 0.0129311103, -0.0104172975, -0.0270781405, -0.0190585312, 0.00954292715, 0.0281164553, 0.0223647412, 0.000181662297, 0.0118244858, -0.00403712969, 0.0144954128, -0.0243320744, 0.00633576605, 0.00238573179, -0.00566974189, -0.00952243432, 0.000285408314, 0.00644847751, -0.0173371155, -0.0085046133, 0.00616157521, -0.0175010599, 0.00495590083, -0.00726136845, 0.0102875074, 0.0119406134, -0.00312689692, 0.0158342924, 0.00893496722, 0.0106085651, -0.00257187686, 0.0227336157, 0.00806059688, 0.00847728923, -0.0176240169, -0.00890764315, -0.0111755393, 0.00448114565, -0.00728869252, -0.0214493852, 0.00155917904, -0.000231400612, -0.0189355724, 0.0123914601, -0.00839531701, -0.00147976854, 0.00562534062, 0.00319008366, 0.00508569041, -0.00709059322, -0.0236489717, -0.0151375281, 0.03205112, -0.00805376563, 0.0183344427, 0.0077053844, -0.00429670792, 0.00608643377, -0.00221666414, -0.0190858543, 0.00964539219, -0.000602410117, 0.0100415917, 0.0180065539, -0.0192088131, 0.0128559694, 0.00963173062, -0.00446065236, -0.00772587722, -0.0187989511, 0.00784883555, 0.00272728247, -0.00409860862, -0.0138601288, -0.00561509375, 2.69838415e-06, -0.00998011231, -0.0224877, 0.00912623573, -0.00416691881, -0.0251927823, 0.011421456, 0.0132453367, 0.00368874776, -0.021545019, 0.017296128, 0.0113326535, 0.00509593682, 0.0122958263, -0.0161758419, 0.0164490826, -0.0214357227, 0.0282257516, -0.000162556797, -0.00216543162, -0.0296466034, 0.0208892431, 0.0083475, 0.00909891166, 0.0168999303, -0.0103899734, -0.014577385, 0.000841068628, 0.0112233572, 0.0123709673, 0.0295373071, -0.00471681543, -0.00461435039, -0.0230888296, -0.00105368393, -0.00357603608, -0.0150009077, -0.00318837608, 0.00135681021, 0.00218080147, 0.0158616155, -0.0211351588, 0.014577385, 0.0138328047, 0.000569535827, 0.012616884, 0.00551945949, -0.014932598, -0.0254523605, -0.0269415211, 0.00694372598, 0.0114897666, -0.01218653, 0.0160392225, 0.00839531701, 0.0091398973, -0.0274060294, 0.00106307666, 0.024878554, -0.00463825883, 0.0216953028, 0.0138942832, -0.00391417136, -0.00251893653, 0.00158735702, 0.00543407211, -0.0249741897, 0.00547505822, 0.0336359143, -0.00367167033, -0.00318837608, 0.00791031495, 0.00774637051, -0.0160392225, -0.00590199651, -0.0176650025, 0.0148233017, 0.00378779741, 0.00379804405, -0.00752777793, -0.0142904827, -0.0193864182, -0.00315422099, 0.0157933049, 0.0279661734, -0.00678319717, 0.012084065, 0.00622988539, 0.00521889515, -0.00290830433, 0.00738432677, 0.0149872461, 0.0198236033, -0.0246326383, 0.00154893252, -0.0161075313, -0.0281437803, -0.0135732256, -0.00143365911, 0.000610095, -0.00694714161, 0.0188672617, 0.0194820538, 0.00153270888, -0.00077830872, -0.00375364255, -0.00564583344, 0.00921503827, -0.00511642965, -0.00333353505, 0.00234645349, -0.00115956471, 0.00378096662, -0.00745946774, 0.000686090032, 0.0108476514, 0.00572780566, 0.0119337821, -0.00117066514, -0.0132658305, 0.00130216219, -0.00449822284, 0.00667048572, 0.00864123367, 0.00518815545, 0.0101099014, 0.000761658128, 0.0111618778, -0.0256846137, 0.0279525109, -0.0106222276, -0.00379804405, 0.00562534062, -0.0188945867, -0.00232254481, 0.009488279, -0.00463825883, -0.0180338789, -0.00702911383, 0.00811524503, 0.000795813161, -0.0033181652, -0.00147806073, 0.00862757117, -0.0203837473, 0.00296466029, 0.0216269922, -0.00527012767, 0.00716573419, -0.0228292495, -0.00107076147, -0.00270337402, 0.00392441778, -0.00687541626, 0.000755680958, -0.00053836935, 0.0240041856, 0.00485685142, 0.00683784531, 0.00286902604, -0.0312313978, 0.0392373465, 0.0205886774, -0.000661754515, 0.034646906, 0.0229112227, 0.0208482556, 0.00232254481, 0.0141128758, -0.00670464057, -0.00797179434, -0.0120294169, 0.00472364668, -0.0075072851, -0.0222827699, -0.0158069674, 0.000494394684, -0.00908524916, 0.0173097905, -0.0136005497, 0.00555361481, -0.0187716279, -0.00253430638, 0.0104582831, -0.00276485318, 0.00621280773, -0.00124836795, 0.0146320332, -0.00147720682, 0.00434110966, -0.0023122984, -0.0205750149, 0.0013107009, 0.000756534864, -0.00263335602, -0.00857975427, 0.00924236234, -0.0110525815, 0.00540674804, 0.0063596745, -0.018976558, 0.0168452822, 0.0115854, -0.00629819557, 0.00147122971, 0.00603861688, 0.018976558, -0.0158342924, -0.00531452941, -0.00332499621, -0.01434513, 0.00597030669, 0.00986398477, 0.00623671617, 0.0184847247, 0.0179655682, -0.0131838582, 0.00934482738, 0.0108749755, 0.0163261238, 0.000881200889, 0.00695738802, 0.00737066474, 0.0434452519, 0.00470998464, -0.00325668626, 0.0287175849, -0.0192224756, -0.0240178462, -0.00617182162, 0.0230478421, 0.0113941319, 0.00087778538, 0.0160938706, 0.0170228872, 0.000715548755, 0.00180338777, -0.0132726608, 0.00495931646, -0.0087915156, -0.00441966625, -0.00253259856, 0.00491833035, 0.00998694357, -0.0165720414, -0.00862757117, 0.0172688048, -0.0154517544, -0.000810756057, -0.0115034282, 0.00419765851, -0.0140582277, 0.00133973267, 0.0262174327, -0.00511984527, -0.0058610104, -0.00810158346, -0.0125349117, 0.0226926301, 0.00382878352, -0.0212307926, 0.0127398418, 0.0167769715, -0.00806059688, -0.00034347194, 0.0035828671, -0.0171868317, -0.00118347327, -0.0330074616, 0.00497639412, 0.00959074404, 0.0134639293, 0.028389696, 0.00156686397, 0.0141538624, 0.00133631716, 0.0124256155, -0.00739798881, -0.0036272686, 0.0137235085, -0.0185666978, -0.0052120639, -0.00543748774, -0.00348381745, 0.00577562256, -0.0272147618, 0.0113668079, -0.011523921, 0.0163397864, 0.0292367414, 0.00944729336, 0.00211590668, 0.00526671205, 0.00589516526, -0.0263813771, -0.0077941874, 0.0172141567, 0.010683707, 0.012896955, -0.00599763077, -0.00295441365, -0.0175830312, 0.0161211938, 0.00267434213, -0.00903743226, 0.0169545785, -0.0019280538, 0.0183481053, 0.0100552533, 0.00230375957, -0.0158889405, 0.00473389309, -0.0227062926, -0.00871637464, 0.00959074404, -0.0011168709, 0.00241988688, -0.0234850273, -0.00753460918, -0.0316685848, -0.0189219099, -0.00667048572, 0.00997328106, -0.00294075185, -0.00456994865, -0.0107520167, 0.0184574015, 0.00955659, 0.0155883748, 0.0148916114, -0.0112916669, -0.00685150735, -0.0113053294, -0.0185393728, -0.0334992968, 0.0016198043, 0.0153971063, 0.0131565342, -0.0411227085, -0.0191268399, -0.00706326915, -0.00143365911, -0.00541357882, 0.00857975427, 0.0135868881, -0.00152160844, -0.0239495374, -0.00202198024, 0.00153697829, -0.0201241691, 0.0381990336, 0.00258383132, -0.0208619181, -0.0145910466, 0.0196733214, 0.00881200843, 0.00661583757, -0.0153561207, -0.018088527, -0.00702911383, -0.000895716774, -0.0161485188, -0.0206160024, 0.00232083723, -0.0152058378, 0.00231400621, -0.0121728675, 8.32529913e-05, -0.00439917343, -0.0222144593, -0.013887452, -0.0181841608, 0.00851827487, 0.00580294663, 0.0107315239, 0.000580209307, -0.0222554449, -0.00176240178, 0.0134912534, -0.00696763489, 0.00592932058, -0.0325429514, 0.00131582411, 0.0043957578, -0.00205955096, 0.00581319351, -0.0158616155, 0.00125178345, -0.00438209577, 0.0200968441, -0.00646213954, 0.0036238532, -0.0162168276, -0.00509935245, -0.0131428717, -0.000431421271, 0.0206433255, -0.0108954683, -0.00874369871, 0.0153424582, 0.0230205189, -0.00290488894, 0.00280413148, -0.00943363085, 0.0052735433, 0.00229863636, 0.00610009581, -0.0204110704, 0.00673538027, -0.00492174597, 0.027242085, 0.00135937193, -0.0122138541, -0.0149189355, -0.00851144362, -0.0234303791, -0.014754991, -0.0152604859, -0.0289635, -0.0157249961, -0.0397291817, -0.00472023105, -0.0139011145, 0.00550238229, 0.0178562719, 0.00588491885, -0.00278534624, 0.000403456797, -0.0349474698, 0.00799911749, 0.00645530876, 0.00262994063, 0.0440737046, 0.00566974189, 0.00989130884, -0.00747996103, 0.0102191977, -0.00816989318, 0.00392100215, -0.00518132467, 0.0356852189, 0.00512667652, 0.000252534053, 0.0023122984, 0.00739798881, -0.00248478143, -0.022870237, 0.0170365497, -0.00783517398, -0.0217362884, -0.00378438202, -0.0196323358, -0.0233484078, 0.00956342, 0.0072955233, 0.00387660065, 0.000700178964, -0.00170775363, -0.00868221931, -0.0149462596, 0.00975468848, -0.00187169795, 0.00946778618, -0.000949511, -0.0285263173, 0.0144407647, 0.0178972576, 0.00322594657, 0.0144134406, 0.0110799056, -0.0119337821, 0.00626404025, -0.0224740375, -0.014372454, -0.0161211938, -0.00595322903, 0.00621622335, -0.0144271022, -0.0189492349, 0.0226653069, 0.0114009632, 0.0207936075, -0.0179519057, 0.0189492349, 0.00841581, -0.00941996928, 0.00844313391, 0.0168042965, 0.00500371819, -0.0107793408, -0.00941313803, 0.0173781011, -0.011141385, -0.0104446216, 0.00560143171, 0.00649629487, -0.0127056865, 0.00109808554, 0.0141538624, 0.0046245968, 0.0114556113, -0.0221188255, -0.00317983725, 0.0114419488, -0.00594639825, -0.0153971063, -0.0119132893, 0.00449139206, -0.00847728923, -0.0144271022, -0.0144680887, 0.000881200889, -0.00602495484, -0.0132658305, -0.00176240178, -0.0146866813, 0.014577385, -0.0101918736, 0.00843630265, -0.0214767102, 0.0125212492, -0.0224740375, -0.00870954338, 0.00758925686, -0.00585417962, 0.0108271576, -0.00241305586, 0.00870954338, 0.00300223078, 0.00143707462, 0.00466216728, 0.0123709673, 0.0270371549, 0.000295227917, -0.0156840086, -0.00293562841, 0.00981616788, -0.0126237143, 0.00747313, 0.0122275157, 0.00747313, -0.0115375835, -0.0166130271, 0.000817587, -0.0119337821, 0.00650654128, 0.00372290285, 0.0161895044, 0.000652361894, -0.00606252532, 0.00243867212, 0.0153151341, 0.00870271213, -0.0115649076, -0.0108271576, -0.0081425691, 0.0207389593, -0.012411953, -0.0107998336, 0.0111482153, 0.0136483666, -0.00487734424, -0.00371265644, -0.00226448127, -0.00220983312, -0.00173336989, 0.0204247329, 0.00470656902, 0.0252884161, 0.011803993, 0.00423522899, 0.0124324467, -0.000474328554, 0.0104856072, -0.0193727575, -0.0222554449, -0.00621280773, -0.00204247329, -0.0193181094, 0.0234577041, 0.0135322399, 0.010403635, -0.0152058378, 0.00174532423, 0.00487051345, -0.00278705382, 0.00384586118, -0.00261457078, -0.02726941, -0.0163124632, 0.0101645496, 0.00125690666, -0.000691213296, -0.00810158346, -0.00648263283, 0.0137030147, 0.00518815545, 0.00470998464, -0.00467241369, 0.0263950396, -0.00253430638, 0.00461776601, 0.0097751813, 0.0181978233, -0.015670348, 0.0132999849, -0.00732284738, -0.00635284325, 0.0075072851, -0.00191609957, 0.0159435887, 0.00678319717, -0.00372631848, 0.0215996671, 0.00158564921, -0.0119406134, -0.00246941182, -0.0153561207, -0.00993229542, 0.00551604433, 0.00498664053, 0.0204657186, -0.011701528, -0.00412251707, -0.00682076812, 0.0113736391, -0.0132316751, 0.00405079173, -0.0265453216, -0.014372454, 0.0213264264, -0.00487051345, -0.00172226958, -0.0078556668, 0.00768489111, -0.00103489868]
|
12 May, 2020
|
How to set stroke width of a canvas circle using Fabric.js ?
12 May, 2020
In this article, we are going to see how to set the stroke width of a canvas circle using FabricJS. The canvas means the circle is movable and can be stretched according to requirement. Further, the circle can be customized when it comes to initial stroke color, fill color, stroke width or radius.
Approach: To make it possible, we are going to use a JavaScript library called FabricJS. After importing the library using CDN, we will create a canvas block in the body tag which will contain our circle. After this, we will initialize instances of Canvas and Circle provided by FabricJS and set stroke color and stroke width of the circle using stroke and strokeWidth property respectively and render the Circle on the Canvas as given in the example below.
Syntax:
fabric.Circle({
radius: number,
stroke: string,
strokeWidth: number
});
Parameters: This function accepts three parameters as mentioned above and described below:
radius: It specifies the radius.
stroke: It specifies the stroke color.
strokeWidth: It specifies the stroke width.
Example: This example uses FabricJS to set stroke width of a canvas circle.
<!DOCTYPE html>
<html>
<head>
<title>
How to set stroke width of a
canvas circle using FabricJS?
</title>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a Circle instance
var circle = new fabric.Circle({
radius: 50,
stroke: "red",
strokeWidth: 10
});
// Render the circle in canvas
canvas.add(circle);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?
|
https://www.geeksforgeeks.org/how-to-set-stroke-width-of-a-canvas-circle-using-fabric-js?ref=asr10
|
CSS
|
How to set stroke width of a canvas circle using Fabric.js ?
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-2.72473426e-05, 0.0162414052, -0.00732681295, 0.0271498114, 0.06210519, 0.0120295482, 0.0250408519, 0.0284830611, -0.0363128707, -0.0250408519, -0.00251196348, 0.023756085, -0.00960545707, -0.040603511, 0.00824796688, 0.024095457, -0.0210774653, -0.0205684062, -0.0108841648, -0.00741165597, 0.018423086, -0.0124477036, -0.0280467235, -0.0141324457, -0.00360886427, 0.026737716, 0.0168716684, 0.0246651173, -0.0371613, 0.0263256207, 0.0165322945, 0.0343736, -0.0298405513, -0.014544541, 0.000824948191, -0.0188594218, 0.0038270324, 0.0630263463, -0.00921154302, 0.00113477721, -0.00677533215, 0.013368858, 0.0226167627, 0.0264710654, 0.0201563109, 0.0139385192, -0.0359977409, -0.00362704508, 0.00583599741, -0.0399247669, -0.00869642384, -0.0245439131, 0.026786197, -0.000771921244, 0.0260104891, 0.0259377658, 0.0111326342, 0.0293314923, 0.0136233876, -0.0217198487, 0.0199017804, -0.0618143, -0.0013832465, -0.0103872269, -0.0178291835, 0.0198290572, -0.0298647918, 0.0343978405, -0.0218652934, 0.00642989948, 0.00317858835, -0.0218046922, 0.0115386695, 0.0183503628, -0.0163262468, 0.00182867306, 0.00579054561, 0.00260589691, -0.049984742, 0.059923511, 0.000246007286, -0.0105811534, -0.041888278, 0.00388157438, -0.0198411793, -0.0143263731, 0.0414761826, -0.028531542, 0.0269074012, 0.0135021824, 0.00794495549, 0.0276831109, 0.015780827, -0.0241196975, -0.0109326467, 0.00106887228, 0.0211259462, -0.00470273523, -0.0126052694, -0.00249832799, 0.00898125395, 0.0353674777, 0.0420337245, -0.00220440701, 0.00685411505, -0.024652997, 0.0240106136, 0.00735105341, 0.0163020063, -0.0125567876, 0.00682381401, -0.0230652187, -0.00103629858, 0.0701531693, -0.0511483029, 0.0331130736, -0.00326040131, -0.0411610529, 0.0437305868, 0.011847741, 0.0305677783, -0.0237439647, -0.015780827, 0.0364340767, -0.035318993, 0.0534269474, -0.0238409266, -0.0202411525, 0.0147263482, -0.00416640518, -0.0247378405, -0.0224591959, 0.00144081865, -0.0134173399, 0.0488939, -0.0381551795, -0.0009567581, 0.00211501867, 0.021562282, 0.00773890829, 0.0117628975, -0.0448941514, -0.00505422801, 0.0461304374, -0.00207108213, 0.0125446673, -0.000335774384, -0.0107508404, 0.000307935203, 0.0170292333, -0.0522633865, -0.0453789681, -0.0131022073, 0.00899943523, 0.0180958342, -0.0445790179, -0.00897519384, -0.00764800468, 0.00464213267, -0.0124840643, 0.0175140519, -0.0189442653, 0.00212410907, -0.00804191921, -0.0296466239, 0.0113326218, -0.0134173399, 0.0182170384, -0.0537663214, 0.0164838135, -0.00929638557, 0.011514429, 0.00467243372, 0.0108781047, -3.33549142e-05, -0.00924790464, 0.0150293596, -0.032070715, 0.0171383172, 0.00519664353, -0.0489423834, 0.0127022332, 0.0254287068, 0.0515846387, 0.000692002, 0.0013832465, 0.0171140768, 0.00042459456, -0.0134294601, -0.0527966842, 0.00948425289, 0.0158414301, 0.00314525701, 0.00248469249, 0.0077449684, -0.012071969, -0.00309829041, -0.0178413037, -0.0077449684, -0.00664806738, 0.00789647363, -0.0177322198, -0.0210289825, -0.0337433368, -0.00533299847, -0.0180715919, -0.00609658705, -0.0601174384, 0.0417670757, -0.0108417431, -0.00186957954, 0.0570146032, 0.0288951565, -0.030664742, -0.00780557049, 0.00416640518, -0.00742983678, 0.0443123691, -0.00767830573, -0.032070715, -0.00782375131, 0.00572085287, -0.00595114147, -0.0243015047, -0.0665170327, -0.0106841773, 0.00978726428, 0.014096085, -0.0055754073, -0.0464940518, 0.0197320953, -0.00399974873, 0.0136233876, 0.0296708643, 0.0229440145, -0.0123083182, 0.00994483, 0.011120514, 0.000195821034, 0.00899337512, -0.0337675773, -0.0111568756, -0.0217562094, -0.0094236508, 0.00809646118, 0.0173564851, -0.0276346281, 0.00213016919, -0.00233167177, -0.0350038633, -0.0293314923, 0.00378764095, 0.029089082, 0.00085449178, -0.0124355825, 0.00369370752, -0.0192715172, -0.0334039629, 0.0648686513, 0.0491605513, 0.0673412234, 0.00818736479, -0.00199987437, 0.0102599617, -0.00876308605, -0.0205441639, -0.00759346271, -0.0218046922, 0.00594811141, -0.0301314425, -0.0171625596, -0.0340342261, 0.0271982923, -0.0283860974, -0.0324585699, 0.0506634861, -0.0321191959, -0.00819948502, 0.019598769, -0.00807222072, 0.00799343735, 0.00775708864, 0.0337675773, 0.0672927424, -0.019150313, -0.0154293347, -0.037015859, 0.0162414052, -0.020944139, 0.00406338135, -0.045888029, -0.0565297827, 0.0147021068, -0.0227258466, 0.00312707643, -0.00912669953, -0.0144475782, -0.0163383689, -0.00410277257, 0.0119447047, -0.0476333722, -0.0367976911, -0.011065972, -0.0291375648, 0.0417913161, 0.00662382646, 0.0191260725, -0.0224349555, 0.0245317928, 0.0140112415, 0.0261801742, -0.0137688322, -0.0279740021, -0.0419610031, 0.0206290074, -0.0140233617, 0.0418155566, 0.0146415047, -0.0538148023, 0.0107084187, -0.0116780549, -0.0307859462, 0.0157565866, 0.0265195463, 0.0239863731, -0.02819217, -0.00747225806, -0.0384460725, 0.0067450311, -0.0121810539, -0.01932, -0.0300587192, -0.0161686819, 0.0205805264, 0.0021953166, -0.00936910883, -0.0373794697, -0.0227137245, -0.0301556829, 0.0309313908, 0.0191139523, 0.0378885306, -0.0214168373, -0.00630869484, 0.0199745037, -0.03706434, -0.017295884, 0.0184473265, 0.0156959835, 0.0195624083, 0.000774951361, 0.0436093844, 0.0103690457, -0.00206653681, 0.00105069159, -0.0364098363, 0.0373309888, -0.0336221308, -0.015332371, -0.00641777879, 0.0149323959, 0.00961757824, 0.011847741, -0.00345432851, 0.0158050675, -0.0288466737, -0.0257680789, -0.001074175, -0.0335009284, -0.0162414052, -0.0289678778, -0.0287254695, -0.0129446415, -0.0216592457, -0.0383733474, -0.00286042644, -0.00155293278, -0.013926398, -0.0400217287, 0.00961151812, -0.027343737, 0.0572570115, 0.0174534488, 0.0149566364, 0.0294769369, 0.0347372144, -0.0329433866, -0.00390581531, 0.0309313908, 0.00409065234, -0.071607627, 0.0187260974, 0.041839797, -0.015223287, -0.0077449684, -0.00419973629, 0.00353614171, -0.0647232085, 0.00385733368, -0.0670503378, -0.0227379669, 0.00860552, 0.000232182399, -0.00998725183, 0.0257923193, 0.00389672513, -0.0148596736, 0.00689047668, 0.0220834613, -0.0528451689, -0.00194381736, 0.00437245285, 0.0224713162, 0.00185442902, 0.0255983938, 0.0187988188, 0.0198411793, 0.0199987441, -0.00225288887, 0.000531027268, 0.0409186445, -0.0210532229, -0.0221198238, -0.00787829328, -0.0138900373, 0.0206774902, -0.0523603484, 0.00910245907, -0.0101993596, 0.0391248167, -0.124307349, -0.00372703862, 0.00421185698, -0.000661700906, -0.021004742, -0.0123628601, 0.0363855958, 0.0230894592, 0.0261316933, 0.0154293347, -0.0141688073, 0.0127749555, 0.00554510625, -0.00899337512, -0.0039421767, 0.00873884559, -0.0445790179, -0.032846421, 0.00182867306, -0.00836917106, 0.00838735234, -0.00582690677, -0.0464455672, 0.0186654944, -0.0121628726, -0.0395611525, -0.0238409266, 0.00482696947, -0.00238015363, -0.007975257, -0.0100963358, -0.0140718436, -0.0263498612, 0.0235379171, 0.0487242155, -0.0177079793, -0.00654504355, -0.0486514904, 0.00385430339, 0.0282164104, 0.0220834613, 0.0259135254, 0.00897519384, 0.0414761826, -0.00863582175, 0.0128355576, -0.0113205016, 0.00760558294, 0.0059753824, -0.033016108, -0.00832675, 0.0105387326, -0.00404217048, 0.0362401493, -0.00363916554, -0.0126416301, 0.0136718685, -0.0158414301, -0.011568971, -0.0132597731, 0.0423003733, 0.028531542, -0.000551480509, -0.0194896851, -0.0144354571, 0.019768456, 0.0214895606, -0.0282648914, -0.00679957308, -0.0254287068, 0.0195260476, 0.0459122695, -0.033137314, 0.0375976376, 0.0457183421, 0.0292102881, -0.0108720446, 0.0242287815, -0.0342766345, 0.0365795232, -0.013926398, 0.0327979401, -0.0237318426, 0.00335433497, -0.00866006222, -0.0227500871, 0.0169807523, 0.0159868747, -0.0361189432, 0.0127385939, 0.00837523211, -0.0260832105, -0.00577842491, -0.0288951565, -0.000758285751, 0.0450153537, -0.00163929106, -0.013756712, 0.0132355327, -0.00839947257, -0.00633293577, -0.0147990705, 0.013029485, 0.00386036374, -0.00240742462, -0.0200108644, -0.0130416052, -0.0152838891, 0.0186170135, -0.00458759069, -0.0160959587, -0.0131749306, -0.0179261472, -0.00109538576, 0.0226773638, -0.00249984302, -0.0115507897, 0.0097327223, -0.0297920685, 0.00247560209, -0.00978726428, 9.03352411e-05, -0.00112341426, -0.0205078032, 0.0259862468, 0.0116780549, 0.048530288, -0.0367492065, -0.0115265492, -0.00582387671, 0.0356826074, 0.0231743027, 0.0212835129, 0.0074358969, -0.0182897616, -0.0279497597, -0.0228349306, 0.0154778166, -0.0373552293, 0.0196836125, 0.0170292333, -0.00682987412, -0.00186957954, -0.0123446798, 0.0152960094, -0.0123022581, 0.0165201742, -0.00861764047, 0.00907215755, 0.0132355327, 0.0105205514, -0.0252347793, -0.0167383421, 0.0183382425, -0.000389369496, 0.0361189432, -0.00186048925, -0.0251862984, -0.0517300852, -0.0108720446, 0.0151142022, 0.0111508146, -0.00179988705, 0.019598769, -0.00248469249, 0.0248105638, 0.0258165617, -0.0219137762, 0.0116659347, -0.0276346281, 0.0155141773, 0.00355735235, 0.00741165597, 0.0184109658, -0.0166656207, -0.0177079793, 0.00921154302, 0.0273194965, -0.00884793, 0.00427851919, -0.0292830095, 0.0166050177, -0.00218622643, -0.0199260209, 0.0115507897, -0.00906003732, 0.000226879696, 0.0317071, -0.0137445917, 0.00347856944, -0.000459062081, -0.00456941, 0.0288951565, -0.00784799177, 0.0192351565, 0.00769648654, 0.0146415047, -0.0201441906, 0.0183382425, -0.00166353188, 0.000115523049, -0.0107447803, 0.0122901378, 0.0019180614, -0.00015027466, 0.0150293596, 0.0261801742, -0.00435124198, -0.0320949554, -0.00231349119, -0.00159989961, 0.0306405, -0.0129931234, 0.0444093347, 0.000545041519, 0.0249196477, -0.0496938489, 0.013477942, 0.0225804, 0.0338160582, -0.00272558653, -0.00799949747, -0.0458395444, 0.0132234124, -0.00372097851, 0.0148233119, 0.00721166842, 0.0425185412, -0.0296708643, 0.0190048665, 1.8322713e-05, -0.0133930985, 0.0100902757, 0.00773284771, -0.000796919689, 0.00151278381, 0.0199502632, -0.00463001244, 0.0173201244, -0.013368858, -0.0119325845, 0.00321191945, -0.0165565368, 0.010332685, 0.0118538011, -0.0138173141, -0.0313434862, 0.0384460725, 0.00946001243, 0.0119447047, 0.012071969, -0.0199623834, 0.00178322138, -0.00386945414, 0.0081934249, 0.00551783526, -0.0213683546, 0.0085267378, -0.00465425337, -0.0329191461, 0.0523603484, -0.00146278692, 0.0084115928, 0.0046784943, 0.0274407, 0.00536935963, -0.00804797933, -0.0208835378, 0.0227622073, -0.00317555829, -0.0189442653, -0.00685411505, -0.0308829099, -0.00516331196, -0.0027240715, 0.0553662218, -0.0161080789, 0.00452092849, -0.0461546779, -0.0258408021, 0.00642989948, 0.0416458696, -0.00633899588, 0.00692077773, -0.00646626065, -0.00218622643, -0.0112417182, -0.00311192591, -0.0149808777, 0.0296223834, -0.0151020819, -0.0131022073, 0.0169807523, -0.0291375648, 0.0192593969, 0.00559358811, 0.0135264238, -0.0285073016, -0.0263013784, -0.00306495908, -0.00596932229, -0.00840553269, 0.0163141266, -0.00850249641, -0.0457425825, 0.0375976376, -0.0126537513, 0.03864, 0.00338160596, -0.0210895855, -0.0259862468, -0.0250650924, -0.0136112664, 0.00898731407, -0.0200835876, 0.00327555183, -0.0224228352, 0.0153202498, 0.0128961597, 0.00628445391, -0.0151748052, -0.0236712415, 0.0413307399, 0.00652080262, 0.0140597234, -0.0292830095, -0.00514210155, 0.0345917679, -0.00377552048, 0.0461061969, -7.36222728e-06, 0.0206168871, -0.0201684311, 0.0442881286, 0.041839797, -0.00573297357, -0.0251135752, 0.00722984923, 0.0224955566, -0.0324100852, 0.0220713411, 0.012750715, -0.00156959845, -0.00118250155, 0.00180140208, 0.0355614051, 0.022180425, -0.014883914, 0.00519058341, -0.00658140518, 0.00639959844, 0.0101266373, 0.0343493596, 0.0170534756, 0.0166413803, 0.00830856897, -0.00794495549, -0.0131991711, 0.0387127213, 0.0351493098, 0.00726621039, 0.0224834364, 0.015332371, 0.00510877, 0.0174776912, 0.000112208865, -0.0126537513, -0.0109205265, 0.0020695671, -0.024652997, -0.0401186943, -0.0350765847, 0.00532693835, 0.0159383938, 0.01932, -0.0164353326, -0.0213925969, 0.00542693213, -0.0134658208, -0.00993877, -0.00829038862, 0.0107387193, -0.0276103877, 0.0122052943, -0.00979938451, 0.0100357337, 0.0224713162, 0.000512089056, -0.0132840145, 0.0523118675, -0.0153081296, -0.0274407, 0.0396096334, -0.0208592955, -0.0497423299, 0.0193563607, 0.040773198, -0.00245439145, 0.0204229597, 0.0127022332, -0.0164716933, -0.0187624581, -0.0489423834, 0.0359250158, 0.0189079046, 0.00981150474, 0.0181321949, 0.0270770881, 0.0289678778, 0.00961757824, -0.0155747794, 0.0136597482, -0.00184685376, -0.00904185697, 0.0284103379, -0.00932062697, -0.00842371397, 0.0214653183, 0.0209198985, -0.0364825577, 0.0161202, 0.0173564851, 0.0114295855, 0.019041229, 0.028580023, 0.0196351316, 0.0148717938, 0.000751846761, -0.0301314425, -0.0376703627, -0.0249196477, -0.0183382425, 0.00766012492, 0.0157687068, 0.0207744539, -0.0104599493, 0.00441790465, 0.00973878242, -0.0259377658, 0.00131658395, -0.0192230362, -0.00718742749, 0.00386945414, -0.0132961348, 0.0239378903, -0.00993877, -0.0460092314, 0.0283860974, -0.0263983421, -0.00684199482, 0.00999937207, -0.00523603475, -0.031173801, 0.00487545133, -0.00389369484, -0.00818736479, -0.0165807772, 0.00984180626, -0.00504816789, -0.055705592, -0.0133203762, 0.0027240715, 0.0253559835, -0.0347372144, 0.014374855, 0.0443366095, 0.00799343735, -0.00836917106, 0.00924790464, -0.000899943523, 0.0113629233, 0.00558146788, -0.016677741, -0.0124719441, 0.0265437886, -0.00956909638, 0.00130370597, 0.0313677266, 0.00389672513, 0.0209926218, 0.0278285556, -0.00508755958, -0.00772072747, -0.0088964114, 0.0356098861, 0.0295496602, -0.0215259213, 0.0242287815, 0.0177685805, 0.0117144156, -0.0213804767, 0.0192957576, -0.0258408021, 0.0282648914, -0.00701774145, 0.0104841907, -0.0182049181, 0.00507543888, -0.0121931741, 0.000209645936, 0.0191745535, 0.0434396975, 0.0394641906, -0.00814494304, -0.0367007256, -0.0152838891, -0.0103448052, -0.00786617305, -0.043124564, -0.00399065856, 0.0122537762, -0.015502057, 0.00298466114, 0.00272558653, -0.000304147572, -0.0185685307, -0.000208320256, -0.00501483679, 0.00396338757, 0.00647838134, -0.0137688322, 0.0205320437, 0.0387854427, -0.0111992965, 0.0162292849, 0.0204835627, -0.00135294534, -0.00564813, 0.025549911, 0.00455425959, 0.0290648416, -0.0117628975, -0.00613597827, 0.00879944768, -0.00365128601, -0.0137082301, -0.0185806509, -0.0384945534, 0.0196230095, -0.0126052694, 0.00872672442, 0.00815100316, -0.00436942279, 0.00678745285, 0.00778738968, 0.0402156562, -0.0110296104, 0.00381794223, -0.00269983057, -0.000397702301, 0.00392096583, 0.00592084043, 0.0105872145, 0.0270770881, 0.0118356207, 0.00546026323, 0.0259862468, -0.00738741504, -0.012750715, 0.0229197722, -0.0103932871, -0.0137809534, -0.0262528975, -0.0272467751, 0.00441487413, 0.0185806509, 0.00858128, 0.0134294601, -0.0613779649, -0.0101387575, -0.0149323959, 0.0289193969, 0.0136355078, -0.0031028355, 0.0179988705, 0.0308586694, -0.0373552293, 0.0135143027, 0.0102478415, 0.0171625596, -0.0295496602, 0.0288466737, 0.00261347229, -0.0139142778, 0.00472697616, -0.00422397722, 0.00556934718, 0.00124916399, 0.0111447545, 0.0200593472, 0.0286769867, -0.0114295855, 0.041112572, -0.0319737494, -0.00594508136, -0.00066776108, -0.00661776634, 0.0172595233, 0.0215016808, -0.0126779918, 0.017295884, -0.00299526658, -0.00361795467, -0.0185079295, 0.0169322696, -0.0351493098, -0.0260347296, -0.042057965, -0.0155141773, -0.0385672748, -0.0384460725, 0.0135749057, -0.0256468747, -0.00489969226, -0.0091812415, -0.0157444663, -0.0117083555, -0.00781769119, -0.0253317431, -0.00591175025, -0.0154535752, 0.029258769, 0.00886611, -0.0194654446, 0.00434215181, -0.00982362591, -0.0118356207, -0.00957515649, 0.000294678466, 0.0124598239, -0.00884793, 0.0167868249, -0.00658746529, -0.0190048665, -0.0129567627, 0.0129446415, 0.00312404637, -0.0028725469, -0.00799949747, -0.0117750186, -0.00200290466, 0.0231985431, 0.000447320403, -0.0179382674, -0.00358765363, -0.0299617555, -0.0222652685, -0.00161959534, -0.00432397099, -0.0260347296, 0.0346402489, 0.00306950416, 0.0275134239, -0.0137688322, 0.0176594965, -0.0114659471, -0.00437245285, -0.0141445668, -0.0165807772, -0.0329191461, -0.0167625844, 0.0209805015, -0.00538148033, 0.0227016043, 0.00826614723, -0.00715106633, -0.0275376644, 0.0494272, -0.0173322447, -0.0163868498, -0.00641171867, -0.00242106, -0.0225804, -0.0236348789, 0.0323131233, 0.0216592457, -0.0135143027, 0.0261074509, 0.0246045161, 0.0148960343, 0.0278043151, 0.0112417182, 0.000238621389, 0.0151869254, -0.00545117306, 0.00356038264, -0.0288466737, -0.0249438882, 0.00828432851, -0.0201926716, -0.0334282033, 0.0178655442, 0.00632687565, 0.00449971762, 0.00071889424, -0.0107447803, 0.00187412475, 0.0160838384, -0.0116295731, 0.0274407, 0.01774434, 0.00303162774, 0.02819217, 0.0265680291, -0.0107205389, 0.00555419689, 0.00507846894, -0.00790859479, -0.0172231607, 0.00741771609, -0.00338160596, -0.0018210978, 0.0201926716, -0.0256226342, 0.00326343137, -0.00967212, 0.00482393941, -0.023586398, -0.00179685687, -0.0222652685, -0.0132112922, 0.0169565119, 0.0103023835, -0.00893277209, -0.0232470259, -0.00224531349, -0.0631233081, 0.0116113918, -0.000969636079, -0.0176716186, 0.0395853929, 0.00280436943, -0.0142051689, -0.0215380415, 0.0283618551, -0.00232712668, 0.0315374136, 0.00401489949, 0.0136233876, 0.0184958093, -0.0138173141, -0.0273922198, 0.0143384933, -0.0110599119, 0.00824796688, 0.0320464745, -0.00991452858, 0.00783587154, 0.00809646118, -0.0269558839, 0.0175746549, -0.00677533215, 0.00187412475, -0.0242287815, -0.0200351048, -0.00374521944, 0.0174170882, -0.00257256581, 0.0081267627, -0.0204714425, 0.0281194467, 0.0265680291, -0.0133930985, -0.00913276, -0.00208017253, 0.00392096583, -0.0275861472, -0.0413549803, 0.0376946032, 0.0169201493, 0.000467773672, -0.036724966, -0.0146778664, 0.0120659089, 0.0125689078, 0.0263741016, 0.00794495549, -0.00662988657, 0.0202411525, -0.00941759069, -0.000535572413, 0.00892065186, 0.0338887796, 0.00090676127, -0.0142536508, 0.0154293347, -0.027464943, 0.00483606, 0.0131022073, 0.0208592955, 0.0120901503, 0.00311798602, -0.0156353824, -0.0326040126, 0.00432397099, 0.0292102881, -0.0060208342, -0.00414519431, 0.0192230362, -0.00469667464, 0.00626021298, -0.00978726428, 0.00210441323, 0.000202260024, 0.003678557, 0.0268589202, -0.0228834115, -0.00397853786, 0.0124719441, -0.00324828085, -0.0346644893, 0.0294042137, 0.0254044663, -0.00219986192, 0.00755710108, -0.00241803, -0.0110114301, -0.0228228103, -0.029985996, 0.0375006758, 0.00444214512, 0.0222046673, 0.00844189432, 0.0206411276, -0.000774951361, 0.00569358189, 0.00156353822, 0.0149202757, 0.00320888939, -0.00347250933, -0.0101690581, 0.0121507524, 0.0139142778, -0.0142778913, 0.0150051182, 0.00668442901, 0.00896913372, 0.0080601, -0.00259529171, -0.00742983678, -0.0147990705, 0.00713288551, 0.0176837388, 0.014544541, -0.0197320953, 0.0201563109, -0.0126416301, 0.00604204508, 0.0135749057, -0.0105447927, -0.00954485498, -0.0315858945, -0.007975257, -0.00418761605, 0.0104902508, 0.0287497099, 0.00998725183, -0.00308617, 0.0246408768, -0.00484818034, -0.00415731454, 0.0131749306, -0.00382400234, -0.0187624581, -0.0384218283, -0.0128719192, -0.0085934, 0.00779345026, 0.0189563856, 0.00775708864, 0.0191866737, -0.0136355078, 0.00151960156, -0.0096418187, -0.0175382923, -0.00143248576, 0.0211986694, 0.0186654944, 0.0039755078, -0.017017113, 0.0219864976, -0.00636323681, -0.0053905705, -0.00383915287, 0.0040330803, 0.00655716425, -0.00278770365, 0.0117022954, 0.0150778415, -0.00298920623, 0.0171868, 0.0220471, 0.00126279949, 0.00767830573, 0.00882974826, 0.0104417689, 0.0268589202, -0.0226410031, 0.0234045908, 0.0155990208, 0.00026343044, 0.00530269742, -0.00108402281, 0.00992665, -0.0132597731, 0.00864188187, 0.00596023165, -0.00397247775, 0.0183018818, 0.00158474897, 0.0092054829, 0.00685411505, -7.65576915e-05, 0.0240712166, -0.0181564353, -0.0108659845, 0.000463607255, 0.0210532229, 0.0150778415, 0.0215865243, -0.0135506643, 5.60097396e-05, 0.00248772255, 0.013477942, -0.00633899588, -0.0136718685, 0.00226955442, 0.0183746032, 0.0140597234, -0.00936304871, -0.0258408021, -0.0202411525, 0.00966, -0.0319737494, 0.00629051402, -0.0129446415, -0.0188109409, -0.0316828601, 0.0197926965, 0.034543287, 0.00909639895, -0.000738968782, 0.00283012539, 0.00076472474, 0.0177807026, -0.0216107648, -0.00450880779, -0.0122355958, -0.0226531234, -0.0018953355, -0.0122598363, -0.0102236, 0.0142900115, -0.00134688511, 0.0138294352, 0.000863582129, 0.0181564353, 0.0174170882, 0.00183321827, 0.0288709141, -0.00118401658, -0.0333312415, 0.0207017306, 0.00990240835, 0.00169989327, 0.0190291088, 0.00969636068, 0.00348765985, 0.0265437886, -0.00640565855, -0.00613900833, -0.0273679793, -0.0118719824, 0.00785405189, 0.00143930363, 0.0222289078, -0.020835055, -0.00992059, -0.0378642902, 0.0204835627, -0.023756085, -0.00238772877, -0.0036421956, -0.00754498085, 0.00569055183, 0.0235621575, -0.0196108893, -0.00995089, -0.0222652685, 0.0048966622, 0.00230894587, 0.0148233119, 0.00121128757, 0.00435427204, -0.0015165715, 0.0167141017, 0.0100175524, -0.0112902, -0.00269074016, -0.0301072, 0.00615415908, 0.0131022073, -0.00369370752, 0.00248014741, -0.000945395208, -0.0211259462, -0.00215744041, -0.00839947257, 0.0387369618, 0.00089539832, -0.0123992218, 0.0214410778, 0.00248620752, 0.00741771609, -0.0188109409, -0.0239742529, 0.00659958553, 0.00949031301, -0.00904185697, -0.00456031971, -0.00219986192, 0.00850249641, 0.0376703627, 0.00268771, 0.00536935963, 0.0165928975, -0.0124355825, 0.0318767875, -0.0239257701, 0.00450577773, 0.0257195979, -0.0163868498, -0.0285557825, 0.0013605206, 0.000654504343, 0.0346644893, 0.0102296611, 0.0052511855, -0.0247378405, 0.0342039131, 0.00931456685, 0.00456334976, 0.0436336249, 0.0303738508, -0.00784799177, 0.0235500373, -0.005699642, -0.0159626342, 0.00224834378, 0.00752074, 0.0034482684, -0.00526027568, 0.0129082808, 0.00468758447, -0.0109144663, 0.0219380166, 0.0245802756, 0.0154414549, -0.00641171867, 0.0194412041, 0.0215865243, 0.000784799224, 0.0334039629, -0.0192836374, -0.00125522423, -0.0101872394, -0.00749043887, 0.0285557825, 0.0083449306, -0.00273013161, -0.000381226069, 0.0569661222, -0.0315616541, 0.00702380156, -0.0101387575, -0.0038270324, -0.0245439131, -0.0112417182, -0.00832069, -0.0290163606, 0.0169686321, 0.00132112915, 0.00846613478, 0.00322100986, 0.0185200498, -0.00836311094, -0.0131506892, 0.000484439282, -0.0168231856, -0.00329979276, 0.00194684742, -0.00801767875, -0.00505422801, 0.0192715172, 0.011793199, -0.00727227051, -0.00588447927, -0.0263741016, -0.0068965368, -0.0127991969, -0.00727833109, 0.0191624332, -0.0161565617, -0.00921760313, -0.0138657959, -0.00787829328, 0.0198775399, 0.00255438499, -0.0116659347, -0.00838735234, 0.00298617617, -0.0120113669, -0.000411337824, 0.00355735235, 0.0262528975, -0.003172528, 0.0118538011, 0.00882368814, -0.00251499354, 0.0169928726, 0.0231015794, 0.0123507399, 0.0164353326, -0.0154778166, 0.00385430339, -0.00528148655, -0.016508054, 0.00804191921, -0.00259832176, -0.00330585311, 0.00375127955, 0.00669654924, -0.00524815544, -0.0151020819, -0.00455122953, 0.0080661606, 0.0279982425, -0.00114462513, -0.0125083057, -0.00750861969, 0.000477621536, 0.0214410778, -0.0092054829, -0.00647232076, -0.00319070881, -0.0203381162, 0.00650868239, 0.0186170135, 0.00463910261, 0.000846159, -0.0106599368, -0.0176594965, 0.0500332229, 0.0170655958, 0.00554207619, -0.00297405571, 0.0114356456, 0.0119689452, 0.0160111152, 0.027464943, 0.0122234747, 0.00621173112, 0.00596932229, -0.00673897099, 0.0115507897, -0.0337190963, -0.0146172643, 0.00107038731, 0.00892671198, 0.00369067746, -0.0104175275, -0.000299602398, 0.0119689452, -0.00781769119, 0.019938143, 0.00158929417, 0.020216912, -0.00218925648, 0.00417549536, -0.026786197, 0.00826614723, 0.0131506892, -0.00780557049, 0.00698744, 0.0040209596, 0.00730257202, 0.00622385181, 0.0116053317, -0.0107326591, -0.00327858212, -0.0300587192, 0.00528754666, -0.00600871351, 0.00124689145, 0.00926002488, 0.00497847516, -0.00607234612, 0.00248923758, 0.00913276, -0.00108781049, 0.00646020053, -0.00768436585, -0.00885399, 0.00864188187, 0.00551177515, 0.0388581678, 0.0131143285, -0.0114901876, 0.00146505958, -0.00499362592, -0.00148627034, 0.0097327223, -3.14374192e-05, 0.00534511916, 0.00879944768, -0.00330888317, -0.0035179609, -0.000392020855, -0.0127143534, -0.0218774136, 0.0141203254, 0.00761770364, -0.00447850674, -0.0181685556, 0.0027240715, -0.00403611036, 0.00109311321, 0.000420049386, -7.3859e-05, 0.0155141773, 0.00676927203, 0.0013688535, 0.00723590935, -0.011175056, -0.00930850673, 0.000793132, -0.00379673135, -0.0114598861, -0.0062965746, 0.00835099071, -0.011793199, 0.00675715134, 0.0218652934, -0.0140839638, -0.00895701349, -0.0175746549, 0.00660564611, -0.0151020819, 0.00107038731, -0.00622385181, -0.0159868747, 0.0130416052, -0.0036331052, -0.00695107877, -0.000414746697, -0.00171807397, -0.00357553316, 0.0155747794, 0.00115826062, -0.00609961711, -0.0214774385, -0.016059598, -0.0187745783, -0.0216713659, 0.0040330803, 0.00831462909, -0.0169565119, -0.0127385939, 0.0235500373, 0.0215986446, 0.0123143783, -0.0117750186, -0.024143938, -0.0222167876, 0.0135506643, 0.00977514405, 0.0218168125, 0.00816312339, -0.0319737494, -0.0110356705, -0.00798131712, 0.0171625596, 0.00169534807, 0.0166898612, -0.0114720073, -0.00750861969, 0.00631475495, -0.00384218292, 0.0214410778, -0.00583902746, -0.00439366372, 0.0143142529, 0.0327737, 0.0211986694, -0.0318525471, -0.0310768373, 0.0023786386, -0.00646626065, 0.01639897, 0.0106599368, -0.0158293098, 0.00664200727, 0.0373309888, 0.00599962333, 0.0123749804, 0.00623597205, -0.0191745535, 0.0145809026, -0.0157323461, -0.0125931492, -0.00245439145, 0.0183261223, 0.0029179987, 0.0141930487, -0.00625415286, 0.00415731454, 0.00524209533, -0.0080601, 0.0227500871, 0.0251135752, -0.0131749306, 0.0045724404, -0.0255256705, 0.0113023203, -0.0172716435, -0.00942971092, -0.0243257452, 0.0152596477, 0.0292102881, 0.0214410778, 0.0148111917, -0.0014983908, -0.00032744155, -0.00819948502, 0.0129931234, 0.0131022073, 0.0186291337, 0.00620264094, 0.0235015545, -0.0321676768, -0.00200744974, 0.0027346767, 0.00392096583, 0.021731969, -0.00370885804, 0.00705410261, -0.00782981142, 0.00226046424, 0.0084721949, 0.0123689203, -0.0192351565, 0.00646020053, -0.013477942, 0.0167747047, -0.0119507648, -0.02661651, -3.53197538e-05, -0.00484515028, -0.0082176663, -0.00681775389, 0.00275891763, 0.0130658466, 0.000595417165, -0.0114417057, 0.0317555815, 0.00297557074, -0.00176807086, 0.0387854427, 0.00782981142, -0.0153444912, -0.0131264487, 0.0062965746, -0.00742983678, -0.00223773834, -0.0186533742, 0.00152414676, -0.00483606, 0.0129931234, 0.00472394563, 0.00383006246, -0.00220895233, -0.0160353575, -0.0116053317, 0.00300890207, 0.0338160582, 0.00642989948, -0.0146536259, 0.00565116, 0.0136839896, 0.00283164042, 0.00932668708, -0.0257195979, -0.0101751192, 0.00618749, -0.0233439896, -0.00941759069, -0.0152960094, 0.00407550158, 0.0402398966, 0.0114114052, -0.0140233617, -1.87843325e-05, -0.0136839896, -0.0144112166, 0.0158777907, -0.000629505957, -0.006205671, 0.0057572145, -0.028531542, 0.00231197616, -0.0183746032, -0.000831008423, -0.00271346606, 4.20664874e-05, -0.0133930985, -0.0077449684, 0.00822978653, 0.0043573021, -0.0199260209, 0.0159626342, -0.0289678778, 0.00318161841, -0.00483303, -0.0061147674, 0.0287981927, 0.00526027568, -0.0182655193, 0.0017983719, -0.0376461223, -0.00321191945, -0.00135521789, 0.0128961597, 0.00177261594, -0.00386945414, 0.010781141, 0.00443002488, 0.00872066431, 0.00105978199, 0.00747225806, -0.0133446166, 0.0108659845, 0.0211501867, 0.0075268, 0.00332100363, 0.00434215181, 0.00993877, -0.00165292656, 0.00233621686, -0.0248105638, 0.00995089, 0.00818736479, -0.00966606, 0.00515422178, -0.0283618551, 0.0120840902, 0.029937515, 0.0129810032, 0.0216592457, 0.0472697578, 0.00990846846, 0.0132112922, 0.0423731, 0.00248317746, 0.00104311632, 0.036724966, 0.0317555815, 0.00124158873, -0.000479894108, -0.0310768373, -0.0192472767, -0.0257195979, -0.000251688733, 0.0298405513, 0.00454819947, -0.0158777907, 0.024374228, -0.0174170882, -0.0122052943, -0.0265195463, 0.000267407449, 0.00976302382, -0.0206896104, -0.00846007466, -0.00333009404, -0.00495726429, 0.00177867617, 0.0101387575, 0.00779345026, -0.0231985431, 0.0162292849, 0.0144839389, 0.000983271631, -0.00883580931, 0.0031482873, 0.00673291041, -0.0068844161, 0.00867218245, -0.0137203503, -0.0253075026, -0.00227258448, 0.0125931492, -0.0224470757, 0.0144960592, 0.00162565557, -0.0147990705, 0.00287557696, 0.021453198, 0.0016271706, 0.0236348789, 0.00586629845, -0.00248014741, -0.00306798914, 0.00289072772, 0.00621173112, 1.96838973e-05, -0.00192109146, -0.00462698238, 0.00759952283, 0.00355129223, 0.0113750435, 0.00409974251, 0.0244469494, 0.0145930229, 0.00380885182, -0.00826614723, -0.00886005, 0.0109871887, -0.00644201972, -0.0175625328, 0.00447850674, 0.00487545133, -0.00619961089, 0.00716318656, -0.0159989949, -0.00317858835, 0.00612991815, -0.00380279147, 0.01021754, -0.00738741504, -0.00479363836, 0.0158171896, 0.00543299224, -0.00158929417, -0.0138536757, 0.000687835622, -0.0119689452, -0.0145687824, -0.0222652685, -0.00327252178, -0.019150313, -0.0016877728, -0.00701774145, -0.0128355576, 0.0096418187, 0.0104114674, -0.00277861347, 0.0201199483, -0.00468758447, 0.0132597731, -0.000868884847, -0.0214289576, 0.0157687068, 0.0140233617, 0.00124461879, -0.00899943523, 0.0103145037, 0.0234530736, -0.011962885, -0.024095457, 0.0111447545, -0.0039542974, 0.0056663109, -0.00755710108, -0.00305586867, -0.00506028812, -0.00640565855, -0.00619355077, -0.012126511, -0.00164535129, 0.0156353824, 0.0191018302, 0.000679502788, -0.0108902249, 0.00644808, -0.00636323681, 0.00779951038, -0.00516331196, -0.0163868498, 0.00272861659, -0.0206774902, -0.00715106633, -0.0220713411, 0.00494514406, 0.0043573021, 0.013138569, 0.0398762859, 0.0210774653, 0.0249438882, 0.0129567627, 0.0184352063, 0.00818736479, 0.0225925203, 0.00640565855, -0.00412095338, -0.0334282033, 0.000489742, -0.0176594965, -0.00664806738, -0.0101326974, 0.00159989961, -0.000482924224, 0.0127385939, -0.00462698238, 0.00236197282, -0.0282164104, -0.00869642384, 0.0045269886, 0.0156353824, 0.0107326591, 0.00247711712, -0.00453607878, -0.0212956332, -0.00215895544, 0.00846613478, 0.0044815368, -0.00179534184, 0.00616931, 0.000702986144, 0.0326040126, -0.0120598488, 0.00263013784, -0.0135143027, -0.0177201, -0.00456031971, -0.00552995596, -0.0103569254, 0.00642989948, 0.01853217, 0.0227500871, -0.00391490571, 0.0011385649, 0.0334282033, -0.0268831607, 0.00290284795, 0.0154899368, 0.0157081038, -0.00350584043, -0.000463228498, 0.00195290765, 0.0215865243, 0.00141657772, 0.00984180626, -0.000568524934, 0.0046997047, -0.00448759692, -0.00505119795, -0.00837523211, 0.0111144539, -0.000270626944, 0.00060109864, -0.0215016808, -0.0174292084, -0.0132476529, -0.00391490571, -0.00204229611, -0.00298466114, 0.0140718436, 0.0177322198, -0.0168595482, 0.00787829328, 0.0192957576, 0.0284345783, -0.0184594467, -0.0148111917, 0.00220440701, 0.00115826062, -0.00635111658, -0.000438230054, 0.0012075, 0.00166353188, 0.0122234747, -0.0174292084, -0.0144112166, 0.0175261721, -0.0118841026, 0.00495120417, 0.00798131712, -0.00772072747, 0.00778738968, 0.0262528975, 0.0291860458, -0.00303768809, 0.0165807772, 0.0254771877, -0.022350112, -0.0236833617, -0.00233015674, 0.0141809275, -0.00305132358, -0.000311533484, -0.000662079663, 0.0337675773, -0.0099751316, -0.00154990272, -0.00707228342, 0.00735105341, 0.0319252685, 0.014265771, 0.0115204891, 0.00422397722, 0.024992371, -0.00592690054, 0.00892065186, -0.00609052693, 0.00192563666, 0.0232227836, 0.022798568, 0.00585417775, 0.0108599244, -0.00931456685, 0.00658140518, 0.014374855, 0.0260347296, 0.0145687824, -0.00827826839, 0.0293314923, -0.00603295444, -0.00947819278, -0.0162535254, -0.00102569314, 0.0041270135, 0.00803585909, -0.0121507524, -0.00519967359, -0.029985996, 0.000891610689, -0.0214047171, -0.0126416301, 0.00884186942, 0.0030892, 0.00103251089, -0.00166959211, 0.00532390829, -0.00455728965, -0.00342099741, 0.0170413535, -0.0188957825, -0.0098599866, 0.00484212, 0.0185079295, 0.000953728, 0.0200108644, -0.00623597205, 0.0127264736, 0.00516634248, 0.0243378654, 0.0109265866, -0.00387551426, 0.00664200727, 0.00413004356, 0.0147021068, -0.0234045908, -0.000308124581, -0.0272225328, -0.0154172136, 0.014374855, -0.0258165617, -0.00278770365, 0.00621779123, 0.000175746536, -0.00270892074, -0.00712076528, -0.00159686944, -0.00708440365, -0.00119537953, 0.0105690332, 0.0097327223, 0.00967818, -0.0167747047, 0.00292102876, 0.00530572748, -0.0208956581, 0.0027483122, 0.0188351814, -0.0158535503, -0.00296951062, -0.0147627098, 0.000917366648, 0.00306798914, 0.0123507399, 0.00741771609, 0.00450880779, -0.00614809897, 0.0142778913, 0.00478454819, 0.0314889327, 0.0408701599, 0.0304465741, 0.000600719883, 0.00153247954, -0.0130900871, 0.0141566871, 0.00556025701, 0.0132355327, 0.0115568498, -0.00654504355, -0.0168110654, 0.000670791196, 0.000630642229, 0.00550268497, -0.0018953355, -0.000970393594, 0.00606931606, -0.00885399, 0.0146172643, 0.034543287, 0.0136112664, 0.023477314, 0.00626021298, 0.000608295144, -0.00775708864, -0.00917518139, -0.0331130736, -0.00848431606, 0.0158535503, 0.00863582175, -0.0158535503, 0.00972666219, 0.00511786062, -0.00476333732, 0.000264187955, -0.0110114301, -0.00453607878, 0.000504135038, 0.00532693835, 0.0127143534, -1.37538709e-05, 0.0191745535, 0.0177685805, -0.0151869254, 0.0173080042, 0.00668442901, -0.0087812664, 0.0152838891, -0.00606931606, 0.00716924667, 0.00987210777, -0.00870854408, -0.0143869752, 0.0058056959, 0.0202047918, -0.0187260974, -0.0200108644, 0.0026331679, 0.00204229611, -0.0031391969, -0.00466031348, -0.00758740259, 0.00615718914, -0.0013097662, -0.00433912128, -0.00117492618, -0.0131506892, -0.0110417306, 0.0236106385, 0.0119931865, -0.0183867235, -0.0108417431, 0.0178776663, 0.0122780167, 0.0158293098, 0.0263498612, -0.000615491648, 0.000858279469, 0.006345056, 0.0253317431, 0.0049754451, -0.0201441906, 0.00672079, -0.00306647411, 0.0163383689, -0.00521482388, -0.00574812386, 0.00964787882, -0.0140718436, -0.00159686944, -0.00554813631, -0.00326040131, 0.0171625596, 0.025889283, -0.0135143027, -0.00699350052, 0.0254287068, 0.00958727673, -0.00704198191, 0.0191018302, 0.00847825594, -0.0135264238, -0.00588447927, -0.0059420513, 0.0160838384, -0.00361492462, 0.0212592706, -0.00148854288, 0.014605144, -0.0132961348, -0.0222289078, -0.0157565866, 0.0119992467, -0.00733893318, -0.017914027, -0.0185806509, 0.00567237101, -0.00728439121, -0.00211047358, 0.0192109141, 0.015611141, 0.0128234373, -0.00189230544, 0.00304071815, 0.0185079295, 0.00335736503, -0.00468152435, 0.00448456686, 0.00904791709, 0.00606022542, -0.0257195979, 0.00605719537, 0.00365128601, -0.0181079544, -0.014265771, 0.0225319192, -0.0118719824, -0.0180352312, -0.0109993098, 0.0088964114, -0.00292860391, 0.0227500871, -0.00644808, 0.0213319939, -0.0101751192, 0.00198623887, -0.0291375648, 0.0244590696, 0.00156050804, -0.0110780923, 0.00401792955, -0.00338766607, -0.000858279469, -0.0150657212, -0.0102720819, -0.00836917106, -0.0183261223, -0.00339675648, -0.0135143027, 0.0209077783, 0.00620264094, -0.021562282, 0.0120598488, 0.0134658208, 0.00501483679, 0.00570570258, 0.0194048416, 0.0073449933, 0.0135021824, 0.00563298, 0.00586932851, -0.0108175026, 0.0057450938, -0.0128113171, -0.0294042137, -0.000536708743, 0.00376946037, -0.0130416052, 0.0122901378, -0.00538451038, 0.00401489949, 0.00330888317, 0.00936910883, 0.0105932746, -0.00327555183, -0.000603371183, -0.0124477036, 0.0316828601, 0.000631021, 0.0275861472, -6.21646541e-05, 1.81333307e-05, -0.0131749306, 0.000196199806, -0.00360583421, 0.00926002488, -0.00824796688, 0.00745407725, 0.0205320437, -0.00410883315, 0.0275376644, 0.0119871264, -0.0170777161, -0.0159141514, -0.0195502881, 0.00370885804, 0.00473000621, -0.0104902508, -0.00781769119, -0.0102114799, 0.0111447545, -0.00758134201, -0.0222652685, 0.0154899368, 0.00312707643, -0.0107629607, 0.00721772853, 0.0109205265, 0.000241651491, 0.00181806763, 0.0133567369, 0.00547238346, 0.0202290323, 0.0182049181, -0.0174655709, 0.00514816167, -0.0224834364, 0.00982362591, 0.0134415803, 1.4014272e-05, -0.0297678281, 0.0199017804, 0.0202290323, -0.00481484924, 0.0163262468, 0.000320434425, -0.00111811166, 0.0143384933, 0.0118416809, 0.0118841026, 0.0195139255, 0.00384521321, -0.00299375155, -0.020944139, -0.0100175524, 0.000712834, -0.0084358342, 0.0026649842, 0.000138343588, -0.00732681295, 0.0167625844, -0.013308255, -0.00206805207, 0.02661651, 0.00514210155, -0.00444214512, 0.00113250467, -0.0182412788, -0.0164595731, -0.0337190963, 0.0102417814, 0.0130537255, -0.0259862468, 0.0302041639, 0.00977514405, 0.00237560831, -0.0147990705, -0.00265892386, 0.0239621326, -0.00965393893, 0.0178655442, 0.00732681295, 0.0127991969, -0.00755104097, -0.00122568058, -0.00512998085, -0.0132840145, 0.0162171628, 0.0109568881, 0.00445123576, -0.00389066478, -0.00267255958, 0.00990240835, 0.00385733368, -0.0175140519, -0.0175261721, 0.019768456, 0.0040815617, 0.0194169618, -0.00936304871, -0.00970242079, -0.0138536757, -0.000601477397, 0.017295884, 0.0210411027, -0.013647628, 0.00738741504, -0.000843128888, -0.00229682541, 0.011514429, 0.00714500574, 0.00610567722, 0.013477942, -0.0175625328, 0.0165928975, -0.0185927711, -0.0251862984, -0.0131143285, 0.00449668756, -0.00900549535, -0.0223258715, 0.0105932746, 0.0170777161, 0.00638747774, 0.0125325462, -0.00368158706, -0.0136597482, 0.0144596985, -0.00869642384, -0.000798434718, 0.00912669953, -0.00495423423, 0.00553298602, 0.00927820522, -0.00956909638, 0.0169322696, -0.00345432851, 0.0112659596, -0.0033331241, -0.00636323681, 0.00232258136, 0.00413913419, -0.000332176103, 0.0151020819, 0.0127022332, -0.00619355077, -0.00451183785, 0.000182469608, -0.0204593223, 0.0168231856, -0.0223258715, -0.0113689834, -0.00122795324, -0.0267619565, 0.0176958591, 0.00721166842, -0.0155141773, -0.0190169886, 0.00971454196, 0.00662988657, -0.000796919689, -0.0212956332, -0.0118174395, 0.0215380415, -0.0142536508, 0.00467546424, 0.0220834613, -0.0123325586, 0.0136355078, -0.0260832105, 0.000492772087, -0.00271649612, 0.0127022332, -0.00156808342, -0.00825402699, -0.0124477036, 0.00796313677, 0.0197320953, 0.0120234871, -0.00153247954, -0.0174049679, 0.0246893596, 0.0165807772, 0.00132415933, 0.0206774902, 0.031052595, 0.0148960343, 0.00425427826, -0.000841613801, -0.00916912127, 0.00224228343, -0.0136355078, -0.00135900558, -0.00754498085, -0.0232106633, -0.00629051402, -0.011229598, -0.00111356645, 0.0142900115, 0.00135749055, 0.0167262219, -0.0250650924, 0.00347856944, -0.00632081507, 0.00271346606, 0.0117992591, -0.0035270513, 0.0109811286, -0.00521482388, 0.00967212, -0.00659958553, -0.0143263731, 0.00696925959, 0.00531178759, -0.0132355327, -0.0152960094, 0.00644201972, -0.00311798602, 0.003411907, 0.00196351297, -0.00801767875, 0.020216912, 0.0227864478, 0.00729651144, 0.0043573021, 0.0157081038, 0.0148111917, -0.0151020819, -0.0208714176, -0.0105266115, -0.0223864727, 0.00293314923, 0.00460274145, -0.00827220827, 0.0236712415, 0.0208714176, -0.0259377658, 0.0337433368, 0.0158535503, 0.00225743395, 0.0121143907, 0.0108478041, 0.0110538518, 0.029258769, 0.00155596295, -0.00752074, 0.0247742031, -0.0278285556, -0.00295739016, -0.014605144, 0.013987001, 0.00473909639, 0.00978120416, 0.00902973581, 0.0130416052, -0.00509361969, 0.0141809275, -0.00753892073, -0.0019877539, 0.0049875658, 0.00496635493, -0.00812070258, 0.00203623576, 0.0118053192, -0.00681775389, -0.00356644276, 0.0175988954, -0.00732681295, -0.00262407772, 0.00136961101, 0.0182533991, -0.0198533, 0.00989028811, 0.0315374136, -0.0130052445, -0.00953879487, 0.00853885803, 0.00526633579, 0.0188715421, 0.00576933473, -0.0101932995, 0.0201078281, 0.0213925969, -0.0111083938, 0.00864794198, -0.00632081507, -0.0223864727, 0.00378764095, -0.00680563319, 0.00259529171, 0.0101811793, 0.00939940941, 0.0304708146, 0.0108841648, 0.0108235627, 0.00410277257, 0.0206532478, -0.00329070259, 0.00123931607, 0.0176594965, -0.00903579593, -0.00733287307, 0.0115810912, -0.00290284795, -0.00972666219, -0.0382521451, 0.0141930487, -0.0223379917, 0.013756712, 0.0338160582, 0.0141445668, 0.017914027, 0.00987210777, 0.00198320881, -0.0206411276, -0.00821160525, 0.0229924954, 0.00221046736, 0.00702986168, -0.0115507897, -0.011684115, -0.00892671198, 0.014605144, -0.011962885, -0.0183988456, 0.0039876285, -0.00477242749, 0.00615112903, 0.0135143027, 0.0139748799, -0.00730863214, -0.00319676893, -0.0107932622, -0.0128113171, 0.00435427204, -0.0121810539, -0.00366037618, -0.00419670623, -0.00781769119, -0.0383248664, -0.00507240882, -0.0214774385, 0.00723590935, -0.0114114052, 0.0122840777, -0.0146657461, 0.0185927711, 0.00677533215, 0.0113083813, 0.0235985182, 0.0116053317, 0.000395429728, -0.00939940941, -0.00317555829, -0.0411368124, 0.00307556451, 0.0162414052, 0.0288951565, -0.0324585699, -0.0184594467, -0.000993877, 0.000728363346, -0.0233318694, 0.00786011294, 0.00959939696, -0.00793889537, -0.0355614051, 0.00359068369, 0.00810858142, -0.00707834354, 0.0302526467, -0.0268589202, -0.0143384933, -0.00551783526, 0.0217562094, 0.0105932746, 0.00992059, -0.0117628975, -0.00475424714, -0.0209320188, -0.000363613537, -0.0258408021, -0.0259377658, 0.0117265368, -0.00309677538, 0.00347250933, -0.00572691299, -0.00126279949, -0.00652686274, -0.011120514, -0.0183867235, -0.0049299933, 0.00369673758, 0.00473000621, 0.011847741, 0.00322707021, -0.0296466239, -0.00710258447, -0.0156959835, -0.00335736503, -0.00818130467, -0.0279982425, -0.00331494329, -0.0123628601, 0.0160717182, -0.000702986144, -0.019659372, -0.0138779161, -0.00684805494, 0.0173080042, -0.00699956063, 0.00593296066, -0.0109993098, 0.0117689585, -0.0162898861, -0.00640565855, 0.0155626591, -0.00646626065, -0.00459365081, 0.0141566871, 0.0177079793, -0.000392778369, 0.00295587513, -0.00731469225, -0.000787071825, -0.0016089899, 0.000106811473, -0.00280588446, 0.0192593969, -0.0123992218, 0.0270286053, -0.00344523834, -0.0165201742, -0.0206774902, -0.0162535254, -0.00084918912, -0.0110417306, -0.00896913372, -0.0209926218, 0.00256044534, -0.0173201244, -0.00559661817, -0.00137642876, 0.0106235752, 0.0192351565, 0.00879944768, 0.0056208591, 0.00686017517, -0.0143021327, 0.0105387326, 0.00829644874, -0.00790859479, 0.033307, -0.00158777914, 0.0180715919, -0.00760558294, 0.00547541399, -0.00690865703, 0.00796919689, -0.00380885182, 0.0156959835, -0.00549965492, -0.0117144156, 0.0173928477, -0.00243469561, -0.000358689605, -0.0209562592, 0.0104720695, 0.00606931606, -0.0322646424, -0.0118174395, -0.009884228, -0.0214047171, 0.00545117306, 0.00990846846, 0.0119931865, -0.000534436142, 1.09723223e-05, -0.0103993472, -0.00859946, 0.00959333684, -0.0185806509, 0.014714228, 0.00196805829, -0.0397550799, 0.0121143907, 0.00524209533, 0.00937516894, 0.022350112, 0.0126295099, -0.0204472, 0.00467546424, -0.014992998, -0.00553601608, -0.023137942, -0.0177201, -0.00545420311, -0.0109811286, -0.0117507773, 0.025889283, 0.00560873887, 0.0150051182, -0.0204835627, 0.0127143534, 0.00200744974, -0.0166656207, -0.00102417811, 0.00709046377, 0.0112114176, -0.0174292084, -0.0182897616, 0.0235136747, -0.0262771379, -0.00148172514, 0.0137203503, 0.0127264736, -0.0187988188, 0.00772072747, 0.0140233617, 0.00448456686, 0.0158171896, -0.0219016559, 0.000443532772, 0.00447850674, -0.00892065186, -0.0129325213, -0.00508452905, 0.0269558839, -0.00671473, -0.012859799, -0.00257256581, 0.00506937876, -0.00592690054, -0.0186048932, -0.0181685556, -0.00771466736, 0.0217077285, 0.00468758447, 0.0129082808, -0.0365310386, 0.0213319939, -0.0147627098, -0.0146415047, 0.00846007466, -0.00551480521, 0.0122113544, 0.0107932622, 0.00489363214, 3.75213167e-05, 0.00349372, 0.0036421956, 0.0106478166, 0.0338403, -0.0062965746, -0.00122037798, -0.00635111658, -0.00496635493, 0.0142051689, 0.00214986503, 0.00769042643, 0.0179261472, -0.00698138, 0.00181958277, -0.00552086532, -0.00675109122, 0.0151748052, 0.0126295099, 0.0217683297, -0.0104720695, -0.00759952283, 0.0170413535, 0.00730863214, -0.00533905858, -0.001719589, -0.0266407523, -0.00950243324, 0.00679957308, -0.0179503877, -0.00872672442, 0.0134173399, 0.013477942, 0.000724575715, -0.000486333098, 0.00759952283, -0.00548753422, -0.0111083938, 0.0150778415, 0.0100296736, 0.0239984933, 0.014096085, -0.00358462334, 0.00947213266, -0.00176352565, 0.0138779161, -0.0141688073, -0.0253559835, -0.016568657, -0.0120598488, -0.00554207619, 0.00638141762, 0.00756316166, 0.00182867306, -0.00971454196, 0.00803585909, -0.0105387326, -0.00324828085, -0.00244681607, -0.0190775897, -0.0310768373, -0.023756085, 0.0123871015, -0.000371567585, -0.0119386446, 0.00523300469, -0.0022998557, 0.0108902249, 0.0266892333, 0.021174429, -6.17859e-05, 0.0114114052, -0.00745407725, 0.00735711399, 0.00716318656, 0.0151505638, -0.0133930985, 0.0030104171, -0.00522694457, -0.00604204508, 0.00570570258, -0.004942114, 0.0137445917, 0.00543905236, -0.0031482873, 0.0247499608, 0.00259983679, -0.00919336174, 0.00292405882, -0.0159989949, -0.00775708864, 0.0129325213, 0.0273922198, 0.0170292333, -0.00863582175, 0.0064359596, 0.0089630736, 0.00978120416, -0.0104841907, -0.00715712644, -0.029937515, -0.0239984933, 0.0285557825, -0.014096085, -0.0102902632, -0.0131264487, -0.0053905705, -0.00348765985]
|
31 Jul, 2021
|
Fabric.js ActiveSelection stroke Property
31 Jul, 2021
Fabric.js is a JavaScript library that is used to work with canvas. The canvas ActiveSelection is one of the classes of fabric.js that is used to create ActiveSelection instances. The canvas ActiveSelection means the ActiveSelection is movable and can be stretched according to requirement. In this article, we will be using stroke property to set the stroke color of the canvas ActiveSelection.
Approach: First import the fabric.js library. After importing the library, create a canvas block in the body tag which will contain the ActiveSelection. After this, initialize an instance of Canvas and ActiveSelection class provided by Fabric.JS and use the stroke property to set the stroke color of the canvas ActiveSelection.
Syntax:
fabric.ActiveSelection(ActiveSelection, {
stroke: string
});
Parameters: This function takes a single parameter as mentioned above and described below.
stroke: This parameter takes a string value.
Example: This example uses FabricJS to set the stroke property of the canvas ActiveSelection as shown in the below example.
HTML
<!DOCTYPE html>
<html>
<head>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;width: 400px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | ActiveSelection stroke Property
</b>
</div>
<div style="text-align: center;">
<canvas id="canvas" width="500" height="500"
style="border:1px solid green;">
</canvas>
</div>
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200327230544/g4gicon.png"
width="100" height="100"
id="my-image" style="display: none;">
<script>
var canvas = new fabric.Canvas("canvas");
// Initiate a Rect instance
var rectangle = new fabric.Rect({
width: 200,
height: 100,
stroke: 'red',
strokeWidth: 3
});
canvas.add(rectangle);
var itext = new fabric.IText('GeeksforGeeks', {
stroke: 'red',
strokeWidth: 3
});
canvas.add(itext);
canvas.centerObject(itext);
var activeSelect = new fabric
.ActiveSelection(canvas.getObjects(), {
stroke: 'red',
strokeWidth: 9
})
canvas.setActiveObject(activeSelect);
canvas.requestRenderAll();
canvas.centerObject(activeSelect);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property
|
https://www.geeksforgeeks.org/fabric-js-activeselection-stroke-property?ref=asr10
|
CSS
|
Fabric.js ActiveSelection stroke Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.000653818948, 0.0249735732, -0.0129155805, 0.0293945894, 0.0526382, 0.0367875956, 0.0140393181, 0.0068902811, -0.0082432013, -0.0349245593, -0.000591902528, 0.0304000396, 0.0353977121, -0.0420514159, 0.0199463293, -0.00229737652, -0.0198871847, -0.0302817505, -0.0396856554, -0.0205525551, 0.0175066367, 0.00418813759, -0.0517806113, -0.00656868564, -0.0155844558, 0.0442101732, 0.010424138, 0.0346584097, -0.0362848714, 0.0333276689, -0.0105054611, 0.0161758959, 0.00685701286, -0.0432934426, -0.0158801768, -0.0323222205, -0.00436187349, 0.0738117695, -0.00838366803, 0.0210996382, 0.0153922373, -0.00215136469, 0.0136918463, 0.0218685102, -0.0151186967, 0.0527860597, -0.00194990519, -0.00236945832, 0.00509008439, -0.0321447887, 0.00032598534, 0.026511319, 0.0119323106, 0.00392568577, 0.0401292332, 0.00620273175, 0.0164124724, 0.0451860502, -0.010468496, -0.0141428197, 0.0368467383, -0.081796214, -0.0077330838, -0.00672763493, 0.0111412592, 0.00133166509, -0.0063801636, -0.0116883414, -0.0342444032, 0.0294241626, -0.0216171481, 0.00881985575, 0.0258311611, 0.00119304622, -0.0219128691, 0.0306366161, 0.0243229885, 0.0172404889, -0.0414304025, 0.0742257759, 0.0103871729, -0.000216938512, -0.0487642661, 0.0239385515, -0.0114000142, -0.0199463293, 0.0275019817, -0.0356934294, 0.031109767, -0.00550039625, -0.00993619952, 0.0317307785, 0.0251953639, -0.0206117, -0.0263191, 0.0118435947, 0.0339486822, -0.0162793975, -0.0167821236, 0.0127972923, 0.0108159669, 0.0182755105, 0.00666849082, -0.0306957588, 0.0388280638, -0.0246187095, 0.0120727783, 0.0134183047, 0.017358778, -0.0292319432, 0.00526382, -0.0309619065, 0.0225190949, 0.0389759243, -0.0549743883, 0.0410755388, -0.0129821179, -0.0201533325, 0.0306661874, 0.0130264759, 0.00879028346, -0.00762218889, -0.0206560567, 0.0210700668, -0.0310801957, 0.0533479266, -0.0245743506, -0.000531372265, 0.016382901, 0.0190148111, -0.0305774715, 0.00511965621, 0.0106755, 0.0427907147, 0.044979047, 0.00651693437, -0.0240272675, 0.0183937978, -0.0324996524, 0.00184640312, -0.0238794088, -0.0470786579, 0.0110969013, 0.0548265278, 0.00613249792, 0.0087459255, 0.0112299751, -0.00073606614, 0.00409942167, 0.0209517777, -0.0430272929, -0.0151334824, -0.00214397162, 0.00955915637, 0.0255354419, -0.0394490771, -0.0217502229, 0.00927822199, 0.0284778569, 0.00634319894, 0.011747486, -0.0286257174, -0.0072895037, 0.0198132545, -0.0135365929, 0.0209961366, -0.0135809509, -0.00128268648, -0.0707362741, 0.0334163867, -0.0154365953, 0.0148007972, 0.0114148008, 0.0175362099, -0.0289805811, -0.0249735732, 0.0180093609, -0.0342148282, 0.00866460241, -0.0102393124, -0.0333868116, 0.0264373887, 0.00321965385, 0.0443284623, 0.000721742166, 0.0282412805, 0.0202716216, 0.0158506036, -0.0228887461, -0.020641271, 0.00251731835, 0.0140171386, 0.0663596168, 0.0156731717, 0.0305183269, 0.0210404936, -0.00823580846, -0.0332093798, 0.00667588413, -0.00718600163, 0.0225930251, -0.0327953734, -0.00569261424, -0.00707510626, -0.000988814514, -0.0262747426, -0.0269253273, -0.0588483252, 0.041873984, 0.0115035167, -0.00287772738, 0.0161315389, 0.0466646515, -0.0223712344, -0.00612140866, 0.0179650038, 0.00023750031, 0.0180241484, -0.00615837378, -0.0131817292, 0.00466498639, 0.0156879574, -0.0353977121, -0.00530817779, -0.085404, 0.00294056791, 0.00619903533, -0.0142537151, 0.00904164556, -0.0368763134, -0.0104832817, 0.00206080033, 0.0321152173, 0.014852548, 0.00387763139, -0.00332685257, -0.00550409267, 0.0098474836, 0.00258200709, 0.00432121195, -0.00482763257, -0.0176544972, -0.00249883579, 0.0095961215, 0.0514848903, 0.0238794088, -0.0196801815, 0.0153035214, 0.0266148206, 0.0170482714, -0.0208778474, -0.00892335735, 0.0232731812, 0.0106459279, -0.0187486615, -0.00599942403, 0.00341926515, -0.0375860408, 0.041873984, 0.0295128785, 0.0710319951, 0.0136696678, -0.0203307662, 0.028729219, -0.0213066414, -0.0400405191, 0.0323222205, -0.0491487, -0.0135513796, -0.00394047191, -0.00291654072, -0.0380296223, 0.00551148551, -0.0266000349, -0.0275019817, 0.0311689116, -0.0348062702, -0.00800662488, 0.0316420645, -0.0228000283, -0.0303113237, 0.0132186944, 0.0221198723, 0.0726288855, 0.00499027874, -0.0217206497, -0.00945565384, 0.0395969376, -0.0196062513, -0.0131891221, -0.0377339, -0.0277237706, 0.025579799, -0.0349541306, 0.0164716169, -0.00128730712, 0.0018796717, -0.028300425, -0.0131373713, -0.0147416536, -0.0174770653, -0.0357525758, -0.0225338805, -0.0165899042, 0.0209961366, 0.0263338853, 0.0111708315, -0.000637646706, 0.00847238395, -0.00139542983, 0.0230070334, -0.0166194774, -0.0160280354, -0.0333276689, -0.00175214233, -0.0146011859, 0.0495627113, 0.00906382501, -0.0197097529, -0.0117770582, -0.0271175448, -0.0132408729, 0.00602529943, 0.0285370015, 0.045274768, -0.0153922373, -0.0339782536, -0.0182311516, -0.00243969192, -0.0149042988, -0.0433230139, -0.00780701404, -0.0042731571, 0.0327066556, -0.000742072938, -0.025579799, -0.00842802599, -0.0137140257, -0.0191626698, 0.0151408752, 7.41610856e-05, -0.00510117365, -0.0133591611, -0.0197245385, 0.0194436051, -0.0372311771, 0.0196062513, 0.00692355, 0.0283299983, 0.0238498356, 0.00136678189, 0.0214249305, 0.000230338337, -0.0243082028, 0.0446537547, -0.00843542, 0.0308436193, -0.0297198817, -0.0366101637, 0.00177616964, 0.00563716656, 0.0142463222, 0.0282708537, 0.0136992391, 0.0517214686, -0.0343331173, -0.0188078061, 0.0184381567, 0.005851564, -0.00790312327, -2.34785693e-05, -0.0289805811, -0.0231548939, -0.0221198723, -0.042702, -0.00613249792, -0.0117992368, 0.00751868682, -0.0269401129, 0.0161611103, -0.00821362901, 0.0429681502, 0.00109878543, 0.0353385657, 0.0135292, 0.0390942134, -0.0245004203, -0.00980312563, -0.00697160419, 0.0142611079, -0.0415191203, -0.00168560527, 0.0460732095, -0.00243969192, 0.0188078061, -0.0235836878, 0.0189704522, -0.0377634726, 0.0150078014, -0.0465463623, -0.02587552, -0.0235689022, -0.0112077966, -0.0207891315, 0.0138175273, -0.0034747126, -0.0245004203, -0.000625633111, 0.0168708395, -0.0341852568, -0.0108751114, -0.00325477077, 0.0379113331, -0.00587374298, 0.0195914656, 0.0467237942, 0.0392716452, 0.0187043045, 0.00376488804, -0.0137953488, 0.0718008727, -0.00704183802, -0.02587552, 0.0230070334, -0.0171665587, -0.00350982952, -0.0239829104, -0.0104906745, 0.00349504338, -0.00702335546, -0.0934475884, -0.012767721, 0.00878289063, -0.0176988561, -0.0104315309, -0.00375564676, 0.0189260952, 0.00136123714, 0.0209074207, -0.00420662, 0.0101210242, -0.0181572214, 0.0106089627, -0.0278864168, -0.00252840784, 0.0281082075, -0.0417852663, -0.0256093722, 0.0243525598, 0.00825059414, -0.0170630571, -0.00695681805, -0.0258311611, -0.00228074216, -0.0147416536, -0.0450973324, -0.000583585352, -0.00309766945, -0.00282782456, 0.00539689418, -0.0315237753, 0.00256722118, -0.0133887334, -0.00557062961, 0.0339191109, -0.00675720721, -0.0059365835, 0.0115035167, -0.00266702683, 0.03217436, 0.00399961602, 0.00387023832, 0.0166490488, 0.0581090227, 0.0117400931, 0.0215284321, -0.0234358273, -0.0157175306, 0.0270288289, -0.0149856219, 0.0116070192, -0.0165307596, -0.00770351198, 0.0232436098, 0.0138766719, -0.0331206657, 0.0373790376, 0.000453745713, -0.0160280354, -0.0172552746, 0.0588778965, 0.0588778965, -0.0312280562, -0.00384436292, -0.0016893018, 7.32947228e-05, 0.00810273457, -0.0462802164, 0.0191774573, -0.0177727863, 0.0206708442, 0.0510708839, 0.0107937884, 0.0225338805, 0.0664779097, 0.00538580446, -0.0461027846, 0.00448755454, 0.0142389284, -0.0110525433, -0.0266887508, 0.00974398106, -0.0288918652, 0.00387393497, -0.00224562548, -0.00599203119, 0.0186303742, 0.0338303931, -0.0185712297, -0.0159245338, 0.0134848421, -0.0182459373, -0.0169891268, -0.0242490582, -0.00708249956, 0.0371720307, -0.0067646, -0.0123315332, -0.00789573, -0.0118879527, 0.00438405247, -0.00896032248, 0.0142093571, 0.0484094024, 0.0198132545, -0.00572588295, -0.0260233805, -0.0174622796, 0.015318308, -0.0157027431, -0.0197393242, 0.00706032, -0.0265852474, 0.000304499408, -0.02016812, 0.0177727863, -0.0166786201, -0.0041955309, -0.0394195057, 0.0112595474, -0.00670545595, 0.021705864, 0.0220607296, -0.0111486521, 0.0269253273, -0.014682509, -0.00907121785, -0.030725332, -0.0348654129, 0.00336566591, 0.0150373736, -0.0044986438, 0.0404840969, 0.0128120789, -0.00893814396, -0.0619829595, -0.021705864, -0.00170501193, -0.0516327508, 0.00234543113, 0.0059033148, -0.025579799, 0.0061288015, 0.023110535, 0.0221198723, -0.0170630571, 0.0385027714, -0.00606226455, 0.0121762799, 0.0117844511, -0.00974398106, -0.0406615324, 0.00999534316, 0.00870156754, -0.00637277076, 0.0315237753, -0.0289953686, -0.0169447679, -0.0437961668, -0.0278568454, 0.0407798178, 0.00363366236, 0.00657238206, 0.00674242107, -0.0232436098, 0.0456000566, 0.0249883588, -0.0427907147, 0.00307918689, -0.0153922373, 0.0256537292, 0.0388872102, 0.0119323106, 0.0205377694, -0.0146011859, -0.0370537452, -0.000448663021, 0.0319969282, -0.024042055, -0.00211255136, -0.0078218, 0.00687179854, 0.0137805622, -0.000765176082, -0.00132981688, 0.00100267644, 0.021351, 0.0480545349, 0.00179372798, -0.0291728, 0.00746693555, -0.018896522, 0.0470786579, -0.00758522376, 0.0154661676, 0.0108233606, -0.0144828977, -0.0211587828, 9.27013607e-05, -0.0169004109, -0.0136400955, -0.00141298817, -0.0036410552, 0.00986966211, -0.00270399172, 0.0107642161, 0.0159836784, 0.00985487644, -0.0360187218, 0.00954437, 0.0126494328, 0.02238602, 0.000360178, 0.0559502654, -0.00456887763, 0.0229183175, -0.029320661, 0.00827277359, 0.0208039172, 0.00802141149, -0.0351611339, 0.0133739468, -0.0213805716, 0.000507345, -0.00656868564, 0.00143609138, 0.0215580035, 0.0286109317, 0.00176045951, -0.00560389832, -0.00361333159, -0.0223120917, -0.00116347428, 0.00329173566, 0.001559, 0.0254762974, 0.0161758959, 0.00451343, 0.0264373887, 0.00181960349, -0.00982530415, -0.00978833903, -0.00365768955, 0.0048978664, 0.00649105897, -0.00286663789, -0.0391829312, 0.0340669714, 0.0128860092, 0.00294980919, -0.00477218488, -0.0401588082, 0.028596146, 0.00318268896, 0.0125311445, -0.0160723943, -0.022977462, 0.00178633502, -0.0160576086, -0.0159097482, 0.0236576181, 0.0163385421, 0.017831929, -0.00804359, 0.0183494408, 0.0219276547, -0.00999534316, -0.0271175448, 0.00126697635, -0.0229626745, 0.0159688927, -0.0286257174, -0.031494204, 0.0136770606, -0.0121171363, 0.0144533264, -0.0133000175, 0.0110007925, -0.0324405096, -0.0183346532, 0.0292763021, 0.0526382, 0.00395156164, 0.0354568549, 0.0138175273, 0.00201644236, 0.0096478723, -0.0142832864, 0.00670915237, 0.0136548812, 0.00708249956, 0.000809534104, 0.0114000142, -0.0401883796, 0.00399961602, 0.0310801957, 0.00985487644, -0.0288918652, 0.0169595554, -0.00295720226, 0.0355159976, -0.00612510508, 0.0283447839, 0.000757321, -0.0538802259, 0.0351019911, 0.00735973706, 0.013662274, -0.00380000495, -0.024944, 0.0037001993, -0.0293354467, -0.00028393761, 0.0139506012, -0.00659825746, 0.0096478723, -0.00975137483, -0.00457257405, -0.0096996231, 0.00163200602, -0.00802880432, -0.0354568549, 0.0721557364, -0.0143793961, 0.0175362099, -0.00642452203, -0.0117179137, 0.0348654129, 0.00981051847, 0.0433230139, -0.0108159669, 0.0305478983, -0.0381479077, 0.0485276878, 0.024944, 0.0144976843, -0.0170630571, -0.0228296015, 0.0199906863, -0.027191475, 0.01119301, 0.0221790168, 0.0284039266, -0.00489047309, -0.00253025605, 0.0179797895, 0.0171074141, -0.0333276689, -0.00762958173, -0.0171961319, -0.0128268646, 0.0340965427, 0.00702335546, -0.0073153791, 0.00724514527, 0.00124202494, 0.00830973871, 0.00111079914, 0.0190739539, 0.0269992556, 0.0228148159, 0.0163089707, -0.00208852417, 0.0297494549, -0.000834023464, -0.0308731906, -0.0338303931, -0.00704553444, -0.0115404818, -0.0266739633, -0.0524607673, -0.0400109477, 0.0135809509, -0.0157914609, 0.0591440462, -0.0352498516, -0.0284482855, -0.00875331834, -0.00929300766, -0.0130412616, -0.0129895108, 0.00647257641, -0.0347767, 0.0167377647, -0.00546343112, 0.0104463166, 0.00397743704, 0.00663152616, -0.0290840846, 0.0265408903, -0.0146085788, 0.00994359236, 0.019325316, -0.0292615164, -0.0417261235, 0.0406319574, 0.00828755926, 0.0153922373, 0.0033065218, 0.0286405031, -0.0153330937, -0.0104463166, -0.0329432338, 0.0488825515, -0.00500136847, 0.0180389341, 0.0026429994, 0.0183642264, 0.0298973154, 0.0233618971, 0.00262636528, 0.0169891268, -0.0106163556, -0.00230846601, 0.0276054833, 0.0125237517, -0.0212031398, 0.032765802, 0.0247222111, -0.0109638274, 0.0165603328, 0.000297799503, 0.014083676, 0.0161611103, 0.00635059178, 0.0286257174, 0.0162054691, 0.00560389832, -0.0179058593, -0.0448903292, -0.0232288241, -0.0152739491, 0.0179354325, 0.00911557581, 0.0131225847, -0.0106681073, -0.00563716656, 0.00896032248, -0.0350428447, 0.00700856932, -0.0223564487, -0.00819884334, 0.00990662724, -0.00240272679, 0.0136031304, -0.0114961239, -0.0387097783, -0.0105719976, -0.0262747426, -0.0213805716, 0.0278124865, -0.0168116949, -0.02791599, -0.0146899018, -0.0126716113, -0.00023750031, -0.00287403096, -0.00950740557, 0.0099509852, -0.0284482855, -0.0216467213, -0.0112447618, 0.0357525758, -0.04808411, 0.0269992556, 0.0381774791, 0.00418074476, -0.000250438054, -0.0135218073, 0.00836888235, 0.00791790895, 0.00811012741, 0.00032598534, -0.010254099, 0.0148895131, -0.0115035167, -0.0127825066, 0.0119988481, 0.00495701, 0.0130930133, 0.0238941945, -0.000464604207, 0.00462062843, -0.0075926166, 0.0355455726, 0.0308436193, -0.021572791, 0.0111708315, 0.00855370704, 0.00534514291, -0.0212327112, -0.00677199289, 0.0113926213, 0.0248848572, -0.00385175599, 0.0136770606, -0.0146455439, 0.00234727934, 0.0160280354, 0.000943994382, 0.00924125686, 0.0416078344, 0.0310210511, 0.00890857168, -0.0182755105, -0.0230218191, -0.00938911736, 0.0206264853, -0.0306070428, -0.00591440452, 0.0212622844, 0.0257276595, 0.00119489455, -0.0345696956, 0.00205340725, -0.047108233, -0.00426946068, -0.00134737522, -0.000364105537, 0.0128342574, 0.0130116902, 0.0297790263, 0.0320265, -0.0361665823, -0.00409202836, 0.00314572384, -0.0180093609, -0.0135661652, 0.0224451646, 0.0133443754, 0.0126050748, -0.0155548835, -0.0168412663, 0.0143572167, 0.0260233805, -0.00774047663, -0.0122649958, -0.00408463553, -0.000584047462, 0.00373346778, -0.00818405673, -0.0023916373, -0.00192957441, 0.023110535, 0.00301080151, -0.00240642321, -0.00930040143, -0.00805098284, -0.0089972876, -0.00207928289, 0.00317159947, 0.00168375706, 0.00212548906, 0.0171813443, 0.0203751232, 0.0215580035, 0.0182459373, -0.0178615022, -0.0296311658, 0.0417852663, 0.0286257174, -0.00551887881, -0.0256389435, 0.00265224068, -0.0369058847, 0.00157193781, 0.0357230045, 0.0170039125, -0.0328545161, -0.00453191251, 0.000654281, 0.0117918439, -0.0197541118, 0.0295720231, -0.00223268778, 0.05251991, -0.0052083726, 0.00924125686, -0.00437296275, 0.00277422532, -0.0236576181, 0.0240272675, 0.014726867, 0.00457627047, 0.012472, 0.0151852332, -0.00587004656, 0.0039700442, -0.00412529707, 0.00258755195, 0.017447494, 0.000438035582, 0.0293354467, -0.0278568454, -0.00608814, -0.00636537792, 0.0187930204, 0.0070307483, 0.004214013, -0.00270214351, 0.00491265208, 0.00610662252, -0.00318823359, -0.0165899042, 0.00552627165, -0.0155548835, -0.0214397162, -0.0345696956, -0.012893402, -0.0171074141, 0.0130930133, 0.00564825628, 0.00218648138, -0.0125681097, -0.0172700603, -0.00270214351, -0.013107799, -0.00547082396, -0.0117400931, -0.0196062513, 0.00259124837, 0.010512854, 0.0130856195, -0.00519358646, -0.00791051611, -0.0021402752, 0.00146473921, -0.0122723896, 0.0164716169, 0.0100175226, -0.0159541052, -0.000380739802, -0.013706632, -0.0287883636, -0.0148229767, 0.0351611339, 0.00438035559, 0.0066056503, 0.0163976867, 0.0167081933, 0.0150965173, 0.00835409667, 0.00478697103, -0.0178762879, 0.00456887763, -0.00435817661, -0.0177579988, -0.000916732708, -0.018896522, -0.0162941851, 0.0318490677, 0.00187689927, 0.0228887461, -0.0130412616, -0.000471073086, -0.0123389261, -0.00898250192, -0.017151773, -0.0120284203, -0.00670545595, -0.00345992669, 0.0438553095, -0.0108381463, -0.0105498191, -0.0127381487, -0.0197836831, -0.041578263, 0.0802584663, 0.0123758912, -0.0132852308, -0.0134552699, -0.0175953526, -0.0286552906, -0.0171074141, 0.0176249258, 0.0125902882, -0.0288179349, 0.0300451741, 0.0191330984, 0.0270879716, 0.0332685262, 0.0129673323, 0.00526751671, 0.022977462, 0.00410681451, 0.012213245, -0.0404545255, -0.0364031605, 0.024810927, -0.0232731812, -0.0253284369, -0.000844188849, -0.01812765, -0.00155160704, 0.00076009339, 0.0190591682, 0.010254099, 0.0255502276, 0.00434339093, 0.0383253396, 0.0147638321, 0.0140319243, 0.0179058593, -0.00153866934, -0.00609922968, 0.0165751185, 0.00852413569, -0.00746323913, 0.0137288114, -0.0140393181, -0.005659346, -0.00787355099, 0.00595876249, -0.000974028488, -0.00243784371, -0.018467728, 0.0261268821, -0.0218241531, -0.0004463527, -0.0290397257, -0.0107050724, 0.0224599503, 0.0182015803, -0.00953697693, -0.0154513819, 0.0100618806, -0.0576654449, -0.00785137154, -0.00178910734, -0.0179797895, -0.0177727863, 0.0366101637, -0.00300710509, -0.0126494328, 0.00839845464, -0.00850934908, 0.0256241579, 0.00721557345, 0.0113408705, 0.0328840874, -0.0138249202, -0.0252692923, -0.00551148551, 0.000613157405, -0.00183901016, 0.0191478841, -0.010512854, 0.0397743694, 0.0119692758, -0.0160132498, 0.0269992556, -0.011318692, 0.00161629589, -0.0109194694, -0.0268366095, -0.00255428348, 0.0242342725, -0.0238202643, -6.48620698e-05, -0.0328545161, 0.0188669506, -0.00342850643, -0.0238941945, 0.0113926213, 0.0095000118, 0.00183069299, -0.0156436, -0.0228739586, 0.0281525645, 0.0285222158, 0.0221642312, -0.031109767, -0.0180241484, -8.39221684e-05, 0.000830326928, 0.0304000396, -0.000419784104, -0.00244523655, 0.00961090717, -0.0249883588, 0.0049237418, 0.00232879678, 0.0228443872, 0.0183346532, -0.00225671497, -0.00088254, -0.0119840624, -5.36859261e-05, 0.00871635322, 0.0111560458, 0.0125089651, -0.0104758888, -0.0114148008, -0.0075075971, -0.0143793961, 0.0211735684, 0.0157914609, -0.00112650928, 0.00762218889, -0.00448385812, 0.00955915637, -0.0099509852, 0.00393677549, -0.00035694355, 0.0143498238, 0.0201385468, 0.00558911217, -0.00329728052, 0.00715273293, -0.00619533891, -0.0136696678, 0.0450677611, 0.0128194718, -0.0236724038, -0.00868678186, 0.00294056791, 0.00453191251, -0.00191848492, -0.0379409045, 0.00695312163, 0.013832313, 0.00890857168, 0.00778483506, 0.0310210511, -0.0270731859, -0.0110303648, -0.00561129116, 0.0281821378, 0.00307364203, 0.0215432178, -0.0159541052, -0.00276313582, 0.00380739779, 0.0148081901, 0.00501615414, 0.0262008123, 0.00751868682, 0.0082949521, -0.00904164556, 0.000588668045, -0.0401883796, 0.00554105779, -0.00207743468, 0.030725332, -0.0106607145, 0.0177284274, -0.024382133, 0.00946304761, -0.00283891405, -0.0179945752, 0.0166046899, -0.0344514064, 0.000173735636, -0.00730059296, 0.020936992, 0.0235393289, 0.00289805816, -0.0287735779, 0.0223712344, -0.00895293, 0.00785876531, 0.00570740039, 0.0065538995, -0.0151334824, -0.0491191298, -0.00987705588, 0.00991402, -0.00296274689, 0.0257424451, -0.000473614433, 0.0113039054, -0.0124941794, 0.0152000198, -0.0117179137, -0.00876810495, 2.30598234e-05, -0.00210515829, 0.0114739444, -0.00921168458, -0.0159097482, 0.0288918652, -0.0141797848, -0.00373716443, 0.00928561483, -0.0164864026, 0.00180019683, 0.00235836883, 0.00738561247, 0.00998055749, -0.00431751506, 0.016382901, 0.00887899939, -0.00627296511, 0.00246926397, 0.00887899939, -0.00691246, 0.0251362193, -0.0148377623, 0.0107642161, 0.0182163659, 0.000780424161, 1.9031213e-05, 0.000275389466, -0.0066056503, -0.00715642935, -0.00573327579, -0.0099509852, -0.0019036989, 0.0156140281, 0.00215875753, 0.0319377854, 0.0167673361, -0.000140467106, 0.02127707, -0.00230292114, -0.00943347532, 0.0120284203, 0.0184973, 0.00380739779, 0.0264669601, -0.00826538, 0.00918211322, 0.0162350405, 0.00863503, -0.0204342678, -0.00604378199, -0.0140541038, 0.00666109798, 0.00115977775, -0.00254873862, -0.0368763134, -0.0323517919, 0.00523794442, -0.0138027417, -0.0160132498, -0.00331391487, -0.0089455368, -0.0214840751, 0.0151852332, 0.0198132545, 0.000221559138, 0.00281119044, -0.00568891782, 0.0148599409, 0.00528969569, -0.0296311658, -0.0065280241, -0.0121541014, 0.00907861069, 0.0315237753, -0.00153682102, -0.00605487172, 0.0247665681, 0.000198802547, 0.0176988561, 0.0137435971, 0.00983269699, 0.00816927105, -0.00961090717, 0.0155696701, -0.0138471, -0.00896771625, 0.00747432886, -0.0108233606, -0.00768133299, -0.0122723896, 0.0104537103, 0.0109268622, 0.00423988886, -0.00865721, -0.00461693201, -0.0240716264, -0.0120284203, 0.0044727684, -0.0102910642, 0.0072895037, -0.0274428371, -0.000673225557, -0.019872399, -0.0147490464, -0.0266887508, -0.00815448537, -0.0198280402, 0.0152887357, 0.0205377694, 0.0178023577, -0.0185120851, -0.0176397115, -0.0104019586, -0.0317899249, 0.00536732189, 0.0208482761, -0.00789573, 0.0143498238, -0.00981791131, 0.0167821236, -0.0201533325, 0.00577763375, -0.0112669403, -0.027960347, 0.021705864, 0.00600681687, 0.0137288114, 0.00991402, 0.00201459392, -0.00233988627, -0.0113112982, -0.0111264735, 0.0359595791, -0.00668697339, -0.00717121549, 0.000549854769, -0.00581459887, -0.00403658114, -0.0212622844, -0.0208778474, 0.0118214162, -0.00181405875, -0.0208630618, -0.00401809858, 0.00599203119, -0.00671654567, 0.0345401205, -0.0157914609, 0.0179354325, 0.0167081933, 0.0196358226, 0.00747432886, -0.00115885364, 0.00544125214, 0.00811752, -0.0107937884, -0.0200941898, -0.000698176969, 0.00476848846, 0.0197097529, 0.0320560709, -0.0122058522, 0.00215136469, 0.000104541723, 0.0133887334, -0.00429163966, 0.0209074207, 0.0301486775, 0.00862763729, 0.00926343631, 0.00629144767, -0.0236280467, -0.011917525, 0.00270768837, 0.00973658822, -0.0192366, 0.0059107081, 0.0074817217, -0.0126716113, 0.0182459373, 0.0191330984, 0.00472043408, -0.0166046899, 0.00343035464, 0.0281525645, -0.0168264806, 0.0135587724, -0.00978833903, 0.0175953526, 0.00942608248, 0.00510487054, 0.0186155885, 0.0132408729, -0.00635059178, 0.00623969687, 0.039626509, -0.0064134323, 0.00636537792, 0.000522131042, -0.000979573233, 0.000181937241, -0.0114074079, 0.00831713155, -0.0439144522, -0.0177284274, 0.0192366, 0.0181867946, 0.0116144121, 0.0139875663, 0.00166157796, -0.00479066744, -0.000346778164, -0.011022971, -0.0249735732, -0.00410681451, -0.0041955309, -0.0105646048, 0.00858327933, -0.0173735637, -0.014556828, 0.0139136361, 0.010342815, -0.00341741694, -0.0112299751, -0.0187782347, -0.000951849448, 0.00312908972, -0.00509747723, 0.0182163659, 0.00367802032, -0.00647627283, -0.0101653831, -0.0200794041, -0.00913775526, -0.00293502328, -0.00104333786, -0.00470195152, 0.00306624896, 0.0187338758, 0.00740409503, 0.0036466, 0.0073153791, -0.0117253065, 0.00122908712, 0.00532666035, -0.000139080919, 0.0230513923, -0.0133813405, -0.000511965656, 0.00903425273, -0.00971441, -0.00307733868, -0.0173292048, 0.00118380506, 0.00129285187, 0.0175953526, 0.000849733595, 0.00580720603, -0.00503094029, 0.00615098048, 0.0199019704, 0.00747432886, -0.0247665681, 0.00526012341, 0.00667958055, 0.00862024445, -0.00073606614, -0.00955915637, 0.00451343, -0.0125607168, 0.0100397021, 0.00955176353, -0.00595876249, -0.00913775526, 0.0106311422, -0.0117770582, 0.055329252, 0.00403658114, 0.0103871729, 0.00511226337, 0.0044727684, 0.0155844558, 0.0151852332, 0.0172404889, 0.0125755025, 0.0222381614, 0.00285000354, 0.00877549779, 0.0181572214, -0.0163681135, -0.0109268622, 0.00361887622, 0.0172257032, -0.00951479841, -0.0063616815, 0.00476848846, 0.00124387315, -0.0217206497, 0.0199019704, 0.014682509, 0.0285370015, 0.0108677186, 0.00259494502, -0.0165899042, 0.0191626698, 0.0245743506, -0.00067646004, -9.96323e-05, -0.017151773, 0.00104426208, 0.00961090717, 0.013322196, 0.00132889277, 0.00666849082, -0.00703814114, 0.00755934836, 0.00943347532, -0.00353570492, -0.000596061058, 0.0212622844, -0.00227519753, -0.0116735557, 0.0150004085, -0.0107198581, -0.0123684984, -0.00573327579, 0.0039700442, 0.00348025747, -0.0030939728, 0.0175214224, 0.0224895235, -0.00136031304, 0.0218685102, -0.0145198628, 0.0059033148, 0.00332500436, 0.0208778474, 0.0152000198, -0.00491634849, 0.00048609011, -0.0203159787, 0.0142611079, -0.000509655336, -0.0144163612, -0.000722666271, 0.0170039125, 0.00455039507, 0.00296274689, 0.00973658822, -0.00945565384, 0.0075408658, 0.0016181441, -0.00820623618, 0.00184917555, 0.0153478794, -0.0100618806, -0.00121152878, -0.00645039743, 0.00331761129, 0.00261527579, -0.0208630618, -0.0157618877, -0.00792530179, 0.00997316465, -0.0121614942, 0.00462062843, 0.0277977, 0.00215136469, -0.00350982952, -0.0236280467, -0.0228443872, -0.0143572167, 0.000763789867, -0.00184178248, -0.0133369816, 0.0147860115, 0.00260048965, -0.0127011836, 0.0108307535, -0.00250992551, 0.0105867842, 0.018260723, -0.00050364848, -0.00603269273, -0.0406615324, -0.0318194963, -0.026851397, -0.0208039172, 0.0135144144, -0.000966635474, -0.0282117091, -0.0068385303, 0.0095961215, 0.0113260848, 0.00124294905, -0.00216984726, -0.0145198628, -0.0270584, 0.021572791, -0.00221420522, 0.0209074207, 0.0164124724, -0.0351019911, -0.00628035842, -0.0143128587, 0.0156879574, 0.00732646836, 0.0171369873, -0.001308562, -0.0220903, 0.00241011987, -0.00808055513, 0.00963308662, -0.0112817269, -0.00119951519, 0.0318194963, 0.0188225918, 0.0187486615, -0.0360778682, -0.0228887461, 0.0105276396, 0.00142500177, 0.00320486794, 0.00947044, -0.0063284128, -0.00105535157, 0.0280194916, -0.0118362019, 0.016856052, 0.0128490441, -0.0114074079, 0.00964047946, -0.00331576308, -0.0156436, -0.00202568364, 0.0127529344, -0.0204490535, -0.00826538, -0.00653911335, 0.00507529825, 0.0222381614, -0.0333276689, 0.00996577181, 0.0160723943, -0.0202124771, -0.000852043915, -0.0232436098, 0.00900468, 0.00448385812, -0.000980497338, -0.0246630665, 0.00407354627, 0.0152887357, 0.0103576006, 0.0232436098, 0.00443580328, 0.0040476704, 0.00735234423, 0.00389241753, -0.00905643217, -0.0168708395, 0.00589222554, 0.0108307535, -0.0347767, -0.00168560527, 0.000648274203, -0.0121910665, 0.0272654053, -0.0166786201, -0.0249292143, 0.00590701168, 0.00598463789, 0.0070566237, -0.0145790074, -0.0109194694, 0.0172700603, -0.0196210369, 0.0100101298, -0.0144976843, -0.0212918557, -0.0017493699, 0.0118066296, -0.000589592208, 0.00429163966, 0.0104980683, 0.0183790121, -0.0141354268, -0.0259790216, 0.0182459373, 0.0170186982, -0.00471304124, 0.0342444032, 0.00530817779, -0.022341663, -0.00583677785, -0.00369280623, 0.00101006939, 0.0107124653, -0.00483132899, -0.019532321, 0.00324922591, 0.00253580092, 0.000585895672, -0.0034617749, 0.0175805669, -0.0323517919, -0.000912112067, -0.0114591587, 0.0190739539, 0.0142463222, -0.00673133181, 0.0219424404, 0.001808514, 0.000303575303, 0.00343405106, -0.0174179208, -0.00712685753, -0.00331576308, -0.0255058687, -0.00205155904, -0.0167821236, -0.00330282515, 0.0237611197, -0.00147120806, -0.0222381614, -1.1363858e-05, -0.00600312045, 0.0071416432, 0.00289066508, 0.00086174719, -0.0101727759, 0.0123611055, 0.000549392716, -0.00265039247, -0.00269659888, -0.00158117909, 0.0104167452, 0.00185749261, -0.0208039172, -0.0165455472, 0.0182311516, 0.00491634849, -0.00521576544, 0.013152157, -0.0270879716, -0.00233064499, -0.0109342551, 0.00531926751, 0.0107568232, -0.00242120936, -0.0220163707, -0.000929208414, -0.0166194774, -0.000926436041, 0.0155844558, 0.0221642312, -0.00146935985, -0.0165751185, 0.00461323559, 0.0153035214, 0.02238602, 0.0150521593, 0.00811752, 0.0136992391, 0.00258200709, -0.00218832958, -0.00684961956, 0.00433969451, -0.0157766733, 0.0129599385, -0.00522685517, 0.0280490629, -0.0127751138, 0.0113260848, 0.00338784489, 0.000961090729, 0.00320671615, -0.00349504338, 0.006236, 0.0095961215, -0.00818405673, 0.00498658232, 0.0336233899, 0.00265408889, 0.011917525, 0.0322630778, -0.00802880432, -0.00480175717, 0.0295572355, 0.0190739539, 0.0045245192, 0.00698639033, -0.0196210369, -0.0126642184, -0.00811752, 0.00137140253, 0.000971256115, 0.00515292492, 0.00802880432, 0.0180389341, -0.0118509876, 0.00151279382, -0.0169447679, 0.00426576426, 0.011747486, -0.0028555484, -0.0116291977, 0.0182311516, 0.00191848492, -0.00559650501, -0.00568891782, 0.00997316465, -0.0138397068, 0.00543016242, 0.00438035559, 0.00802880432, -0.00536362547, -0.0114591587, 0.00645409385, -0.00756304478, 0.00320301973, -0.012427642, -0.0285370015, -0.0182015803, 0.0157618877, -0.0374381803, 0.0037260747, 0.00769611867, 0.000408925611, -0.00708249956, 0.0106681073, 0.0147712249, 0.00813230593, 0.0150891244, -0.00682004774, -0.000925049826, -0.00474630948, 0.0280638486, 0.00100175221, -0.00303113228, 0.0072821104, 0.0196062513, -0.00265963376, 0.00650214823, 0.0128638297, 0.000564640795, 0.00496070692, -0.00307179382, -0.00535992905, -0.033445958, -0.000394601666, 0.0116144121, 0.00235836883, 0.0296459533, 0.00840584747, -0.00591810094, 0.020301193, -0.0121836737, 0.00327140489, 0.00259864144, 0.00324922591, 0.0159245338, -0.00284815533, 0.00161722, 0.0030939728, 0.00691246, -0.0165307596, -0.0159984641, -0.00791790895, -0.026851397, -0.00972919539, -0.0211587828, -0.00427685352, -0.00401440216, -0.00104611029, -0.00304407, -0.0137731694, -0.00954437, 0.0159688927, 0.0144828977, 0.0135587724, 0.00709358882, 0.013322196, 0.00496070692, -0.0141354268, 0.00999534316, 0.00801401772, -0.0141649991, -0.00747802528, 0.00700117648, 0.0294537339, -0.00755565194, -0.0118583813, 0.00907861069, -0.00627666153, -0.00644300459, -0.00435448, 0.00274280505, -3.15646685e-05, 0.00462062843, 0.0101432037, -0.00389611395, -0.00226595625, 0.0145642208, 0.0118583813, 0.0131595498, -0.0158062465, 0.0126863979, 0.00219202624, 0.000114938135, -0.00131503085, -0.0112595474, 0.0129155805, -0.0173439905, -0.00566673884, -0.0228591729, 0.003713137, 0.00223268778, 0.00350613287, 0.0509821661, 0.00859806594, 0.0179058593, 0.0118657742, 0.0308436193, 0.0155696701, 0.00836148951, -0.000524441362, -0.00270768837, -0.0112225823, 0.0106163556, -0.0116365906, -0.0081914505, -0.0163681135, 0.00717860833, -0.0123537127, 0.00274465326, 0.0115256961, 0.0110525433, -0.0115700541, -0.0133369816, -0.0215432178, 0.0139727807, 0.00129285187, -0.0025321045, -0.00401440216, -0.00173920451, 0.00766654685, 0.0305183269, 0.00355603569, -0.000882077962, -0.000905643159, 0.00378152239, 0.0165011883, -0.00732277194, -0.00768872583, -0.0205081981, -0.0115774469, -0.00805837568, 0.0255058687, -0.0110303648, 0.00281858328, -0.00314942049, 0.0376156121, -0.0100175226, -0.016722979, 0.0131595498, -0.015747102, 0.011747486, 0.0161315389, 0.0059107081, -0.0204194821, 0.00890117884, 0.0114813372, 0.00374455727, 0.00813230593, 0.0057110968, -0.0144976843, 0.0100544877, -0.0110007925, 0.00930040143, -0.0207004156, -0.000195799134, -0.00972180255, 0.00989184156, -0.019961115, 0.00478697103, -0.00327510154, 0.021351, 0.0135513796, 0.0190000236, -0.000494407257, 0.0110303648, -0.0247074254, 0.0123537127, 0.00376303983, 0.0192218143, 0.0104315309, -0.0319082104, 0.0137214186, 0.0059107081, -0.0178615022, -0.00779962074, -0.00608814, -0.0126716113, 0.00297753303, -0.00741148833, -0.0172109175, 0.00687919185, 0.013152157, 0.00651323795, 0.0121467086, -0.017491851, -0.00887899939, 0.0215432178, 0.0214101449, -0.013706632, 0.0284926444, 0.0247961413, -0.0163533278, -0.0145346494, -0.0121023506, 0.0176692829, -0.00471673766, -0.00967744458, -0.0320856459, 0.0283743553, 0.00516031776, 0.00910079, -0.0298381709, 0.00389981037, 0.0320560709, 0.00831713155, -0.0159393195, -0.00287772738, 0.010808574, -0.0249587875, 0.0121984594, 0.00878289063, -0.00696051493, -0.00551148551, 0.0129007949, -0.0111782243, 0.0037704329, -0.00496809976, 0.0068644057, 0.0166046899, 0.0204490535, -0.00692355, 0.00230846601, 0.0426724292, -0.00246926397, 0.00026637924, -0.0303408951, -0.0172552746, 0.00334718334, 0.023406256, -0.00235097576, 0.000980497338, -0.012043206, -0.0106089627, -0.00438035559, 0.0113482634, 0.0104389237, 0.00708619598, 0.00717491191, -0.0132630523, -0.00895293, 0.0111486521, 0.0110081853, 0.0130264759, -0.00586265326, -0.00289990637, -0.00314387563, 0.0176101401, -0.00270768837, 0.014172392, -0.0152000198, 0.0246630665, 0.0154957399, 0.0315237753, 0.00938911736, -0.0159393195, 0.0124202492, -0.00541907316, -0.000677384145, -0.0226965267, 0.000243045055, -0.0116070192, -0.00183901016, 0.00850195624, -0.0284926444, -0.00513444236, -0.0131743364, 0.00416226219, 0.0138027417, 0.00822102185, -0.0087976763, -0.00791790895, 0.00927822199, 0.0100544877, 0.0115183024, 0.00757043762, -0.020641271, 0.00599203119, 0.0141206402, -0.00296089868, 0.0234654, 0.0241455566, -0.00123093545, 0.0113926213, -0.00410681451, 0.0049754926, -0.00133628573, -0.00183346542, 0.00461323559, 0.00650954153, 0.0171074141, -0.00886421371, -0.00679786876, 0.0129525457, 0.0322335027, 0.0270584, -0.0208778474, 0.000771644933, 0.00630993024, 0.00480545359, -0.00835409667, 0.0128712226, -0.00164217141, 0.0217502229, -0.0018796717, -0.01451247, 0.00996577181, -0.0102097411, 0.00236206525, 0.00262451707, 0.0012364802, -0.00856110081, 0.0144755049, 0.0215284321, -0.000215090258, 0.0179797895, 0.010468496, 0.00577763375, 0.000470842031, -0.0137805622, -0.021661507, -0.01008406, 0.0032362882, 0.00374640548, -0.0133074103, -0.00118472916, -0.00793269463, 0.000648274203, -0.0119027393, 0.0306661874, -0.00626557227, 0.0283299983, -0.0017844867, 0.0162646119, -2.26410793e-05, -0.0157914609, 0.0155105256, -0.0174770653, 0.0199759, -0.0114074079, -0.00832452439, 0.0122649958, 0.00271508121, 0.0119766686, 0.00321595743, -0.0117548788, -0.00249513937, 0.00611401582, 0.0139284227, -0.0138840647, -0.00191848492, -0.00517140748, -0.00572218653, -0.0019979598, -0.00811012741, 0.0109342551, 0.00267441967, -0.003118, 0.0151556619, 0.00363181392, -0.015318308, -0.0193992462, 0.0118953465, 0.00551518239, -0.0212327112, -0.00645409385, 0.00408093911, -0.00201644236, 0.0183642264, 0.0252397209, 0.0275906976, -0.00664631184, 0.00307549024, 0.00541537674, 0.0110081853, -0.00380739779, 0.000211855819, -0.00528599881, 0.0130190831, 0.000198687019, -0.0207891315, 0.00798444636, -0.00374086085, -0.00832452439, -0.0163681135, -0.0105793914, -0.000201228366, 0.0087976763, -0.00574806193, 0.0065280241, 0.0194436051, -0.0037833706, -0.00157748256, 0.0215432178, 0.0297790263, -0.0130486544, -2.78537264e-05, -0.00927082915, -0.0152148055, -0.00533405365, 0.0179058593, -0.016382901, 0.0107937884, -0.0183346532, -0.0172552746, -0.00114961236, 0.0067646, -0.00859806594, -0.00289436174, 0.0146159716, 0.0118362019, -0.00870896, -0.0200941898, 0.0191330984, 0.0107272509, 0.00407354627, 0.00631362665, 0.00476109562, 0.016856052, 0.00368910981, 3.82645812e-05, 0.0032362882, 0.0109342551, 0.00351722236, -0.0311689116, 0.0145494351, 0.0148895131, 0.000338692073, -0.00988444872, 0.0229035318, -0.0234210417, -0.0121910665, -0.00467607612, 0.0142019633, 0.00304407, 0.0193548892, -0.00721927, -0.000606226444, -0.0132556595, 0.00339708617, -0.00592919067, 0.0132039078, 0.0175953526, -0.0146085788, -0.00417335145, -0.0106015699, -0.00513074594, -0.0128638297, -0.00511965621, 0.00859067217, -0.0162202548, 0.000537379121, -0.00499397516, 0.0203159787, -0.000724052486, -0.0169004109, 0.000484703924, 0.0233766828, -0.00308842817, 0.0152739491, 0.0116070192, 0.0129451528, -0.00351907057, 0.00839845464, 0.0131373713, 0.00103317248, -0.000664446387, 0.00108769594, 0.00169854308, -0.00525642699, -0.00320486794, -0.00435448, 0.0220163707, -0.00184547901, 0.00545603829, -0.00431751506, 0.00172257028, 0.0132482657, 0.0056002019, -0.0125163589, -0.00910079, 0.0388872102, 0.0223268773, 0.00637646718, -0.00971441, 0.00489047309, -0.0182015803, 0.00556693319, -0.00151279382, 0.014896906, 0.00544125214, 0.00425837142, 0.0102097411, -0.01608718, 0.0152148055, 0.00720448373, -0.0209074207, 0.008893786, -0.00684222672, 0.00474630948, -0.00810273457, -0.000959242461, -0.018556444, 0.0110821156, 0.00621012459, -0.00823580846, -0.0203603376, 0.0145937931, -0.0128416503, -0.00705292728, 0.0178615022, -0.000427177118, 0.00110525428, -0.00142038125, 0.010128418, -0.00329543231, 0.0189408809, 0.00745954271, -0.0110451505, 0.00712685753, -0.00978833903, -0.0116439834, -0.00217354367, -0.0093447594, -0.0256389435, 0.00300340843, 0.0122502102, -0.0058774394, 0.0228148159, 0.0157914609, -0.0200054739, 0.000779037946, -0.00856110081, 0.00601790659, 0.0139875663, -0.00521206902, -0.00842063315, -0.0150817316, 0.00114776415, 0.000440114876, 0.0163237564, 0.00402549142, 0.0141354268, 0.0108159669, 0.0265408903, 0.00325846719, -0.010342815, 0.0109194694, -0.0111560458, -0.0124498215, 0.0051233531, -0.00166250218, 0.00307733868, -0.0217945799, -0.00203122827, 0.00509008439, -0.0486459769, 0.0170630571, -0.0113852285, 0.0306070428, -0.0115774469, -0.000806299679, 0.0197393242, -0.0108603248, 0.0110747227, 0.0164568312, 0.0195471067, 0.010128418, -0.0128712226, -0.00586635, -0.034303546, 0.028389141, 0.0198428277, 0.00493852794, 0.0175953526, 0.00270953658, 0.0196801815, 0.0120136337, -0.0139432084, -0.00615467736, 0.0133000175, 0.00808794796, 0.01451247, -0.0127825066, 0.0121319219, -0.0262451693, -0.00963308662, 0.0109342551, -0.00334348669, 0.00340817566, 0.0200794041, -0.00206264853, -0.00986226927, -0.00493852794, 0.0150151942, 0.000383974228, 0.0114443731, -0.00460584229, 0.0387984924, -0.0252840798, -0.0130116902, -0.00479436433, 0.00289066508, -0.00687179854, -0.0290101543, 0.0115035167, 0.00918950606, 0.000290868571, -0.00204046955, 0.0135883447, -0.00757783093, 0.0103280284, -0.0214988608, 0.00746323913, 0.0171813443, 0.00796226691, -0.000188521648, -0.0141354268, -0.00460584229, 0.00469086226, -0.00494592078, 0.0102836704, -0.00526751671, -0.00573327579, -0.0118435947, 0.00660195388, -0.0152591635, 0.0144459326, 0.00726362783, -0.00357821467, -0.0118953465, -0.0039626509, -0.013107799, 0.0174327064, -0.0168264806, -0.00200350443, 0.0120505989, -0.00363551057, 0.00901207421, 0.0214249305, 0.0129821179, -0.023450613, -0.00864981674, -0.00501245772, 0.00644670101, -0.0116957352, -0.0179945752, 0.00890117884, -0.00590701168, -0.00023311071, 0.0264078155, -0.00207743468, 0.00202198699, -0.00371128879, 0.0122058522, -0.0147638321, 0.0133591611, 0.00738561247, 0.00176785246, -0.00814709254, 0.0162054691, -0.00626926869, 0.00252840784, -0.0215875767, -0.0182902962, 0.0287735779, -0.00903425273, 0.00811752, 0.0198428277, 0.0151039101, 0.00907121785, 0.00678677903, 0.0186155885, -0.0109194694, 0.00586265326, -0.0275019817, 0.00499027874, -0.00358191133, -0.0176101401, -0.0187043045, 0.00226041139, 0.00209591701, 0.0121910665, 0.00170039129, 0.00669436669, -0.00820623618, 0.00456887763, 0.0054967, -0.000218093672, -0.0114665516, -0.00647996925, 0.00687179854, 0.000162068551, 0.015022587, -0.00480545359, -0.00022929869, 0.00109786133, -0.00416965503, -0.0173439905, -0.0183937978, -0.0169743411, -0.0143941818, 0.00237685139, 0.000743459153, -0.00805837568, 0.00811012741, 0.0119249178, 0.00235097576, -0.000832637248, 0.0134183047, -0.0175066367, -0.019872399, 0.00484611513, -0.0235836878, -0.0120949568, 0.00520467572, 0.00660195388, -0.0108677186, 0.0137805622, -0.00639864616, -0.00200720108, 0.00506790541, 0.0128490441, -0.00583677785, 0.0130116902, 0.00408093911, 0.0113704428, 0.0124498215, -0.0245447792, -0.010468496, -0.000757321, -0.0190000236, -0.00676090363, -0.0138766719, 0.0166490488, -0.00407354627, 0.0252545066, 0.017491851, 0.019325316, 0.00799923204, 0.0204638392, 0.000881153857, 0.00814709254, 0.0104019586, 0.000821085705, -0.000314202742, 0.00741888117, 0.0237167627, 0.00171425322, -0.00555584393, -0.0142537151, -0.0096183, -0.0155548835, -0.0167525504, 0.0162793975, -0.0127085764, 0.0079400884, 0.0217797942, -0.0105424263, -0.0183346532, 0.0187486615, -0.0283299983, 0.00767393969, 0.0175509956, -0.0120801711, 0.0155253122, 0.00930040143, -0.0152887357, 0.0132704452, -0.0197097529, -0.0166046899, -0.00817666389, -0.010638535, -0.00916732661, 0.00724514527, 0.0177136417, 0.0313759148, 0.00491265208, 0.0193401035, 0.00451343, 0.00972180255, -0.00184178248, 0.00805098284, 0.0358117186, -0.0182902962, 0.00859806594, 0.0216023624, 0.0192218143, 0.0159688927, -0.0260529518, 0.00531557109, -0.00401809858, -0.00550778909, 0.00128823123, 0.00466129, 0.00678308262, 0.0124646071, 0.0125828953, -0.0263191, -0.0112373689, 0.00137325074, 0.00314017921, -0.00952958409, 0.0162202548, -0.00132889277, -0.0110747227, -0.0106607145, -0.00380370137, -0.0171222016, 0.00747432886, -0.00380000495, 0.000256213854, 0.0180537198, 0.00548191369, -0.00406984938, 0.00920429174, -0.00348210568, 0.00134183047, 0.0169299822, -0.00682004774, 0.00238054781, -0.00689767441, -0.000422325451, -0.0402770936, 0.00805098284, -0.016382901, 0.00372053, -0.0286257174, 0.00905643217, -0.0169447679, 0.0180537198, 0.00598833431, 0.0105867842, 0.0167377647, 0.0059365835, -0.0093447594, -0.0175953526, -0.00790312327, -0.0351611339, 0.0106976787, 0.0191626698, 0.0210996382, -0.0316716358, -0.0247222111, -0.00153866934, -0.0154513819, -0.0161906816, -0.0123315332, 0.0113704428, -0.0215136465, -0.0285517871, 0.0142167499, 0.0185712297, -0.0134700565, 0.0356047153, -0.0170186982, 0.00879028346, -0.0136474883, 0.00265778555, 0.00134737522, -0.00222899113, -0.00887160655, -0.0037963083, -0.0149634434, -0.0156288147, -0.0235984735, -0.0393899344, -0.00731168268, -0.000536454958, -0.000899174309, -0.00570740039, -0.0187190901, 0.00706032, -0.023450613, 0.0127751138, 0.00620273175, -0.0125755025, -0.0149930157, -0.00775526278, -0.00918950606, -0.0244264901, -0.00610662252, 0.0031771441, 0.0066130436, -0.0172700603, -0.0217945799, 0.0020238352, -0.0138027417, 0.0105941771, -0.000750390056, -0.00898250192, 0.00930040143, 0.00134737522, -0.00780701404, -0.000569723488, -0.00473522, -0.0200941898, 0.0121984594, 0.00593288708, -0.0159984641, 0.0124646071, -0.00620273175, 0.00158025499, 0.00671654567, 0.018260723, 0.0178171434, -0.00455409149, -0.000627481379, -0.000351860857, 0.00516771106, -0.0207004156, -0.00472043408, 0.00231770729, -0.0187190901, 0.021351, 0.00877549779, 0.00402549142, -0.0270584, -0.0170482714, 0.000246279495, -0.015318308, -0.00191109197, -0.0194731764, 0.00973658822, -0.013787955, -0.00964047946, -0.00956654921, 0.00978094619, 0.0173144192, 0.0627518296, 0.0149190854, -0.00205155904, -0.0219128691, 0.0126937907, 0.000142315359, -0.0168856252, 0.0335346721, 0.00477218488, 0.0329136625, 0.0115996255, -0.00431751506, -0.0116144121, 0.0096183, -0.0144828977, -0.00668697339, 0.00411051093, -0.00992880668, 0.0246482808, -0.00957394205, 0.00381848728, -0.0298233852, 0.014002353, -0.00353016, -0.0117696645, 0.00813969877, -0.0340669714, -0.0242490582, -0.0011533089, 0.0095961215, -0.00196469133, -0.000519358669, -0.00716012577, -0.0036872616, -0.00990662724, 0.0183050819, -0.00747802528, 0.00936693791, 0.00412899349, -0.0291875862, 0.0158653893, 0.00771090481, -0.0178467147, 0.00574436551, 0.0138692781, -0.017831929, -0.0141649991, -0.014726867, 0.00431012223, -0.010512854, -0.0210257079, -0.0151039101, -0.0228000283, -0.0210109223, 0.00643561129, 0.00317899231, 0.0233766828, -0.0029516574, 0.0020238352, 0.00448755454, -0.0174770653, 0.00112281274, -0.0025450422, 0.017920645, -0.00315311691, -0.0187486615, -0.000963863102, -0.0170482714, -0.00507529825, -0.00138803676, -0.0061029261, -0.0179354325, -0.00274835, 0.0127381487, 0.0106163556, -0.00213842676, -0.0165751185, 0.0220903, -0.000241889895, -0.0225634538, -0.0159836784, 0.0109342551, 0.0284926444, 0.000181821728, -0.0183937978, -0.00290175481, -0.00847977772, -0.0146677233, -0.0054597347, -0.00574436551, -0.00714903651, 0.0326179415, 0.010128418, -0.00915254094, -0.0335642472, 0.024042055, -0.00296829175, 0.000120020828, 0.00825059414, 0.00340632722, 0.00727841398, 0.0045060371, 0.0165751185, -0.0109712202, 0.00422510272, 0.0217945799, 0.0112817269, 0.0225190949, 0.00948522612, 0.00385914883, -0.0117770582, 0.00207743468, 0.0179945752, 0.0020811311, 0.00631362665, 0.0312872, 0.00353570492, -0.00341926515, 0.0100618806, -0.000473152351, 0.0128342574, 0.00446907198, -0.005234248, -0.0152887357, -0.0115922326, 0.00995837897, 0.0146972947, 0.00234727934, 0.0156288147, -0.0256093722, -0.00274280505, -0.0175214224, -0.00816927105, -0.0106459279, 0.0284482855, 0.000731907552, -0.0042472817, 0.00649105897, 0.0116513772, 0.00686810212, -0.0179354325, 0.00457996689, 0.0101432037, 0.0215580035, 0.0163089707, -0.00298307766, 0.0069789975, -0.00828755926, 0.0160576086, 0.0108233606, -0.0102245267, -0.0044727684, -0.00229922472, 0.00840584747, -0.00714534, -0.00527860597, -0.00957394205, -0.0119544901, 0.0052009793, -0.0149708362, -0.00181313464, -0.00550039625, -0.0112965126, -0.0185120851, -0.00455778791, -0.0126198605, -0.00758522376, -0.0154661676, 0.0104980683, -0.00881985575, 0.0163089707, -0.00182792067, 0.0257276595, 0.0121910665, 0.014128034, -0.0045245192, 0.000438035582, -0.0063025374, 0.0150743388, -0.0177432131, -0.00924865, -0.0210109223, -0.00887160655, 0.0439440235, -0.00940390304, -0.00515292492, 0.00201644236, 0.00328434282, 0.0146085788, -0.0108751114, -0.0106163556, -0.00536732189, -0.0114739444, -0.00348765031, 0.00490525924, 0.00745584629, 0.00505681569, 0.000681080623, 0.0037963083, -0.00178910734, 0.00761479558, -0.0161611103, -0.000617316, -0.0251805764, -0.00933736563, 0.0350428447, -0.0103871729, -0.00845759828, -0.0072303596, -0.015318308, 0.002404575]
|
31 Jul, 2021
|
Fabric.js ActiveSelection cornerStyle Property
31 Jul, 2021
Fabric.js is a JavaScript library that is used to work with canvas. The canvas ActiveSelection is one of the class of Fabric.js that is used to create ActiveSelection instances. The canvas ActiveSelection means it is movable and can be stretched according to requirement. In this article we will be using cornerStyle property to set the style of the corners of the canvas ActiveSelection.
Approach: First import the Fabric.js library. After importing the library, create a canvas block in the body tag which will contain the ActiveSelection. After this, initialize an instance of Canvas and ActiveSelection class provided by Fabric.js and use the cornerStyle property to set the style of the corners.
Syntax:
fabric.ActiveSelection(ActiveSelection, {
cornerStyle: string
});
Parameters: This function takes a single parameter as mentioned above and described below:
cornerStyle: This parameter takes a string value. The accepted values of this parameter are “circle” and “rect”.
Example: This example uses Fabric.js to set the cornerStyle property of the canvas ActiveSelection.
HTML
<!DOCTYPE html>
<html>
<head>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center; width: 400px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | ActiveSelection cornerStyle Property
</b>
</div>
<div style="text-align: center;">
<canvas id="canvas" width="500" height="500"
style="border:1px solid green;">
</canvas>
</div>
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200327230544/g4gicon.png"
width="100" height="100"
id="my-image" style="display: none;">
<script>
var canvas = new fabric.Canvas("canvas");
// Getting the image
var img = document.getElementById('my-image');
// Creating the image instance
var geek = new fabric.Image(img, {
});
canvas.add(geek);
var geek = new fabric.IText('GeeksforGeeks', {
});
canvas.add(geek);
canvas.centerObject(geek);
var gfg = new fabric.ActiveSelection(
canvas.getObjects(), {
cornerStyle: 'circle',
});
canvas.setActiveObject(gfg);
canvas.requestRenderAll();
canvas.centerObject(gfg);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property
|
https://www.geeksforgeeks.org/fabric-js-activeselection-cornerstyle-property?ref=asr10
|
CSS
|
Fabric.js ActiveSelection cornerStyle Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.00411148043, 0.0185471214, -0.0123916855, 0.0351007953, 0.0381179042, 0.050832849, -0.0099335527, 0.0110851713, 0.0105733406, -0.0293359701, 0.0106002791, -0.0100008985, 0.0202038363, -0.0389529951, -0.0202038363, 0.00977865607, -0.0327032767, -0.0154222613, -0.0259551946, -0.0252143871, -0.00763031514, -0.0135971811, -0.0425896868, 0.0159071535, 0.00934090652, 0.0506981574, 0.0171059147, 0.00369730196, -0.0468190201, 0.0235442035, 0.00079636788, -0.00818255357, 0.0196515974, -0.0216585118, -0.00424954, -0.0466843285, -0.0150316535, 0.0718717799, -0.0119404672, 0.00526983384, 0.0268172249, -0.0127284164, 0.0155838924, 0.0270866081, -0.0121627087, 0.0350469202, -0.000169417573, 0.000554763654, -0.0187626295, -0.0557625853, -0.00732725766, 0.016540207, 0.00404076697, 0.0205675047, 0.0246082712, 0.00373434229, -0.000731547188, 0.0416737795, -0.0083239805, -0.0073137884, 0.0341040753, -0.0854487568, -0.029282093, 0.00857316051, -0.0273559932, 0.00726664625, 0.0161361303, 0.00223084027, -0.0312216599, 0.0149643077, -0.0445831306, 0.0117990403, 0.0229246188, -0.0128563745, -0.0114353709, -0.00963049475, 0.0463610664, 0.00961029157, -0.0563013554, 0.0525838509, -0.00233691023, -0.00434382446, -0.0269249789, 0.0520720184, -0.0172810145, -0.0317873694, 0.0190454833, -0.034400396, 0.0102231409, 0.0250662249, -0.00917927641, 0.0206752587, 0.00882907584, -0.0293898471, -0.0160418451, 0.015826337, 0.0257396866, -0.0207964815, -0.0275445618, -0.00540115871, 0.0130180046, 0.0279890466, 0.0050139185, -0.0428321324, 0.0325685814, -0.0308445226, 0.000943687512, -0.00457280129, 0.0185471214, -0.0103915064, 0.0202846508, -0.030494323, 0.0350199826, 0.0378754586, -0.0592645854, 0.0432900861, -0.0109639484, -0.035666503, 0.0191397667, -0.00671777548, -0.0107484404, -0.0137857506, 0.00473443232, 0.017307952, -0.0358820111, 0.0539307706, -0.0251739789, 0.0374444425, 0.021375658, 0.0201364905, -0.0196246598, 0.00247665355, 0.0148700234, 0.0165671445, 0.019732412, 0.0301710609, 0.00607125275, 0.0342657045, -0.0309522767, -0.00768419215, -0.015099, -0.0313563533, 0.0131661659, 0.0553315729, 0.0134490198, 0.000670093868, 0.0143851312, -0.00620257761, 0.00529340515, 0.0267229397, -0.0600727387, 0.00478157448, 0.0201903656, -0.0231131874, 0.041485209, -0.0381987169, -0.0387105495, 0.0185336526, 0.051048357, 0.00373097509, 0.0507789738, 0.000640209066, 0.00164240343, 0.0232344102, -0.0268711019, 0.0083172461, -0.00813541096, 0.000420492317, -0.0710097477, 0.0266017169, 0.00441117072, -0.00206415844, 0.0218470804, 0.00915233791, -0.0359628275, -0.0306828916, 0.0131998397, -0.0319759361, 0.0220760573, -0.0121896472, -0.0452835299, 0.0425627455, 0.00925335661, 0.0622278154, -0.00252716313, 0.00819602236, 0.0340501964, 0.00589615293, -0.00806806516, 0.0114084324, 0.00928029511, 0.0363938436, 0.0671844855, 0.00365015958, 0.0110582327, 0.0010228192, 0.0221029967, 0.00257598911, -0.0216585118, -0.0102231409, 0.00323261367, -0.0394109488, 0.00652583875, -0.0281776153, 0.0237866491, -0.00448861904, -0.0199209824, -0.0432631485, 0.0261437632, 0.0107888486, 0.0214025974, -0.000719340751, 0.0362860896, -0.00827010348, 0.0042394381, 0.00698379241, -0.00837785751, 0.00344643765, -0.00603757938, -0.0183316134, 0.0311139077, 0.0340501964, -0.0167961214, -0.0174561143, -0.0648677796, 0.0100211026, 0.00557289133, 0.00134018774, 0.00102534471, -0.0475733, 0.000202669733, -0.00347169233, -0.00556615693, 0.0209581126, 0.0139810545, -0.000744174642, -0.01084946, -0.00982579868, 0.0206079129, 0.0155973611, 0.0071993, -0.012775559, -0.0207021963, -0.0103578335, 0.0501055121, 0.0414313339, -0.0190993585, 0.0295245387, 0.0102568138, 0.0126273977, -0.0118529173, -0.013489428, -0.0113410866, 0.0177255, -0.0264939629, -0.0305482, -0.0174561143, -0.0389529951, 0.055062186, 0.0423472412, 0.0561936, 0.0167826526, -0.00837785751, 0.038629733, -0.0124253593, -0.0303057544, 0.00867418, -0.060880892, -0.0146814538, -0.0136914663, 0.0103241596, -0.0396264568, 0.0199209824, -0.0467112698, -0.0374444425, 0.0255241785, -0.0161361303, 0.00739460392, 0.027032733, 0.000723970763, -0.0192071125, 0.0217797346, 0.0346159041, 0.0337538756, -0.0257800948, -0.00605104864, -0.00926682632, 0.0342657045, -0.0149239, -0.0224801339, -0.0324069522, -0.0159745, 0.0264400858, 0.000639367208, 0.0305212606, -0.030602077, 0.0211197436, -0.0273559932, -0.0254703015, -0.0171732605, 0.00225777854, -0.0296592303, -0.0292012766, -0.0292012766, 0.0360705815, 0.0373366885, 0.0195034351, 0.00633726967, -0.00400709407, 0.00983253308, -0.00235374691, -0.0295245387, -0.0190858897, -0.0167961214, 0.00464688241, -0.00854622293, 0.0605037548, 3.56460914e-05, -0.0111457827, -0.0091321338, -0.0321914442, -0.00670767343, 0.0149373692, 0.0297669843, 0.0507520363, -0.0046266783, -0.0388452411, -0.0128092319, 0.0112198638, 0.00926682632, -0.0424549915, -0.000646522734, -0.0192205831, 0.0203519966, 0.00423270371, -0.0264804941, -0.0011044764, 0.00333700026, -0.021591166, 0.0121559743, 0.0177120287, 0.0271404851, -0.0237193033, -0.0119876089, 0.0294167846, -0.0572172627, 0.0084856106, -0.0207426045, 0.0176581517, 0.006923181, 0.000931901915, 0.0151259387, 0.0127284164, -0.021375658, 0.0181161053, -0.00517554907, 0.00482534943, -0.0138328932, -0.0301171839, -0.00538095506, 0.0125533165, 0.00621604687, 0.0132873897, 0.0209715813, 0.0363938436, -0.0114286365, -0.0260225404, 0.0229919646, 0.0138059547, -0.00270226295, -0.00849908, -0.0254164245, -0.0118731204, -0.0149643077, -0.0128563745, 0.00117939885, 0.0138059547, -0.0090984609, -0.0325147063, 0.00982579868, -0.00604431424, 0.0444753766, -0.0161765385, 0.0352085494, 0.0362052731, 0.0438288525, -0.0208907668, -0.0254298951, 0.00255410164, 0.0259013176, -0.0338885672, 0.0226282962, 0.0496475585, 0.0111255785, 0.00310970703, -0.0310330912, 0.00141847762, -0.0135635082, 0.0158128683, -0.0324877687, -0.0170789752, 0.0252009183, -0.0176042747, -0.0188299753, 0.011953936, -0.0307906456, -0.0345620289, -0.00677501969, 0.00672451, -0.0220087115, 0.00886948407, -0.0111457827, 0.0118933246, -0.00592309097, 0.0330804139, 0.0378215797, 0.0493512377, 0.0420778543, -0.000569074706, -0.00555942208, 0.0873883218, -0.0188434441, -0.0238539949, 0.0117384288, -0.0128227007, -0.0302518774, -0.0116643477, -0.00430004951, 0.0117316935, -0.00221905462, -0.0884119868, 0.00938804913, -0.000448272593, -0.0365285352, 0.0159071535, 0.0036568942, 0.0238944031, 0.00981233, 0.0288241394, 0.011455575, 0.0199883282, 0.00524289533, 0.00638777949, -0.0299555529, -0.030386569, 0.0291474, -0.0401652269, -0.030494323, 0.0252009183, 0.0130651472, -0.0188569129, -0.0125667853, -0.0376599506, -0.00913886819, -0.00276792538, -0.0275580324, 0.035558749, 0.00112468016, 0.0201768968, 0.00785255712, -0.031814307, -0.0133614698, 0.0028201188, -0.0113006784, 0.0204462819, -0.0107686445, -0.0248776563, -0.0112737399, 0.0175099913, 0.0279890466, 0.0173887685, -0.00833744928, 0.0134018781, 0.0439904854, 0.00941498764, 0.00774480356, -0.0125533165, -0.0197189432, 0.00116592972, -0.0223050341, 0.0447178222, -0.00255915243, -0.000970625959, 0.0342657045, 0.0083172461, -0.0342387669, 0.0238405261, -0.0127822934, -0.0286355689, 0.00551564712, 0.0626588315, 0.0387105495, -0.0104588522, 0.00907825679, 0.010741706, -0.000558551867, 0.0282584317, -0.0367709808, 0.0377407633, -0.0249315333, 0.00330164353, 0.0225878879, 0.00398352277, 0.0232748184, 0.0637363642, -0.0121357702, -0.0240829717, 0.0146545153, 0.00963722914, -0.00701746577, -0.0281506777, 0.0227629878, -0.0349391662, -0.00937457941, -0.00126358157, -0.021321781, 0.00945539493, 0.021645043, -0.0108359903, -0.0127553549, 0.022695642, -0.0241907258, 0.00588941807, -0.0195977204, 0.0240156259, 0.0534458794, -0.00358281354, -0.00113225658, -0.00143531419, 0.0140618701, -0.002266197, -0.00908499118, 0.0228842106, 0.0313294157, 0.0273964014, -0.0159745, -0.0216585118, -0.0364477187, -0.00375117874, -0.0234903265, -0.0393031947, 0.00195808848, -0.0328918435, -0.000553921855, -0.00685583474, 0.041592963, -0.00950927194, 0.00198165956, -0.02340951, 0.0249180645, -0.0163112301, 0.0200826135, -0.00162893429, -0.00966416765, 0.0281506777, -0.0229515582, -0.00694338465, -0.0222107507, -0.0387644246, -0.00639788108, 0.0157589912, -0.0166883674, 0.0333228596, 0.0433170237, -0.00289083226, -0.0503210202, 0.0123108709, 0.00786602683, -0.0276657864, 0.0117923059, 0.00368383271, -0.0265074316, -0.0111794556, 0.0157859307, 0.0144390082, -0.0218605511, 0.0316796154, -0.0268306937, 0.0379023962, 0.0291474, -0.00272246683, -0.0166883674, 0.0179948825, 0.00219716714, 0.00646186, 0.0151528772, -0.0128900474, -0.0246082712, -0.0554932021, -0.0315988, 0.029012708, 0.0207426045, -0.0171328522, 0.0129304547, -0.0225878879, 0.0502402037, 0.0207156669, -0.0342657045, 0.0248237792, -0.0223993193, 0.00985273719, 0.0180891678, 0.0160687845, 0.0203385279, -0.013954116, -0.0291474, 0.006923181, 0.0264131483, -0.018466305, 0.0128900474, 0.013489428, -0.00321072619, 0.00642145239, -0.0260898862, -0.0263458025, -0.0038521979, 0.0283661857, 0.030709831, -0.0162708219, -0.0164189842, 0.0269923247, -0.0338885672, 0.0577021539, 0.0127890278, 0.0160149075, -0.016594084, -0.0084519377, -0.0198671054, 0.00109016534, -0.0169577524, -0.0227629878, -0.0221299343, 0.00227798242, 0.0173214227, -0.00202206732, 0.00619921042, 0.00218369788, 0.0183720216, -0.0084788762, 5.65076043e-05, 0.000216770321, 0.0117721017, 0.00237058336, 0.028958831, -0.00851928443, 0.0136914663, -0.036151398, 0.0218201429, 0.0141830929, -0.0126341321, -0.0188838523, 0.0102500794, -0.0279890466, 0.000678933051, -0.0175638683, 0.00952274166, 0.0025221121, 0.0581870452, 0.00769766141, -0.0255915243, -0.0150181847, -0.0180487595, 0.00440443633, -0.00813541096, -0.00535064936, 0.0132537158, 0.00681206, 0.0116778174, 0.00835765339, 0.0143581927, -0.0221703425, -0.0100951828, -0.0172136687, -0.00977865607, 0.019894043, -0.0134961624, -0.0204597507, 0.0245678648, 0.0371750593, -0.00744848093, -2.107197e-05, -0.0365554728, 0.0121559743, 0.0156377684, 0.0173887685, -0.0108023174, -0.0293898471, 0.014452477, 9.33901247e-05, 0.00821622647, 0.0200287364, 0.0305751376, 0.0214160662, 0.00290093408, 0.0218066741, -0.0170655064, -0.0101827327, -0.0243119486, -0.00997396, -0.0122569939, 0.00952947605, -0.013240247, -0.0154087916, 0.0233691037, -0.0299016759, 0.0336999968, -0.0106676249, 0.0222780965, -0.0253086723, -0.0226013567, 0.0256319325, 0.0339963213, -0.0025204285, 0.0217527971, 0.00738786906, -0.0145332925, 0.00273593608, -0.0144255385, 0.000133745183, 0.00431015156, 0.0173348915, 0.00688950811, 0.00893009547, -0.0461994372, 0.0127620893, 0.0034296012, 0.00849908, -0.0231670644, 0.00045921636, -0.00290598511, 0.0177928451, 0.00424617296, -0.0193283353, -0.00179477409, -0.0406231806, 0.0226148274, 0.0134624895, 0.0103645679, -0.00882907584, -0.00763031514, 0.010189468, -0.0522336513, -0.0111053754, 0.015327977, -0.0110919056, -0.0204193424, -0.0144120697, 0.00934090652, 0.0181699824, 0.00814214535, 0.0197458826, -0.0195573121, 0.0551430024, -0.0091927452, 0.0117518976, -0.0264400858, -0.00923315249, 0.0385758579, 0.00750909233, 0.0399766564, 3.82504913e-05, 0.0293629076, -0.0349391662, 0.0321106277, 0.00756296935, 0.0135365697, 0.00549544347, -0.0235846117, 0.0203115903, -0.00065367826, 0.000492047577, -0.0110717015, 0.00829704199, -0.00668073492, -0.00103123742, 0.0254972409, -0.00270226295, -0.0532034338, 0.00170301495, -0.0220760573, -0.0045660669, 0.0320836902, 0.0243254174, 0.0114959823, 0.0182777364, -0.00921294931, 0.00630359678, -0.0187222213, 0.0159745, 0.0285278168, 0.011704755, -0.00405760389, 0.00503075495, 0.0283392463, -0.0131661659, -0.0300094299, -0.0402191021, -0.00429668231, -0.0221299343, -0.0220491197, -0.0341848917, -0.0201903656, -0.00337067316, -0.00438423222, 0.0527724177, -0.00780541496, -0.011704755, -0.0134018781, -0.0123041356, -0.00275950716, 0.00422260165, -0.000629686227, -0.0317334905, -0.000300111133, -0.00565370684, -0.00393974781, 0.0249854103, 0.0211601499, -0.00550554506, 0.0259821322, 0.00241435831, -2.69384473e-05, -0.0153549155, -0.00789296534, -0.0396803319, 0.0419970416, 0.0273964014, 0.000674303039, -0.00118444988, 0.000275277271, -0.0169712212, -0.00903784949, -0.0450949594, 0.0502671413, -0.00915233791, 0.00465024961, -0.00602074293, 0.0335653052, 0.0230593104, 0.0294976, -0.00329659251, 0.0305482, 0.0101153869, -0.0214430038, 0.00356597709, 0.0175908059, 0.00923988782, 0.0364746563, 0.017914068, -0.00665379642, 0.00497014355, -0.0138598308, 0.0220356509, 0.0107686445, 0.0109706828, 0.0143716615, -0.0123378094, -0.00263660052, -0.0194764975, -0.0493512377, -0.018183453, 0.0207830127, 0.015058592, 0.0103174252, 0.0379293337, -0.0346428454, -0.00240762369, 0.00709828082, -0.0212005582, 0.00330837816, -0.0184797756, -0.00165082177, 0.0291474, 0.00654604286, 0.0181161053, 0.0098392684, -0.0381987169, -0.0120818941, -0.0152067533, -0.0207695439, 0.0091927452, -0.0355856903, -0.0215642266, 0.0021331883, 0.00390607491, -0.014667985, -0.00543819927, -0.0293629076, 0.00548197422, -0.0356395654, -0.0135769779, -0.0300633069, 0.0364746563, -0.0395995192, 0.034400396, 0.0391146243, -0.00406770548, -0.00613859855, -0.0208638273, 0.0314371698, 0.00296996394, -0.0121829128, 0.0126476008, -0.0138328932, 0.025712749, -0.000584227557, 0.0227091108, 0.00438759942, -0.00800745375, 0.019786289, 0.032029815, 0.00184528367, 0.0264535546, -0.011866386, 0.0342118293, 0.0299824923, -0.0162842907, 0.0299824923, 0.0165806152, -0.00615543546, -0.0138194235, -0.0106204832, -0.00235037948, 0.0197458826, -0.018129576, 0.0103915064, -0.020217305, 0.00162809237, 0.00626992388, -0.00364342495, 0.00505432626, 0.029282093, 0.0437749773, -0.00855295733, -0.00870111864, -0.018075699, 0.0036872, 0.015826337, -0.0113814939, -0.0233691037, 0.00629012752, 0.0300363693, -0.00880213734, -0.0340771377, -0.0155300153, -0.0660530701, 0.0159206223, 0.015166346, -0.00467045326, 0.0211466812, -0.00911866408, 0.0268980395, 0.0406231806, -0.0116778174, 0.00718583073, 0.00882234145, -0.0158802141, 0.00667063287, 0.00949580316, 0.0213621892, 0.0090984609, -0.0129506588, 0.00486239, 0.00312149269, 0.0411888845, -0.0178467222, 0.0016323016, 0.0212813728, 0.00847214181, 8.16571701e-05, 0.00886275, 0.00366699626, 0.00312485988, 0.0109841516, -0.00180655962, 0.00598033518, 0.022857273, -0.0110312942, -0.0128227007, -0.00154138426, 0.0148026766, 0.000139111828, 0.00995375682, -0.00313159451, 0.0273021162, 0.0190724209, 0.0173618291, 0.000876341364, -0.0194899663, 0.015004715, 0.027692724, -0.0236384869, -0.0275176242, 0.00331511279, -0.0100682452, -0.00703093503, 5.80334126e-05, 0.0243119486, -0.0365554728, -0.00300700427, -0.0212274957, 0.0065056351, -0.0208234191, -0.0126947435, -0.0118192434, 0.0528801717, -0.000736598158, 0.0219009575, -0.00292955618, 0.015826337, -0.0436133482, 0.0338077508, -0.00402393052, 0.00218201429, 0.0178871285, 0.0359358899, -0.0184528362, 0.00410474604, 0.00172742794, 0.0267902855, -0.00101187546, -0.00760337664, 0.00598707, 0.0100143682, -0.0121425055, -0.000960524, 0.014452477, -0.00198165956, 0.00718583073, -0.00655951211, 0.00592982583, 0.0114488406, 0.0106070135, -0.0208234191, 0.00954967923, -0.00609819125, -0.0307367686, -0.032918781, -0.027638847, -0.0102433451, -0.00180824334, 0.0147757381, 0.00955641456, -0.00868091453, -0.0123916855, 0.00519238599, -0.0224936046, -0.00676155044, -0.000371455943, -0.0204462819, -0.00915233791, -0.000699136872, 0.00455933204, -0.00306593208, 0.00610829284, -0.00660665426, -0.0187895671, -0.0129708629, 0.0283661857, 0.00663022557, -0.0211601499, 0.00536075095, -0.0218201429, -0.0460647456, -0.00413168455, 0.0518295728, -0.00176951929, 0.0123714823, 0.0110178255, 0.0154087916, -0.00567391049, 0.0186414048, 0.00606451789, -0.010687829, 0.000878866878, -0.012883313, -0.0236519575, 0.00300700427, -0.0195303746, -0.0181026366, 0.0289318934, 0.00359291537, 0.0216854494, -0.0053405473, -0.016701838, -9.50343201e-06, 0.00623625051, -0.020163428, -0.00954967923, -0.0149777764, -0.0202307738, 0.0322722606, -0.00529340515, -0.0104049752, -0.00758317299, -0.0367171057, -0.0288780164, 0.071925655, 0.0175503977, -0.0245678648, -0.0266151857, -0.015327977, -0.0452565923, -0.00528330309, 0.0322183818, -0.00620931201, -0.0408656262, 0.0406770557, 0.00372424047, 0.0126004592, 0.0294437241, 0.014560231, -0.0156781767, 0.00799398404, 0.0032410319, 0.0137588121, -0.0409733802, -0.0193552747, 0.0158936847, -0.0266555939, -0.0117855705, 0.000305162102, -0.0184258986, 0.0103510981, -0.0128159663, 0.0169712212, 0.00381515757, 0.00923315249, -0.00885601435, 0.0362322107, -0.00220895279, 0.0105059948, 0.00616890471, 0.00608135434, -0.00713195419, 0.0260225404, 0.00656287931, -0.0205270965, 0.0274906866, -0.0073137884, -0.0179948825, 0.00242614397, 0.0141965616, -0.0091321338, -0.00761684589, -0.0245274566, 0.000705029699, -0.00822969526, 0.00657298137, -0.0128092319, 0.0131729012, 0.0199748594, -0.00509473402, -0.00133261131, -0.0203115903, 0.0224936046, -0.038414225, -0.0124051552, -0.00116845511, -0.0361783355, -0.00629012752, 0.0360167027, -0.00771113066, -0.0353971198, 0.0295514762, -0.00864050724, 0.0273829326, 0.00956314895, 0.011401698, 0.0324069522, 0.000267700816, -0.0303596295, 0.00110195088, -0.00798725, 0.00831051078, 0.00623288332, -0.00763031514, 0.0241503175, -0.00206752587, -0.0227899272, 0.027692724, -0.00542473, 0.00723970775, -0.00763705, -0.0212005582, 0.0111053754, 0.0254837722, -0.0390338115, -0.00751582673, -0.0359089524, 0.0205944423, 0.00566380844, -0.0187626295, 0.00761684589, 0.0169712212, -0.00682216184, -0.0147757381, -0.0371750593, 0.0215103496, 0.0391415656, 0.0199344512, -0.0195034351, -0.00919948, 0.0144659467, 0.00989314448, 0.0225340109, -0.00215002475, -0.00967763737, 0.00196650671, 0.000152581051, 0.0254837722, -0.0117384288, 0.0237462409, 0.0172810145, 0.00657634856, -0.00317705306, -0.0148161463, -0.00198502676, 0.00777847692, 0.024285011, 0.0280698631, 0.00147824734, 0.00792663824, -0.0149373692, 0.00391617697, 0.0287433229, -0.0099672256, 0.0199209824, 0.00766398851, 0.0154357301, 0.0132604511, -0.0262784548, 0.00457616895, -0.00682889624, 0.00428321306, 0.0166614298, 0.00905131828, -0.0103174252, -0.00924662221, -0.00297333114, -0.010081714, 0.0280429237, -0.00244971504, -0.0071993, -0.00267700828, -0.0077043958, 0.0105666062, -0.00549207581, -0.0409733802, 0.00804112665, 0.00714542344, -0.00545503572, 0.0098729413, 0.0210254584, -0.0161765385, 0.0182777364, 0.0168904066, 0.0319759361, -0.00124927051, 0.0132806543, 0.0118327131, 0.000831724552, 0.00777847692, -0.0111255785, -0.0119404672, 0.021375658, 0.00486239, 0.0177524369, -0.00112215476, 0.00526646664, -0.0195303746, 0.0162169449, 0.0166075528, 0.00787276123, -0.0350738578, 0.00485228794, -0.00765725365, 0.0134557541, 0.00756296935, 0.00609819125, 0.0168499984, -0.0511830486, -0.012775559, -0.00839806069, 0.00989314448, -0.000366615423, 0.00185201829, -0.0222242195, 0.024446642, 0.00106070132, 0.0100143682, 0.0116239404, 0.0146949235, -0.0224531963, -0.04285907, -0.00485228794, -0.00065409916, -0.00867418, 0.0219278969, 0.000327260059, 0.0145737, -0.0116643477, 0.0226282962, -0.0191667061, -0.013846362, 0.0122502586, -0.00643492164, 0.0209985208, -0.013240247, -0.00438086502, 0.0102972211, 0.00677838689, -0.00291777053, 0.0172675457, -0.0103039565, 0.00696358876, 0.00312149269, 0.00389597309, 0.00207931153, 0.0041754595, 0.0194630288, 0.0106137479, 0.0020725769, 0.00412158249, 0.00302384072, 0.0042394381, 0.0173214227, -0.0286894459, 0.00037755919, 0.0156781767, 0.00881560706, 0.0119808745, -0.00641471799, -0.00868091453, 0.000358828547, -0.00170974957, -0.0105329333, 0.00939478353, 0.0121559743, 0.0136173852, 0.0154761383, -0.000100282581, -0.000153212415, 0.0312216599, -0.00224599312, -0.00645175809, 0.000881392334, 0.0186009984, -0.0026837429, 0.00611166051, -0.0130651472, 0.00758317299, 0.0168230608, 0.00373097509, -0.0236654263, 0.00405423623, -0.00384546327, -0.00623961771, 0.0108225215, -0.00486912439, -0.0229246188, -0.0268576313, -0.00788623095, -0.0280159861, -0.00153885887, 0.00963049475, -0.0202577133, -0.0353701822, 0.0250662249, 0.0167961214, 0.0021045662, 0.0028807302, 0.0010245028, 0.00578503171, 0.0065022679, -0.0118865902, 0.000107859021, -0.0119808745, -0.0240021572, 0.0221838113, -0.00889642257, -0.0148700234, 0.0170655064, -0.0122165857, 0.010903337, 0.00741480757, 0.0038521979, -0.00299521862, -0.00348852901, 0.0193283353, -0.0157455225, -0.027800478, 0.0198671054, -0.00378485187, -0.00585237751, -0.0162034761, 0.0177120287, -0.0105666062, 0.0064416565, -0.0147892078, -0.0238135885, -0.0157051142, -0.0224936046, 0.010027837, 0.00655614445, 0.0231670644, -0.0245139878, -0.013240247, -0.0133345313, -0.0100008985, -0.0344812125, 0.0111390483, -0.0196111891, 0.00400709407, 0.013078616, 0.0129910661, -0.0102904867, -0.021267904, -0.0156512372, -0.0138194235, -0.0241099112, 0.00751582673, 0.00463341316, 0.0127620893, 0.0105127292, 0.00300195324, -0.00122317392, 0.00868091453, 0.00350873289, -0.0356126279, 0.00581870461, 0.0191397667, 0.0305751376, -2.72278248e-05, -0.005370853, 0.0118461819, -0.00498698, -0.0130180046, 0.0384411663, -0.0119202631, -0.0170924459, 0.00655277725, 0.00328480685, -0.0196111891, -0.0239886884, -0.0236923639, -0.00690297736, 0.0160687845, -0.0206079129, -0.0191936437, 0.000896545185, -0.00777847692, 0.0207695439, -0.0116710821, 0.00711175, 0.0113141481, 0.0119404672, 0.0246217418, 0.00857989583, -0.00195640465, 0.0214968808, -0.00430341717, -0.00172574434, 0.00431015156, 0.0084519377, 0.00292450516, 0.0329457223, -0.0111255785, 0.00406097108, 0.00457280129, 0.00601400854, 0.0180622283, 0.0433170237, 0.0287433229, 0.00899070688, 0.0169308148, 0.000800997892, -0.0369595513, -0.0162977614, -0.00374781154, 0.0131122889, -0.0108225215, -0.013132493, -0.00462331111, -0.00370403659, 0.00231165555, 0.0159206223, 0.00516881468, -0.0146410465, 0.00571431825, 0.0308984, 0.00185033458, -0.00580860255, -0.0126206623, 0.0200287364, -0.0115161864, 0.00268711, 0.0233556349, 0.00932743773, 0.0234364495, 0.00345148868, 0.0476541147, -0.00121896469, -0.00517218187, -0.010687829, -0.0104319137, -0.00171985151, -0.00200186344, -0.00694338465, -0.0195842516, -0.0383334123, 0.0217393264, 0.0329995975, -0.00106827787, 0.0391954407, -0.00315348199, -0.00670093903, -0.0105935447, 0.0012450614, -0.0164189842, -0.000419019139, -0.00417209184, 0.00640461594, 0.00369393453, -0.0287702624, -0.0122435242, 0.00497014355, 0.00257262168, -0.0165806152, -0.0203654654, -0.0061487006, 0.0217797346, 0.00874826126, -0.0176312141, 0.00787949562, 0.0100008985, 0.00454923045, -0.0127957622, -0.0104453834, -0.00416535744, -0.0015514862, -0.00623961771, -0.0124657666, 0.00706460793, 0.0171597917, -0.00595676433, -0.00491289934, 0.0077043958, -0.000251916586, 0.00490953214, 0.0145198228, 0.0201364905, 0.00606451789, -0.00409801118, -0.00107501238, -0.0057917661, -0.0119606704, -0.0091658067, 0.0050172857, 0.0116576133, -0.000799314235, 0.0138328932, 0.0103915064, 0.00312822731, -0.0126408665, 0.0121290358, -0.00139574835, -0.00031652677, -0.048677776, -0.00783235393, -0.00618574116, 0.00992681831, -0.00437749783, -0.0107147675, 0.00435055932, -0.0117653674, 8.96545243e-05, 0.0234768577, -0.0024615007, -0.012526378, 0.00625982182, -0.00866071135, 0.0657298118, 0.0191667061, 0.017914068, 0.00470749382, 0.00688950811, 0.0149508379, 0.00752929598, 0.00581870461, 0.0124388281, 0.0259686634, 0.0148700234, 0.000196987399, 0.0104790563, -0.0120347515, 0.00428994792, 0.0159610305, 0.0249180645, -0.0138598308, -0.0139406463, 0.00952274166, 0.0134018781, -0.0329457223, 0.0108696632, -0.00563350273, 0.026103355, 0.0111188442, -0.0169846918, -0.00258945837, 0.0200826135, 0.0218605511, 0.00622614846, -0.0021045662, -0.00782561861, 0.010633952, 0.0230054334, 0.00697705802, 0.005700849, 0.0137184048, -0.00836438779, 0.00380842295, -0.00224094209, -0.00452565914, -0.000421755074, -0.00691644661, -0.00145551795, -0.000382610131, 0.0111592514, -0.010741706, 0.00184696727, 0.00228303345, 0.00335215311, 0.000541715359, 0.0128967818, 0.0269519165, 0.0176446829, -0.00608135434, 0.0188973211, -0.0207426045, 0.0136039164, 0.00956988335, 0.0140214618, 0.00512503972, 0.00264670257, -0.00253894879, -0.0302249379, 0.0178063139, -0.000613691518, -0.0271674246, -0.004532394, 0.0108359903, 0.002101199, -0.0010505995, -0.00559309497, -0.0219009575, 0.0140753388, -0.0142504387, -0.00923315249, 0.00648206379, 0.00160704681, -0.0225070734, 0.00476473803, 0.00291777053, -0.0030154225, 0.0134692239, -0.00879540294, -0.0235980805, 0.00830377638, 0.0209581126, -0.0068592024, 0.0116037363, 0.0164324529, 0.00327807222, 0.00277297641, -0.0154222613, -0.00352556934, -0.0084452033, -0.0191262979, -0.0172136687, -0.0112063941, 0.00928029511, -0.00163566892, -0.0133682042, 0.00353567116, -0.00132419309, 0.0163920447, 0.0038218922, 0.00796031114, -0.018627936, -0.023018904, -0.024837248, -0.0415390879, -0.02412338, 0.0149912462, -0.000505095872, -0.015826337, -0.00915233791, 0.031922061, 0.00773133431, 0.0135163665, 5.74020451e-05, -0.00415188819, -0.0187626295, 0.0193283353, 0.00222410564, 0.0226552337, 0.0177793745, -0.0396264568, -0.0135567738, -0.00195303746, 0.013738608, -0.00360301742, 0.0256454013, -0.0103174252, -0.00451555708, -0.00394648267, -0.0061520678, 0.0104790563, -0.00233185943, 0.00348516158, 0.00785255712, 0.0196650662, 0.0142773772, -0.0270192623, -0.00905131828, 0.0144659467, -0.014344723, 0.00133766234, -0.00299858605, 0.0107349716, -0.00225441135, 0.010081714, 0.000381978782, -0.00131324935, 0.0142639084, -0.00338582601, -0.00172911165, -0.00960355625, 9.41135659e-06, -0.00270057935, 0.018021822, -0.0204732195, -0.0065696137, 0.00418219389, 0.000159315663, 0.0168499984, -0.0289318934, -0.00987967569, -0.00717236148, -0.0103713023, 0.00907152239, -0.0217797346, 0.00674471399, -0.00824989937, -0.00128462724, -0.0190320127, 0.00676828483, 0.0167287756, 0.00812194217, 0.0197728202, 0.00117098063, -0.00665042922, 0.0145737, 0.00338919344, -0.00447851699, -0.00498024561, 0.00903784949, 0.00943519082, -0.035774257, 0.00350199826, 0.0186683442, 0.0042394381, 0.0176850911, -0.0137049351, -0.00645512529, -0.00556952413, 0.0108629288, 0.0139271775, -0.00260461122, 0.00868091453, 0.00840479601, -0.0171732605, 0.00918601081, -0.00580186816, -0.0175369289, 0.0139810545, 0.00948906783, 0.00606788509, -0.00551564712, 0.00309792138, 0.0122569939, -0.0208503585, -0.0116508789, 0.0099066142, 0.0233825725, 0.00558299338, 0.0317873694, 0.00416199025, -0.0140618701, -0.00734746177, -0.00207931153, 0.000472264655, 0.00489606289, -0.00238741981, -0.0194226205, -0.00857989583, 0.00210961723, -0.00221063639, 0.00364005775, 0.00426300941, -0.0394648239, -0.00545166852, -0.00229987, 0.0219683032, 0.0155434841, -0.00589615293, 0.00120549556, -0.00474453392, 0.00536748581, -0.00996049121, -0.0282045547, 0.0022375749, -0.00796704553, -0.0166748986, 0.0012450614, -0.0178332515, -0.00186717114, -0.00220221817, -9.00754312e-05, -0.0151798148, -1.92304742e-05, -0.00296491291, 0.00725991139, 0.00555605488, 0.0202577133, 0.00232344121, 0.00591635657, -0.0137790162, 0.00563687, 0.0100480411, -0.0148161463, 0.00449535344, 0.00360638462, -0.0124994395, -0.0346967205, 0.0166614298, -0.00966416765, -0.00327975606, 0.0138328932, -0.0236384869, 0.00155401172, 0.0076437844, 0.00141847762, 0.0224397276, 0.0057580932, -0.0257935636, 0.00617227191, -0.0307367686, -0.0034026627, 0.0100076329, 0.0146545153, 0.00419229595, 0.0030709831, -0.00530013954, 0.0091658067, 0.00825663377, 0.00595676433, 0.00340603, 0.00765051926, 0.0162034761, -0.000234448671, 0.0151798148, -0.00709828082, -0.00164408714, 0.0207291357, 0.00470412662, 0.031949, -0.00534728169, -0.00577156246, 0.0106474217, -0.0161765385, -0.00308950315, -0.0104655866, 0.0012745253, 0.0122839324, 0.0151394075, 0.00390944211, 0.0240964405, 0.0102635482, 0.0120886285, 0.0183046758, -0.0148700234, 0.00931396801, 0.0173752978, 0.0201499593, -0.00615880266, 0.00410474604, -0.0261841714, -0.0166075528, -0.00622614846, -0.00041880869, 0.0133682042, 0.00292450516, -0.00462331111, 0.0128765777, -0.0200960822, -0.0149508379, -0.0208907668, 0.00607462, 0.00617563911, 0.0103106909, -0.00664369483, 0.0104790563, 0.00533044524, 0.00164745445, -0.002266197, 0.00782561861, -0.0124320937, -0.00369393453, -0.00509810122, 0.00335888774, -0.00195808848, -0.0127149476, 0.0109572131, -0.00137301895, -0.00319052231, -0.0123310741, -0.0258205011, -0.00406097108, 0.0101625295, -0.0218336117, 0.00933417212, -0.000222873568, 0.0159206223, -0.0164189842, 0.0145871695, 0.00833744928, 0.015112469, 0.0115902666, 0.00416872464, -0.006539308, -0.0102635482, 0.0053136088, 0.00359291537, 0.000619584287, 0.00106406864, 0.012883313, 0.00587931601, -0.00703093503, 0.00948906783, -0.00125011231, 0.0061150277, 0.00705787307, -0.00037292912, -0.0098392684, 0.0126476008, 0.0106608905, -0.0104992604, 0.0387644246, 0.0309253372, 0.000128378539, 0.012007813, -0.0161496, -0.0064450237, 0.0177389681, -0.0112265982, 0.0275041554, 0.00233185943, -0.0131796356, -0.0121492399, 0.0153145073, -0.0138194235, -0.0221164655, -0.00105565041, -0.0377677046, 0.00260292739, -0.0231266581, -0.0228842106, -0.0144120697, -0.0001453203, 0.00475800317, -0.0207426045, -0.00324271573, 0.0167153068, -0.00078668684, 0.0169981606, 0.00535401655, 0.0272078328, -0.0026264987, -0.00820949208, 0.0163920447, 0.0184528362, 0.00134692236, 0.00379495369, -0.0014412069, 0.015004715, -0.0130516775, 0.00203216914, 0.00722623849, -0.000476473797, -0.00902438, 0.00427647866, 0.00888968725, 0.00276624179, 0.0189107899, 0.0196111891, -0.0224936046, -0.00389260566, 0.00962376, -0.0140484, 0.031706553, -0.0064719622, -0.000647364592, 0.0206348505, -0.00551564712, 4.0644436e-06, -0.00089317793, 0.0142100314, -0.027032733, -0.00985273719, -0.0217527971, 0.0175099913, 0.00470749382, -0.0060577835, 0.0270866081, 0.00513177412, 0.0163516384, 0.0111996597, 0.0155030768, 0.0251201019, 0.000468476443, 0.0053439145, 0.0168499984, 0.00868091453, 0.00903111417, -0.00454923045, -0.0125398478, -0.0143716615, 0.0050172857, -0.00359291537, 0.0214564726, 0.0101625295, 0.0142504387, 0.00242446037, -0.0116508789, -0.0143043157, 0.00434045726, 0.0136039164, -0.015099, -0.00507116271, -0.00762358075, -0.00386903458, 0.0076101115, 0.0188434441, -0.00856642611, 0.00484218588, -0.000889810617, -0.00745521532, -0.00119876093, -0.000198881506, -0.00122569932, -0.010795583, -0.0192744583, 0.0161900073, -0.0124994395, 0.0136173852, -0.00959682185, 0.00684573315, -0.0143581927, -0.0246082712, 0.00276624179, 0.000387029722, 0.00590625452, 0.0253221411, -0.0149373692, -0.0203115903, 0.0120549556, 0.000516881468, -0.00715889223, 0.00289083226, -0.00791316852, 0.00479841093, 0.0142504387, -0.0026248151, -0.000811941631, -0.0132065741, -0.00240762369, -0.00822296087, 0.00283695525, -0.0287702624, 0.018183453, -0.00118192437, 0.00938804913, 0.0192071125, 0.0120212818, -0.00519238599, 0.015220223, -0.00155822083, -0.0104049752, -0.0109774172, 0.0161091909, 0.00473106466, -0.0274906866, 0.010526198, 0.0127822934, -0.0230862498, -0.0053102416, -0.00740133831, -0.0143043157, -0.00722623849, 0.00574462395, -0.0169173442, 0.0121829128, 0.00348852901, 0.00928029511, 0.00212813728, -0.0147353308, -0.0188030358, 0.0218336117, 0.0222915653, -0.0100749796, 0.0194630288, 0.0139810545, -0.0124320937, -0.0105396677, -0.0112468023, 0.0191801749, 0.00179645768, -0.0113343522, -0.0203654654, 0.010277018, 0.0149239, -0.000777847657, -0.0255645867, 0.01873569, 0.00865397602, -0.00095042208, -0.00586584676, -0.0118529173, 0.0225474797, 0.00369730196, 0.0117114903, 0.0124522969, -0.0215776972, 0.00272415043, 0.0191936437, -0.00923988782, -0.00170217315, 0.000535401632, 0.0176446829, 0.00722623849, 0.0114421053, -0.0161900073, 0.00873479154, 0.0380370878, -0.00581197, 0.00534728169, -0.0195034351, -0.0154087916, 0.00619584275, 0.0101962024, 0.00445494568, -0.00581533741, -0.000524457893, -0.0223454423, -0.00837112218, -0.00164408714, 0.0125129092, 0.00433035567, -0.0137116695, -0.00588268368, -0.000258440734, 0.00591972377, -0.00511157047, -0.0108966017, -0.00634737173, -0.000774059445, 0.00344812125, 0.0146545153, 0.0042124996, 0.0191801749, -0.00334541849, -0.00352556934, 0.0147083923, 0.0124859707, 0.00908499118, -0.0116643477, 0.00204227096, -0.010135591, 0.00828357227, -0.01873569, -0.0125061739, -0.00157253188, 0.00663359277, 0.01648633, -0.0215776972, -0.00339929527, -0.00264165155, -0.00381179038, 0.0224666651, 0.0135298353, 0.0160014387, 0.00259450916, 0.00711175, -0.0160418451, 0.000688614091, 0.00709154643, -0.00864724163, -0.00808153395, 0.0221838113, -0.012829436, 0.0165267382, 0.0155030768, -0.0198536366, 0.0103645679, 0.00437076297, 0.000846456503, -0.0279621091, 0.000523195136, -0.00463341316, 0.00364005775, 0.0159206223, 0.00293123978, -0.00798051525, 0.00646522734, 0.0261302944, 0.00223925849, -0.00851928443, -0.00182507979, 0.0102635482, -0.000882234133, -0.0166344922, 0.00802765694, 0.00280159852, 0.0136173852, -0.0105666062, 0.00123075035, 0.0162708219, -0.0195977204, 0.00122149021, 0.0209177043, 0.00984600279, 0.00295312726, 0.0297939237, 0.0314371698, -0.00778521132, 0.0233556349, 0.0261707027, -0.00241099112, -0.00523279328, -0.0124994395, -0.015099, -0.00247665355, 0.00607798714, 0.0148969619, -0.0209985208, -0.014614108, -0.00839806069, 0.00698379241, 0.000627160713, 0.0101221213, 0.00428658025, 0.0170250982, 0.00308445236, -0.0122569939, -1.43636644e-05, -0.0148296151, 0.00564023759, -0.0229380876, 0.0285816938, -0.0112265982, -0.00321409362, 0.0263592713, -0.00850581471, 0.014667985, -0.00398015557, -0.00150350214, 0.0056974818, -0.00217191223, 0.00911193, -0.00522605889, 0.0105059948, -0.0108157871, 0.00113730761, -0.00106911967, -0.0109100714, 0.0110178255, 0.0155704226, -0.00530350674, 0.0268441625, 0.00338245882, -0.0072195041, -0.0122637283, 0.0173618291, 0.00685246754, -0.0219144262, -0.00439433428, 0.0212948434, -0.0148834921, 0.0177255, 0.0318412445, 0.0256319325, -0.00512840692, 0.00383536145, 0.00732052326, 0.0119674057, -0.00847214181, -0.000609061448, -0.00987967569, 0.00758990739, -0.0075764386, -0.00169459672, 0.00310633983, 0.00622278126, -0.00954294484, -0.0221029967, -0.0222107507, -0.0110919056, -0.00448861904, -0.0206887275, 0.0195573121, 0.0239752177, 4.4195891e-05, 0.00322419545, 0.0126206623, 0.0362322107, -0.0266690627, 0.000800156093, -0.0222511571, -0.0181969218, -0.0115161864, 0.00586921442, -0.0170116294, 0.0240425635, -0.0192475207, -0.00333868386, -0.0122637283, -0.00428994792, 0.00468392251, 0.00755623449, -0.00100008992, -0.00333363283, -0.00344307022, -0.00682552904, 0.0112063941, 0.0229380876, 0.00711175, 0.00154559338, -0.00133513683, 0.0148969619, 0.0130449431, 0.00514524337, 0.0149643077, 0.0109504787, 0.00926682632, -0.0103915064, 0.0126273977, 0.0122300554, 0.000526983407, -0.0229246188, 0.0281237401, -0.0162977614, -0.0125667853, 0.00410811324, 0.0204866901, 0.0125196436, 0.0178736597, -0.00192441535, -0.0162034761, -0.0125937238, -0.011563329, -0.00899744127, 0.00461320905, 0.00303731, -0.00490953214, -0.00673124474, -0.0309522767, -0.00408454193, -0.00318042049, 0.000626739813, 0.00572442031, -0.0182777364, 0.00156916457, 0.000912539894, 0.0107349716, 0.00440106867, -0.0024648679, 0.00134860608, 0.0138328932, -0.00449198624, 0.0139137078, 0.0271000788, 0.00212982111, -0.0105935447, 0.0129035162, -0.00706460793, 0.00218706531, -0.00220221817, -0.00429331511, 0.00155822083, -0.0136779966, -0.00568064535, -0.00946886465, 0.0346428454, -0.000194041, -0.00357607892, -0.00148582377, -0.006084722, 0.00266522262, 0.00865397602, -0.0228976812, -0.0197189432, 0.0285278168, 0.00245139864, 0.0110717015, -0.00745521532, 0.00305077923, 0.00174258079, 0.00572442031, -0.0110178255, 0.00574462395, 0.00846540742, 0.00505095907, 0.0137251392, -0.0227360502, 0.0138059547, 0.0111659868, -0.00882907584, -0.00482871663, -0.00842499919, 0.0034026627, -0.0100413067, -0.000638946309, -0.0159340911, 0.00736766541, 0.00669420417, -0.00167018373, -0.0184393674, 0.0207560733, -0.014721862, -0.00864050724, 0.00109353266, -0.0139406463, -0.00234027766, 0.000102544989, 0.0167287756, 0.00331511279, 0.00774480356, -0.00468392251, -0.021267904, 0.011509452, -0.0141830929, 0.000554763654, -0.0135702426, -0.0186144672, -0.0164189842, 0.00332858204, 0.0125129092, 0.00791316852, 0.0180622283, -0.0013578661, -0.0110380286, -0.0065696137, -0.00938804913, -0.00262144767, 0.00771786505, 1.39690583e-05, -0.00806133077, -0.00367036345, -0.00583217386, 0.0101153869, 0.0138328932, 0.00998743, 0.0102702836, 0.0135635082, 0.015826337, 0.00877519883, 0.000626318913, 0.0128631089, 0.00747541897, -0.00283022062, 0.00713868858, -0.00509473402, 0.00305414642, -0.0334844887, 0.000935269229, 0.01206169, 0.0064416565, 0.0226821732, -0.0189781357, 0.0289318934, -0.0242580716, -0.00952947605, 0.000144162783, -0.0108831329, 0.0100951828, 0.00227461522, 0.00942845643, 0.0104992604, -0.0121492399, -0.00422260165, -0.030709831, 0.0256858096, 0.0143177845, -0.0116845518, 0.0177255, 0.0141696231, 0.0122300554, 0.000976518728, -0.0138733005, 0.00127789262, 0.0144255385, 0.00715215784, -0.0014412069, -0.00779868057, 0.00258777454, -0.0230862498, -0.00582207181, -0.00268037547, 0.0030457282, -0.00474790158, 0.0183854904, 0.0139945233, 0.0178197827, 0.00596013153, 0.00432025362, 0.0037882193, 0.00661338866, -0.0156647079, 0.0363399647, -0.0117114903, -0.0129371891, -0.0145332925, -0.00239583827, -0.0102231409, -0.025551118, 0.0200691428, -0.00330501073, -0.0162842907, -0.00348516158, -0.0108023174, -0.0106743602, 0.00987967569, -0.00715889223, -0.00385893253, 0.0170520376, 0.00952947605, -0.00125684694, -0.0196515974, 0.0028487409, -0.00779868057, -0.00154054246, 0.00251537748, -0.0024615007, -0.00475463597, -0.00853948761, -0.00857989583, -0.0140484, 0.000678091252, 0.0128631089, -0.00203385274, -0.00100935, 0.00615543546, -0.0267364085, 0.0108225215, -0.0180487595, -0.00194293552, 0.00602074293, -0.00359965, 0.00883581117, 0.0288241394, 0.0175234601, -0.0352624282, -0.00956988335, -0.00740133831, 0.00645175809, -0.0117249591, -0.0200287364, -0.00781215, 0.00577156246, 0.013132493, 0.0167287756, 0.00470749382, 0.00242614397, -0.0116239404, -0.00227798242, -0.0141696231, -0.00272583426, 0.00374781154, 0.00513514178, -0.00639788108, 0.0061790063, 0.00165503088, -0.00485565513, -0.0148969619, -0.0213487204, 0.0287433229, -0.00867418, 0.000701241486, 0.026264986, -0.00439433428, 0.012580255, -0.0127688246, 0.0153549155, -0.0102298753, -0.00849234592, -0.0226148274, -0.0042057652, -0.00282853702, -0.0266555939, -0.0278812926, 0.00256925449, 0.0146275768, 0.0157859307, -0.00557625853, 0.000425964216, 0.00142352853, 0.00552238151, 0.00225272775, 0.00853275321, -0.0107349716, -0.0169038754, 0.018520182, -0.00359291537, 0.000891494274, 0.00421923446, -0.00955641456, 0.00552911637, -0.0300902463, -0.01944956, -0.0227360502, -0.00635747379, -0.00907825679, 0.0248641875, -0.0083172461, -0.0123378094, 0.0224531963, -0.0133008584, 0.00742827682, 0.00463678036, 0.0183854904, -0.0069299154, -0.00398015557, -0.00205068942, -0.00327638863, -0.00507116271, 0.000716394337, 0.000254862971, -0.022803396, 0.0248103105, -0.00254063238, 0.00998743, -0.00152707321, 0.00893683, 0.00105817593, 0.0065696137, 0.00920621399, -0.000521932438, 0.0280968, -0.024729494, -0.00562676834, 0.0164593905, -0.0282045547, -0.0117384288, -0.000680195808, 0.0132065741, -0.0017442645, 0.0073137884, 0.0111592514, 0.024945002, -0.00316695124, 0.00779868057, 0.00734072691, -0.00101271726, 0.00306256465, 0.00774480356, 0.00765725365, 0.0184932444, 0.00161714863, 0.00864724163, -0.00219716714, -0.00670767343, 0.00195808848, -0.00408454193, -0.00827010348, 0.0105396677, -0.00325450115, 0.0214025974, 0.0157859307, -0.0125398478, -0.0147757381, 0.016594084, -0.0226821732, 0.00485565513, 0.0083172461, -0.0140214618, 0.0252952017, 0.0155300153, -0.0129978005, 0.00245139864, -0.0121492399, -0.0153818531, -0.0161496, -0.0120347515, -0.0128227007, 0.0102702836, 0.0130718816, 0.0363399647, 0.00292618875, 0.0158128683, 0.00474116672, 0.00141763582, 0.00299185142, -0.00600390648, 0.0281237401, -0.0348044746, -0.0106743602, 0.0205001589, 0.0187626295, 0.0125600509, -0.00765051926, 0.0230323728, -0.00663696, 0.00554932, 0.00183518173, 0.00452565914, 0.00191768073, 0.0107215019, 0.00465361681, -0.0385489166, -0.00395995192, 0.00882907584, -0.00723297335, 0.0161900073, 0.00696358876, -0.0104319137, -0.0221164655, -0.0133884083, 0.0019395682, -0.0317604281, 0.00921968371, -0.0146814538, 0.0129237203, 0.0122435242, -0.0177928451, -0.00801418815, 0.00876846444, -0.00442464, -0.00533381244, 0.0128631089, -0.00561666628, 0.00132419309, -0.0176581517, -0.00340771372, -0.030332692, -0.00643828884, -0.0115902666, -0.00971131, -0.0280429237, -0.00113225658, -0.0156647079, 0.0128361704, -0.00098072784, 0.00570421619, 0.0295784157, -0.00450545549, 0.00126358157, -0.0226148274, -0.000810678932, -0.0312216599, -0.0045626997, 0.00795357674, 0.0216585118, -0.033619184, -0.023463387, -0.00130483101, -0.00125600514, -0.0199075136, -0.00585237751, 0.0121223014, -0.00207089307, -0.0365285352, 0.00298006576, 0.00963049475, -0.027692724, 0.0176985599, -0.0220625885, -0.00791316852, 0.00162893429, 0.0112670055, -0.0024598171, 0.0110312942, -0.0144120697, -0.0145332925, -0.00908499118, -0.00728685, -0.0205809735, -0.0294976, -0.00951600634, -0.00348179438, -0.00266185543, -0.00674808118, -0.00721276924, 0.00265175337, -0.0172675457, 0.00668073492, -0.00840479601, 0.00860683434, -0.0118057746, -0.00304909563, -0.0204732195, -0.0296592303, -0.018520182, 0.0134422854, 0.0110245598, -0.00503075495, -0.0218605511, 0.0193552747, -0.0153145073, 0.0182103906, 0.00284705707, -0.01206169, -0.00136965164, -0.00604431424, -0.00182171247, 0.00317536946, 0.00497014355, -0.0125869894, 0.00447515, -0.000172258748, -0.0083239805, 0.0183585528, 0.0065359408, -0.0026551208, 0.00403403258, 0.0223858505, 0.005700849, 0.000161630684, -0.00652920641, -0.00313664554, -0.0019109461, -0.00369730196, -0.00377138262, -0.00226282957, -0.0104117095, 0.0191262979, 0.0036872, -0.00696358876, -0.00826336909, -0.0126004592, -0.0192879289, -0.0264400858, -0.00140669208, -0.0223993193, 0.00645175809, -0.0242041945, 0.00763031514, -0.0129304547, 0.0131594315, 0.00822969526, 0.00822969526, 0.0113612907, -0.0008174135, -0.0318951234, 0.00535064936, -0.00904458389, -0.0142908469, 0.0348044746, 0.00715889223, 0.0187895671, 0.00965069886, -0.00277129281, -0.0145198228, 0.0137520777, -0.00400372688, 0.0116778174, 0.00628676033, -0.0119943442, -0.000456690876, -0.00196145568, -0.00606115069, -0.0129169859, 0.00666726567, -0.00782561861, -0.0207964815, 0.0117788361, -0.0377407633, -0.0188299753, 0.00788623095, 0.00973151438, 0.0202307738, 0.0189916063, -0.0090917265, -0.021214027, -0.024392765, 0.0278543551, -0.0203519966, -0.00139069732, -0.00998069439, -0.0200960822, 0.0189107899, 0.016755715, -0.0263458025, 0.00663359277, 0.00801418815, -0.00543146441, -0.0068322639, -0.0103645679, -0.0072801155, -0.00614196621, -0.0118798558, -0.00213992293, -0.0313832909, -0.00215675938, 0.0174965225, 0.00720603485, 0.0190589521, -0.000234659135, 0.0121290358, -0.00360975205, -0.00809500366, 0.0129506588, 0.0212409664, 0.0202981196, -0.0076437844, -0.0183046758, 0.00610829284, -0.01944956, -0.0143312542, -0.00620931201, -0.0253221411, -0.0188030358, -0.00591972377, 0.00294807646, 0.0056974818, -0.00939478353, -0.014344723, 0.0128024975, 0.013900239, -0.0224531963, -0.0108831329, -0.00465698401, 0.0232748184, 0.00655951211, -0.00965743326, -0.0210793354, -0.000541294459, -0.00704440381, -0.018129576, 0.0107080331, -0.00888968725, 0.0332420431, 0.00556952413, -0.0189242586, -0.0223858505, 0.0224666651, 0.00384209608, -0.000181097916, 0.00618574116, 0.0155300153, 0.00876846444, 0.0169038754, 0.00633390248, 0.00577156246, -0.00894356426, -0.00351883471, 0.00787949562, 0.0175234601, 0.00837785751, -0.00434045726, -0.00190421147, 0.0221703425, 0.0264266171, 0.00891662575, -0.00243287859, 0.031949, 0.0012155975, -0.00135197339, 0.00433709, -0.00182339619, 0.000249391102, -0.00598370284, -0.00198502676, -0.0240560342, -0.00482534943, 0.00886948407, 0.0100615099, 0.0141965616, -0.00108679803, -0.0161361303, 0.00105985953, -0.0204058737, -0.00806133077, -0.00134523876, 0.0310869683, -0.0183181446, -0.0146410465, -0.00223252387, -1.43110501e-05, 0.0206887275, 8.83917819e-05, 0.0136510581, -0.00431351876, 0.00159021025, 0.00775827281, -0.0129506588, 0.00161041413, -0.0152067533, 0.0227899272, 0.0100413067, -0.0170924459, 0.00239583827, -0.00992008299, -0.00371413841, 0.00390270748, 0.00130651472, 0.00122401572, -0.0228438042, -0.00572105264, -0.00387913641, 0.00705787307, -0.00129220367, -0.0112198638, -0.0176985599, -0.012775559, 0.00389597309, 0.0137520777, -0.0164459217, 0.0123782167, -0.0152471615, 0.0148969619, -0.000160157491, 0.0245543942, -0.0108629288, 0.0223993193, -0.0139945233, 0.0128698433, -0.0024951736, 0.0222511571, -0.0103645679, -0.00422596885, -0.0148834921, -0.00309623778, 0.00494320504, -0.00275445636, 9.52316186e-05, 0.0121627087, 0.0042428053, 0.0192879289, -0.000213087333, 0.000221400362, -0.0241637882, -0.0247699022, -0.00490279729, -0.000462162745, -0.00613186415, 0.0111929253, -0.0185605902, -0.0109168058, -0.00159947027, 0.00625645462, -0.0219548345, 0.0153010385, -0.0267633479, -0.0193148665, 0.0389529951, -0.0134490198, -0.0028487409, -0.0068625696, -6.01905922e-05, 0.0124792354]
|
16 Feb, 2021
|
Fabric.js Textbox cornerStyle Property
16 Feb, 2021
In this article, we are going to see how to set the style of controlling corners of the canvas Textbox using Fabric.js. The Textbox in Fabric.js is movable and can be stretched according to requirements. Further, the Textbox can be customized when it comes to initial stroke color, height, width, fill color, or stroke width.
To make it possible, we are going to use a JavaScript library called Fabric.js. After importing the library, we will create a canvas block in the body tag which will contain the Textbox. After this, we will initialize instances of Canvas and Textbox, set the style of controlling corners of canvas Textbox using cornerStyle property, and render the Textbox on the Canvas as given in the below example.
Syntax:
fabric.Textbox('text', {
cornerStyle: string
});
Parameters: This property accepts a single parameter as mentioned above and described below:
cornerStyle: It specifies the style of the controlling corners. The accepted values of this parameter are rect , square, and circle only.
Example: This example uses Fabric.js to set the style of controlling corners of the Textbox as given below. You have to click on the object to see the style of controlling corners.
HTML
<html>
<head>
<!-- Adding the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/4.3.0/fabric.min.js">
</script>
</head>
<body>
<h1 style="color: green;">
GeeksforGeeks
</h1>
<h3>
Fabric.js | Textbox cornerStyle Property
</h3>
<canvas id="canvas" width="600" height="300"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Create a new Textbox instance
var text = new fabric.Textbox(
'A Computer Science Portal', {
width: 500,
cornerStyle: 'circle'
});
// Render the Textbox in canvas
canvas.add(text);
canvas.centerObject(text);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js Textbox cornerStyle Property
|
https://www.geeksforgeeks.org/fabric-js-textbox-cornerstyle-property?ref=asr10
|
CSS
|
Fabric.js Textbox cornerStyle Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js Textbox cornerStyle Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0204035025, 0.0123315789, -0.0148205794, 0.0538380221, 0.0433527157, 0.0123819895, -0.0184753146, 0.0123945912, -0.01910544, -0.0412354879, 0.0285069309, -0.00312385289, -0.00144299, -0.0523761287, 0.0190172233, -0.00717084156, -0.0295151342, 0.00116809737, -0.0165093187, -0.00222907308, -0.00360117387, -0.0316323601, -0.0436047651, 0.0116321379, -0.0148583865, 0.0373791158, 0.0176561493, 0.00745439855, -0.00805301871, 0.00924395863, 0.00229996233, 0.00178955973, -0.004237602, -0.0306241568, -0.000975908653, -0.0224325098, -0.00697550224, 0.0730442852, -0.0241212491, -0.0265661404, 0.0165219214, -0.0211974606, 0.00122953462, 0.0265661404, -0.0105483206, 0.00746700121, -0.00707632257, -0.000858547573, -0.00561127812, -0.0598368272, 0.0064430451, -0.0305233356, 0.0332454816, 0.0217015631, 0.0118085742, 0.0149970148, -0.010063123, 0.0266921651, -0.00256461557, -0.0107688652, 0.0225963425, -0.0670958906, -0.0283809043, -0.019143248, -0.0572155, -0.00723385438, 0.00511662848, 0.019521324, -0.00930697098, 0.0203404892, -0.018235866, 0.0265661404, 0.0206933599, -0.0112729659, 0.00728426455, -0.0207815785, 0.0468058102, 0.0227853805, -0.0310778469, 0.0613491312, -0.010516814, 0.00740398839, 0.00441403734, 0.045873221, -0.0268181916, -0.0175679307, 0.01880298, -0.0340520442, 0.00628551375, 0.0227349699, -0.0186643526, 0.0155641288, 0.0155641288, -0.0464025289, -0.0177821741, -0.00044345163, 0.000338496175, -0.0120291179, -0.0180342253, 0.0114178956, 0.0268433969, 0.038588956, -0.00132956728, -0.0487466, 0.0108129736, -0.0482425, 0.0268938057, -0.00258036866, 0.0301704649, -0.0165597294, 0.04179, -0.0273222923, 0.00563648297, 0.0411094651, -0.0437055863, 0.0366985761, -0.00285289856, -0.027523933, 0.0174167, -0.0042754095, -0.00222907308, -0.0120039135, 0.0154255, 0.0345057361, -0.0304225162, 0.0253058877, -0.0398996212, 0.026238475, 0.0198489893, 0.0212856792, -0.00187462685, 0.00100583967, 0.0180720333, -0.000415883609, 0.025293285, 0.0408574119, -0.00795219839, 0.019710362, -0.00739138573, 0.00717084156, 0.00369884353, -0.0139888125, -0.00460937666, 0.0162950754, -0.0103781866, -0.00768124405, 0.0383117, -0.00598620344, 0.00497485, 0.0313298963, -0.0575179644, -0.00948970765, 0.0257469751, 0.0116888499, 0.0544429459, -0.0323633067, -0.018992018, 0.0171898548, 0.0590806752, 0.00477636, 0.0278768037, 0.00717084156, 0.0113674849, 0.0234911218, -0.0266669616, -0.00549785513, 0.0154507058, -0.00392883969, -0.0440836623, 0.0216007419, -0.00772535289, 0.00844369736, 0.0190676339, 0.00914944, -0.0518216193, -0.0374799334, -0.00393829169, -0.0451674797, 0.0108381789, -0.0124197965, -0.0507125929, 0.0213864986, 0.0261628591, 0.048444137, 0.00169031485, 0.00862643402, 0.0272466764, 0.0161816534, 0.00605551712, -0.0106365383, 0.00304981298, 0.0437812023, 0.0312542841, 0.0101135327, -0.00638948428, -0.0138123762, 0.0147953741, 0.0251294523, -0.0287337769, -0.000909745402, 0.0131696472, -0.0235541351, -0.0097858673, -0.0500824675, 0.0382360853, 0.00992449466, -0.0173536893, -0.0486961901, 0.0194079019, 0.0162446648, -0.00880917069, 0.0208571926, 0.0144172981, 0.00107594125, -0.0175679307, -0.00201167935, -0.0193196833, -0.0274231136, -0.0149844121, -0.0380848572, 0.0370766521, 0.0365977585, -0.0402776971, -0.016534524, -0.0359424241, -0.00969765, 0.00868944637, 0.0304981302, -0.0142156575, -0.0238691978, 0.0062256516, 0.00489923498, -0.00602086028, 0.00723385438, 0.0565601699, 0.00548840314, 0.0024354395, -0.0205169246, 0.00627921242, 0.0058570276, 0.00708892522, -0.0129680065, -0.0271206517, -0.0152238607, 0.0282548796, 0.0410338491, 0.0114809079, -0.0183744933, -0.00408322085, -0.0211848579, -0.0137619665, -0.00863903668, 0.0104853082, 0.015627142, -0.0108192749, -0.0383873172, -0.024763979, -0.0601896979, 0.0531322807, 0.0320860483, 0.044814609, -0.0067612594, 0.0148961945, 0.0280028284, -0.00868314598, -0.00754261622, 0.00306241564, -0.0444617383, -0.0193196833, -0.0235793404, 0.033900816, -0.0580220632, 0.0322624855, -0.0299184136, -0.0114557026, 0.0358416066, -0.017819982, 0.0145055158, 0.0126781482, 0.00586332846, -0.0193070807, 0.0198237859, 0.0492254943, 0.0134090958, -0.0290614422, -0.0304981302, -0.0120921312, 0.0305233356, -0.0221300479, -0.0244363118, -0.0198363885, -0.0116699459, 0.0145181185, -0.00645249709, 0.0391182639, -0.0324893296, 0.0146441441, -0.0297671836, -0.00794589706, -0.0143794911, 0.0115124146, -0.0179838147, -0.0467049889, -0.041185081, 0.0356903747, 0.0466545783, 0.0445121489, 0.0222812798, -0.00906122196, 0.025633553, 0.00135319703, -0.0239952244, -0.0284565203, -0.00221174466, 0.00994339865, -0.00178325851, 0.0629118457, 0.0162572674, -0.0080278134, 0.0101450393, -0.0323633067, -0.00564593496, 0.0182988793, 0.0301704649, 0.048066061, -0.0136611462, 0.002118801, -0.0215629339, 0.0362700894, 0.0131444428, -0.0319096148, 0.0168747921, -0.000175057066, -0.0013965182, 0.0164337028, -0.00313330488, 0.00160918594, -0.0110902293, -0.0334975347, 0.0197985806, 0.0333967134, 0.0398996212, -0.0457724, -0.0235289298, 0.0483181141, -0.0544933528, 0.00434787385, 0.00259139598, 0.00638948428, 0.0310022328, 0.00093810109, 0.0113296779, 0.0149466051, 0.00356966769, -0.0123000722, -0.00734097557, 0.00632332126, -0.0498808287, -0.0413363092, 0.0312290769, 0.0227853805, 0.00455581583, 0.0170512274, 0.010592429, 0.041941233, -0.0342284814, -0.0152616678, 0.0225585345, -0.010157642, -0.00923135597, -0.0242346711, -0.0485449582, -0.00832397304, 0.00222119642, 0.0208697952, -0.0141400425, 0.0172024574, -0.0268938057, -0.0335479453, 0.0122874705, -0.0511662848, 0.0331698693, 0.00520169549, 0.0156649482, 0.0103340773, 0.0257847831, -0.0349342227, -0.0121488422, 0.0211974606, 0.0272466764, -0.0592319071, 0.0562073, 0.0141652478, -0.017819982, 0.00916834269, -0.0188659932, -0.0134343, -0.00582237029, 0.0220292285, -0.0409834385, 0.00471334765, 0.00602401095, -0.000508039608, -0.0283809043, -0.00145165436, -0.0512671061, -0.0409582332, 0.00906122196, 0.0149340024, -0.0210588332, 0.00318213971, 0.0113989916, 0.0274231136, -0.0257217716, 0.0421932824, 0.008739857, 0.0272718817, 0.0488978289, -0.0155137191, 0.00676756026, 0.0819164664, -0.0309518222, -0.0347073786, -0.00920615066, 0.0147197591, -0.0295151342, -0.0229114052, -0.00340583455, -0.00884067733, -0.0248647984, -0.0926538259, 0.0261124484, 0.00318213971, -0.0412102826, 0.0454195291, 0.0186517499, 0.0469066277, -0.00219599134, 0.0243480951, 0.0279776249, 0.00982997566, 0.00758672506, 0.0439324304, -0.0028450219, -0.00814123638, 0.0485449582, -0.0112729659, -0.00747330254, 0.0208823979, 0.00544744497, 0.008286166, -0.0113485809, -0.0706246, -4.75548732e-05, -0.0272466764, -0.034581352, 0.0407313891, 0.00884697866, 0.043377921, -0.0137367612, -0.00659112493, -0.027826393, 0.00253310916, 0.0203909, 0.0222812798, -0.0249404144, -0.027297087, -0.0123252776, 0.00684947707, -0.00873355567, 0.0100568216, 0.00872725435, 0.00245434348, 0.041487541, 0.0127537642, -0.000207154138, 0.00190455781, 0.00334597263, 0.00454006251, -0.024574941, 0.045570761, -0.0223442912, -0.0148583865, 0.0168243814, -0.00418719184, -0.0220796391, -0.00569004379, 0.00472595, 0.0115439203, -0.00436677784, 0.0576187819, 0.0221930612, -0.00629811594, -0.00573730329, 0.000964093779, 0.00577196, 0.0120858299, -0.0256083477, 0.0327161774, -0.0201766565, 0.00904861931, 0.0108255763, -0.000484409888, 0.0286329556, 0.0485953689, 8.95469057e-05, -0.0147197591, 0.0334975347, -0.0328674056, 0.00993079599, -0.0223568939, 0.0143290805, -0.0231634565, 0.00588538311, -0.0247765798, -0.041941233, 0.0105987303, 0.00109642046, -0.0129680065, -0.0131570445, 0.00910533, -0.0269442163, -0.00785767939, -0.0270954464, 0.0154759111, 0.0512166955, 0.00617209077, -0.0174293034, 0.00771275, 0.00100190146, -0.0239322111, -0.0120795285, 0.0234155077, -0.00799000636, 0.0192692727, -0.0281792656, -0.00827986468, -0.0249404144, -0.00486457767, -0.0255831424, -0.0640208721, 0.00296632131, -0.0258351937, -0.000623431581, 0.0146819511, 0.0311030522, -0.00596414879, 0.0116384393, -0.0170386247, 0.024763979, -0.0397988, 0.0235037245, -0.01895421, 0.0221552532, 0.0236927625, -0.0130184172, -0.00661002891, -0.0177569687, -0.0336487629, -0.00294584222, 0.0236675572, 0.0105042113, 0.0220670365, 0.0332706869, 0.00943929795, -0.0412354879, 0.0203782972, 0.000452509703, -0.0285321362, 0.00470389565, 0.0218275879, -0.0250538364, 0.0219914205, 0.0141274398, 0.0100568216, -0.00366103603, 0.0328674056, -0.0517712086, 0.0356651694, 0.025520131, 0.00627606176, -0.00282296748, -1.0498009e-05, -0.00363268028, 0.00411472702, 0.0229240078, -0.017366292, -0.0209706165, -0.0574675538, -0.0259360131, 0.0148457848, 0.0366733707, -0.0155389234, -0.00501265749, -0.028204469, 0.0270450376, 0.0153372828, 0.00529306382, 0.0235289298, -0.0285069309, 0.0226467531, 0.0237809811, 0.0112414602, 0.0386897773, -0.0139888125, -0.0257595778, 0.0194709133, -0.00746700121, 0.00715823891, 0.0384125225, 0.00396349654, -0.0209580138, 0.00469444366, -0.0130688269, -0.0205421299, -0.0227979831, 0.0381856747, 0.0364465266, -0.0105294166, -0.0115061132, 0.0238818, -0.0347577855, 0.0269442163, -0.0134595055, 0.0236045457, -0.00761823123, -0.00744809723, -0.0289354175, 0.00610592728, -0.0162320621, -0.0197355673, 0.000675023184, 0.00584127428, 0.0127033535, 0.00379966386, 0.0164589081, -0.00169661606, 0.00868314598, -0.0183996987, -0.0218275879, 0.0198111832, 0.0233020838, 0.0119598042, 0.0358920135, 0.000221332, 0.0069881049, -0.0327917933, 0.00827356335, 0.00472279917, 0.00144220237, -0.0286581609, 0.020895, -0.0244237091, 0.00661633024, -0.00588538311, 0.0362700894, -0.0127789686, 0.060441751, 0.0105231153, -0.0201766565, 0.00990559161, -0.0142912725, 0.00135240937, -0.00519854482, -0.0157909747, 0.00486772833, 0.0186895579, 0.0213991012, -0.0115880296, 0.0110335182, -0.0253436938, 0.00201640534, -0.0135477232, -0.0134847108, 0.0154885137, -0.0189416073, -0.0217141658, 0.0175931361, 0.0362952948, -0.0119850095, 0.008834376, -0.0304729249, 0.00379336253, 0.0118967919, 0.0244363118, 0.00281981681, -0.0356903747, 0.0217519719, -0.00228893524, 0.00399500318, 0.0217393693, 0.0143794911, 0.0118337786, 0.00555456663, 0.0287085716, -0.0100190137, 0.00601455895, -0.0293639023, 0.000213849242, -0.00274420157, -0.00898560602, -0.00292221247, -0.0144172981, -0.00266701123, -0.0320860483, 0.0361188613, -0.00890369, 0.00251263, -0.00904861931, -0.0151482448, 0.0206555519, 0.0182988793, 0.00923135597, 0.00433842232, -0.0150978351, -0.0113611836, 0.00477005867, -0.00701330975, -0.00179428572, 0.0193826966, -0.000932587485, 0.00521429814, 0.0123189762, -0.0391686745, 0.0190802347, -3.3937e-06, -0.0253941044, 0.0079585, 0.00276625599, -0.00652811211, -0.00158713153, 0.00127206824, -0.0294143129, -0.0174545087, -0.0188911967, 0.0154255, 0.00766234053, 0.0134216985, -0.0227475725, 0.00215975917, -0.0068935859, -0.0264905244, -0.0221678559, -0.00943929795, -0.0159548074, -0.00927546434, -0.0087902667, 0.025633553, 0.0174167, 0.0127159562, 0.00729686674, -0.0194961186, 0.0301200543, -0.0134343, 0.0131822499, -0.00551360846, -0.0132200578, 0.0196473505, 0.00158634386, 0.0294143129, -0.00344364229, 0.042999845, -0.0400004424, 0.054291714, -0.00881547201, 0.00954641867, -0.00950231, 0.00437938049, 0.0133208781, 0.0274231136, 0.00258824532, -0.0170008168, 0.0181098413, 0.000537970627, 0.00178955973, 0.0100568216, -0.00667934259, -0.0362952948, -0.010327776, 0.00890369, -0.00381856761, 0.019294478, 0.020617744, 0.0243985038, 0.00686207926, -0.0128104752, -0.0083365757, -0.0283052903, 0.000744337158, 0.027297087, 0.0137745691, 0.0106743462, 0.0267929863, 0.0114494013, -0.00794589706, -0.0175049193, -0.0263392944, -0.00364213227, -0.004511707, -0.0162194613, -0.0264905244, -0.00330186379, 0.0221300479, -0.0108003709, 0.0331698693, 5.75482882e-05, -0.0184501093, 0.00565853762, -0.00880286936, -0.00309234671, -0.0139888125, 0.00579086412, -0.00799000636, -0.00305768964, -0.000391269277, -0.0130562242, 0.0182862766, 0.00917464402, 0.0146819511, 0.0349342227, 0.0123441815, 0.00117203558, -0.0185509287, -0.00273632514, -0.0611474924, 0.0447894037, 0.0469066277, -0.000758121139, 0.0123126749, -0.00533717312, -0.0303216949, 0.0131444428, -0.0294899289, 0.0203909, 0.00724645657, 0.00627291109, 0.00371774728, 0.0221930612, 0.0177947767, 0.0143542858, -0.0229240078, 0.0310778469, -0.00755521888, -0.0191558506, -0.0129175968, 0.0181350447, 0.00993079599, 0.0548966341, 0.0217267685, -0.0368750133, 0.0163328834, 0.0137871718, 0.028960621, 0.0230248291, 0.0164841134, 0.0124576045, -0.018198058, 0.0124071939, 0.00628236309, -0.0372530892, -0.0103340773, 0.00919984933, -0.0025236574, 0.0164463054, 0.0298175942, -0.0582741164, 0.00812863372, 0.00957162399, -0.0357407853, 0.0036925422, -0.0122937709, 0.000216999877, 0.0258856043, 0.00740398839, 0.0182988793, 0.00628236309, -0.0181224439, 0.0328926109, -0.0206807572, -0.000876663718, -0.00699440623, -0.0205043219, -0.029716773, 0.00408952218, 0.00678646425, 0.00358857145, -0.0143038752, -0.0311786681, -0.0010389213, -0.0439828411, -0.0146567468, -0.0184501093, 0.0195465293, -0.0397735946, 0.0119661056, 0.047687985, 0.0083365757, -0.0134343, 0.00446129683, 0.0175679307, 0.00887848437, -0.0185635313, 0.00584757561, -0.0284061097, 0.0198867973, -0.0138249788, 0.017819982, 0.0058097681, 0.00946450233, 0.0347073786, 0.0257595778, 0.0145559264, 0.00839958899, -0.00570894778, 0.0302964896, 0.0178325847, -0.0028592, 0.0299436189, 0.0131570445, -0.00488348166, -0.0106365383, -0.004596774, 0.00391308684, 0.035337504, -0.0234281104, -0.00597990211, -0.0202270653, -0.0130940322, -0.0136737488, 0.000352870935, 0.0172654707, 0.024953017, 0.0270198323, -0.0167361647, 0.0133460825, -0.00502210949, -0.0130184172, 0.00301673147, -0.0070826239, -0.0302460808, 0.0300948489, 0.0104664043, 0.000647849, -0.0113422805, -0.0336235575, -0.0548462272, -0.00663523376, 0.00402966, -0.00979216862, 0.0295151342, -0.000259533437, 0.0330690481, 0.03601804, -0.0198867973, -0.00560497679, 0.00299940305, -0.00426910818, -0.000441482494, -0.0134469029, 0.00625085644, 0.00770644937, -0.0126655465, 0.0113674849, 0.0100694243, 0.036774192, -0.0398996212, -0.0167361647, 0.00749220606, 0.00429116283, -0.00923135597, -0.00994339865, 0.0207815785, 0.0136107365, 0.00362637895, 0.004237602, 0.0040611662, 0.0250790417, -0.0180972386, -0.0219032038, -0.0209202059, 0.0311282575, 0.0130562242, 0.0150222201, 0.00741028972, 0.0128986929, 0.0147071565, 0.0215755366, 0.00761823123, -0.01895421, 0.0183240827, 0.0123819895, -0.0146315414, -0.025860399, -0.0110965306, 0.0205547325, 0.0176057387, 0.00611853, 0.0102899689, -0.0238691978, -0.0101324366, -0.00804671738, 0.00526155764, -0.0184123013, -0.00556716928, 0.0056805918, 0.0337495841, -0.0125836292, 0.00447705, -0.00467869034, 0.0364465266, -0.0541404821, 0.0168243814, -0.0111217359, -0.00560182612, 0.00976066198, 0.0461252742, -0.00407376885, 0.000277649553, -0.00735987956, 0.035639964, -0.0101072323, 0.00564908562, -0.00546634896, 0.0145181185, -0.0100820269, 0.00787028205, -0.0095968293, 0.0128293792, -0.00519224396, -0.01895421, 0.00090817007, 0.00037039633, -0.00465033483, -0.0139005948, 0.000567901647, -0.000456448, -0.0143164778, -0.0427982025, -0.0243606977, -0.0117014525, -0.017895598, 0.00875876099, -0.00503471214, -0.00200222759, -0.00620359695, 0.00655331742, -0.0236801598, 0.00173127302, -0.00367678911, 0.00398240052, -0.00256304024, 0.0181476474, 0.00394774368, -0.00539703481, 0.018916402, -0.0161438454, -0.0334723294, -0.0163076781, 0.0143038752, 0.00488348166, -0.0225963425, 0.00192661234, -0.0134721082, -0.0366733707, -0.018916402, 0.0392190851, 0.00681797042, -0.00835548, 0.00208414393, 0.00394459302, 0.00280878972, 0.01895421, 0.00625085644, -0.00331446622, 0.0166353434, -0.0300192349, -0.000550573168, 0.00517649064, -0.0175805334, -0.0106680449, 0.0262132697, 0.00187777751, 0.0291118529, -0.0127348602, -0.0150474245, 0.00583182229, 0.0153246811, -0.0194079019, 0.00390363461, -0.0237809811, -0.0179334059, 0.0134343, -0.00636112876, -0.00989298895, -0.000297537947, -0.0286833663, -0.00581921963, 0.058626987, 0.00063091435, 0.00218811492, -0.0341780707, -0.0112225562, -0.0453943238, -0.00296317064, 0.0366985761, -0.00448335148, -0.0323633067, 0.0197733752, 0.0108696846, -0.00223222375, 0.0205799378, -0.00675495807, -0.0114304982, 0.00117597391, 0.00564278429, 0.0295655429, -0.0220796391, -0.0120165152, 0.00884067733, -0.0107562626, -0.0136485435, -0.004322669, -0.0211974606, 0.00678646425, -0.0177191626, 0.00700700842, 0.0146945538, 0.00466608815, -0.0124765085, 0.0340016335, -0.0068116691, 0.00761193037, 0.0182988793, 0.0225963425, -0.0235289298, 0.00445499551, 0.0221426506, -0.00996230263, 0.0144299008, 0.0112666646, -0.0250034258, 0.000942039362, 0.0185005199, -0.000518673041, -0.0100127133, -0.0176561493, -0.00222907308, -0.0144046955, 0.0088847857, -0.0407313891, 0.00515443599, 0.0203530919, -0.00897930469, -0.00215818384, -0.0115502216, 0.0194457099, -0.026540935, -0.0160556268, 0.000747487764, -0.0214117039, 0.0227475725, 0.0220418312, -0.0178451873, -0.0237305705, 0.03352274, -0.010138738, 0.0227727778, -0.00163360336, 0.0277255736, 0.03571558, 3.29831928e-05, -0.041865617, -0.000292615063, 0.00875876099, 0.0207815785, 0.00893519633, -0.00288913073, 0.010308872, -0.00655961875, -0.018992018, -0.00580346677, -0.0161312427, 0.0299940296, -0.0159043968, -0.00775685953, 0.00206839084, 0.0306997709, -0.0314055122, -0.00179428572, -0.0238313898, 0.0294143129, 0.00672345143, -0.0236675572, -0.00188250339, 0.00106570171, -0.00596729945, -0.0123189762, -0.037152268, 0.028431315, 0.0364213213, 0.018992018, -0.00137446378, -0.017101638, 0.0213108845, -0.000612404372, -0.0135351205, 0.0208193846, 0.0105357179, 0.0194457099, -0.00599250477, 0.0156145385, -0.00703851506, 0.0187021587, 0.0135981338, -0.000721101183, 0.00802151207, -0.0133460825, -0.0225081239, 0.0066667404, 0.029716773, 0.0160682295, 0.00307344273, 0.00784507673, -0.00354761304, 0.0146063361, 0.0185257234, -0.0236297511, 0.009288067, 0.00117203558, 0.0200758353, 0.00968504697, -0.0280028284, 0.0370262414, -0.000127206818, 0.00931957364, 0.00234722183, -0.00389103219, 0.00158949452, 0.00875876099, 0.00147370878, -0.00671084924, 0.00431636767, -0.0040611662, -0.00785767939, 0.0206807572, -0.00778836571, 0.00275365356, -0.0122055532, -0.0233903024, 0.00570579711, -0.0026087244, 0.0179082, 0.00922505464, 0.00846260134, 0.0135225188, 0.0103403786, 0.0100064119, 0.0198363885, 0.000663602143, -0.010119834, 0.00523635279, -0.00134059449, 0.0134721082, -0.0267929863, -0.0233398918, 0.0223064832, 0.00115234416, -0.009288067, 0.00196914584, 0.00890999101, -0.0153246811, 0.0168621894, 0.0139762098, 0.0154002961, -0.0336739682, 0.0169630107, -0.00902971532, 0.0221930612, 0.0334723294, -0.0202648733, 0.0079585, -0.0502084941, -0.00213297876, -0.0159043968, -0.00564908562, -0.00104837329, 0.0303469, 0.000513159379, 0.0221930612, 0.0102269556, 0.0204413086, 0.0126466425, -0.00851931237, -0.0124891102, -0.0372026786, -0.00716454023, -0.00606812, -0.00103498308, 0.0200128239, 0.00267646299, 0.00853821635, -0.00564593496, 0.0301200543, -0.00537813129, -0.017441906, 0.028809391, -0.00176908064, 0.0295907483, -0.0163076781, -0.00314433197, 0.00268276432, 0.0137367612, -0.0134343, 0.00936998334, 0.00408007, 0.025104247, 0.0146315414, 0.000103675527, 0.0200128239, 0.0224829204, 0.00457472, -0.00455581583, 0.0164337028, 0.0136989541, -0.000816014, 0.00771905156, 0.0140014142, -0.0236297511, 0.0185257234, 0.0184123013, -0.00783247408, 0.00836178102, 0.00220229267, 0.00240865909, -0.00545059564, -0.0100694243, -0.00720234774, 0.00400445517, 0.0373791158, 0.00172812236, 0.00153908436, -0.00719604641, -7.43844867e-05, 0.0198741946, 0.0107247559, -0.00916204136, 0.00249215099, 0.00989929, 0.00601455895, -0.0087902667, -0.0203656945, 0.00479841465, 0.0130058145, 0.000230193153, -0.0257217716, 0.00960313063, -0.00145716791, -0.00316953706, 0.0140518248, -0.0222560745, -0.0050000553, -0.0254067071, -0.00268276432, -0.0308005922, 2.15129185e-05, -0.00334597263, -0.0320104361, -0.0300948489, 0.0231634565, 0.0244867224, 0.00971025229, 0.0135477232, 0.00668564392, 0.00564593496, -0.0070259124, -0.0177569687, 0.0074796034, -0.0300444402, -0.0303973109, 0.0117329583, -0.0140140168, -0.00539073348, 0.0173536893, -0.0365473479, 0.0164841134, -0.0254571177, -0.00858232565, 0.00611222861, 0.0121614449, 0.00433527166, -0.00918094534, -0.00720864907, 0.0166353434, 0.00208571926, 0.00446759816, -0.00703221373, 0.0242724791, -0.0155893341, 0.00653441343, -0.0195843372, 0.00965354, -0.0297923889, -0.00805301871, 0.00333652063, 0.0162572674, 0.0376311652, -0.0214495119, -0.0195087213, -0.0154128987, -0.000234525272, -0.0356903747, -0.0204035025, -0.0147827715, -0.0107499612, -0.010327776, -0.00981737394, 0.00774425687, -0.00419664383, -0.027826393, -0.00501580816, -0.010233257, 0.00576880947, 0.0165975373, 0.0160934348, 0.00172654702, 0.00850671, 0.00901711266, -0.00431636767, -0.00213928, -0.0305233356, 0.00802151207, 0.0223568939, 0.0292126723, -0.00941409264, -0.00495594647, 0.0100316163, 0.00380596519, -0.0204161033, 0.0457724, -0.00886588264, -0.0143542858, 0.0199372079, 0.0068935859, -0.0108381789, 0.000927073881, -0.0074796034, 0.0040139067, 0.00890999101, -0.0240330305, -0.0125899306, -0.00908012502, 0.0150222201, 0.0211092439, 0.00287337764, 0.010233257, 0.0205547325, 0.00414623367, 0.0208067819, 0.00758672506, 0.00960943196, 0.0199750159, -0.00512293, -0.00095070363, -0.0190550312, -0.00218496425, 0.01770656, 0.0161690507, -0.0136989541, 0.00643674377, 0.0320356414, 0.00688098324, 0.016383294, 0.0370766521, 0.0134847108, 0.00741028972, 0.0239574164, -0.0147323618, -0.0449658409, 0.00133350561, -0.0145811308, 0.0154255, -0.0152490651, -0.00955902133, -0.0128797889, -0.00413363101, -0.00217551226, 0.0212226659, 0.0120228166, -0.00392883969, -0.0112729659, 0.0298680048, 0.00796480104, -0.0144803105, -0.0222308692, 0.00303563522, -0.00564593496, 0.00290645938, 0.0283304956, 0.00503156148, 0.0303469, 0.00429431349, 0.0480912663, -0.0135477232, 0.0177317653, -0.00553251198, -0.0128734875, -0.00694399606, -0.0149340024, -0.00130987586, -0.01770656, -0.0166353434, 0.000235903673, 0.0431006625, 0.00440458534, 0.0376815759, -0.00297262263, -0.00778206438, -0.00957792532, -0.00930067, -0.00638948428, 0.0198994, -0.0114809079, 0.0057625086, 0.0145937335, -0.00514498446, 0.00513553247, 0.0231130458, 0.0178829953, -0.0126970522, -0.0120984325, -0.016723562, 0.0219410099, -0.00463773217, -0.0116888499, -0.00752371224, 0.0129175968, 0.0191306453, -0.00743549457, -0.00443924218, 0.00574045395, 0.00839328766, -0.00802151207, -0.0219284073, 0.0235919431, 0.0129554048, -0.0198363885, 0.00390993617, 0.0105546219, -0.00284974789, 0.00938258599, 0.0220670365, 0.0123252776, 0.0125584248, -0.017252868, -0.00620359695, -0.00353816128, -0.00931327231, -0.00429116283, 0.00950861163, 0.00368309044, 0.0128608858, 0.00389103219, 0.00621935027, -0.0193070807, -0.00368309044, 0.0116636446, -0.0164463054, 0.00973545667, -0.0511410795, -0.000882177323, -0.00704481639, 0.0168873947, 0.00439198269, 0.00885328, 0.00591688929, -0.0152238607, -0.00696289958, 0.0253184903, -0.00672975276, -0.0154759111, 0.010970505, 0.00204476109, 0.0336739682, 0.0207941793, 0.0119093945, 0.00922505464, 0.00499690464, 0.0287589822, 0.00989298895, -0.00310337381, 0.00298995106, 0.0212226659, 0.0141904522, -0.0018935306, 0.031834, -0.0321616642, -0.00417774, 0.0219662152, 0.00759932771, -0.0126403412, -0.00298049906, 0.0121425409, 0.0120858299, -0.00663523376, -0.0118022729, -0.00829246733, 0.0146315414, 0.00158476853, -0.0201388486, -0.00249530165, 0.0227223672, 0.0175931361, 0.0131948525, 0.00766234053, -0.00289228139, 0.00700700842, 0.0121362396, 0.00314905797, -0.0106806466, 0.0161060374, -0.0187399667, 0.00673605409, -0.0057625086, -0.00538758282, 0.00582552096, -0.00245749392, 0.00167141098, 0.00683687441, -0.00392883969, -0.0134343, 0.0119156949, 0.0023409205, -0.0117770676, 0.0139636071, 0.00161076128, 0.0221930612, 0.0229492132, -0.00251105474, 0.0254319124, -0.0165093187, -0.00187147618, 0.0033806297, 0.00673605409, 0.0209202059, 0.000904231798, 0.0092376573, -0.0134847108, 0.017139446, 0.0023503725, -0.0131192375, 0.0167361647, 0.00132090307, 0.0197607726, -0.0085256137, -0.00218811492, -0.0184375066, 0.0144046955, 0.00104916096, 0.0133082755, 0.0203404892, -0.00129254733, 0.000926286215, 0.0258856043, 0.00625085644, -0.0026181764, 0.00563018164, -0.0141400425, -0.0201892592, -0.000242795679, 0.0350854546, -0.0141400425, 0.00589798577, 0.00511347782, -0.0115628242, -0.0108822873, -0.0069881049, 0.0184501093, -0.0188281853, -0.020895, -0.0113044726, -0.0013468957, 0.0155767314, -0.0027552289, -0.0101765459, 0.0109453006, 0.00115785771, 0.0136233382, -0.0115313185, -0.00034794808, -0.0201766565, -0.0217519719, -0.0263140891, -0.0332454816, -0.0195843372, 0.00645879842, -2.3629751e-05, -0.0141148372, -0.0185509287, 0.0309518222, 0.00168873952, 0.0074796034, 0.00208729459, -0.0227853805, -0.0208571926, 0.0205799378, -0.00582552096, 0.0249404144, 0.0053592273, -0.034581352, -0.00954641867, 0.00536237797, 0.0127726672, -0.0117833689, 0.0142912725, 0.0015564129, -0.0176561493, -0.00684947707, -0.00736618089, 0.00767494272, 0.00210304768, -0.0111973509, 0.0180216227, 0.0268938057, 0.0346065573, -0.0163076781, -0.0173536893, -9.95649407e-06, -0.0113926902, 0.00563963363, -0.0125332195, -0.0110587226, -0.00226530549, 0.0122307586, -0.00819794834, 0.00584127428, 0.00775685953, -0.00991189294, 0.00792069267, -0.00273790048, 0.00926286168, -0.00325145363, 0.0131066348, 0.000771905179, -0.00759932771, 0.00771275, 0.00569319446, 0.00511662848, -0.0188785959, 0.0033869308, -0.00674235541, 0.0068557784, 0.0109011913, -0.0412354879, 0.00394459302, -0.0235415325, -0.0240708385, -0.0116762472, 0.00282926881, 0.0145811308, 0.00671084924, 0.0331194587, -0.0138501842, -0.0157531668, 0.017630944, 0.00611537928, -0.00615318678, 0.00690618809, 0.0208571926, 0.00739138573, -0.0300192349, -0.00232044142, 0.0092376573, 0.00366418669, 0.0450162478, -0.00861383136, 0.00971025229, -0.0102584623, 0.00449595368, 0.00897300337, 0.00170291727, 0.00806562137, 0.00278988574, -0.0199498106, 0.00715823891, -0.0186265446, -0.0212100632, 0.0178829953, -0.0111406399, -0.00183839456, -0.00627921242, 0.00221647066, 0.00693769474, -0.00576565927, -0.00115234416, 0.00917464402, 0.0310022328, 0.00169031485, 0.0324389227, 0.00877136365, -0.0114304982, 0.0054064868, 0.00797110237, 0.00194236543, -0.0183618907, -0.00853821635, 0.00218338892, -0.0200884379, 0.00630756794, -0.00164935656, -0.00221016933, 0.0024291384, -0.0156019367, 0.0136737488, -0.000559631269, 0.0030608403, 0.0118967919, -0.0150726298, -0.00838698633, -0.00236139959, 0.000473776483, -0.00815383904, -0.0394459292, 0.000320183113, -0.00444554351, -0.0286581609, -0.00316166063, -0.0106239356, 0.00243859016, -0.000825465948, 0.00155326223, 0.00585387694, -1.61223816e-05, 0.0113989916, -0.0087902667, 0.000656513206, 0.0257721804, -0.00440773601, 0.0115754269, -0.00285447389, 0.00218653958, -0.000784113887, -0.0132956728, -0.000382014288, 0.00958422665, -0.0110083129, -0.0400004424, 0.00737248221, -0.020428706, -0.0192566719, 0.0060460656, -0.0264905244, -0.0030655663, 0.00936998334, -0.00234722183, 0.0259360131, -0.0053592273, -0.0255453344, 0.00379021186, -0.017290676, 0.00464088283, 0.0074796034, 0.0125584248, -0.00481416797, 0.0111469412, -0.0079332944, 0.00105309917, 0.00459362334, 0.0143542858, -0.000816801679, 0.00132169074, 0.0135477232, 0.0156775508, 0.0166353434, -0.0153120784, -0.000190317951, 0.0222056638, 0.010252161, 0.0218275879, -0.0059515466, -0.00532772113, 0.0150600271, -0.0143038752, -0.00994339865, -0.0199120026, 0.00810973067, 0.0118148755, 0.0118526826, -0.00399815384, 0.0247009657, 0.0115250172, 0.00901081134, 0.0103907892, -0.00477636, 0.0132830702, 0.0140266195, 0.0264401156, 0.000145027589, -0.00392883969, -0.0279524196, -0.0122748679, -0.0165597294, 0.00239448133, 0.0124134952, -0.00831137, 0.000425335515, 0.018992018, -0.0102206543, -0.00756152, -0.0173914954, 0.0108633842, -0.00564908562, 0.00653441343, 0.00909272768, -0.00110823533, 0.0155137191, 0.00378076, 0.00249687699, 0.0152994758, -0.010422295, -0.0138375815, 0.00686207926, 0.0157783721, -0.00434157299, 0.000949128298, 0.0147323618, -0.0087902667, -0.00268591498, -0.0215755366, -0.0167865753, -0.00486772833, 0.00785137806, -0.0165219214, 0.00973545667, -0.00831137, 0.0146819511, -0.009288067, 0.0261628591, -0.00968504697, 0.0201388486, 0.0134973135, 0.0132704675, 0.00175490277, -0.00192031101, -0.00526470831, -0.00380911562, -0.00813493505, -0.00563018164, 0.0243228897, -0.00430376502, 0.00201325468, 0.00143905182, 0.0188407879, 0.00586017827, -0.0094519, -0.00355706504, -0.00532457046, 0.00896670297, 0.000743155659, -0.0224577151, 0.0362952948, 0.0320860483, -0.0016036724, 0.00709522609, -0.0201892592, -0.0129554048, 0.00282926881, -0.0263645, 0.0169630107, 0.00598620344, -0.00400760584, 0.00136028591, 0.0279272143, -0.00406746753, -0.0240330305, 0.00267961365, -0.0240708385, -0.017366292, -0.0158665888, -0.0135855312, -0.0312794894, 0.00072188885, 0.00752371224, -0.00868314598, -0.000702985039, 0.00975436065, 0.00259139598, 0.018387096, 0.00700700842, 0.0246883631, -0.0145559264, -0.00544744497, 0.0239826217, 0.0129806092, 0.0129680065, -0.00707632257, -0.0201514512, 0.0219914205, -0.0222938824, 0.00207941793, -0.00695029739, -0.00993079599, 0.00264495681, 0.0103592826, 0.00279461173, -0.00540333614, 0.0104664043, 0.000951491296, -0.00933847763, -0.0076560392, 0.0238818, -0.0226971619, 0.0119787082, -0.00923135597, -0.00645249709, 0.0225081239, -0.00491183763, -0.00519224396, -0.00481416797, 0.0125899306, -0.0404541306, -0.0299184136, -0.0199372079, 0.0114115942, 0.00133350561, -0.0109137939, 0.0313046947, 0.00141384674, 0.0144803105, 0.0189290047, 0.0115376189, 0.00990559161, 0.0114115942, 0.0110398196, 0.0115124146, 0.00214243075, 0.019483516, -0.0142786708, -0.0113737863, -0.0219536126, 0.0117644649, 0.00128388312, 0.0207815785, 0.00443924218, 0.010138738, 0.00114525517, -0.00489293365, 0.0016060354, 0.0152112581, 0.026616551, -0.00859492738, 0.00263550482, -0.0136989541, -0.00185414776, -0.00339638279, 0.0215881392, -0.00710782874, 0.0122181559, 0.000609647541, -0.00478581199, 0.00218338892, 0.00514813513, 0.00532142, -0.00172497181, -0.00742919324, 0.00892259367, -0.0162950754, 0.00821685139, -0.00896040164, 0.00674235541, -0.0145055158, -0.00748590473, 0.000845157425, 0.00800260901, -0.00500635663, 0.032766588, 0.000131834313, -0.0102458596, 0.0166857541, -0.00157295365, -0.0191936586, 0.00709522609, 0.00466293748, 7.42860284e-05, -0.0077505582, -0.00284817256, -0.00224482617, -0.0177569687, -0.00192031101, -0.000273120531, 0.00164463057, -0.0206555519, 0.0159548074, 0.00831767172, 0.00795219839, 0.0208445899, -0.00369884353, 0.00014837514, 0.0243480951, 0.00861383136, -0.00290330872, -0.0231004432, 0.0142408628, -0.00906752236, -0.0270450376, 0.00819794834, 0.0206051413, -0.0208445899, -0.00539388414, 0.00387842976, 0.0160556268, 0.00950231, -0.0103844879, -0.0109074926, 0.0218779985, -0.00221489533, 0.0250286311, 0.00459992466, -0.00673605409, -0.0145433238, 0.017971212, 0.0103025706, -0.00477320934, 0.00242598774, 0.0131696472, -0.0137367612, -0.00286865165, -0.00608072244, 0.019521324, -0.000825465948, -0.0177821741, -0.0087902667, 0.00705741858, 0.0199750159, -0.00345624471, -0.00708892522, 0.0172150601, 0.0017612041, -0.00730946939, -0.000157925504, -0.00174387556, 0.0159926154, -0.00542539079, 0.00527731096, 0.00894779898, -0.0227475725, 0.0198237859, 0.0232390724, -0.0129301995, 0.00438568182, 0.00494019315, 0.0144677088, 0.0242220685, 0.00167141098, 0.00789548736, 0.0240456332, 0.0303973109, -0.000757727306, -0.00678016292, -0.00236770092, -0.0124197965, 0.0194583107, -0.000229996236, -0.00119172712, 0.00147370878, -0.00297892373, -0.0267425757, -0.0124576045, -0.0167865753, 0.0106617436, -0.0068935859, -0.00321049546, -0.000437544193, 0.0234281104, 0.00362007762, -0.0155641288, -0.000979846925, -0.000339283841, 0.0030135808, 0.0151734501, 0.0174923167, -0.00943929795, 0.0336487629, -0.00523320213, -0.0136863515, 0.0127159562, 0.0136863515, 0.0057184, -0.0073472769, 0.00495909713, 0.00947710499, 0.0136863515, -0.0227853805, -0.0152742704, -0.00508197164, -0.00464718416, 0.0121236369, -0.0217771772, -0.01910544, -0.000131637396, 0.00151703, 0.0147575671, 0.0218401905, 0.00525840698, -0.00397294853, 0.0126844496, -0.0127789686, 0.00158319331, -0.00487718033, -0.00317426305, 0.00537813129, 0.0161690507, -0.00776316039, 0.0123693869, -0.00384692336, -0.0225207265, 0.00643044291, 0.00857602432, 0.0012618287, -0.0277759843, 0.000816801679, -0.00334597263, 0.00930697098, 0.00580661744, -0.00233776984, -0.00610907795, 0.000243977163, 0.00823575538, 0.0139257992, -0.00459047267, 0.00919984933, -0.0071204314, -0.00150994107, -0.0062161996, 0.000130160537, -0.00659112493, -0.00178168318, -0.0134090958, 0.0151104378, 0.0221048445, -0.010308872, -0.0225459319, 0.0225585345, -0.0125017129, -0.0124260979, 0.0383621119, 0.0398240052, -0.0087902667, 0.0190928373, 0.00439828401, -0.0126088345, -0.0146315414, -0.00276783132, -0.0211974606, -0.016194256, 0.00400445517, 0.0178451873, -0.0184627119, -0.0131066348, 0.00330186379, 0.00121693208, -0.00324830296, -0.00863273535, -0.00624770578, -0.000490711129, 0.010233257, -0.0290362369, -1.5765474e-05, -0.00273002381, 0.0138753895, -0.0158413853, 0.00530251581, -0.00138391566, -0.00529936515, 0.0301956702, -0.00563648297, 0.0228105858, -0.0103718853, 0.00412732968, 0.00851931237, 0.00375870569, 0.0173536893, 0.00069195783, -0.00202585733, -0.00241653575, -0.00123268529, -0.010781467, -0.00444869418, 0.00592004, 0.017101638, -0.0117140552, 9.44205458e-05, -0.00850671, -0.0213864986, -0.00113028975, 0.0169756133, 0.00954011735, -0.0135477232, -0.00776946172, 0.0106239356, -0.0174167, 0.0192188639, 0.0140644275, 0.0190424286, -0.00603976427, 0.0104285963, 0.0154633084, 0.0131822499, -0.00542539079, 0.0015044274, -0.017101638, 0.010252161, -0.0018462711, -0.0109831076, 0.0123441815, 0.000460386305, -0.00348460046, -0.00970395096, -0.0181350447, -0.0101954499, 0.0097858673, -0.0199624132, 0.0198363885, 0.0224955212, -0.00627291109, 0.000214046158, 0.00478266133, 0.0223064832, -0.0209958199, 0.0169630107, -0.0150600271, -0.0139005948, -0.00498115132, 0.00128230779, -0.000534426188, 0.0334471241, -0.0063957856, -0.00578141212, -0.0116447406, -0.0116510419, 0.00672345143, 0.00918724667, -0.0118967919, -0.00724015525, -0.0131192375, -0.0114368, -0.000740005, 0.0158035774, 0.0110272169, 0.00113974162, -0.00173442368, 0.00512923114, 0.0175427273, 0.00586017827, 0.000867999508, 0.00243071374, 0.00403281068, -0.00163990469, -0.00437623, 0.00892259367, -0.0055388133, -0.018424904, 0.00579716545, -0.027675163, 0.00321522146, 0.00166983565, 0.0158539861, -0.00582867162, 0.0198111832, 0.00636112876, 0.00587908179, -0.0130814295, -0.00584757561, -0.0208823979, -0.00357911945, 0.0221300479, -0.0131696472, -0.0209076032, -0.0246001445, 0.00369884353, -0.00877136365, -0.00693139341, 0.00465348549, -0.00751111, 0.00126025337, -0.0123441815, -0.0037019942, 0.0162698701, -0.0118526826, 0.0079585, 0.0088847857, -0.00611537928, -0.00520484615, 0.0313046947, 0.00756782154, -0.0096913483, -0.0116258375, 0.00445814617, 0.00173757435, -0.0196221452, 0.00689988723, -0.00810342934, -0.0070259124, 0.00700070709, -0.0189416073, 0.0157909747, 0.00534977531, 0.00226057949, 0.0209202059, -0.00651551, 0.00334282196, -0.00390363461, -0.0127978725, -0.0101954499, 0.0169378053, -0.00988668762, 0.0271710623, 0.00217236159, -0.00891629234, 0.00893519633, 0.00824205671, -0.00412102835, 0.00616578944, 0.0102962703, 0.00583497295, -0.000977484, -0.0196977593, 0.0156775508, 0.00453376118, -0.0173032787, -0.00442979066, -0.0205799378, -0.00168243819, -0.0115313185, -0.00421869801, -0.00319001637, 0.0034278892, -0.00570264645, 0.0156145385, -0.0173914954, 0.00250317832, -0.00836178102, 0.00691248942, -0.00908012502, -0.00681797042, -0.00607442111, -0.00349090178, 0.00771905156, 1.92853222e-05, -0.0033333702, -0.0154002961, 0.00215030718, 0.0283052903, -0.0104916086, 0.00154065969, -0.0104159936, -0.0230500344, -0.0313803069, 0.0147449644, 0.0227349699, 0.00786398072, 0.024007827, -0.00763083389, -0.00614058459, -0.00631386926, 0.00687468192, -0.0033869308, 0.0393703133, 0.00972285494, -0.0102836676, 0.00104679796, -0.00645249709, 0.0157909747, 0.00703221373, -0.0104853082, 0.00668564392, 0.010308872, 0.0203782972, -0.00182106614, 0.0166605487, 0.00763713522, 0.00655961875, 4.4675e-05, 0.00144141482, -0.00461882865, -0.00220071734, -0.00947080366, -0.00177853252, 0.00566483894, -0.0101072323, 0.0145937335, -0.0127663659, 0.017441906, -0.00645879842, -0.0121803489, -0.00676756026, -0.00415568519, 0.0009916618, 0.000828616554, -0.00188092806, 0.0120039135, 0.0122685665, 0.00176435465, -0.0221300479, 0.0343797095, 0.0195969399, -0.0084310947, 0.00241968641, 0.000104167819, 0.00725905923, -0.00778206438, -0.0103907892, 0.00200222759, 0.0110398196, -0.0132074552, 0.00674235541, 0.00804041605, -0.0250538364, -0.0246127471, 0.000569477, 0.00579716545, 0.00176908064, -0.0131192375, 0.0140644275, 0.0116195362, 0.018273674, 0.0108066723, 0.00034794808, 0.0277507789, 0.00680536823, -0.00277413265, 0.0153498854, -0.0178073794, -0.0034656967, -0.00508197164, -0.0124765085, -0.0043699285, -0.0110524222, 0.00790178869, 0.0136107365, -0.00902971532, -0.00887218397, -0.010403391, -0.0130688269, 0.00500320597, 0.00806562137, -0.00503786281, 0.029338697, 0.00372404861, -0.00776946172, -0.0126529438, -0.00382171827, 0.00535292597, 0.0171898548, -0.00491183763, 0.0178703927, 0.010970505, 0.0156523474, -0.00621304894, -0.0133586852, 0.008739857, 0.0113989916, -0.00303721055, 0.0064430451, -0.00728426455, -0.0178703927, 0.0137493638, -0.00635482743, 0.0263392944, 0.00327350805, -0.0126151359, 0.00652811211, 0.00622250093, 0.00826096069, -0.036093656, -0.0173536893, 0.00519224396, -0.00483937282, -0.0150978351, -0.00976696331, -9.64881474e-05, 0.002203868, 0.0133460825, 0.0111721456, 0.0175427273, 0.00696289958, -0.0161816534, 0.00195181731, -0.0119913109, -0.0119724069, 0.00330186379, -0.0155263208, -0.0146693485, 0.00484252349, 0.0029757733, -0.0131570445, -0.00758042373, -0.027826393, 0.0235163271, -0.00656592, 0.00135871058, 0.0232894812, -0.00827986468, 0.0221426506, -1.11379813e-05, -0.00335227395, -0.00863903668, -0.0172780734, -0.0128041739, -0.0123378802, 0.00720864907, -0.01816025, -0.0254067071, 0.00325775496, 0.0110587226, 0.00670454791, 0.00643359311, 0.0118148755, -0.00877766497, 0.0153246811, 0.00749850739, 0.00647770241, -0.00916834269, 0.000317623228, 0.002203868, -0.00911163166, -0.0014012442, 0.0167865753, -0.0126214372, 0.0110713253, -0.0249908231, -0.0193196833, -0.0427477919, -0.0145685291, -0.0211344492, 0.0288345963, -0.00152096828, -0.0148709891, 0.00977956597, -0.0091431383, 0.00855712, 0.0209076032, 0.00100662734, 0.00732207205, -0.000916046673, -0.0177317653, -0.00369884353, -0.00850671, 0.000587199291, 0.00815383904, -0.00206996617, 0.0182484686, 0.0164841134, -0.00474485382, 0.0114304982, 0.00147292111, 0.0177443679, 0.0120921312, -0.0101891486, -0.00291118515, 0.0218653958, -0.000893992197, -0.0138627868, 0.0116762472, -0.0144046955, -0.0131192375, -0.00834287703, 0.0121236369, -0.0188281853, 0.0144677088, 0.0175931361, 0.0126088345, 0.00245276815, 0.00291748648, 0.0218527932, -0.00872095302, 0.000867999508, 0.0162572674, 0.00587593112, 0.0163958967, 0.00299310172, 0.0125962319, -0.0177947767, -0.000667540415, 0.00165250723, -0.00834917836, -0.0128230779, 0.00346254604, 0.00664153509, 0.0112603633, 0.0186769553, -0.00201955601, -0.00528361229, 0.00929436833, -0.0143668884, 0.00673605409, 0.00965984166, -0.0077505582, 0.0220922418, 0.0166857541, -0.00533087179, -0.00787028205, 0.00367993978, -0.0288598016, -0.00712673273, -0.0143920928, 0.00926286168, -0.00982367527, 0.00240078266, 0.0290614422, 0.0111280372, 0.0068935859, 0.0124828089, 0.00597675145, 0.00071204314, 0.00690618809, 0.0238439925, -0.0232894812, -0.00211092434, 0.0132074552, -0.00929436833, 0.000586017792, -0.0226215478, 0.0193574913, -0.00837438367, 0.0194961186, 0.027070241, 0.00589483511, 0.00761823123, -0.00425335485, -0.00272372249, -0.0320356414, -0.00244804216, 0.018046828, -0.0120102139, 0.0100316163, -0.0116447406, -0.00453061098, -0.0199876186, -0.0135981338, 0.000138135583, -0.0399500318, 0.00164935656, -0.0146819511, 0.027675163, -0.00137367612, -0.00193763955, -0.0205799378, 0.00778206438, -0.0198363885, -0.0114872092, 0.0209454112, -0.0106554423, 0.000226254851, -0.0260620397, -0.00224640151, -0.0355139375, -0.0116447406, -0.00968504697, -0.0037398017, -0.00996230263, -0.0068557784, -0.00954641867, 0.0113548823, 0.00354131195, 0.0161690507, 0.044814609, -0.00343419029, 0.00661633024, -0.0149844121, -0.00700070709, -0.027297087, -0.00507882098, -0.00931957364, 0.0273222923, -0.00868314598, -0.00693769474, -0.0144677088, -0.0194205046, -0.00999380928, -0.00546949962, 0.0159548074, 0.00156901544, -0.0412859, 0.00488663232, 0.00293166423, -0.0283052903, 0.0208445899, -0.0258351937, -0.0143794911, 0.00629811594, 0.0126781482, -0.0108129736, 0.026994627, -0.0221174452, -0.0142912725, -0.0251294523, 0.00319474214, -0.0180972386, -0.0107877683, -0.000925498549, -0.0114809079, 0.0111658443, -0.00753001356, -0.00659742625, -0.0141904522, -0.00267961365, -0.0216511525, -0.0233398918, -0.00133665616, -0.0075741224, -0.00128703378, -0.0225711372, -0.0124891102, -0.0123378802, 0.0259612184, 0.000990874134, 0.00107987958, -0.0246001445, 0.0102206543, -0.0111973509, 0.00773795554, -0.00478266133, -0.00928176567, -0.0100820269, 0.0101135327, -0.000689988723, 0.0101513406, 0.000303051551, -0.00659112493, 0.00652181124, 0.00880286936, -0.0143794911, 0.008475204, 0.000516310043, -0.00155011157, 0.017252868, 0.0348081961, -0.0115313185, 0.00483622216, -0.00825465936, 0.00800891, -0.0105987303, 0.000458810973, 0.00522059947, -0.0134216985, -0.00910533, 0.0111910496, -0.016194256, -0.0185005199, 0.0130184172, -0.0168243814, -0.0218779985, -0.00537813129, -0.00212982809, -0.0273222923, 0.00166826032, -0.0248647984, 0.0071204314, -0.00551991, 0.0117707662, 0.00215030718, 0.00564593496, 0.000807349803, 0.0136107365, -0.0216007419, 0.0181476474, -0.0109389992, -0.0163328834, 0.0300192349, 0.00717084156, 0.0236801598, -0.00676756026, 0.0087902667, -0.00272529782, 0.00993709732, -0.00712673273, 0.00143826415, -0.0126214372, -0.00431636767, -0.00219126558, -0.00201483, 0.00298995106, -0.0117455609, 0.0152364625, -0.0170386247, -0.0162950754, 0.00368309044, -0.0321112536, -0.0167865753, 0.00827986468, 0.00225270283, 0.0102080517, 0.0261628591, -0.00686207926, -0.0402524918, -0.0178829953, 0.0201514512, -0.0303721055, -0.0138879921, -0.0063107186, -0.0231130458, 0.01676137, 0.0182610713, -0.0112477606, -0.000502526, 0.00233304407, -0.000463930774, -0.0016509319, -0.0163580887, -0.00767494272, -0.00831137, 0.000517097709, -0.00493389182, -0.0180720333, -0.0130184172, 0.0263392944, 0.00634852611, 0.0150096174, -0.0130940322, 0.0115250172, 0.00992449466, -0.00316796172, 0.0313551, 0.0112792673, 0.0109011913, 0.000300294749, -0.0204161033, 0.00754891755, -0.0149970148, -0.0106554423, -0.0125206169, -0.0183114819, -0.0138879921, 0.00237715291, -0.00242756307, 0.0154255, 0.00243701483, -0.0189668126, -0.0141652478, 0.0198994, 0.0020668155, -0.0191810559, -0.0247009657, 0.0214117039, -0.000220741247, -0.00449280301, -0.0217267685, 0.00269694207, -0.0137241585, -0.0237179678, 0.00208729459, -0.0122118546, 0.0152490651, -0.00466608815, -0.00815383904, -0.0191810559, 0.0228862, -0.0015493239, 0.00148237299, 0.00269536674, -0.0110902293, 0.00510402583, 0.0119976122, 0.0108885886, 0.0115313185, -0.00689988723, -0.00189510593, 0.00595784746, 0.00725905923, 0.00837438367, -0.0112855686, -0.00286865165, 0.00593579328, 0.0139762098, -0.00295844465, 0.00900451, 0.0239196084, 0.00615948811, 0.00710152742, 0.000376500684, -0.00178483385, -0.00804671738, -0.00271269539, 0.00938888732, -0.0130058145, -8.45748145e-05, 0.0224199072, 0.00215975917, 0.0168873947, 0.008380685, -0.025293285, -0.0224577151, -0.00286392565, -0.00753001356, 0.00408637151, 0.0330942534, -0.000502919836, -0.00392568903, -0.0140644275, 0.00351610687, 0.000867211842, 0.00107042771, 0.0105042113, -0.0162320621, -0.00354761304, 0.00780096836, -0.0121425409, 0.0140266195, -0.0215755366, 0.0109326979, 0.0144677088, -0.0166605487, -0.00241968641, -0.0170512274, -0.0243985038, 0.0177695714, 0.00722125173, 0.00932587497, -0.00604291493, -0.0101954499, -0.00447705, 0.0107121533, -0.00701330975, -0.00340583455, -0.00926916301, -0.0244993251, 0.00254728715, 0.0145559264, 0.00483307149, 0.0117455609, -0.0212352686, 0.0128293792, 0.0106680449, 0.025444515, -0.00294269156, 0.0185005199, -0.0130436225, 0.00224797684, 0.00431006635, 0.0156019367, -0.010025315, 0.00592634128, -0.0040139067, 0.00464718416, 0.00700700842, 0.00633592345, 0.00871465169, 0.00286077498, 0.0181728527, 0.0125647262, 0.00481416797, 0.0122244572, -0.0109200953, -0.0105420193, -0.0145433238, -0.00447389949, 0.000923135551, 0.0146945538, -0.0150348227, 0.00489293365, -0.0157153588, 0.00776316039, -0.0412606932, 0.0206933599, -0.0314559229, -0.0119598042, 0.0233398918, -0.00617524143, -0.00462828, -0.0133964932, -0.00268433965, -0.00512608048]
|
17 Jan, 2021
|
Fabric.js Textbox cornerSize Property
17 Jan, 2021
In this article, we are going to see how to set the size of controlling corners of the canvas Textbox using Fabric.js. The Textbox in Fabric.js is movable and can be stretched according to requirement. Further, the Textbox can be customized when it comes to initial stroke color, height, width, fill color, or stroke width.
Approach: To make it possible, we are going to use a JavaScript library called Fabric.js. After importing the library, we will create a canvas block in the body tag which will contain the Textbox. After this, we will initialize instances of Canvas and Textbox provided by Fabric.js and set the size of controlling corners of canvas Textbox using cornerSize property and render the Textbox on the Canvas as given in the below example.
Syntax:
fabric.Textbox('text', {
cornerSize: number
});
Parameters: This function accepts a single parameter as mentioned above and described below:
cornerSize: It specifies the size of the controlling corners.
Example: This example uses Fabric.js to set the size of controlling corners of the canvas-like Textbox as given below. You have to click on the object to see the size of controlling corners.
HTML
<html>
<head>
<!-- Adding the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<h1 style="color: green;">
GeeksforGeeks
</h1>
<h3>
Fabric.js | Textbox cornerSize Property
</h3>
<canvas id="canvas" width="600" height="300"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Create a new Textbox instance
var text = new fabric.Textbox(
'A Computer Science Portal', {
width: 500,
cornerSize: 10
});
// Render the Textbox in canvas
canvas.add(text);
canvas.centerObject(text);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js Textbox cornerStyle Property/Fabric.js Textbox cornerSize Property
|
https://www.geeksforgeeks.org/fabric-js-textbox-cornersize-property/?ref=next_article
|
CSS
|
Fabric.js Textbox cornerSize Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, Fabric.js Textbox cornerSize Property, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js Textbox cornerStyle Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0286025181, 0.0250367541, -0.0142630544, 0.0497424, 0.0481123403, -0.017064726, 0.00034244862, 0.0285006389, -0.0258899909, -0.0275837276, 0.0210125353, 0.00269660866, -0.0111875832, -0.0460492894, 0.0189749561, -0.0142121147, -0.0371603519, -0.004419, -0.0267941672, 0.00128144631, 0.00345751713, -0.021878507, -0.025444271, 0.00995866861, -0.0154346628, 0.0362943783, 0.0143904034, 0.0122063728, -0.00823946111, 0.0140083572, 0.0104489606, 0.0134734921, -0.0185165014, -0.043757014, -0.00627829088, -0.0173448939, -0.00716336444, 0.0725378171, -0.0231392588, -0.0382046103, 0.0157657694, 0.00380135863, -0.00929008797, 0.0208342467, -0.0127794417, -0.00437442772, -0.0115059549, -0.00995866861, -0.0143267289, -0.0416684933, -0.00211398839, -0.0343332104, 0.0213691127, 0.0130405072, 0.00535182934, 0.0112512577, -2.82057481e-05, 0.0311240219, -0.000159981806, -0.0168354977, 0.0421778895, -0.0882271826, -0.024361806, -0.0107800672, -0.051474344, -0.0139956223, -0.00745626632, 0.0135626364, 0.00589624466, 0.0134480232, -0.0336964652, 0.0226426, 0.00462912535, -0.0190258957, 0.0152181694, -0.0378735028, 0.0444192253, 0.00730981538, -0.030003354, 0.0484689139, -0.0136135761, 0.00623371871, 0.00415156782, 0.0348426029, -0.0147342449, -0.00505574327, 0.0141866449, -0.0373386405, -0.0195225552, 0.0166826807, -0.0105763096, 0.0314041898, 0.0135116968, -0.0528751798, -0.014581426, 0.00335563836, -0.0142503195, -0.00347343576, -0.0159185883, 0.0150271468, 0.0289081559, 0.0468643233, 0.0146705704, -0.0465586856, -0.00418977207, -0.0485453233, 0.0330087841, -0.0196881089, 0.0329578444, -0.00665396964, 0.048010461, -0.0320918709, -0.00897808373, 0.0425344668, -0.0479849912, 0.0288572162, -0.0105508398, -0.0331106633, 0.0082267262, 0.00281281443, 0.00865971204, -0.00293697929, 0.0179689024, 0.0494622365, -0.0392998084, 0.0203503221, -0.0369056538, 0.0218657721, 0.0151799647, 0.00496978313, -0.00244350312, 0.0178542882, 0.0109265186, -0.00197708863, 0.0333908275, 0.00879342761, 0.00704875076, 0.0154601326, -0.00520219421, 0.00803570263, -0.00700417859, -0.0125374794, -0.00442855107, 0.0273545012, -0.0206686947, 0.00281281443, 0.0151544949, 0.00534864562, -0.0162114892, 0.026692288, -0.0470680781, -0.0277110767, 0.020095624, 0.00422797678, 0.0522639081, -0.028067654, -0.0147724496, 0.0217638928, 0.0457945913, 0.0174085665, 0.0230373796, -0.00385548198, 0.0116078341, 0.0286789276, -0.0227572136, -0.00939196628, 0.00308979792, -0.00580073334, -0.036880184, 0.0219039768, -0.01204082, 0.00503345719, -0.00887620449, 0.0250367541, -0.0524167269, -0.0344096199, -0.00170010515, -0.0481887497, 0.00443491852, 0.000409505679, -0.0374914557, 0.0248966701, 0.0233048126, 0.0452852, -0.0100669144, -0.000659427489, 0.028882686, 0.00773006631, 0.0102770403, -0.0162751637, 0.00681315549, 0.041974131, 0.014581426, 0.0102069983, 0.00430438621, -0.0185037665, -0.000394582, 0.0329069048, -0.0181217194, -0.00399874942, 0.0104171233, -0.0149380025, -0.0260428097, -0.0387140065, 0.0172684845, 0.0163643081, -0.0120535549, -0.0503027365, 0.0257753767, 0.016504392, -0.00913090166, 0.0075390432, 0.00470235059, -0.00022465107, -0.0340275727, 0.00443173479, -0.0265649389, -0.00257721939, -0.0232156683, -0.0132952044, 0.0263611805, 0.0393507481, -0.0224006362, -0.026284771, -0.0209361259, -0.0187457278, 0.0210125353, 0.0183509476, -0.00672401162, -0.012180903, 0.00447630696, -0.0164789222, -0.0122700473, 0.0180835146, 0.0608217381, -0.000196495064, 0.00904175732, -0.0127667077, -0.0103725521, 0.00203917106, 0.0109201511, 0.000131726309, -0.0145304864, -0.0263866503, 0.0463039875, 0.0271762125, 0.000681713514, -0.00695323898, 0.00808664225, -0.0264375899, -0.0313532501, -0.0127667077, 0.0119325733, 0.0128367487, -0.00395099353, -0.0369311236, -0.00691503426, -0.0421269499, 0.0297741257, 0.0316079482, 0.0431457385, -0.0216874834, 0.00202961988, 0.0149252675, -0.0109519884, 0.00117877137, 0.0194716156, -0.0386630669, -0.0109010488, -0.0182235986, 0.0238651466, -0.0532317571, 0.0334417671, -0.0306400973, -0.0151927, 0.0368292443, -0.0207069, 0.0130341398, 0.0264630597, 0.0114804851, -0.0137281902, 0.0269469842, 0.0484943837, 0.0418213122, -0.0167845581, -0.0272780918, -0.0158039741, 0.0407770537, -0.0278638955, -0.0242726617, -0.0236231834, -0.0105062677, 0.0271507427, -0.008838, 0.0288572162, -0.0205286108, 0.00753267575, -0.0224643108, -0.00609363522, -0.0362689085, 0.0060904515, -0.0104489606, -0.0394780971, -0.040471416, 0.0405732952, 0.0456927121, 0.0350208916, 0.00283987611, -0.0180325769, 0.0284751691, 0.0153964581, -0.0292137917, -0.0430693291, -0.0172048099, -0.000348418078, -0.00378225651, 0.0672401115, -0.00170965632, -0.0166572109, -0.00369629613, -0.0242981315, -0.0124037638, 0.0350718312, 0.0409044027, 0.0553712137, -0.0212035589, -0.0107418625, -0.0207578391, 0.0498952195, 0.00153773557, -0.0237632673, -0.000450496038, -0.0169755816, -0.0113913417, 0.0164661873, 0.00615730975, 0.0116269365, -0.00832860544, -0.0549127609, 0.0456417724, 0.0292392615, 0.0138555383, -0.0618914701, -0.0373895802, 0.0371603519, -0.0575616136, 0.000659427489, 0.000614457473, 0.0137027204, 0.0294939596, 0.000908951333, 0.0127794417, 0.00343204755, 0.0416939631, -0.0339766331, 0.00837954413, -0.0141229713, -0.0504555553, -0.0540977269, 0.0160459355, 0.0245146248, 0.00362625415, 0.0045049605, 0.0261828937, 0.017332159, -0.0318626463, -0.00836680923, 0.0114104431, -0.0147979194, -0.00951294787, -0.0184018873, -0.0301052332, -0.00926461816, 0.00820125639, 0.0232156683, -0.0137281902, 0.00741169415, -0.0181344543, -0.043884363, 0.0116778761, -0.0593954325, 0.0333653614, 0.00611910503, 0.0123591917, 0.0240179654, 0.0199810117, -0.0374659859, -0.0100159757, 0.0195098203, 0.0438079536, -0.0540977269, 0.0352246501, 0.0124674374, -0.0150908213, 0.0165171269, -0.025597088, -0.033594586, -0.0183254778, 0.00757088047, -0.0360142142, 0.00961482711, 0.012938628, -0.00236072647, -0.0368547142, 0.0179052278, -0.0330087841, -0.0394780971, -0.00764092198, 0.0231774636, -0.0230628494, -0.00565746613, 0.0239288211, -0.00254856586, -0.0406497046, 0.0574597344, 0.00730981538, 0.0203503221, 0.0268705767, -0.0209743306, 0.00601722626, 0.0789561942, -0.0264375899, -0.021738423, -0.0137663949, 0.0110283978, -0.0343332104, -0.0323975086, 0.0199555419, 0.00574979372, -0.0264121201, -0.0913344845, 0.037720684, -0.0142121147, -0.0427127555, 0.0536392741, 0.00751994085, 0.054352425, 0.0215983391, 0.0235849787, 0.0248712, 0.000990932109, 0.0173194241, 0.0488000214, -0.00764728943, -0.0219676513, 0.048010461, -0.02256619, -0.010455328, 0.0292392615, 0.0101751611, -0.00686409511, -0.0216874834, -0.0599557683, -0.00860240497, -0.0249221399, -0.0347661935, 0.0490801893, 0.00673037861, 0.0247820579, -0.0376952142, -0.0205158759, -0.0203121174, 0.00586440787, 0.0270998031, 0.0263102408, -0.0173958316, -0.0246929135, 0.00040751585, 0.00606498169, -0.0013244265, 0.0139828874, 0.0150144119, 0.00472463667, 0.0318117067, 0.00972944, 0.0080802748, -0.003336536, 0.00237823697, 0.0159822628, -0.0184018873, 0.0409553424, -0.0279148351, -0.0357849859, 0.0211526193, -0.0108564766, -0.0354793482, 0.00418340461, -0.00599175645, 0.038790416, 0.00101958553, 0.0538430288, 0.00620824937, -0.00631649559, -0.00640245574, 0.0166826807, 0.00664760219, 0.00761545217, -0.03825555, 0.0282204729, -0.00906086, -0.0148870628, 0.0233939569, -0.000851644436, 0.0524167269, 0.0459474102, -3.90005407e-05, -0.00808664225, 0.019675374, -0.0522639081, -0.00206623273, -0.0191787146, 0.0248712, -0.0293666106, 0.00120424118, -0.0273035616, -0.0505829044, 0.0265649389, -0.0194843505, 0.00549509656, 0.00231615454, 0.000617641199, -0.0169883166, -0.00982495211, -0.015409193, 0.0234703664, 0.0407770537, -0.00422160933, -0.0122827822, 0.0213436428, 0.00469916686, -0.0303089898, -0.0103343474, 0.00969760399, -0.00920731109, 0.00754541066, -0.0298250653, -0.00516080623, -0.0240816399, -0.00303089898, -0.0216874834, -0.0551674552, -0.00276028318, -0.0114868525, 0.00241962541, -0.00769822905, 0.0264885295, -0.0051448876, 0.00223019416, -0.0176505297, 0.0159822628, -0.0279148351, 0.0192296542, -0.0147087751, 0.0219676513, 0.0224643108, -0.00879979506, 0.0184528269, -0.0215219297, -0.0277365465, -0.00748173613, 0.028755337, 0.0129067907, 0.0254188012, 0.0370839424, 0.00787651725, -0.0308947954, 0.014441343, 0.00613502366, -0.0391979292, 0.0125502143, 0.0251895729, -0.0252150428, 0.00839864649, 0.00699144369, 0.00373131689, 0.00140879501, 0.0238906164, -0.0505064949, 0.020363057, 0.00897171628, 0.00747536868, -0.0088889394, -0.0054759942, 0.00119230221, 0.00941106863, 0.0230755843, -0.0297741257, -0.0239542909, -0.0602104664, -0.0190004259, 0.0154728675, 0.0308947954, -0.0137791298, -0.00881253, -0.0252023079, 0.0362689085, 0.0126839308, 0.00481378101, 0.0142375845, -0.0367273651, 0.020923391, 0.0197390486, 0.000275391561, 0.0341549218, -0.0292392615, -0.0226808041, 0.0120535549, 0.00510031544, 0.00343204755, 0.0193824731, -0.00275869132, -0.0266413484, 0.00204235478, -0.0269215144, -0.028627988, -0.0279403049, 0.0222860221, 0.0144158732, -0.0124419676, -0.00582938688, 0.0226553343, -0.0235085692, 0.00784468, -0.0244764201, 0.029570369, -0.0103216125, -0.0186438505, -0.0247947928, 0.0161605496, -0.0301052332, -0.0145304864, 0.0019054549, -0.00299906195, 0.0109137837, 0.0185292363, 0.0281185936, -0.00412609801, 0.0164279826, -0.0180835146, -0.0219931211, 0.0203503221, 0.0204904061, 0.00625918852, 0.0388668217, 0.000905767607, -0.0070296484, -0.0397327952, -0.00365172396, 0.00762181962, -0.0123273544, -0.0373641104, 0.0114168106, -0.0218275674, 0.00251991232, 0.0117924893, 0.0347152576, -0.00248011597, 0.0580200665, 0.0108819464, -0.0127157681, 0.0125056421, -0.0207069, -0.00943017099, -0.0102515705, -0.0119071035, -0.00692140171, 0.0217766277, 0.00705511821, -0.0138045987, 0.0117351832, -0.0127603402, 0.00054919126, -0.0100032408, -0.0110729691, 0.00281599816, -0.0280421842, -0.0203885268, 0.0378225632, 0.0277620163, -0.00764728943, 0.0147342449, -0.0363962576, -0.0145177515, 0.00605861424, 0.0162496939, 0.00527223619, -0.0359123349, 0.0339511633, -0.00811847951, 0.0127094006, 0.0254315361, 0.0186438505, 0.0264885295, 0.00985678937, 0.0293666106, -0.0130914468, 0.00962756202, -0.0320409313, 0.0144540779, 0.00223656162, -0.0195607599, 0.00780647527, -0.020923391, -0.00326331053, -0.026819637, 0.0342313312, -0.0168991722, 0.013346144, 0.00371539826, -0.00598857272, 0.0185801759, 0.0231010541, 0.0103661846, 0.000641121122, -0.0222350825, -0.0206050202, 0.0124865398, -0.0089016743, 0.00706148567, 0.0193570033, 0.000901788, 0.00365172396, 0.0202866476, -0.0336200558, 0.00506529445, 0.00356257986, -0.00869154837, 0.0217511579, 0.00967850164, -0.00644066045, -0.00316939084, 0.000464822748, -0.0353010595, -0.00798476394, -0.0184655618, 0.0205922853, -0.00688319746, 0.01568936, -0.0208342467, -0.0101560587, -0.00744989887, -0.0299014747, -0.0126011539, -0.00439034635, -0.0191532448, -0.021318173, 1.92266689e-05, 0.0132187949, 0.00244350312, 0.0196244344, -0.0095766224, -0.0305382181, 0.03137872, -0.00209329417, 0.0178924929, -0.0149252675, -0.00788925216, -0.000303249108, 0.00204713037, 0.0273545012, -0.00982495211, 0.0350463614, -0.0428910442, 0.0503027365, -0.0189112816, 0.00492202723, -0.0101242214, -0.00915637147, 0.0173066892, 0.00732891774, 0.00836044177, -0.024221722, 0.0235722438, 0.00694687152, 0.00881889742, 0.000105261657, 0.00320918718, -0.016236959, -0.0163006335, 0.00539640104, -0.0104935328, 0.0112512577, 0.00578481471, 0.0287043974, 0.00362943788, -0.00971670542, -0.00843048375, -0.0187966675, 0.0108246394, 0.0250622239, 0.0160586704, 0.0151035562, 0.0263866503, 0.0193187986, -0.015129026, -0.0157275647, -0.0130787119, -0.013486227, 0.0163261034, -0.0157275647, -0.0104489606, -0.00040473009, 0.0240179654, 0.0136135761, 0.0225534551, -0.00710605737, -0.0286534578, 0.0118688988, -0.00697870879, -0.005058927, -0.0082139913, 0.00953841768, -0.0021267233, -0.0014135706, 0.00637698639, -0.011353137, 0.0271507427, 0.0120726572, 0.0192296542, 0.0214964598, 0.00759635, -0.00739259226, -0.00362943788, 0.00202325243, -0.0489528403, 0.0383064896, 0.0423052385, 0.00426936522, 0.0252532475, -0.00141675433, -0.0277110767, 0.0102515705, -0.029035503, 0.0184528269, 0.00709969, 0.0111621134, 0.00950658, 0.0299014747, 0.0113021974, 0.0226043947, -0.0328050256, 0.0259536654, -0.015409193, -0.0187457278, -0.0142121147, 0.00775553565, 0.0144668128, 0.0445720442, 0.0160841402, -0.0219039768, 0.0106463516, 0.0103025101, 0.0186565854, 0.0209488608, 0.0169628467, 0.00199937471, -0.0193187986, 0.0124992747, 0.0123209869, -0.0390705802, -0.00548236165, -0.00447949069, 0.00943653844, 0.00373768434, 0.0241453145, -0.0598029494, 0.00460683927, 0.0154219279, -0.0281185936, 0.0209488608, 0.00723340642, 0.00263611809, 0.04513238, -0.00676221587, 0.0191150401, -0.000432985573, -0.0251131635, 0.0142757893, -0.026819637, -0.00398283079, 0.0111875832, -0.0142503195, -0.0193315335, 0.00874885544, 0.00319804414, 0.00149714318, -0.0144795468, -0.0464313366, -0.00170965632, -0.0439353026, -0.00603632862, -0.0284751691, 0.033721935, -0.0467879139, 0.0244254805, 0.0536392741, 0.0062687397, 0.000963074563, 0.00407834211, 0.0122318426, 0.0110666016, -0.0313023105, 0.0168991722, -0.0248202626, 0.0110156629, -0.00761545217, 0.0223114919, 0.0110220304, 7.56630398e-05, 0.0245655645, 0.0245018899, 0.0236995928, 0.0102579379, -0.0108946813, 0.0128112789, 0.00652025361, 0.000453281769, 0.0320154615, 0.010875579, -0.00397009589, -0.0113149323, -0.00863424223, 0.0117479172, 0.0305127483, -0.0238651466, -0.0116460389, -0.0218020976, -0.0160204656, -0.00841138139, -0.00231933827, 0.01568936, 0.0354793482, 0.0231901985, -0.0202739127, 0.00687046256, -0.00883163232, -0.0182363335, 0.00592808193, -0.0232666079, -0.0170010515, 0.0279148351, -0.00705511821, 0.0117351832, -0.00406242348, -0.0366764255, -0.0376952142, -0.0121172285, 0.00273640524, -0.000294095895, 0.0299269445, 0.00353392633, 0.0375933349, 0.04419, -0.0216874834, 0.00301975617, -0.00490929233, 3.20859035e-05, 0.0154473977, -0.00150032691, 0.000107350977, 0.0109201511, -0.00319645228, 0.0148870628, 0.00239097187, 0.0357085764, -0.0404968858, -0.00741169415, 0.0174213015, 0.00453998102, -0.00908632949, -0.01052537, 0.0245400947, 0.0307165068, 0.00651070243, 0.00843048375, 0.00793382432, 0.0406242348, -0.0186947901, -0.00645021163, -0.0287298672, 0.0376697443, 0.0087806927, 0.0155747458, 0.0124164987, 0.0102006309, 0.00864697713, 0.00804207, 0.00295926537, -0.0137918638, 0.0183891524, -0.00389050273, -0.031913586, -0.0105444724, -0.0207960419, 0.0225025155, 0.00310571655, 0.00536456378, 0.00314551289, -0.0168100279, -0.00834134, 0.00527542, 0.00206623273, -0.0168609675, -0.0114677502, -0.00841774885, 0.0273545012, -0.00388413528, 0.00546644302, -0.0116396714, 0.0305127483, -0.0468643233, 0.00666670455, 0.00475965766, -0.00774280122, 0.00908632949, 0.0573069155, -0.00581028452, 0.0177142043, -0.00969123654, 0.0287298672, 0.00420887442, -0.00812484697, -0.00633241422, 0.0150526166, -0.00648204889, 0.0113913417, -0.0105190026, 0.0101560587, 0.000476761692, -0.0177014694, -0.000661019352, -0.00611592131, -0.0126393586, -0.00809301, -0.0167081486, -0.000736632617, -0.00852599554, -0.0453870781, -0.0125374794, -0.00457500201, -0.0057020383, 0.00861514, -0.0106909238, 0.00607134914, -0.00559060788, 0.00368356123, -0.020082891, -0.0042916513, -0.0188985467, 0.015816709, -0.00694687152, 0.0189749561, 0.0154473977, -0.00514170388, 0.017332159, -0.0218657721, -0.0300797634, -0.0126202563, 0.0166317411, 0.00156240934, -0.0227444787, 0.0072397734, -0.00559060788, -0.0379244424, -0.0172812194, 0.024221722, 0.0220313258, -0.000165055855, -0.0063865371, 0.00667943945, -0.0110411327, 0.0184146222, 0.00476284139, 0.00260428083, 0.0273290314, -0.0280421842, -0.0049538645, 0.0045495322, -0.0222478174, -0.00460365554, 0.0208215117, 0.00597265409, 0.0278129559, -0.0091117993, -0.0158294439, 0.00733528519, 0.0155365411, -0.0226043947, 0.00248489156, -0.0309202652, -0.0195862297, 0.0155747458, -0.00563518, 0.00243395194, 0.00588032603, -0.0221968777, -0.00767912669, 0.0600576475, -0.014441343, 0.0113213, -0.0469407327, -0.0191150401, -0.0412100405, -0.00468961569, 0.0275837276, 0.0102324681, -0.0321173407, 0.0100796493, 0.00798476394, -0.000128244123, 0.021738423, -0.0263611805, -0.0023352569, -0.00813758187, 0.00795929413, 0.0457945913, -0.0194461457, -0.0136899855, 0.0164916571, -0.00586759159, -0.00595673546, -0.00573705882, -0.025597088, 0.00395417726, -0.00870428327, 0.0034543334, 0.0156002156, -6.7355526e-05, -0.00918184128, 0.0283732899, -0.00154569489, -0.00299428636, 0.0160841402, 0.0251513682, -0.0196881089, -0.00377588905, 0.0152054345, -0.0126520935, 0.0185929108, 0.000947155931, -0.0368037745, -0.00849415828, 0.0121044936, -0.0103916535, -0.00773006631, -0.0338492841, -0.000867563, -0.0235595088, 0.00702328095, -0.0420250706, 0.010455328, 0.0157912392, -0.0112703601, 0.0115059549, -0.0128749534, 0.01149322, -0.0361160897, -0.00779374037, 0.00438079517, -0.0241962522, 0.0201975033, 0.020923391, -0.0224006362, -0.0201083589, 0.0235467739, -0.0188476071, 0.0231901985, 0.00956388749, 0.02834782, 0.0360142142, -0.00416430272, -0.0445211045, -0.0123337219, -0.00160140987, 0.031098552, 0.00266795536, -0.00908632949, 0.00846232101, 0.00637380267, -0.0208979212, 0.00128701783, -0.0154219279, 0.0208342467, -0.00459092064, -0.0227699485, -0.00218403013, 0.0240179654, -0.0324484482, 0.0013984479, -0.0128813209, 0.03221922, 0.011423178, -0.0181089845, 0.00711879227, -0.0147724496, -0.00761545217, -0.0112576252, -0.036880184, 0.0207578391, 0.0364217274, 0.0112576252, -0.00778100546, -0.0202102382, 0.0107036587, -0.00711242482, -0.0103025101, 0.0219676513, 0.00174626906, 0.0243490711, -0.0124929072, 0.0205668155, -0.00380135863, 0.0137154553, 0.00473418785, -0.0106145144, 0.00525313383, -0.00536138052, -0.0244509503, 0.00781921, 0.0248584654, 0.0113849742, 0.00132681429, 0.0106909238, -0.00910543185, 0.00751357339, 0.0230755843, -0.0229737051, 0.00465777889, 0.0122955171, 0.014594161, 0.0235467739, -0.0175359156, 0.025737172, 0.00852599554, 0.00266636349, -0.00118593476, -0.0115250573, 0.000251911639, 0.0157275647, 0.000246738113, -0.0142248496, -0.00360078458, -0.00216811174, -0.0039350749, 0.0152563741, -0.00512578525, 0.00921367854, 0.00313596171, -0.0114550153, 0.0076918616, 0.00128781376, 0.014581426, 0.00203121174, 0.0101305889, 0.0038586657, 0.0114995874, 0.00974217523, 0.0272526219, 0.00402103504, -0.0196371693, -0.0021983569, 0.011353137, 0.00267750653, -0.0274054408, -0.00773006631, 0.0273545012, -0.00192137354, -0.00367401, 0.00686409511, 0.00544415694, -0.00559697533, 0.01568936, 0.00851326063, 0.0209743306, -0.0227826834, 0.0191532448, -0.00720793661, 0.0127730742, 0.032346569, -0.0189622212, 0.00709332246, -0.0436806045, -0.00971670542, -0.00458455319, -0.00392552372, -0.00442218361, 0.0289590936, -0.00663486728, 0.0249730796, 0.0199173372, 0.00766639179, 0.0110220304, -0.010385287, -0.00176377955, -0.0388413519, 0.00207419205, -0.00135069212, 0.00681315549, 0.01417391, 0.00779374037, 0.0145050166, 0.00509394798, 0.020783307, -0.00114056678, -0.0178670231, 0.0168737024, -0.00703601586, 0.0350463614, -0.0132952044, 0.000879502, -0.0147342449, 0.0138682732, -0.004161119, -0.00417385343, 0.000368913257, 0.030691037, 0.0149634723, -0.00568611966, 0.0153582534, 0.0229609702, 0.00605543051, 0.00249603461, 0.0192296542, 0.00453043, 0.00275709946, 0.0120471874, 0.0209998, -0.0248584654, 0.0151417609, 0.0243236013, -0.019395208, 0.0137154553, 0.00458773691, -0.0077491682, -0.0042789164, -0.0111875832, -0.00758998236, 0.00417067, 0.0459219404, -0.0105763096, -0.0025294635, -0.00955115259, -6.25799439e-05, 0.00754541066, 0.00324102445, -0.0142248496, -0.00241644168, -0.00771096395, -0.00440944871, -0.00721430406, -0.0236868579, 0.00599494, 0.00602359371, -0.00403695367, -0.0204776712, 0.0167590883, -0.00699144369, 0.00490292488, 0.00774280122, -0.0289336257, 0.00794655923, -0.0282714106, 0.00436806027, -0.0345115, 0.0147597147, -0.00149953098, -0.0284751691, -0.0354793482, 0.0152436392, 0.0200064816, 0.0185929108, 0.00403377, -0.00650115125, 0.00753267575, -0.0114613827, -0.0225152504, 0.00184814807, -0.0320918709, -0.0288062766, 0.0158931185, -0.00962119456, -0.00448585814, 0.0236868579, -0.0267432276, 0.0107928021, -0.0319390558, 0.00519901048, 0.00680042058, -0.00289877481, 0.00180039229, 0.00528815482, -0.00207578391, 0.0202611778, 0.00382046099, 0.00369629613, 0.00317257456, 0.0184528269, -0.0138428034, 0.00415793527, -0.0119134709, 0.0113149323, -0.0238651466, 0.00554285198, 0.0108883139, 0.010187896, 0.0421014801, -0.0142248496, -0.0147851845, -0.0268451069, -0.00300383754, -0.0343077406, -0.0150780864, -0.0248584654, -0.0147851845, -0.0150908213, 0.00746900123, 0.00486153644, -0.001306916, -0.0244127456, -0.0208597165, -0.0113913417, 0.000685295206, 0.0153582534, 0.0111175412, -0.00965939928, 0.000908155402, -0.00206941646, -0.00929008797, 0.00248966715, -0.0177906137, 0.0161732845, 0.0161223449, 0.0248966701, -0.0166062713, -0.0248329975, -0.00157594017, 0.00425344659, -0.0239288211, 0.0427127555, 0.00127428293, -0.0210889447, 0.0197645184, 0.00483606709, -0.00223974534, 0.000269024138, -0.00993956625, 0.000673356233, -7.18326264e-05, -0.0165553316, -0.00328241265, -0.0148361232, 0.0145686911, 0.0177014694, 0.000542027934, 0.00398919825, 0.00377270533, -0.00268546562, 0.00247852411, 0.00175582024, 0.00553648453, 0.0234194268, 0.00109599472, -0.0173830967, -0.0260682795, -0.0087806927, 0.0162878986, 0.0127348704, -0.0116142016, 0.00228590914, 0.0398092046, 0.00778100546, 0.00839864649, 0.0430183895, 0.0183509476, -0.0141866449, 0.00871065073, -0.0282714106, -0.0398856141, -0.00885710213, -0.00651070243, 0.020082891, -0.0117160808, -0.00571158901, -0.0107545974, -0.00488700625, 0.00218243827, 0.0196626391, 0.0207960419, -0.00573705882, -0.0144668128, 0.0252277777, 0.00537411496, -0.0163006335, -0.0185801759, -0.00272207847, 0.00299110264, 0.00522766402, 0.0233939569, 0.00137934566, 0.0193697382, 0.00131248753, 0.0400384329, -0.0112512577, 0.0251895729, -0.00068688707, -0.0283987597, -0.0155365411, -0.00939833373, 0.00443173479, -0.023801472, -0.0300288238, 0.00841774885, 0.0227572136, 0.00612547249, 0.0191532448, -0.00269183307, -0.0198027231, -0.00362625415, 0.00777463801, -0.00510349916, 0.0119644105, -0.0089016743, -0.00119946559, 0.0235213041, -0.0071824668, 0.0151035562, 0.0239924956, 0.00608408405, -0.0197008438, -0.0076918616, -0.0185419712, 0.0200574212, -0.0119835129, -0.00794019178, -0.0147087751, -0.00197708863, 0.0235213041, -0.0109647233, -0.00641519064, 0.00570522156, -0.00147167337, -0.00623053499, -0.0172812194, 0.0231265239, 0.00566383358, -0.025049489, -0.000415873103, 0.0211526193, 0.00688956492, -0.00156718493, 0.0177778788, 0.0211016797, 0.00853873, -0.00749447104, -0.0132697346, -0.00695323898, 0.000423832389, -0.00561607769, 0.00721430406, -0.000300463347, 0.0204904061, 0.00805480499, 0.0166190062, -0.0164661873, -0.0109010488, 0.0141357053, -0.0085578328, 0.0112257879, -0.042508997, -0.00023420222, -0.00400193268, 0.0104171233, -0.000460445153, 0.00823309366, -0.00694050407, -0.0151417609, 0.00186088285, 0.0231392588, -0.00196117, -0.0108182719, 0.00715699699, 0.00567338476, 0.0363707878, 0.0142757893, 0.014313994, -0.00138014159, 0.00468961569, 0.0347407237, 0.0057593449, 0.00379499118, 0.0036039683, 0.0308947954, 0.0176250599, -0.00359441712, 0.0228972957, -0.0315315388, -0.00617322838, 0.0155110713, 0.00749447104, -0.00936649647, -0.00199937471, 0.012180903, 0.0117351832, -0.00786378235, -0.00916273892, -0.0223114919, 0.00976764504, 0.0064916, -0.0182235986, -0.00323624886, 0.0366000161, 0.0218912419, 0.000423434423, 0.00107211689, -0.00834770687, -0.00580391707, 0.0101815285, 0.00943017099, -0.00926461816, 0.0117606521, -0.0243363362, 0.00383956335, -0.0101942634, -0.00560971024, 0.0117797544, 0.00346706831, 0.0018545154, 0.0157403, -0.00972944, -0.0144668128, -0.001375366, 0.000833338068, -0.00936649647, 0.0215728693, 0.00760908471, 0.0166826807, 0.0213563778, -0.0107991695, 0.0263357107, -0.0232411381, 0.000543221773, 0.000430199842, 0.0178415533, 0.0243490711, -0.00685772765, 0.0122636799, -0.00938559882, 0.0233175475, -0.00129497715, -0.0143394638, 0.0218148325, -0.00727161067, 0.0083349729, -0.00451769494, 0.000131626817, -0.0250622239, 0.0138682732, 0.00837317668, 0.0108310068, 0.0206050202, 0.000240171692, 0.00360078458, 0.00712515973, 0.0116842436, -0.00177651434, 0.00414201664, -0.007360755, -0.0134225534, -0.00253901468, 0.0245400947, -0.0129067907, 0.0083349729, 0.0136517808, -0.011213053, -0.00229546032, -0.0122318426, 0.00502708973, -0.0212927032, -0.0148870628, -0.00894624647, -0.0051448876, 0.0191787146, 0.00372176571, -0.00754541066, 0.00956388749, -0.00179402484, 0.0049538645, -0.0107928021, -0.0027666504, -0.0137409251, -0.0300542936, -0.0120471874, -0.0248329975, -0.0237505324, 0.00271411915, 0.00659666257, -0.0047883112, -0.0183127429, 0.0294939596, 0.00602677744, -0.000267233292, 0.00635470031, -0.0144031383, -0.0212799683, 0.0254188012, -0.00503664091, 0.0216365438, 0.00031021348, -0.0258772559, -0.00533272699, 0.00480423, 0.0118816337, -0.0221841428, 0.0218020976, 0.00948111061, -0.00769822905, -0.0104107559, -0.00750720594, 0.0197899882, -0.000963074563, -0.0104744304, 0.0206559598, 0.0342822708, 0.0298760049, -0.00737349, -0.00494749704, -0.00570522156, -0.00853236299, 0.0146323657, -0.0140210921, -0.0133843487, -0.00508439681, 0.0122000054, -0.0031280024, -0.00423434423, 0.00117160799, -0.0133206742, 0.0175231807, -0.017064726, -0.00120105746, 0.00111191336, 0.0030388583, -0.00188316894, -0.00298632705, 0.00246101362, 0.00406879093, 0.00715699699, -0.00651070243, 0.000645896711, -0.0038745841, 0.0153455185, 0.00475010648, -0.0426363461, 0.00618596328, -0.0120535549, -0.0133716138, -0.000607692054, -0.00706148567, 0.00969123654, 0.0022461128, 0.0231392588, -0.0125120096, -0.0179943722, 0.0134734921, 0.0133716138, 0.00142869318, -0.00759635, 0.0128240138, 0.00473418785, -0.031506069, 0.00561607769, 0.0108501092, -0.00574024254, 0.0346388482, 0.00126473175, 0.0151544949, -0.00332061737, -0.00380454236, -0.000675744, -0.000694050395, 0.00795929413, 0.0122636799, -0.0201592986, 0.00923914835, -0.0199173372, -0.0146705704, 0.0183891524, -0.0193824731, 0.0023766451, -0.0161605496, -0.00427254895, 0.00753267575, -0.000388015585, -0.00498251803, 0.0147469798, 0.027660137, 0.00153773557, 0.0241962522, 0.00973580778, -0.0210762098, -0.000637937395, 0.01149322, -0.00242599286, -0.0157020949, -0.00712515973, 0.00684499275, -0.0233302824, 0.0060904515, -0.00319804414, -0.000884277513, -0.00491247606, -0.00611910503, 0.016377043, 0.00716336444, 0.00771733141, 0.0192041844, -0.0175104458, -0.0154473977, 6.47687557e-05, -0.00950658, -0.013893743, -0.0320409313, -0.00291787717, -0.00462912535, -0.0368547142, 0.00460683927, -0.0112894624, 0.00830950309, 0.00458773691, 0.00536138052, 0.0151927, -1.96743786e-05, 0.0184655618, -0.00879979506, 0.00105221861, 0.0144668128, -0.00612228876, 0.0211526193, -0.00231137895, -0.00972307287, -0.0130914468, -0.0231901985, -0.00357531477, 0.0161223449, -0.00347980321, -0.0310221426, 0.0134607572, -0.0237632673, -0.0150144119, 0.00892714411, -0.0174595062, 0.00550783146, 0.00950021297, -0.00060610025, 0.0328559652, -0.00326331053, -0.0117224483, 0.00612865621, -0.0236231834, 0.00825856347, 0.00431075366, 0.0190768354, -0.0162751637, 0.00884436723, -0.00529133854, -0.00322192209, 0.0135626364, 0.0134989619, -0.0105699422, 0.00732891774, -0.00392870745, 0.000511782593, 0.0245528296, -0.0183764175, 0.00665396964, 0.0241198447, 0.00378225651, 0.0123400893, -0.00244827871, 0.00483925082, 0.0153455185, -0.0198027231, -0.0143394638, -0.0164279826, 0.00501435529, 0.0117351832, 0.00580391707, 0.00288922363, 0.0319390558, 0.0135371666, 0.0140720317, 0.0125374794, -0.00467369752, 0.0172430146, 0.00714426208, 0.0335691161, 0.00453361357, -0.00283510052, -0.03221922, -0.00681315549, -0.0177269392, 0.00829040073, 0.010315245, -0.0123719266, 0.00865971204, 0.0164279826, -0.0104489606, -0.00806117244, -0.01568936, 0.00876159, 0.00140401942, -0.00149634725, 0.013346144, -0.00765365688, 0.0259791352, 0.00199619099, 0.00753267575, 0.0179943722, -0.00804843754, -0.0197899882, 0.00273640524, 0.00942380354, 0.00449222559, 0.00391278882, 0.0101560587, -0.00200733379, -0.0137027204, -0.0133588789, -0.0192041844, 0.00253423909, -0.00503027346, -0.0136899855, 0.0126520935, -0.0133970836, 5.8264518e-06, -0.0102706729, 0.0144031383, -0.0120217176, 0.0196371693, 0.0133843487, 0.00757724745, 0.00808664225, -0.00252468791, -0.010047812, -0.00415793527, -0.00482969964, -0.0210252702, 0.0213691127, -0.00685136, -0.00512260152, 0.00607771659, 0.0224515758, 0.0133588789, -0.0147597147, -0.0232793428, -0.0100860167, 0.00483288337, 0.000460843119, -0.0104871653, 0.0319899954, 0.019548025, -0.00190227118, 0.00504619209, -0.0223369617, -0.0212290287, 0.00343523128, -0.01246107, 0.0193570033, -0.000282554916, -0.0161987543, 0.00925188325, 0.0336200558, -0.00579754962, -0.0291883219, -0.0126075214, -0.0233939569, -0.0179816373, -0.00241644168, -0.0150398817, -0.0208597165, -0.00741806161, 0.00965939928, -0.00391915627, 0.00760908471, 0.00773643376, 0.00694050407, 0.0218020976, 0.012110861, 0.0181853939, -0.000283947797, -0.00780010782, 0.0213818476, 0.0176250599, 0.00657756, 0.000159086383, -0.0159949977, 0.0177651439, -0.0207960419, 0.00142471364, -0.00802933518, -0.00550464774, 0.00690866681, 0.0135499015, 0.00801023282, -0.00930919, 0.0131423855, 0.00202802802, 0.000309218565, -0.00859603751, 0.0192805938, -0.019395208, 0.0072397734, -0.0125693167, -0.00660303, 0.00520856166, -0.000992524, -0.01417391, -0.0147851845, 0.01149322, -0.0321937501, -0.030003354, -0.0185547061, 0.00117479172, 0.00158628728, -0.00810574461, 0.0194843505, -0.00688956492, 0.0151927, 0.0208979212, 0.0125374794, 0.00964029692, 0.0199937467, 0.000821399095, 0.00804843754, 0.00181949453, 0.0283732899, -0.021318173, -0.0131169157, -0.0194206759, 0.0105062677, -0.00460683927, 0.0279657748, -0.00492521096, 0.00738622481, -0.00383319589, -0.00401785132, 0.00410699565, 0.0232920777, 0.0299269445, -0.00730344793, -0.00043417947, -0.00853873, -0.00547281047, 0.00597265409, 0.0161860194, -0.00191659795, 0.0164916571, -0.00328878, 0.000160578755, -0.00283669238, 0.00326331053, 0.00210602907, 0.00127826259, 0.000140879507, 0.00568611966, -0.0116078341, -0.00784468, -0.0146705704, 0.0194461457, -0.00775553565, -0.00533591071, 0.0087806927, 0.0137918638, -0.00038144915, 0.0360142142, 0.00173194229, -0.00714426208, 0.0070169135, -0.000347224181, -0.0153964581, 0.00710605737, 0.00683225784, -0.00173671788, -0.00487745507, 0.0085642, 5.17354092e-05, -0.023381222, 0.00482333219, -0.00533909444, 0.00461639045, -0.0245273598, 0.0120026153, 0.00617322838, 0.00850689318, 0.0127730742, -0.00446993951, -0.00118513883, 0.0234194268, 0.0031582478, 0.00107450469, -0.00893351156, 0.0198536627, -0.0155110713, -0.0180325769, 0.0102961427, 0.0112066856, -0.0256989673, -0.0201465636, 0.014594161, 0.0164916571, -0.00363262161, -0.00671127671, -0.00755177811, 0.012995935, 7.8660205e-06, 0.0237887371, -0.000287529489, -0.0046227579, -0.012798544, 0.0154856024, 0.00831587054, -0.00493157841, 0.00414201664, 0.0102643054, -0.0197899882, -0.00646294653, -0.0166572109, 0.0150780864, 0.00768549414, -0.0173194241, -0.011563262, 0.0130914468, 0.0157403, 0.000430199842, -0.00677495077, 0.0135244317, 0.0102388356, -0.00251991232, 0.0111748483, -0.0127412379, 0.025176838, -0.0080166, -0.00318053388, 0.00827129837, -0.011620569, 0.0213691127, 0.00976127759, -0.0137791298, 0.00849415828, 0.00167145173, 0.0119071035, 0.0198027231, 0.00621461635, 0.00937923137, 0.0110602351, 0.0249730796, -0.00026982007, -0.00626237225, -0.0109010488, -0.0089016743, 0.0120599223, 0.000168040584, -0.00375041924, 0.00884436723, -0.0203121174, -0.0236359183, -0.0111939507, -0.0189494863, 0.0211271495, -0.0126393586, 0.0068386253, 0.000332698488, 0.0292647313, 0.0165553316, -0.028067654, 0.00479786238, 0.00137218228, 0.0035148242, 0.018300008, 0.0175486505, -0.00488063879, 0.0314806, -0.00503664091, -0.014581426, 0.0108119044, 0.0115887318, -0.0122063728, -0.0123464568, 0.00809301, 0.00773006631, 0.0116333039, -0.0208724514, -0.0105190026, -0.00423434423, -0.00437761145, 0.00720156915, -0.0146960402, -0.0100159757, -0.00415475154, 0.00432985602, 0.0194334108, 0.0325248577, 0.00937923137, -0.00313914544, 0.0188094024, -0.00523084775, 0.00303726643, -0.00611910503, -0.00407834211, -0.00139606011, 0.00726524321, -0.00235754275, 0.010665454, 0.0063865371, -0.019815458, 0.00894624647, 0.00102993264, 0.00438716263, -0.0252405126, 0.0133970836, -0.00927098561, 0.0124865398, 0.00602359371, -0.0153582534, -0.00566383358, 0.00432985602, 0.012588419, 0.0241071098, -0.00216174428, 0.00653935596, -0.00356576359, 0.00599175645, -0.00704238331, 0.00214741752, -0.0102133658, 0.00124005799, -0.0201338287, 0.014033827, 0.0148106543, -0.0147087751, -0.0213945825, 0.0103916535, -0.00412928173, -0.0169501118, 0.0302071124, 0.0338492841, 0.00533909444, 0.0160459355, 0.00175582024, -0.00904175732, -0.0135753714, -0.00525313383, -0.0160332, -0.0115314247, -0.000958299, 0.0220185909, -0.0157403, -0.0167718232, 0.00988225918, 0.0091117993, -0.00464822771, -0.00516080623, -0.00581028452, 0.00522448029, 0.00254060654, -0.030410869, -1.38790183e-05, 0.00834770687, 0.019127775, -0.0155110713, 0.0054155034, -0.00112624012, -0.00972944, 0.0307165068, -0.00298314332, 0.0188730769, -0.0059248982, 0.00380135863, 0.00521492912, -0.00231137895, 0.019395208, -0.00505255954, -0.00113499525, -0.00524676638, 0.00595673546, -0.00465777889, -0.0077491682, 0.00342249637, 0.0137663949, -0.00557787297, 0.00412928173, 0.00895898137, -0.0360906236, -0.00526268501, 0.00612228876, 0.00951931532, -0.0150144119, 0.00244987058, 0.00932192523, -0.016504392, 0.0162496939, 0.0138682732, 0.0170265213, 0.00117877137, 0.00741806161, 0.0178542882, 0.00631331187, -0.0103088776, -0.00402740249, -0.0256098229, 0.0161732845, -0.00275709946, -0.0106336167, 0.0121172285, 0.000157594011, -0.00125677243, -0.00914363656, -0.0199810117, -0.00135546771, 0.0173703618, -0.0177778788, 0.0100159757, 0.00816305168, -0.00233207317, -0.00549191283, 0.020235708, 0.0100414455, -0.0113085648, 0.0161605496, -0.00913090166, -0.0137918638, -0.00889530685, 0.0070169135, 0.00623053499, 0.0436296649, -0.00188794453, -0.00780647527, -0.0150653515, -0.00290673412, 0.0070169135, 0.00977401249, -0.0130914468, -0.0150526166, -0.00103789195, -0.00133477361, -0.0104489606, 0.0131805902, 0.00781284273, 0.0107100261, -0.00143028505, 0.00161016511, 0.0167208835, 0.00761545217, 0.000181272917, -0.00286057, 0.00521174539, -0.00874885544, -0.0114804851, 0.00107768842, -0.00327922893, -0.0166826807, -0.00322192209, -0.0273290314, 0.0113276672, -0.000388214568, 0.00591534702, -0.00688319746, 0.0207578391, 0.00310730818, 0.0103470823, -0.000770061684, 0.000343443535, -0.0143267289, -0.00738622481, 0.0261574239, -0.0100159757, -0.0191659797, -0.0258899909, -0.000330509676, 0.0020964779, 0.00406560721, 0.00453043, -0.0136645157, -0.00453361357, -0.000800704933, -0.00157196051, 0.0136135761, -0.0101815285, 0.0152181694, 0.00714426208, -0.00569567084, -0.000308820599, 0.0269215144, 0.00694687152, -0.0202866476, -0.0135881063, 0.00224292907, -0.00405923976, -0.0298760049, 0.0168100279, -0.0165553316, -0.00249762647, 0.0102515705, -0.0333398916, 0.0216492787, 0.00479149492, -0.00743079651, 0.0217638928, -0.00245623803, 0.00653298851, -0.00431393739, -0.0148361232, -0.0198918674, 0.0233557522, -0.00210602907, 0.0299269445, -0.00687683, -0.0140210921, 0.015409193, 0.00547917793, -0.00572750764, 0.000136402392, -0.00301975617, 0.00791472197, 0.00690866681, -0.0139192129, 0.0206814297, 0.00478512747, -0.016924642, 0.00627192343, -0.0149125326, -0.00275232387, -0.0119071035, 0.00385229825, -0.00320600346, 0.0075263083, -0.0117415506, 0.0154219279, -0.0127858091, 0.0042789164, -0.0121681681, -0.000957503042, -0.00918184128, 0.00298951077, 0.00732255029, -0.00744989887, 0.00258677057, 0.00242280914, -1.63414243e-05, -0.00930282287, -0.00268069026, 0.017879758, -0.0137918638, 0.00475329, -0.0120917587, -0.019942807, -0.0292902011, 0.0132824695, 0.022693539, 0.00946200825, 0.0164534524, -0.0212417636, -0.0104107559, -0.00058421219, 0.00865334459, 0.000249523873, 0.035632167, 0.0102770403, -0.00550464774, 0.00315665593, -0.00318053388, 0.0103343474, 0.00568930339, -0.00115966913, 0.00621143309, 0.0151672298, 0.0171538703, -0.00704238331, 0.0261064842, 0.0110475, 0.0051448876, 0.000451689935, -0.0122127403, -0.011143011, -0.00777463801, -0.00631331187, 0.00300383754, -0.000585008122, -0.0129258931, 0.00487108761, -0.0147087751, 0.0243236013, -0.00119866966, -0.0170392562, 0.00439989753, 0.00158867508, 0.00577208, -0.00206941646, -0.00899718609, 0.0104043884, 0.010398021, 0.00356894732, -0.0147597147, 0.0196499042, 0.0243108664, -0.00296722469, 0.00732891774, -6.26296896e-05, 0.0181471892, -0.0119198384, -0.00456863455, 0.00647886517, 0.00383001217, -0.0194588806, 0.00744353142, 0.00443491852, -0.0280421842, -0.0148743279, 0.00103311636, 0.0122000054, -0.00108325994, 0.00265681231, 0.0182235986, 0.00589942839, 0.0091117993, 0.0163388383, -0.00571477273, 0.0194588806, 0.0105126351, -0.00913090166, 0.0113404021, -0.015816709, 0.00936649647, -0.00800386537, -0.0204904061, -0.000986952451, -0.00298314332, 0.00117240392, 0.0171284, -0.00874885544, -0.0175868552, -0.00255652517, -0.00280644698, 0.0107291276, 0.00243395194, 0.00579118216, 0.0168227628, 0.00891440921, -0.00187361776, -0.0223496966, -0.0102324681, 0.00967213418, 0.0289845634, -0.00619551446, 0.0165808015, 0.00453998102, 0.0228972957, -0.00865334459, -0.0177906137, 0.00831587054, 0.010187896, -0.00481059728, 0.0111366436, -0.00374723552, -0.026972454, 0.0164789222, -0.0169119071, 0.0184018873, -0.00193410844, -0.0240943749, 0.00362307043, -0.00131726312, 0.0120917587, -0.0239288211, -0.0224133711, 0.0165680666, 0.00124722137, -0.0167590883, -0.0134480232, 0.000129637, -0.00363898906, 0.0124228662, 0.00737349, 0.0215474, 0.00316620711, -0.0211780891, 0.00468006497, -0.00154728675, 0.00298314332, 0.00630376069, -0.0102515705, -0.024629239, 0.00364854024, 0.000190127626, -0.0151544949, 0.00158947101, -0.0249985494, 0.025176838, -0.00806754, 0.00806754, 0.0220695306, -0.0115441596, 0.0220440608, 0.00371858198, -0.0123209869, -0.00667943945, -0.0170137864, -0.0165171269, -0.0141611751, 0.00371221453, -0.0187839326, -0.0185037665, 0.00113021967, 0.0040401374, 0.00193251658, -0.00732891774, 0.0141229713, -0.0160332, 0.0168991722, 0.00874248799, -0.00504937582, -0.00329514756, -0.00210443721, -0.00128701783, -0.00307547115, 0.00629739324, 0.0114613827, -0.0133079393, 0.00631331187, -0.03221922, -0.00732255029, -0.0366509557, -0.0190258957, -0.0201847684, 0.0147597147, 0.00283350865, -0.0108119044, 0.00572114, -0.00415475154, 0.00397009589, 0.0242981315, 0.0123973964, 0.0131423855, -0.00344478246, -0.0205795504, -0.00509713171, -0.0121044936, -0.00027738139, 0.00819488894, 0.00292106089, 0.0207196344, 0.0215346646, 0.00341612892, 0.00862787478, -0.000353989599, 0.0112576252, 0.0131551204, -0.00890804175, 0.00666670455, 0.0256607626, -0.000186247475, -0.00704875076, 0.00756451301, -0.0229355, -0.0112767275, -0.00353711, 0.0190386306, -0.0125947865, 0.00600767508, 0.019395208, 0.00968486909, -0.00374405179, 0.00202643615, 0.0156256855, -0.00632286305, -0.00411973055, 0.0122191077, 0.00907359459, 0.0147724496, 0.00757088047, 0.006673072, -0.00539958477, -0.00986315683, -0.00398283079, -0.00685772765, -0.0118816337, 0.00329514756, 0.00381727726, 0.00826493092, 0.0171793401, 0.001306916, -0.00333016855, -0.00654572342, 3.03696797e-05, 0.00913726911, 0.00986952428, -0.0079911314, 0.0145050166, 0.0198918674, -0.0155874807, -0.0110793365, -0.011213053, -0.0264630597, -0.0123973964, -0.0306146275, 0.00533591071, -0.0155365411, -0.00307706301, 0.0287808068, 0.00903539, 0.00608090032, -0.000243554387, 0.00657119276, 0.00527860364, 0.0111493785, 0.024756588, -0.0340530425, -0.00318371761, 0.00413883291, -0.0016889621, -0.00792108942, -0.018440092, 0.0161987543, -0.0120153502, 0.0158294439, 0.023381222, -0.00277142599, 3.12402299e-05, -0.00329514756, 0.00723340642, -0.0296977162, -0.00276824227, 0.0196499042, -0.00182427012, 0.0032298814, -0.00767275924, -0.00975491, -0.00831587054, -0.0119771454, -0.0022158674, -0.0343841501, 0.00313755358, -0.0108819464, 0.024909405, -0.00108803541, -0.00916273892, -0.0275327899, 0.00666670455, -0.0182872731, -0.0113913417, 0.0179943722, -0.01610961, 0.00259791338, -0.0188985467, 0.000916114717, -0.0331616029, -0.0119962478, -0.0156766251, 0.00219358131, -0.00732891774, -0.00576571235, -0.012868586, 0.0119389407, 0.00946200825, 0.0204649363, 0.0297486559, -0.0171793401, -0.000690468762, -0.0230755843, -0.00307387928, -0.0288572162, 0.0134098185, 0.00142789725, 0.0188221373, -0.0119134709, -0.010035078, -0.0113658719, -0.0151799647, -0.00517035741, -0.0095766224, 0.0111302761, -0.0129704652, -0.0426872857, 0.000324739172, -0.00955752, -0.0162751637, 0.0135753714, -0.0278893653, -0.0152436392, -0.00646294653, 0.0159313232, -0.0114104431, 0.0234958343, -0.0146833053, -0.0190641, -0.0166699458, -0.00233366503, -0.0229100306, -0.0154728675, -0.00227635796, -0.0168991722, 0.00502072275, -0.0015918588, -0.00392870745, -0.0114295455, -0.00606498169, -0.0195862297, -0.0247947928, 0.00229546032, -0.00828403328, 0.00520219421, -0.0234576315, -0.0167336185, -0.0171284, 0.0219294466, 0.0033651893, -0.000140979, -0.0303344596, 0.00331743364, -0.00412928173, 0.00701054605, -0.00179402484, 0.00574024254, -0.00111270929, 0.00510349916, -0.0013093038, 0.00233366503, 0.0029624491, -0.00256130076, 0.00550146401, 0.00167941104, -0.0130277723, 0.000487108773, 0.000611273746, -0.00711242482, 0.0118434289, 0.0338492841, -0.0171666052, 0.00430757, -0.00175263651, 0.0105572073, -0.00168259465, 0.0106208818, 0.00667943945, -0.020923391, -0.0134225534, 0.0191787146, -0.0200574212, -0.015129026, 0.0114422804, -0.00698507624, -0.0299524143, -0.00339065911, 0.00494749704, -0.0234448966, -0.00382682844, -0.0226808041, 0.00743716396, 0.00327604543, 0.000283748814, 0.00579436589, 0.00540595222, -0.00265203672, 0.018440092, -0.0182363335, 0.0291373823, -0.00362943788, -0.0171666052, 0.0320154615, -0.000298075553, 0.0154346628, -0.018987691, 0.0090226559, 0.000974217546, 0.00655845786, -0.00347661949, 0.00987589173, -0.0160077307, 0.00498251803, -0.00476284139, -0.00769822905, -0.00283350865, -0.00754541066, 0.0213563778, -0.0164279826, -0.0163515732, -0.00027320275, -0.027660137, -0.0208724514, 0.00279212021, 0.00879342761, 0.00629420951, 0.0218020976, -0.00291469344, -0.0355812274, -0.0106527191, 0.0184655618, -0.0212290287, -0.0062178, -0.00362625415, -0.0222605523, 0.00659029512, 0.0239797607, -0.00419613952, 0.0136517808, -0.00406879093, -0.0110347653, -0.00018664544, -0.00932192523, -0.0156256855, -0.00639608828, 0.00258358684, -0.00691503426, -0.00538366614, -0.0128876884, 0.0294175502, 0.0091245342, 0.0175104458, -0.0105890445, 0.0135116968, 0.00388413528, -0.00149953098, 0.0335436463, 7.20316093e-05, 0.00686409511, 0.000906563539, -0.0271252729, 0.016236959, -0.0180071071, -0.0155365411, -0.0103279799, -0.0161987543, -0.018440092, 0.00764092198, -0.00855146535, 0.0202611778, 0.000872338598, -0.00652662106, -0.0246165041, 0.017192075, 0.00780647527, -0.0110220304, -0.0196117, 0.0176250599, -0.00587714231, -0.00255493331, -0.014581426, 0.0120917587, -0.00652025361, -0.0260300748, 0.0101751611, -0.0178288184, 0.0224388409, -0.00949384551, 0.00350845675, -0.0145304864, 0.0105635747, -0.0127858091, 0.0104043884, 0.00260746456, -0.0107291276, 0.00063276384, -0.00746263377, 0.0147851845, 0.00566701731, -0.0108373743, -0.00344796595, 0.00202325243, 0.0120280851, 0.0132187949, -0.0205922853, -0.00524358265, 0.0153455185, 0.00437761145, -0.011085704, 0.008838, 0.0274563804, 0.000727081497, -0.000799511035, -0.00711879227, -0.0011230564, -0.00409744447, 0.00208692672, 0.00890804175, -0.00874885544, 0.000912135059, 0.020095624, -0.0127667077, 0.0187966675, 0.00550464774, -0.0164916571, -0.0185037665, -0.0117988568, 0.00196276186, -0.00332061737, 0.0307419766, 0.00967213418, -0.00609363522, -0.0180707797, -0.00509713171, -0.010455328, 0.0111048063, 0.0265649389, -0.0154346628, 0.0172048099, 0.00705511821, -0.00217607082, 0.00242280914, -0.007360755, 0.0160968751, 0.015956793, -0.0175104458, -0.00591853075, -0.0219039768, -0.0237377975, 0.022158673, 0.0207196344, 0.00633559795, 0.00560334278, -0.00781921, -0.0167590883, 0.0143394638, -0.0117033459, 0.000880297914, -0.00814394932, -0.0178670231, 0.010187896, 0.00744989887, -0.00225088838, 0.00749447104, -0.0186565854, 0.00946837571, 0.0183127429, 0.0266668182, -0.00234958343, 0.0180835146, -0.00608408405, -8.81989254e-05, 0.00803570263, 0.0184528269, -0.00510986662, 0.00232093013, -0.0113085648, 0.0105381049, 0.00964029692, 0.00495704822, -0.00473737158, 0.000583416258, 0.0247693229, 0.0189367514, 0.00345751713, 0.0129832, -0.0107036587, -0.0103407148, -0.0103534497, -0.0047883112, 0.00129020156, 0.0139574176, -0.01472151, -0.00486472, -0.0114677502, 0.00713152718, -0.0324739181, 0.0169373769, -0.0329069048, -0.00896534882, 0.032754086, -0.00965303183, -0.00897808373, -0.00750083849, -0.000839705521, -0.0108883139]
|
31 Aug, 2020
|
Fabric.js Image cornerSize Property
31 Aug, 2020
Fabric.js is a javascript library that is used to work with canvas. The canvas image is one of the class of fabric.js that is used to create image instances. The canvas image means the Image is movable and can be stretched according to requirement. The cornerSize property of the image is used to change the size of the controlling corners of the canvas image.
Approach: First import the fabric.js library. After importing the library, create a canvas block in the body tag which will contain the image. After this, initialize an instance of Canvas and image class provided by Fabric.JS and change the size of the controlling corners of the canvas image using the cornerSize property of the image object.
Syntax:
fabric.Image(image, {
cornerSize:Number
});
Parameters: The above function takes two parameters as mentioned above and described below:
image: This parameter takes the image.
cornerSize: This parameter defines the size of the controlling corners of the canvas image.
Example: This example uses FabricJS to change the size of the controlling corners of the canvas image as shown in the below given example.
<!DOCTYPE HTML>
<html>
<head>
<!-- Adding the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<h1 style="color: green;">GeeksforGeeks</h1>
<b>Fabric.js | Image cornerSize Property </b>
<canvas id="canvas" width="400" height="300"
style="border:2px solid #000000">
</canvas>
<img src =
"https://media.geeksforgeeks.org/wp-content/uploads/20200327230544/g4gicon.png"
width="100" height="100" id="my-image"
style="display: none;">
<script>
// Create the instance of canvas object
var canvas = new fabric.Canvas("canvas");
// Getting the image
var img= document.getElementById('my-image');
// Creating the image instance
var imgInstance = new fabric.Image(img, {
cornerColor:"red",
// Using cornerSize property
cornerSize:50
});
// Rendering the image to canvas
canvas.add(imgInstance);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js Textbox cornerStyle Property/Fabric.js Textbox cornerSize Property/Fabric.js Image cornerSize Property
|
https://www.geeksforgeeks.org/fabric-js-image-cornersize-property?ref=asr10
|
CSS
|
Fabric.js Image cornerSize Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, Fabric.js Textbox cornerSize Property, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Fabric.js Image cornerSize Property, Onsen UI Fab CSS Components, Fabric.js Textbox cornerStyle Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0216087308, 0.0136859482, -0.0045546582, 0.0424138829, 0.0246221498, -0.00579769397, -0.00455151917, 0.0197127871, -0.00573491445, -0.0184697509, 0.000903241162, -0.0164859165, -0.00416856399, -0.0282256976, -0.0123989666, 0.0207674839, -0.0617248788, 0.00246880692, -0.0327207148, -0.00581652764, -0.000188731108, -0.0277234614, -0.0131209316, -0.014740645, 0.000911873358, 0.0384462141, 0.019097548, 0.0147908684, -0.0397771411, 0.0273718964, 0.0187836494, 0.0063941, -0.0136106126, -0.0146904215, -0.0067174146, -0.0394758, -0.0089147, 0.0626289099, -0.0234670062, -0.02126972, 0.0186580904, 0.00106725283, 0.00523267779, 0.026718989, -0.0141881844, -0.00942321494, -0.0491689667, -0.00488425093, -0.0282759219, -0.038069535, -0.0129074808, -0.0260660797, -0.00250490522, 0.00777839, -6.78313736e-05, 0.00947971642, -0.00444793329, 0.0403547138, 0.0025206, -0.0163980257, 0.0355583541, -0.074833259, -0.0310884472, 0.00722592929, -0.0363117084, -0.00473985821, 0.0175029468, 0.0135603892, 0.0104716336, -0.0154312197, -0.0326704904, 0.00778466742, 0.0092851, -0.0388731137, 0.00938554667, -0.0296570733, 0.0341772027, -0.00764027471, -0.0589625798, 0.0414596312, -0.00347171072, 0.00300557236, -0.0104151322, 0.0399278104, -0.0266436525, -0.0302848686, 0.0401035957, -0.0356085747, 0.00464882795, 0.0387475565, -0.00403358787, 0.0186455343, 0.0119343977, -0.0429914556, -0.007973006, -0.00474613626, 0.0111245411, -0.0111684864, -0.0115891099, 0.0119469538, -0.00416856399, 0.0341269784, 0.0156948939, -0.0436945856, -0.0106034707, -0.0467080064, 0.00815506745, -0.0346292146, 0.0298830792, -0.00348426658, 0.0443223827, -0.0315404609, 0.00431923475, 0.0423134342, -0.0493447483, 0.0187083147, -0.00799811818, -0.0231531076, 0.030937776, 0.0119846212, -0.000787883706, -0.00461116, -0.000253080158, 0.0408067256, -0.0432174616, 0.0405304953, -0.0135980565, 0.0226885397, 0.0315404609, -0.00272777257, -0.0233916715, -0.0126312505, 0.0271458887, -0.00353762927, 0.0335745178, -0.00703759072, 0.0138366185, 0.00856941193, -0.00568155199, -0.00657302188, -0.00517617632, -0.0273718964, 0.0248481575, 0.0499976538, -0.0118088387, 0.00590755837, 0.00843757484, 0.00230244105, -0.0121917939, 0.0370148383, -0.072171405, -0.0199890174, 0.0191226602, -0.0140500693, 0.0481393784, -0.0128949257, -0.0221360791, 0.040957395, 0.0383457653, 0.0092976559, 0.0403547138, -0.00973083451, 0.000805932854, 0.0436443612, -0.0255764, -0.0269449949, -0.0200894643, -0.016071571, -0.0328462757, 0.0191352144, 0.0153935524, -0.0103146844, -0.0227136519, -0.00914698467, -0.033976309, -0.0379439779, -0.00550263, -0.0396013558, 0.0162599105, -0.0214706156, -0.0423887707, 0.0299835261, 0.0158078969, 0.058159, -0.0108483108, -0.00640979502, 0.0303099807, 0.01426352, -0.00386408297, -0.0336247422, -0.00848152116, 0.0352319, 0.0366130508, 0.00237777643, 0.0251997225, -0.0112061547, 0.0122922417, 0.0153433289, -0.0120160114, -0.0109738698, 0.00784744695, -0.0195118934, -0.0117397811, -0.0316911303, 0.00607078522, 0.0158957895, -0.00454210257, -0.0559993833, 0.0459044278, -0.0171011575, 0.00118261029, -0.0245719273, 0.0154814441, -0.014024958, -0.0133092701, -0.00309974165, -0.0267692115, 0.00775327766, -0.0196625646, -0.0131209316, 0.00647257455, 0.0249360483, -0.00681158435, -0.0479887091, -0.0335745178, -0.0173522756, 0.00699364487, 0.00807345379, 0.00482461043, -0.0247979332, 0.00737032248, -0.0156446714, -0.0191854388, 0.00376677467, 0.0394758, -0.00944832619, -0.00203091931, -0.0239315741, -0.00911559444, 0.0209934916, 0.0192356631, 0.00399592, -0.0283261463, -0.0254633967, 0.046406664, 0.0176033936, -0.016322691, -0.00105077319, 0.0318669118, -0.0127630886, -0.0300588626, -0.0276481267, -0.00875775144, 0.0192858856, -0.0110680396, -0.0382202081, -0.0118025606, -0.011846506, 0.0177540649, 0.0545931198, 0.0351565629, 0.0116707236, -0.00829946, 0.0101012336, -0.0142258527, -0.00657302188, 0.00767794251, -0.0492443, -0.000136937961, -0.030937776, 0.004893668, -0.0307117701, 0.0141756283, -0.03359963, -0.0459546521, 0.0283261463, -0.0247351527, -0.00363179855, 0.0408067256, 0.000275445404, 0.0115514426, 0.0331727304, 0.00458604796, 0.0453017429, -0.0210060459, -0.0116393333, -0.00753354933, 0.0296319611, -0.0327960514, -0.0223369729, -0.0147908684, -0.0059483652, 0.0278239083, -0.00639723893, 0.0199639052, -0.0210813824, -0.00506631192, -0.0290292762, -0.0202652477, -0.0262920875, -0.031314455, -0.0204033628, -0.0211692732, -0.0275727902, 0.0522828326, 0.0151173221, 0.0147155328, -0.0111433752, 0.00661068968, 0.000243074683, 0.00543671148, -0.0220984109, -0.0284768157, -0.033976309, -0.0123487432, -0.00370085612, 0.0501483269, -0.00347798853, -0.027673237, 0.00973083451, -0.03578436, -0.0246472619, 0.0463313274, 0.055848714, 0.0475366972, 0.00371341198, -0.0299333017, 0.0018394416, 0.0245719273, -0.0150168752, -0.009712, -0.0117021129, 0.00360982562, 0.00870124903, 0.0332731754, 0.0316409059, 0.00856313482, 0.00722592929, -0.0434685796, 0.0483402759, 0.0293055065, -0.0116456114, -0.046783343, -0.0169755984, 0.0530864112, -0.0561500527, -0.0193737783, -0.00449187867, 0.0225002, 0.0127254203, 0.000878914085, 0.0180679616, -0.0149540957, 0.0342274271, -0.0241324697, 0.00333987363, -0.0102393487, -0.0254006162, -0.0446739458, -0.017276939, 0.0087389173, 0.000197461384, 0.0060896189, -0.00022090564, 0.0108043654, -0.00122891029, -0.0165738091, -0.00742054591, -0.00997567456, -0.00189123477, -0.0169504862, -0.00549007393, -0.0318669118, -0.00436004158, -0.00617123256, -0.0154437758, 0.00275602355, -0.0121164583, -0.0509770177, 0.0136482799, -0.0270956662, 0.0442219339, -0.00724476343, 0.0116267782, 0.044849731, 0.031314455, -0.02659343, -0.0178042874, 0.0322938152, 0.0278992448, -0.0423385464, 0.00841874164, 0.0394004621, -0.0185702, 0.0246347059, -0.0283763688, -0.0272965599, -0.0478631482, 0.00745821372, -0.0119971773, -0.00802323, 0.0342525393, -0.00436631963, -0.0375673, 0.0302346442, -0.00326139899, -0.0155693348, -0.0225880928, 0.00128384237, -0.0183190815, -0.00115122052, 0.0208428204, -0.0062371511, -0.0255512875, 0.0423636585, 0.0218849611, 0.0221235231, 0.0269701071, -0.00969944429, 0.00408067275, 0.0596657097, -0.00711292634, -0.032268703, 0.00689319754, -0.00956760719, -0.0402040407, -0.0272463374, 0.0132716028, 0.0144518586, -0.00615239842, -0.0946716, 0.04085695, -0.00868241582, -0.0233163349, 0.0123550212, 0.0122294622, 0.0459546521, 0.0405807197, 0.0288534947, 0.00616181549, 0.0188338738, 0.0187459812, 0.0351314507, -0.0226508714, -0.0440963767, 0.0324695967, -0.035884805, -0.0311888941, 0.0224625319, 0.00925371, -0.0274221189, -0.00513850851, -0.0484658331, -0.0242831409, -0.00303539261, -0.00678019458, 0.0256015118, 0.00349054462, 0.00364749343, -0.00745193567, -0.0310382228, -0.0197504554, -0.0129702603, 0.0289790537, 0.023241, 0.00454838062, -0.0229145456, 0.00150043191, 0.0194114447, 0.0209181551, 0.00446362793, 0.00724476343, 0.022110967, 0.0218221806, 0.00798556209, 0.0121980719, -0.00753982738, -0.00624970673, 0.0215333942, -0.020792596, 0.0394506864, -0.0118151167, -0.024421256, 0.0283010341, 0.0118653402, -0.0343278721, 0.0310131107, -0.0309628882, -0.00587616861, 0.00946088228, 0.0367637202, 0.0122545734, 0.00165738084, -0.000222475122, 0.0108169215, 0.0148159806, 0.0130707081, -0.0419618711, 0.0369395, 0.0103649078, -0.0157953426, 0.030083973, -0.00281095551, 0.0473358, 0.0355583541, -0.01570745, 0.018984545, 0.0101137897, -0.0391744561, 0.00473044114, -0.011601666, 0.0363619328, -0.0317664668, -0.0141505171, -0.0187208708, -0.0560998321, 0.0227513183, -0.0190473236, -0.00205446174, 0.0225127563, 0.00791022647, -0.0167621467, 0.0183190815, -0.00834340602, 0.0333485119, 0.0338005237, -0.00504747825, -0.00924743153, 0.0184948631, 0.00676136045, -0.00641293405, 0.00306050433, 0.0231154412, 0.01076042, -0.00872636121, -0.0305610988, -0.01789218, -0.0326956026, -0.0014235269, -0.0143263, -0.0343780965, -0.0216966216, -0.0248104893, 0.0143639669, -0.00704386877, 0.0355834663, -0.0164859165, 0.00171074353, -0.0070940922, 0.00768422, -0.00916581787, 0.0110303722, -0.00929137785, 0.0133846058, 0.012932593, 0.00253001694, 0.0300337505, -0.0269198827, -0.0234167818, 0.0142760761, 0.0335494056, -0.00916581787, 0.0361861475, 0.0565518439, 0.0162599105, -0.0320426971, 0.00964922085, 0.00481519382, -0.0240696892, 0.00586675154, 0.0112438221, -0.00600172766, -0.0247225985, -0.00828690454, 0.00415914692, -0.0129953725, 0.013660836, -0.037115287, 0.0330471694, 0.0306615457, 0.00294436212, -0.0120474007, -0.00307776872, 0.0113003235, 0.00745821372, 0.011111985, -0.0162599105, -0.0246849302, -0.0326704904, -0.0137110595, 0.0155693348, 0.0185450874, -0.0365879387, 0.00338695827, -0.0212446097, 0.0726234168, 0.0189217646, -0.0053519588, 0.0309628882, -0.0372910686, 0.0116518894, 0.0148536479, -0.0121729597, -0.000406890147, -0.0286526, -0.010157736, 0.0261414163, 0.0287279338, 0.0177163966, 0.00349368341, 0.0273467842, -0.00848152116, -0.00133720506, -0.0291046128, -0.0510021299, -0.00956133, 0.00847524311, 0.00108687149, -0.0355081297, -0.0138868429, 0.028049916, -0.0152679933, 0.0321180336, -0.00567527395, 0.0279996917, -0.0215585064, -0.0181181859, -0.0170258209, 0.0194491129, -0.0385215506, -0.0179424025, -0.0215082839, -0.0048120548, 0.0138617307, -0.00312171457, 0.0213827249, -0.00279839966, 0.020189913, -0.0048214714, -0.0196500085, -0.0116644455, 0.00402103178, 0.0161594637, 0.0277987961, -0.00811739918, -0.00322373142, -0.0480891578, 0.0182311889, -0.0126312505, -0.0232661106, -0.0262669753, 0.00205603126, -0.0267441, 0.00985011552, 0.00463627186, 0.0368641689, 0.0168249272, 0.0441717096, -0.00320018898, -0.0235046744, 0.00724476343, -0.00671113702, -0.00160323351, -0.00298830797, -0.0174401663, -0.00291768089, 0.0177540649, -0.0124240788, 0.00899631344, 0.00570980273, -0.00940438081, -0.0168374833, 0.00562191103, 0.000446127378, 0.00768422, -0.0239817984, -0.0176159497, 0.035407681, 0.0340014175, -0.00395825226, 0.0201522447, -0.0423134342, -0.00806717575, 0.00799184, 0.00171702146, -0.010879701, -0.0355081297, 0.0228894334, 0.00846268702, 0.0213325, 0.0314400122, 0.0200894643, 0.0312391184, 0.017276939, 0.0273970068, -0.013660836, -0.00809856504, -0.0286274869, 0.00838107336, 0.00535509782, -0.0312642306, 0.00118810346, -0.0159334559, 0.0127379764, -0.0191101041, 0.0449250638, -0.0156948939, 0.0173648316, -0.0126312505, -0.0159334559, 0.0192105509, 0.0253755059, -0.000632896612, -0.0160213485, 0.000881268294, -0.0077721118, 0.00367260538, -0.0360605903, 0.00315153482, 0.0042438996, 0.0320929214, 0.001404693, -0.0012147848, -0.0262920875, 0.0124868583, 0.000132229485, 0.0134097179, -0.00875147339, -0.000116632684, 8.49976641e-05, -0.00296162651, -0.000372753741, -0.0306615457, 0.000819273468, -0.0208302643, 0.0326956026, -0.0080608977, 0.003203328, -0.0125747491, -0.0121101802, -0.00582280569, -0.0465071127, 0.0027497455, -0.00299458578, 0.00118888821, -0.0473358, 0.00779722352, 0.00957388524, 0.00112453918, 0.015104766, -0.00916581787, -0.0357090235, 0.0299584139, -0.00670485897, 0.0224876441, -0.0342776477, 0.00192576356, -0.000526171352, 0.0030699214, 0.0157953426, 0.00512595242, 0.0122608515, -0.0443474948, 0.041811198, -0.0061869272, 0.00995684136, -0.0100070648, -0.0242329165, 0.0141505171, -0.014866204, 0.00490936311, -0.0144393025, 0.0176159497, -0.00407753373, 0.0147280889, 0.012807034, -0.00434434693, -0.0187083147, 0.000111335656, -0.0133218262, -0.000144687307, 0.0249862727, 0.0201020204, 0.0311637819, 0.0102079595, -0.00601428375, -0.00283292844, -0.0274472311, 0.00416228594, 0.0116581675, 0.00284862332, 5.45397597e-05, 0.0213701688, 0.0138240634, -0.0182311889, -0.00771561, -0.02659343, -0.023441894, 0.014376523, -0.0429161191, -0.00756493909, -0.00770933228, 0.0232284442, 0.0198634584, 0.00993172918, -0.0230149925, -0.0130330399, 0.00956760719, -0.027070554, -0.00649140822, 0.0189594328, -0.00900886953, -0.00345287682, 0.000704700768, -0.0123424651, -0.026216751, 0.0305359866, 0.0144267473, 0.0065855775, 0.0058385008, 0.00745193567, -0.0239315741, -0.010754142, -0.00746449176, -0.0521321595, 0.038848, 0.0368390568, 0.0106536942, 0.00561563298, -0.00835596211, -0.0173271634, -0.00340579217, -0.0434936918, 0.0541913323, -0.00138272019, 0.00702503463, 0.018858986, 0.038295541, 0.0101326238, 0.0235172305, 0.00460802112, 0.0203405824, -0.0012320492, -0.0272714477, 0.00406811666, 0.00283449795, 0.00473044114, 0.0393000171, 0.0093164891, -0.0176912844, -0.00579455495, 0.0115765538, 0.00469277333, 0.000408852, 0.0192984417, 0.00619948329, -0.00831829384, -0.00393000152, -0.00966805499, -0.0303853154, 0.00362865953, 0.0180302951, 0.0180554073, 0.00200580759, 0.0334238485, -0.0570540801, -0.0138366185, 0.0302848686, -0.0294310655, 0.0322184786, 0.00625284575, -0.00104763417, 0.0542415567, 0.0160590168, -0.00608334085, -0.00838735141, -0.0162473544, -0.0192482192, -0.0123173529, -0.00931021105, 0.0134850536, -0.0225127563, -0.00344345975, 0.00340893096, -0.00418112, 0.000793376938, -0.0147657562, -0.03578436, -0.00443851622, -0.0415349677, -0.0124366339, -0.0295315124, 0.0315906852, -0.0315655731, 0.0224499777, 0.0664459, -0.00355018512, 0.00679275, -0.00956133, 0.00872636121, 0.0185199752, -0.0209683795, 0.0131209316, -0.00747704785, 0.0286274869, -0.0128949257, 0.0295315124, 0.00382955419, -0.0166365877, 0.00870752707, 0.0450255126, 0.00671113702, 0.0137110595, -0.0136733921, 0.014740645, 0.000397277, -0.00243270863, 0.0319171362, 0.0167119242, -0.0111747645, 0.0072635971, -0.0203280281, 0.0114384387, 0.0061272867, -0.0287279338, -0.0150922108, -0.0325198211, -0.00291768089, -0.010515579, -0.00185670599, 0.0109424805, 0.0433430187, 0.0331476182, -0.0188464299, -0.00628423551, -0.00335242948, -0.0101389019, 0.00721337367, -0.0309126638, -0.00288629113, 0.00589500228, 0.00480891578, 0.0163854696, -0.0227010958, -0.0179424025, -0.031063335, 0.00508514559, 0.00946088228, -0.00263360329, 0.0224876441, -0.0263925344, 0.0301341973, 0.0541913323, -0.00500667142, 0.00759632885, -0.0113254357, 0.00226320373, 0.0116770016, 0.00437887572, 0.00652907602, 0.00952994, -0.00699992292, 0.00706898049, -0.000466530735, 0.0283763688, -0.0229019895, 0.0115577206, 0.0106285829, 0.0127819218, -0.00735776639, 0.0135101648, 0.0152554372, 0.0150419865, -0.00700620096, 0.025739627, 0.00249391864, 0.0367134959, 0.000293298333, -0.0102267936, -0.00885192, 0.0193612222, -0.00125009834, 0.0246095937, -0.00597975496, 0.0169379301, -0.00894609, 0.00831829384, -0.00221454958, -0.00964922085, -0.00435690256, 0.00310601969, -0.0491689667, -0.00136624055, -0.00765910838, 0.0233163349, -0.0138240634, -0.00718826149, 0.0181935225, -0.0212069415, 0.00641293405, -0.0249862727, -0.0116581675, -0.00293180626, -0.0428658947, -0.00158989278, 0.0333485119, 0.0095362179, 0.0197253432, -0.00648513, 0.0233414471, -0.0365377143, 0.00951738376, 0.0155442236, -0.0127065862, 0.0252373908, 0.0426147766, -0.00546810124, 0.00954877399, -0.0060896189, 0.032745827, -0.00944204815, -0.0236051213, -0.0315153487, 0.00494389189, -0.0133343823, 0.00840618555, -0.00735148834, 0.00726987515, 0.0173522756, -0.0228392109, -0.0193612222, 0.0092976559, -0.00426901132, -0.00818645675, -0.00210468541, -0.00146668789, -0.0195244495, -0.0388731137, -0.0269449949, -0.00218786835, -0.00376049662, 0.0121855158, 0.0147155328, 0.00259907451, -0.0100824, -0.00403358787, -0.00653535407, -0.0143137434, -0.0215082839, 0.00218943786, -0.0199262388, 0.00801695231, 0.0100133428, -0.0100196209, 0.0214580595, -0.0225629807, -0.019097548, -0.0113003235, 0.0283512566, 0.00737660052, -0.0201648, 0.00952994, 0.0114761069, -0.0416856408, -0.0104339654, 0.0307619926, 0.00220827153, 0.015468888, 0.000442988385, 0.00971827842, -0.0254508406, 0.034076754, 0.0131837111, -0.00468963431, 0.00855057873, -0.0210562702, -0.00391116785, 0.00368202222, -0.0136357239, -0.011488663, 0.0124680242, 0.01426352, 0.0276230145, -0.0076026069, -0.00432865182, 0.0121478485, 0.0283512566, -0.00513536949, -0.0156948939, -0.0208051521, -0.017766621, 0.0176787283, -0.0039770864, -0.00185513648, 0.00522326073, -0.0232786667, -0.0154061085, 0.0512281358, -0.00445735, -0.0296821836, -0.0397018045, -0.00201836345, -0.0425394401, 0.00498469826, 0.0347296633, 0.00106411381, -0.0282005854, 0.0225504246, -0.00762144057, 0.0111998767, 0.0337000787, -0.00516989827, -0.0207674839, 0.000328415656, 0.00452326844, 0.0338758603, -0.0143639669, -0.00750843761, 0.00823040307, -0.0133594945, -0.00456407527, 0.00777839, -0.0227513183, 0.00255042035, -0.0178294, 0.0155065553, 0.0082806265, -0.00399278104, 0.00211096322, 0.0346292146, 0.00630306965, 0.0044950177, 0.00644118479, 0.00531429145, -0.023090329, -0.00440712646, 0.0105595253, -0.0152052138, 0.0123675764, 0.0132590467, -0.0232661106, -0.00876402948, 0.00577572128, -0.0373915173, 0.00110413576, -0.0334489606, -0.00290983333, -0.0151926577, -0.00241858326, -0.0142007405, -0.0061492594, 0.00121713907, -0.00833085, 0.0168877058, -0.0162850227, 0.0227513183, -0.0268194359, 0.00556540955, 0.00556854857, -0.035407681, 0.00666091312, 0.00298673846, -0.0203531384, -0.0251746103, 0.0228015427, -0.0260911919, 0.0224374216, 0.0214957278, 0.0149666509, 0.0199890174, -0.002446834, -0.0339009725, 0.00583536178, -0.0129953725, 0.0313897878, 0.00437259767, -0.0196751188, 0.012323631, 0.0105218571, -0.0135855, 0.0234293379, 0.00211253273, 0.00677391654, 0.0160841271, -0.0240948014, -0.000372165174, 0.0208553765, -0.0193988886, -0.0137487277, -0.0154186646, 0.0133971618, 0.0218096245, 0.00209840736, 0.000834183651, -0.0101389019, -0.00462057674, -0.00864474755, -0.0336749665, 0.0161971301, 0.044473052, 0.0149415396, -0.0189092085, -0.0108169215, 0.0211692732, 0.00287687406, 0.00435062451, 0.00453582453, -0.0263925344, 0.0164608061, -0.00107902393, 0.0262920875, -0.0101263458, 0.0119030075, 0.0139370663, -0.00776583375, -0.00510711875, -0.0187585372, -0.00850663241, -0.00393627957, 0.0239692423, 0.0330973938, 0.01644825, 0.0274974555, -0.0242705848, -0.00421878742, 0.0381197594, -0.0334991813, 0.000301538152, 0.01426352, 0.00659185555, 0.017276939, -0.0217217337, 0.00419995375, -0.00288943015, -0.00455779722, 0.000765910838, -0.0177038405, -0.00878286269, -0.00662324531, -0.0011669154, -0.0244463682, 0.00532370806, -0.00358471391, -0.00224907836, -0.016912818, -0.0131334877, 0.0141002927, -0.000195303335, -0.014627642, 0.0064662965, 0.000581103493, 0.00238405447, 0.00231656642, -0.000198540409, -0.0112124328, 0.0219854079, 0.0124366339, 0.0337503, 0.0125496378, -0.00747077, 0.0127442544, 0.00646001846, 0.00183159416, -0.0111622093, 0.00649768626, 0.00956133, -0.00283606746, 0.013171155, 0.0203908067, 0.00993800722, -0.00128384237, 0.025865186, 0.0256015118, 0.00419053668, -0.0380444229, 0.0201522447, 0.0168249272, 0.00230401056, 0.0252876133, 0.0080608977, 0.0196876749, -0.0388982259, -0.0400533713, -0.00165110291, 0.00281566405, 0.000366083405, 0.00598289352, -0.0236930121, 0.0290292762, 0.014991763, 0.00230401056, 0.0219602957, 0.00471788505, -0.0179047361, -0.0277234614, 0.00390802883, 0.00893353391, 0.00821784697, 0.0092976559, 0.006406656, 0.031314455, 0.00199952954, 0.021395281, -0.00459546503, -0.0299584139, -0.00642548967, 0.00269324379, 0.0191728827, -0.0134850536, -0.00734521076, 0.000702738878, 0.0201145764, -0.00866358168, -0.00948599447, -0.00870752707, 0.00518873194, -0.00627168, -0.00285490137, 0.00562191103, 0.0133846058, 0.0142132966, 0.0129953725, 0.0072635971, -0.00359413074, 0.0120599568, -0.000959742814, 0.0247602649, -0.0294561777, 0.00053048745, 0.014024958, -0.000903241162, 0.0219854079, -0.0111496532, -0.010032176, -0.00636271, 0.00122263224, -0.00196029223, -0.00141960324, 0.0291297231, 0.00747704785, 0.0086384695, -0.0152052138, -7.90630293e-05, 0.0163352452, -0.0161720198, -0.00593580911, -0.00467393966, 0.00777839, -0.0145899737, -0.00402731, -0.0202652477, -0.00273405062, -0.00308561628, -0.019461669, -0.00398336397, 0.0200266857, -0.0139621785, 0.0165486969, -0.00694969902, -0.0258902982, 0.0115765538, -0.0226885397, -0.0134976087, -0.00968061108, 0.00495958654, 0.02659343, -0.01076042, -0.0384211019, 0.0128007559, 0.0232661106, 0.00176096719, -0.0105846366, -0.00755866105, 0.000674880459, 0.000132229485, -0.0113066016, -0.00435062451, -0.007552383, -0.0161343515, 0.025865186, -0.00435376354, -0.0199764613, 0.0182060767, -0.00951110572, 0.00696853315, -0.004856, 0.0222490821, -0.00449187867, -0.0193612222, 0.0235046744, -0.00613356475, -0.0303602032, 0.0205289219, 0.0167119242, -0.0150419865, 0.00569410762, 0.00114258833, -0.00674252678, 0.00686180778, 0.00796672795, -0.00897120126, -0.0060896189, 0.00720709562, 0.00742054591, 0.0154437758, 0.0327207148, -0.0123550212, -0.0117021129, -0.0334991813, -0.00582594471, -0.0314400122, 0.0192858856, -0.024182694, -0.00826179236, 0.00157812168, 0.0158957895, 0.00294750114, -0.0165486969, -0.0354830176, -0.00566585688, -0.0169002619, -0.00580711104, 0.00207957346, 0.00588872423, 0.00542415539, -0.00426273327, 0.00126108481, 0.00867613778, 0.0101765692, -0.0308122169, 0.015230326, 0.00391430687, 0.0149540957, -0.00616181549, -0.0311135594, -0.00401161518, -0.00629051356, -0.0206042565, 0.0321933664, -0.0052107051, -0.0291046128, 0.00147453533, 0.00602056133, -0.0201396886, -0.00694342144, -0.0279494673, -0.0133594945, 0.0145271942, -0.00456093624, -0.0141756283, 0.0033587073, -0.00115279, 0.0206921492, -0.00806717575, 0.00362865953, -0.00185199757, -0.00952366181, -0.0111810425, 0.0132213794, 0.00173742475, 0.0270454418, 0.00195715344, -0.0135227209, -0.000180393195, -0.00347171072, -0.00230087154, 0.0203656945, -0.00625912379, -0.00164168596, 0.027196113, -0.00892097782, 0.017276939, 0.0335242935, 0.035407681, 0.00765283033, 0.008826809, -0.0401538163, -0.0305108745, -0.00607078522, 0.0114949411, 0.00539590465, -0.000140665492, -0.00154987082, -0.00537707098, 0.00608334085, -0.00510397973, 0.0321682543, 0.030586211, -0.00814878941, -0.00826807, 0.0430667885, 0.00952994, -0.0200015735, -0.00246880692, 0.0153433289, -0.00413089618, 0.00307619921, 0.0176787283, -0.00823668, 0.00902142562, 0.00153574545, 0.0519312657, 0.00865730364, 0.0111370971, -0.00435062451, -0.0271458887, 0.000763949, -0.00540218269, 0.0122231841, -0.0169002619, -0.0263674222, 0.0060080057, 0.00323314825, -0.00410578446, 0.0242705848, 0.00190222124, -0.025865186, 0.0012508831, 0.00581652764, -0.0145271942, -0.0128447013, -0.0252876133, -0.00530487439, 0.0432676859, -0.0192356631, 0.00270736939, 0.0145899737, -0.0200266857, -0.00995056331, -0.0105344132, -0.0131083755, 0.0224374216, -0.00138742861, -0.0216589551, -0.00502550509, -0.00645374041, 0.0261916406, 0.0125370817, 0.00093306147, -0.000314094068, -0.0168374833, -0.00968061108, 0.00404614396, 0.0126186954, -0.00492505776, -0.0261414163, -0.00846896507, 0.00713803805, 0.0127316983, 0.00134897616, 0.0166365877, 0.0229522139, 0.00380130345, -0.0154437758, -0.0146401972, -0.0104151322, 0.00934787933, -0.00784744695, 0.0131586, -0.00273405062, 0.00295064016, 0.0177540649, 0.0193612222, -0.00780977961, -0.00755866105, 0.0156948939, -0.00158675388, 0.00768422, -0.0365377143, -0.0228768773, -0.0144895269, 0.0104151322, -0.00894609, -0.00349682244, -0.00823040307, -0.00359726977, -0.00356274098, 0.0219226293, 0.00656674383, 0.000825551455, -0.00853802264, -0.00464255, 0.041710753, 0.0186329782, 0.0150670987, -0.0106411381, -0.000974652939, 0.0330220573, 0.00144863874, 0.00766538642, -0.000209134465, 0.018607866, 0.0188338738, -0.0037761915, 0.00167464523, -0.0199136827, -0.00352507317, 0.0183316357, 0.0152052138, -0.0196625646, 0.0161469076, 0.00624656817, 0.0115137743, -0.0183818601, 0.00483716652, -0.0403044894, 0.024057135, 0.0153182168, -0.0228140987, 0.00133563555, 0.025865186, 0.0278239083, -0.00357529684, -0.00295220967, -0.0204912536, -0.00669858092, 0.0208051521, 0.00698108925, -0.011363104, 0.0139370663, -0.0289288294, -0.0011480815, -0.0170007087, -0.0060896189, 0.0162473544, -0.00390802883, -0.0010625443, 0.0110554835, 0.00156007253, -0.00586047349, 0.00543357246, 0.0102581829, -0.00197755662, 0.00874519534, 0.0210060459, 0.0140500693, 0.0228392109, -0.00831829384, 0.0148410918, -0.025388062, 0.0086384695, -0.000855371763, 0.0182060767, -0.00119673565, -0.00472102407, 0.02126972, -0.0413591862, 0.021872405, -0.0151926577, -0.0217970684, 0.0181935225, 0.00662952336, 0.000948756351, -0.0127316983, -0.00255042035, -0.0236051213, 0.0071443161, -0.0113003235, 0.00620576134, 0.00767166447, -0.00447618403, -0.00760888495, 0.00367260538, 0.00730754295, -0.018369304, 0.0105658025, 0.0081613455, -0.025739627, 0.0131209316, 0.00400847616, -0.00593894813, 0.00715059368, 0.0160841271, -0.0157451183, 0.00841246359, -0.015594447, -0.000187259706, -0.00329278875, -0.0057882769, -0.00684297411, 0.00301028066, 0.0131837111, 0.00693714339, 0.00169347913, 0.0106034707, -6.82360042e-06, 0.00310288067, -0.00143922179, -0.00309660262, -0.0145523064, -0.0213576127, -0.00181589928, -0.0341269784, -0.0293306187, 0.00143529812, 0.0207172614, 0.00213293615, -0.0148536479, 0.0416856408, 0.00507886801, 0.0170258209, 0.00134976092, -0.0112877684, -0.0162347984, 0.0282005854, 0.0165110286, 0.0176410619, -0.0127505325, -0.0139496224, -0.00688064191, 0.0162473544, 0.0119469538, -0.0163980257, 0.0181432981, -3.131622e-05, 0.0155316675, -0.0112940464, -0.00270736939, 0.0141505171, -0.00275759306, 0.00472102407, 0.00838107336, 0.0343027599, 0.029606849, -0.0153935524, 0.00382013735, 0.00513536949, -0.00780977961, 0.018369304, -0.00824295823, 8.8381872e-05, 0.00375421881, 0.0119281197, 0.00195872271, -0.0182939693, 0.0122671295, -0.0283763688, 0.0125998612, -0.0215459503, -0.00351251732, -0.00104449526, 0.0193109978, -0.020667037, 0.00545554515, 0.0113756591, 0.000137624607, 0.0194993373, 0.00117240858, 0.000177156122, -0.0028454843, 0.0106599722, -0.0089147, -0.0274221189, 0.0158078969, -0.0265683178, 0.00247979327, -0.0160213485, -0.0136482799, 0.0106725283, 0.00412461814, 0.0155693348, -0.00877030659, -0.0130832642, 0.00649768626, 0.00251432206, 0.0204786975, -0.0030699214, 0.00838735141, 0.0158581212, -0.0293306187, 0.00477752602, 0.0118653402, 0.00582594471, 0.0161092393, -0.00717570586, -0.00165581133, -0.00572235836, -0.0121917939, 0.0137487277, 0.0209683795, 0.0195370037, 0.0122420173, -0.030937776, 0.00586675154, -0.0175531693, -0.0140751814, 0.0128447013, -0.0140626254, 0.0051604812, -0.012329909, -0.00742682396, 0.00283763697, 0.00822412502, -0.00745193567, 0.0149666509, 0.0128258681, 0.0141254049, 0.0338005237, 0.0060676462, -0.0119595099, -0.0135980565, -0.00665463507, 0.000347641908, 0.00261790841, -0.00142195739, -0.00701875659, -0.0199764613, 0.00767166447, -0.00151220313, 0.0158832334, -0.00660441164, -0.00752099324, -0.00532684708, 0.0146150859, 0.0157953426, 0.0166240316, -0.00973711256, -0.0250239391, 0.000400023622, -0.00746449176, 0.00332417875, -0.0301341973, -0.000363140629, -0.00665463507, -0.0302346442, 0.00788511522, -0.0127693657, 0.00103036978, 0.0065793, 0.000903241162, -0.0018394416, -1.71662905e-05, 0.0124743022, 0.00215647859, 0.00442909915, 0.00507886801, 0.00387663883, 0.00785372499, -0.0208302643, -0.0133343823, -0.00385466614, -0.0324444845, -0.000207761172, 0.0167370345, 0.0102895731, -0.0170886014, 0.0210939385, -0.0182939693, -0.0134850536, 0.00850663241, -0.00572549738, 0.0124994135, 0.0141128488, 0.0136733921, 0.0309628882, 0.00688691949, -0.0111873206, 0.00606136816, -0.0320426971, 0.00205603126, 0.00424076058, 0.0060676462, -0.0213827249, -0.00270423037, -0.0150294313, -0.00761516299, 0.00972455647, 0.00169034011, -0.00342148705, 0.0124052446, 0.00760888495, -0.01076042, 0.0156195592, 0.00220670225, 0.0176285058, 0.0200266857, -0.00596406, 0.00892725587, 0.00356274098, -0.00182531623, 0.00688064191, -0.0163980257, 0.0016102962, -0.0248607136, -0.0122671295, 0.0206795931, 0.00776583375, 0.00429726206, 0.0325449333, 0.0105658025, 0.0304355398, 0.0118904524, -0.0180428512, 0.00334929046, -0.00214549201, 0.0299333017, 0.00288472162, -0.000120948782, -0.0393251292, -0.000963666535, -0.014753201, 0.019700231, 0.0071443161, -0.0133720497, 0.000549321296, 0.00558110466, -0.0152052138, -0.0253755059, -0.0240320228, -0.00123283395, 0.00360040879, 0.000978576718, -0.000379816454, -0.00995684136, 0.0209432673, 0.00971827842, -0.00385466614, 0.00349682244, -0.0149289835, -0.0140124019, 0.00286588771, 0.00654163212, 0.00819901284, 0.00610217499, 0.00569410762, -0.00584164, -0.0212446097, -0.00349996146, -0.0242831409, 0.00798556209, -0.00110805954, -0.0141505171, 0.00898375735, -0.00886447635, -0.00821784697, -0.0163729135, 0.00494703092, -0.00148787594, 0.00391116785, 0.0169630423, 0.0133343823, -0.00261006085, 0.00586675154, -0.0249862727, -0.015355885, 0.00812367722, -0.00907164905, 0.0110868737, 0.0129451491, -0.00334301242, 0.0117021129, 0.00242329179, 0.00452012941, -0.0152428811, -0.0175908376, -0.00131994067, 0.0175782815, -0.00571608031, -0.0150168752, 0.0286023747, 0.0106411381, -0.00042415451, -0.00209840736, -0.0252625011, -0.0139370663, 0.0190096553, 0.00116534589, 0.0261665285, -0.015594447, -0.0292301718, -0.00274189794, 0.0343529843, -0.012085069, -0.0149666509, -0.0178796239, -0.0219477396, -0.0145774176, -0.00355332415, -0.0129953725, 0.00266970159, 0.000928353, 0.00719453953, -0.0059483652, 0.0125182476, 0.013171155, -0.00645374041, 0.0192858856, 0.0128509793, 0.0243961439, 0.00549635198, -0.0158455651, 0.00978105795, 0.0197755676, 0.00441026548, 0.00666719116, 0.00210939371, 0.00839362945, 0.0104716336, -0.0123864105, 0.00403358787, 0.00795417279, -0.00236051204, 0.018482307, 0.0113066016, -0.0038860559, 0.00956133, 0.0200769082, -0.0226383153, 0.00154359289, -0.000553637394, -0.00568155199, 0.0202401355, -0.0101451799, -0.00323000923, -0.0144016352, 0.00937299058, -0.0161971301, -0.000575217884, 0.0150670987, -0.0252750572, -0.0170007087, -0.0260660797, 0.00964922085, -0.0172518287, -0.00612100866, 0.0186580904, -0.00633132039, 0.000419838412, 0.0241199136, 0.00515420316, 0.0145397503, 0.00570980273, -0.00457977038, 0.01715138, -0.00442909915, 0.0129953725, -0.0195118934, -0.0118653402, -0.0140877375, 0.0142760761, -0.00983755942, 0.0333234, -0.0001775485, 0.0097433906, -0.00291611138, -0.0118653402, 0.00710037025, 0.0142509639, 0.0296570733, -0.0164356939, -0.000221690381, -0.0153307728, -0.00353762927, 0.00475555286, 0.0149415396, -0.00634387648, -0.000693714304, -0.0133846058, 0.00826179236, 0.0043851533, -0.00400847616, 0.00241230521, 0.00490622409, -0.00686808582, 0.00706270244, -0.00853802264, -0.00635015406, -0.0228140987, 0.0184697509, -0.00875775144, -0.00809856504, 0.014979207, 0.0177917331, 0.0121101802, 0.0218975171, 0.00124303566, -0.0147029767, -0.00809228793, 0.00100839697, -0.015104766, 0.00737032248, -0.00158753851, 0.00100918172, 0.0150043191, 0.0169002619, -0.000530095072, -0.0200894643, 0.0039770864, -0.0124680242, -0.00174056378, -0.0281754751, -0.0104527995, -0.00476810895, 0.00345287682, 0.00556227053, 0.00667974725, 0.00971827842, 0.00936043542, -0.00312328408, -0.0156446714, 0.00548065733, 0.0182311889, -0.00959899742, -0.0183567479, 0.0124052446, 0.00355018512, -0.0174024981, 0.00344032096, 0.0110115381, 0.0112501, -0.00387663883, -0.000674488081, -0.0161343515, 0.0101263458, -0.00764655275, 0.00662952336, -0.0175531693, -0.0137110595, -0.00811739918, 0.0302848686, 0.0119281197, -0.00872636121, 0.0137236156, 0.00617437158, -0.0243082531, -0.00528604025, -0.00710664829, 0.0328965, 0.011607944, -0.0109048123, -0.0164733604, 0.0117774485, -0.00343404291, -0.00209212932, -0.0223369729, 0.0277234614, 0.0170634892, 0.0033963751, 0.0157325622, -0.0227387622, 0.0445232764, 0.00698736683, -0.000328611844, 0.0124994135, 0.000398846518, 0.00905909296, 0.0118716182, -0.010032176, 0.00656674383, 0.00922232, 0.00887075439, 0.000111139474, 0.022726208, -0.0042438996, -0.00299301627, 0.0294310655, -0.0089586461, 0.0071443161, -0.00411834, -0.00705014635, -0.00147610484, -0.00651024235, -0.00171859097, 0.0138240634, -0.0202778038, -0.0156572275, -0.0109550366, -0.0166617, 0.0175782815, -0.0139747337, -0.000455151923, 0.00541159976, 0.000592089898, 0.00138507446, -0.0249862727, 0.0029192504, -0.00517931534, -0.00811739918, 0.00872008316, 0.00199482101, 0.0105406912, 0.0311637819, -0.013296715, -0.0271207783, 0.00154123863, -0.000849878532, -0.00592953106, -0.0116958357, 0.0136859482, 0.00083653786, 0.013660836, -0.0225378685, 7.79349575e-05, -0.0033587073, 0.0126186954, 0.0240822453, -0.0158957895, -0.00362238172, 0.00549007393, -0.000622694963, 0.017276939, 0.0120725129, 0.0254885089, 0.00312328408, 0.0186329782, -0.0164356939, -0.00995056331, -0.00515106414, 0.00152868277, 0.00502864411, 0.0164356939, -0.00444793329, 0.00229302398, 0.0245719273, -0.030460652, 0.00923487544, 0.0104527995, 0.00233853934, -0.0235925652, 0.0323440395, -0.0137612838, 0.00344659877, 0.0151926577, 0.000577964471, -0.00406811666, 0.0129200369, 0.0264176466, 0.00592953106, 0.00580711104, 0.00454838062, 0.0122859636, 0.00568782957, -0.0119281197, 0.0127379764, -0.00419995375, 0.00129404408, -0.0215333942, 0.0175406132, 0.0127568105, -0.00972455647, -0.0102330707, 0.00893981196, 0.0266436525, -0.00643490674, 0.0294812899, 0.0346543267, 0.0032990668, 0.0330471694, 0.0218221806, -0.0167747028, -0.0109110903, -0.000109569984, -0.0199890174, 0.00548693491, 0.0109236464, 0.03578436, -0.0214455035, -0.0197755676, 0.0192482192, 0.0175908376, -0.000133602793, -0.00797928404, 0.00640351698, 0.00601428375, -0.0115263304, -0.0201271325, -1.43093293e-05, 0.00647257455, 0.00536137586, -0.0102895731, 0.0153935524, 0.000342737243, -0.00789767131, 0.0141002927, -0.0221235231, 0.00762144057, 0.00784744695, -0.00300557236, 0.00115906796, 0.00961155351, 0.0184069723, -0.0102330707, 0.00671113702, -0.0163980257, 0.00405869959, -0.000805148098, 9.02946922e-05, 0.0162347984, 0.029255284, -0.00989406183, 0.0121352924, 0.0192733295, -0.0299081914, -0.0151298782, 0.0135980565, 0.0113003235, -0.0242580287, 0.00842502, 0.0176410619, -0.0124805802, 0.018130742, 0.0254633967, 0.0180428512, 0.000159597461, 0.00321431435, 0.0187585372, -0.00232127495, -0.0110366493, 0.000778466754, -0.0178796239, -0.000236011969, -0.010151458, -0.00664835749, -0.00613356475, 0.0111935986, 0.00636271, -0.0209181551, -0.0249360483, -0.00661696726, 0.0133469384, -0.0106223049, 0.0126061393, 0.0146150859, 0.00564388419, -0.010396298, 0.0293055065, 0.0277987961, -0.0158455651, 0.0139747337, -0.0263674222, -0.0172518287, -0.00810484309, 0.0232158881, 0.00451699039, 0.0277234614, -0.00983755942, -0.00239504082, -0.0295315124, 0.00655418774, 0.00938554667, -0.00140155409, -0.00205446174, -0.011601666, 0.000186474965, 0.00889586657, -0.000723534613, 0.0155065553, 0.012807034, -0.00288001308, 0.00141411, -0.00140390825, 0.0132716028, 0.00601114472, 0.00546496222, 0.0123801325, 0.00466138357, -0.0115953879, -0.00256297621, 0.00344973779, -0.000273091166, -0.0194491129, 0.0146653093, -0.0050631729, 0.00401789276, -0.00647885259, 0.00119281199, 0.00740171224, 0.012813312, -0.000197461384, -0.00246409839, -0.00126579322, 0.00424076058, -0.0100447321, 0.000545397575, 0.0080295084, 0.0057882769, -0.00142588117, -0.0214831717, -0.0119343977, -0.0132716028, 0.00169190962, -0.0206168126, -0.0152428811, -0.00801067427, 0.0037353849, 0.000741191383, 0.00141881849, 0.0102832951, 0.0171137135, 0.0127003081, 0.00182688574, 0.0103209624, 0.019813234, 0.0102330707, -0.0134976087, 0.00349682244, -0.00322059239, -0.000404143531, -0.0120348446, 0.0145397503, -0.0146150859, -0.00207329565, 0.00139841507, -0.0165361408, 0.0401538163, -0.00667974725, -0.0143639669, 0.00430667913, -0.00320489751, 0.0131334877, -0.00342776487, -0.0138240634, -0.0236302335, 0.0394255742, -0.00550890807, 0.0274221189, -0.0238813516, -0.0076026069, 0.0237557925, -0.00281409454, -0.00147610484, 0.00866986, 0.010032176, 0.015355885, 0.0146401972, -0.0261916406, 0.0260158572, 0.011727225, -0.00147532008, -0.00492505776, -0.0146778654, -0.000326649984, -0.0198006779, -0.000463784119, -0.0103021283, 0.0145397503, 0.00105312746, 0.00344345975, -0.0139370663, 0.0152428811, -0.0196500085, -0.00223338348, -0.000700777047, 0.000564623799, 0.0124554681, -0.0151424343, 0.0123675764, 0.00666719116, 0.00979989208, -0.0011755476, -0.0253755059, -0.000118496449, -0.0145523064, 0.0060896189, -0.00365063245, -0.0172643829, -0.012210628, 0.00509142363, 0.00761516299, 0.00119281199, 0.00824923627, -0.0211692732, -0.00651024235, 0.00699992292, -0.00555599248, -0.00418425864, 0.021395281, 0.00821156893, -0.00629993062, -0.00150514033, -0.00294436212, -0.00234010885, -0.00872008316, 0.0159585681, -0.00161186571, 0.0138617307, 0.00642548967, -0.00443851622, 0.0206168126, 0.0142509639, 0.0138617307, 0.0109236464, -0.0131460438, -0.0223997533, -0.0139747337, -0.0245844834, 0.00263203378, 0.0105406912, -0.0178294, 0.00603311742, -0.0101765692, 0.0222993065, -0.0249360483, -0.0034874056, 0.00924115349, -0.00341520901, 0.0116142221, 0.0153433289, -0.00727615319, 0.0117962826, -0.000860080239, 0.0115388865, -0.0137361716, 0.0195621159, 0.0129200369, -0.00177823158, 0.0150294313, 0.0115137743, 0.00679275, -0.00378560857, -0.00253315596, 0.00385152712, 0.00519501, 0.00100211904, -0.00248293229, -0.000548144162, -0.0239692423, -0.00621203938, -0.00303853163, 0.0123424651, 0.00804834161, 0.00281880307, 0.0139496224, 0.0153307728, 0.00376677467, 0.0136106126, 0.00283763697, 0.00121949334, 0.00624029, -0.0209934916, 0.000178823699, -0.0196751188, -0.0018190383, -0.0159836803, -0.0139621785, -0.0150168752, -0.01933611, 0.00835596211, -0.0012814881, -0.0151298782, -0.0135101648, -0.00140155409, -0.0156572275, 0.00788511522, -0.00210468541, -0.013660836, 0.013045596, -3.07767077e-05, -0.0012116459, -0.0260158572, -0.0157325622, 0.00114729675, 0.0281252507, -0.000206780227, 0.00186769245, -0.0176912844, 0.0127819218, -0.0132339345, -0.023567453, -0.00649140822, 0.00231656642, -0.0115012182, 0.00994428527, 0.0061775106, -0.037818417, 0.0119532319, -0.0200769082, -0.00353449024, -0.00562505, -0.0141128488, 0.010515579, 0.0142886322, 0.011727225, -0.0174652785, -0.0220607445, 0.016799815, -0.00412147911, -0.0278239083, -0.0169504862, -0.00964922085, -0.00562818907, 0.000676842348, 0.0143388556, 0.0215333942, 0.0131586, -0.0223369729, -0.00611159205, 0.00963038765, 0.00631248672, 0.0100447321, 0.00831829384, -0.0157325622, 0.00127677969, 0.0196123403, -0.00366318831, 0.019574672, -0.0180554073, 0.0254508406, -0.00406497763, 0.0082806265, 0.0183190815, -0.0130832642, 0.0212320536, -0.0209181551, 6.21419749e-05, -0.00995684136, -0.0179172922, -0.0225253124, -0.00449815672, -0.00711292634, -0.0204033628, -0.0100070648, -0.0134976087, 0.0106097488, -0.00139370665, -0.00656674383, -0.00100211904, -0.00479008164, 0.00983755942, 0.00174056378, -0.00516675925, 0.0047021904, -0.0270203296, 0.00451699039, 0.00177509256, 0.00404614396, -0.00448873965, -0.0205038097, 0.0122420173, -0.0302597564, 0.00132072531, -0.0196374524, -0.010515579, -0.0106223049, 0.0156195592, 0.00125716103, -0.0160464607, 0.0119030075, -0.00513536949, -0.00185199757, 0.0189092085, 0.0139998458, 0.00142980483, -0.00853802264, -0.00589500228, 0.00452326844, -0.00834968407, 0.00361296465, 0.00362238172, -0.0162724666, 0.0294059534, 0.0151173221, 0.00856941193, 0.00943577, 0.00560621638, 0.0066358014, 0.000262889487, 0.00958644133, -0.00150827935, 0.0370399505, -0.0146778654, -0.00688691949, 0.0209809355, -0.0386219956, -0.00611786963, -0.00570666371, 0.0307117701, 0.00820529088, -0.00403358787, 0.0118716182, 0.0199639052, -0.0124178007, 0.00403986592, 0.0101891253, -0.00786628108, -0.01063486, -0.00298830797, 0.00508514559, 0.00525151147, 0.00523267779, 0.0142384078, 0.00705642439, 0.0012987525, -0.00239661033, -0.00942321494, 0.00338695827, 0.0185325313, 0.00114258833, 0.0208804868, 0.0146401972, -0.00338068022, -0.0127693657, -0.00366318831, 0.00127050176, 0.0247100424, -0.00227419031, -0.0204535872, 0.0198634584, 0.0214957278, -0.0286526, -0.0232661106, -0.0187836494, -0.0162222423, -0.00647885259, -0.0265180934, -0.0080608977, -0.00120693736, 0.0139119541, 0.0239817984, 0.0192356631, -0.00211567176, -0.00237620692, 0.00452326844, -0.00212822761, 0.00119908992, 0.0227136519, -0.046482, 0.00243270863, 0.0181432981, 0.0169379301, -0.00383897126, -0.0202275794, 0.023328891, -0.0104151322, 0.00226948177, 0.00766538642, 0.0035470461, -0.00925371, 0.012210628, 0.000772973523, -0.0360354781, 0.00414031325, 0.0170760453, 0.0104402434, 0.00575374812, -0.0160841271, -0.0148536479, -0.0131837111, 0.00163069949, -0.013171155, -0.0162096862, 0.00818645675, -0.0132339345, 0.0171388239, 0.00192105502, -0.0152679933, -0.0188966524, 0.00700620096, -0.00581966667, -0.0100384541, 0.017163936, 0.00124068139, -0.00262575573, -0.0044353772, 0.000985639403, -0.0220481884, -0.0253629498, -0.0148410918, 0.000655261858, -0.010998982, -0.0113379918, -0.0146025298, 0.0155818909, 0.00115279, 0.00215490907, 0.00753354933, -0.0179172922, 0.00236992911, -0.0202401355, -0.0106097488, -0.0440210402, 0.0106097488, 0.0183441918, 0.0147029767, -0.0240696892, -0.0136859482, -0.0104088541, 0.00833085, -0.0111057069, 0.0118527841, 0.00195558392, -0.0151173221, -0.0394758, -0.000780821, -0.00991289504, -0.0167244803, 0.0140877375, -0.0116142221, -0.0195370037, -0.00544612855, 0.00827434845, -0.0161092393, 0.0133594945, -0.00442596, -0.0253001694, -0.00687436387, -0.00171388243, -0.0282759219, -0.0260409694, -0.00637840526, -0.0119343977, -0.00825551432, -0.00693086535, -0.00201522443, -0.0132088233, -0.016925374, -0.00840618555, -0.0224374216, 0.0145899737, 0.000814565, 0.0144895269, -0.014376523, -0.00748960348, -0.0296570733, 0.0156697817, -0.000356470293, 0.013422274, -0.0402291529, 0.00940438081, -0.0155693348, 0.00850663241, 0.00782861374, 0.0117335031, -0.00309974165, -0.0166114755, 0.0114007713, 0.00577258226, 0.0105846366, -0.0171764921, 0.00372910686, -0.00430667913, -0.00419681473, 0.0186455343, 0.00357215805, -0.00419053668, 0.00871380512, 0.0247225985, -0.00708153658, 0.00486855628, -0.0176159497, 0.000969159708, 0.00144628447, 0.00858824607, -0.00414031325, -0.0015074946, -0.00612100866, 0.0189594328, -0.014502082, -0.0120160114, -0.00419681473, -0.00268382696, -0.0286777113, -0.00637212722, -0.00319077214, -0.0184571967, 0.00353762927, -0.0250741635, 0.00823668, -0.00494703092, -0.000519108609, -0.00214863103, 0.00655418774, 0.00802323, 0.0080608977, -0.0180805176, 0.0173397195, 0.011607944, -0.0144016352, 0.0304104276, -0.0126124173, 0.00977478, -0.0126751969, 0.00875775144, -0.00149336923, 0.0136859482, 0.00595150376, 0.0334489606, 0.00748332543, -0.00804834161, -0.0198509023, -0.00640979502, -0.0135855, -0.0129074808, 0.0223746412, -0.0187585372, -0.0219226293, 0.00443223817, -0.0256391801, -0.00517931534, -0.00200266857, 0.00417798106, 0.00902142562, 0.0118841743, 0.0108545888, -0.020189913, -0.015494, 0.0255889557, 0.00193204149, -0.000138605537, -0.00417170301, -0.0117021129, 0.0158204529, 0.0256642904, -0.0159711242, 0.0149038713, -0.00247665425, -0.00545240613, -0.00162913, -0.0107855313, -0.0237432364, 0.00523581682, 0.00245468155, -0.0088581983, -0.0185074192, -0.00287844357, 0.0322184786, 0.00959271938, 0.0130707081, -0.00392372347, 0.0125873052, -0.0206168126, -0.00716315, 0.0122608515, 0.0140877375, 0.0125621939, 0.00508200703, -0.0270454418, 0.0223997533, -0.0227638744, -0.0175155029, -0.0018771094, -0.0124366339, -0.0184948631, -0.00160872668, 0.0110115381, 0.0235548969, 0.00133955921, -0.000324688124, -0.0103523526, 0.0235046744, 0.00338381925, 0.00780977961, -0.0123612992, 0.00362552051, -0.00710037025, 0.0220858548, -0.0113379918, 0.00576002616, -0.00539276563, -0.0316660181, 0.0171764921, -0.015230326, 0.0320678093, -0.00479322067, -0.0113003235, -0.00973711256, 0.00472730212, -0.0181935225, 0.0168500394, 0.011482385, 0.00838107336, 0.00811739918, 0.00473671919, 0.00818645675, 0.0200266857, -0.027547678, -0.000362355873, 0.00633132039, 0.00581025, -0.00365377148, -0.0162222423, 0.00947343837, 0.0297072958, 0.0186957587, 0.00236679, 0.00526406756, 0.0256517362, 0.00370713416, -0.00747704785, 0.00737032248, -0.000596798374, 0.00441654306, 0.00138978288, 0.00119516626, -0.00400219811, -0.021031158, 0.0097559467, -0.0152931055, 0.0122608515, -0.00567213492, -0.0122859636, -0.00492191873, -0.00698108925, 0.000147237733, -0.000771404069, 0.00446676696, -0.0014682574, -0.0150294313, -0.0139370663, -0.00451699039, 0.00146041, 0.025501065, 0.0239064638, -0.0132590467, 0.00562818907, 0.00566585688, 0.00577572128, -0.0151298782, 0.00253629498, 0.0138240634, -0.00034528767, -0.0192482192, 0.014991763, -0.019223107, -0.0127630886, 0.022236526, 0.0193737783, 0.000834183651, -0.00330220582, -0.0121604046, -0.00393000152, 0.00886447635, -0.00523581682, -0.000260535249, -0.0179172922, -0.0118527841, 0.0211943854, 0.0047618309, -0.0122734075, 0.00628423551, -0.0203782506, 0.0191352144, 0.0239441302, 0.0195244495, -0.0269449949, 0.0274472311, -0.0083999075, -0.00523267779, 0.00160637242, 0.0301844217, -0.00639723893, -0.00486855628, -0.00500039337, 0.000650161, 0.0120599568, 0.000212665822, -0.00279839966, 0.0162599105, 0.00661696726, 0.0333234, 0.00568782957, -0.000842815847, -0.0104402434, -0.0113317138, -0.00924743153, 0.00885192, 0.013660836, -0.00136467104, -0.0265432056, -0.0253629498, -0.00219885469, 0.0168123711, -0.00835596211, 0.0125559159, -0.0254885089, -0.024057135, 0.0331727304, -0.00829318259, -0.015833009, -0.00716315, 0.00232441397, 0.00229773251]
|
17 Jan, 2021
|
Fabric.js Polygon cornerSize Property
17 Jan, 2021
In this article, we are going to see how to set the size of controlling corners of the canvas Polygon using FabricJS. The canvas Polygon means Polygon is movable and can be stretched according to requirement. Further, the Polygon can be customized when it comes to initial stroke color, height, width, fill color, or stroke width
To make it possible, we are going to use a JavaScript library called FabricJS. After importing the library, we will create a canvas block in the body tag which will contain the Polygon. After this, we will initialize instances of Canvas and Polygon provided by FabricJS and set the size of controlling corners of the canvas Polygon using cornerSize property, and render the Polygon on the Canvas as given in the below example.
Syntax:
fabric.Polygon([
{ x: pixel, y: pixel },
{ x: pixel, y: pixel },
{ x: pixel, y: pixel},
{ x: pixel, y: pixel},
{ x: pixel, y: pixel }],
{ cornerSize : number}
);
Parameters: This function accepts three parameters as mentioned above and described below:
cornerSize: It specifies the size of the controlling corners.
Below examples illustrate the Fabric.JS Polygon cornerSize property in JavaScript:
Example:
HTML
<!DOCTYPE html>
<html>
<head>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;width: 600px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Polygon cornerSize Property
</b>
</div>
<canvas id="canvas"
width="600"
height="200"
style="border:1px solid #000000;">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a polygon instance
var polygon = new fabric.Polygon([
{ x: 295, y: 10 },
{ x: 235, y: 198 },
{ x: 385, y: 78},
{ x: 205, y: 78},
{ x: 355, y: 198 }], {
stroke: 'green',
strokeWidth: 3,
cornerColor: 'blue',
cornerSize: 10
}
);
// Render the polygon in canvas
canvas.add(polygon);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js Textbox cornerStyle Property/Fabric.js Textbox cornerSize Property/Fabric.js Image cornerSize Property/Fabric.js Polygon cornerSize Property
|
https://www.geeksforgeeks.org/fabric-js-polygon-cornersize-property?ref=asr10
|
CSS
|
Fabric.js Polygon cornerSize Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, Fabric.js Textbox cornerSize Property, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Fabric.js Image cornerSize Property, Onsen UI Fab CSS Components, Fabric.js Textbox cornerStyle Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, Fabric.js Polygon cornerSize Property, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0085907178, -0.00725366594, -0.0148819648, 0.0354221761, 0.046325285, 0.0028420419, 0.00486699678, 0.0297380928, -0.0152565977, -0.0240152534, 0.0109095657, 0.00629124744, -0.00184248283, -0.0500199385, 0.00410481263, -0.00188285275, -0.0306682158, 0.00264826627, -0.0168584753, -0.00620404817, -0.00988901407, -0.0159800258, -0.0186282936, 0.00431796582, 0.0237827227, 0.0360680968, 0.0336394422, 0.0130604748, -0.013822658, 0.0344920531, 0.0186928846, 0.0194292329, -0.00829359517, -0.0340269916, 0.00253038621, -0.0268443786, 0.0068531963, 0.05673749, -0.0155666387, -0.0415454842, -0.0116652902, 0.0307974, 0.00291470787, 0.0282912347, 0.00611684937, -0.00384967495, -0.0173364561, -0.00747327833, -0.0093464423, -0.0412871167, -0.010263647, -0.028575439, 0.0114133824, -0.00148157577, -0.00386582292, -0.00966294296, -0.00246417942, 0.0458860584, -0.00311332778, -0.0186024569, 0.0187316407, -0.0904286057, -0.0435349159, 0.00901702419, -0.0397885852, 0.0105413916, -0.0114521375, 0.0364298113, -0.0162771493, -0.0195196606, -0.0228913557, 0.0189383347, 0.00667233951, -0.0234856009, 0.0230851322, -0.0343628712, 0.0447750799, -0.00695008412, -0.0293763783, 0.0493998565, -0.0384967513, -0.0078737475, -0.0073828497, 0.0224392135, -0.0130281784, -0.0115167294, 0.0358872376, -0.0438966304, 0.000845346, 0.0112066884, 0.00604256848, 0.0144944135, 0.0218837224, -0.0659870431, -0.0117880143, -0.0150111485, -0.00599089498, -0.00892013591, -0.0042275372, 0.00894597266, 0.00582618592, 0.0458602235, 0.0170780886, -0.00635906868, 0.0129829645, -0.0378249958, 0.0334069096, -0.0211086199, 0.0113746272, -0.00473135384, 0.0320375636, -0.0316758491, -0.0103346976, 0.049554877, -0.0484438948, 0.00837756414, 0.00280328677, -0.0221420899, 0.0154116182, 0.00442131283, -0.00246094982, 0.00596505823, 0.0164192505, 0.023588948, -0.0371532403, 0.014546087, -0.0174914766, 0.0205660481, 0.00385936373, -0.00933352392, -0.0225167237, -0.0172977, 0.0102765653, -0.0331227072, 0.0238085594, -0.00635583932, 0.00954667758, 0.00758308452, 0.00604902767, 0.00731179863, -0.00482824165, -0.0241961107, 0.0387034453, 0.0241831932, -0.000932545, -0.00684673712, 0.00560980337, -0.00605871668, -0.0245836619, 0.0238731522, -0.0397627503, 0.0192612931, 0.0424239337, -0.0323734395, 0.0453176498, -0.0279295202, -0.0128666991, 0.0206952319, 0.0506658554, -0.0297639295, 0.0433023833, 0.0167163741, 0.0103992894, 0.0408737287, -0.0193775594, -0.00579066062, -0.000300352171, 0.00013069759, -0.0490898155, 0.0164580066, 0.00414356776, -0.00898472778, 0.0048024049, 0.0162900668, -0.0409770757, -0.0336652771, -0.00822900329, -0.0422947519, 0.00643980876, -0.000721410383, -0.0272060931, 0.029298868, 0.031288296, 0.0545672029, -0.0113617089, 0.0112325251, 0.0440516509, 0.0043825577, 0.00508337934, -0.0182924159, -0.0052061039, 0.0321667455, 0.0275678057, 0.00887492206, 0.0078026969, -0.0134221893, 0.0111550149, 0.0218578856, -0.0208373349, -0.0124920662, 0.0267151948, -0.0158120878, -0.0254621115, -0.0345695652, 0.0252812542, -0.00775748258, -0.00227040402, -0.0492706709, 0.056840837, -0.00457956316, 0.0113875456, -0.00878449343, 0.0184603538, -0.000958381745, -0.0247645192, -0.00250131986, -0.0156570673, 0.0252941735, -0.0117557188, -0.00475396123, 0.0269735623, 0.0256817248, -0.0325801335, -0.0232013967, -0.0303581748, -0.0215220079, 0.0303840116, 0.0116265351, -0.0230722129, -0.0277228262, 0.0109289428, -0.0328643396, -0.022800928, 0.0134092709, 0.0359389111, 0.0203076806, -0.0154503733, -0.00498972135, 0.0165355168, 0.0055226041, -0.0127375154, -0.00830651354, -0.0175173134, -0.0231884792, 0.0484438948, 0.00485730823, -0.0322959311, 0.0108062187, 0.0143264746, -0.00260466686, -0.057874307, -0.0209923554, -0.00243834266, 0.000746036, -0.023692295, -0.023898989, -0.00621050736, -0.0380833633, 0.0371274, 0.0219095591, 0.0511825904, 0.0281103775, -0.0284979288, 0.0086617684, -0.00994714629, -0.0013200962, 0.00766059477, -0.0289629903, 0.00494127721, -0.0323992781, 0.0201268233, -0.0387292802, 0.0419847108, -0.0307715628, -0.0236018654, 0.0434057303, -0.00961772818, -0.0020669396, 0.0353446677, -0.00212507229, -0.0114650559, 0.00823546201, 0.0119947083, 0.032631807, 0.00550645636, -0.00569700217, -0.00871990155, 0.0310557671, -0.0399952792, -0.0384709127, -0.0150886588, -0.0277228262, 0.029195521, -0.0132671688, -0.000495742541, 0.000458198512, 0.000996329472, -0.0214703344, -0.0182149056, -0.013615964, -0.0516218171, -0.0198426191, -0.02888548, 0.00304550631, 0.00994714629, 0.0163934138, 0.0498132445, -0.00365266972, -0.0120399231, 0.0207856614, 0.00594568066, -0.017194353, -0.0413646288, -0.0282912347, -0.00385613414, -0.00200234773, 0.0676922724, -0.0134996995, -0.0290663373, -0.00804814603, -0.0439224653, -0.0130927702, 0.0265343376, 0.0499165915, 0.0422947519, -0.0220129061, -0.0215349272, -0.0186153743, 0.00491867028, 0.000947885565, -0.0160187818, -0.00666588033, -0.0416746698, -0.00873282, 0.00977920741, 0.0206564777, 0.00591015536, -0.00639459444, -0.0458860584, 0.0358872376, 0.0146106789, 0.00446652714, -0.0269218888, -0.0156053938, 0.0265085, -0.0509242229, -0.00769935, -0.0124726882, 0.0318567045, 0.0407703817, 0.000832427642, 0.0262501333, -0.00986963604, 0.0349829532, -0.0259400923, -0.0038238382, 0.0252166633, -0.029815603, -0.0389618091, -0.015954189, 0.0145073319, 0.0225813147, 0.00742806401, 0.0133834342, -0.00427275151, -0.0185766201, -0.0120593, 0.000989870285, -0.007822074, 0.00224133767, -0.0455760173, -0.0317275226, -0.017091006, -0.0250745602, -0.00700821681, -0.00881033, 0.0241573565, 0.00509306835, -0.0480563454, -0.00058051938, -0.0396335647, 0.0414679758, 0.00770580908, 0.00201042159, 0.0536887571, 0.0407187082, -0.0140681071, 0.00464415504, 0.0343628712, 0.0010851433, -0.0276194792, 0.013615964, 0.0287562963, -0.0253200103, 0.00168423285, -0.0247386824, -0.0325543, -0.0314174816, -0.00442131283, -0.0301773176, 0.00312947575, 0.0182924159, -0.0144556584, -0.0209148452, 0.0466094874, -0.0125889536, -0.0297639295, -0.0278003365, -0.00278067961, -0.0258496627, -0.00448267534, 0.0231368057, -0.0282137245, -0.0021735162, 0.056427449, 0.0110193714, -0.0166517813, 0.0582360215, -0.0191450287, 0.00989547279, 0.0606130026, -0.0182278231, -0.0126341684, -0.013551373, -0.00533851748, -0.0348537676, -0.0179694556, 0.00591338472, 0.0138614131, 0.0184086803, -0.111821428, 0.0214832537, -0.0135126179, -0.0184861906, 0.00166001089, -0.0110129127, 0.0350604616, 0.0532236956, 0.0482630394, 0.0101861367, -0.00577451242, 0.00997298304, 0.0364298113, -0.0201784968, -0.0165355168, 0.0254750308, -0.0517768376, -0.0215349272, 0.0350087881, 0.00420815963, -0.0183440894, -0.0109999944, -0.0546188764, -0.0117557188, -0.0119753312, -0.00300675118, 0.051105082, -0.00476365, 0.0212636404, -0.0261467863, -0.0350346267, -0.0246482547, -0.012188484, 0.0187058039, 0.0257075615, 0.0113100354, -0.00265472545, -0.00663358439, 0.00386259332, 0.00562272174, 0.00601350237, 0.0130927702, 0.0184861906, -0.00561949192, 0.00644626794, -0.0102507286, -0.00716323731, 0.000365751417, 0.00148157577, -0.0245965812, 0.029298868, -0.0109354025, -0.0189770889, 0.0323476046, -0.0272836015, -0.0298931133, 0.0164580066, -0.0408478938, 0.0267410316, 0.0134351077, 0.0305907056, 0.00244803145, -0.0225683972, -0.00264180708, 0.00415971596, 0.0204368643, 0.0143910665, -0.0294280518, 0.0547738969, 0.00423399638, -0.0148690464, 0.0086100949, -0.0210569464, 0.0592694916, 0.0308490731, -0.00187800836, 0.00690487, 0.0237439685, -0.0309524201, -0.0136676375, -0.0407962203, 0.0355513617, -0.0275678057, 0.014649434, -0.0217157844, -0.0537404306, 0.0154374549, -0.00643657893, -0.016470924, 0.015062822, 0.0103928307, -0.0174785573, 0.00664650276, -0.00229947036, 0.0127827292, 0.0533787161, -0.00868114643, -0.0274127852, 0.0100634117, 0.000925278408, -0.0181244761, -0.00788020715, -0.00586171122, 0.0113229537, 0.000232127, -0.026069276, 0.00148157577, -0.0138097396, 0.00428244052, -0.00140245084, -0.0523969196, 0.00712448219, -0.0253716838, 0.00591015536, 0.00573898712, 0.0282137245, 0.00445683859, 0.0121174334, -0.0110129127, 0.00582295656, -0.0363006257, 0.00986963604, -0.0205272939, -0.00963710621, 0.0193129666, -0.00414033839, 0.0467128344, -0.0158250052, -0.011503811, -0.0268702153, 0.0189254154, -0.0028904858, 0.010780382, 0.0254621115, -0.0086423913, -0.027955357, -0.00264180708, 0.0110645862, -0.0141585357, 0.0157733317, 0.0188608244, -0.0247903559, -0.0200493131, 0.0184474364, 0.0138484947, -0.00781561527, -0.00235275854, -0.0284204185, 0.00681444118, 0.0234597642, -0.00855196267, -0.0131896585, -0.00204110285, 0.0203464366, 0.00624926249, 0.0145331686, -0.0106899533, -0.00924955495, -0.0488056093, -0.0309007466, -0.00682735955, 0.0188866612, -0.015269516, -2.62719823e-06, -0.0306423791, 0.027748663, 0.0149336383, -0.0199330486, 0.00114408333, -0.0334844217, -0.00428889971, 0.0178144351, 0.00415002694, -0.0191062726, -0.0176464971, -0.0337686241, 0.00879741181, 0.0267410316, 0.0114715146, -0.00517380796, 0.00484439, -0.0209794361, -0.00707280869, -0.05673749, -0.0405895263, -0.0205402113, -7.56305099e-06, 0.000735539827, -0.0268443786, -0.0168326385, 0.027645316, -0.0132284136, 0.0349312797, -0.0219483152, 0.00610393099, -0.0374632813, -0.0295313988, -0.0124597698, 0.0281103775, -0.0396335647, -0.0217028651, -0.0104445042, -0.0133705158, 0.00532882847, 0.0078737475, 0.027955357, -0.015372863, 0.0434832424, -0.0224004574, -0.00705989031, -0.0246353354, 0.00734409457, -0.00267248834, 0.0242865402, -0.002850116, 0.0105026364, -0.0435865894, 0.00846153405, 0.0103282388, -0.00284527149, -0.0304873586, 0.00804168638, -0.0202043336, 0.0136547191, 0.0194292329, 0.0255008675, 0.00346212368, 0.0450076088, -0.0100892484, -0.0200880691, 0.0130798519, -0.0267410316, -0.00645918632, 0.00354609312, -0.0125954133, -0.0184474364, 0.0232918262, 0.00278229453, 0.00457310397, 0.0164063331, -0.0258755, -0.00815149304, -0.00696946168, 0.00346212368, 0.0023317663, -0.0210311096, -0.0367656872, 0.0365073197, 0.0195842516, 0.000342538726, 0.00646887487, -0.022697581, -0.0245836619, -0.0124533111, -0.0156312305, -0.00256429682, -0.0228913557, 0.00745390076, 0.00661420682, 0.000436802453, 0.027541969, -0.000240200985, 0.00107464707, 0.0166259445, 0.0318567045, -0.0202172529, 0.0117880143, -0.0160058625, 0.01262125, 0.00629124744, -0.0219612326, 0.00425660377, -0.0259400923, 0.00988255441, -0.00125388952, 0.0461702645, -0.0177885983, 0.0205143746, 0.00369788404, -0.0117815556, 0.0350863, 0.014029352, 0.000179040566, 0.00963064656, -0.00878449343, -0.0203593541, 0.0132930055, -0.0259013362, 0.0141972909, 0.00823546201, 0.0266376846, 0.00162044831, 0.0252425, -0.00985025894, -0.00661420682, 0.00146139087, 0.000620485574, -0.0195196606, -0.000729080639, -0.00138307328, 0.00392395537, 0.0128344027, -0.0304873586, 0.00187316397, -0.0292730313, 0.0341820121, -0.00646564551, -0.000985025894, -0.0196359251, -0.021974152, -0.007925421, -0.0428631604, -0.0162900668, -0.00883616693, -0.00813211501, -0.029712256, -0.00853258464, 0.00148076843, 0.00620404817, 0.0180986393, 0.00375601673, -0.0205789674, 0.0156958215, -0.00544832367, 0.032631807, -0.03149499, -0.00771226827, 0.00218320498, 0.00761538045, 0.0386259332, 0.00138549542, 0.028988827, -0.0231755599, 0.0557556935, -0.00149126456, 0.000779543, -0.0138614131, -0.0104832593, 0.0349829532, -0.0135255363, 0.0160187818, -0.0177627616, -0.000667718356, 0.0166388638, 0.00566147687, 0.00512213446, 0.00228170748, -0.0239894167, -0.00760892127, 0.0044342312, -0.00736993132, 0.0211732127, 0.0279295202, 0.033045195, 0.00514797121, -0.000204574535, -0.0134867812, -0.0120463818, 0.0092947688, 0.0105349328, 0.0362747908, 0.011071045, 0.0254879482, 0.0208631717, -0.00226071524, -0.0114650559, -0.0198297016, 0.00659805862, -0.00294215931, -0.0346987471, -0.0290405, -0.0221679267, 0.00638813525, 0.0420105457, 0.0238214787, -0.0251520704, -0.0205143746, -0.00665942114, -0.0215478446, 0.0175560676, 0.011691127, -0.0199201293, -0.024105683, 0.00377539429, 0.0109806163, -0.0267927051, 0.0296605825, 0.0234597642, -0.00773164583, 0.0211732127, 0.00811273791, -0.0408737287, 0.0133834342, 0.00312624616, -0.0406412, 0.0185766201, 0.0370240547, 0.00052238669, 0.0013717697, 0.00700175762, -0.0133575974, -0.00492189964, -0.0508208759, 0.0531720221, 0.00645918632, 0.0165871903, 0.0189124979, 0.0504074879, -3.33556418e-05, 0.023692295, -0.0065593035, 0.031598337, -0.00976628903, -0.023588948, 0.00769289071, 0.0140422704, 0.0193388034, 0.0653669611, 0.0294797253, 0.0124210147, -0.00400146563, -0.000710510474, -0.00725366594, 0.0260176025, 0.0148690464, -0.00282912352, -0.0127698109, -0.00384321576, -0.0131702805, -0.0314174816, -0.00430504745, 0.0139518417, 0.0179177821, -0.00145089475, 0.0331227072, -0.0226329882, 0.0145848421, 0.0046635326, -0.0259400923, 0.0187187213, 0.00521579292, -0.00664004358, 0.0432248749, 0.000381899386, 0.0239894167, -0.0100375749, -0.0457568765, -0.00945624895, -0.00318599353, 0.00349119, 0.0279811937, -0.0388843, 0.0149207199, -0.0145073319, -0.00297445524, -0.00998590142, -0.0160962921, -0.0335360952, 0.000936582, -0.0393751971, 0.00489283353, -0.0199847221, 0.00405959832, -0.00947562605, 0.0205789674, 0.0485214069, -0.0153987, 0.00347504206, -0.0162125565, 0.0196875986, 0.0155020468, -0.0233822539, 0.0151920058, 0.00307457265, 0.0237181317, -0.00495096622, 0.0432248749, 0.0333552361, -0.0181761496, 0.0086100949, 0.0308232363, -0.0233822539, 0.0297897663, -0.0210440289, 0.0067304722, 0.00856488105, -0.0195971709, 0.0344920531, 0.0129506681, 0.00108433585, -0.0109160244, 0.00671109464, 0.00203625835, 0.0197392721, -0.0209019259, -0.0167292915, -0.0406670347, -0.00698883925, -0.0022720187, 0.00527392561, -0.00179403892, 0.0444133654, 0.0508467145, -0.0209536, 0.00163094455, -0.0102959424, -0.00293408521, -0.00997298304, -0.0268702153, -0.0043987059, 0.00705343112, -0.0114198411, 0.00649794145, -0.00938519742, -0.015850842, -0.0560657345, 0.0166259445, 0.0235372745, -0.00177466136, 0.0312107876, -0.00341045018, 0.0190158449, 0.0404086672, 0.00222357479, -0.00431796582, -0.0128666991, -0.00347827165, -0.005803579, 0.0215478446, 0.00604256848, 0.0131573621, -0.00646241568, 0.0212507229, 0.00041661752, 0.0357580557, -0.028988827, 0.00514151203, 0.0120205451, 1.25840588e-05, 0.00625249231, 0.0318308696, 0.013926005, 0.0204627011, 0.00276130205, 0.0255783778, 0.0127116786, 0.0268702153, -0.0306940526, -0.00209762063, -0.00292278174, 0.0388843, 0.0123564228, 0.0059941248, 0.0161479656, 0.031908378, -0.00513828266, -0.0100698713, -0.00643334957, -0.0110645862, -0.00250777905, -0.0184216, -0.0505108349, -0.00992776919, -0.0334327482, 0.0176077411, 0.00461831829, 9.74933428e-05, 0.024105683, -0.0203335173, -0.00889429916, -0.00634938, 0.00693070656, -0.00917204469, -0.0285237655, 0.00894597266, 0.016160883, -0.000398451055, 0.0107545452, -0.0148302913, 0.01444274, -0.0536887571, -0.00414356776, -0.00291147828, -0.0235501919, 0.0187833142, 0.0374891162, -0.0241315197, 0.0353188291, 0.00858425815, 0.0259530097, -0.00301321037, -0.0156570673, -0.00186831958, 0.00900410581, -0.00422430784, 0.0143135563, -0.00369465444, 0.0116200764, 0.022180846, -0.00897180941, -0.00621050736, 0.00617175223, 0.00275968737, -0.00789958425, -0.0240281727, -0.0100052794, -0.0300481338, -0.0367915258, 0.00112309097, -0.0178531911, 0.00140568044, 0.0171685163, 0.00281297555, 0.00613622693, -0.00721491082, -0.00659805862, -0.0226717442, -0.0165225975, -0.0300998073, 0.00732471701, -0.0240927637, -0.0131509034, 0.026172623, 0.00201042159, 0.0163159035, -0.00974045228, -0.0189383347, -0.00461508846, 0.00520287454, 0.01547621, -0.00537404278, -0.00759600289, -0.0210311096, -0.0305390321, -0.012291831, 0.0162900668, 0.0106318202, 0.00688549224, -0.0022800928, 0.0101409219, -0.0247903559, 0.00802230928, 0.0132671688, 0.0159154348, 0.0168455578, -0.0143523114, -0.00973399356, 0.0112906573, -0.00143797637, -0.00764121721, 0.0087134419, 0.00585525203, 0.0174527206, 0.00735055376, -0.00166969968, 0.001603493, 0.0289629903, -0.00682735955, -0.0104315858, -0.024415724, -0.0241186, 0.0191708654, -0.000366356951, 0.00108918024, -0.00335877691, -0.0305390321, -0.0111420965, 0.0666588, -0.0186799672, -0.0187058039, -0.0388067923, -0.00565178785, -0.0354221761, 0.00256914133, 0.0375666283, 0.00893305428, -0.0408995673, 0.00724720675, -0.00534820603, 0.00829359517, 0.0349312797, -0.00481532328, -0.0140810255, -0.0177756809, 0.00143070973, 0.0337427892, -0.0219612326, -0.00400146563, 0.0187962316, -0.0173106194, 0.00208308757, 0.0210311096, -0.0330193602, -0.00529653253, -0.00966294296, 0.0118526062, 0.00328611094, 0.0045957109, -0.00885554403, 0.0294538885, 0.00769935, -0.000946270768, -0.000271689525, 0.0161221288, -0.0245061517, -0.00593276229, 0.00941103417, -0.0154245365, 0.0226329882, 0.0165871903, -0.0259013362, -0.00581326755, 0.00965648331, -0.0406928733, 0.00863593165, -0.023692295, -0.00334585854, -0.0168326385, -0.00275807246, -0.0239894167, 0.00373340957, 0.013719311, -0.00342336856, 0.0175173134, -0.0224262942, 0.0143006379, -0.0325026251, -0.00940457545, 0.000469502091, -0.0378508307, 0.00302289915, 0.0242348667, -0.0124791479, -0.0263147242, 0.0160058625, -0.0142102093, 0.0192354564, 0.0143652298, 0.0237698052, 0.0316500105, -0.00297768484, -0.0481855273, -0.00108272105, -0.0279036835, 0.0304098483, -0.0118203107, -0.00959835108, -0.00601027254, -0.00841631927, -0.026133867, 0.0283170715, -0.0145202503, 0.012601872, 0.012104515, -0.0183440894, -0.00879741181, 0.0115361065, -0.0170522518, 0.0046118591, -0.015269516, 0.0361197703, 0.00870052353, -0.0199718028, 0.00652054837, -0.0159154348, 0.0014670426, -0.011277739, -0.0284204185, 0.0174527206, 0.0276194792, 0.0170005783, -0.0139389234, -0.0189512521, 0.0106511982, -0.00683381874, 0.0207985789, 0.0121820252, -0.0297380928, 0.0120915966, 0.0120593, 0.0122595355, -0.00888138078, 0.00641074218, 0.0106834937, -0.0194938239, 0.00873927865, -0.00671755383, -0.0016236779, -0.0176852513, 0.0261984598, 0.0118203107, 0.00176335778, -0.00214767945, -0.0234468449, 0.007925421, 0.0402536467, -0.0100892484, -0.00197812566, 0.0179048646, 0.00596828805, 0.0288338065, -0.0120657599, -0.00581649737, -0.00722782919, -0.010179677, -0.00408543507, 0.00114892772, -0.0110645862, -0.00865531, -0.00975337066, -0.0133188423, 0.000742806413, -0.00303420261, 0.00462154765, -0.00446329778, 0.0103992894, 0.0179565381, 0.0190675184, -0.0109289428, 0.012827944, -0.00378508307, 0.00618790044, 0.000370999507, 0.0228913557, 0.00763475802, 0.0328126661, 0.0147269443, 0.0275936425, 0.00640105363, -0.0176852513, 0.0094304122, 0.00780915609, 0.00302289915, -0.0247645192, 0.0166130271, 0.00990839116, 0.0110452082, 0.0206952319, -0.00312947575, 0.00011354038, 0.00130475557, 0.0273869485, 0.0301514808, 0.0152824344, -0.0368948728, 0.0261984598, 0.00375601673, -0.0108514326, 0.0396852382, -0.00949500408, 0.00777686, -0.0208760891, -0.0145719238, 0.000760972849, -0.00463123666, 0.0140035152, 0.00707280869, -0.0199976396, 0.0137063926, 0.0109095657, 0.00980504416, 0.00623957394, -0.00113358721, -0.0197263546, -0.0375666283, -0.0129958829, 0.00417909352, 0.00848091114, 0.00822254363, -0.00436318, 0.013822658, 0.000802957569, -0.00155585643, -0.0179565381, -0.00566470623, 0.000607163529, -0.00491867028, 0.0267668683, -0.0113100354, -0.00402407302, -0.0130669335, 0.0152953528, -0.00124258595, -0.00665942114, 0.0175173134, 0.0252295807, 0.00839048252, 0.00470228773, 0.0148302913, 0.0130927702, 0.0110129127, 0.00550968572, 0.00249486067, 0.00707280869, 0.00120383082, 0.00355255231, 0.0241315197, -0.025307091, -0.0044859047, 0.0234468449, -0.0147786178, 0.0146623524, -0.00611039, -0.00348473084, -0.0128473211, 0.0157345776, 0.00437932834, 0.0106124431, 0.0267410316, 0.0133188423, 0.00332971057, -0.0116523718, -0.000104457155, -0.00159784115, -0.0107028717, -0.0125954133, -0.00673693139, -0.00195067422, -0.00303097302, -0.00813211501, -0.0127633521, -0.00367527688, 0.00147511659, -0.015682904, -0.0151532507, 0.0182924159, -0.0135901282, -0.00405313913, 0.00178273534, -0.0250099692, -0.0121626472, -0.0214057434, 0.00665942114, -0.0333035626, 0.0257075615, -0.00317307515, -0.0132542504, -0.0508467145, 0.0327609926, 0.0223746207, 0.0304356851, -0.003103639, -0.00966294296, 0.00129910384, -0.00126923, -0.00704697194, 0.00392072601, -0.0148432096, -0.0234726816, 0.00888784, -0.0230463762, -0.010263647, 0.0197651088, -0.0248549487, 0.0108062187, -0.0131056886, 0.00411450164, 0.00221550092, -0.0139389234, 0.00502847647, 0.0147140259, -0.0124274744, 0.0233822539, 0.0158250052, -0.0019135339, 0.00381414942, 0.0039271852, 0.00772518665, 0.00200396241, -0.0074345232, -0.00833235, -0.0308232363, -0.0105672283, -0.000130293891, 0.0224262942, 0.0205918849, -0.0128021073, -0.00778331934, -0.011878443, 0.00482178247, -0.0275936425, -0.00519964471, -0.0359389111, -0.0416488312, -0.00205240631, 0.0111291781, -0.000176012822, -0.0148044545, -0.0263922345, -0.00270155468, -0.0140035152, -0.0126987603, -0.0103540756, 0.00888784, -0.0012385489, -0.0074345232, -0.00338138407, 0.00616852287, 0.0199847221, -0.0184732731, 0.0154503733, 0.00271447306, 0.005700232, -0.000966455729, -0.0163029861, -0.00169392163, -0.0217416212, -0.0281103775, 0.0309524201, 0.00245126104, -0.00496065477, 0.00590692554, 0.0202947631, -0.00671109464, -0.00819024816, -0.0183699261, -0.0120140864, 0.00992131, -0.00326511869, -0.00973399356, -0.00726012513, -0.00931414682, 0.0164580066, 0.0038238382, -0.00962418783, 0.0026805622, -0.00481532328, 0.00830651354, 0.011484433, 0.0046473844, 0.0123305861, -0.00102297356, -8.94193581e-05, -0.00523194065, 0.0191062726, -0.00685965549, 0.0316758491, 0.00191514869, -0.00585848186, 0.0298931133, -0.00325543, 0.0286012758, 0.0250874795, 0.0200105589, -0.0307715628, 0.00908807479, -0.00386259332, -0.0115554845, -0.0207339879, -0.00410481263, 0.00407574652, -0.0026918659, 0.000157745439, -0.0095014628, 0.00870052353, -0.00241735042, 0.0191967022, 0.0259400923, -0.0222196, -0.0112196067, 0.0119753312, 0.0172977, -0.0113940043, -0.0162383933, 0.0062428033, -0.00304227672, 0.00952084083, 0.025307091, -0.00327965175, 0.0186412111, 0.00348473084, 0.0552906319, -0.00892013591, 0.00538050197, 0.00461508846, -0.0150886588, -0.0254879482, 0.0120463818, -0.0273094382, -0.0360939316, -0.0314691551, 0.00806106441, -0.00498003233, 0.0073828497, 0.0275936425, 0.00575513486, -0.0209794361, 0.00327319256, 0.0180728026, -0.00835172739, 0.00242865412, -0.00281782, -0.0136288824, 0.0225167237, -0.0211861301, 0.00138872501, -0.00334908813, -0.0147269443, -0.0194938239, -0.0182794966, -0.00615883386, 0.00777040096, -0.0107674636, -0.0130669335, -0.0155020468, -0.00119494949, 0.023795642, -0.00626218086, 0.00204271753, -0.0022800928, -0.0132930055, -0.0190804359, -0.0105672283, 0.0136934742, 0.000224658565, -0.0181373954, -0.0165225975, 0.0224262942, -0.00690487, -0.00745390076, 0.0252425, 0.0213669874, -0.00276776124, 0.00674984977, -0.0119042797, -0.0263147242, 0.0019103043, -0.00722782919, 0.0154374549, -0.000115054252, 0.00089782686, 0.00147430925, 0.0101021668, -0.00163498148, -0.0109418612, 0.00817087, -0.00334262894, 0.0147915361, -0.0292213578, -0.0108772693, -0.00535466522, 0.0114521375, 0.0055226041, 0.00997298304, -0.0104574226, -0.0175819043, -0.000883293687, 0.0260951128, -0.0175043941, 0.00574544631, 0.00689195143, 0.00390457804, 0.0361972786, 0.0106641166, 0.028058704, -0.00093981158, 0.0124016376, 0.0276969895, 0.0207727421, 0.00722782919, -0.00260143727, 0.0361972786, 0.012414556, 0.011794474, 0.00813857466, -0.0240410902, -0.00357515947, 0.0183182526, 0.0054870788, 0.00259336317, -0.00848091114, 0.0140810255, 0.0146752708, -0.00379800145, 0.0107610039, -0.0255267043, 0.0169230681, 0.0100698713, -0.0121755656, -0.000124541184, 0.028988827, 0.0175173134, -0.0046990579, -0.00809981953, -0.0113035757, -0.00784791075, 0.00013614753, 0.0191579461, 0.00542571628, 0.0120270047, -0.0156958215, -0.0247774385, -0.0187445581, 0.00265472545, 0.0011634609, 0.00596828805, 0.0139389234, 0.0106899533, -0.0012902224, -0.0122530758, -0.000436802453, -0.00605225749, -0.00542571628, 0.00584233366, 0.0046473844, 0.0261209495, 0.0188608244, -0.0189383347, -0.0023866694, -0.0232272334, 0.0173622929, -0.00315046799, 0.032941848, -0.00168100325, -0.0122014023, 0.025617132, -0.0218578856, 0.00416940451, -0.0130410967, -0.0159154348, 0.0122789126, -0.0120205451, 0.00540633872, -0.00406928733, 0.000842116424, -0.0337944627, 0.0186799672, -0.00688549224, -0.0106705753, 0.0195971709, -0.00140810257, -0.00595536968, -0.000419039716, 0.00598766562, -0.0136805559, 0.0074861967, 0.00685965549, -0.012207862, 0.0150240669, 0.00765413558, -0.00374955754, 0.00999882, 0.0200622324, 0.0038755117, 0.0052577774, -0.00115861651, -0.00111340219, -0.0122659942, -0.0145977605, -0.0171814356, 0.0107287085, 0.016677618, 0.00966294296, -0.00306165428, 0.00910099316, -0.00277099083, -0.00444392, -0.00804168638, -0.00152517529, -0.0157862511, -0.0326834805, -0.00910099316, -0.0297639295, -0.0119042797, -0.00920434, 0.006610977, 0.00553552248, -0.00885554403, 0.0326576456, 0.015372863, 0.0116459131, -0.00406282814, -0.0050155581, -0.0151403323, 0.0245061517, -0.00183925324, 0.0237181317, 0.00235921773, -0.027438622, -0.00826129876, 0.0123499641, 0.0176206604, -0.00910099316, 0.0243769679, 0.00507369079, -0.00967586134, -0.00133059232, 0.0104186675, 0.00640751282, -0.0151274139, 0.0065754517, 0.012395178, 0.0357063822, 0.0290405, -0.0192612931, -0.00966940168, -0.0207210686, -0.0186670478, 0.0160704553, -0.0117492592, -0.0177498441, -0.00642043119, 0.0116394535, 0.00926893204, -0.0032021415, 0.000301966968, -0.0133705158, 0.00117637927, -0.021870805, 0.00107949146, -0.00278552412, 0.0177240074, -0.00605225749, 0.000189032115, 0.00349764922, -0.00380446063, 0.0191321094, -0.0138872499, -0.00907515641, 0.0145719238, -0.000892982469, -0.0108514326, -0.0233822539, 0.00722137, -0.014339393, -0.0100246565, -0.00951438118, -0.0114908926, 0.013241332, 0.00487991516, 0.014132699, 0.0106124431, -0.00722137, 0.00871990155, -2.1484364e-05, 0.00596505823, 0.0079060439, 0.0132930055, 0.0197392721, -0.0329935215, 0.00694362493, 0.016780965, -0.00490252208, 0.0204756204, 0.00838402379, 0.00895889103, 0.00938519742, -0.0130992299, 0.0176206604, 0.0190804359, 0.00837110542, 0.0157604143, -0.0155020468, 0.0106705753, -0.0214186609, -0.0202430896, 0.00657868106, -0.0197134353, -0.00150741253, -0.0180082116, -0.000271083962, 0.013034638, 0.000366356951, -0.00566147687, 0.0195971709, 0.0127956476, 0.0140681071, 0.0211732127, 0.0181890689, -0.0132542504, 0.00161964097, 0.00573898712, 0.00688549224, -0.00566147687, -0.00248517189, -0.00818378851, -0.0190804359, 0.00660128845, 0.0112325251, 0.0198813751, -0.0170393325, -0.00957897305, -0.00644626794, 0.0100311162, 0.00981150381, 0.0160704553, -0.0244803149, -0.00759600289, 0.00609747181, 0.0023236922, 0.0228526015, -0.0129506681, 0.00719553325, -0.0176464971, -0.0335877687, 0.00766705396, -0.00897180941, -0.00479594572, 0.0119301165, 0.00237052143, -0.0182149056, -2.24557643e-05, 0.00446975697, -0.00281459047, 0.00323605235, -0.00192645227, -0.00627509924, 0.00693070656, -0.00802230928, 0.00359130744, -0.0199072119, -0.0239506625, -0.00816441141, 0.00284365681, 0.00499295071, -0.014132699, 0.0157862511, -0.0137322294, -0.00591338472, 0.0204497837, -0.0149853118, -0.00811273791, 0.0162513126, 0.00523517048, 0.0332777277, 0.00159138197, -0.0120915966, 0.0137709845, -0.0384967513, -0.00803522766, 0.000354246, -0.00348473084, -0.0213540699, 0.00258690398, -0.0169101488, -0.00266764383, 0.0130669335, 0.00954021793, -0.0196100883, -0.00400146563, -0.00411127182, -0.00728596188, 0.0305648688, -0.00968232, 0.0101538403, 0.0104122078, -0.0126277087, 0.00736993132, 0.0034556645, 0.00134996988, 0.00173913583, -0.0114521375, -0.00228332239, -0.0145848421, -0.00721491082, 0.00595214, 0.00890075881, 0.0228784382, 0.0448525883, 0.0121820252, 0.023007622, 0.00977920741, -0.00388843, 0.00828713551, -0.000483227865, 0.0324767865, 0.0066787987, -0.0212248862, -0.0399694443, 0.00325543, -0.0117750959, 0.00550968572, 0.0124468515, -0.00309395022, -0.0128796175, 0.00923017692, -0.00846153405, -0.0114715146, -0.0162771493, 0.00966294296, 0.00505431322, -0.00643011974, 0.00220904173, -0.0199072119, 0.00608455343, 0.0116265351, -0.00280490168, 0.00877803378, -0.00966294296, 0.00376570551, 0.0112325251, 0.00429858826, 0.0125372801, -0.0125372801, 0.00750557426, -0.0176852513, -0.0175043941, 0.00210085022, -0.0191579461, 0.00906869769, 0.00490898127, -0.0063978238, 0.00814503338, 0.000129688342, -0.00561626256, -5.11688668e-05, -0.00146381301, -0.00452466, 0.00667233951, 0.0120786782, -0.00330225891, -0.0039627105, -0.0139130866, -0.00532882847, -0.0197521914, -0.00828713551, -0.0128666991, 0.00087118271, 0.00840340089, 0.00161479658, 0.00405636895, 0.0102507286, 0.0178402718, -0.0233047437, -0.0181503128, -0.012601872, 0.00623634411, -0.00438578753, -0.0103863711, 0.0283429082, 0.0202947631, 0.0144298216, -0.00368496566, -0.022697581, -0.0100440346, 0.0166388638, -0.00592307374, 0.0170651693, -0.00954021793, -0.0129829645, 0.00527392561, 0.0121561885, -0.0189124979, -0.0221550092, -0.00250131986, -0.0403053202, -0.012517903, -0.00537081342, -0.0128150256, -0.00867468677, -0.0121432701, 0.0260176025, -0.0035041084, 0.0193646401, 0.00297929952, 0.00146219821, 0.0314433165, 0.00900410581, 0.0299447868, 0.00567762461, -0.0119494945, 0.0146106789, 0.013551373, -0.00341690937, 0.00261597033, -0.00727304351, 0.00628478825, -0.0109935347, 0.00353963394, 0.000595052552, -0.00877803378, 0.0135384547, 0.0119624129, 0.00689841062, 0.00315046799, 0.00778331934, 0.023214316, -0.0203335173, -0.0194292329, 0.00700175762, 0.00203787326, 0.00789312553, -0.0187058039, 0.00116749795, 0.00553552248, 0.00672401302, -0.00826775841, -0.00431150664, 0.00332325138, -0.00972753391, -0.014649434, -0.0086940648, 0.00965648331, -0.00548061961, -0.00245449063, 0.00822254363, -0.00423399638, 0.00608455343, 0.0231884792, 0.0130217196, 0.00815149304, 0.0245836619, -0.00847445242, 0.0178015176, -0.0187833142, 0.0146623524, -0.013034638, -0.0237439685, -0.0209019259, 0.00609101262, 0.00621050736, 0.0338461362, -0.00478625717, 0.00989547279, -0.00503493566, -0.0100311162, -0.00460862927, 0.00371403201, 0.027438622, -0.00598120643, -0.00291470787, -0.00393041456, -0.00807398278, 0.0180340484, 0.0160962921, -0.008028768, -0.00572283892, -0.0121174334, 0.028988827, -0.000275928352, -0.0047152061, -0.00466999179, -0.00682090037, 0.00222357479, -0.00662066601, -0.00870052353, -0.00622342573, -0.0278778467, 0.0212636404, -0.00872636, -0.00383029738, 0.0115425661, 0.00965002459, 5.96970094e-05, 0.0208890084, -0.00843569729, -0.0151920058, 0.000294498517, -0.000670140551, 0.00194260024, 0.00233015139, -0.0105349328, 0.0130733931, 0.00789958425, 0.0134221893, 0.000214364234, -0.0063461503, 0.00274515408, -0.0182407424, 0.00291632256, -0.0229947027, 0.00696946168, -0.00405959832, 0.0112002287, 0.00979858544, 0.0153857814, 0.0244803149, 0.0191191919, 0.00303581753, -0.00639136462, -0.00446975697, 0.0304615218, -0.026133867, -0.0302806646, 8.12949147e-05, 0.00885554403, -0.0234210081, -0.0271027461, 0.01626423, 0.0115619432, -0.00192160788, 0.0020620951, -0.0178790279, 0.00747973751, -0.00831943192, 0.023795642, 0.00365266972, -0.0209794361, -0.00645918632, 0.0344662182, 0.0245578252, 0.000254734157, 0.0153211895, 0.00338138407, -0.0158895981, -0.00257398561, -0.0275161322, -0.000737558294, 0.0119236577, -0.00611039, -0.00657222187, 0.00107303227, 0.00317791966, 0.00390457804, -0.011484433, 0.00969523843, 0.0243382137, -0.00608778279, 0.0133317607, -0.0180857219, 0.0350346267, 0.0201397426, 0.0014969164, -0.000583345245, -0.0178273544, 0.0170522518, -0.0126858419, -0.0113617089, 0.0103411572, 0.00825484, 0.0117621776, 0.00473781303, 0.00938519742, 0.000302774366, 0.010987076, 0.0270252358, -0.0136288824, -0.0168197211, -0.00519964471, -0.0191579461, -0.00425983313, -0.00663358439, -0.00160914473, 0.011297117, -0.0210181922, -0.0220129061, -0.00602965, -0.0113035757, 0.0325801335, -0.004014384, -0.0172072724, 0.0101021668, 0.00381737901, -0.00070687721, -0.0206952319, 0.01262125, 0.00436318, -0.00646241568, 0.015747495, 0.0156053938, 0.00640428299, 0.0137968212, -0.00468936935, -0.00416940451, 0.0154374549, 0.00664650276, -0.0070663495, -0.00824838, 0.0166001078, -0.00855196267, 0.0225813147, -0.0251649898, -0.012395178, -0.00137661409, -0.00977274869, 0.0265601743, -0.0282137245, -0.00131040742, 0.0102894837, -0.0154245365, 0.0126083316, 0.0168713946, 0.0105349328, 0.00141456176, 0.0108901877, -0.00274515408, 0.0134609444, 0.0227234177, -0.00206371, -0.00582295656, 0.0190933552, -0.0120205451, 0.00644626794, 0.013615964, -0.0139647601, 0.00632354338, 0.00760246208, 0.0125566581, -0.0413129553, 0.0196100883, -0.0115102697, 0.0159154348, 0.0129571278, -0.0140551887, -0.00302935834, 0.0229430292, 0.0406412, 0.00968878, 0.00705989031, -0.0103282388, 0.0161867198, 0.00728596188, -0.0113746272, 0.00657868106, 0.00616206368, 0.00433734339, -0.0166647, 0.0151920058, 0.00777040096, -0.00524485903, 0.000854227343, 0.00609101262, -8.63916139e-05, -0.0127762705, 0.0265085, 0.0434315689, 0.0199330486, 0.0174785573, 0.0136288824, -0.0147140259, 0.000857456937, -0.00433734339, -0.0245836619, -0.0107997591, 0.00824192166, 0.0267668683, -0.031805031, -0.0338461362, 0.0109547796, 0.02603052, 0.00731825782, 0.0123822596, 0.022697581, -0.000668122084, 0.0068531963, -0.0281103775, -1.3511305e-05, -0.00293570012, 0.0118267694, -0.0127827292, 0.0235501919, 0.0026837918, -0.0242607035, 0.0385225862, -0.00301321037, -0.00699529843, 0.00171491387, -0.00881033, 0.00111340219, -0.00373340957, 0.0111356368, -0.0117492592, -0.00192160788, -0.0147398626, 0.00153890112, 0.0047152061, -0.012498525, -0.000537323533, 0.00362683297, -0.0232401527, 0.00165274425, 0.0156958215, -0.0371532403, -0.0158379246, 0.00407574652, 0.00457633333, -0.00607486442, 0.0103992894, -0.000302370667, -0.0108191371, 0.0134221893, 0.0240410902, 0.0338719711, -0.0194033962, -0.00964356493, 0.0325543, 5.32378217e-05, -0.00128295587, 0.00482178247, -0.0067304722, 0.0292213578, -0.00227363361, -0.00422430784, -0.0107157901, -0.00154051592, 0.00214606454, -0.0103992894, -0.0197521914, 0.016160883, 0.0163417403, -0.0156183122, 0.00524485903, 0.00502524665, -0.00455049658, -0.000197509798, 0.0213023964, 0.0254750308, -0.0156570673, -0.00635906868, -0.0115231881, -0.00902994256, -0.0146752708, 0.0219612326, 0.0141843725, 0.0145331686, -0.0059424513, -0.0345178917, -0.00845507439, 0.0031553125, 0.00764767639, 0.00518026715, -0.0117750959, -0.00378831266, 0.00166001089, -0.00491867028, 0.00972107518, 0.0158895981, 0.0129506681, -0.00289856, -0.00195390382, 0.0055226041, 0.0196746811, -0.00338138407, 0.015682904, 0.0119688716, 0.00250293454, -0.00882970728, -0.00477010896, 0.00722782919, -0.0024302688, -0.0241573565, 0.00786728878, -0.00991485082, -0.00106818788, -0.00157846359, 0.0119171981, 0.00656576268, 0.0304615218, 0.00357192988, 0.00298414403, -0.0112389838, 0.000492916617, -0.0127568925, -0.00647210469, 0.00941103417, 0.00562272174, -0.00413387921, -0.0187703948, 0.00176012819, -0.00957897305, 0.00848091114, 0.00611039, -0.0153857814, -0.00566470623, -0.000125146733, 0.0125760352, 0.00377862388, 0.00402407302, 0.0257333983, 0.00814503338, 0.0135901282, 0.0057874308, 0.00847445242, 0.00273223571, -0.00667233951, -0.00729242107, -0.000149469604, -0.0174914766, -0.0132542504, -0.00702759437, -0.0120270047, -0.00192322268, 0.00288725621, -0.0259917658, 0.0311074406, 0.000288039329, -0.0156053938, 0.0187445581, -0.0168455578, 0.0166259445, -0.000841309, -0.0233047437, -0.0218062121, 0.0344403796, -0.00570669118, 0.0336652771, -0.00912683, -0.0148302913, 0.0150111485, -0.00173913583, -0.0165355168, 0.00901702419, 0.00489606289, 0.00882970728, 0.0147656994, -0.0219224785, 0.0224262942, 0.0024819423, -0.000206895813, -0.00458925171, -0.00997944269, -0.00472489465, -0.00205240631, 0.00107464707, -0.010573688, 0.00552906329, 0.0044342312, 0.0118009327, -0.0104509629, 0.0208244156, -0.0166259445, -0.0128602395, -0.00153244194, 0.00511244591, 0.0178531911, -0.00504462421, 0.0143135563, 0.0271802563, 0.00837756414, -0.000178838716, -0.0209923554, 0.00463769585, -0.0219483152, 0.0230851322, -0.0128214844, -0.0191062726, -0.00806752313, 0.0204756204, 0.00959835108, -0.0130669335, 0.00618144125, -0.0192354564, -0.00507369079, 0.00296476646, -0.0315725021, -0.00814503338, 0.0313658081, 0.0166647, -0.00742160482, -0.00771226827, -0.0027952129, -0.00509629771, -0.0092237182, -0.00813857466, 0.0106511982, -0.0116394535, 0.0084873708, -0.0087651154, 0.00820962526, 0.00724074757, 0.00355255231, -0.00566470623, -0.0209923554, -0.0222971104, 0.00373340957, -0.0241315197, 0.00285980478, -0.00281620515, -0.0146365156, 0.00353963394, -0.000911552634, 0.0246094987, -0.0240152534, -0.0115942396, 0.0234210081, 0.00128295587, 0.0079770945, -0.00588754797, -0.00606517587, -0.000405515777, -0.0118913613, -0.00588108879, -0.00213960535, 0.0209406819, 0.0127310557, -0.00926893204, 0.0103540756, 0.0120980553, 0.00539987953, -0.0035590115, 0.0116459131, 0.00975337066, 0.0137580661, -0.0191708654, 0.000651570386, -0.014236046, -0.00212668697, -0.0176723339, 0.000769450562, 0.00879095215, 0.00446329778, -0.00611361954, 0.0181632321, 0.012414556, 0.0157862511, 0.014752781, 0.00894597266, 0.0048185531, -0.00109886902, -0.0093787387, -0.000505835, -0.00302935834, -0.0211215392, -0.00678860489, -0.00895243231, -0.0104445042, -0.0264309905, 0.0126858419, 0.0233434979, -0.00873282, 0.00196520728, 0.00142990239, 0.00319245271, 0.0117815556, 0.00174236542, 0.0112519022, 0.0125824949, 0.0113423308, -0.00317469, -0.0185120273, 0.0092947688, 0.00273385062, 0.0143652298, -0.0116394535, 0.000479594572, -0.0123628825, 0.0148044545, -0.0138614131, -0.0143264746, -0.0110387495, 0.0114198411, 0.00577128306, -0.00087118271, 0.00160591514, -0.0328901745, 0.0147915361, -0.0217803754, 0.00657868106, -0.00344274612, -0.0130927702, 0.00574544631, 0.0174656399, 0.00153728633, -0.0109224841, -0.014132699, 0.00284850108, 0.00747327833, -0.0157087408, -0.0204368643, 0.00474427221, -0.0019635926, 0.00912037119, 0.0272577647, 0.0150886588, 0.00077631342, -0.0309524201, 0.000293892983, -0.00877803378, 0.007822074, -0.00658837, -0.00275484286, -0.0147398626, 0.00325543, 0.00193129666, 0.0114263007, 0.0106189018, -0.0118332291, 0.0249066222, 0.000620485574, 0.00254814886, 0.0217545386, -0.0147915361, 0.0251649898, -0.00318760844, -0.0126793822, -0.0217674579, -0.0106705753, -0.012104515, -0.0132930055, 0.00380769023, -0.0151920058, -0.0165225975, -0.000792865118, -0.00328772585, 0.00116669049, -0.00157442666, 0.00959835108, -0.0112196067, 0.0118009327, 0.00505754258, -0.00294377399, 0.00820962526, -0.0219095591, -0.00223810808, -0.00372049119, 0.00552906329, 0.0100504933, -0.0213282332, 0.0154374549, -0.0273611117, -0.00333294016, -0.0185895376, -0.0173752103, -0.0104768, 0.0214057434, 0.00123451196, 0.00500263972, 0.0140681071, -0.0159154348, -0.00409512408, 0.0186799672, 0.0182278231, -0.00274515408, -0.00390780764, -0.0164063331, -0.000941426377, -0.0106124431, -0.00950792246, 0.0118590659, -0.0137580661, 0.02420903, 0.0202430896, 0.0114908926, 0.00185540121, 0.00199588854, 0.0114069227, -0.000904286047, -0.000588593364, 0.00950792246, 0.0408995673, -0.0135384547, -0.00435349159, 0.025449194, -0.0277745, -0.00582941575, 0.00259982236, 0.01158778, -0.00616529305, -0.00723428838, 0.0120593, 0.0022284193, 0.000974529714, 0.000342942425, -0.00700175762, -0.0018602456, -0.00235598814, 0.00272254692, 0.0124403927, 0.0146235973, 0.0124856066, -0.001003596, -0.00430181809, -0.0113681676, -0.00193291146, -0.0078737475, 0.000109806162, 0.0252037439, 0.00884262566, 0.0280845407, 0.0178531911, 0.00684673712, -0.0080804415, -0.00726012513, -0.00780915609, 0.0142748011, 0.000247467571, -0.00727950269, -0.000317913073, 0.0191837829, -0.0137063926, -0.0148173729, -0.00610070117, -0.00241250615, -0.013241332, -0.0230980497, -0.00799001288, 0.00353963394, -0.000165718491, 0.0244803149, 0.00764121721, -0.0111098, 0.00811919663, 0.0150757404, 0.00672401302, 0.0177756809, 0.00456987415, -0.0400469527, -0.0173235368, 0.00579066062, 0.0148432096, 0.0124662295, -0.0170393325, 0.0245061517, -0.0239377432, 0.00729242107, -0.000880064094, -0.00229139626, 0.00533851748, -0.00825484, -0.00077590975, -0.0319600515, 0.00622342573, 0.0302289911, 0.000555893697, 0.00570669118, -0.0183957629, -0.0190416817, -0.0129248314, 0.011400464, -0.0166001078, -0.00693716574, 0.00173267664, -0.00896535069, 0.0139001682, 0.00237052143, -0.0127762705, -0.0133188423, -0.000818701868, -0.0157604143, -0.01198179, 0.00558073679, -0.00848091114, 0.00968878, -0.0135255363, 0.00311494246, -0.0343887061, -0.0157087408, -0.0102313505, -0.00309879449, -0.00882324856, -0.0105155548, -0.00348473084, 0.0134092709, 0.0122789126, 0.00571960956, 0.025823826, -0.0175560676, 0.00290986337, -0.0219483152, -0.00473781303, -0.0186282936, 0.00500263972, 0.0186670478, 0.00588431861, -0.0252037439, -0.00600704318, -0.0119430348, -0.00414356776, -0.00722782919, -0.00111340219, 0.0121174334, -0.0133059239, -0.0342078507, 0.000677003467, -0.0053320583, -0.0281103775, 0.0243898872, -0.0200622324, -0.00529976236, 0.00276291696, 0.00658837, -5.31873593e-05, 0.00516088959, -0.00548061961, -0.0163804963, 0.00425014459, 0.00174882461, -0.0217674579, -0.0193646401, 0.00543217547, -0.00736347213, -0.00647856388, -0.00766705396, 0.0107997591, -0.00474750204, 0.00328934053, -0.00130314077, -0.022904275, 0.0155537203, 0.00850028917, 0.00699529843, -0.0156312305, -0.00504462421, -0.0307974, 0.00594568066, -0.00292439642, 0.00112955016, -0.0350863, -0.00187800836, -0.0252037439, 0.00037241244, -0.00402730238, -0.00764121721, 0.012808566, -0.0031553125, -0.00189738593, -0.00381414942, -0.00254168967, -0.0144039849, -0.00689841062, -0.0101150852, -0.0125243617, 0.0100957081, -0.00883616693, -0.0154374549, 0.0125308214, 0.0197392721, -0.00520933373, -0.00965002459, -0.0128537808, -0.00968878, 0.00688549224, 0.0110968817, 0.00250939373, 0.00444714958, 0.0127891889, 0.0279295202, -0.0108578922, -0.0252683368, 0.00709864544, 0.00168261805, -0.0261209495, -0.026069276, 0.00648179324, -0.0148819648, 0.00871990155, -0.0127956476, 0.0120399231, -0.00908161607, -0.00919788145, -0.00159218942, 0.00899764616, 0.0143135563, 0.00140891, -0.0172977, 0.0142102093, -0.0134221893, -0.0038755117, 0.0340011567, -0.00819670688, 0.0105607696, -0.0180598851, 0.011878443, -0.0101990551, 0.0013168666, -0.00745390076, 0.0127439741, -0.00167131447, -0.000643092731, 0.00146462047, -0.0127762705, -0.0108772693, -0.0111227185, 0.0131509034, -0.0151144955, -0.0105801467, -0.00592307374, -0.0376183, -0.00824192166, 0.000393001101, 0.00882970728, 0.0110064531, 0.0165871903, -0.00703405356, -0.028678786, -0.0246999282, 0.0201655794, -0.00228493707, 0.00244480185, 4.87719e-05, -0.021974152, 0.002110539, 0.0241573565, -0.00986963604, 0.0128989946, 0.00453111902, -0.0176981706, 0.00724720675, 0.00534820603, -0.025449194, -0.00469582854, 0.000115861651, 0.000390578905, -0.0183053333, -0.00906869769, 0.02888548, 0.0227234177, -0.00543863466, -0.015954189, 0.0113100354, -0.0115684029, -0.00202334, 0.027231928, 0.0195325781, 0.0061556045, 0.00432119565, -0.0298414398, 0.0222454369, -0.00868760515, -0.00675630895, -0.00986963604, -0.00796417613, -0.0137322294, 0.00685965549, -0.000844538619, 0.0105155548, 0.00741514564, -0.0133317607, -0.0132671688, 0.0364814848, 0.00641397201, -0.00654961495, -0.0161479656, 0.00739576807, 0.00772518665, -0.000151488101, -0.0171297621, 0.0112131471, -0.00399500644, -0.0243382137, 0.013241332, -0.0105607696, 0.0287562963, -0.00716323731, 0.00259336317, -0.0151920058, 0.00588431861, -0.00527715497, 0.0234080907, 0.0011917199, 0.00698883925, 0.00540633872, -0.00133059232, 0.013241332, 0.0118461475, -0.0218449682, -0.00223003398, 0.00311332778, 0.01626423, -0.00493804784, -0.00995360594, 0.00868760515, 0.0259917658, 0.00136773265, -0.00526746642, -0.00233984017, 0.027645316, 0.00699529843, -0.0051027569, -0.00153567153, 0.00290824869, -0.00473135384, 0.0109095657, 0.0233564172, -0.0122143207, -0.00490898127, 0.0109095657, -0.0163288228, 0.0194421504, -0.00802230928, 0.00208631717, -0.0088167889, -0.0131444437, -0.00686611468, 0.0026837918, 0.0264309905, 0.00371080241, -0.0312624611, -0.0183440894, 0.000159663, -0.00218159, 0.0170651693, 0.0295572355, -0.023795642, 0.0105349328, -0.0134221893, -0.00308910571, -0.0191967022, -0.0151144955, 0.0219870694, 0.0113875456, -0.0176077411, 0.0317791961, -0.0172977, -0.0158120878, 0.0350604616, 0.0267668683, 0.000915589626, -0.00800293125, 0.000319729705, -0.0046054, 0.00670463545, -0.0136418007, -0.00570346136, -0.0295572355, -0.0136030465, 0.00757662533, 0.0125049846, -0.00924309529, 0.00660451781, -0.00960481, 0.0174914766, 0.0291438475, 0.0241444372, -0.0179307014, 0.0183053333, -0.00628801761, -0.000509872, -0.00709218625, 0.0243382137, -0.00207339879, -0.000215979031, -0.0126470868, 0.0103282388, 0.00191837829, -0.00292762602, -0.00128618546, 0.00153324928, 0.00899118744, 0.0294797253, 0.000322555599, 0.0169230681, 0.00019145431, -0.0133059239, -0.0119624129, 0.00793833937, -0.00990839116, 0.0052577774, -0.0197263546, -0.0145073319, 0.000634615, 0.00102135877, -0.0168584753, 0.0227234177, -0.0217287019, -0.0269218888, 0.0227750912, 0.00228978158, -0.0013701549, 0.00523517048, 0.00473781303, -0.0163029861]
|
13 May, 2020
|
Fabric.js | Ellipse cornerSize Property
13 May, 2020
In this article, we are going to see how to set the size of controlling corners of canvas ellipse using FabricJS. The canvas means ellipse is movable and can be stretched according to requirement. Further, the ellipse can be customized when it comes to initial stroke color, fill color, stroke width, or radius.
Approach: To make it possible, we are going to use a JavaScript library called FabricJS. After importing the library using CDN, we will create a canvas block in the body tag that will contain our ellipse. After this, we will initialize instances of Canvas and Ellipse provided by FabricJS and set the size of controlling corners of canvas ellipse using cornerSize property and render the Ellipse on the Canvas as given in the below example.
Syntax:
fabric.Ellipse({
rx: number,
ry: number,
cornerSize: number
});
Parameters: This function accepts three parameters as mentioned above and described below:
rx: It specifies the horizontal radius.
ry: It specifies the vertical radius.
cornerSize: It specifies the size of the controlling corners.
Program: This example uses FabricJS to set the size of controlling corners of the canvas-like ellipse as given below. You have to click on the object to see the size of controlling corners.
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Ellipse cornerSize Property
</title>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a Ellipse instance
var ellipse = new fabric.Ellipse({
rx: 80,
ry: 40,
cornerSize: 30
});
// Render the Ellipse in canvas
canvas.add(ellipse);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js Textbox cornerStyle Property/Fabric.js Textbox cornerSize Property/Fabric.js | Ellipse cornerSize Property
|
https://www.geeksforgeeks.org/fabric-js-ellipse-cornersize-property?ref=asr9
|
CSS
|
Fabric.js | Ellipse cornerSize Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, Fabric.js Textbox cornerSize Property, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, Fabric.js | Ellipse cornerSize Property, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js Textbox cornerStyle Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0115871495, 0.00739789754, -0.0111335358, 0.0187048744, 0.0244951136, -0.00161349552, 0.0210129637, 0.0316728763, -0.0108867167, -0.0437069647, 0.0114137083, -0.00144839368, -0.0126878284, -0.0407184549, -0.00118990079, 0.0302586686, -0.0256024636, -0.00197288394, -0.0276970882, -0.0256024636, -0.011467075, -0.0300185215, -0.0245751627, 0.0198255647, 0.00401914632, 0.0558744743, 0.00470290147, 0.0112269269, -0.0350616314, 0.011473746, 0.0439204313, 0.0129813422, -0.0102529926, -0.0179444049, -0.0146090137, -0.021760093, 0.00851858873, 0.0409052372, -0.0212130882, -0.00369227817, 0.0174374245, 0.00496306224, 0.00383903529, 0.0193185862, -0.00130580564, -0.0034287821, -0.0234011039, -0.0292447098, -0.030845698, -0.0498440862, -0.0218268, -0.0342878215, 0.0232810304, -0.00867201667, 0.0111335358, 0.0144088902, 0.0129079642, 0.0478161685, 0.00147257524, -0.00587362377, 0.0363957882, -0.087734133, -0.0170371775, 0.00434935, -0.0405316725, -0.00667078234, -0.00329036335, 0.0268965941, -0.00673749, -0.00418925146, -0.0335140117, 0.011073499, 0.0204259362, -0.00661741616, -0.000578690378, -0.0183313098, 0.00764471665, 0.020012347, -0.0343678705, 0.0401314273, -0.00403582351, -0.00367226568, -0.011547124, 0.0412521176, -0.00126828253, -0.0155562647, 0.037169598, -0.0371429175, -0.00268665771, 0.0195720755, 0.00110734988, 0.0272701588, 0.0218534824, -0.0385304391, -0.00376232131, -0.0241749156, 0.0244684294, -0.0157163627, -0.0318596549, 0.0194386598, 0.00691760145, 0.0680953488, 0.00567016518, -0.0312726274, -0.0238146931, -0.0303654019, 0.0347414352, -0.0459216647, 0.0244150627, 9.63094208e-05, 0.0290045626, -0.0236412529, 0.00996614899, 0.0406384058, -0.0349815823, -0.00646732375, -0.00176108652, -0.0306856, 0.031245945, 0.0105064819, 0.0127011696, -0.004152562, 0.0339676253, 0.0480563156, -0.0423194431, 0.0333539136, 0.00488968333, 0.0136751039, 0.0292180274, 0.00413588528, 0.00563347572, -0.0174107421, 0.0146623794, -0.0327402, 0.0587028861, -0.0120140789, -0.0049897451, 0.00547337718, 0.0102129681, 0.00282174093, -0.0290045626, -0.0266297627, 0.00826509949, 0.0176909156, -0.0101796137, -0.0029067935, 0.00184447132, -0.0197054911, -0.0186381657, 0.00535663823, -0.0652135685, -0.0112936348, 0.0189983882, -0.00924570486, 0.0386104882, -0.0318863392, -0.0211063549, 0.012254227, 0.0381835587, 0.0085119186, 0.0453613214, 0.00749128871, 0.00422260538, 0.0272301342, -0.0320998058, -0.0144622559, -0.00407584803, 0.00793156, -0.0602505058, 0.0257759038, -0.0115271118, -0.014395548, -0.0120941289, 0.00853193086, -0.0355686136, -0.0339409411, -0.0110668279, -0.0551807135, 0.0178643558, -0.0147024048, -0.0425862744, 0.0216133352, 0.0227473676, 0.0605173372, -0.00559678627, -0.0258959774, 0.0341010392, -0.0104064206, -0.0123075936, -0.0384770744, 0.0150359431, 0.0319663882, 0.0289778784, 0.00950586516, 0.00219635502, -0.0246018451, 0.0198255647, 0.021119697, -0.01526275, -0.0234411284, 0.0170371775, -0.026656447, -0.0306322332, -0.0509114116, 0.0146490382, 0.0169037618, 0.0223204382, -0.0590764508, 0.0386371724, -0.000327285263, 0.0160632432, 0.00785818137, 0.0249353852, 0.00468288921, -0.0264563225, -0.00385571225, -0.020252496, 0.0112469392, -0.028871147, -0.00857195538, 0.00717109116, 0.0171972774, -0.00595367327, -0.0419725627, -0.0410119705, -0.0155295813, 0.0131814657, 0.0187582392, -0.00321364938, -0.0464553274, 0.00945917, -0.00687757647, -0.0158631206, 0.00833180733, 0.0457882509, 0.00433267327, 0.0138885686, -0.0103463838, 0.00354218553, 0.0138085196, -0.0101662725, -0.00621049851, -0.0150226019, -0.0140620098, 0.0552874431, 0.00101395894, -0.0156229725, 0.006327237, 0.0119340299, -0.0304187685, -0.0497907214, -0.0197321735, 0.0076714, 0.00691760145, -0.0397845469, -0.00528659485, -0.00759802107, -0.0412254371, 0.0393309332, 0.0390107371, 0.0656405, 0.00806497596, 0.000592865807, 0.0118940054, -0.0151560176, -0.0268832538, -0.00177276041, -0.0390107371, -0.00326368026, -0.0226673186, 0.0134082725, -0.0309791137, 0.0539266057, -0.0481363647, -0.0126077784, 0.0342344567, -0.0350616314, 0.00302519975, 0.0282307509, -0.00727782352, 0.000256199739, 0.0179310627, 0.0262028333, 0.0382369235, -0.0261361264, -0.00447609508, -0.0167570058, 0.0205726922, -0.0197855402, -0.0129079642, -0.0174107421, -0.0443473607, 0.0238814019, 0.00517319189, 0.0293247588, -0.00117906078, 0.00672081346, -0.0269766431, -0.0234678127, -0.0400513783, -0.0407184549, -0.0247486029, -0.0185714588, -0.00950586516, 0.0326067843, 0.0247352608, 0.0296983235, -0.037649896, -0.0188382901, 0.0239214264, 0.0227873921, -0.00294014742, -0.0279372372, -0.0501909666, -0.000541167217, -0.0157563873, 0.0750329569, -0.00681420416, -0.0370095, 0.00355886249, -0.0194386598, -0.0187849235, 0.0083184652, 0.0361289568, 0.0476293862, -0.00434601493, -0.0144222314, -0.026736496, 0.0140353264, 0.0163033921, -0.0253356323, -0.0162500255, -0.0245351382, 0.0123075936, -0.00124576862, -0.0108200088, 0.00687090587, 0.000555759587, -0.0458949842, 0.0516318567, 0.0264696646, 0.0365025215, -0.0366092548, -0.0256024636, 0.0265897382, -0.0398379117, -0.00996614899, -0.00935243722, 0.0378633626, 0.0212397706, 0.000864700181, 0.0100328568, -0.0158898029, 0.00236646016, -0.0165835656, -0.0286843646, 0.0111668902, -0.0158898029, -0.0323933177, -0.00641062204, 0.0327135175, 0.00779814459, 0.0078848647, 0.0158631206, 0.0103330417, -0.0124276672, -0.00767807057, 0.0238547176, -0.0117806019, 0.00503644068, -0.0518453196, -0.0302586686, -0.0122742392, -0.0347147509, 0.000915564888, -0.00887214, 0.00354885613, -0.0146490382, -0.0634524822, 0.0123009225, -0.0266697872, 0.0370628685, -0.00596034387, 0.019852249, 0.0457882509, 0.0274836235, -0.029031245, -0.0278571881, 0.0100595402, 0.00777813233, -0.0517652705, 0.0147691127, 0.0365558863, -0.0146490382, 0.0158764627, -0.0152360667, -0.0161833186, -0.0379434116, 0.000737121445, -0.0355152451, -0.0261094421, 0.0242949892, -0.011467075, -0.0265897382, 0.0430665724, -0.0136884451, -0.0296983235, -0.0374631137, 0.0246018451, -0.0208261833, -0.000559928769, 0.0168904215, 0.00743792253, -0.0248286519, 0.043813698, 0.0243216734, 0.0162366852, 0.0474692881, -0.00669746567, 0.00264663296, 0.0523256175, -0.0180778205, -0.025308948, -0.0102863461, 0.0159831941, 0.00292180269, -0.0485632941, 0.0137284705, -0.00522655807, 0.0242816471, -0.106999353, 0.0432266705, -0.017637549, -0.0113736838, 0.0322865881, 0.0178510137, 0.0429598391, 0.0177309401, 0.0285242647, 0.018584799, -0.0158364382, 0.0185581166, 0.0327402, -0.0305521842, -0.0227473676, 0.0375164784, -0.0510448255, -0.0207061078, 0.0261494666, -0.00406917743, -0.00669746567, -0.00326368026, -0.0399980098, -0.0105598485, 0.00431599608, -0.0301252529, 0.0337541588, 0.0049830745, -0.00364558259, -0.0294581745, -0.0308723804, -0.0126611451, 0.0115137706, 0.0110534867, 0.034874849, -0.0202791784, 0.000855527818, -0.00214465661, 0.0139552765, 0.00605707057, 0.0114137083, 0.00469623087, 0.010206297, 0.0328736156, 0.00695095537, 0.0312192608, -0.0124810338, 0.0145022813, 0.0129479887, -0.0102196382, 0.0219335333, -0.0177309401, 0.000152802604, 0.0326067843, -0.00167936948, -0.0301519372, 0.0333539136, -0.00921902154, 0.00365225342, -0.00127245171, 0.0588096194, 0.0113403304, -0.0188783146, -0.00382569362, 0.0113269882, 0.0110067911, 0.0143021578, -0.0328736156, 0.0101796137, 0.0157697294, -0.00553341396, 0.0219201911, -0.021359846, 0.0565682352, 0.0255357549, 0.0171572529, -0.0150492853, 0.00258826348, -0.0376765803, -0.0190784372, -0.0101395892, 0.0223738048, -0.0130613921, -0.00112402684, -0.0154495323, -0.0411987528, 0.00641062204, 0.00223471201, -0.0244550891, 0.0160098784, 0.015422849, -0.0154762156, 0.016930446, -0.00898554362, 0.0169571284, 0.0428264216, 0.0315127745, -0.00155846158, 0.0301252529, 0.00873205438, -0.0196387842, 0.000796741573, 0.033060398, 0.0148491617, -0.00238814019, -0.0372229666, -0.0173306931, -0.0162767097, -0.00549005391, -0.0242816471, -0.0515518077, 0.00893217791, -0.00587362377, 0.0014433905, 0.0106065441, 0.0179177206, 0.00409919582, -0.00356886862, -0.00469623087, 0.0177843068, -0.000427347, 0.00100311893, -0.0146223549, -0.00322532328, 0.0204793029, -0.00409586029, 0.0502710156, -0.0255891215, -0.0315928273, 0.006327237, 0.0270967185, -0.0103530539, 0.0199723225, 0.0315394588, 0.00478295097, -0.0255624373, 0.00689758919, 0.0144222314, -0.0342077725, 0.00193786225, 0.0200256892, -0.0186248235, -0.00940580294, 0.00803162158, 0.0079715848, -0.00594366714, 0.0128746098, -0.0434935, 0.0260961, 0.0293514431, -0.00661408063, -0.00515317963, 0.00454613799, 0.00569684803, -0.0065173544, 0.0179977715, -0.0119940666, -0.0254023392, -0.0509380959, -0.0115938196, 0.014715746, 0.0216667019, -0.0194386598, 0.00372229656, -0.0100795524, 0.0672948509, 0.0288978294, -0.00593699655, 0.00833180733, -0.030605549, 0.0197321735, -0.00572353136, 0.00740456861, 0.0171705931, -0.0191985127, -0.0278305039, 0.0138885686, 0.0296983235, -0.00502643455, 0.0123876426, -0.0132348323, 0.0159298275, -0.0124743627, -0.0222937539, -0.0355152451, -0.0278038215, 0.0260694176, 0.0124743627, -0.0125277294, 0.00348881911, 0.0188649725, -0.0124543505, 0.0279105529, -0.00616380293, 0.0272835, -0.0164901745, 0.000695429044, -0.00275336555, 0.0109534245, -0.00995947793, -0.0161432941, -0.00723112794, -0.0178643558, 0.0063439142, 0.0103730662, 0.030925747, -0.00120240857, 0.0278838705, -0.010920071, -0.0150492853, -0.00328202499, 0.0154895568, -0.000102563281, 0.0237479862, -0.00432266714, -0.00989277, -0.0498707704, 0.0265897382, 0.011707223, -0.00976602547, -0.0025348973, -0.00808498822, -0.0268032029, 0.0133215524, 0.000217425812, 0.0156363137, 0.00950586516, 0.0302586686, -0.0207861587, -0.00310191372, -0.00815169606, -0.0231742989, -0.00427930709, -0.0107399598, -0.00335040037, -0.0247486029, 0.023094248, -0.00173940649, -0.0127278529, 0.00681753969, -0.0296182744, -0.000327702175, -0.0117939431, 0.0131147578, 0.00937912, -0.00809165929, -0.0206527431, 0.0356486626, 0.0481096841, 0.015422849, 0.0152360667, -0.0303387176, -0.0159431696, -0.0159298275, -0.0014850829, -0.00750463037, -0.0254290234, 0.0286843646, 0.000807581586, -0.00638727425, 0.033220496, 0.00875873771, 0.00956590194, 9.04724875e-05, 0.0453613214, -0.0334072784, 0.00500642229, -0.0195053685, 0.0136550916, 0.0148758451, -0.0150759686, 0.00588363, -0.0159431696, 0.00929239951, -0.0045327968, 0.0537665077, -0.0151426764, -0.00681420416, -0.008858799, -0.022307096, 0.0186381657, 0.014715746, -0.00193786225, -0.00615713233, 0.00812501274, -0.0440004803, 0.0096726343, -0.0141420588, -0.0126411328, 0.0261494666, 0.022146998, 0.00593366101, 0.0237479862, -0.039304249, -0.00642062817, 0.00243483554, 0.0174907912, -0.0133282235, -0.00138418737, 0.00622384, -0.000578273437, 0.0146090137, -0.0239347667, -0.00619382132, -0.0230275411, 0.0372496471, 0.00192618847, 0.0110201323, -0.0213331617, -0.0215066019, -0.0136884451, -0.0485632941, -0.0174507666, -0.00215299497, -0.00246652169, -0.0513650253, -0.00258993125, -0.0114870872, -0.00138251961, 0.0159965362, -0.0098861, -0.0274302568, 0.0320197567, 0.00465287082, 0.00580358086, -0.0288177803, -0.00168687408, 0.00449944288, -0.0119807255, 0.0367159881, 0.00561012793, 0.0307656489, -0.0138485441, 0.0295382254, 0.00279505784, 0.0119740544, 0.00589363603, 0.00288011041, 0.0183713343, -0.00201457622, 0.00357220392, -0.0353284627, 0.0178510137, -0.0161566343, -0.00247152499, 0.0251488499, 0.00541334, -0.0401314273, 0.00436269166, 0.00429264829, -0.0045327968, -0.0129813422, 0.0216400176, 0.0173040088, 0.00239147549, 0.000894718687, -0.017957747, -0.0149158696, 0.010759972, 0.00267331605, 0.00499975123, -0.00741791, 0.0114870872, 0.0178776961, -0.0129346475, 0.00184280367, -0.0172373019, -0.0038990723, -0.00861198, -0.0343145058, -0.0103864083, -0.00276337168, 0.0142221078, 0.0227873921, 0.024521796, 0.00476627424, -0.00404916471, -0.00266664522, -0.0263762735, -0.00394910341, 0.000898054102, -0.00461618137, -0.00365558872, 0.00167603407, 0.0140086431, -0.0115271118, 0.0434134528, 0.0170104951, 0.0166902971, 0.0516585372, 0.00975935441, -0.0327668823, -0.00321031408, -0.0193719529, -0.0248686764, 0.0282574333, 0.0343678705, 0.00375231518, 0.0120007377, 0.0025232234, -0.0128212441, 0.0141420588, -0.0280973352, 0.0365025215, 0.0087720789, 0.00436602719, 0.0176642314, 0.0242149401, 0.00396578, 0.0240548421, -0.00977936666, 0.017637549, -0.00712439558, -0.0264296401, -0.00420592818, 0.00823841617, 0.0246151872, 0.0362890549, 0.0202258117, -0.015662998, -0.00518653309, 0.0150092607, 0.00135500263, 0.0259893686, 0.0231609568, -0.00582359312, -0.000584527326, -0.00917232595, -0.00559345121, -0.0370361842, -0.0128012318, 0.013288199, 0.0122675691, -0.00485632941, 0.0296716392, -0.0383703411, 0.00693761371, 0.0150626265, -0.0278305039, -0.00701099215, -0.0111802313, 0.017797647, 0.0353818312, -0.0169838127, 0.0198922735, -0.0130947456, -0.0260427352, 0.0108600333, -0.0136417504, -0.00739789754, 0.0286576804, -0.0357020274, -0.0377032608, 0.0086987, 0.0110268034, -0.0174107421, -0.0193052441, -0.0430932529, -0.00173440343, -0.0543535352, -0.0111668902, -0.0319130234, 0.0261628088, -0.0226272941, 0.0327668823, 0.0410119705, -0.0142888157, -0.00786485244, -0.0188116059, 0.0142221078, 0.00966596324, -0.0323399529, 0.00746460538, -0.0125877662, 0.0323933177, -0.00863866322, 0.0385304391, 0.026656447, -0.00384237058, 0.00674749631, 0.0374364294, -0.000381902297, 0.0305521842, -0.0279105529, 0.0338875763, -0.0156363137, -0.0173707176, 0.0462952293, 0.0299117882, 0.0157697294, -0.0290579274, 0.00185781287, -0.000176150352, 0.0183179677, -0.0282307509, -0.0131614534, -0.037569847, -0.00146840594, -0.0189316813, -0.00943915732, 0.00580024533, 0.0543802194, 0.062331792, -0.0115337828, -0.0105731897, -0.0190384127, -0.00882544555, -0.00680419803, -0.0330070332, 0.00399913406, 0.0212664548, -0.0132681858, -0.000358137622, -0.00175108039, -0.0179310627, -0.0247486029, -0.0128012318, 0.0243216734, -0.00532995537, 0.0250954833, -0.0363957882, 0.0363957882, 0.0347948, -0.00433600834, -0.00356553309, -0.000955589581, -0.00620049238, 0.0177576225, 0.00722445734, -0.0126878284, 0.00874539558, -0.00701766321, 0.00300351973, -0.00209462573, 0.0171439108, -0.0478695333, 0.0147290872, -0.000187719983, 0.00968597643, -0.00147257524, 0.0299651548, 0.0219201911, -0.005063124, 0.0109400833, 0.0186648499, 0.0149825774, 0.0341010392, -0.000343753753, -0.00637393259, -0.00258159288, 0.0178109892, 0.0061537968, 0.030605549, 0.00530994264, 0.00426930096, -0.00835849065, 0.00496973284, -0.00857862644, -0.010046198, 0.00695762597, -0.00393909682, -0.0328736156, -0.0190117303, -0.0399179608, 0.0236145705, 0.000963094237, 0.00942581519, 0.0214932617, -0.0158497784, -0.00112235919, 0.00492303725, -0.00193953, -0.000452362437, -0.0294581745, -0.00593032548, 0.0417590961, -0.00795157254, 0.0103530539, 0.00502309902, 0.00327702193, -0.0585961528, 0.00199623173, 0.00853193086, -0.0172639843, 0.025869295, 0.0297783725, 4.41939337e-05, 0.00557343848, 0.0257358793, 0.025949344, 0.0017127234, -0.0265096892, -0.00446275342, -0.00414589141, -0.0107666431, 0.00308356923, -0.00372229656, 0.00791154802, -0.00146507053, -0.022227047, 0.00607708283, -0.00268165441, -0.00723112794, -0.0125544127, -0.0152227255, 0.00447275955, -0.0168637373, -0.0548605137, -0.00204459485, -0.0252022166, -0.0166502725, 0.0139419353, -0.000953921874, 0.00619048625, -7.71830382e-05, 0.00449277181, -0.00808498822, -0.00927238725, -0.0246018451, 0.00474292645, 0.00775144901, -0.00588029483, 0.0162500255, 0.00351883774, 0.018904997, -0.0153428, -0.0278038215, -0.00534329657, 0.0171305686, 0.0133015402, -0.00909227598, 0.00662408676, -0.00440938724, -0.0430665724, -0.00913230143, 0.0234944951, 0.0123009225, -0.00753131323, 0.000131331035, -0.00518319802, -0.0073178485, 0.0328202508, 0.0163834412, 0.00713773724, 0.00314694154, -0.00992612448, -0.0319397077, 0.00916565489, -0.00203458872, -0.00559011567, 0.0302319862, 0.0109400833, 0.0310858451, -0.00658739777, 0.00769808283, 0.00299851666, 0.0149158696, -0.0109400833, -0.0148625029, -0.0294848587, -0.0232143234, 0.0107999966, -0.00906559359, 0.0100928936, 0.00855861418, -0.0346080177, -0.0107866554, 0.0705501959, -0.00679085637, -0.00825175829, -0.0457882509, 0.00206961017, -0.0173974, -0.00261161127, 0.0155962892, 0.0149558941, -0.038663853, 0.0186248235, -0.00970598869, 0.0216266774, 0.0196254421, -0.00541334, -0.0120474333, 0.00486633554, -0.014635697, 0.0359688587, -0.0435468666, -0.00897220243, 0.00596701493, -0.0231742989, -0.00486967107, 0.0167436637, -0.0079582436, 0.0139019107, -0.00437603332, 0.00268665771, 0.0251488499, 0.00484965881, -0.00112986378, 0.0185714588, 0.00464953529, -0.00340209901, 0.0128746098, 0.0356753431, 0.00647733, 0.00522322254, -0.00836516079, -0.022227047, 0.0203058608, 0.00304187671, -0.0152093843, -0.00620049238, 0.0160899274, -0.0202791784, -0.0035355147, -0.0406650901, -0.00304187671, -0.0133015402, 0.00816503726, -0.0307656489, 0.00432600221, 0.002273069, -0.0146090137, 0.0131814657, -0.0206260588, 0.0193185862, -0.0548605137, -0.0015042614, -0.0011823962, -0.042159345, 0.0226139519, 0.00667411787, -0.0174107421, -0.00507980073, 0.0203058608, -0.0133415647, 0.0227206852, 0.0146090137, 0.0221336558, 0.0294848587, -0.00714440783, -0.0278305039, 0.00194286532, -0.0196788087, 0.0284709, -0.00160432316, -0.0126277907, -0.00891216565, -0.00947251078, -0.0202658363, 0.0177843068, -0.00108900527, 0.0140486676, -0.00192118529, -0.0238280352, -0.00789153576, 0.0164368078, -0.00368560734, 0.00377232744, -0.0286043156, 0.0401047431, 0.0227340255, -0.0193452686, -0.00196621311, -0.00213631801, 0.00398245687, -0.0250020921, -0.0478695333, 0.0304721333, 0.0282040685, -0.000427763909, -0.0297516901, -0.0116738696, 0.0273235254, 0.00614045514, 0.00263495906, 0.00429931935, -0.0123075936, 0.00962593872, 0.00399579853, 0.0145823304, -0.015102651, 0.011700552, 0.00647733, 0.00572353136, 0.0083184652, -0.00428931322, 0.0011290299, -0.00212797965, 0.0377833098, 0.023094248, -0.000203458869, 0.00383903529, -0.0278838705, 0.0119273588, 0.0499775, -0.00578690367, 0.0010723283, 0.0180778205, 0.0141287167, 0.0164634902, 0.00739122694, -0.00695762597, -0.00408251863, -0.00102062966, 0.00292680576, -0.0220269244, 0.00765138725, -0.0129346475, -0.0189316813, -0.0150092607, 0.00404916471, -0.000421510049, 0.00711105391, -0.00493637891, 0.000485716329, 0.00174774497, 0.0166769568, -0.0311925784, 0.0137284705, -0.0148491617, 0.0127945608, -0.00422260538, 0.0120407622, 0.00303187058, 0.0297250059, 0.012260898, 0.0162366852, -0.0041692392, -0.00447609508, 0.0163300745, 0.0202124715, 0.000893051, -0.024841994, 0.0150492853, -0.000644147454, 0.0114403917, 0.00302353222, 0.00889215339, 0.00592699, -0.0104864696, 0.0203192029, 0.0372763313, -0.00557677401, -0.0408785529, 0.0139819598, 0.0105665196, -0.00383903529, 0.0060670767, -0.0058702887, 0.00226306287, -0.0378099941, -0.0272701588, -0.00409252523, 0.00750463037, 0.01423545, 0.00953921862, -0.0145689892, 0.021906849, 0.00608041836, -0.00311859068, 0.00748461764, 0.0019895609, -0.013448297, -0.02720345, 0.00476960931, 0.00113570073, 0.0128812809, 0.0227073431, 0.0112869637, 0.0189183392, -0.00873205438, 0.0120874578, -0.0126678161, -0.0203859117, 0.0167303216, -0.00555342622, 0.0316461921, -0.0177042559, 0.00247986335, -0.00698430929, 0.00323199411, 0.0191318039, -0.0180778205, -0.00350883161, 0.00777813233, -0.00176775735, -0.00145006133, 0.00106398982, 0.00979937892, 0.0193586107, 0.0153561411, 0.0277237725, 0.00322865858, 0.00174941274, 0.00425929436, 0.00571686029, -0.0264029559, -0.0106932642, 0.00816503726, 0.00494305, 0.00505978847, -0.0111402068, 0.00016645687, -0.0135016637, 0.00462952303, -0.000754215347, 0.00721111568, 0.035915494, 0.0126211205, 0.000953921874, -0.00744459312, -0.000141128738, 0.0222804137, -0.0257892441, -0.0235478617, -0.00761803333, 0.00452612573, -0.0053399615, 0.00926571712, -0.0115004284, 0.00261327904, 0.00887214, -0.00264996826, -0.0143822068, 0.025388997, -0.0173040088, 0.0155429225, 0.00997282, -0.0231876392, 0.00729783578, -0.0181178451, 0.00129246409, -0.0299384706, 0.000417132367, 0.000377524586, -0.0258025862, -0.0367960371, 0.0204659607, 0.0205993764, 0.0382369235, -9.31824907e-05, -0.00339042512, 0.0138752274, -0.000350841467, -0.0101729436, 0.000562430359, -0.0167169813, -0.02498875, 0.0174374245, -0.00971265882, -0.00355219166, 0.00554008456, 0.00026266207, -0.0067941919, 0.0218268, 0.0189717058, 0.00266164215, -0.00376899214, -0.00511315465, 0.016850397, -0.0165168568, 0.022694001, 0.00940580294, -0.0114137083, 0.0102863461, 0.000502810231, -0.0121541657, 0.00994613674, -0.034421239, -0.0213465039, -0.0216400176, 0.00656071445, 0.0155962892, 0.0111602191, 0.0224938784, -0.0180644784, 0.00779814459, -0.0335673764, 0.000408585416, -0.0188516304, -0.00454280293, -0.0285776313, -0.0223337803, -0.00248153112, 0.00139002432, -0.0131948078, -0.0048730066, -0.0207594745, -0.011700552, -0.00282841176, 0.00879876222, -0.00831179507, 0.020879548, 0.00145256286, -0.00308690453, -0.0041692392, -0.00995947793, 0.00173106801, -0.0229474921, 0.0123075936, 0.00927905831, 0.00849857647, -0.0112469392, -0.016530199, -0.0154095078, 0.00156012923, -0.00708437106, 0.0357820764, -0.0138885686, -0.0203458872, -0.0197321735, 0.0192251951, -0.0287910961, -0.0140086431, -0.0171439108, 0.00143505202, 0.0074979593, -0.00607041176, 0.000960592646, -0.0139419353, -0.0136350794, 0.0200256892, -0.00152177224, 0.0138218608, -0.0038990723, -0.0113536716, 0.0186381657, -0.0020846196, -0.00242482941, 0.02720345, 0.0037056196, -0.00496306224, -0.0139953019, 0.00106982677, 0.0213465039, 0.00393576175, -0.00596701493, -0.00310024619, 0.042079296, -0.00311192, 0.031165896, 0.038210243, 0.0306322332, -0.0190517548, 0.00367226568, -0.0144088902, -0.0282040685, -0.0159965362, 0.000143630285, 0.00550339557, -0.00661408063, 0.00969264656, -0.0187315568, 0.000476960937, -0.000632056617, 0.0434935, 0.0335406922, -0.0187582392, -0.00639060931, 0.0129279764, 0.00513650244, -0.0129813422, -0.0163167343, -0.00508647179, -0.0321264863, 0.00408251863, 0.0399713293, -0.0195587333, 0.0201057382, -0.000524073315, 0.0508847274, -0.00228974596, 0.0178776961, -0.00416256813, -0.0211730637, -0.0230542235, -0.0192652196, 6.12356962e-05, -0.0210930146, -0.0128946221, -0.00735787302, 0.00740456861, -0.00365225342, 0.0388773195, -0.00734453136, -0.0114870872, -0.0131747955, 0.0125677539, -0.00953254849, 0.00243316777, -0.00180111127, -0.00298350747, 0.030845698, -0.0169838127, 0.00283174706, 0.00757800881, -0.0139019107, -0.0056067924, 0.00387572451, -0.00304687978, 0.0312192608, 0.00247986335, -0.0165435411, -0.0132548446, 0.00102896814, 0.0129012931, -0.0098861, -0.00279839314, -0.00444941176, 0.00197955477, -0.0153561411, -0.00874539558, 0.00669746567, 0.0233610794, -0.00950586516, -0.00369227817, 0.0184113588, -0.00161933247, -0.00607708283, 0.0220135823, 0.029271394, -0.00566682965, -0.00219301973, -0.00700432155, -0.0161699764, 0.00899221469, 0.0014592337, 0.0101329181, -0.012180849, 0.00553341396, 0.0074112392, 0.022307096, -0.0105665196, -0.00641729264, 0.0169571284, 0.0151159931, 0.00214965967, -0.0298851058, -0.00919233821, -0.00699098, 0.0200923961, -0.0121208113, 0.00119073468, -0.00625719409, -0.0223871451, -0.00247152499, 0.0199856646, 0.00292680576, -0.00829178281, -0.0131681245, -0.00357553945, 0.0435468666, 0.0100795524, 0.0140486676, -0.00544335833, 0.0054567, 0.0115671363, 0.00813835487, 0.00699098, -0.00469289534, 0.0300718863, 0.0163300745, -0.0017127234, 0.0109467544, -0.0259893686, -0.00301686139, 0.00681420416, 0.00605373504, 0.00603705784, 0.0056067924, -0.00443940563, 0.0112135848, -0.0213731863, 0.00477294484, -0.0267231539, 0.021906849, 0.0148224784, -0.0166769568, -0.0209595989, 0.0214265529, 0.0245484784, 0.0026149468, 0.00428597769, -0.00651401887, -0.0220135823, 0.0193586107, 0.00371229043, -0.0105731897, 0.0163300745, -0.0333005451, -0.0145689892, -0.00546337059, 0.0048796772, 0.00527658872, -0.0106465686, -0.00879209116, 0.0177576225, 0.00733786076, -0.0101062357, 0.0111001823, -0.00559345121, 0.00306689227, 0.0108733755, 0.000469039398, 0.0200923961, 0.0252022166, -0.00448276568, 0.015502898, -0.0198122244, 0.0171305686, 0.00867868774, 0.0162633676, 0.0156363137, -0.00880543236, -0.00425262377, -0.0167303216, 0.00811167154, -0.00165101863, -0.0185581166, 0.0155696059, -0.0074112392, 0.00827177055, -0.0154628735, -0.00463285856, -0.0147024048, 0.0116872108, -0.00603038725, 0.00897220243, 0.00561346347, -0.00310691679, -0.000174899571, 0.000491136336, 0.00133248884, -0.0186381657, -0.00763137499, 0.000416923896, -0.0160098784, -0.000949752633, -0.00123659626, -0.00287510711, 0.0163701, 0.0197988823, -0.00754465489, 0.0010990114, -0.0252956077, 0.007237799, -0.0117339063, -0.0110534867, 0.00455280906, -0.00512649631, 0.0126744863, 0.0053466321, 0.00347881299, 0.0163434166, -0.00575354975, 0.0188116059, 0.0058769593, 0.000786735385, -0.00933242496, -0.0268032029, 0.00505645294, -0.0213198215, -0.00592365488, 0.00636059092, 0.0242683068, -0.0103797372, -0.0142888157, 0.0450944901, 0.0209862813, 0.011860651, 0.00502309902, -0.00248319865, -0.00974601321, 0.0186248235, -0.00368227181, 0.0163701, 0.00736454362, -0.0286576804, -0.0143555235, 0.00175108039, 0.0135016637, 0.00104731286, 0.0158898029, -0.00905225147, 0.000797158515, -0.00454280293, 0.00402581738, 0.0173573755, -0.00140003045, 0.00509981299, 0.0186114833, 0.0346880667, 0.0233210549, -0.0154762156, -0.00449944288, -0.00481964042, -0.0071510789, 0.000223262745, -0.00341877597, -0.0141153755, 0.00285509485, 0.0133949313, 5.77439605e-05, -0.00835849065, -0.00611377228, -0.0271234009, 0.00166852947, -0.0186248235, -0.00416256813, -0.0150092607, 0.0093257539, 0.000209191567, 0.024761945, 0.000350007613, 0.0028083995, 0.0167436637, 0.0013108087, 0.00937912, 0.00927238725, 0.0107399598, -0.00040733465, -0.0163300745, 0.0131681245, -0.0239747912, -0.0133749191, -0.00827844068, -0.00563014, 0.0057035191, -0.00202291482, 0.0149558941, -0.0282574333, -0.0229608323, 0.0107799843, 0.00468622474, 0.0173040088, 0.0023497832, 0.016530199, 0.0219468735, -0.0299918372, 0.00485966494, 0.016210001, -0.000954755757, 0.0270433519, 0.0104531161, 0.0252956077, -0.00779814459, -0.0101862848, 0.00703100488, 0.00605707057, -0.0130880754, 0.0151293343, -0.0219335333, 0.0142487912, -0.0256024636, -0.00734453136, 0.0165969059, -0.0158764627, -0.00711105391, -0.00752464263, -0.00766472891, 0.0180778205, -0.00170938799, -0.0262028333, 0.0237213019, 0.0155562647, 0.0093257539, 0.0271634255, 0.0169704705, -0.0171572529, -0.0163834412, 0.00518986862, -0.00229141372, 0.00207461324, -0.0130413799, 0.0121074701, -0.0258292686, -0.0040591713, 0.00333038811, 0.00343545293, -0.0124743627, -0.0167303216, -0.0144222314, 0.0102596637, 0.0131547833, 0.0150626265, -0.0110534867, -0.00193285919, 0.00179277279, -0.00111985754, -0.00146840594, -0.025228899, 0.000740456861, 0.00225639204, -0.0354885608, 0.00166436017, -0.0230809078, -0.00176275428, 0.0106865931, 0.0116205029, -0.00425929436, -2.10937433e-05, 0.0131681245, -0.000407126179, 0.012581096, 0.000934743381, -0.00242649717, 0.00642396323, -0.0157697294, 0.00775144901, -0.0223471206, -0.0261628088, 0.010679923, 0.00739789754, 0.00697763823, -0.022467196, 0.0171972774, -0.0177442804, -0.0114470627, 0.0168904215, -0.0208528657, 0.0125277294, 0.00865867548, 0.00198789313, 0.0457348824, 0.00799826812, -0.00882544555, 0.00242482941, -0.0217334088, -0.0011632177, 0.0023647924, -0.00246985722, -0.0132481735, 0.00154928921, -5.03435622e-05, 0.000907226407, 0.0166502725, 0.00676750857, 0.00385571225, -0.00148424914, -0.00617380906, 0.00293681188, 0.0210930146, -0.009412474, 0.00556009728, -0.00321865245, -0.00601371052, -0.000413796981, -0.00907226373, -0.00235145073, 0.00772476615, -0.00455280906, -3.12692937e-05, -0.0227473676, 0.000673332077, 0.0279639196, 0.0280973352, 0.0138485441, 0.0459750332, 0.00769141223, 0.00900555588, 0.0161032695, -0.00562013406, 0.00705768773, 0.00115404534, 0.0263229068, -0.00420592818, -0.0173840597, -0.0217334088, -0.0185180921, -0.0236145705, 0.0115804784, 0.0138885686, -0.0128879519, -0.0174374245, 0.00949252304, 0.00155929534, -0.0118940054, -0.00963928085, 0.00895886, 0.00240314938, -0.00825842842, -0.0122008612, -0.00966596324, 0.0105731897, 0.00293681188, 0.0128279142, -0.00258659595, -0.0109667666, -0.000426930084, 0.00272334693, 0.0161166098, 0.0080583049, -0.0101729436, 0.00722445734, 0.000294556725, -0.014475598, -0.0159965362, -0.0312192608, 0.0121208113, 0.000584110385, -0.0167570058, 0.0103463838, -0.0108400211, -0.007791474, -0.00923236273, 0.000282257475, -0.00720444508, 0.00703767547, 0.00699765095, -0.00970598869, -0.013448297, -0.00499641616, -0.00654070219, -0.0054333522, 0.000558261119, -0.00120741164, 0.0190917794, -7.82774587e-05, 0.0130814044, 0.00822507497, 0.00897220243, 0.0181178451, -0.00786485244, -0.0119206877, -0.00408918969, 0.0112869637, 0.00193285919, -0.0133549068, 0.0202258117, 0.0200790558, -0.00330203725, 0.00981939211, -0.0188116059, -0.00572353136, 0.00654737279, -0.0108867167, 0.0205460098, -0.0153027745, -0.0155295813, 0.00375231518, 0.0196521245, -0.014475598, -0.0180644784, -0.00259326654, -0.0111068524, -0.0189583637, -0.0212797951, -0.0222670715, -0.0190250706, -0.0157163627, 0.0107799843, 0.00735787302, 0.0127478652, 0.00569017744, 0.00409919582, 0.0295382254, 0.00990611222, 0.0265497137, -0.00830512401, -0.0114270505, 0.0128345853, 0.0134216147, -0.0119073465, 0.0108867167, 0.00318363099, -0.000532411796, 0.00399579853, -0.0153294578, 0.00531994877, -0.00125327322, -0.000707936764, 0.01526275, 0.00897220243, 0.00447275955, 0.00634724926, 0.0152360667, -0.0214265529, -0.00150759681, 0.0179177206, -0.00340043125, 0.0146490382, -0.0140620098, -0.0158364382, 0.00690426, 0.0134616392, -0.0158097539, -0.00725114066, 0.01304805, -0.0212264303, -0.0185180921, -0.021906849, 0.0179177206, 0.000952254166, -0.00580358086, 0.0250688, 0.00139002432, 0.0126878284, 0.0162633676, 0.016930446, 0.0100862226, 0.0138485441, -0.00348214852, 0.0181178451, -0.00281673786, 0.0176508911, -0.0224271696, -0.00877875, -0.0129413176, 0.0160499029, -0.00181945588, 0.028711047, -0.00703100488, 0.0164234657, -0.00512649631, -0.0072444696, 0.00418258039, 0.00850524753, 0.0262428578, -0.0216133352, 3.46307424e-05, -0.0117405774, -0.00638727425, 0.00976602547, 0.0194786843, 0.00177276041, 0.00925904606, -0.00965929311, 0.0114270505, -0.00465954142, -0.00038669692, -0.00551673723, -0.0130146965, -0.00865200441, -0.00843854, -0.0147824539, -0.00349215465, -0.00368560734, 0.0110668279, -0.016210001, 0.00570018357, 0.0211997461, -0.0027016669, 0.00631389534, 0.0258292686, 0.010599873, -0.0162366852, -0.00489301886, 0.00213131495, -0.0141020343, 0.00414255587, -0.0119607132, -0.000165310325, 0.00521321641, 0.0147290872, -0.00169104338, -0.0145423058, 0.00530660758, -0.0067875213, 0.000309149065, -0.0140620098, -0.0163967833, 0.000777146139, 0.00972600095, -0.000888881739, -0.00140003045, 0.0161432941, 0.0196521245, -0.0085119186, -0.00550339557, -0.00359888701, 0.0343411863, -0.00612377841, -0.0276970882, 0.00346213602, 0.00747794705, -0.0108667044, -0.00857195538, 0.00886547, -0.000727532199, 0.00203625625, 0.00270833774, -0.0174374245, 0.0062338463, -0.00649067108, 0.0141687421, -0.000161036864, -0.00298517523, -0.000781315379, 0.0224405117, 0.015662998, -0.00303854141, 0.0135416882, 0.0228674412, -0.0180111118, -0.0147691127, -0.0191718284, 0.0195320509, 0.0104064206, -0.0139686186, -0.0145689892, 0.00623051077, -0.00165602169, -0.00668745954, -0.0175575, 0.0081316838, 0.0215733107, -0.00405583577, 0.0155962892, -0.0115137706, 0.0315928273, 0.011073499, 0.0192251951, 0.00123659626, -0.00628054142, 0.0113536716, 0.0139552765, -0.0124343382, 0.00799826812, 0.00803829264, 0.000463619363, 0.0265363716, 0.0074112392, 0.0083184652, -0.0110067911, 0.0314327255, -0.011700552, -0.0079715848, -0.012254227, -0.012180849, -0.00144922745, 0.00126995018, -0.00661408063, 0.00287343957, -0.0128079019, -0.0240415, -0.0132615156, -0.0232810304, 0.0122075314, -0.0099528078, 0.00476627424, -0.0128079019, 0.0211597215, -0.00446942402, -0.0211730637, 0.00992612448, -0.00615046127, 0.00190450833, 0.00649400661, 0.00969931763, 0.000679169, 0.0242282823, -0.00819172058, -0.019692149, 0.00849857647, 0.00044861011, -0.00639394484, -0.00500308676, 0.0106932642, 0.00040108079, 0.0154495323, -0.0248286519, -0.00845188089, -0.0138885686, -0.00600703945, 0.0220802892, -0.00786485244, -0.00620049238, 0.00460617524, -0.00138668891, 0.00714440783, 0.0101729436, 0.00536330882, -0.00629721861, 0.021760093, -0.0151293343, 0.000881377142, 0.0161032695, 0.00374897965, -0.00617047353, 0.0074112392, -0.00554675562, 0.0152360667, 0.0140486676, -0.0317262411, 0.018184552, -0.00475293258, -0.0136617627, -0.0222537294, 0.00969264656, -0.0150359431, 0.0129146343, 0.0143421823, -0.00913230143, -0.00195620698, 0.0134816514, 0.0125410706, 0.00969931763, 0.00192618847, 0.000983940437, -0.00151009834, 0.0170772038, -0.00860531, 0.0183179677, 0.00957257301, -0.0102730049, -0.0232276637, 0.0040658419, 0.00166436017, 0.000580358086, -0.00477961544, 0.00261994987, 0.0119807255, -0.0146490382, 0.0332471803, 0.0352484137, 0.00541000441, 0.0334339626, 0.00436602719, -0.00945917, -0.00971933, -0.00140670128, -0.0214265529, -0.00747127645, 0.00444607669, 0.0316728763, -0.0147024048, -0.0244817715, 0.0112802926, 0.000491553277, 0.00531327818, 0.00359555171, 0.0146623794, 0.00983273331, 0.0197988823, -0.0211063549, -1.20321629e-05, 0.0133015402, 0.0163567588, -0.0180778205, 0.0163434166, -0.00634724926, -0.0034287821, 0.0444807783, -0.00877875, 0.000415047747, -0.00252989423, 0.00264163, -0.00588696543, 0.00505645294, 0.00608375343, -0.00310024619, -0.012254227, -0.00762470439, 0.00392909069, 0.00210129656, -0.00164518168, 0.00415589754, 0.022227047, -0.00901222695, 0.011867322, 0.0106999353, -0.0243483558, -0.020399252, 0.00546003552, 0.000267456693, -0.00890549459, 0.00541667547, 0.00473625539, -0.0159431696, 0.0169037618, 0.0161566343, 0.0226673186, 0.000298309053, -0.0127678774, 0.0229741745, 0.00847856421, -0.0184113588, 0.00289011654, -0.0212264303, 0.0158364382, -0.0141554, -0.0065173544, -0.00534329657, -0.00331871421, 0.00117572537, -0.00463285856, -0.0105531774, 0.00648400048, 0.0128545975, -0.0177576225, -0.000490302511, 0.00173273578, -0.000140503354, -0.0137418117, 0.0182245784, 0.0171038862, -0.0147691127, 0.00980605, -0.00903891, -0.00809832942, -0.0226139519, 0.0170238372, 0.00274169166, 0.0157563873, -0.00467621861, -0.0250688, -0.0170238372, 0.00200623786, 0.00242816471, -0.00631389534, -0.0182379186, -0.00601704558, 0.00385904755, 0.00781148626, 0.00850524753, 0.0212130882, 0.0215466265, 0.00759802107, -0.0030885723, 0.00849857647, 0.018037796, 0.011233598, 0.00256158039, 0.00654403772, 0.011867322, -0.0218534824, -0.00123492861, 0.00743125146, 0.000731284497, -0.0290045626, 0.0122942524, -0.0157297049, -0.00478295097, -0.00609042449, 0.015743047, -0.00802495144, 0.00586695317, -0.00347214215, 0.00585027598, -0.0166636147, 0.00480963429, -0.021906849, 0.00168687408, 0.0105531774, 0.00338542205, -0.0166769568, -0.0227473676, -0.00492303725, -0.0148758451, -0.00594366714, -0.00411587255, -0.0169437882, -0.00183112978, 0.00570685416, -0.00263162376, 0.00775144901, 0.00847189408, 0.0282307509, -0.000902223343, 0.00164768321, 0.00616380293, 0.0141420588, 0.00490969606, -0.00432933774, -0.00917899702, -0.0158497784, -0.0052432348, -0.0187582392, 0.00865200441, -0.0158364382, -0.0110534867, 0.00854527205, -0.0201057382, 0.031165896, 0.00398912793, -0.00304187671, 0.0135083348, -0.0125944372, 0.0255757794, 0.00249487255, -0.0196387842, -0.0241348911, 0.0326067843, 0.000579941145, 0.0278571881, -0.00035146685, -0.00537665049, 0.0167036392, 0.0131214289, -0.00266998075, 0.0100728814, -0.0136083961, 0.00332371728, 0.00874539558, -0.0184914097, 0.0204926431, 0.00440605171, -0.0063205664, -0.0066040745, -0.000944749569, -0.000991445, -0.00492637279, 0.00801160932, -0.0117672598, 0.00481630489, -0.00740456861, -0.00708437106, -0.019065097, 0.0195587333, -0.00444607669, -0.00105731899, 0.00610376569, 0.00533329044, 0.00550339557, 0.00219468749, 0.00340876984, 0.0099528078, 0.00986608677, 0.00205126568, -0.0160098784, 0.00211797352, -0.00959258527, 0.0163300745, -0.012974672, -0.0189316813, -0.0171038862, 0.0153161166, 0.0203592274, 0.00301686139, 0.0139019107, -0.0171705931, -0.00143671979, -0.00278338394, -0.00653736666, -0.00548004778, 0.0284175333, 0.0163567588, -0.000963094237, -0.0154628735, 0.00131414412, 0.00082300778, -0.00719777402, -0.00286009791, 0.000662075181, -2.77254385e-05, 0.0156229725, 0.00688424753, 0.0157163627, 0.0162233431, 0.0126077784, 0.0112736225, -0.00502977, -0.0194119774, -0.00101979589, -0.0251355078, 0.0137684951, 0.0195587333, -0.0112536103, 0.0249487255, -0.00999950245, 0.0240148176, -0.0250287764, -0.0111068524, 0.00282507646, -0.00556009728, 0.0137017872, 0.00857195538, -0.00530660758, -0.000441939337, -0.00530994264, 0.00740456861, -0.0158631206, 0.0179710872, 0.0191985127, -0.00393909682, 0.00695095537, 0.0161966588, 0.0157697294, -0.0211730637, -0.0144889392, -0.0106932642, 0.00830512401, -0.00913897157, 0.012734524, -0.00575021422, -0.0122142024, 0.00220302586, -0.0168237127, 0.00323866494, 0.0171172284, -0.00174774497, 0.0066907946, 0.00599703332, 0.00553674949, 0.0135950549, 0.00987942889, -0.000946417276, 0.0159164872, -0.0153961657, 0.00807831716, -0.00925904606, -0.0143021578, -0.0146490382, -0.0184647255, -0.0110601569, -0.0196387842, 0.00935243722, 0.0147290872, 0.000223679672, 0.00311859068, -0.00719110342, -0.000629972, 0.0104597872, 0.00425262377, 0.0120474333, 0.00695762597, -0.00672414852, -0.00364891789, -0.0347948, 0.00871204212, 0.00159765233, 0.0183313098, -0.000277254381, 0.0150359431, -0.00661408063, 0.0162633676, -0.00321198162, 0.00145839981, -0.00368560734, 0.00403915858, -0.0106599107, 0.000691259804, -0.00242482941, -0.0269766431, 0.0196121, -0.0219335333, 0.00465620589, -0.0102996882, -0.0101729436, 0.00196287781, 0.0149692353, -0.00993279461, -0.0146623794, -0.0253623147, 0.00903891, 0.000729616848, -0.0179710872, -0.0172773264, 0.0150359431, -0.0123276059, 0.0158764627, 0.0165568814, 0.00248319865, 0.0175308157, -0.0333539136, 0.000717942952, 0.0115604661, 0.00487634214, 0.0120674456, -0.0135750426, -0.00648400048, 0.012581096, 0.00412921421, 0.00654403772, 0.00835849065, -0.0194386598, 0.0296983235, 0.00821173284, 0.00665410561, 0.023654595, -0.00309857843, 0.0228407588, -0.0103397127, -0.00380901666, -0.0213731863, -0.0276170392, -0.00873872451, -0.0154495323, -0.00891216565, -0.0151693588, -0.0227740519, -0.00687090587, 0.0104531161, -0.00399246346, -0.00311692315, 0.00775144901, -0.0129213054, 0.0215332862, 0.00826509949, 0.0128079019, -0.00201791176, -0.0207461324, 0.00285843015, -0.00552340783, 0.00899221469, -0.00976602547, -0.00699765095, 0.00915231369, -0.0278571881, -0.00263162376, -0.0158764627, -0.00815169606, -0.00688424753, 0.0237880107, -0.00283841789, -0.00356553309, 0.0151293343, 0.00591364875, 0.00293514435, 0.00468622474, 0.00566682965, 0.00714440783, -0.00759802107, -0.0171439108, 0.00874539558, -0.011233598, 0.00607041176, 0.00283841789, -0.0248953607, 0.026336249, 0.0191584863, 0.00410920195, 0.00177109276, 0.0169838127, 0.0174374245, 0.0118272975, -0.0046995664, -0.00571686029, 0.0284442157, -0.00129746716, -0.00666077621, 0.0151827009, -0.0239481088, -0.0197588578, -0.00707102939, 0.020252496, -0.00835849065, 0.00410920195, 0.0141420588, 0.00113153143, -0.0089455191, 0.00289678737, -0.00551673723, -0.012574425, -0.0123542892, 0.000538665685, 0.00325700943, 0.00866534654, 0.0203192029, 0.00693094311, -0.0128345853, -0.00639728038, -0.00763804605, -0.00861865096, -0.0102730049, 0.00985941663, -0.002629956, 0.0119473711, 0.0195720755, -0.00129246409, -0.00448943675, 0.00648733601, -0.00429931935, 0.00675083185, -0.0053466321, -0.00202625012, 0.00365225342, 0.00562346959, -0.00934576616, -0.00264996826, -0.0139552765, -0.0129880132, -0.00639394484, -0.0216266774, -0.0127278529, -0.0140620098, 0.0115604661, 0.0278038215, 0.00422594044, -0.00714440783, 0.00511315465, 0.00940580294, -0.00104064203, 0.00789153576, 0.01423545, -0.0386905372, -0.00220636139, 0.00149925833, 0.0054567, 0.00321364938, -0.0161299519, 0.0325267352, -0.0249754097, 0.00761136273, 0.00748461764, 0.00902556814, 0.00128245796, 0.00559678627, -0.0103263715, -0.0260694176, 0.00841852743, 0.0276970882, -0.00743792253, -0.00330870808, -0.0111201946, -0.0142487912, -0.00513983797, 0.0104664573, -0.000567850366, -0.0180111118, -0.00409586029, -0.00193953, 0.00871204212, 0.0107399598, -0.00911895931, -0.0213865284, 0.0152360667, -0.0092390338, -0.014635697, 0.0136417504, -0.00752464263, 0.00759802107, -0.00695762597, -0.00637393259, -0.0312726274, -0.0247352608, -0.0197722, 0.00440938724, -0.00837183185, -0.0193719529, -0.0155696059, 0.0232009813, 0.00463285856, 0.00902556814, 0.0319397077, -0.0234678127, 0.00142754742, -0.0140886921, -0.0119273588, -0.0308990646, -0.000340835279, 0.0120007377, 0.0168770794, -0.0238814019, -0.00819839165, -0.0204125941, -0.0148091372, -0.0189850461, 0.00775812, 0.00349215465, 0.000585361151, -0.0284709, 0.00105982053, 0.00138335349, -0.0119873956, 0.013521676, -0.0213198215, -0.0130280377, 0.00416256813, 0.0319397077, -0.00781148626, 0.00432266714, -0.0109000588, -0.0223871451, -0.00139502739, -0.00347214215, -0.018037796, -0.0269633029, -0.00214799191, -0.00818505, -0.00246985722, -0.00481296936, 0.00593366101, -0.014475598, -0.00798492692, -0.0197722, -0.0272434745, 0.0259093195, 0.00125077169, 0.0136884451, -0.0074979593, -0.01850475, -0.017957747, 0.0226006117, 0.00823841617, -0.00374897965, -0.0218268, -0.0032703511, -0.00925904606, -0.00923236273, 0.00303520588, -0.00980605, -0.00671747793, 0.00649734214, 0.00985941663, 0.00267831911, 0.00925237499, 0.000928072608, -2.24617743e-05, -0.0022580598, 0.000768807658, 0.015502898, -0.000863032474, -0.0256958529, -0.00123993168, 0.0187849235, -0.016530199, 0.00610043062, -0.00684422255, 0.00975268427, -0.0017127234, 0.0113003058, 0.000186990364, -0.000232226608, -0.00565015292, 0.0240548421, -0.00110651599, -0.0187715814, -0.00878542, -0.00757800881, -0.0254823882, -0.0257225372, -0.00366225955, -0.0132148201, -0.00333372341, -0.0300452039, 0.0166769568, -0.00548671838, -0.00431933161, -0.00469289534, 0.00479962816, 0.00692427205, 0.0238947421, -0.0127678774, 0.0171439108, -0.000941414153, -0.0180511363, 0.0379700921, -0.0162767097, 0.00322532328, -0.0084251985, 0.0105264951, -0.018824948, 0.00775144901, 0.0141554, 0.0247486029, -0.00663409289, -0.00911228918, 0.00887214, -0.00295015355, -0.0118339676, -0.0187182147, 0.0194920264, -0.016610248, -0.0296983235, -0.00236979546, -0.0391441509, -0.00201957929, 0.00353217917, 0.00979270879, 0.0132348323, 0.00455614459, -0.00657072058, -0.0352484137, -0.0119540421, 0.0267765205, -0.021359846, -0.0145823304, -0.00527992425, -0.0234544706, 0.0094858529, 0.0258826353, 0.00667745341, 0.0063439142, 0.00539332768, -0.0193852931, 0.0152894333, -0.00251655257, -0.0165835656, 0.00167520018, 0.007237799, 0.00329703419, -0.0129613299, -0.00631056027, 0.0198255647, 0.00901889801, 0.00152177224, -0.021906849, 0.00391908456, 0.000196892317, -0.00773143675, 0.0137151284, 0.0112069147, -0.00137084583, -0.0169571284, -0.0183313098, 0.025388997, -0.0157563873, -0.0139686186, -0.00313026458, -0.0104197618, -0.0184113588, 0.00112486072, -0.00798492692, 0.0238280352, 0.00786485244, -0.024361698, -0.0249353852, 0.0240148176, -0.00762470439, -0.00586028211, -0.0188649725, 0.0155162401, -0.000987275853, 0.0119006755, -0.00919233821, 0.017637549, -0.0094991941, -0.0293514431, 0.00496306224, -0.00578690367, 0.0186515078, -0.000286635186, -0.000212110041, -0.0124276672, 0.0105932029, -0.00655070832, -0.000753381464, 0.00577022694, -0.00404916471, -0.00399913406, -0.0127078407, 0.0199589804, 0.00456281519, -0.0131814657, 0.00201957929, 0.00376899214, 0.0272835, 0.00645398209, -0.020252496, -0.0067941919, 0.016930446, 0.0270166695, 0.00595700881, -0.010599873, 0.0224138293, 0.00982606225, -0.0114337206, 0.000216383502, 0.00310024619, 0.00187782524, 0.00902556814, -0.00445274729, -0.0112002436, -0.012814573, 0.00686423527, -0.00256324816, 0.00210629962, -0.0120541034, -0.00755132549, -0.0167703461, 0.0019928962, -0.00355552696, 0.00700432155, 0.0159298275, -0.00532995537, -0.00580691593, -0.00875206664, 0.00330036948, -0.0165835656, 0.0121408235, 0.0233077146, -0.0038990723, 0.0177442804, 0.00744459312, -0.00765805831, 0.0104064206, 0.000912229472, 0.0197455157, -0.00843854, -0.0150893098, 0.00113570073, -0.0157297049, -0.0199856646, 0.033700794, 0.024121549, 0.0074979593, 0.00499975123, 0.000408376975, -0.0118206264, 0.008145025, -0.00588696543, -0.0222937539, -0.0203725696, -0.00485632941, 0.0169037618, 0.00812501274, -0.0119140176, 0.00184613909, -0.00694428431, 0.0076714, 0.0158097539, 0.0320998058, -0.0196654666, 0.0102863461, 0.00559011567, 0.00596034387, 0.00996614899, 0.0151426764, -0.00264663296, 0.00229975232, -0.00686423527, -0.00197121617, 0.00893884804, -0.0152760921, -0.000584527326, 0.016210001, 0.0163567588, 0.0317529254, -0.00238647242, 0.00445941789, 0.00600036886, -0.014715746, -0.00749128871, -0.000256616651, 0.00645398209, 0.011473746, -0.0159298275, -0.00365892425, 0.00899888575, 0.0142087666, -0.0260160509, 0.0324733704, -0.0222137049, -0.0179310627, 0.0265497137, 0.00171772647, -0.0179444049, 0.0014433905, 0.00825842842, -0.0159431696]
|
19 Jun, 2020
|
Fabric.js | Circle cornerSize Property
19 Jun, 2020
In this article, we are going to see how to scale the controlling corners of a canvas circle using FabricJS. The canvas means the circle is movable and can be stretched according to requirement. Further, the circle can be customized when it comes to initial stroke color, fill color, stroke width, or radius.
Approach: To make it possible, we are going to use a JavaScript library called FabricJS. After importing the library using CDN, we will create a canvas block in the body tag that will contain our circle. After that, we will initialize instances of Canvas and Circle provided by FabricJS and scale controlling corners of the circle using cornerSize property and render the Circle on the Canvas as given in the example below.
Syntax:
fabric.Circle({
radius: number,
cornerSize: number
});
Parameters: This function accepts two parameters as mentioned above and described below:
radius: It specifies the radius of circle.
cornerSize: It specifies the size of the controlling corners.
Example: This example uses FabricJS to scale controlling corners of a canvas circle. Note that you have to click on the object to see the corners.
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Circle cornerSize Property
</title>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a Circle instance
var circle = new fabric.Circle({
radius: 50,
cornerSize: 35
});
// Render the circle in canvas
canvas.add(circle);
</script>
</body>
</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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js Textbox cornerStyle Property/Fabric.js Textbox cornerSize Property/Fabric.js | Circle cornerSize Property
|
https://www.geeksforgeeks.org/fabric-js-circle-cornersize-property?ref=asr8
|
CSS
|
Fabric.js | Circle cornerSize Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, Fabric.js Textbox cornerSize Property, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js Textbox cornerStyle Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Fabric.js | Circle cornerSize Property, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0132899983, 0.00620769337, -0.00839080662, 0.0240244903, 0.01512805, -0.00275878492, 0.0167816132, 0.0260743629, -0.0290808398, -0.0316226818, 0.00374443154, 0.0169456024, -0.0152920391, -0.0393575281, 0.00325929536, 0.0349298045, -0.032524623, -0.00590704568, -0.0209086873, -0.0197197609, -0.00442430563, -0.0270719659, -0.0174102392, 0.0194191132, 0.0134198237, 0.0324426293, 0.0124222199, 0.0131806722, -0.0410520881, 0.0180798639, 0.0223845933, 0.0128868567, -0.0275912676, -0.0250904243, 0.00947040506, -0.0347111523, 0.00244105491, 0.0445778668, -0.0198700856, -0.017984204, 0.0198154226, 0.0045063, 0.00497777062, 0.024967432, -0.00605053641, 0.00824731495, -0.0467643961, -0.0152783738, -0.0223845933, -0.0442772172, -0.00659716874, -0.0376083031, 0.0197197609, 0.00123333919, 0.0116022713, 0.0291081723, -0.0142671037, 0.0335905552, 0.00170822605, -0.0118004251, 0.036651697, -0.0958793089, -0.0167542808, 0.000942940766, -0.0269353073, 0.00596854184, -0.00983254891, 0.0223845933, 0.00487186061, -0.00852063112, -0.0351757891, 0.00269045588, 0.0146907438, -0.00425689947, -0.00231122971, -0.0172189176, 0.0368430205, 0.00461221, -0.0474203527, 0.0395488478, -0.00419540331, -0.00447555212, -0.0144720906, 0.0197880901, -0.01818919, -0.0191731285, 0.0414347313, -0.0431839526, 0.0166176222, 0.027768923, 0.00645709457, 0.030310763, 0.00571230799, -0.0377176292, -0.00325246225, 0.000334385259, 0.00853429735, -0.00894427113, -0.0237101763, 0.013911793, 0.00822681654, 0.058598984, 0.0324699618, -0.0274819396, -0.00229073106, -0.034793146, 0.0190638024, -0.0227809027, 0.0294908136, -0.00587971415, 0.0483496301, -0.0341371894, 0.0177655499, 0.0586536489, -0.0641746372, 0.0192961209, -0.00760502229, -0.0362417251, 0.0300101154, 0.00757085765, 0.00418515364, -0.00326612825, 0.00600612257, 0.049087584, -0.0363510512, 0.0435665958, -0.0147864046, -0.00167064508, 0.0320326537, 0.00599929, -0.0114997774, -0.0178885423, 0.0176562238, -0.019569438, 0.0480216518, -0.025760049, 0.0257463828, -0.0229175612, -0.00233856146, 0.00101724861, -0.0036624365, -0.0237785056, 0.0112059629, 0.0445232019, -0.00900576729, -0.00394941866, -0.000443284662, 0.00603687065, -0.0140347853, 0.0110966358, -0.0568497628, -0.0118755875, 0.013378826, -0.0244344659, 0.049934864, -0.0173145793, -0.0266346596, 0.0196104348, 0.0337818787, -0.00441063941, 0.0347658172, 0.00394941866, 0.00343011785, 0.0148683991, -0.0323606357, -0.017560564, -0.0146087492, 0.00147846958, -0.0385102481, 0.0223299302, -0.0165082961, -0.000971126487, -0.010686662, -0.00755719189, -0.0254730657, -0.0283155553, -0.0134266568, -0.0532419905, 0.00841130503, -0.0120874075, -0.0590362921, 0.0220702793, 0.0179295409, 0.0686023608, -0.00107362, -0.020676367, 0.0375536419, -0.00135206094, -0.0124632167, -0.0345744938, 0.00499826949, 0.0198154226, 0.0363237187, -0.000205734468, -0.00312263728, -0.0236418489, 0.0174649023, 0.0157703422, -0.0178612117, -0.0092175873, 0.00771434885, -0.0288895182, -0.0122582298, -0.0296548046, 0.0158386715, -0.00223094318, -0.00992137659, -0.0573417321, 0.035968408, -0.0167542808, 0.0185991656, -0.00161683594, 0.0107071605, 0.000690550369, -0.000925858505, -0.00641268073, -0.0274409428, 0.0282062273, -0.017984204, -0.0164946299, 0.0102151921, 0.0240928195, -0.00185171701, -0.0439765714, -0.0382096, -0.0198564194, 0.0238878336, 0.024174815, -9.47531589e-05, -0.0484316237, 0.011527109, -0.0207310319, -0.0220702793, 0.0228082333, 0.0426919833, 0.0139186261, 0.00584896607, -0.00184830057, 0.000447982282, 0.0205807071, -0.00351894554, 0.00496752141, -0.0296548046, -0.00958656427, 0.0367883556, -0.000423426536, -0.00515884254, 0.0202937257, -0.000927566725, -0.0382096, -0.051356107, -0.0290261768, 0.000914755045, -0.0021523647, -0.0377996266, -0.0115407752, -0.0168636069, -0.030310763, 0.0429653, 0.0552918613, 0.0549365506, 0.0182301886, -0.00559956487, 0.0143217668, -0.0173009131, -0.0201570671, -0.0064946753, -0.0452611558, -0.00391525403, -0.0394668542, 0.00433547748, -0.028670866, 0.0369796753, -0.0432659499, -0.0326612815, 0.04580779, -0.0220429488, 0.00462929253, 0.0274136104, -0.00780317653, 0.0103791812, 0.0304474216, 0.0264980029, 0.031267371, -0.047229033, -0.0119644152, -0.0250357613, 0.0268533137, -0.0393848605, -0.0123880552, -0.0248581059, -0.0354217738, 0.0101331966, 0.00417148788, 0.0155243585, -0.00624869065, -0.000682009268, -0.0333172418, -0.0148957307, -0.0212776642, -0.0268943105, -0.0290261768, -0.00811065733, -0.0192824546, 0.0568497628, 0.0437032543, 0.0445778668, -0.013330996, -0.00408607675, 0.0229858886, 0.0148137361, -0.0381822698, -0.0222342703, -0.037498977, 0.00245813723, -0.0108301528, 0.0648305938, 0.000807136821, -0.0419540294, 0.0145540861, -0.0221522748, -0.0305294152, 0.0143764298, 0.0255277306, 0.0450698361, -0.0200750716, -0.0220976118, -0.026443338, 0.022056615, 0.00542532606, -0.0155106923, -0.000295096048, -0.0209223516, 0.00120344525, 0.0161939822, 0.00437305868, -0.00828148, -0.0112606259, -0.0465457439, 0.0445778668, 0.0287528597, 0.0108574843, -0.0293814875, -0.00332079129, 0.035804417, -0.0474750176, -0.010099032, -0.0133583276, 0.0259377044, 0.0298187938, 0.000913900905, 0.0146634122, -0.0074205338, 0.0107071605, -0.0112606259, -0.0141441114, 0.00180217845, -0.0229312256, -0.0438125804, -0.0155106923, 0.0220429488, 0.0114314482, -0.00790567, 0.0102971867, -0.00157156796, -0.0173692424, -0.0120395767, 0.00770068308, -0.0219336227, 0.00688415067, -0.0429379679, -0.0200887378, -0.0214279871, -0.0148820654, -0.012955186, -0.00594462641, 0.000939524325, -0.0200887378, -0.0575057194, 0.00352919498, -0.0311853737, 0.0362690538, -0.00251963339, 0.00396308443, 0.0408607684, 0.0439765714, -0.0397128388, -0.0170959253, 0.0111649651, 0.0177382194, -0.0566311106, 0.0172325838, 0.0434572697, -0.0108233197, 0.0107139936, -0.01597533, -0.0226989072, -0.0483496301, 0.00272974512, -0.0330712572, -0.00691489875, 0.0419540294, -0.0126135405, -0.0262246858, 0.0260060336, -0.00617352873, -0.0275776014, -0.0326066166, 0.0100580351, -0.0195011087, 0.0114656128, 0.0104680089, -0.0012743366, -0.0299281199, 0.0397128388, 0.0138434637, 0.0258557089, 0.042364005, -0.013488153, 5.78661566e-05, 0.0670171231, -0.0132421684, -0.0297641307, -0.0193371195, 0.00733170612, -0.0244754627, -0.0417353772, 0.00413390715, 0.00320634036, 0.0137273045, -0.0869692042, 0.0293268245, -0.0166996177, -0.0181208625, 0.00805599429, 0.00821998343, 0.0544172488, 0.0320873186, 0.0217149686, 0.0298734568, 0.00731120724, 0.0336178876, 0.00797399879, -0.0338912047, -0.034219183, 0.014226106, -0.0465457439, -0.0284248814, 0.0277552567, 0.00234368606, -0.0116159366, -0.0134061575, -0.0435392633, -0.004707871, -0.00886227656, -0.0292174984, 0.0269353073, 0.00366585306, -0.00555856759, -0.0137819676, -0.0103586828, -0.0144994222, -0.0121694021, 0.00811749, 0.0360230692, -0.00564397871, -0.0346018262, -0.0155926868, 0.0121284043, 0.0202937257, 0.0365970358, 0.00283394707, 0.0184351746, 0.0248444397, -0.00605053641, 0.0185308363, -0.0121830683, -0.00201570662, -0.00149128132, -0.038400922, 0.0335085616, -0.00316363457, -0.0100580351, 0.0422820114, -0.00401774747, -0.0295454767, 0.0209770147, -0.0180252, -0.0065527549, -0.00233514491, 0.0444138758, 0.00718821492, -0.00697297882, -0.0007610147, 0.00438330788, 0.0229585581, 0.0315406844, -0.0264296737, 0.0228628963, -0.00422273483, -0.005790886, 0.0160436593, -0.023532521, 0.0575603843, 0.0396581739, 0.00661425106, -0.00233514491, 0.00949090347, -0.0452884883, -0.000635033, -0.0215646457, 0.0482949652, -0.0202663932, -0.00118038419, -0.00884861127, -0.0385922417, 0.0267166551, 2.04186399e-05, -0.0356950909, 0.00944307353, 0.0207583625, -0.026539, 0.0152647076, -0.0126818698, 0.0228355657, 0.0451791622, 0.0210726764, -0.00556881679, 0.0317593366, 0.0102151921, -0.00328150229, -0.00841130503, 0.0289715137, 0.00175947277, -0.00113853265, -0.0354217738, -0.00990087818, -0.0341645218, -0.00157669256, -0.0138434637, -0.0516020916, -0.00816532, -0.0240791533, 0.00705155684, 0.0160709899, 0.0193917826, -0.00129312708, 0.0186948255, -0.00324733765, 0.0146770785, -0.0189271439, 0.00528525142, -0.0114382813, 0.00391183747, 0.0109736444, -0.00641951337, 0.0555925071, -0.0353671126, -0.0246394519, -0.00335837225, 0.0258693751, -0.00264945859, 0.0361050665, 0.0356950909, 0.00266824896, -0.0299827829, 0.000628627196, 0.00950457, -0.0236145165, 0.00275024399, 0.0100717, -0.0216739718, -0.0226579104, -0.00183463481, 0.0078851711, -0.00672016107, 0.0170412622, -0.0290261768, 0.0314313583, 0.0322239771, -0.00293131592, -0.00691148266, -0.00375126442, 0.0131328413, 0.011848256, 0.0152373761, 0.00193029537, -0.0216466393, -0.0523947105, -0.0231498796, 0.0215646457, 0.0109873097, -0.0201844, 0.00415782211, -0.00616327953, 0.0535973, 0.0187358223, -0.011424616, 0.0153330369, -0.0425553285, 0.0164399669, -0.00318413321, -0.00612911489, 0.0125110475, -0.0196924303, -0.0278372522, 0.0178612117, 0.0228628963, -0.00140757824, 0.0140211191, -0.0106524974, 0.0176972225, -0.0116022713, -0.0388655588, -0.040095482, -0.020471381, 0.0105705028, 0.00585579872, -0.0202253964, -0.0119985798, 0.0126272067, -0.0151007185, 0.0397948325, -0.0172599163, 0.0337818787, -0.0283155553, 0.0048035318, -0.0157020129, 0.0248991027, -0.0167406145, -0.0247214474, -0.0208266918, 0.00779634342, 0.00915609114, -0.00290569244, 0.0234231949, 0.00345744938, 0.0108096544, -0.0126818698, -0.00714721764, -0.0013392492, 0.0152373761, -0.00263920915, 0.02940882, -0.00176459749, -0.00109241053, -0.046327088, 0.0221932717, -0.00158523372, -0.00208232761, -0.00983938202, -0.0150050577, -0.030201437, 0.0144037623, 0.00272291224, 0.0291628353, 0.0116296029, 0.042446, -0.012429053, -0.0112742921, 0.000549194694, -0.0141304461, 0.00958656427, -0.0020174149, -0.0178885423, -0.0140347853, 0.0214143209, -0.00946357194, -0.00859579351, 0.012005413, -0.023272872, 0.00566106103, -0.0112742921, -0.00301843532, 0.0120805744, -0.01818919, -0.0178885423, 0.0397948325, 0.0305840783, 0.010843819, 0.0112401275, -0.039248202, -0.00990087818, -0.000901943364, 0.0122104, -0.00678849034, -0.0341645218, 0.0219746195, -0.00478303293, 0.00154252816, 0.0424186699, 0.0262520183, 0.0179432053, 0.016972933, 0.0403141342, -0.0299007893, -0.00921075512, -0.0200204086, 0.0194327794, 0.0160436593, -0.0140074538, 0.00405191211, -0.0321419798, -0.000603430846, -0.0189408101, 0.0609495044, -0.0148683991, 0.0154286977, -0.0215099826, -0.0218106303, 0.0111444667, 0.0377176292, -0.00254696491, -0.000102066508, -0.0199657455, -0.0227125734, 0.00644001225, -0.0234368611, -0.00927225128, 0.0282062273, 0.00705155684, 0.00395966787, 0.0157156792, -0.029299492, 0.00774168037, 0.00106080831, 0.0201707333, -0.00752986036, -0.00201058201, -0.00102408149, -0.00696614571, 0.000250468642, -0.0285342075, -0.0144447591, -0.0373623185, 0.0339732, -0.000709340849, 0.0123880552, -0.00649125874, -0.00770068308, -0.0115681067, -0.0456438, -0.0155380238, -0.000579088635, -0.00774851348, -0.0459991097, -0.0140621169, -0.000845571863, 0.0131806722, 0.0183668453, -0.0111854644, -0.0283702184, 0.0279055797, -0.0065527549, 0.00852063112, -0.030092109, -0.00257429667, 0.0205123778, -0.00327466941, 0.0344651677, 0.00591387833, 0.0233412012, -0.0333992355, 0.0412434079, 0.0117457621, -0.00359752402, -0.0160436593, -0.0070037269, 0.0274682753, -0.0223572627, 0.0104611758, -0.0228082333, 0.013167006, -0.00186367461, 0.00357360882, 0.0360777341, 0.00852063112, -0.0261153597, 0.00609153416, -0.00701055955, 0.013754636, 0.0120874075, 0.0370890051, 0.0285615399, 0.0174785685, -0.00817898661, -0.0136316437, -0.0289715137, 0.0283702184, 0.0222069379, 0.00804916117, 0.0102015259, 0.0176425576, 0.0189681426, 0.00069353974, -0.00271266303, -0.0190638024, -0.011158132, -0.0028664032, -0.0341371894, -0.0138639621, -0.0185171701, -0.00036556038, 0.0273042843, 0.0340278633, 0.0051246779, -0.013330996, 0.00507684797, -0.0266756583, -0.000371752685, 0.00490260869, -0.0102220243, -0.015907, -0.00190296385, -0.0072087138, -0.0160026606, 0.043211285, 0.0185991656, 0.0052681691, 0.0414347313, 0.0222069379, -0.0435119346, 0.00445847, -0.0178612117, -0.0516020916, 0.0345471613, 0.0534059778, -0.0134266568, 0.0150050577, -0.00480011525, -0.0182575192, 0.0118414229, -0.0338912047, 0.04496051, 0.012955186, -0.00226681586, 0.0228355657, 0.0399041586, 0.0153603684, 0.0297641307, -0.0141577777, 0.0256780535, -0.00034207225, -0.0242158119, 0.0036624365, 0.00337033, 0.0185581669, 0.0397401713, 0.0169592686, -0.0161939822, -0.00247521955, 0.00577038759, 0.00268191495, 0.0329072662, 0.0168499406, -0.00518275797, -0.0038161769, -0.00673724338, -0.0114519475, -0.0386469066, -0.00217286358, 0.00910826121, 0.0168226101, 0.00324392132, 0.0399588235, -0.0387289, -0.00156217266, 0.00453704828, -0.0264570042, 0.0214279871, -0.000832333113, 0.0113972845, 0.0388655588, -0.00259479531, 0.0220702793, -0.0138981268, -0.0400408171, 0.00363852154, -0.0147727383, 0.00865045656, 0.0130713452, -0.021223, -0.0185445026, 0.00464637484, -0.00578747, -0.0164946299, -0.00500510214, -0.0246804506, -0.00213699066, -0.0636826679, -0.0165629592, -0.0197334271, 0.0247077812, -0.03195066, 0.032688614, 0.0482129715, 0.000615815457, 0.00179705373, -0.00730437459, 0.0135496492, 0.00957289897, -0.0243661366, -0.00018128549, -0.0178748779, 0.0365150385, -0.000633751857, 0.0337545462, 0.0282608923, 0.00129398121, 0.0154013662, 0.0283702184, 0.00144088862, 0.0105158398, -0.0122240651, 0.023956161, -0.00334129017, -0.0197060946, 0.0478849933, 0.0142534375, -0.0050187679, 0.00337716285, -0.00108301535, -0.000908776245, 0.0213323273, -0.0238605011, -0.00255038147, -0.0322513059, 0.00297914608, -0.0225485843, 4.44405669e-05, 0.0079535, 0.0489782579, 0.052203387, -0.0181071963, -0.00622477569, -0.00437305868, -0.00221386086, 0.00538091175, -0.031267371, -0.0093132481, 0.00878028199, -0.0168772731, 0.00446530292, -0.012005413, -0.0199520793, -0.0141031137, 0.00826098118, 0.014335433, -0.00579771912, 0.0278509166, -0.0326612815, 0.031786669, 0.049934864, -0.00481036445, 0.00250938395, 0.00812432263, -0.0119370837, 0.0110693043, 0.020676367, -0.0028851938, 0.0130371815, 0.00395625131, 0.0164126363, 0.000501364353, 0.023108881, -0.0327706076, -0.00690806611, 0.00483428, 0.0156610161, -0.00502218446, 0.0237238426, 0.0175195653, 0.00567131024, -0.00638193265, 0.0129005229, 0.0292721614, 0.0324152969, -0.0103723481, -0.0096207289, -0.0121557368, 0.0159343332, 0.0139937876, 0.0146224145, 0.00436622556, 0.0297641307, -0.0039357529, -0.00393916899, -0.00449263444, -0.00550048798, -0.00677482458, -0.0124085536, -0.0430746265, -0.0144994222, -0.0299554523, 0.0242568087, 0.00720188115, 0.000711476139, 0.00862995815, -0.0348751433, 0.00441405596, -0.0194737762, -0.000595743826, -0.000781086332, -0.03195066, -0.00300818612, 0.0272496212, -0.00355311017, 0.0117799267, -0.0114587806, 0.0136384768, -0.0479396544, 0.00783050805, -0.00422273483, -0.0257737134, 0.0221249443, 0.0288348552, -0.00195250229, 0.0125657106, 0.0108984821, 0.0321146511, -0.000291893113, -0.0151963783, 0.0029671886, 0.00783734117, -0.00315509341, 0.013802466, -0.00361460634, 0.015497027, 0.00554148527, -0.00718821492, -0.00394600211, 0.00773484726, -0.00711988611, -0.0183668453, 0.0123265591, -0.00211478374, -0.0241611488, -0.0564124547, -0.0215373132, -0.0220429488, -0.0279875752, 0.01428077, -0.00708572147, 0.0152647076, 0.0029193582, -0.0102766873, -0.0219746195, -0.00419540331, -0.0297367983, -0.00823365, -0.016549293, 0.00813115574, 0.0157976747, -0.0109053152, 0.00626235642, -0.0197744239, -0.023272872, -0.006030038, 0.0155790215, -0.00119917467, -0.014335433, 0.0108984821, -0.00565081183, -0.0532966517, -0.00320121553, 0.0184625071, -0.00103176851, 0.00185000873, -0.012586209, -0.00568839256, -0.0267439876, 0.0219609533, -0.00111632573, 0.0060402872, -0.00353261153, -0.0217286348, -0.022056615, 0.00992137659, -0.00261016935, -0.00745469844, 0.0130030168, 0.0121215722, 0.0211136732, -0.00974372122, -0.00629652105, 0.00258112955, 0.00968905818, -0.0181481931, -0.0107208267, -0.0248307735, -0.0241474826, 0.0153330369, 0.00879394729, 0.000402073696, 0.00277415896, -0.0181618594, -0.0187631547, 0.0606215261, -0.0166722853, -0.00694906339, -0.0395488478, -0.00274853571, -0.0322239771, 0.012429053, 0.0274272766, 0.0177382194, -0.0310760476, 0.022903895, -0.00224631722, 0.011055639, 0.025227081, -0.0158933345, -0.0130508468, -0.00464295829, -0.00210282626, 0.0331805833, -0.0203757193, -0.00177997153, 0.00586604839, -0.0140211191, -0.00303210109, 0.0121489037, -0.0213049948, 0.00415782211, -0.00390500459, -0.000234026971, 0.0116432682, 0.00645026146, -0.00134779036, 0.0246941149, -0.00445163716, -0.00123163091, 0.0172189176, 0.0176288933, -0.013911793, 0.00805599429, 0.00484452909, -0.00733170612, 0.0124905491, 0.0118072582, -0.0148683991, 0.0078715058, 0.0238195043, -0.0225622486, -0.00488894293, -0.01903647, -0.00412707403, -0.00271437108, 0.00199862453, -0.0313220322, -0.00949773658, 0.0129961837, -0.00879394729, -0.00537749566, -0.0199794117, 0.0104680089, -0.0466004051, 0.000656812917, 0.00156644324, -0.0321146511, 0.0269079767, 0.00310897129, -0.0148137361, -0.0262383521, 0.0287255291, -0.01597533, 0.0271539614, 0.0179295409, 0.0285888705, 0.0277825873, -0.0014571168, -0.0245847888, -9.55538926e-05, -0.0169319361, 0.0210316796, 0.00567814335, -0.0117730936, -0.00555173447, -0.00174409873, -0.0312947, 0.012798029, 0.00123504747, 0.00702422531, -0.00503585, -0.0268259812, 0.000232318736, 0.0184215102, -0.0186811592, 0.00490260869, -0.0193644501, 0.0388382263, 0.0106729958, -0.00505634909, 0.00150067662, -0.00487527717, -0.00689440034, -0.0180525333, -0.0402048081, 0.0279465783, 0.0326339491, 0.00743419956, -0.0221386086, -0.0152100446, 0.0136589753, 0.000545778195, 0.0230678841, 0.0176562238, -0.0150460545, 0.0202117302, 0.00910142809, 0.00671674451, -0.00615303032, 0.0172325838, 0.0122787291, 0.00146138738, 0.00926541816, -0.00893060584, -0.00595487608, -0.00699689379, 0.0382642634, 0.030092109, 0.0233548656, 0.00139818306, -0.0307207368, 0.00824731495, 0.0481583066, -0.0159889963, 0.00298427092, 0.0179295409, 0.0056747268, 0.0175059009, -0.0104611758, 0.00436622556, -0.000290825468, -0.00407924363, 0.01428077, -0.0139937876, -0.00443113828, 0.00197300105, -0.0153193707, -0.0279329121, 0.00887594279, 0.00830197893, 0.0113016237, -0.0028322388, -0.00539116142, 0.00318754977, -0.00145028392, -0.0186264962, 0.020840358, -0.00356677594, 0.0111717982, -0.00679532299, 0.013167006, -0.00248546898, 0.02940882, 0.00961389579, 0.0335632265, 0.00778267765, -0.00940207578, 0.00245813723, 0.00997604, 0.00488211, -0.0325519554, 0.0154286977, 0.00858212728, 0.00694906339, 0.00466345716, 0.00925175194, -0.00135974796, -0.00538432831, 0.0212776642, 0.0322513059, 0.00313630304, -0.0186401624, 0.0195967685, -0.0035565265, 0.00323879649, 0.0219746195, 0.00829514582, 0.00159719132, -0.0365970358, -0.029463483, -0.016344307, 0.00122650631, 0.00481378101, 0.0150870522, -0.0160436593, 0.0233685318, -0.000675603398, 0.00136743498, 0.0140074538, 0.00947723817, -0.0109941429, -0.0345471613, -0.000882298744, -0.00587288104, 0.00613253145, 0.00806966, 0.00154765276, 0.0223982595, 0.000928420865, 0.0118345898, -0.0208813548, -0.024967432, 0.00418515364, 0.00504951598, 0.030939389, -0.0153193707, 0.00608470105, -0.00403141323, 0.0198974162, -0.00212161662, -0.00979838427, 0.00424323324, 0.00875295047, -0.00875295047, 0.0029671886, 0.00675774226, 0.0100648673, 0.00394600211, 0.0207583625, 0.0136179775, 0.0066962461, 0.00712671876, 0.00910826121, 0.0242978074, -0.0465730727, -0.00343524246, 0.00710622035, -0.00208574394, 0.0140757822, -0.00310384668, -0.00209086854, -0.00435256, 0.00168345671, -0.007113053, 0.00995554123, 0.0391388759, 0.00579430256, 0.00645367801, -0.00425348291, -0.000139113661, 0.0369523466, -0.0152647076, -0.0202800594, -0.00621452648, 0.00704472419, -0.00738636917, 0.0062931045, -0.0190774687, 0.00257088, 0.00362143922, -0.00307993148, -0.0192414578, 0.00765285268, -0.0147454068, 0.0161119886, 0.000817386142, -0.025172418, 0.00709255459, -0.023327535, 0.00175434817, -0.0397948325, 0.00787833799, -0.000399297831, -0.0235461872, -0.0427739806, 0.0215099826, 0.0156063531, 0.023532521, -0.00351552921, 0.00815848727, -0.00176288921, 0.00483769597, -0.0126203736, 0.000364065665, -0.0123675568, -0.0291355029, 0.0095524, -0.0141851092, -0.0082883127, 0.0174375717, -0.00614278065, 0.00729070883, 0.00657667033, 0.0227125734, 0.000985646388, -0.00688415067, 0.0109941429, 0.0180798639, -0.0366790295, 0.0192687903, 0.0157430116, -0.00837030727, 0.0148000699, -0.00167747797, -0.00785100646, 0.0136111453, -0.0101400297, -0.0156200184, -0.0163169745, -0.00406557787, 0.0127843637, 0.00936791115, 0.0310760476, -0.00858896, -0.0154286977, -0.0322239771, 0.00977788586, -0.0187904872, 0.00618719449, -0.0112606259, -0.0079808319, -0.00774168037, 0.0148410676, -0.0132011706, -0.00752302725, -0.0262520183, 0.00109753525, -0.0208676886, 0.0065049245, 0.00623844145, 0.00588996336, 0.00037922617, -0.0122445645, 0.00422615139, -0.00334299845, 0.0015630268, -0.0204303842, 0.00934741274, 0.0107413251, 0.0089101065, -0.0127706975, -0.0098257158, -0.0115612736, -0.00299452012, -0.0234505273, 0.0456984639, -0.0098257158, -0.0298187938, -0.000760587631, 0.00374101498, -0.017396573, -0.0100922, -0.0209223516, -0.00365902018, -0.000661083497, -0.0100443689, -0.00246497, -0.00886911, -0.00400749827, 0.0124085536, 0.00738636917, -0.00382300979, -0.00641268073, -0.000958314806, 0.0229312256, -0.00224290066, -0.00335324765, 0.0265663303, -0.00403141323, -0.0174102392, -0.00146736612, 0.00433547748, 0.0127911968, 0.0183805116, -0.000967710046, -0.0210316796, 0.0344651677, -0.00387767307, 0.0178612117, 0.0483222976, 0.0415713899, -0.0183805116, 0.0122787291, -0.00752302725, -0.030092109, -0.0110488059, 0.00436280947, 0.00482403, -0.0098257158, 0.00323025533, -0.0108506521, -0.00342157669, 0.00496410485, 0.0370070077, 0.0261563566, -0.00803549495, -0.00364877074, 0.0414893925, 0.00678507378, -0.00596854184, -0.0109804766, 0.00103176851, -0.022111278, -0.000169007617, 0.0267029889, -0.0122650629, 0.0200340748, 0.00322342245, 0.052941341, -0.00624185801, 0.0023300203, -0.00566106103, -0.0172735807, -0.0255277306, -0.00804232806, -0.0149367284, -0.0179295409, -0.00502560101, -0.00115049025, 0.00316534285, 0.0014571168, 0.0289441813, -0.0103723481, -0.0138707953, 0.00174580701, -0.00868462119, 0.000482573843, 0.00288861012, -0.00100272871, -0.00290569244, 0.0263750106, -0.015756676, -0.00266824896, -0.000899381, -0.0300374459, -0.0195011087, -0.014759073, 0.00708572147, 0.0199794117, -0.00518959062, -0.0205123778, -0.0120874075, -0.0143764298, 0.0245711226, -0.00688073458, 0.000343780499, -0.00811749, -0.000821656722, -0.00218994566, -0.00313117821, 0.0128731914, 0.0115407752, -0.00684315339, -0.0120122451, 0.0197744239, 0.0037580973, 0.00419198675, 0.024489129, 0.0307207368, -0.00600612257, -0.00409632595, -0.00398016674, -0.0141714429, -0.00120088295, 0.00428081444, 0.0143217668, -0.00780317653, 0.00680898875, 0.00959339738, 0.0252680797, -0.00979155116, -0.0116159366, 0.013167006, 0.0100375358, -0.00199691625, -0.021318661, -0.0105841681, -0.018407844, 0.0164126363, -0.0146634122, 0.00490260869, -0.0157020129, -0.0233138688, 0.00837030727, 0.0254047383, 0.0066005853, -0.00744786533, -0.00607445184, -0.00804916117, 0.0571230799, 0.0192277916, 0.0132285021, -0.0108916489, 0.00843863655, 0.0202117302, 0.00781000918, 0.00526133599, 0.00308334804, 0.0267713182, 0.0188178178, -0.00636826642, 0.0101673612, -0.0257463828, -0.0075161946, 0.0107071605, -0.0022189857, -0.00376151362, -0.00248205243, 0.00673382683, 0.0192961209, -0.0199247487, 0.00835664198, -0.0299554523, 0.0251997504, 0.00915609114, -0.0162623115, -0.0119302506, 0.0248444397, 0.0140484506, -0.00530233374, -0.00246155378, -0.00609836681, 0.00548682222, 0.0146634122, 5.82932116e-05, -0.00698664458, 0.0124905491, -0.0309667215, -0.0141577777, -0.00680557266, 0.00151092594, 0.0117730936, -0.00770068308, -0.00258283783, 0.0100238705, 0.00461562676, -0.00679873955, -0.00556881679, -0.00400408171, -0.00576013839, 0.00601295568, 0.00483769597, 0.0338365398, 0.0199794117, -0.0168226101, 0.00674066, -0.0201707333, 0.012695536, 0.00944307353, 0.0126477052, 0.00760502229, 0.00659375265, 0.00569522567, -0.0124427183, 0.0147727383, -0.0182985179, -0.0170822609, 0.0143764298, -0.00387084018, -0.000313032418, -0.0192141272, -0.00975738745, -0.0168499406, -0.0013776843, -0.00142722286, 0.00300818612, 0.0156610161, -0.0101058651, -0.00975055434, 0.00832931, -0.000436451752, -0.0128321936, 0.00880078, 0.00162366882, -0.0174102392, 0.000385845546, 0.000300647778, -0.00535699679, 0.0115886051, 0.0169866, -0.0105295051, 0.000353175739, -0.0167406145, 0.00470445445, -0.0114382813, -0.010263022, -0.0128321936, 0.00073197484, 0.00568156, 0.00493677333, 0.00853429735, 0.00623502489, -0.00891694, 0.00151519652, 0.00176288921, 0.00584554952, -0.00888277497, -0.0200340748, -0.00168004027, -0.0306934044, -0.0226579104, 0.000626919, 0.0106661636, -0.00163904286, -0.00595145952, 0.0458624512, 0.0141167799, 0.0102698551, -0.00035360278, -0.0142534375, -0.0203483887, 0.0214826502, 0.00304747513, 0.012271896, 0.00135803968, -0.0335905552, -0.00765285268, 0.00335495593, 0.0187358223, -0.0137136383, 0.0190911349, -0.00903309882, 0.00964122731, -0.00519984, -0.00187563221, 0.0208813548, -0.00270583, 0.00504951598, 0.0102766873, 0.0315953493, 0.0245301258, -0.0146634122, -0.00794666726, -0.0059719584, -0.00884861127, 0.00832247734, -0.000880590524, -0.00214040722, -0.00184659229, 0.0114861121, 0.00203962182, -0.0112264613, 0.0037102669, -0.0212776642, 0.00825414807, -0.0202253964, 0.00586946448, -0.0107481582, 0.00448580133, -0.00755035924, 0.0169866, 0.00220702798, 0.00546632335, 0.0203893855, 0.00581480144, 0.00926541816, 0.0112059629, 0.00815848727, 0.00172530825, -0.0249810982, -0.00243934686, -0.0181208625, 0.00187904865, -0.015182713, 0.00226339954, 0.0177928824, 0.00595829217, 0.00337887113, -0.00808332581, -0.0195557717, 0.0104406774, -0.00182951009, 0.0203620549, 0.0126613714, 0.0110761374, 0.0168226101, -0.0315133519, 0.00467370637, 0.0126272067, 0.00655617146, 0.0206080396, 0.00499826949, 0.0164946299, -0.000825927302, -0.00539799407, 0.00735903764, 0.0161119886, -0.00234368606, 0.00525792, -0.0221659411, 0.01818919, -0.0175742302, -0.0162623115, 0.0124632167, -0.0206900332, 1.34322618e-05, -0.0157976747, -0.0161393192, 0.0107481582, -0.00499826949, -0.00905359816, 0.0262656827, 0.0169456024, 0.00479328213, 0.0302287675, 0.011581772, -0.0105295051, -0.0157976747, -0.00346086593, -0.00304235052, -0.0149913915, -0.00228560646, -0.00206695357, -0.0204987116, 0.015907, -0.000399511366, 0.00814482197, -0.00776217924, -0.0239971597, -0.0140211191, 0.0179568715, 0.0348751433, 0.0137273045, -0.0189271439, -0.0217423011, 0.0014400346, -0.0105090067, 0.00449263444, -0.0217149686, -0.00261529395, -0.00272120396, -0.0334265679, -0.000563287525, -0.0190638024, -0.00270753819, 0.0134539884, 0.0167542808, -0.00733853923, -2.3141125e-05, 0.00642293, -0.00286981976, 0.0141851092, -0.00250596763, 0.00263408455, 0.00919025578, -0.0216056425, 0.00261016935, -0.0139254583, -0.0261426903, -0.00210453453, 0.00874611735, 0.00335324765, -0.0155380238, 0.0163033083, -0.0160573255, -0.00611544913, 0.0123402253, -0.0214006566, 0.0163716376, 0.0105705028, 0.000777669891, 0.0474203527, -0.00257600495, -0.0164673, 0.00613253145, -0.0320326537, -0.00477961637, -0.00337203825, 0.00522375526, -0.0217559673, 0.00701055955, -0.00577380415, -0.00460879365, 0.0140757822, 0.000907922105, -0.000165377627, -0.00163648056, 0.00934741274, 0.000638449506, 0.034219183, -0.00364193786, 0.0103655159, 0.0113084558, 0.00512809446, 0.00384350866, -0.0108711505, 0.00625894032, 0.00596854184, -0.013542816, -0.000224418196, -0.030939389, 0.00287494436, 0.0214143209, 0.0153330369, 0.0136521421, 0.0425006635, 0.0108916489, 0.0223709289, 0.0200067423, -0.0123402253, 0.015920667, 0.00580113567, 0.0377996266, -0.0043047294, -0.00438330788, -0.0397128388, -0.0121967336, -0.0225895811, 0.0169182699, 0.0170275979, 0.000960023, -0.0170412622, 0.0113972845, -0.011479279, -0.0143627645, -0.0231772102, 0.00482061366, 0.0037580973, -0.00568839256, -0.00212503318, -0.0189271439, 0.0126750367, 0.00905359816, 0.00540482718, 0.00967539195, -0.01861283, 0.00103603909, 0.00727021, -0.000395454321, 0.0040929094, -0.00364193786, 0.00548682222, -0.00809699111, -0.00897843577, -0.00287323608, -0.031814, 0.00581138488, -0.00104799669, -0.00933374744, 0.0158250052, -0.012162569, -0.0086094588, -0.0050461, 0.0147727383, -0.00975738745, 0.0188041516, 0.00206353702, -0.0053740791, -0.0105021736, -0.00883494504, -0.0101878596, -0.00755719189, 0.00240005762, -0.00881444663, 0.00904676504, 0.0115476083, -0.00138537132, 0.0209086873, 0.0160846561, 0.0132080037, 0.00163904286, -0.0222889334, -0.00772801461, 0.0109053152, 0.00250938395, -0.00983254891, 0.0204440486, 0.0255687274, 0.00330712553, 0.00951140281, -0.0185855, -0.0228355657, 0.0112537928, -0.00926541816, 0.01512805, -0.0115066105, -0.0169182699, 0.00772118149, 0.0189681426, -0.0127911968, -0.0188724808, 0.00120857, -0.027768923, -0.0135291498, -0.0172052532, -0.0133719938, -0.022534918, -0.011636436, 0.0085752951, -0.002962064, 0.0210043471, -0.00213186606, -0.00171847537, 0.0298734568, 0.0013537691, 0.026129026, -0.00479669869, -0.0134949852, 0.0187084917, 0.0192687903, -0.000796460372, 0.00672357762, 0.00176459749, 0.0115681067, -0.00683290418, -0.0184625071, 0.00606420217, -0.000443284662, 0.00683632074, 0.0101946928, 0.0159616638, 0.00404507946, 0.0100580351, 0.0194874424, -0.022056615, -0.00374101498, 0.001262379, -0.00203962182, 0.00841130503, -0.00443797139, -0.00487527717, -0.00424665, 0.00975055434, -0.00994870812, -0.0113562867, 0.0126613714, -0.0191731285, -0.0213323273, -0.0120942406, 0.0110693043, -0.00197983393, -0.00731804036, 0.0272769537, 0.00456438, 0.0139322914, 0.0124563845, 0.0116159366, 0.0113084558, 0.0158523377, 0.000600441475, 0.0160436593, -0.00233856146, 0.0221659411, -0.0219062902, -0.0105431713, -0.00623844145, 0.00739320228, 0.0016638122, 0.0379089527, -0.00883494504, 0.0134744868, -0.0119644152, -0.00951823499, 0.00603687065, 0.0112879574, 0.0235188566, -0.0116706006, -0.00744786533, -0.0290808398, -0.0123470575, 0.00233172858, 0.0202937257, -0.00106337073, -0.000562433444, -0.0089101065, 0.0171232577, -0.00414757291, 0.000614961376, -0.00072087138, -0.00180559489, -0.0102835204, 0.0067919069, -0.00402116403, -0.00394258555, -0.00660400186, 0.00107020361, -0.00603687065, -0.00613253145, 0.020895021, 0.00283053052, 0.00775534613, 0.0257190503, 0.00985304732, -0.0075161946, 0.000932691386, -0.0109121483, -0.00144430506, 0.00176118105, -0.0104406774, 0.00599587336, 0.0105636697, 0.0119917467, 0.00577038759, -0.00947040506, 0.00678507378, -0.00626918953, -0.00285786204, -0.0174102392, -0.00404166291, -0.00758452341, 0.00341303553, 0.00206353702, 0.00214724, 0.0141714429, 0.0142534375, -0.00655617146, -0.00510417949, -0.00257088, 0.0260606967, -0.0111034689, -0.0177518856, -0.00407924363, 0.0155926868, -0.024174815, -0.0105090067, 0.0115339421, 0.00225315, 0.0065425057, 0.00974372122, -0.00828148, 0.0184625071, -0.0132353352, 0.0064946753, -0.0078851711, -0.0090877628, -0.00903309882, 0.0262930151, 0.0160163268, -0.00233685318, 0.00811065733, 0.016713284, -0.0217423011, -0.0137068052, -0.0162759777, 0.0176425576, 0.00822681654, -0.009730055, -0.00688756723, 0.0161803178, -0.00399383251, 2.49828063e-05, -0.0135359829, 0.0143217668, 0.0272496212, -0.00459171133, 0.0140211191, -0.0130166821, 0.0271266289, 0.00418173708, 0.00791933574, -0.0016040242, -0.00821315, 0.0237921719, 0.0132968314, -0.00724287843, 0.0129210213, 0.00462587597, -0.000428551197, 0.0158796683, 0.0129141891, 0.00305943284, -0.00776901189, 0.0227672365, -0.0165219624, -0.00415782211, -0.0102903536, -0.00870512, 0.00560298143, -5.94676203e-05, -0.00717454916, 0.00202937261, -0.0189271439, -0.0186948255, -0.0156473499, -0.0182711855, 0.0198017564, -0.00183975941, -0.00554148527, -0.00191662961, 0.0188861471, -0.00757769076, -0.0205260441, 0.00805599429, -0.00315509341, 0.00155448564, 0.00328833517, 0.00658008642, 0.00957973115, 0.0197197609, -0.00429448, -0.0112811243, 0.00152800814, 0.00346257421, 0.00311238784, -0.00910142809, 0.0123470575, -0.00496410485, 0.0151963783, -0.0131260091, -0.00906043127, -0.00394600211, -0.00175093173, 0.0198837519, -0.0187084917, 0.000692258589, 0.00487186061, -0.00351894554, -0.00497093797, 0.0120532429, 0.0207583625, 0.00274170283, 0.0121557368, -0.0130918445, 0.000583359215, 0.0102561889, -0.00621452648, -0.0119712483, 0.0144447591, -0.0217969641, 0.00403483, 0.0215919763, -0.0201980639, 0.00502901757, 0.00167149922, 0.00932008121, -0.0161529854, 0.0201024041, -0.0105841681, -0.00139818306, 0.00255379803, -0.00412707403, -0.00339253689, 0.0216603056, 0.0267029889, 0.00706522306, 0.00867778808, 0.00438672444, 0.00351552921, 0.00649809185, -0.00856162887, 0.0107686566, 0.0110283075, -0.00545949, -0.0192414578, 0.00730437459, 0.00256233895, -0.00172445423, -0.00755719189, 0.00497435406, 0.0155106923, -0.0179022085, 0.0351484604, 0.0325792879, 0.0118619213, 0.0285615399, 0.0173829086, -0.0128936898, -0.0138776284, -0.00802183, -0.030201437, -0.00719504803, 0.0153057054, 0.0233002026, -0.0187631547, -0.0186948255, 0.0169046056, 0.00619402761, 0.00019751364, -0.0130986776, -0.00354969362, 0.00854113, 0.0136316437, -0.0153330369, -1.30852786e-05, 0.0126750367, 0.00955923274, -0.0119985798, 0.0282335598, 0.00595487608, -0.00487869373, 0.0322513059, -0.0156200184, 0.0061052, -0.00128544, -0.00265287491, -0.00451313332, 0.00659375265, 0.0121215722, -0.00983938202, -0.00297743804, -0.0104270121, 0.00848646648, 0.00717454916, -0.0112947905, 0.0131123429, 0.0182438549, -0.00507001486, 0.00477961637, 0.0102561889, -0.0288075246, -0.0160026606, 0.0118004251, 0.00115988543, -0.0101331966, 0.00458829524, 0.0187358223, -0.00072642311, 0.0150870522, 0.024120152, 0.0210590102, 0.00444480404, -0.0103381835, 0.0283155553, 0.00485136174, -0.0141441114, 0.00110863871, -0.0114519475, 0.0146224145, -0.0112469606, -0.000150430657, -0.0058387164, -0.00789200421, -0.0111308005, -0.0150870522, -0.013802466, -0.00384692498, 0.00956606586, -0.0161256529, 0.00814482197, 0.00948407128, -0.00502901757, -0.014759073, 0.0160709899, 0.0165766254, -0.00671332842, 0.0132968314, -0.0154696945, -0.00754352612, -0.00689098379, 0.023272872, 0.00225315, 0.0285888705, 0.0012504214, -0.0207993593, -0.025965035, 0.00643659569, 9.38857e-06, -0.00983938202, -0.00985988, -0.00629993761, 0.00297914608, 0.00996237434, 0.00823365, 0.0157976747, 0.0144720906, -0.00330883381, -0.00364193786, 0.014759073, 0.0142944353, 0.0124905491, 0.0102425236, 0.0114587806, 0.0172325838, -0.0117662605, 0.000668343448, 0.00687048491, -0.0101946928, -0.025760049, 0.0115476083, -0.0135223176, -0.0127297007, -0.00229585567, 0.00957973115, 0.00280149071, 0.0194054469, 0.00378884538, 0.00180388673, -0.00643317914, 0.0143490983, -0.028670866, -0.00444138749, 0.00553806871, 0.00197300105, -0.0161119886, -0.014335433, 0.00319267437, -0.0138776284, -0.00478644948, -0.00349844689, -0.0166722853, -0.00577380415, -0.00247521955, 0.00187221577, 0.0167406145, 0.000124593731, 0.0206900332, 0.00353261153, 0.00454046484, 0.0078851711, 0.0255140644, 0.00170053903, -0.00538432831, -0.00455754716, -0.0114519475, -0.0112264613, -0.00949090347, -0.00215065666, -0.0170002654, -0.00274341111, 0.000502218434, -0.0225622486, 0.0298461244, -0.00708572147, -0.00344207534, 0.0136384768, -0.00544240791, 0.0167816132, -0.000531258294, -0.0238741674, -0.014226106, 0.0322786383, -0.00564739527, 0.0254184026, -0.00617694529, -0.00906043127, 0.0156336855, 0.00938841049, -0.0121489037, 0.0072087138, -0.00158010912, 0.00373759866, 0.0145677514, -0.025172418, 0.0198564194, 0.00781000918, -0.00915609114, -0.00409974251, -0.0162759777, 0.00464295829, -0.013590646, 0.00103347679, -0.0144857569, 0.00255038147, 0.00442088908, -0.00304576708, -0.0171095915, 0.0165902916, -0.0117525952, -0.0106388321, 0.00222069374, 0.00824048277, 0.009203922, -0.00968905818, 0.00743419956, 0.0137136383, 0.0105295051, -0.00720188115, -0.0178748779, 0.00109668111, -0.0232182089, 0.0151553815, -0.00667574722, -0.0140757822, -0.0231498796, 0.0195147749, 0.0146770785, 0.00839080662, 0.0111513, -0.0250494257, -0.0083976388, 0.00334470649, -0.00195079413, -0.00387084018, 0.0255687274, -4.57217357e-05, -0.00614961376, -0.0163033083, -0.00337716285, -0.00583188375, -0.012374389, 0.0029723132, -0.00218652934, -0.000781086332, 0.0222479366, -0.0128321936, 0.0184215102, 0.021209335, 0.00481378101, 0.00906726345, -0.00288861012, -0.025705386, -0.0116296029, -0.0359957404, 0.00165612518, 0.013754636, -0.00755719189, 0.0163579732, -0.00271266303, 0.0180525333, -0.0234231949, -0.00701055955, 0.00942257512, 0.00726337684, 0.0184488408, 0.00160231604, 0.000114130853, 0.00187904865, -0.000168580562, -0.005790886, -0.00856162887, 0.0110829705, 0.0250357613, -0.00377176306, 0.00917659048, 0.0178065486, 0.0149367284, -0.0198974162, -0.0123675568, -0.00436622556, 0.0125383791, -0.00393233635, 0.0066962461, -0.00184317585, -0.0136316437, -0.0105431713, -0.000608128437, -0.00366585306, 0.0153193707, -0.00858896, 0.0166312885, 0.0047762, 0.0110898037, 0.0176425576, 0.00716771651, 0.000814823841, 0.012798029, -0.0172189176, 0.00543557527, -0.00893060584, -0.0245574582, -0.0164673, -0.0103245182, -0.00682607107, -0.023956161, 0.0157020129, 0.0148410676, 0.00150580122, 0.00354627729, -0.0048650275, -0.00484452909, 0.0128048621, -0.00118123833, 0.00160231604, 0.0106593305, -0.00257088, 0.000706351479, -0.0214279871, 0.00146822026, 0.00224973378, 0.0205123778, 0.00709255459, 0.00840447191, -0.0124905491, 0.00514176, -0.0142124407, -0.00623844145, -0.00577380415, 0.00685681915, -0.00674066, 0.0082883127, 0.00938157737, -0.0315133519, 0.0169592686, -0.022739904, -0.00289715128, -0.00752986036, -0.0256233905, -0.00101639447, 0.010208359, -0.00194396125, -0.0153330369, -0.0248171072, 0.00764601957, -0.000517165405, -0.022480255, -0.00911509432, -0.000635033, -0.00932008121, 0.0151007185, 0.0223572627, 0.00273316167, 0.00845913496, -0.0279602427, -0.00308505632, 0.00560298143, 0.00656983722, 0.0036624365, -0.00755035924, -0.0126682045, 0.00960023049, 0.0106388321, 0.00737953652, 0.00696956227, -0.0267303213, 0.0308027323, 0.00753669301, 0.00456438, 0.0283155553, 0.0102288574, 0.0283155553, -0.0103655159, -0.00223094318, -0.0131055098, -0.0142944353, -0.00674749259, -0.0108096544, -0.00251450879, -0.0187904872, -0.0177655499, -0.0124153867, 0.00403824635, 0.00686365226, -0.013378826, 0.0056268964, -0.00868462119, 0.0110829705, 0.000677738688, -0.00338228745, -0.00549365487, -0.0108301528, 0.00610861648, 0.00106507889, 0.00513492757, -0.013009849, -0.0152647076, 0.00515201, -0.0244071335, 0.000434957066, -0.0236828458, -0.0022770653, -0.0121284043, 0.0272086244, -0.00310384668, -0.0201297347, 0.0121215722, 0.00407924363, 0.00904676504, 0.01470441, 0.0139937876, 0.0149093969, -0.00383667555, -0.0167406145, 0.00704472419, -0.0120805744, 0.00310897129, 0.00497435406, -0.0195831023, 0.0302287675, 0.020252727, -0.00576355448, 0.00704472419, 0.0104816752, 0.0155790215, 0.00858212728, 0.000906213885, 0.004601961, 0.0394121893, -0.00100956159, -0.00798766501, 0.0283155553, -0.025391072, -0.0175195653, -0.0051144287, 0.0179705378, 0.00258796243, -0.00140501594, 0.0108779836, 0.0086094588, -0.0124358851, -0.00538432831, 0.00560298143, -0.00468395557, -0.0111376336, 0.00744786533, 0.00153227872, 0.0104611758, 0.00869145431, -0.00750936149, -0.0029193582, -0.00272462051, -0.00865729, -0.000408693071, -0.00739320228, 0.0135359829, -0.00107276591, 0.0218516272, 0.0195967685, 0.00108045293, -0.00529891718, -0.00824731495, -0.00937474426, 0.00817898661, 0.00183634297, -0.0165766254, 0.0165219624, 0.0286435336, -0.0164809655, -0.00566447759, -0.0104953405, -0.0138502968, -0.00686706882, -0.0336998813, -0.0157020129, -0.00966856, 0.00588996336, 0.0300101154, 0.00346769881, 0.00182096893, -5.87202703e-05, 0.00294156512, 0.00226681586, 0.000116906718, 0.0155790215, -0.0359410755, -0.00495043909, 0.00329004321, 0.00819265191, -0.00170566374, -0.0175878946, 0.0276185982, -0.0241611488, 0.00361118978, 0.0196377672, 0.00557565, 0.00176118105, 0.00626235642, 0.00180559489, -0.030146772, -0.0037922617, 0.0244754627, 0.00249401, 0.0109531451, -0.0132421684, -0.0204303842, -0.0102698551, -0.00213186606, 0.008992102, -0.0159343332, 0.00292277476, -0.00390500459, 0.00974372122, 0.00975738745, -0.00993504282, -0.0233685318, 0.00740003493, -0.00650150841, -0.0120805744, 0.0051246779, -0.00911509432, 0.0022292349, -0.00605395297, -0.00160829478, -0.0344651677, -0.0192824546, -0.00752986036, 0.00124444265, -0.0114451144, -0.00479328213, -0.0182165224, 0.0221386086, 0.00637851609, 0.00936107896, 0.0291628353, -0.0237921719, 0.00345232477, -0.00863679, -0.0094089089, -0.0388655588, 0.000819521432, 0.015442363, 0.00764601957, -0.0356950909, -0.0108506521, -0.00964122731, -0.00781684276, -0.0104270121, 0.00996237434, 0.00834980886, -0.00189442269, -0.0237101763, -0.00909459498, -0.00474886829, -0.00988038, 0.0162623115, -0.0172325838, -0.0233002026, -0.0030440588, 0.0157293454, -0.00722237956, 0.0103928475, -0.0178475454, -0.023956161, -0.000859664753, -0.00495727174, -0.0127843637, -0.030884726, -0.00843180344, -0.0116501013, 0.00770751573, -0.0124768829, -0.000188011632, -0.0157703422, -0.0115202768, -0.0155380238, -0.019200461, 0.0185991656, 0.00659375265, 0.0160846561, -0.0129893506, -0.0310760476, -0.0208540242, 0.0165629592, 0.00888277497, -0.00409632595, -0.0315680169, 0.00146224152, -0.0115407752, 0.00446530292, 0.00208574394, -0.0106934952, 0.0038059277, -0.00797399879, 0.0151007185, 0.00351211266, 0.00711988611, -0.00912876, -0.00257771299, -0.0071608834, 0.00133156218, 0.0174239054, -0.00107105775, -0.0189954732, 0.0140894484, 0.0236281827, -0.0108233197, 0.00701739267, -0.00658350298, 0.00292619108, 0.0034506165, 0.0117115974, -0.000988208805, 0.00200033258, -0.0137683013, 0.0230405536, -0.00901943352, -0.0143081015, -0.00601295568, -0.000389262015, -0.0283428859, -0.0210863426, -0.0022189857, -0.0195011087, -0.0113972845, -0.0278645828, 0.00780317653, 0.00458487868, 0.00105910015, 0.0115066105, 0.004390141, 0.00815165415, 0.00862312503, -0.0216739718, 0.0118687544, -0.00221386086, -0.0113289552, 0.0413254052, -0.00113938679, 0.00295693916, -0.00932008121, 0.0141167799, -0.004390141, 0.00898526888, 0.00869828649, 0.0370890051, -0.007324873, -0.010051202, -0.00138622546, 0.00403483, -0.00853429735, -0.0103928475, 0.0242431443, -0.0144174276, -0.0299827829, -0.00556881679, -0.0237101763, -0.0160846561, 0.00451313332, 0.0049128579, 0.0119780805, 0.00647076033, -0.00427739788, -0.0301194414, -0.0160299931, 0.020676367, -0.00736587076, 0.00101383217, -0.00964122731, -0.0279602427, 0.0138912937, 0.026129026, 0.00269216415, 0.0204987116, 0.00772118149, -0.0202937257, 0.0112947905, -0.0047591175, -0.0151690468, -0.00160573248, 0.0043047294, 0.00235564378, -0.00886911, -0.00520325638, 0.0308027323, 0.00262383511, 0.0182848517, -0.00692856498, 0.0157293454, -0.00121454871, -0.013699973, 0.0173419099, 0.021468984, -0.00132216699, -0.00481036445, -0.0152237108, 0.0280149076, -0.0212366655, -0.011848256, 0.000156729744, -0.0046497914, -0.0196924303, 0.00117440545, -0.000291466073, 0.0173009131, 0.00810382422, -0.0122992275, -0.0158386715, 0.0285615399, -0.00405532867, -0.00222752662, -0.00650150841, 0.011158132, 0.00104030967, 0.00628285529, -0.0107959881, 0.0143081015, -0.00596170872, -0.0347658172, 0.0185991656, -0.00784417428, 0.0251314212, -0.00537066255, 0.00183975941, -0.0182985179, 0.00815165415, -0.0161393192, 0.00410657516, 0.00934058, -0.00585921528, 0.00896477047, 0.00310043013, 0.0156336855, 0.00463270908, -0.010051202, 0.00426714867, 0.00640243106, 0.0217832979, -0.00226169126, -0.0223435964, -0.0022053197, 0.0268533137, 0.00797399879, -0.00746153109, 0.00307651516, 0.0155653553, 0.00356677594, -0.0173419099, 0.000868205854, -0.00611544913, 0.000213101201, 0.000638449506, 0.0145404199, 0.00171762123, -0.00532283215, 0.0106046675, -0.00337545457, 0.0103928475, -0.00794666726, -0.00621452648, -0.0149503946, -0.00234539434, -0.00874611735, -0.00462245941, 0.00988721196, 0.000238724591, -0.0123538906, -0.0142671037, -0.004601961, -0.00213357434, 0.0156473499, 0.0225485843, -0.0129346875, 0.021263998, 0.00987354666, -0.00828148, 0.0112606259, 0.00384692498, 6.27239278e-05, 0.00247521955, -0.0219472889, -0.00646051066, -0.0134198237, -0.0225485843, 0.0275639351, 0.0240244903, 0.00306455744, -0.00968905818, 0.000276305567, 0.00336520537, 0.00300989416, -0.00539116142, -0.0105363382, -0.0254320689, -0.0151143838, 0.0201570671, 0.0138981268, -0.00818581879, -0.000824219082, -0.0212776642, 0.0188178178, 0.0224529225, 0.0204030517, -0.0136521421, 0.022849232, -0.00771434885, 0.00206012069, 0.00914242584, 0.020895021, 0.00565081183, -0.000222709961, -0.0124973813, 0.0104611758, 0.010843819, 0.00310555496, -0.00292106648, 0.0121830683, 0.00633410225, 0.0239834934, 0.00852063112, 0.000103027385, -0.0038161769, -0.0180525333, -0.00424323324, -0.00281686476, 0.00705155684, 0.0135701476, -0.0252680797, -0.00847280119, 0.00436622556, 0.00998287275, -0.00937474426, 0.017191587, -0.0207993593, -0.0188998133, 0.0291628353, -0.00142466056, -0.00829514582, 0.00339424517, 0.0120805744, -0.00512126181]
|
29 Jan, 2021
|
Fabric.js Itext cornerSize Property
29 Jan, 2021
Fabric.js is a JavaScript HTML5 canvas library that is used to work with canvas. The canvas Itext is one of the class of fabric.js that is used to create Itext instances. The canvas Itext means the Itext is movable and can be stretched according to requirement.In this article we will be using cornerSize property is used to set the size of the corners in a canvas Itext .
Approach:
First import the fabric.js library.
After importing the library, create a canvas block in the body tag which will contain the Itext .
After this, initialize an instance of Canvas and Itext class provided by Fabric.JS and use the cornerSize property to set the size of the corners. After this render the Itext on the canvas.
Syntax:
fabric.Itext(Itext, {
cornerSize : number
});
Parameters: This function takes a single parameter as mentioned above and described below:
cornerSize: This parameter takes a number value.
Example: This example uses FabricJS to set the cornerSize property of the canvas Itext as shown in the below example:
HTML
<!DOCTYPE html>
<html>
<head>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;width: 400px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Itext cornerSize Property
</b>
</div>
<div style="text-align: center;">
<canvas id="canvas" width="400" height="200"
style="border:1px solid green;">
</canvas>
</div>
<script>
var canvas = new fabric.Canvas("canvas");
var geek = new fabric.IText('GeeksforGeeks', {
cornerSize : 20
});
console.log(geek.willDrawShadow())
canvas.add(geek);
canvas.centerObject(geek);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js Textbox cornerStyle Property/Fabric.js Textbox cornerSize Property/Fabric.js Itext cornerSize Property
|
https://www.geeksforgeeks.org/fabric-js-itext-cornersize-property?ref=asr5
|
CSS
|
Fabric.js Itext cornerSize Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, Fabric.js Textbox cornerSize Property, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js Textbox cornerStyle Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, Fabric.js Itext cornerSize Property, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0064454414, 0.0189057086, -0.0160533171, 0.043405965, 0.0282207672, 0.00541541073, -0.0155848078, 0.0266498849, -0.00607339, -0.0168800969, 0.0256301891, -0.0127324164, 0.0101969568, -0.0391893834, -0.0109066097, 0.0096526593, -0.0356893502, -0.00112045952, -0.0349176861, -0.0122087887, 0.000899123552, -0.00839871, -0.0228191353, 0.00407533767, -0.00940462574, 0.0350554846, 0.0233152043, 0.00299535599, -0.0468233228, 0.0236872546, 0.00883965939, 0.00850205682, -0.0152540961, -0.0482288487, -0.0110995248, -0.0336499587, -0.00301085808, 0.0736936852, -0.0416972861, -0.0309215821, 0.0229431521, 0.0051501519, 0.00667280564, 0.0321066342, -0.00835048, 0.000866827439, -0.0157501642, -0.01507496, -0.0353310779, -0.0512879379, -0.0180238094, -0.0202147774, 0.00144858798, 0.0142206205, 0.0155848078, 0.024045527, 0.00243211188, 0.0457760692, -0.00151662505, -0.0190297253, 0.0394649766, -0.087583594, -0.0527485833, -0.00401677424, -0.0385004021, -0.00101625081, 0.00187920267, 0.0122570172, 0.0178033356, -0.0103003038, -0.0336499587, 0.015061181, 0.0154056726, -0.0204765908, 0.00742035313, -0.0421382338, 0.0346420929, 0.00129615038, -0.0409807414, 0.0602447242, -0.000397457392, -0.0143859768, -0.00118332927, 0.00552220317, -0.0115887038, -0.00955620222, 0.0169076566, -0.0429925732, 0.0140001457, 0.0195809137, -0.0128564332, 0.0260298, -0.00806110725, -0.0496619344, -0.0129046617, 0.00974222738, 0.00760637876, -0.00287133898, -0.0256164093, -0.0182442851, 0.0208899807, 0.0513430536, 0.0136212055, -0.0487524755, -0.0133249424, -0.0458863042, 0.0228329152, -0.0269943755, 0.0335948393, -0.0060458309, 0.039409861, -0.0299845655, 0.00100763841, 0.0426067449, -0.0564139746, 0.0130906878, -0.0103898719, -0.0378114171, 0.0168800969, 0.0138485692, -0.0080748871, 0.00123758672, 0.0234943386, 0.040898066, -0.0367917232, 0.0232325252, -0.037728738, 0.017954912, 0.0236321371, -0.00153040478, -0.0175415222, 0.0142206205, 0.0262364931, -0.00042480143, 0.0342287049, 0.00133662811, 0.0117953988, 0.0186025556, -0.0118229575, -0.0187541321, -0.0184372, -0.0211931337, 0.0212620329, 0.046299696, -0.0182305053, -0.00637998758, 0.00604927586, 0.0174037255, -0.0163978096, 0.0368468426, -0.0576541461, -0.0155021297, 0.0250376631, -0.0114853559, 0.0525556654, -0.0245002545, -0.0257955454, 0.031527888, 0.0363783315, 0.0111546442, 0.0440673903, -0.00817823503, 0.000952519767, 0.0265120883, -0.0191813018, -0.0136832139, -0.0076546073, -0.0122501273, -0.0545123778, 0.0208073035, -0.0152540961, -0.00562210567, -0.00233220938, -0.00539474143, -0.0575439073, -0.0393271819, -0.0153367743, -0.0381145701, -0.00103950396, -0.0245002545, -0.0505713932, 0.0324924663, 0.0171419103, 0.0558076687, -0.022447085, 0.00261986, 0.0380870104, 0.00919793081, 0.0203525741, -0.014069044, -0.0140414853, 0.0499375276, 0.0334570408, 0.0132491542, 0.023549458, -0.0204903707, 0.0212895926, 0.0452524386, -0.0170178935, -0.0290199872, 0.0129184416, -0.0183407422, -0.0195257943, -0.0303703956, 0.0360751785, 0.00866741315, -0.0184372, -0.0444256589, 0.0389689095, 0.0116369324, -0.00283344486, -0.0163564701, 0.0261951555, 0.0191261843, -0.0156537071, -0.00178446737, -0.0129046617, 0.0156399272, -0.0151576381, -0.00439227, 0.0394649766, 0.0151438583, -0.00475398637, -0.0460241027, -0.0295987334, -0.00503647, 0.026636105, 0.013669434, -0.0017793, -0.023356542, 0.015763944, -0.025643969, -0.0149371633, 0.014275739, 0.0472091548, 0.00437160069, -0.00670036534, -0.0051501519, 0.0122570172, 0.0100936089, 0.018065149, -0.00103950396, -0.0327956192, -0.0156123675, 0.0385279618, 0.0345318578, -0.0116576022, 0.0157915037, 0.0092323795, -0.0165631641, -0.0303979553, -0.0236872546, 0.0108377114, 0.0282207672, -0.0124223735, -0.0133456113, 0.00408222759, -0.0194706749, 0.028634157, 0.0560281426, 0.0444807783, 0.0194706749, -0.0141517222, 0.0093563972, -0.0095217526, 0.0043095923, 0.023742374, -0.0459414236, 0.00193604385, -0.026636105, 0.0257955454, -0.0503784791, 0.0359925, -0.0216754228, -0.0400161669, 0.0437366776, -0.0215927456, -0.00129615038, 0.0214549489, -0.00730322581, -0.015267876, 0.0183958616, 0.0270632748, 0.0529690571, -0.0161084365, -0.0209864397, 0.00910836272, 0.0524178706, -0.0167423, -0.043405965, -0.00363094336, -0.0149096046, 0.0329885334, -0.00259402301, 0.0208899807, -0.0172521491, -0.00209795497, -0.0462721363, -0.00414423598, -0.0457209498, -0.0193053186, -0.0190848447, -0.00561177125, -0.0411185399, 0.0258093234, 0.0348074511, 0.0279313941, -0.00443705404, 0.00260263542, 0.00519838091, 0.0115818139, -0.0226813387, -0.045996543, -0.0208762027, 0.00982490554, -0.0244726967, 0.0541816689, -0.024954984, -0.0197876077, 0.0111408643, -0.0252581369, -0.0310042594, 0.0267601218, 0.0403744355, 0.0579297394, -0.0174864028, -0.0328507349, -0.00923926942, 0.0316656828, -0.00193432136, -0.0306184292, 0.0024855081, -0.00272493, 0.0017362386, 0.0166871827, 0.0204352532, -0.00202388922, -0.000810416939, -0.0390240289, 0.0426894203, 0.0376736224, 0.00148648198, -0.047098916, -0.0208073035, 0.0243073404, -0.0598037727, -0.00775795477, 0.0084056, 0.028041631, 0.00948730391, 0.000986107741, 0.022653779, 0.000741949189, 0.0163426902, -0.0265947655, 0.0155434692, -0.0100591602, -0.0361854173, -0.0339531116, 0.00579090696, 0.0140070356, 0.00481944, 0.0157777239, 0.0207384061, -0.00319171627, -0.0131389163, -0.010775703, 0.0156123675, -0.0158052836, 0.00223919656, -0.0286617167, -0.0226124413, -0.0185336582, 0.0164115876, 0.0130975777, -0.0236321371, 0.00868808292, -0.00817134511, -0.0454177968, 0.0115887038, -0.0341460258, 0.0203525741, 0.014372197, -0.00227020076, 0.0373429097, 0.0249963235, -0.0402917601, -0.0204076935, 0.0215651859, 0.0291577838, -0.0399059281, 0.0275042243, 0.0120985517, -0.00603205105, 0.0183683019, -0.0198978446, -0.0190435052, -0.0399059281, 0.00987313408, -0.043654, -0.00316587952, 0.0286065973, 0.00495379185, -0.0386381969, 0.0300948024, -0.00521905068, -0.0238663908, -0.0203663539, 0.00979045685, -0.0342011452, 0.00518115656, 0.00148131466, -0.00282138772, -0.0318034813, 0.0516737662, 0.0150474012, 0.0277246982, 0.0377838574, -0.0177757759, 0.00862607453, 0.0658117086, -0.010575898, -0.0333468057, -0.00645922078, -0.00242866715, -0.0382799283, -0.0335672796, 0.011278661, 0.00913592242, 0.00123328052, -0.0816858932, 0.0253132563, -0.0179824717, -0.0271046124, 0.0355515517, 0.00465752883, 0.0521698371, 0.0430201329, 0.0318586, 0.0204214733, -0.0108446013, 0.0212069135, 0.0296538528, -0.0217029825, -0.027738478, 0.0313625336, -0.0327680595, -0.0168938767, 0.030232599, 0.0218407791, -0.0103623131, -0.0229707118, -0.0494139, -0.0173486061, 0.00494690193, -0.0231774077, 0.0364885703, -0.00344491773, 0.0129322214, -0.0298743267, -0.026636105, -0.0175139625, -0.0164804868, 0.0124292634, 0.0191124044, -0.00160274806, -0.0206281673, 0.00506402925, 0.0110306265, 0.01297356, 0.00696906867, 0.0048091053, 0.0134076197, 0.0308940224, 0.0073652342, 0.0116851609, -0.00358271459, 0.00837804, 0.00811622664, -0.0269805957, 0.0441776253, 0.00281105284, -0.0101556173, 0.0245967135, -0.0148131466, -0.024445137, 0.0271046124, -0.0268703587, 0.00358615955, 0.0299570058, 0.0359098241, 0.00369639671, -0.00695528928, -0.0192639809, 0.0043888255, 0.00806799717, 0.0140828239, -0.0560281426, 0.0284963604, -0.000560660381, -0.0200356413, 0.0186438952, -0.0254097134, 0.0672999173, 0.0449217297, -0.000588219729, -0.00560832629, 0.0165907238, -0.0337877534, -0.00653500902, -0.0204076935, 0.0391618274, -0.0329885334, -0.00841249, -0.0082333535, -0.0482839681, 0.0256301891, -0.0239077304, 0.0115887038, 0.0115818139, 0.00270081568, -0.00433026161, 0.00460241036, -0.0135867558, 0.02474829, 0.0487249158, -0.00351381628, -0.0159017406, 0.0283585638, 0.0082057938, -0.0103347534, -0.00403399859, 0.00992136355, -0.00312109548, 0.00588391954, -0.00467475364, -0.0125119416, -0.0217581, -0.000620085222, -0.00998337194, -0.0368192829, 0.00107998168, -0.0291577838, -0.000321023283, 0.00141758367, 0.0315554477, -0.0140001457, 0.00517082168, -0.0161911137, 0.00619740691, -0.0251479, 0.0106034568, -0.0147718079, 0.0139450273, 0.0195120145, 0.000322315114, 0.010376092, -0.00726188673, -0.024638053, -0.00914281141, 0.0293231402, -0.000387553242, 0.0332641266, 0.034035787, 0.0121054407, -0.0268565789, 0.0277935974, 0.00193948869, -0.0316932425, -0.00818512496, 0.0155848078, -0.0267601218, -0.00390309189, 0.0126772979, 0.0172245894, 0.000552909332, 0.0109961778, -0.0364334509, 0.0348901264, 0.0102589652, 0.00570133887, -0.00930816773, -0.00927371904, 0.0194155574, 0.0113062207, 0.0236321371, -0.0246104933, -0.0103623131, -0.0565517694, -0.0261951555, 0.0308664627, 0.0303703956, -0.0180789288, -0.00214618375, -0.0133042727, 0.0564139746, 0.0133042727, 0.00389275723, 0.0249274261, -0.0261538159, 0.0194155574, 0.0368192829, -0.00215996336, 0.0191950817, -0.0250376631, -0.00856406521, 0.023742374, 0.0198702868, 0.00312970788, 0.0156674869, -0.00641443674, -0.00498135109, -0.000702763209, -0.0221990496, -0.036929518, -0.0146202315, 0.0136349844, 0.00679682288, -0.0266498849, -0.00764771737, 0.0350279249, -0.00255785137, 0.0309767015, -0.00157432747, 0.0293782596, -0.0156674869, -0.012181229, -0.0192364212, 0.00476432126, -0.037618503, -0.0196498111, -0.0139588071, -0.0104725501, 0.0204903707, 0.0274904445, 0.023949068, -0.0108032627, 0.0101487283, -0.0118849669, -0.00313832, 0.00799220894, 0.0282207672, 0.0108377114, 0.0318034813, -0.00432337169, 0.00303669507, -0.03651613, 0.0104174316, 0.00404777844, -0.00394443097, -0.0264707487, 0.0113957878, -0.0243211202, 0.00400299439, 0.00136160373, 0.0465201698, -0.000179135721, 0.0395752154, 0.0175139625, -0.00726877665, 0.00439916, -0.0219096765, -0.00491245277, -0.0110168476, -0.0030487522, -0.00277143647, 0.0141034937, -0.00212206948, -0.0127048567, -0.0046781986, -0.0146753499, -0.0124637131, 0.00109462265, 0.0177482162, 0.00111270847, -0.0129115516, -0.00754437, 0.0377838574, 0.0319137201, -0.00748236151, 0.0104243215, -0.0229431521, -0.00948730391, 0.00648678, 0.0157777239, -0.00310731586, -0.0345594138, 0.0294058193, 0.00306080957, 0.0102382954, 0.043654, 0.0276282411, 0.0400437228, 0.0106379064, 0.0331538878, -0.0149096046, 0.00784063339, -0.0402917601, 0.0157915037, 0.0102038467, -0.0342287049, -0.0157501642, -0.00387553242, 0.014964723, -0.0163151305, 0.0379767753, -0.0150060616, 0.0146753499, -0.000787163735, -0.0102382954, 0.00455418136, 0.0267601218, 0.0114577962, 0.00258368836, -0.00424758345, -0.00713786948, 0.0161773339, -0.0178722329, 0.00479188049, 0.0200769808, 0.0241006445, -0.0103554232, 0.00164839323, -0.0241971035, 0.00271459529, 0.0162186734, -0.0030091356, 0.00844693836, 0.00151662505, -0.00427858811, -0.0138416793, 0.00735145481, -0.0254786126, 0.00923926942, -0.02095888, 0.0412287749, -0.005439525, 0.00234598899, -0.0144548751, -0.0190986246, -0.00110065122, -0.0440398306, -0.0171556901, 0.0120365424, -0.00478499103, -0.0425516255, -0.0007075, 0.0143170785, 0.0128908828, 0.0202009976, -0.0197187103, -0.0379492156, 0.0235081185, -0.00899123587, 0.0289924275, -0.028744394, -0.00120399881, -0.0104863299, 0.0147718079, 0.021055337, -0.0120227635, 0.0274353251, -0.0424689464, 0.0456658304, 0.00253890431, 0.00799909886, -0.0123948138, -0.026043579, 0.0168112, 0.00131595857, 0.0072549968, -0.0188368112, 0.00962510053, -0.00128926046, 0.00652122963, -0.0101073887, 0.00248895306, -0.0164804868, -0.00821268372, -0.0197738279, 0.00550497882, 0.0205179304, 0.0235632379, 0.0215376262, 0.00260780286, -0.00720676826, 0.00164494826, -0.0263880696, 0.00636276323, 0.00955620222, 0.00143308577, 0.00185853313, 0.027145952, 0.0196911506, -0.00448183808, 0.00383419357, -0.0248034075, -0.0160946567, 0.00208589784, -0.0164529271, 8.77915809e-05, -0.0202009976, 0.0245140344, 0.0165907238, 0.00708964095, -0.00686916616, -0.0165080465, -0.00477121118, -0.00362405344, -0.00757192913, 0.00685194135, 0.00399266, -0.0107068047, 0.00699318293, 0.000437289244, -0.00875009131, 0.0351932794, 0.00914970133, 0.00948730391, 0.0264569689, -0.00136074249, -0.00766149722, -0.0045197322, 0.00232187449, -0.0310318191, 0.0389413498, 0.0580950938, 0.0134834079, 0.0179824717, -0.0165907238, -0.0235218983, 0.00272320746, -0.0343940593, 0.0279313941, 0.00784752239, 0.0111201946, 0.0016768137, 0.0347523317, 0.0126497382, 0.0248171873, -0.0171281304, 0.0136349844, -0.0267601218, -0.0245002545, -0.00616984768, 0.0101004988, -0.00542574562, 0.0366814844, 0.0175828598, -0.00209451, 0.00788886193, -0.00242177723, 0.0134007307, 0.012477492, 0.0219785757, 0.0112442113, -0.0291853435, -0.00717231911, -0.0123948138, -0.0435713194, 0.00398232508, -0.00011325167, 0.0105345584, 0.0152265364, 0.0110030677, -0.0398508087, -0.0128771029, 0.0167836398, -0.0156399272, 0.0408429466, 0.01217434, -0.00686227623, 0.0400161669, 0.010176287, 0.00772350561, 0.0120572122, -0.00716542918, -0.00361716375, -0.0133938408, -0.00594937289, 0.0144824348, -0.037618503, -0.0138899088, -0.00200666464, 0.00866052322, -0.00547741912, -0.0213447101, -0.0332090072, 0.00543608051, -0.0373980291, 0.00244589173, -0.00897745602, 0.0334846, -0.0415043682, 0.0170730129, 0.04489417, 0.00634898338, 0.00329506397, -0.0110926358, 0.019856507, 0.00860540476, -0.031527888, 0.0231911875, -0.010183177, 0.0231085084, -0.0172521491, 0.0251065604, 0.0123534752, -0.00345525262, 0.0172934867, 0.0230396111, 0.0123810349, 0.0049675717, -0.0294884965, 0.0191813018, -0.00136763242, -0.00932883751, 0.0215927456, 0.0105138896, 0.00212379172, -0.0109341694, 0.0198702868, 0.0219923556, 0.0214687269, -0.0141241634, -0.0330436528, -0.0314176492, -0.00882588, -0.0041511259, -0.00155710289, 0.00862607453, 0.0411736593, 0.0325475819, -0.0120985517, -0.00336396229, -0.00828847196, -0.030039683, 0.00832292158, -0.0350279249, -0.0102314055, 0.0210828967, 0.0122225685, 0.0110512963, -0.0229707118, -0.0186025556, -0.035827145, 0.0153505541, 0.0107274745, -0.00697940355, 0.032520026, -0.0216616429, 0.0383074842, 0.0466304086, -0.0192226414, 0.0197876077, 0.002196135, -0.008777651, 0.0108170416, 0.00359993917, 0.0177068766, 0.00821957365, -0.0167698599, 0.00127978693, 0.000785441254, 0.0357720256, -0.0251341201, 0.00428547757, 0.0132629331, 0.012270797, -0.00643855147, 0.00516048679, -0.00270770537, -0.000493915111, -0.00970777869, 0.00624219095, 0.00870186277, 0.0417248458, -0.00648333551, -0.0112855509, -0.0256715268, 0.0346972123, -0.000751853338, -0.00199288502, 0.0149922827, 0.02264, 0.0194017775, 0.00916348118, -0.000167616789, -0.0163978096, 0.031831041, 0.00998337194, -0.0353035182, -0.021854559, -0.0113544492, 0.03513816, -0.00242694467, 0.00713786948, 0.0241144244, -0.0362405367, -0.010872161, -0.0210691169, 0.0100522703, -0.00126342359, -0.0290199872, -0.00979734585, 0.0229844917, -0.00979045685, 0.0226262193, -0.0108583812, 0.040898066, -0.0281243082, 0.00789575186, 0.00650745, -0.0166182835, 0.0120089836, 0.0387759954, -0.00734456489, 0.00793709047, -0.00773728546, 0.0272148512, -0.00301602553, -0.00655223383, -0.013166476, -0.00051157031, -0.0102314055, 0.00932194758, -0.0119056357, 0.00646955566, 0.0241006445, -0.0190435052, -0.00141413871, -0.013070018, 0.00719987834, 0.00352759589, -0.00974911731, -0.0155434692, -0.0179962497, -0.0362680964, -0.0108032627, -0.019856507, -0.0134076197, 0.0156674869, 0.00311420579, 0.00440260489, -0.0100660501, 0.00603894098, -0.0191950817, -0.0119883139, -0.0180100296, 0.00296779675, -0.0150060616, 0.00668314053, 0.0165356062, -0.00124103168, 0.0254234932, -0.0180927087, -0.0182442851, -0.0190435052, 0.0275869016, 0.00667969557, -0.0114026777, 0.00613195356, -0.00618362753, -0.0509021059, -0.0217718799, 0.0281380881, 0.0167147405, 0.0109548382, -0.0143859768, 0.0173899457, -0.0131871458, 0.0315830074, 0.00869497284, 0.00129098294, 0.0163840298, -0.0178446751, -0.00979045685, 0.00271287281, -0.0177068766, -0.00756503968, 0.0194844548, 0.0249412041, 0.0158604011, -0.00555320736, -0.000676495722, 0.0112166526, 0.0227088984, 0.000422648358, -0.0125395, -0.0242935605, -0.0223506261, 0.00287133898, -0.00730322581, -0.00285583688, 0.00445772381, -0.0339531116, -0.00921171065, 0.0510674603, -0.0172383692, -0.00817134511, -0.0621187575, -0.0149096046, -0.0353035182, 0.00409600744, 0.0231636278, 0.00888788793, -0.0167974196, 0.023149848, 0.0090670241, 0.0061285086, 0.0258368831, -0.00535684731, -0.000114866481, -0.00587702962, 0.0176379792, 0.0356066711, -0.0189332683, -0.0153505541, 0.0134627391, -0.0157777239, -0.0044198297, 0.00346214231, -0.0333468057, -0.000693289738, -0.0188230313, 0.0180238094, 0.00728255603, -0.000185379642, 0.00133576686, 0.028041631, 0.00792331062, -0.00629731, 0.01047944, 0.0187541321, -0.0129184416, 0.0142481802, 0.00740657328, -0.0278211571, 0.018258065, 0.0141241634, -0.0265809856, -0.0089430064, 0.0126979668, -0.0314727686, -0.0110857459, -0.0257542059, 0.00273009739, -0.0110857459, 0.00711031025, -0.0249136463, 0.00694839936, 0.00592525862, -0.00608717, 0.0126428483, -0.019856507, 0.00894989632, -0.0344767384, 0.0106172366, -0.00896367617, -0.0358822644, 0.0229707118, 0.0175277423, -0.00571856368, -0.0345594138, 0.0381972492, -0.0287168343, 0.0252856966, 0.0124568231, 0.0132284844, 0.0281380881, -0.00011077564, -0.0431854911, -0.00128495437, -0.0225573219, 0.0228191353, -0.00314521, -0.00742035313, 0.00484699942, 0.00435437588, -0.027545562, 0.0183683019, 0.00241660979, 0.0119056357, 0.00666591618, -0.0277522579, 0.00671758968, 0.0154745709, -0.0223092884, -0.00199116254, -0.0151025197, 0.0214687269, 0.00904635433, -0.00536029227, -0.000899123552, -0.0139105786, 0.00800598878, -0.00992825348, -0.0392169431, 0.00716542918, 0.0361854173, 0.00862607453, -0.00237871567, -0.0218407791, 0.0157501642, -0.0125188315, 0.00631453423, 0.0136625441, -0.0134420693, 0.0312247351, -0.0147718079, 0.0234116614, 0.00181891664, 0.0158328414, 0.0052087158, -0.00523972, -0.00542919058, -0.00300569087, -0.0161222145, -0.000299923151, 0.0259195622, 0.0311696157, -0.00429925742, 0.0157226045, -0.0225435421, -0.00383074861, 0.0269116983, -0.032933414, -0.00351898349, 0.0194431152, 0.0100522703, 0.00732389512, -0.0151438583, 0.0111339744, 0.00398232508, -0.0139863659, -0.00602171617, -0.0136143155, 0.00471609225, 0.00896367617, -0.00163719722, -0.0281518679, 0.000202927185, 0.00488144858, -0.00351381628, 0.00173968344, -0.005287949, 0.0151851978, 0.0137865609, -0.00520182587, 0.000645060849, 0.0125395, 0.000422863668, 0.00839871, -0.00167078513, 0.00511225825, 0.0162186734, 0.0111201946, 0.030232599, 0.0127599752, -0.00245794887, 0.000784149393, 0.0131595861, -0.00875698123, -0.0178997926, 0.00483666454, 0.0320790745, -0.00078199635, 0.00347936689, 0.027338868, -0.00200838712, 0.00528105907, 0.0198013876, 0.028634157, 0.00799220894, -0.0313074142, 0.0192088615, -0.00688294601, 0.0178033356, 0.0217305422, -0.00402366417, 0.0125532802, -0.035827145, -0.0267601218, 0.00350348139, -0.00450250739, -0.00599071197, 0.0103140837, -0.0234667808, 0.0273939855, 0.0164253674, 0.00548430905, 0.0231085084, -0.000465494522, -0.0021806329, -0.0301774796, -0.0128771029, 0.00985246524, 0.0030728667, 0.0215238463, 0.00174915697, 0.0184096415, 0.0208899807, 0.0015441844, -0.0198151674, -0.0404019952, 0.00419591, -0.0101900669, 0.0302050393, -0.0090670241, -0.00194121117, -0.00919104088, 0.00912214257, -0.00110581866, -0.000610181072, 0.00396510027, 0.0203663539, -0.0130837979, -0.00302291545, 0.00870875176, 0.0240593068, 0.019952964, 0.00903257448, 0.0022357516, -0.00524661, 0.00950108375, 0.0154332314, 0.020449033, -0.043405965, 0.0132147046, 0.0309215821, -0.00566344475, 0.00886721816, -0.00554287294, -0.0140414853, -0.0220474731, -0.0098111257, 0.00106792455, -0.00048228848, 0.0396578945, -0.000106738626, 0.00681749219, -0.0184923187, -0.000201635339, 0.0165080465, -0.0119125256, -0.0141517222, 0.00037635726, -0.00345525262, -0.0084951669, -0.00469886791, -0.0202698968, 0.00149681675, 0.00539474143, -0.0155296894, -0.00914281141, 0.0161773339, 0.000616209698, 0.000411237066, -0.000456882233, -0.0199116245, 0.00290062069, -0.0110650761, 0.00424758345, -0.0197324883, 0.00941840559, 0.00213412661, -0.0110099576, -0.0363232121, 0.0127530862, 0.0346145332, 0.0284136813, 0.0043612658, -0.0138072306, 0.00422002422, 0.000975773, -0.024445137, 0.000869841722, -0.0231222883, -0.0264569689, 0.024954984, -0.0052293851, -0.0112648811, 0.0252581369, -0.00697251363, 0.0126841869, -0.0115129156, 0.000119926204, 0.00261124759, -0.0101969568, 0.0147855869, 0.0144548751, -0.0183545221, 0.0152403163, 0.0052087158, -0.00624908088, 0.0085227266, 0.0092323795, -0.0102658551, -0.00134007307, -0.003393244, -0.00553942798, -0.0209864397, 0.000197113884, -0.00238216063, -0.0020497262, 0.0357444659, -0.0235770177, -0.000306813, -0.0171556901, 0.00684160693, -0.0359925, -0.00777173461, -0.0345594138, -0.0141379423, -0.00122208463, 0.0117265005, -0.000531809172, -0.00368950702, -0.0311144982, -0.00924615934, -0.0169489961, -0.00584258046, -0.00287995138, 0.0141103836, -0.00438193558, -0.000483580341, 0.00685538631, -0.00404777844, -0.00142361224, -0.0260022394, 0.0147442482, -0.00121777842, 0.0204352532, -0.0124430433, -0.00752370059, -0.00602171617, -0.00329161901, -0.00994892232, 0.0477879, -0.00179652462, -0.0177895557, 0.0109686181, 0.0086536333, -0.0160119776, -0.00186542305, -0.030425515, 0.0103416434, 0.0135867558, -0.019360438, 0.0132009247, -0.000354180607, 0.00932883751, 0.0348625667, -0.0188919287, 0.00264569698, 0.00173365488, -0.00424069399, -0.006834717, 0.00388586731, 0.00744102243, 0.0303152762, -0.00934950728, -0.0173899457, -0.0043612658, 0.00275765662, -0.00149337191, 0.0220888127, -0.00779240392, -0.00970088877, 0.0241833236, 0.000436428032, 0.0172383692, 0.0510674603, 0.0297089703, -0.00427169818, 0.0193466581, -0.0303703956, -0.0376736224, -0.00971466862, 0.00622152165, 0.00584602542, -0.0128564332, -0.00217374321, 0.00076175743, 0.00822646357, -0.00101711194, 0.0243349, 0.0200356413, -0.0179962497, -0.00522594, 0.0382523686, 0.0129528912, -0.00307114422, -0.0086536333, 0.00201699929, -0.00536029227, -0.00910836272, 0.0256853066, 0.0136763239, 0.0204903707, 0.00700351782, 0.0438469127, -0.00877076108, 0.016466707, -0.014275739, -0.0212206934, 0.00146839616, -0.00744791236, 0.00174140593, -0.0271183923, -0.0321341939, 0.0100178206, 0.00744102243, -0.000498651876, 0.0202285573, 0.00465408387, -0.030535752, -0.00666591618, 0.0165907238, -0.00531895319, -0.000195068467, -0.00386864273, -0.00619051745, 0.0233289842, -0.0254097134, -0.00130906876, 0.0255199503, -0.0031279854, -0.0168525372, -0.014069044, -0.00422691414, 0.0158052836, -0.00443016412, -0.0236459151, 0.00263880705, -0.0145099936, 0.00883965939, -0.0129804499, 0.0108032627, 0.00477810111, -0.011671382, -0.00225297618, -0.0184372, 0.0137796709, -9.92566929e-05, -0.00861918461, -0.00162772369, 0.0166045036, 0.00774417538, 0.00235287892, 0.0156123675, 0.0204214733, -0.0010050548, -0.00644199643, -0.00482288515, -0.00750303082, 0.00482288515, 0.0015019842, 0.0130286794, 0.00383419357, 0.0129322214, 0.0207384061, 0.0168249793, -0.0101487283, -0.0163978096, 0.0165907238, -0.00641099224, 0.0168938767, -0.0389964692, -0.00923926942, -0.000920654275, 0.01132, 0.00283172238, 0.00552564813, -0.00572200865, -0.0131526962, 0.00351726101, 0.0241419841, 0.0104312114, -0.00700007286, -0.00551186828, -0.00342424819, 0.0367366038, 0.0147304684, 0.0265672058, -0.00641099224, -0.00276110158, 0.0291302241, 0.0201872177, 0.00133748935, 0.013765892, 0.0325475819, 0.0176930986, -0.00311420579, 0.000996442512, -0.0227777958, 0.00217202073, 0.0161911137, 0.00731700566, -0.00909458287, 0.013276713, 0.00368950702, 0.0198978446, -0.025740426, -0.00602860609, -0.022846695, 0.0160257574, 0.0111615341, -0.0149233844, -0.00404433347, 0.030425515, 0.0235081185, 0.00695184432, 0.0066762506, -0.0176242, -0.0105690081, 0.00715853926, 0.010975508, -0.00857784506, 0.0169076566, -0.0321066342, 0.00150629028, -0.00631108927, -0.00616640272, 0.00449906243, 0.0021410163, 0.00579435192, -0.000651089475, 0.00748925144, -0.0113682291, -0.00775795477, 0.00956998207, 0.00613539852, -0.00046377207, 0.0173348263, 0.0128771029, 0.0167009607, -0.00948730391, 0.0150474012, -0.022447085, -0.00290751061, 0.0091014728, 0.0186990146, 0.0117058307, -0.00606305525, 0.0133318324, -0.0345869735, 0.0270908345, -0.00904635433, -0.0148269264, 0.0146064516, 0.012374145, 0.0107205845, -0.0155710289, -0.0108997198, -0.0316105671, 0.0147029096, 0.00206695078, -0.000378940953, 0.0164391473, -0.000939601334, -0.0124085937, -0.00519838091, 0.0100867189, -0.0174312834, 0.0154470112, -0.00393065112, -0.0162186734, 0.00556354225, 0.00898434594, 0.0128013147, 0.013572976, 0.0259333421, -0.0163426902, -0.00941151567, -0.0219234563, 0.00453006709, -0.00246311631, -0.00630075485, 0.00119194156, 0.00207728543, 0.000298846629, -0.00317104673, -0.0147166885, 0.0114509072, -0.00328128412, 0.00474020699, -0.00317621417, 0.00400643935, -0.0239628479, -0.0318861604, -0.00813689549, -0.0316932425, -0.0254923925, 0.00910836272, 0.0128357634, 0.00836426, -0.0190021675, 0.0320239551, 0.01007294, 0.0129528912, 0.00460241036, -0.0252443571, -0.0105690081, 0.0275731217, 0.00107912056, 0.0179273523, 0.00100591604, -0.0294609368, -0.00294195977, 0.00468853302, 0.0160808768, -0.0158879608, 0.0166871827, 0.00388586731, -0.00109892874, -0.00826780312, -0.000542574562, 0.00930816773, -0.00172676507, 0.00133835059, 0.0134145096, 0.0356066711, 0.0147855869, -0.0172934867, 0.00071395922, 0.00302636018, -0.0125532802, 0.0163978096, -0.0055773221, -0.0165218264, -0.00547741912, 0.00962510053, -0.00456796121, 0.00269737071, 0.00920482073, -0.0235907976, 0.00273181987, -0.0167560801, -0.00256301882, -0.000814723084, 0.0155159095, -0.00550842378, 0.0136005357, 0.0109066097, -0.00354826543, 0.0131940348, -0.00102658547, -0.0121192206, -0.00788197201, 0.00368606206, -0.000928405323, -0.0361027382, 0.00737212412, -0.0231360681, -0.00717231911, -0.00106620206, -0.0132078147, 0.0152403163, 0.00345353014, 0.0178860128, -0.0140552651, -0.00555665232, 0.00687261112, 0.0193879977, 0.00870186277, -0.00968021899, 0.0140414853, 0.0200769808, -0.0296814125, 0.00634898338, 0.0124568231, 0.00282483269, 0.0191399641, -0.000104262588, 0.00670381, -0.00810244679, -0.00945974421, -0.0101004988, 0.0153092146, 0.0128082046, 0.0124706021, -0.0241006445, 0.0159017406, -0.0215789657, -0.0180789288, 0.0166458432, -0.0179686919, 0.00606305525, -0.0153505541, -0.0146202315, 0.00769594638, -0.00172332011, -0.00567033468, 0.0242797807, 0.0293231402, 0.00433370657, 0.0390515886, 0.0138761289, -0.0190848447, -0.00864674337, -0.000116481286, 0.00247861841, -0.00872253161, -0.0102865249, -0.0166458432, -0.0269805957, -0.00120744365, -0.00784063339, 0.0208762027, -0.00408911752, -0.0136832139, 0.00107050815, -0.00214446126, 0.013572976, 0.0188368112, -0.0100178206, -0.0335672796, 0.00861918461, -0.00252167974, -0.00269909319, -0.023742374, -0.00661768718, -0.0114509072, -0.0247207303, 0.000527933647, -0.0186025556, -0.00400299439, 0.0237699337, 0.00383419357, 0.00321927574, -1.63364457e-05, 0.024445137, 0.00399266, 0.000317147758, 0.00243900181, -0.00375151541, 0.0170730129, -0.0105690081, -0.00685538631, -0.00801287871, -0.0319963954, -0.0100178206, 0.0100936089, -0.000116696589, -0.0220336951, 0.0178997926, -0.0167836398, 0.00114888011, 0.0167009607, -0.014275739, 0.00400299439, 0.0186852347, 0.0136969928, 0.0277798176, 0.0123465853, -0.0116300425, 0.00379629945, -0.0259609, 0.0156950448, 0.00577368215, 0.014275739, -0.0241282042, -0.00140897138, -0.0192226414, 0.00438538054, 0.0161084365, -0.000323176355, -0.00161308271, 0.0212620329, -0.000244373863, -0.00502269, 0.0221714918, -0.0114440173, 0.0067554838, 0.00969399884, -0.00994892232, 0.0107894829, -0.00809555687, 0.006286975, 0.0104105417, -0.0195946917, -0.00827469304, -0.00884654932, 0.00137021602, 0.0102176266, 0.0104312114, 0.0145651121, 0.038031891, 0.0125946198, 0.0134213995, 0.00937706605, -0.00626286073, 0.0167147405, 0.0148269264, 0.0348901264, 0.00469197799, -0.00279382826, -0.0364885703, -0.0152265364, -0.0160257574, 0.00304014, -0.00332434569, -0.00291612302, 2.95240225e-05, 0.00395476585, -0.0208073035, -0.0138485692, -0.0114577962, -0.00055936852, 0.0061767376, -0.000255569845, 0.00784063339, -0.0058666952, 0.0243486799, 0.00631453423, 0.000378295023, 0.0170454532, -0.00390309189, -0.014964723, 0.00511914771, 0.00643855147, -0.0111890929, -0.000487025245, 0.00737901405, -0.0151162995, -0.0130631281, -0.0204076935, -0.0284136813, 0.00359993917, 0.00472298218, -0.00985935517, 0.0065453439, -0.0153367743, -0.0072549968, 0.00228225812, 0.0025733537, -0.0126566282, 0.013765892, 0.0156123675, 0.0131113576, 0.00307458919, 0.000622668886, -0.00875698123, -0.012270797, 0.0164115876, -0.014275739, 0.0222817287, 0.00418557506, -0.0211104564, 0.0127186365, 0.0107894829, 0.018161606, -0.0205179304, -0.0225848816, -0.020063201, 0.0130837979, 0.00474365195, -0.00120572129, 0.0312247351, 0.0201596599, 0.00424758345, 0.00328645157, -0.0272286311, -0.0107068047, 0.00954242237, 0.00482632965, 0.0218132194, -0.00168198114, -0.0117885089, 0.00702763256, 0.032520026, -0.0185198784, -0.0164942667, -0.0175001826, -0.0288546309, -0.0118298475, -0.00713786948, -0.00729633588, -0.0119883139, 0.00258713332, -0.00125395006, -0.0145651121, -0.00418557506, 0.00989380386, 0.00143308577, 0.019360438, 0.0162048936, 0.0265534259, 0.00236321357, -0.0202974565, 0.00877076108, 0.0222817287, 0.00674859388, 0.0052569448, -0.00661424221, 0.0121536702, -0.00404088851, 0.0110926358, -0.00479532545, -0.00378596457, 0.00219441275, 0.00609061448, 0.0029092331, -0.00827469304, 0.0118574072, 0.0243349, -0.0165080465, -0.0115129156, 0.0243624579, 0.00189125992, 0.0132904928, -0.00897056609, -0.010183177, 0.00109548389, 0.00764771737, -0.0127599752, -0.00561866118, 0.0161359943, -0.0263191722, -0.0326578207, -0.0149509432, 0.00336740725, 0.000729891937, -0.00587702962, 0.0213171523, -0.0123603651, 0.027531784, 0.0133593911, 0.0103692031, 0.00471609225, 0.0155434692, -0.0127599752, -0.000561521621, -0.00663491152, 0.0206970666, -0.00875698123, -0.0157915037, -0.0166320633, 0.00960443076, 0.00110926351, 0.0382248089, -0.00883276947, 0.0073652342, -0.00897056609, -0.00691395, -0.000114112903, 0.0145237735, 0.0328231752, -0.00722054765, -0.00108687161, -0.00863296445, -0.0141930617, 0.0037308461, 0.0177895557, 0.000611903553, -0.00641099224, -0.00328817405, -0.000513292733, 0.00882588, 0.00605616532, 0.008777651, 0.00617329264, -0.00144600426, 0.00293679233, -0.0134971878, 0.00326922699, -0.0133938408, 0.00883276947, -0.00587358465, -0.0206006076, 0.0173348263, 0.00616295775, 0.00327611691, 0.0254923925, 0.000834100705, -0.00918415096, 0.0121605601, 0.00601138175, -0.0196084715, 0.0124843819, -0.00463341456, 0.00558076706, 0.00239249552, 0.00588391954, 0.000184518416, -0.0185887758, 0.00147700857, -0.00388242234, -0.00960443076, -0.0216203034, -0.00102830795, -0.00452662213, 0.0114095677, 0.00519493595, 0.00873631146, -0.00897745602, 0.0110168476, 0.00930816773, 0.00106792455, -0.0100522703, 0.0192364212, -0.00593903847, -0.0111684231, -0.00317965914, 0.0121261105, -0.0289648697, -0.00722054765, 0.00682093715, 0.00959754083, -0.00682093715, 0.00177241024, -0.01007294, 0.0111408643, 0.000592095254, 0.0034483627, 0.00595626282, 0.000928405323, -0.00312626292, 0.0227777958, 0.0186438952, -0.00422002422, 0.0147166885, 0.00786819216, -0.0184785388, -0.00429236749, -0.0150336213, 0.0286617167, 0.0101969568, -0.00439571496, -0.0147166885, 0.0168249793, 0.00242349971, -0.00504335947, -0.0155159095, 0.00399610447, 0.00514326245, -0.00129184418, 0.00812311657, -0.0114371274, 0.0267601218, 0.0010627571, -0.000514154, 0.000973189308, -0.00093701767, 0.0111133046, 0.0190021675, -0.00761326822, 0.00728255603, 0.0047298721, 0.0113613391, -0.00358271459, 0.00903946441, -0.00025104839, 0.0225573219, 0.0286617167, 0.00528105907, -0.00154676812, -0.0148269264, -0.015061181, 0.00777173461, 0.00728255603, -0.00240455265, 0.00285239192, -0.0128771029, -0.0321341939, -0.0148820449, -0.00685538631, 0.0115818139, -0.0169214364, -0.00669692038, 0.00219958, 0.0110444063, 0.0177482162, -0.0292680226, -0.00917726103, -0.0062559708, 0.00948041398, 0.0114095677, 0.00998337194, -0.000810416939, 0.0297916494, -0.00376874, -0.0107343635, 0.00569789391, 0.0101073887, -0.00769594638, -0.018161606, 0.00712409, 0.00403744355, 0.0158879608, -0.0298192091, -0.00778551446, 0.00211862451, -0.00154332316, 0.0230947286, -0.0138967987, -0.00517426664, -0.001122182, 0.00513292756, 0.0203525741, 0.0167560801, 0.0215789657, 0.0118091786, 0.00294023729, -0.00999026187, -0.00364816794, 0.00618707249, -0.00691395, -0.0130011197, 0.0144962138, 0.000464633282, 0.004940012, 0.0227364581, -0.0231774077, -0.0024855081, -0.000866827439, 0.00383074861, -0.0202147774, 0.0209864397, 2.11270344e-05, 0.00194293365, 0.00861229468, -0.00367572741, -0.00471953722, 0.00263363961, 0.0225022025, 0.0186990146, -0.00804732833, 0.0124430433, 0.00563244056, 0.00290406565, -0.010279635, 0.00731700566, 0.00891544763, 0.0109548382, -0.015171418, 0.0113820089, 0.0212895926, -0.0119883139, -0.017362386, 0.00232187449, 0.0124912718, -0.0150474012, 0.0221301522, 0.0343389399, -0.0117816189, 0.023149848, 0.0118849669, -0.00368950702, -0.0152540961, -0.0084882779, -0.0207659639, -0.00702763256, 0.00203766883, 0.0248309672, -0.0174450632, -0.0200218614, 0.0118160686, 0.0195946917, 0.00731011573, -0.00305219716, 0.0058666952, 0.0157501642, -0.000120033852, -0.0223644059, -1.73457e-05, -0.00513292756, 0.015763944, -0.0192915406, 0.0194293372, 0.000268918899, -0.00362405344, 0.0314727686, -0.00964577, 0.0101900669, -0.00987313408, -0.00609405944, 0.00544297, -0.00172159763, 0.0209864397, -0.00529828342, 0.0218958985, -0.00327094947, 0.00893611647, -0.00619051745, -0.00753748, 0.00298674381, 0.0066555813, -0.00721365772, 0.0130837979, 0.0108928299, -0.0316932425, -0.00588047458, 0.0195809137, 0.0172659289, -0.0160395373, 0.000915486889, 0.0123603651, -0.0179411322, 0.0152127575, 0.0258231033, 0.0158466212, 0.00166217284, -0.00743413251, 0.0195395742, -0.00137882831, -0.0133869508, 0.00323822279, -0.0122983567, 0.0124223735, -0.0046506389, -0.00595281785, -0.00801976863, 0.00801976863, 0.000294755766, 0.00923926942, -0.0255888496, -0.00456451625, 0.00884654932, -0.0257955454, -0.008777651, 0.00635242835, 0.0045197322, -0.00583224604, 0.0183820818, 0.018464759, -0.0070448569, 0.0152540961, -0.0217994396, -0.0064971149, -0.00761326822, 0.0223230682, 0.00178446737, 0.0352759585, -0.00701040775, -0.00600104686, -0.0279176142, 0.00567377964, 0.00828158204, 0.00174915697, -0.00956309214, -0.0118780769, -6.19008642e-05, 0.00553942798, 0.000203788426, 0.0261262562, 0.018864369, 0.00631797919, -0.00187920267, -0.00194121117, 0.0161773339, 0.00773039553, 0.0175139625, 0.00810244679, 0.00828158204, -0.0114715761, -0.000583052344, -0.00465752883, -0.00721365772, -0.013070018, 0.00787508208, -0.00919104088, 0.0151162995, -0.011278661, -9.33895717e-05, -0.00427858811, 0.0108652711, -0.000523196883, 0.00287306146, -0.00446805824, 0.0018378637, -0.0140001457, -0.000573578815, 0.0182718448, 0.00556354225, -0.00578401703, -0.02893731, -0.000200451148, -0.0140966037, 0.00412701163, -6.37309786e-05, -0.0263053924, -0.00824024342, -0.00220647, 0.00724810688, 0.00302808266, -0.00540852081, 0.0257128663, 0.00656945817, -0.00524661, 0.000543005182, 0.0350003652, 0.00799220894, -0.00703796698, 0.00116179849, -0.0034483627, -0.00739968335, -0.0175001826, 0.0241695438, -0.00816445518, -0.00179480214, 0.0178446751, -0.0209313203, 0.0471815951, -0.0033622398, -0.0212206934, 0.0145099936, -0.00843315851, 0.00664524641, 0.013076908, -0.0113888979, -0.0221301522, 0.0272975285, 0.00418557506, 0.034035787, -0.0196911506, -0.00837804, 0.0199254043, 0.0105621181, -0.00486766873, 0.00908080302, 0.000895678648, 0.0116576022, 0.0156812668, -0.0244589169, 0.0282069873, 0.00957687106, -0.00861229468, 0.00589425443, -0.00680371281, 0.00986624416, -0.0292680226, 0.00216857577, 0.0132973827, 0.00453695655, -0.00597348763, 0.00779240392, -0.0077028363, 0.0205730498, -0.0120985517, 0.00946663413, -0.00448528305, -0.00230981736, 0.00522249518, -0.00739279343, 0.0050984784, 0.00390653685, 0.0135454172, -0.00195326842, -0.00634553842, 0.00984557532, -0.0115060257, 0.00660390733, -0.00835737, -0.0128495432, -0.0180238094, 0.000847880379, 0.0130493483, -0.00142275111, 0.00706897117, -0.0150887398, -0.0116024828, 0.00553253805, -0.00487800362, -0.00825402327, 0.0209175404, 0.0076546073, -0.00700351782, -0.00545330485, 0.00339668896, 0.00321238581, -0.00379285449, -0.00493312208, 0.00470575783, 0.016962776, 0.00963888, -0.00215996336, 0.013965697, 0.0212482531, 0.00375496037, 0.00718609849, -0.0107205845, -0.0258093234, 0.000442671939, -0.0185060985, 0.00852961652, 0.00503991498, -0.0184372, 0.0125601701, -0.00692083966, 0.0236872546, -0.0182994027, 0.000130368615, 0.0102451853, 0.00324855745, 0.00817823503, 0.000324037595, 0.000578315579, 0.0165631641, -0.0109892879, 0.0081989048, -0.0119676441, 0.0147993667, 0.0263605118, -0.0116231525, 0.0141103836, 0.00804732833, 0.0252168, -0.00786819216, -0.0143170785, 0.00684849638, 0.00802665856, -0.013269823, -0.00676926365, 0.0021014, -0.0253683738, -0.0123603651, 0.00851583667, 0.00295918435, 0.00273870956, -1.47350975e-05, 0.0277246982, 0.00790953171, 0.0245691538, 0.00825402327, 0.00489178346, 0.000580899243, 0.0101211686, -0.0261400361, 0.00641443674, -0.0117402803, -0.00383074861, -0.0178033356, -0.0117678391, -0.00592181366, -0.00437160069, 0.0132009247, 0.00914970133, -8.59614665e-05, -0.0116024828, 0.00331056607, -0.00510881329, 0.018657675, -0.00238905055, -0.00119797012, 0.00260952534, -0.00280588563, 0.00153384963, -0.0311971754, -0.00484699942, 0.0128771029, 0.0222403891, 0.0086536333, 0.017954912, -0.0040718927, 0.00463341456, -0.00364472298, -0.0089430064, -0.00242694467, 0.00608717, -0.00498824101, 0.0122225685, 0.0128426533, -0.0282758847, 0.0110375164, -0.0253821537, 0.00641443674, -0.00689672539, -0.0277246982, -0.00157002127, 0.00930816773, 0.0144273154, -0.01716947, -0.0247620698, 0.0208899807, -0.00130648504, -0.0343665, -0.0165080465, -0.00978356693, -0.00249584299, -0.00372740114, 0.0178584531, 0.0192364212, 0.00457485067, -0.0237974916, -0.00413390156, -0.00568066956, 0.00893611647, 0.00945285428, 0.0114991358, -0.0183683019, 0.00125136634, 0.00973533746, -0.00464719394, 0.0123672551, -0.0192915406, 0.00792331062, 0.000607166789, 0.011175313, 0.0331538878, -0.0177895557, 0.0174726229, -0.00644199643, -0.00952864252, -0.00576334773, -0.0084951669, -0.0100384904, -0.00848138798, -0.00256990874, -0.0191537421, -0.0129184416, 0.000850033481, 0.0118780769, 0.00138055079, -0.00254407176, -0.00479188049, -0.00587702962, 0.00706208171, -0.00216340832, 0.00658323802, 0.00154160068, -0.0140070356, 0.0148820449, 0.00828847196, 0.0196911506, -0.00274559949, -0.0227915756, -0.00577368215, -0.0254097134, -0.00541196577, -0.0243624579, -0.0222679488, -0.00896367617, 0.015763944, -0.00375496037, -0.0100522703, 0.00471609225, 0.000986107741, 0.00608028, 0.0199943036, 0.0151438583, 0.000232316641, -0.0025492392, -0.0177895557, -0.00755126, -0.00888788793, 0.0119056357, 0.0106310165, -0.00759259891, 0.031831041, 0.0257542059, 0.00296262931, 0.00781307369, 0.00998337194, 0.0182718448, 0.00458518555, -0.00861918461, 0.0124912718, 0.0460516624, -0.0131940348, -0.00435093138, 0.0130217895, -0.0379216559, -0.00622152165, -0.0101487283, 0.0175001826, -0.00523972, -0.00325028, 0.0146891298, 0.02973653, -0.00755814975, -0.00604238594, 0.00744791236, -0.00978356693, -0.00988691393, 0.0119125256, -0.00458863052, 0.00417524, -0.00698629348, -0.00174743461, 0.00198082766, -0.00903257448, -0.00747547159, 0.000893956167, 0.0049193427, 0.00713098, 0.00306942174, 0.0173486061, 0.0240041874, -0.0158604011, -0.000134351794, -0.00753059052, -0.00621463172, 0.0126910768, 0.00173796108, -0.0116024828, 0.0170867927, 0.0201596599, -0.0216892026, -0.0220474731, -0.00293679233, -0.0180513691, -0.00236493605, -0.0208073035, -0.00700007286, -0.00937706605, 0.0100247106, 0.0316105671, 0.0138485692, 0.00397543516, -0.00301774801, 0.00924615934, -0.00242177723, -0.000863382535, 0.0143446382, -0.0438744724, -0.0063868775, 0.0048883385, -0.000326190668, 0.00084874162, -0.014964723, 0.0169903338, -0.00709653087, -0.00199116254, 0.0162875708, -0.0130493483, -0.00718609849, 0.0128082046, 0.0133662811, -0.0328231752, -0.00271287281, 0.0120020937, 0.00602516113, 0.000722571509, 0.0055187582, -0.0106999148, 0.00622841157, -0.000474968052, -0.00748236151, -0.0303428359, -0.0151438583, -0.00337257446, 0.018258065, -0.000832808902, -0.00801976863, -0.0273526479, 0.00594937289, 0.00124706025, -0.00940462574, 0.0159981977, -0.00352415093, 0.00390309189, -0.0146064516, -0.000311765063, -0.0313349739, -0.00498479605, -0.0183820818, -0.00300741335, -0.0168112, -0.00509503344, -0.0173486061, 0.0199805237, 0.00434748642, 0.00870875176, 0.0194706749, -0.0283034444, 0.0113957878, -0.0219096765, -0.00440260489, -0.0349728055, 0.012077882, 0.015171418, 0.00743413251, -0.0181753859, -0.0209451, -0.00521216076, -0.00672103465, -0.0195257943, -0.000640324084, 0.00480221538, -0.0179135725, -0.0208348632, -0.00871564168, -0.0145651121, -0.0111684231, 0.00721365772, -0.00647300063, -0.016466707, -0.00194637862, 0.0163151305, -0.00960443076, 0.0113957878, -0.0128771029, -0.00902568456, -0.0151438583, 0.00452317717, -0.0331538878, -0.0284688, -0.00430270238, -0.0186852347, 0.000589942152, -0.0020497262, -0.0109548382, -0.0109961778, -0.00490211789, -0.0108308215, -0.0199391842, 0.0107343635, -0.00151145773, 0.0126290685, -0.0206419472, -0.0242108814, -0.0185198784, 0.0209175404, 0.00422691414, -0.00239421776, -0.0230396111, 7.87217573e-07, -0.0146753499, 0.0117333904, 0.00508469855, 0.0054188557, -0.0072549968, -0.00905324426, -0.00715853926, 0.0058391355, -0.00165786664, 0.00374462572, 0.00660046237, -0.00872253161, -0.00528105907, 0.0118367374, -0.00503647, -0.0024941205, 0.0115060257, 0.0346145332, -0.0152540961, 0.00109203893, -0.00867430307, 0.0171832498, 0.00572200865, 0.0120089836, 0.0228880346, -0.0111201946, -0.0135936458, 0.0200494211, 0.0007919005, -0.0160119776, 0.00295573939, -0.00685194135, -0.0195946917, -0.0229844917, -0.00702418759, -0.014964723, -1.32144896e-05, -0.0310318191, 0.0122294584, -0.00839182, -0.01216745, 0.00810933672, 0.00378940953, 0.0106723551, 0.0165769439, -0.00290234317, 0.0266636647, 0.00115232496, -0.0167560801, 0.035523992, -0.0122845769, 0.0172797069, -0.0168112, 0.0133525012, -0.00192398659, 0.0126290685, 0.00211690203, 0.0119607542, -0.00702763256, -0.00274732197, -0.00313487509, -0.0138416793, -0.0056289956, -0.00445083389, 0.0182442851, -0.0159844179, -0.0231085084, 0.00230809487, -0.0168387592, -0.0144824348, 0.00808866695, 0.00928060897, 0.00804732833, 0.0241695438, 0.00145117159, -0.0221852716, -0.00534306746, 0.0201183204, -0.0132422643, 0.00155796413, -0.0129597811, -0.010382982, 0.00757881906, 0.0273664277, -0.0143170785, 0.0118505172, -0.00253718207, -0.0165356062, -0.00129184418, -0.0057564578, -0.0126290685, -0.0243900176, 0.0176930986, -0.00602171617, -0.0124637131, -0.00965954922, 0.0287995134, 0.0200907607, 0.0101142786, -0.00334673771, 0.0103278635, -0.00624908088, -0.00764082791, 0.0205041505, 0.0112855509, 0.00501580024, 0.003940986, -0.0344491787, 0.0186438952, -0.0216065254, -0.0172521491, -0.0109066097, -0.0154883508, -0.0174864028, 0.00115232496, 0.00106534082, 0.0290199872, -0.00202733418, -0.00731700566, -0.0154745709, 0.0152540961, -0.0131044677, -0.00881899, -0.0231774077, 0.0229293723, -0.000188716906, 0.0125532802, -0.017362386, 0.00440260489, -0.000795776, -0.0201321, 0.0114302374, -0.00552220317, 0.0270908345, 0.00172934879, -0.00338463183, -0.00763393799, 0.00062654441, -0.00814378541, 0.0155434692, 0.0118022887, 0.0025406268, -0.00195843587, -0.000661424245, 0.023742374, 0.020063201, -0.0180238094, -0.00444394397, 0.00152954354, 0.0111546442, 0.00308664632, -0.031527888, 0.0023701035, 0.0130562382, 0.0145788919, 0.00199633, 0.000273440353, 0.0218821187, 0.00587014, -0.000395089, 0.00118160679, 0.00272837491, -0.000132844638, 0.00144169806, 0.0072343275, -0.0140483752, -0.0031589896, 0.00797154, -0.0190159455, 0.00860540476, 0.00671069976, -0.00384108326, -0.0174312834, -0.00755814975, -0.00552220317, -0.00439571496, 0.0210966766, 0.00295401714, -0.00774417538, -0.0374255888, 0.000543866423, -0.00599415693, 0.0132629331, 0.0245829336, -0.0120916618, 0.017555302, 0.0148407063, -0.00188781496, 0.0064661107, 0.00724121742, 0.0248309672, 0.0134627391, -0.0146753499, -0.00720676826, -0.0288546309, -0.0121261105, 0.0238112714, 0.0144548751, -0.00674859388, 0.00137538346, -0.00268014614, -0.000987830223, 0.0072343275, -0.00331573328, -0.000471092499, -0.00975600723, -0.0168387592, 0.0120365424, 0.0199943036, 0.00674859388, 0.00954242237, -0.0141517222, 0.0140277054, 0.0224333052, 0.0277109183, -0.00611128425, 0.0176379792, -0.0103623131, 0.00806110725, 0.0108101517, 0.0265258662, -0.0118022887, -0.00920482073, -0.0199254043, 0.00539129646, 0.0116851609, -0.0120296534, -0.00947352406, 0.0073652342, 0.0110306265, 0.0232049655, 0.0105621181, 0.0147166885, -0.00327439443, -0.00939084589, -0.0120020937, 0.0091014728, -0.00746858167, 0.0111615341, -0.00424413895, -0.0104587702, -0.00904635433, 0.0166320633, -0.0142895188, 0.00577368215, -0.0273526479, -0.0181340482, 0.0266636647, -0.00241144258, -0.000628266891, -0.00943907443, -0.00652467413, -0.00265603163]
|
29 Jan, 2021
|
Fabric.js Group cornerSize Property
29 Jan, 2021
In this article, we are going to see how to set the cornerSize of a Group of the canvas using Fabric.js. The Group in Fabric.js is movable and can be stretched according to requirements. Further, the Group can be customized when it comes to initial stroke color, height, width, fill color, or stroke width.
To make it possible we are going to use a JavaScript HTML5 canvas library called Fabric.js. After importing the library, we will create a canvas block in the body tag that will contain the Group. After this, we will initialize instances of Canvas and Group provided by Fabric.js and scale controlling corners of the Group using the cornerSize property.
Syntax:
fabric.Group([canvas1, canvas2], {
cornerSize :Number
});
Parameters: This property accepts a single parameter as mentioned above and described below:
cornerSize : It specifies the size of the controlling corners.
Below example illustrate the use of Fabric.js Group cornerSize property in JavaScript:
Example:
HTML
<!DOCTYPE html>
<html>
<head>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;width: 400px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Group cornerSize Property
</b>
</div>
<div style="text-align: center;">
<canvas id="canvas" width="500" height="300"
style="border:1px solid green;">
</canvas>
</div>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a circle instance
var circle = new fabric.Circle({
radius: 100,
fill: 'lightgreen',
scaleY: 0.6,
originX: 'center',
originY: 'center'
});
// Initiate a text instance
var text = new fabric.Text('GeeksforGeeks', {
fontSize: 25,
originX: 'center',
originY: 'center'
});
// Initiate a Group instance
var group = new fabric.Group([ circle, text ], {
cornerColor: 'red',
cornerSize : 20
});
// Render the Group in canvas
canvas.add(group);
// Center the Group in canvas
canvas.centerObject(group);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js Textbox cornerStyle Property/Fabric.js Textbox cornerSize Property/Fabric.js Group cornerSize Property
|
https://www.geeksforgeeks.org/fabric-js-group-cornersize-property?ref=asr4
|
CSS
|
Fabric.js Group cornerSize Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, Fabric.js Textbox cornerSize Property, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js Textbox cornerStyle Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Fabric.js Group cornerSize Property, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0314106159, 0.0401839279, -0.010729705, 0.0386946313, 0.0238558222, 0.0113931186, 0.000711646804, 0.0368803963, -0.0157188475, -0.0274978299, 0.00976843107, -0.00178038632, 0.0105401576, -0.0270916577, 0.00884777494, 0.0178580191, -0.0401026942, -0.00312583032, -0.0276061427, -0.022867471, 0.0260220729, -0.0432166792, -0.0187786762, 0.0177767854, -0.00743294368, 0.0320875719, 0.0270239618, 0.0216354169, -0.0483885966, 0.0212427843, 0.0162062533, -0.0102287596, -0.0355806462, -0.0265500955, -0.0175195429, -0.0171946045, -0.0064005903, 0.0649874881, -0.0352557115, -0.0177632459, 0.00626181485, 0.0186703634, -0.00827236567, 0.0346058346, 0.00655290484, -0.0112915756, -0.0234090332, 0.00646490091, -0.0316814, -0.0346599929, -0.00304628839, -0.0112035712, 0.0170321371, 0.000144592923, -0.0210396983, 0.0103506111, 0.00395340519, 0.0384509303, -0.00432911422, -0.0152449813, 0.020227354, -0.0993766934, -0.0452475362, -0.0160979424, -0.0325749777, 0.00276027573, -0.0139452312, 0.0133495126, 0.0165988859, -0.0198076442, -0.00875977147, 0.0100392122, 0.012408548, 0.00415987615, 0.00207147608, -0.0365013033, 0.0428375825, 0.0207147617, -0.0486593805, 0.032872837, -0.00760218175, -0.00582856499, -0.0135729071, 0.00892901, 0.000873269339, -0.0235308856, 0.0134307472, -0.0436770059, -0.0173029173, 0.0112848058, -0.00203255122, 0.0312210713, 0.0265500955, -0.0369616337, -0.00300905597, 0.00660367636, 0.00522607705, -0.0110546416, -0.012307005, -0.0179121755, -0.00707415864, 0.0412941314, 0.0389383361, -0.0379635207, -0.0170592144, -0.0337934904, 0.0397777557, -0.00628889306, 0.028215399, -0.00922009908, 0.0429729745, -0.036338836, 0.0181152616, 0.0525315516, -0.0574056134, 0.0252368059, -0.0156917702, -0.0323854312, 0.0204439797, 0.0240182914, 0.0137082972, -0.0034456905, -0.00596057065, 0.0313835405, -0.0421877094, 0.0333060846, -0.0205387529, 0.0277279932, 0.0247494, 0.000862268847, -0.039154958, 9.90572589e-05, 0.0198076442, -0.0161385592, 0.0321417265, -0.0238287449, 0.0211886279, 0.00397371408, -0.00919979066, -0.0189276058, -0.00950442, -0.00978873949, 0.0304628834, 0.0332248509, -0.0270239618, -0.00283135567, 0.0111358762, 0.0276196804, -0.028350791, 0.0249254089, -0.0380447581, -0.0145951062, 0.0135593675, -0.0134239774, 0.0431896, -0.0215000268, -0.0292985253, 0.0179934092, 0.0290548205, -0.0124627044, 0.0488760024, 0.00798127521, 0.00152737508, 0.0366908498, -0.0353640243, -0.00171692192, 0.00342199719, -0.0147169577, -0.0498778932, 0.0168425906, 0.00189208356, 0.00101035228, -0.00629227795, 0.0232194867, -0.0290819, -0.0245056972, -0.0156646911, -0.0504465364, 0.0220551286, -0.0204845965, -0.0377469, 0.0193608552, 0.023585042, 0.0622255169, -0.0161656365, -0.000662990788, 0.0361763649, 0.00933518168, 0.011860216, -0.0108447867, 0.013335973, 0.0304899625, 0.0469263792, 0.0193473157, 0.0166665819, -0.0269021112, 0.018101722, 0.0219468158, -0.0220280495, -0.0233954936, 0.0110072549, -0.0141889341, 0.00207147608, -0.0398589894, 0.0171133708, 0.00525315525, -0.0312210713, -0.0417815372, 0.0398860686, -0.0210396983, 0.00882069673, -0.0125777861, 0.00840775575, 0.00710123684, -0.0115962047, -0.0120294541, -0.00182438828, 0.00206978363, -0.0124965515, 0.00376724335, -0.00075353327, 0.0204981361, 0.0140129263, -0.0273895171, -0.0298942439, 0.0137624536, 0.0136541417, 0.0242755339, -0.0208501518, -0.0558350794, -0.00411248906, -0.00620765891, -0.0442185663, 0.0179934092, 0.0412670523, 0.00349984691, -0.0110411029, -0.00357769639, 0.00678645354, 0.00577440858, 0.0115691265, 0.0248577129, -0.0386404768, -0.0234631896, 0.0388841778, 0.0389383361, 0.00113389618, 0.0205929093, -0.000667221786, -0.0293256026, -0.0478741154, -0.0190088395, 0.001349675, -0.00665106298, -0.0175466202, -0.00896285754, -0.0155699179, -0.0182506517, 0.0401297733, 0.0482261293, 0.0348495394, 0.0328999124, -0.0379364453, 0.00268411846, -0.0118399076, -0.0104453843, 0.0155969961, -0.0175737, 0.00591995381, -0.0186703634, -0.0155969961, -0.053858377, 0.012753794, -0.0251691118, -0.0555643, 0.0501486771, -0.0282966346, -0.0196993314, 0.047170084, 0.024546314, -0.0028178168, 0.0131938132, 0.0147440359, 0.0473867059, -0.0276603, -0.0157459266, 0.0063972054, 0.0273624398, -0.0281883217, -0.0201596599, -0.0184808169, -0.0320063345, 0.0256835949, 0.00283135567, 0.00727047492, -0.0216354169, 0.00859730225, -0.0277279932, -0.0224477611, -0.0319792591, -0.0211480111, -0.0439477861, -0.0118399076, -0.0315460078, 0.0273489, 0.0249795653, 0.0217437297, -0.0135932155, -0.0200378075, 0.0110546416, 0.0277144536, -0.0311669149, -0.0400214605, -0.0157188475, -0.00939610694, -0.00702000223, 0.0599509552, 0.0022830239, -0.00892901, -0.00112374197, -0.0232601035, -0.0235308856, 0.0193473157, 0.0469805375, 0.0417544581, 0.00840775575, -0.0444893502, -0.0156376138, 0.0198211838, 0.00174653868, -0.0163822621, 0.00223902194, -0.013268278, 0.00937579852, 0.0196316354, 0.0269698054, -0.00869207643, -0.01597609, -0.0411045849, 0.0302733369, 0.0150418952, -0.00948411133, -0.0415107571, -0.00955180638, 0.0470076129, -0.0343621336, -0.00779849803, -0.0124153178, 0.0455453955, 0.00948411133, 0.000951118942, 0.0216354169, -0.011108798, 0.00470143836, -0.0182235744, -0.0134442858, 0.00873946305, -0.0229757838, -0.0363659151, -0.0197399482, 0.0190223791, -0.00425464939, 0.0110343331, 0.0110207945, -0.0143784806, -0.00776465051, -0.0157188475, 0.00796096679, -0.0162739493, 0.00222886773, -0.0181829575, -0.0196045581, -0.0216083396, -0.0148929656, -0.00953826774, -0.0174383093, 0.00921333, -0.0273624398, -0.0527752526, 0.000374016527, -0.029000666, 0.0291902125, 0.0100324433, 0.0026722718, 0.0471430048, 0.0489301607, -0.0131938132, -5.69526355e-06, 0.0308961328, 0.0252097286, -0.0283237118, 0.0303545706, 0.0298671648, 0.0127334855, 0.00243195356, -0.0141618559, -0.021324018, -0.0303004142, -0.00282966346, -0.0196316354, 0.000834767648, 0.0108921733, -0.0309502892, -0.0500132851, 0.000189017956, -0.0229216274, -0.0275384467, -0.0161656365, 0.0252097286, -0.0159896296, 0.0100595215, 0.0104047675, -0.0208907686, -0.0365013033, 0.068399325, 0.0268614944, 0.015326215, 0.0443810374, 0.00401433092, -0.00489775464, 0.0770101696, -0.0145951062, -0.0320334136, -0.00331199239, -0.0195910186, -0.0243026111, -0.0228403937, 0.00185654347, 0.0114134271, 0.00413956726, -0.0833464488, 0.0359326638, -0.0209990814, -0.0340913497, 0.0265907124, 0.0141347777, 0.0275249071, 0.0446788967, 0.0228268541, 0.0220145099, -0.00207316852, 0.0185891278, 0.0166395046, -0.0351744778, -0.0418627709, 0.029379759, -0.0434333, -0.0216489565, 0.0236391984, 0.0400485359, -0.0284320246, -0.011345732, -0.053479284, -0.0157594644, 0.00363523746, -0.0140129263, 0.0437040851, 0.00949765, -0.000276916078, -0.00761572085, -0.021838503, -0.0255888216, -0.017005058, 0.0312481485, 0.0328186788, 0.00110174099, -0.014364942, -0.00447804388, 0.0100527517, 0.00832652114, -0.00384170818, 0.0221092831, 0.020877229, 0.0121174585, -0.00216117245, 0.00779849803, 0.00188192923, -0.0116029736, 0.013505212, -0.0112644974, 0.0256700572, -0.00284658722, -0.0235308856, 0.0326562114, -0.0250201821, -0.0367720835, 0.025263885, -0.0229893234, 0.000207528399, 0.00970073603, 0.0334685557, 0.024343228, -0.00361154415, 0.0102219898, 0.0180611052, 0.0375031941, 0.0168561283, -0.0390737243, 0.0411316641, -0.00450850697, -0.0199024174, -0.00176346244, -0.0208366122, 0.0514484271, 0.0327645242, -0.00203932077, -0.015461606, 0.00300736353, -0.0471159257, 0.0150689734, -0.0411587395, 0.0295693055, -0.0428917408, -0.0125236297, -0.00919302087, -0.0513671897, 0.0113525009, -0.00351338601, -0.0138910748, 0.000485713768, -0.00725693582, -0.00986997411, -0.00884100609, -0.00668491051, 0.028350791, 0.0455183163, 0.00681014685, 0.00116520526, 0.0324125066, 0.0158948563, -0.000942657, -0.00863792, 0.014500333, 0.020362746, 0.0117451344, -0.0355264917, -0.0265094787, -0.0436770059, 0.00303105684, -0.0168425906, -0.0526940189, -0.00918625202, -0.0348495394, 0.00888162293, -0.00118805247, 0.0419981629, 0.00635997299, 0.0172893796, -0.0179392528, 0.00248610973, -0.0225289948, -0.00404479401, -0.0133901294, -0.0100595215, 0.0241942983, -0.0110952593, 0.0309773684, -0.0109260213, -0.0109260213, -0.00977520086, 0.0451933816, -0.00238287449, 0.022867471, 0.0245598536, 0.0016703814, -0.0351744778, -0.0130922701, 0.0226779245, -0.0118534463, 0.0182641912, 0.03195218, -0.0393986627, -0.00810312666, 0.00224409904, 0.0253992751, -0.00262150029, 0.0216083396, -0.0359055847, 0.00714185368, 0.0209855419, -0.00666460209, -0.0252368059, 0.00542916264, 0.0266448688, -0.0010247376, 0.00101796805, -0.010560466, -0.0247764792, -0.0639043599, -0.0231111739, 0.0190088395, 0.0202002767, -0.0142160123, -0.00650890265, -0.0160167068, 0.0440290198, 0.0270916577, -0.00621781312, 0.0199294947, -0.0382884592, 0.0339288823, 0.0056085554, 0.00681353174, -0.00131075014, -0.0274978299, -0.00781880692, 0.0246004704, 0.0138030713, 0.0167478155, -0.00737201795, 0.00645136181, -0.00725693582, 0.0186839011, -0.0360409766, -0.0215000268, -0.00338138, 0.0164634958, 0.00198008749, -0.0288111176, -0.00810312666, 0.0248441733, -0.011826368, 0.0302733369, 0.0127402544, 0.0274842903, -0.0264417827, 0.00249287928, -0.00950442, 0.0175466202, -0.0276467595, -0.0272676647, 0.00103150704, -0.0187109802, 0.0146492627, 0.0151502071, 0.00788650196, -0.00104504614, 0.0167613551, -0.007954197, 0.0111561846, -0.0125913247, 0.000593603123, 0.0126657896, 0.0257648304, -0.00970750581, -0.00360815926, -0.0359868184, 0.0118466765, -0.0103032244, -0.0141347777, -0.0162333325, -0.0110343331, -0.012821489, 0.0139046144, 0.00251995749, 0.0198888779, -0.00832652114, 0.0425668024, 0.0102964547, 0.0080422014, -0.0127808722, -0.0206876826, 0.00882069673, 0.0045558936, -0.0180204883, 0.000239683664, 0.0123205436, 0.00233548763, -0.00212055515, 0.0066442932, -0.017451847, -0.00468451437, 0.00840098597, 0.0107770916, -0.00470143836, -0.0152043635, -0.00457281712, 0.0348495394, 0.0331436172, 0.00115505105, -0.00259780698, -0.0363117568, -0.00718924031, 0.0161385592, -0.013369821, -0.00391617278, -0.0244380012, 0.0275519863, 0.00997151714, 0.011176494, 0.0330353044, 0.0182100348, 0.0242619943, 0.0106755486, 0.00807604846, -0.0150012774, 0.00712154526, -0.0110952593, 0.0086176116, 0.0133495126, -0.0312481485, 0.00326629798, -0.000872423116, 0.0212021675, -0.0251555722, 0.0497966595, -0.019198386, 0.0163822621, -0.0130651919, 0.0033221466, 0.00741940457, 0.0375031941, -0.00463035842, 0.0129907271, -0.0104792323, -0.0110884896, 0.00289566629, -0.0140264658, 9.11771058e-05, 0.0130787315, 0.00826559588, 0.0042952667, 0.0163416453, -0.0300025549, 0.00887485314, 0.00263165473, 0.019198386, -0.0123747, 0.00515161222, -0.00174146146, -0.00761572085, -0.0189005267, -0.0139858481, -0.00256903656, -0.0325479, 0.0228268541, 0.00106535468, -0.00685753347, -0.0156917702, -0.0176684726, -0.00739232637, -0.0295963846, 0.00022593305, 0.000592333847, -0.0115420483, -0.0412670523, -0.0280258525, -0.00878008, 0.0175601598, 0.0285132583, -0.0199294947, -0.0338205695, 0.0315460078, 9.42974293e-05, 0.027254127, -0.0242619943, -0.00074718683, 0.0169779807, -0.00535131339, 0.0316001661, -0.00135559833, 0.0257783681, -0.0527752526, 0.0417003036, 0.0174653865, 0.015529301, -0.032493744, -0.026739642, 0.0178986359, -0.0195368621, 0.0146357231, -0.0199294947, -0.00591995381, 0.00591318402, -0.00169661338, 0.0307878219, 0.0180069488, -0.00458974112, -0.00629566237, 0.00580148678, -0.000551293546, 0.018169418, 0.0341996625, 0.0297046956, 0.0167884342, -0.0156511534, 0.0084754508, -0.0385863185, 0.00666798651, 0.0223800652, -0.0058387192, 0.00476236409, 0.0024150298, 0.0145409498, 0.00144360214, -0.0082859043, -0.0178850982, -0.00215948, 0.00127267162, -0.0351744778, -0.00395340519, -0.00597410975, 0.0149065042, 0.0061670416, 0.0224612989, -0.0121580753, -0.0145138716, -0.000130419226, -0.0281612426, 0.014500333, -0.0165311918, -0.00584548898, -0.0104927709, 0.00129382638, 0.0136067551, -0.0149877388, 0.0375302732, -0.00314783119, 0.0127267158, 0.00864469, -0.00334753236, -0.0211073942, 0.0123002352, -0.0149606606, -0.0396965221, 0.0391820371, 0.0382884592, -0.00840775575, 0.0150825121, -0.0101881418, -0.00884777494, -0.00551039726, -0.0508797839, 0.0385050848, 0.00114743528, -0.00148083456, 0.0284320246, 0.044083178, 0.00752771692, 0.0348495394, -0.0103912279, 0.0315189287, -0.00060798839, -0.0265771728, -0.00722985761, 0.00118043669, 0.0175601598, 0.058001332, 0.0186432842, -0.00497221947, -0.00369954808, -0.000895270321, -0.0204575192, 0.0238829013, 0.030029634, -0.00231517921, -0.0148388091, 0.00563901803, -0.0157459266, -0.028865274, -0.00464389753, 0.00039707523, 0.0191442296, 0.0175872389, 0.0282424781, -0.0308419764, 0.00194793218, 0.0171946045, -0.0166530423, 0.0444081165, 0.00890870113, -0.00746002188, 0.0377469, 0.0191577692, 0.00862438, -0.0167884342, -0.0271322746, -0.0141753955, -0.0379635207, -0.0140806213, 0.0194014721, -0.0328186788, -0.0293526798, 0.00699969381, -0.00331537705, 0.00556116877, -0.000735763228, -0.0397777557, 0.00289735873, -0.0486052223, -0.00965334941, -0.0341996625, 0.0152043635, -0.042783428, 0.0273082834, 0.0615214854, 0.013918153, 0.0115691265, -0.00543931732, 0.0225696117, 0.00819790084, -0.0161250196, 0.0135729071, -0.0254669711, 0.0336039439, -0.0228133146, 0.0317897126, 0.0264688618, -0.0127741024, 0.0199024174, 0.0208501518, 0.0130584231, 0.00311567611, -0.00791358, 0.0199294947, -0.00137336832, -0.00107889378, 0.044976756, 0.0153397545, 0.0162062533, -0.00141483173, -0.0165041126, 0.0100730602, 0.0207959954, -0.0337934904, -0.0182641912, -0.0388571, -0.0141753955, -0.0186703634, 0.00558147719, 0.00403802423, 0.0364742242, 0.0347953811, -0.00731786154, 0.0204981361, -0.0131125785, -0.0108786346, 0.00671875803, -0.0424855687, -0.00164499576, 0.0248577129, -0.024546314, 0.0251420327, -0.00366231566, -0.0298400875, -0.0260762274, -0.0126454812, 0.00869207643, 0.0102287596, 0.0225154553, -0.0298942439, 0.023070557, 0.0398589894, 0.000929117959, -0.00512114912, 0.00370970229, -0.0125980945, 0.0222988315, 0.0135593675, 0.0169373639, 0.00815728307, -0.00737878727, 0.00213409425, 0.00440019416, 0.0402651615, -0.0164905749, 0.00684399437, 0.0236933529, 0.0304358061, 0.0042377254, 0.00994443893, 0.0128079504, 0.0133765908, -0.00419372367, 0.00181931106, 0.0189005267, 0.0174789261, -0.0126657896, -0.00806928, -0.0179527923, 0.0283237118, 0.00512791891, 0.0213646349, -0.0136270635, 0.0354723372, 0.00804897118, -0.00604519, 0.00418356946, -0.0182235744, 0.0108244782, -0.0158407, -0.0366908498, -0.0123882396, -0.00190562266, 0.0149065042, -0.00241672201, 0.0219874326, 0.0132547393, -0.0354723372, 0.00966688804, -0.00661044568, -0.0129365716, -0.00845514238, -0.0326291323, -0.0169915203, 0.0136338323, 0.00603503548, 0.00725693582, -0.00378755177, 0.0349849276, -0.0590844564, -0.0045829718, 0.0233819559, -0.0120903803, 0.0100933686, 0.0313564613, -0.00441034837, 0.0137150669, -0.0143920202, 0.0262522362, -0.00204609032, 0.00336276391, -0.0074667912, 0.0182371121, -0.00601134216, 0.0140806213, -0.0180881824, 0.00860407203, 0.0131193483, -0.0167071987, -0.00799481478, 0.00624827575, -0.0236391984, -0.0175195429, -0.00261980807, 0.0105063105, -0.0243161507, -0.034145508, -0.0123205436, -0.0169779807, -0.0091388654, 0.0265094787, 0.0105536971, 0.00534115871, -0.0108854035, -0.00462020421, -0.0193066988, -0.00217471132, -0.0200107303, -0.00550024305, -0.0139858481, 0.0169779807, -0.000181296462, 0.000596564787, 0.019848261, -0.00896285754, -0.0352015533, -0.0158948563, 0.0102558378, 0.00934195053, -0.0118331378, 0.0114201969, 0.00352692488, -0.0596260168, -0.00603842037, 0.00550701236, 0.00530054187, 0.00564578781, -0.00498575857, 0.00739909615, -0.0256159, 0.0205387529, 0.00311567611, 0.0103912279, 0.0190359168, -0.0156646911, 0.00179731008, 0.00809635781, -0.0147846527, -0.00747356098, 0.0266448688, -2.95373611e-05, 0.0230299402, -0.00635658856, -0.000568217423, -0.00174992345, 0.0256835949, -0.019469168, -0.0150960516, -0.0243703071, -0.022041589, 0.00115420483, 0.0115420483, -0.00614334829, 0.00463035842, -0.0207689162, -0.0171810668, 0.0489843152, -0.00466420595, -0.000934195123, -0.0391278826, -0.00680676196, -0.0398048349, 0.0159625504, 0.0316001661, 0.00977520086, -0.0294068363, 0.0145951062, 0.00085846096, 0.0151772853, 0.00540885422, -0.00362846791, -0.0141618559, -0.00573717616, 0.00781203713, 0.0392091163, 0.000219798167, -0.00836713891, 0.0179798715, -0.00678645354, -0.0148929656, 0.0111358762, -0.0198211838, 0.00160522468, -0.017072754, -0.00064649008, 0.0105672358, -0.0110004861, -0.0151637467, 0.0250878762, -0.00406848732, -0.0037604738, 0.00590303, 0.00236764294, -0.00586241251, -0.0066206, 0.000605026726, -0.017072754, 0.0158948563, 0.0178038627, -0.0320604928, 0.00986320432, 0.028350791, -0.0274707507, 0.00454573939, -0.0165988859, -0.0221769791, -0.0176278558, 0.00915917382, -0.029758852, -0.016558269, 0.0085905334, -0.00905763078, 0.0019259312, -0.0177090894, 0.0102287596, -0.0469534583, -0.0196316354, -0.00171269104, -0.0300567113, 0.0120971492, -0.00156460749, -0.00746002188, -0.0446518175, 0.0313835405, -0.019848261, 0.00762926, -0.00598426443, 0.0246546268, 0.0371241, 0.00297351601, -0.032493744, -0.00611965498, -0.0212157052, 0.0261033066, 0.00352354022, -0.021391714, 0.00521592284, 0.00273150532, -0.0327645242, 0.0181152616, 0.00109920243, 0.0104521541, 0.00230502477, -0.0220551286, -0.000781880692, 0.0334685557, -0.0242484547, 0.0146763399, -0.0253180414, 0.0330353044, 0.00653936574, -0.0118331378, 0.00930133369, -0.0157053079, -0.0131735047, -0.00605534436, -0.0450579897, 0.0194420889, 0.0318980254, 0.00708092796, -0.0143107856, -0.0132953562, 0.0186026674, -0.0099579785, 0.013335973, 0.0143243251, -0.030408727, 0.0207689162, -0.01381661, 0.0260356106, -0.000759456598, 0.0142837074, 0.000551293546, -0.0196857918, -0.00193270075, -0.0163958017, -0.00415310636, -0.00941641536, 0.0283237118, 0.0240453687, 0.00179731008, 0.00704708043, -0.0331436172, 0.00641074451, 0.0234090332, -0.0186432842, -0.0108989431, 0.0233142599, 0.000252799626, 0.0215135645, -0.0011254343, 0.00562547892, 0.00173046102, -0.000765803037, 0.0011212033, -0.000508137804, -0.00262150029, -0.00329168374, -0.0154751446, -0.0300025549, 0.00410571974, -0.00778495893, 0.0078255767, 0.00602149684, -0.00156545371, 0.0130516533, 0.00699292403, -0.00930810347, 0.0206335261, -0.00696584582, 0.0119752977, 0.0110749509, 0.0170456748, 0.0117992898, 0.0339288823, 0.0131328879, 0.0169915203, 0.0263740867, -0.00532085029, 0.000435365364, 0.0175195429, 0.00420049299, -0.0288381968, 0.00817082264, 0.0045558936, 0.00680676196, 0.0128891841, -0.000270569639, -0.00691507477, -0.00808958802, 0.0138301495, 0.0360138975, -0.00480298139, -0.0216895733, 0.00785942376, 0.0121648451, -0.0118872942, 0.0312481485, 3.8673582e-07, 0.00152399042, -0.0226508453, -0.022867471, 0.00905763078, -0.00571348285, -0.00446450477, 0.00908470899, -0.0136812199, 0.0138775362, -0.000250261044, -0.00271627377, 0.0180069488, -0.00336614856, -0.01165713, -0.0226102285, -0.00319691049, -0.0163145661, 0.00463035842, 0.00420726277, 0.00280597014, 0.0161250196, 0.00469128415, 0.00788650196, -0.0205793697, -0.00678983843, 0.027118735, -0.0140670827, 0.0295693055, -0.0146492627, 0.00805574, 0.00760895154, 0.0165988859, -0.0115217399, -0.00195639418, 0.00488421554, 0.0159354731, 0.00882746652, -0.0116300518, 0.00462020421, 0.0254669711, -0.00103066093, 0.0203085896, -0.00425464939, -0.00620427402, 0.00602488127, 0.0180340279, 0.0270510409, -0.0171810668, 0.00180915685, 0.028865274, 0.0100730602, 0.00911855604, -0.0131125785, -0.00777142029, -0.0195639413, -0.00106366235, 0.0109463297, 0.00221025152, 0.033387322, 0.0080151232, -0.00720954919, -0.0248035565, -0.000110533729, 0.0126928678, -0.00968042761, -0.0123543916, -0.000484444463, 0.00293628359, -0.00675260602, -0.0043223449, -0.0209855419, -0.00180577207, 0.0210261587, 0.000388401764, -0.00664767809, 0.0230570175, -0.00692184409, -0.00130398071, 0.00636335788, -0.0104453843, -0.0028178168, -0.0192525424, 0.00144698692, -0.0309773684, 0.0219468158, 0.00972104445, -0.0114946617, -0.0442185663, 0.0180204883, 0.0165718086, 0.0216760337, 0.00254534325, -0.00145714125, 0.0133292042, -0.00270781177, -0.0105401576, -0.00728401402, -0.0239235181, -0.0437040851, 0.0272947438, -0.0110614114, -0.0127334855, 0.0105536971, -0.0186162069, 0.0015282213, -0.0112780361, 0.0124694733, 0.00909824762, -0.0101746032, 0.00594026223, 0.00573717616, -0.0320875719, 0.0173299965, 0.0153668327, -0.0106417006, 0.00497221947, -0.00187685213, -0.00400417671, -0.000342072803, -0.00206978363, -0.0188328307, -0.00878685, 0.00135729066, 0.007954197, 0.00693876809, 0.0381259918, -0.0172623, -0.0045525087, -0.014364942, 0.00113135763, -0.0329540707, -0.00454235449, -0.0328457579, 0.00316137029, -0.00314275408, 0.0202679727, 0.00061645027, -0.0175737, -0.0290548205, 0.00441034837, -0.0317897126, -0.00681691617, -0.00649536354, -0.00505006919, -0.00655967416, -0.00845514238, -0.00139790785, 0.0079271188, 0.00663752388, -0.0135322902, -0.00467774505, 0.0208907686, 0.0137218367, -0.00467097526, -0.014568028, -0.0194827057, -0.0045389696, -0.0303004142, 0.0409962721, -0.0112848058, -0.0143378638, 0.00210363138, 0.0212021675, -0.0102084512, -0.0239099786, -0.0122257704, -0.00121089967, 0.00540208491, -0.0209584646, -0.0150283556, -0.0131531963, 0.00763602927, 0.0259949937, 0.00327645242, -0.00480975071, -0.00324598956, 0.00552732078, 0.0125845559, -0.00207993807, -0.000183623488, 0.0216218773, 0.000315206213, -0.0105063105, -0.00806928, 0.000837306201, -0.00825205632, 0.00955857616, -0.0148929656, -0.0135661373, 0.0309232119, -0.00266888714, 0.0119414506, 0.0416190699, 0.0329811499, -0.0133765908, 0.0199294947, -0.0130651919, -0.0360680558, -0.0189546831, -0.00967365783, -0.0109124817, 0.00384509284, -0.0108109387, -0.0163822621, 0.0189276058, 0.0149065042, 0.0369887091, 0.0301379468, -0.0091659436, -0.00450850697, 0.027836306, 0.0235444233, -0.00526669389, -0.0122799268, 0.0195097849, -0.0200378075, 0.007954197, 0.0297046956, -0.0163010266, 0.022799775, -0.000553832157, 0.0454370826, 0.00183285016, 0.00540885422, -0.0117722116, -0.0211750884, -0.00734493975, -0.00257580611, -0.00946380291, -0.0208501518, -0.0168561283, -0.0102558378, 0.00179900252, 0.0094096465, 0.0199971907, 0.00941641536, -0.027457213, -0.00950442, -0.00172199914, 0.00758187333, -0.00406848732, -0.012307005, -0.00911855604, 0.0176820122, -0.0119617591, -0.00096127321, 0.0108583253, -0.0176143162, -0.0228133146, -0.0194420889, -0.0140806213, 0.0119414506, -0.03195218, -0.0196722541, -0.00821143948, -0.0138775362, 0.02029505, -0.00802189298, 0.00399740739, 0.00780526781, -0.00784588512, -0.000700646313, -0.0225425344, 0.0293256026, -0.00128197973, -0.0181964952, -0.00800835341, 0.0183860417, 0.00389924902, 0.00970073603, 0.0268208757, 0.0289194304, -0.000199806906, -0.00856345519, -0.010249068, -0.0095721148, 0.0113389622, 0.00123543921, 0.00722308829, 0.00832652114, 0.0198618, 0.00389924902, 0.0210532378, -0.0019902417, -0.00871238485, 0.0103370715, -0.00545624085, 0.00588949071, -0.0344162881, -0.0126996376, -0.0168019719, 0.0209855419, 0.00475559477, -0.00605195947, -0.0127741024, -0.00886131451, 0.00340676587, 0.00785942376, 0.0119888373, -0.00360815926, -0.00544608664, 0.00222379039, 0.0468722247, -0.00136152166, 0.0156782307, -0.00194116263, 0.0135187507, 0.0208907686, 0.00759541243, 0.0126590207, 0.000345669105, 0.0245192368, 0.0124423951, 0.00565255713, -5.21200891e-05, -0.0264824, -0.00949765, 0.0269833449, 0.00777142029, -0.00816405285, 0.00157730037, -0.00133528968, 0.0111291064, -0.0105875442, 0.00899670459, -0.0255617443, 0.0224748384, 0.0185620505, -0.0121648451, 0.000616027217, 0.023896439, 0.0126319425, -0.00472513167, -0.0106213922, -0.012923032, -0.0125303995, 0.0132885864, 0.0129704187, -0.0311939921, 0.00570332864, -0.0142024737, -0.00892224, -0.0173841529, 0.00627196906, 0.00414972147, -0.00349307735, 0.00136321399, 0.00766310748, -0.00319691049, -0.00840098597, -0.0128350286, 0.00544947153, -0.00437650084, 0.0196180977, -0.00124982442, 0.0280258525, 0.0222175959, -0.0114946617, 0.00463712774, -0.0183454249, 0.00818436127, 0.0190629959, 0.0233684164, 0.00579810236, 0.0011118952, 0.00741263479, -0.00378078222, 0.0117789814, -0.0149741992, -0.020362746, 0.00719601, 0.00010043232, 0.00759541243, -0.0146898795, 0.00391955767, -0.0261710025, 0.00579810236, 0.00698615471, -0.00226779236, 0.0248170961, -0.00724339671, -0.00020488404, -0.00794065837, 0.00651228754, 0.00862438, 0.0134578254, 0.00296166912, -0.0110343331, -0.00360815926, 0.0074667912, 0.0133562824, 0.0168290511, 0.00946380291, -0.0106484704, 0.00280258525, -0.00678306865, -0.00808281824, -0.00925394706, -0.00859730225, -0.00595041644, 0.00671198871, 0.0126116341, -0.00261642318, -0.00270104245, 0.0124762431, -0.00822497811, 0.000932502735, 0.00546978, 0.00448142877, -0.0171810668, -0.0162739493, -0.0018802369, -0.0290548205, -0.0226237681, -0.000446365855, 0.0158948563, -0.00425464939, -0.0167884342, 0.0291902125, -0.00187854446, 0.00336784101, -0.00152568275, -0.00945703313, -0.016693661, 0.0155969961, 0.00718247099, 0.0257242136, -0.0045694327, -0.036203444, -0.00302936463, 0.00622796733, 0.0195097849, -0.0108786346, 0.0132276611, -0.000431980618, 0.0146086449, 0.000397286785, -0.00116097438, 0.0312752277, -0.00840098597, 0.00845514238, 0.0149606606, 0.0260626897, 0.0272947438, -0.0212834012, 0.00827913452, 0.00273827487, -0.00256903656, 0.0190359168, 0.00445435056, -0.00515161222, 0.00453558471, 0.00848222058, -0.00870561507, 0.00959242322, 0.0114134271, -0.0183048081, 0.0191577692, -0.0142972469, 0.00369277853, -0.0119211413, 0.0141212391, -0.00421403209, 0.0257242136, 0.00132090447, 0.011860216, 0.00117028248, -0.000127457548, -0.00250134128, -0.00624489132, -0.000136342554, -0.00647844, -0.0174789261, 0.00397032918, -0.0303004142, -0.00940287672, -0.00655628927, -0.00414633704, 0.0230028611, 0.0110411029, 0.0176820122, -0.00750063872, -0.014500333, 0.00657998305, 0.00618058071, 0.0148658874, -0.00321721891, 0.0139452312, 0.0244244635, -0.0175330825, 0.0146898795, 0.0153939109, -0.00671875803, 0.0301379468, -0.0072501665, 0.000297859311, -0.0113186538, -0.000191027662, 0.0053987, 0.0142837074, 0.000124918981, 0.00768341636, -0.00859730225, 0.00714862347, -0.0134172076, -0.017654933, 0.013369821, -0.0227050018, -0.00529715698, 0.00487406133, -0.00290751294, 0.00699292403, -0.00357431173, -0.00213578669, 0.0180204883, 0.00593687734, 0.011826368, 0.0214864872, 0.0206876826, -0.014500333, -0.017005058, 0.00129890349, 0.00951795839, -0.0186974406, 0.00258934521, -0.00377739756, -0.0260220729, 0.00854991563, 0.00868530665, 0.0196993314, -0.0091659436, -0.0161927156, -0.00839421712, -0.00633289479, 0.0244921576, 0.00897639617, -0.00711477548, -0.018751597, -0.000759879709, -0.000621104322, 0.024234917, -0.0263876263, -0.00424111029, -0.00601811195, -0.0301379468, 0.0146763399, -0.0217572693, 0.00489775464, 0.0124288565, 0.0152449813, -0.00108312478, -2.1234111e-05, 0.0209043082, 0.0113660404, 0.00137082976, -0.00583195, 0.00100781373, 0.0174653865, -0.0284591019, -0.00276873773, -0.0148658874, -0.0290819, -0.00776465051, 0.0107838605, -0.00429865113, -0.0100595215, 0.0138098402, -0.0124897826, -0.000893577933, -0.00186839025, -0.0186297465, 0.00138859975, 0.00810312666, 0.00985643547, 0.0321688056, -0.001486758, -0.0225696117, 0.00644797692, -0.0396423675, -0.00433588354, 0.00706061954, 0.0148388091, -0.0166530423, 0.000127457548, 0.000322610402, -0.00789327174, 0.00881392788, 0.000397921423, -0.00552055147, 0.00736524817, 0.00736524817, -0.00391617278, 0.0182371121, -0.0074938694, 0.00322568091, 0.00489775464, 0.00122020778, 0.00733817, 0.00225086859, -0.0101001384, 0.0126928678, -0.0201055035, -0.0154345278, -0.0270510409, 0.00228640856, 0.0121513056, 0.0188599098, 0.00387217104, 0.0363659151, 0.00985643547, 0.0194556285, 0.0146221844, -0.0111155678, 0.0158136208, -0.00129382638, 0.0174789261, -0.00154853, -0.01223931, -0.0294609927, -0.00985643547, -0.00927425548, 0.00817082264, 0.0207959954, 0.00553070568, -0.00660367636, 0.021324018, -0.0103776893, -0.0209990814, -0.0159625504, 0.00771726388, -0.0042681885, -0.000506445416, -0.000752264, -0.0156376138, 0.0162333325, 0.00777142029, -0.0090779392, 0.0151637467, 0.00157053093, 0.000219798167, 0.00324260467, 8.57826308e-05, 0.00755479513, 0.0115894349, -0.00205455231, -0.00258426787, -0.0170998313, -0.0103099933, -0.0211886279, -0.00539531512, 0.010628162, -0.0264553223, 0.0126251727, -0.00309875212, -0.00717570167, -0.0167478155, 0.0119076027, -0.0216624942, 0.0084483726, 0.016625965, -0.00111358764, -0.00525992457, -0.0010154295, -0.00800158363, -0.0104183061, 0.00575071527, -0.00543931732, -0.000302724919, -0.00183792727, -0.00846191216, 0.0166801214, 0.0061704265, 0.0197941046, -0.0130448835, -0.0131735047, -0.0124220867, 0.0116300518, -0.00577102415, -0.00945703313, 0.0186297465, 0.0151637467, -0.00595041644, 0.00441711815, -0.0284049474, -0.010594314, 0.0108041698, 0.0022914859, 0.0117112864, -0.00378416711, -0.0215812605, 0.00485375291, 0.0386675522, -0.014432637, -0.0251420327, -0.018169418, -0.0357972719, -0.0166665819, -0.0169373639, -0.0148658874, -0.0244515408, -0.000491637096, 0.0199430343, -0.0234090332, 0.0223394483, 0.00167630473, -0.0053885458, 0.0175060034, 0.00503314519, 0.0147440359, 0.00366231566, -0.00601472706, 0.00507714739, 0.00590303, 0.014879426, 0.00417341525, 0.00473528588, 0.0203356668, -0.00933518168, -0.0151502071, 0.00572363753, 0.010560466, 0.00816405285, 0.0092945639, 0.000718839408, -6.60558e-05, -0.00295828446, 0.0181288011, -0.0212698616, -0.00661383057, 0.00365216122, 0.0112712672, 0.00743294368, -0.0149741992, 0.00297351601, 0.00744648278, 0.0187109802, -0.0050873016, -0.00391955767, 0.00268919556, -0.00449496787, -0.0125845559, -0.0285132583, 0.00106027757, 0.0101949116, -0.00524300057, 0.0105401576, -0.0066206, 0.000368304725, 0.0118399076, 0.00948411133, 0.0118737547, 0.00408879574, -0.0108650951, 0.000706146588, -0.00898316596, 0.0225560721, -0.00945703313, -0.0143378638, -0.0173841529, 0.00357769639, -0.00669506472, 0.034389209, 0.000328745286, 0.00971427467, -0.00897639617, -0.00987674389, -0.0112915756, 0.0286215711, 0.0182371121, -0.0105063105, -0.000887654605, -0.0146763399, 0.001486758, 0.0113186538, 0.0134578254, -0.0075074085, -0.00353707932, -0.0111697242, 0.0119888373, 0.0127334855, -0.00604519, -0.00261980807, -0.00148337323, -0.0147846527, 0.00320875715, -0.0167207383, 0.00529377209, -0.00281950901, -0.00173976913, 0.00266042515, -0.0106146224, 0.012855337, 0.00999182556, 0.00774434209, 0.0235985797, 0.011176494, -0.00856345519, 0.00975489244, 0.00441711815, 0.00660029147, 0.0112171108, -0.00210193894, -7.92246501e-05, 0.00324429711, 0.0165041126, -0.00758187333, -0.00783234555, -0.00244718487, -0.0131938132, -0.00447127456, -0.0358785056, -0.00193270075, -0.00185823592, 0.00831298251, 0.000585987407, 0.00439004, 0.00841452554, 0.0269562677, 0.0120429937, -0.00966688804, 0.00129636494, 0.0199971907, -0.00304798083, -0.0201461203, -0.00529377209, 0.00892224, -0.0268885717, -0.00898993574, 0.00712154526, 0.011210341, 0.00837390777, 0.00564578781, -0.0163822621, 0.00980904885, -0.0103573808, 0.0151502071, -0.00750063872, -0.0122528486, -0.0153397545, 0.0281341653, 0.00870561507, -0.0112644974, 0.0145951062, 0.0270104241, -0.0254805088, -0.00988351367, -0.0158136208, 0.0036013897, 0.00233718, -0.00865145866, -0.00675937533, 0.0173706133, -0.00549008837, -0.00265027094, -0.0216354169, 0.00361154415, 0.015326215, -0.000728147512, 0.0208095349, -0.0110546416, 0.0417003036, -0.010560466, 0.00259611453, -0.00429188181, -0.0107229352, 0.0109869465, 0.00424788, -0.00857699383, -0.000823767157, 0.0075074085, 0.0153803714, 0.0137556847, 0.0263199322, 0.00809635781, -0.0141212391, 0.028865274, -0.00588610582, -0.00999182556, -0.0150689734, -0.0153939109, 0.0159896296, -0.00124982442, -0.000103288214, 0.0012582863, -0.0201867372, -0.017654933, -0.00264857849, -0.00948411133, 0.011176494, -0.00220348197, 0.00179900252, -0.00477590319, 0.014568028, 0.00712154526, -0.0279987752, 0.00756833423, -0.00451527629, 0.0119008329, 0.00493837195, 0.0118466765, 0.0021188627, 0.0325479, -0.0123273134, -0.0105807753, 0.00997151714, 0.00848899, 0.00676614512, -0.00850929879, 0.00159507047, -0.0233142599, 0.00866499823, -0.0301650241, -0.00316983229, -0.000401094643, 0.0155157624, 0.0280258525, -0.00947057176, -0.00544608664, 0.00623812154, -0.0151231289, 0.0202002767, 0.00412602816, 0.0113728102, 0.00942995492, 0.00974812265, -0.00060587289, -0.000623642933, 0.0203221273, 0.0024201069, -0.0141753955, 0.0201596599, -0.013268278, 0.00629227795, 0.0208366122, -0.0157053079, 0.0133292042, 0.00719601, 0.0112848058, -0.031437695, 0.0266448688, -0.00586241251, -0.00213747891, 0.00683045527, -0.00646490091, 0.00677291444, 0.010628162, 0.016043786, -0.00245733932, -0.000928271736, -0.000971427537, 0.0169779807, -0.00779849803, -0.00516176643, 0.0109192515, 0.0146898795, -0.0061095003, -0.0127267158, 0.0120836105, 0.00431557512, -0.0279987752, -0.0173029173, 0.0116368216, 0.00118636, -0.0156376138, 0.0259814542, 0.0397236, 0.00800835341, 0.0181152616, 0.00195131695, -0.00365554611, -0.00655967416, -0.00126928685, -0.0156646911, -0.010012134, 0.0184672773, 0.0268479548, -0.023138253, -0.0182371121, 0.0218791198, 0.01597609, 0.00655290484, -0.00622458244, 0.00090965553, -0.00135221356, 0.00137167599, -0.0240182914, -1.32547921e-05, -0.00670521893, 0.0173570737, -0.0137895318, 0.0249660257, 0.00464389753, 0.00492144795, 0.030029634, -0.00161368668, -0.0101339864, -0.0091388654, 0.00411248906, -6.94934497e-05, 0.00496206526, 0.0139858481, -0.020565832, -0.00406848732, -0.0133427428, 0.0130245751, -0.00871238485, -0.0145544885, 0.00195300928, 0.0110478727, -0.000720108743, 0.0099579785, 0.0102693764, -0.0249389466, -0.0207824558, 0.0162333325, 0.00690492, -0.0150960516, -0.00588272139, -0.0166395046, -0.0110140247, 0.0247629397, 0.0217843466, 0.0135864457, -0.00119059102, -0.0165447313, 0.0184808169, 0.00521930726, -0.0025165726, 0.0013310588, -0.015326215, 0.0127944108, -0.00300059398, 0.00595041644, -0.0173299965, 0.0120226843, 0.00545285596, -0.0223259088, -0.018169418, -0.0103709195, 0.00670521893, -0.014364942, 0.0131125785, 0.0126657896, 0.00343892118, -0.00167968951, 0.0135661373, 0.020741839, -0.0137759931, 0.0082859043, -0.00669506472, -0.0118331378, -0.0138775362, 0.00180407963, 0.0102355285, 0.0262657758, -0.00821820926, -0.0247764792, -0.023585042, 0.0150283556, -0.00324937422, 0.0100324433, 0.00875300169, -0.0047860574, 0.0161520969, -0.010763552, 0.00934195053, 0.0224748384, 0.0310856812, 0.00393648166, -0.00930133369, -0.00237610494, 0.0276738368, 0.0033441477, -0.00407187222, 0.00338476477, 0.00343045918, -0.0176278558, 0.00453558471, 0.00404479401, -0.00605872925, -0.0261710025, 0.0141347777, -0.00647167, 0.00718924031, -0.0058793365, 0.00466759084, 0.0102016814, 0.0238287449, -0.00926071685, 0.00172707625, -0.00383832329, -0.00512791891, -0.0223800652, -0.00535469782, 0.0160302464, 0.000289820484, -0.0037604738, -0.0238016658, 0.00517192064, -0.00670521893, 0.00081869, -0.012855337, -0.0228403937, -0.00386878615, -0.00594026223, -0.0014182165, 0.00732463133, -0.00482329, 0.0223259088, 0.011826368, -0.00690830499, 0.00863115, 0.0216760337, -0.00305813504, -0.025439892, -0.0153803714, -0.00128874916, -0.00189885311, -0.0030750588, 0.00100273662, -0.0171675272, -0.0193608552, 0.00985643547, -0.0203085896, 0.0383426175, -0.0144597152, -0.00310382945, 0.0139587699, -0.00376385846, 0.0153532932, -0.0156511534, -0.0159354731, -0.0279987752, 0.034145508, 0.00655628927, 0.0349307731, -0.0124017783, -0.00203932077, 0.0186026674, 0.00819113106, -0.0206199866, 0.0037333956, -0.0028228939, 0.012855337, 0.0018023873, -0.0257919077, 0.00788650196, 0.00329168374, -0.00936902873, 0.00183115783, -0.0219061989, 0.00622458244, -0.0203898232, 0.0141483173, -0.00712154526, 0.00431896, -0.0109395599, 0.00708092796, -0.0120768407, 0.00718924031, -0.0129839582, 0.00616027182, -0.000157814662, 0.00773080299, 0.00384847773, 0.000738301838, 0.0153397545, 0.00250980305, 0.0179392528, 0.00274335197, -0.0101678334, -0.00185823592, -0.0177632459, 0.00502637587, -0.01223931, -0.0144597152, -0.00976843107, 0.00891547091, 0.0210396983, 0.0110004861, 0.0131058097, -0.0177497063, -0.0155834574, 0.00380109088, -0.0191713087, -0.00012195731, 0.0225560721, 0.0103709195, -0.0149606606, -0.00769695546, 0.00488083111, 0.00137506076, -0.00666798651, 0.00928779505, 0.00853637699, 0.000759033486, 0.0125507079, -0.00917271245, 0.00621104334, 0.0181558784, -0.000341649691, 0.00312583032, -0.0186026674, -0.0251555722, 0.00156291516, -0.0316543207, -0.00227963901, -0.000963811763, -0.0163281057, 0.00272812042, -0.00408541132, 0.0155157624, -0.03195218, -0.000158766619, 0.0102287596, -0.00784588512, 0.0100730602, -0.00791358, -0.0118331378, 0.00324091222, 0.00878008, -0.0101678334, -0.00631258637, 0.0136744501, 0.0196587145, 0.00581502588, 0.0150418952, 0.0162874889, 0.00991059188, -0.0113592707, -0.0121648451, -0.00435619242, 0.0134984422, 0.00344399828, -0.00812343601, 0.00465405174, -0.018169418, -0.00673568202, 0.000881731219, 0.0185078941, 0.0123611614, 0.00119143724, 0.00790681, 0.0107770916, 0.018819293, 0.0234631896, 0.00142583216, 0.00899670459, 0.0099309, -0.00647505512, 0.00286689587, -0.0249254089, -0.0137895318, -0.0249524862, -0.0179798715, 0.00404479401, 0.00382478419, 0.000262953923, 0.0122460788, -0.00192423887, -0.00597072532, 0.00567625044, -0.0042681885, 0.000718416355, 0.0134104379, 0.00709446706, 0.00971427467, -0.00532085029, 0.00407187222, -0.0225966908, -0.010628162, 0.00698615471, 0.0190765355, -0.000466251367, 0.00803543162, -0.00295320735, 0.00757510355, -0.0164093394, -0.0138233798, 0.00855668541, 0.00473528588, -0.00462020421, 0.010695857, -0.00758187333, -0.0219332762, 0.0130313449, -0.0380718336, 0.00899670459, -0.00410571974, -0.0134239774, 0.0067153736, 0.00759541243, 0.00206978363, -0.00984966569, -0.0120362239, 0.0193879325, -0.00276535284, -0.0307065863, -0.00436973153, 0.00574394595, -0.0108109387, 0.00334584014, 0.00846868195, 0.0128688756, -1.91979634e-05, -0.0178038627, -0.00223732949, 0.000627450761, 0.00706061954, 0.0226914641, -0.00966011919, -0.0145544885, -0.00442388747, 0.0108312471, 0.0114540439, 0.0149877388, -0.0193337761, 0.0244515408, -0.0100189038, 0.00867853686, 0.0203085896, 0.00232364098, 0.0251149554, -0.0245327763, -0.00945703313, -0.0122325402, -0.0188057534, -0.0199836511, -0.00982935727, -0.00609257678, -0.0186703634, -0.0161927156, -0.00411248906, 0.0074532521, -0.000833075261, -0.00919979066, -0.00190900732, -0.0120023759, 0.0134916725, -0.00128621061, -0.000259992259, 0.0113592707, -0.021973893, -0.00620427402, -0.00348969246, 0.00817082264, -0.00312075322, -0.0109057119, 0.0109869465, -0.0406984128, -0.00471497746, -0.0214458704, -0.0143920202, -0.00842806417, 0.0204710569, 0.00649874844, -0.0227726977, 0.00188869878, -0.000674837502, 0.0139452312, 0.00528700277, 0.0148929656, 0.00985643547, -0.00893577933, -0.0137895318, 0.00288889674, -0.00942995492, 0.00322737335, 0.00244380021, -0.0151502071, 0.0179798715, 0.0235308856, -0.00952472817, -0.000281147019, 0.00821143948, 0.000929117959, -0.000211018938, 0.00342538208, -0.00364877656, 0.0358785056, -0.00311229122, 0.00359800505, 0.0156105356, -0.0277821496, -0.00797450636, -0.00061221933, 0.0194827057, 0.00559501629, 0.00947734155, 0.00575071527, 0.0190765355, -0.0173706133, -0.00752094761, 0.00601472706, -0.00598426443, -0.00159930135, -0.00530731119, 0.00463035842, 0.0155157624, -0.0165447313, 0.000781880692, 0.00500945188, 0.00776465051, -0.0074803303, -0.0123679303, -0.00889516156, 0.0114540439, -0.00708092796, 0.0165311918, 0.0173841529, 0.00575071527, -0.00917948224, -0.0063701272, -0.00158999325, 0.0119414506, 0.0013268278, -0.0156917702, 0.0102626067, 0.0326291323, -0.0221363623, -0.0180611052, -0.0228133146, -0.00806251, -0.0115623567, -0.0325749777, -0.00835359935, -0.01223931, 0.00662398478, 0.0365283825, 0.00752094761, -0.00181761873, -0.000300397893, 0.00973458402, 0.00557132298, -0.00926071685, 0.0294609927, -0.0408338048, 0.000767495425, 0.0126793291, 0.00705384975, 0.00741940457, -0.0102016814, 0.0253857356, -0.00995120872, -0.00178207865, 0.00204439787, -0.00335260946, 0.00259949942, -0.00378755177, -0.000307167415, -0.0266313292, -0.00277889194, 0.0125777861, -0.00571348285, 0.0239235181, -0.00836036913, -0.0212021675, -0.00561194029, -0.00476236409, 0.00312244566, -0.00312244566, 0.0127334855, 0.00371308695, 0.0224071424, 0.00231179432, -0.00851606857, -0.0164364185, 0.0019767026, -0.00364877656, -0.00599780306, 0.00179392542, -0.0157865435, 0.00081572833, -0.0153939109, -0.00691507477, -0.0330894627, -0.021012621, -0.00780526781, -0.000677799166, -0.00947734155, -0.0161385592, -0.0202408936, 0.017072754, -0.00806251, 0.0201731976, 0.010695857, -0.0262116194, 0.00232871831, -0.00537162181, -0.00850929879, -0.0395340547, 0.0155157624, 0.0196180977, -0.00271288911, -0.0333331637, -0.0121513056, -0.00862438, -0.00781203713, -0.000202028154, -0.0104724625, -0.0074667912, -0.0130990399, -0.0379906, 0.00377739756, -0.00448481319, -0.0173976906, 0.0286215711, -0.0305170398, -0.00153922185, 0.00228979345, 0.02461401, -0.0158542376, 0.0128959538, -0.0149741992, -0.00889516156, -0.019645175, 0.0067018345, -0.0223665256, -0.031058602, -0.00697261561, -0.0258054473, -0.00968719739, -0.00627873885, -0.000549178105, -0.0101746032, 0.00157730037, -0.0119482195, -0.0154209882, 0.0128417974, -0.00205285987, 0.0199701134, -0.0104453843, -0.024546314, -0.0319251, 0.00688799657, 0.00144106359, -0.000736609451, -0.0336581022, 0.00834683049, -0.0150418952, 0.00687107258, -0.00814374443, -0.00315290852, 0.00983612705, 0.00429188181, 0.0156376138, 0.000341015053, 0.014500333, -0.0172487609, -0.012923032, -0.00827236567, 0.000426691928, 0.0150554338, -0.00149014266, -0.00685753347, 0.015529301, 0.00863115, -0.0215406436, -0.0122325402, -0.010662009, -0.00588272139, 0.00010244202, 0.00701323291, 0.00928779505, -0.0128079504, -0.0104724625, 0.0248847902, -0.0066206, -0.0131193483, 0.00427834271, -0.000924887, -0.0446518175, -0.0113592707, 0.0115894349, -0.0107229352, -0.000310975272, -0.0234361123, 0.00826559588, -0.0039940225, -0.00293120625, -0.00221702107, 0.00283643301, 0.00636335788, -0.00467774505, -0.0292985253, 0.0220686663, 0.0045254305, -0.00405156333, 0.0343350545, -0.0139723094, 0.00669844961, -0.00738555705, 0.00655290484, 0.00336107146, 0.011176494, -0.000590218347, 0.0369887091, -0.00385186239, 0.00408879574, -0.00880038831, 0.00535469782, -0.012923032, -0.00546301063, 0.0177361686, -0.0279987752, -0.0143378638, -0.00529377209, -0.0323854312, -0.0148252696, 0.00133952068, 0.0104115363, 0.00164076476, 0.0162604097, 0.0115014305, -0.0268344153, -0.000852960744, 0.0179121755, -0.00384509284, 0.00547316484, -0.0072501665, -0.00747356098, 0.0153126763, 0.0178715587, -0.0101542948, 0.0170862935, -0.000841114088, -0.0163416453, 0.00258426787, 0.0135187507, -0.0211344715, -0.000782726856, 0.000822920934, -0.00565594202, -0.00513468822, -0.00697261561, 0.0377198197, 0.0101407552, 0.01007983, -0.00166022719, 0.0180340279, -0.012273157, -0.00769018568, 0.0206064489, 0.0328186788, 0.000473867083, -0.00316813984, -0.0254669711, 0.0256023612, -0.0159490127, -0.0142024737, -0.00293966825, -0.00978197064, -0.0153532932, 0.00887485314, 0.00789327174, 0.0106552402, -0.000542408554, -0.0248847902, -0.0202138163, 0.0165311918, -0.0113051143, -0.00878685, -0.0136473719, 0.0224477611, 0.000572448364, 0.0077104941, -0.0210396983, 0.0100189038, -0.00787973218, -0.0180069488, 0.0158407, -0.0143378638, 0.0293256026, -0.00344230584, 0.0103979977, -0.0177767854, 0.0055780923, -0.00901024416, 0.00249287928, 0.0111223375, -0.00548331905, 0.0123543916, 0.00443404214, -0.000280723936, 0.00198347215, -0.0195639413, 0.000951118942, 0.0142701687, 0.00909824762, -0.00212394, -0.0309232119, 0.00185485114, 0.0284861811, 0.00996474735, 0.00387217104, -0.000508984, 0.0359326638, 0.0151095903, -0.0108921733, -0.00337968767, -0.00509745581, 0.0135525987, 0.00819113106, 0.0120091457, 0.010147525, -0.00458635623, 0.0061704265, 0.00055890932, 0.00440357905, -0.00580487167, -0.0123950085, -0.0104250759, -0.00269935, 0.00706738885, -0.00783234555, 0.0231924094, -0.00120497623, -0.00934195053, -0.0116097433, -0.0171269104, 0.00587256718, 0.0190629959, 0.0275519863, -0.0145138716, 0.0255617443, 0.00638705119, 0.0039906376, 0.00128621061, -0.00517530553, 0.00173130725, 0.00100866, -0.0220145099, -0.000962965598, -0.011176494, -0.0216218773, 0.0175872389, 0.012340853, -0.00377739756, -0.0029413607, -0.00685414858, -0.00347953825, 0.000170295985, -0.00803543162, -0.00158406992, -0.00788650196, -0.0096262712, 0.0134307472, -0.010113677, -0.00874623191, 0.0108515564, -0.0190494563, 0.0138301495, 0.0246275496, 0.0266448688, -0.0227320809, 0.0232059471, -0.0147711141, 0.0106823174, 0.00861084182, 0.0108786346, -0.00800158363, -0.00596395554, -0.0159625504, 0.0103641497, 0.0113254227, -0.00355061842, 0.00857699383, 0.0140400045, 0.0160167068, 0.0209043082, 0.00852283742, 0.010594314, 0.000284954876, -0.0175060034, -0.00957888458, 0.000697261537, 0.00207824563, 0.00989028253, -0.0174383093, -0.0245869309, 0.00431557512, 0.00851606857, -0.00118466769, 0.00752771692, -0.0207147617, -0.0214729477, 0.0224071424, 0.00842129532, -0.0193743948, -0.00095281133, 0.0206199866, -0.0029548998]
|
22 Jan, 2021
|
Fabric js Path cornerSize Property
22 Jan, 2021
In this article, we are going to see how to set the cornerSize of a Path using Fabric.js. The Path in Fabric.js is movable and can be stretched according to requirement. Further, the Path can be customized when it comes to initial stroke color, height, width, fill color, or stroke width.
Approach: To make it possible we are going to use a JavaScript library called Fabric.js. After importing the library, we will create a canvas block in the body tag that will contain the Path. After this, we will initialize instances of Canvas and Path provided by Fabric.js and set the size of controlling corners of the canvas Path using cornerSize property.
Syntax:
fabric.Path('path', {
cornerSize: Number
});
Parameters: This function accepts a single parameter as mentioned above and described below:
cornerSize: It specifies the size of controlling corners of the object. It contains a number value.
Below examples illustrate the use of Fabric.js Path cornerSize property in JavaScript:
Example:
HTML
<!DOCTYPE html>
<html>
<head>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;width: 400px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Path cornerSize Property
</b>
</div>
<div style="text-align: center;">
<canvas id="canvas" width="400" height="200"
style="border:1px solid green;">
</canvas>
</div>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
var geek = new fabric.Path('M 0 0 L 100 100 L 0 100 z', {
fill: 'green',
cornerSize: 30
});
canvas.add(geek);
</script>
</body>
</html>
Output:
Suggested Quiz
0 Questions
Quiz Completed Successfully
Your Score : 2/0
Accuracy : 0%
Login to View Explanation
1/0
1/0
< Previous
Next >
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js Textbox cornerStyle Property/Fabric.js Textbox cornerSize Property/Fabric js Path cornerSize Property
|
https://www.geeksforgeeks.org/fabric-js-path-cornersize-property?ref=asr3
|
CSS
|
Fabric js Path cornerSize Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, Fabric.js Textbox cornerSize Property, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js Textbox cornerStyle Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, Fabric js Path cornerSize Property, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0144178364, 0.0229118522, -0.00731887296, 0.0514314063, 0.0289731175, 0.00503387302, 0.0174278524, 0.0336736888, -0.0315570571, -0.028368365, 0.0151737761, 0.0174141079, 8.96604906e-05, -0.0373296887, 0.00576576032, 0.01219125, -0.0430198573, 0.00129025208, -0.00572109083, -0.0184174459, 0.0117239412, -0.00399273727, -0.0282309204, 0.022994319, -0.0113528436, 0.0437345617, 0.0211113412, 0.0147751896, -0.0329589806, 0.0145277912, 0.0148164229, 0.0221284237, -0.00804045238, -0.0208227094, -0.0119232349, -0.0334812663, -0.00226781983, 0.0397761874, -0.0264578983, -0.0202317014, 0.0124180317, 0.0292205159, 0.00197059801, 0.0260730553, -0.00248772977, -0.00344296289, -0.00988219678, 0.00810917374, -0.0318869203, -0.0238739587, -0.0140055055, -0.0344708636, 0.0154074309, -0.00807481352, 0.0157785285, 0.0111329341, 0.021812303, 0.0366149843, -0.00680002337, -0.00984783564, 0.0390339904, -0.0764186606, -0.0286157634, 0.00640487298, -0.0369998254, -0.0157785285, -0.0106312642, 0.0532456599, -0.00149899453, -0.0225682445, -0.0388965458, 0.00693403091, -0.00395837659, -0.0237227697, 0.0122737158, -0.035542924, 0.0429099, -0.00603721151, -0.0209876411, 0.0486550443, 0.00408894802, -0.0225132667, -0.00186407915, 0.0223071016, 0.00339485751, -0.0207952205, 0.0207677316, -0.0463734791, 0.0228706188, 0.00926370081, -0.0115727531, 0.0151875205, 0.0280247554, -0.0432397649, -0.00687561743, 0.0195582286, 0.00706460234, -0.00550461747, -0.0138886785, -0.00336565077, 0.007999219, 0.0442843363, 0.0175103191, -0.0389240347, 0.0148026785, -0.0476929396, 0.0110710841, 0.00652857218, 0.0267190412, -0.0125279864, 0.031584546, -0.0279697776, 0.000436813018, 0.0508816317, -0.0466208793, 0.00595818134, -0.00984783564, -0.0348007269, 0.0330689363, -0.00279697776, 0.025976846, 0.0154898968, 0.0137924682, 0.0231867395, -0.0506892093, 0.0392264128, -0.0218535364, 0.0120881675, 0.0110161072, 0.0130846333, -0.0238464698, -0.0180326048, 0.0258806348, -0.0187335666, 0.0289731175, -0.0292480048, -0.00708521903, 0.0188847538, -0.00339142163, -0.0173316412, -0.000571250101, -0.0281209666, 0.0153112197, 0.0139367841, -0.0105350539, 0.00697182817, 0.0138611896, 0.00796485785, -0.0391714349, 0.0364225619, -0.0670724884, -0.0134282429, 0.034773238, -0.0205615666, 0.0523110442, -0.0425250567, -0.0226232205, 0.0338386223, 0.0458786823, -0.0230080634, 0.0654231682, 0.00573483529, 0.0053396849, 0.0158197619, -0.03796193, -0.0214137174, -0.0103220167, -0.0138611896, -0.0424151048, 0.0102739111, -0.0143903475, -0.00316979364, -0.00135038362, 0.0163145587, -0.0305399746, -0.0448341109, 0.00429167738, -0.0386766382, -0.00497202342, 0.00252380851, -0.0454388633, 0.00426762458, 0.0164245144, 0.0525034666, -0.0142666483, 0.00582073769, 0.0234203935, -0.00935991108, 0.0103082722, -0.0430473424, -0.00872079842, 0.0495071933, 0.0247398522, 0.0228293873, 0.0140879722, -0.017826438, 0.0146377459, 0.0234341379, -0.0248223189, 0.00017556276, 0.00562488055, -0.0209051762, -0.00732574519, -0.0078274142, 0.0166994017, 0.00409582024, -0.00305812061, -0.0460711047, 0.040765781, 0.0012971242, 0.0130090397, 0.000305167807, 0.0162320919, -0.00830846746, -0.026567854, 0.000735752925, -0.0220597014, 0.0257569365, -0.00100935169, -0.0215923935, 0.0264991317, 0.0297153126, -0.00947673805, -0.029165538, -0.032326743, -0.0237090252, 0.0231317617, 0.024176335, -0.00317322975, -0.0413705334, -0.00252380851, -0.0185136572, -0.00977911428, 0.0143491151, 0.0336187109, 0.0168093555, -0.0118545126, 0.000851291465, 0.00614373, 0.00125589117, 0.00795111433, -0.00717455754, -0.00673130155, -0.0156685729, 0.0294679143, -0.00248772977, -0.00991655793, 0.0186098665, 0.00236403034, -0.0283958539, -0.0232966952, -0.0204516128, 0.00379688013, 0.0281484555, -0.0406283364, -0.0340860188, -0.0215923935, -0.0461260825, 0.040325962, 0.0486275554, 0.0453014188, 0.0233654175, -0.00980660319, 0.0132289492, 0.00553210592, -0.013283927, 0.00522285793, -0.0314196125, -0.00121551706, -0.0152699873, 0.0150775658, -0.0449990444, 0.0522560664, -0.0151737761, -0.0354329683, 0.0164520014, -0.0209051762, 0.00885824207, 0.0384292379, 0.0124523928, -0.0219085142, 0.00400648173, 0.0187198222, 0.0350756124, -0.0255507696, -0.0132289492, -0.00904379, 0.0315570571, -0.039583765, -0.0304575078, -0.0330414474, -0.0261967555, 0.020575311, -0.0131121222, 0.0103632491, -0.00425731624, -0.000122410725, -0.0171529651, -0.0252621397, -0.0224857777, -0.0555272251, -0.00690997858, -0.0297428016, -0.0190496873, 0.0188297778, 0.0343883969, 0.0283958539, -0.023379162, -0.00718143, 0.00625024876, 0.0246161539, -0.0195582286, -0.0245749205, -0.0230355524, -0.00518506067, -0.016795611, 0.0630591363, -0.0124249039, -0.0497545935, -8.40231587e-05, -0.0350206383, -0.0282858983, 0.017592784, 0.0375221111, 0.0561319776, -0.00511633884, -0.0369723365, -0.0278185904, -0.00348763214, -0.0238602143, -0.0137443626, -0.0193795525, -0.00915374607, 0.00808168575, 0.0115727531, 0.00162269385, 0.000555358187, -0.00850088801, -0.0544826537, 0.0553348064, 0.0274612363, 0.00917436182, -0.0410681553, 0.00165104156, 0.0190634318, -0.0375770889, -0.0155998515, -0.0217848159, 0.0208227094, 0.0342234634, 0.00095866929, 0.0376320668, -0.00894070789, 0.0204653554, -0.0223071016, -0.00366287259, -0.00108666369, -0.028808184, -0.0298527554, 0.000998184318, 0.0322717652, 0.0117583023, 0.00332613569, 0.03796193, 0.00292067719, -0.0269939285, -0.00463528652, 0.0146377459, -0.00542215118, 0.00997153483, -0.0188984983, -0.0220597014, -0.00507854205, -0.00697182817, -0.0137100015, -0.0158609953, 0.0156273413, -0.016589446, -0.0469232537, 0.00673473766, -0.0583860539, 0.0332338698, -0.00416454207, 0.00729138451, 0.0435696319, 0.0343883969, -0.000633099698, -0.0156685729, 0.0185548905, 0.0265953429, -0.0406558253, 0.0235715825, 0.0336187109, -0.0119919563, 0.014761446, -0.0349106826, -0.0230355524, -0.0384292379, -0.00999902375, -0.0363950729, 0.00436727144, 0.018596122, -0.0196956713, -0.042360127, 0.0284508318, 0.00793737, -0.0200255364, -0.0366974473, 0.00823287293, -0.0245611761, -0.00121809414, 0.0127272801, -0.0111398064, -0.0332063809, 0.0600903556, 0.034031041, 0.00931180548, 0.0383742601, -0.0159159712, 0.00798547454, 0.0565717965, -0.0180326048, -0.0284233429, -0.0125829643, -0.00850088801, -0.0142116714, -0.0275986809, 0.0115315206, 0.0287806951, 0.00380718848, -0.0979698151, 0.020162981, 0.000266297022, -0.0146652348, 0.0112703778, -0.0128441071, 0.0417828634, 0.0401060507, 0.0375770889, 0.0160534158, -0.000727592211, 0.0107687078, 0.0314471, -0.0207402427, -0.0242588, 0.0298252665, -0.0577263236, -0.024176335, 0.0165482126, 0.0214549508, -0.0135244532, -0.00929118879, -0.0273925159, -0.00720891822, -0.0146927238, -0.0360377207, 0.0251659285, -0.000111887704, 0.0172216874, -0.0299352221, -0.0169330556, -0.0228568763, 0.00230905297, 0.00901630241, 0.0319419, -0.0274612363, -0.009091896, 0.0177027397, 0.0179501381, 0.0088170087, 0.0374121554, -0.00221284246, 0.0257844254, 0.0197918825, 0.0217710715, 0.00234341389, -0.0262517333, 0.00154881785, 0.0173728745, -0.00578637654, 0.0148714008, 0.0120057007, 0.0047314968, 0.0491223522, -0.02101513, -0.048407644, 0.0246711317, -0.0108649191, 0.00975849759, 0.013902423, 0.0422776602, -0.0148851452, -0.0140467389, -0.0021801996, 0.0119644674, 0.0235578381, 0.0120469341, -0.0352955237, 0.0380443968, -0.00501325633, -0.0378244855, -0.000637394842, -0.00635333173, 0.0469782315, 0.0397487, 0.00654918887, 0.00339485751, 0.0251384396, -0.0286707412, 0.00562831666, -0.0127410246, 0.0198193714, -0.0363126062, 0.0128028737, 8.86940907e-05, -0.0320243649, 0.00845278334, -0.0145277912, -0.00691685081, 0.0206990112, -0.00598223368, -0.0160396714, -0.00345327123, -0.011600242, 0.0273512825, 0.0409307107, -0.0118820015, -0.0141841825, 0.0254270714, -0.00631553493, -0.00832908414, 0.00817789603, 0.0357353427, 0.00988906901, -0.00487581268, -0.0223483332, -0.027186349, -0.0228156429, 0.010892408, -0.0209051762, -0.0295228921, -0.00343609066, -0.00351855694, 0.000446691789, -0.000495656102, 0.0386766382, -0.0118476404, -0.00678627891, -0.0112978658, 0.00730512897, -0.00599941425, -0.00216130097, -0.0112635056, -0.0120950397, 0.0199568141, 0.0160946492, 0.0385666825, -0.00641174521, -0.0215649046, -0.00251178234, 0.0305949524, -0.00327459443, 0.0257569365, 0.0436795838, -0.000404170161, -0.037989419, 0.00818476826, 0.00650108373, -0.043212276, 0.0173453856, 0.0147339571, -0.0156960618, -0.00123956974, 0.00797860231, 0.0132289492, -0.0189534761, 0.0152287539, -0.0212212969, 0.0123218214, 0.0217023492, 0.0109748738, -0.0083978055, -0.000217977009, 0.0143078817, -0.0142529039, 0.00572452694, -0.0280385, -0.019984303, -0.0388690569, -0.0115315206, 0.0146789793, 0.0293029808, -0.00923621189, 0.00966228731, -0.00609906111, 0.052805841, 0.0172629189, -0.0111535508, 0.0195444841, -0.0230218079, 0.0279560331, 0.00273341, -0.0217023492, 0.00390683534, -0.0207127556, -0.0390065, 0.0227194317, 0.032739073, -0.016795611, 0.0058860234, 0.0140467389, -0.0109680016, -0.00467651943, -0.0500844568, -0.0360102318, -0.0285882745, 0.0115658808, 0.0106587531, -0.0191046651, -0.00833595637, 0.0113116102, -0.00052743993, 0.0226232205, -0.0373571776, 0.00849401578, -0.0217710715, -0.0120263174, -0.0089200912, 0.0210701078, -0.035515435, -0.0130090397, -0.0139230397, 0.011098573, -0.0100196404, 0.000249116565, 0.0185823776, 4.06693543e-05, 0.0154211754, -0.0205203332, 0.00200152281, -0.00675535435, -0.00374190276, -0.00116397568, 0.0405183807, -0.00640143687, -0.00536717381, -0.0466758572, 0.00663852738, -0.00204619206, -0.00395837659, -0.0163420476, -0.00751129445, -0.0252483953, 0.0114009492, 0.0264304094, 0.0295228921, 0.00122410734, 0.019420784, -0.0074769333, -0.00863833167, 0.000316764606, -0.0260868, 0.00456312858, -0.0053396849, -0.0203416571, -0.00820538495, 0.0172354318, -0.0269389506, -0.0209326651, -0.00620901585, -0.00305812061, -0.0116071142, -0.0180463474, 0.0186098665, -0.00414392538, -0.0159846935, -0.00362851168, 0.0224582888, 0.0419477969, -0.00190187618, 0.0120675508, -0.0341684856, -0.0133182872, -0.000861170236, 0.0101639563, -0.00981347542, -0.029165538, 0.0236265603, -0.00199980475, 0.00614029402, 0.0353505, 0.0282034334, 0.0176065285, 0.0255095381, 0.0289456286, 0.00459748926, 0.00582073769, -0.0315295681, 0.00379000814, 0.0144865587, -0.0312821679, 0.00820538495, -0.0150225889, -0.000767107238, -0.008294723, 0.0389515236, -0.0111810388, 0.0199293252, 0.000456141046, -0.00575201586, 0.0210975967, 0.0267327856, -0.000753362896, 0.00165275962, -0.00615060236, 0.00203931984, -0.00218191766, -0.0146927238, 0.0030048613, 0.024148846, 0.0370822921, 0.00545307575, 0.0100402571, -0.0363400951, -0.00600285036, -0.00596161745, 0.0115315206, -0.00653200829, 0.00482770754, -0.00544276787, 0.00791675318, 0.00126877648, -0.013902423, -0.00223174086, -0.023379162, 0.0421127267, 0.00137529534, -0.00241041766, -0.0146377459, -0.0182800032, -0.0187748, -0.0365325175, -0.0182112809, -0.00144315814, -0.0114902873, -0.0402160063, -0.00740133924, 0.00820538495, 0.0216886047, 0.0187885445, -0.00177989493, -0.0223345887, 0.0380993746, -0.0177852046, 0.0253033713, -0.029605357, -0.0168918222, -0.0103838658, 0.0167131443, 0.0337561555, 0.00342921843, 0.0438170284, -0.0487924889, 0.0448890887, 0.0065801139, 0.002199098, -0.0329589806, -0.0171117317, 0.0278460793, -0.0158472508, 0.0150225889, -0.0108855357, 0.0168780778, -0.0010316862, -0.00321961707, 0.0143766031, -0.0054255873, -0.0190221984, -0.0200392809, -0.00137357728, -0.00189672201, -0.000740048, 0.0400235839, 0.0267602745, 0.00875516, -0.0259081237, -0.000317838392, -0.0190909207, -0.000762382639, 0.0296878237, 0.0155311301, 0.0210975967, 0.0224445444, 0.0177577175, -0.000547197473, -0.0194620173, -0.0221146792, 0.00703711389, 0.00210975972, -0.0268977173, -0.0097378809, 0.00371441408, 0.016589446, 0.0323817171, 0.0146102579, -0.0149813555, -0.0335087553, -0.00558364717, -0.0333163366, 0.00539122615, 0.00686187297, 0.000774408923, -0.0242862888, -0.00550805358, 0.00819164049, -0.010184573, 0.0517337807, 0.00892696343, -0.00790988095, 0.0272000935, 0.00889947452, -0.014761446, 0.0176340174, -0.0170430094, -0.0329314917, 0.0365874954, 0.0483526699, 0.00883762538, 0.00375221111, 0.0136275357, -0.0125692198, 0.0015565491, -0.0470881872, 0.0291105602, 0.0189259872, 0.0119575961, 0.0246298984, 0.0503868349, 0.0122049944, 0.0237502586, -0.0141841825, 0.0195444841, 0.0112841222, -0.0263616871, -0.00872767065, 0.0164794903, 0.00667976029, 0.0456862636, 0.021399973, 0.00963479839, 0.00894758, 0.00317494781, 0.00297909067, 0.0245749205, 0.0164932348, -0.00539809838, -0.00219050772, -0.0129059562, -0.0261005443, -0.0493422635, 0.00558708329, -0.00896819681, 0.0128303627, 0.00632927893, 0.0332338698, -0.0346907713, 0.0252483953, 0.0117651746, -0.0255645141, 0.0174690858, 0.00581386546, -0.0103014, 0.0346357934, 0.00287944404, 0.0410406664, -0.000224204923, -0.0275986809, -0.015379942, -0.0109061515, -0.00674161, 0.0230905302, -0.0339485779, -0.0266503189, 0.0150088444, -0.0127135357, -0.0126241976, -0.0150913103, -0.0444217809, 0.000604322471, -0.0425250567, -0.0123149492, -0.0315570571, 0.0224308, -0.0323817171, 0.0213312507, 0.0524484888, 4.12062436e-05, -0.00431916583, -0.0235990714, 0.00854212139, 0.0162458364, -0.00711957971, 0.00417828606, -0.0155586191, 0.00867269281, -0.032739073, 0.0357078537, 0.00264063571, -0.0103151444, 0.00382093294, 0.0375496, 0.00214068452, 0.00773807615, 0.00191218453, 0.0155723635, 0.017001776, -0.00995779131, 0.0264441539, 0.0173316412, -0.0150088444, 0.00658698566, -0.000438745832, 0.0205478221, 0.00931180548, -0.00989594124, -0.0213312507, -0.035625387, -0.0116689643, -0.00939427223, 0.0170704983, 0.0081229182, 0.0438994952, 0.0341135077, -0.0124386484, 0.00226781983, -0.0165757015, -0.0169880316, -0.0170155205, -0.045961149, -0.00362851168, 0.0136825135, 0.00688936189, 0.00769684324, -0.0127204079, -0.0199018382, -0.0342509523, -0.00786864758, 0.0109061515, -0.00774494838, 0.0286707412, -0.0125898365, 0.0334262885, 0.0508266538, -0.00215099286, 0.0170979872, 0.00811604597, 0.000797602581, 0.0196406953, 0.0124455206, 0.0113528436, 0.0303200651, 0.015201265, 0.00704398612, -0.00395494048, 0.0238052364, -0.0403534509, 0.017826438, 0.0123630548, 0.0261967555, -0.00533624878, 0.0168918222, 0.0111741666, 0.0209738985, 0.00212694, 0.00798547454, -0.00247570337, 0.0315295681, -0.0114559261, -0.0170567539, -0.0112635056, 0.0264441539, 0.0105556706, 0.00842529442, 0.0113597158, 0.0226369649, -0.00932555, 0.00288975239, -0.00651826384, 0.00028261845, 0.0218672808, 0.000398157019, -0.0414804853, -0.00449440675, -0.0211113412, 0.0280385, -0.00844591111, -0.00278495159, 0.0240388904, -0.0133595206, -0.00599597814, -0.00227469206, 0.009091896, -0.0113872048, -0.0388965458, 0.0172079429, 0.0172904078, 0.00668319641, 0.00690997858, -0.00106690614, 0.0102258064, -0.0704261139, -1.22410729e-05, -0.00798547454, 0.00476929406, 0.00816415157, 0.0449165776, -0.0203279126, 0.0145140467, 0.00359758688, 0.0256194919, 0.0107206032, -0.0165619571, -0.025385838, 0.00398930116, -0.00147322391, 0.0181975365, -0.00210460555, 0.0198193714, 0.00744944485, -0.00442224881, -0.00427449681, 0.00366287259, -0.00255301548, -0.00853524916, 0.00297737261, -0.00959356502, -0.00904379, -0.0374671333, -0.0135794301, -0.00876890309, 0.00819851272, 0.00113390991, -0.00420577498, 0.0117239412, -0.00502700079, -0.00188125961, -0.00574857974, -0.00380375236, -0.0203828905, 0.00858335476, -0.00895445235, 0.0216198824, 0.0188572649, -0.0260593127, 0.0111329341, -0.0046696472, -0.0299077332, -0.00319384621, 0.000916577177, 0.0112016555, -0.0145690246, 0.00769684324, -0.00931867771, -0.0393638536, -0.00939427223, 0.0198743492, 0.00421951944, 0.0106175207, -0.0166031905, 0.00932555, -0.0197506491, 0.0294954032, 0.0146927238, 0.00627773767, 0.00863833167, -0.0147339571, -0.012514242, 0.00693403091, -0.00379688013, -0.0104388436, 0.0119644674, -0.00706460234, 0.019214619, 0.000674332783, -0.00635333173, 0.00841842219, 0.0174553413, -0.0205478221, -0.00914687384, 0.00160121825, -0.0277636126, 0.0192695968, -0.00125503214, -0.00977224205, 0.00385873, -0.02101513, -0.0138405729, 0.0488199778, -0.0149401221, -0.0132426936, -0.0523110442, -0.00462154206, -0.0325191617, 0.00602003094, 0.0265541095, 0.0114353094, -0.0388965458, 0.0114490539, 0.00446348172, 0.0107618356, 0.0407108031, -0.013194588, -0.00715394085, -0.0271726046, 0.0118682571, 0.0357903205, -0.0249322746, -0.00155397202, 0.0178676713, -0.000892524549, -0.00314574107, 0.011895746, -0.0102532944, 0.0161358826, -0.00676566269, 0.0110573396, 0.013077761, 0.0077724373, -0.00185720704, 0.0346357934, 0.0089888135, -0.00594443688, 0.0198331159, 0.00573139917, -0.0076006325, -0.00437070755, 0.011187911, -0.00900255796, 0.0324366949, 0.023791492, -0.0406008475, 2.30459682e-05, 0.0125554753, -0.0390614793, 0.00542902341, -0.0332613587, -0.0145965135, -0.0154486634, 0.00992343, -0.0270076729, 0.0152150095, 0.0114765428, 0.00739446701, -0.00278323353, -0.0095110992, 0.0232417174, -0.0331514031, -0.00367318094, 0.00069151324, -0.0346357934, 0.0158472508, 0.0191046651, -0.0134351142, -0.023406649, 0.0242175665, -0.00258565834, 0.0239014477, 0.023997657, 0.0203828905, 0.0370273143, -0.00427449681, -0.0514039174, 0.00172234047, -0.0333713144, 0.0216473714, 0.0129815508, -0.0164107699, -0.00281415833, 0.00828785077, -0.0310622603, 0.012514242, 0.00371441408, 0.00388278253, -0.00235200417, -0.0294129364, -0.010507565, 0.0112360166, -0.033178892, 0.00773120392, -0.014197927, 0.0268289968, 0.00533624878, -0.0050682337, 0.00388278253, -0.00548400078, 0.0030478125, 0.00181769195, -0.0367249362, 0.00997153483, 0.03040253, 0.00188813184, -0.0153112197, -0.0154761523, 0.00743570039, -0.00260627479, 0.0117651746, 0.0117720468, -0.0234478824, 0.013194588, -0.00115968066, 0.0305674635, -0.00804732461, 0.0201492365, 0.0134694753, -0.0240251459, -0.00850088801, -0.010981746, 0.00385185773, -0.00656293333, 0.0128578516, 0.0143078817, 0.00733261742, 0.00418515829, -0.0398036763, 0.00718830153, 0.028368365, -0.029605357, 0.00842529442, 0.0271313731, 0.00999215152, 0.0247123651, 0.00342062837, -0.0134488586, -0.00384842162, 0.00023215088, 0.00605439162, -0.0252758823, 0.00248429365, 0.00117256597, -0.0260730553, -0.0052400385, 0.000804904266, 0.00570734683, 0.005947873, 0.013077761, 0.00572796306, 0.00549774524, 0.0029859629, -0.0181288142, 0.0245611761, -0.00430542184, -0.00239839125, -0.0114490539, 0.00600628648, 0.00809542928, 0.0273925159, 0.0023348236, 0.0357078537, 0.0130090397, 0.00169055664, 0.00546338409, 0.00834970083, 0.00340688392, -0.0121225277, -0.00223517697, 0.0151050547, 0.0119988285, -0.00557333929, -0.00552523369, -0.00514726387, 0.00540497061, 0.0010780734, 0.0363126062, 0.0140192499, -0.0412880667, 0.0291930269, -0.00330036506, -0.0136550246, 0.0264304094, -0.0170979872, -0.0105419261, -0.0424700826, -0.0144728143, -0.0096141817, -0.0176615063, 0.00449784286, 0.00903004594, -0.0278873127, 0.0225270111, 0.0137237459, -0.00927057303, 0.0159846935, -0.0029550381, 0.00295160199, -0.0451639779, -0.00905753486, 0.00614029402, 0.0221284237, 0.0118338959, 0.00484488811, -0.000469026389, 0.0177302286, 0.00900943, -0.0125348587, -0.0224170554, -0.0045218952, -0.000610335614, 0.0434596762, -0.000723726582, 0.000667460612, -0.0132633103, 0.00534655713, 0.00843903888, -0.0108992793, -0.00462497817, 0.0180051159, 0.00875516, -0.00013014194, 0.0108236857, 0.00714019639, 0.0172354318, 0.0161633715, 0.0178814158, 0.000321918749, 0.0280247554, 0.00281072222, 0.00828097854, -0.0393088758, 0.0190359429, 0.0222658683, -0.0166169349, 0.0125623476, 0.00768997101, -0.00891321898, -0.0193795525, -0.000879209721, 0.0061368579, 0.00338626746, 0.0256057475, 0.00604408374, -0.00428480515, -0.00751129445, -9.43851192e-05, 0.0183487236, -0.0100471294, -0.0115040317, 0.0023159252, 0.00109783094, -0.0243825, 0.0057004746, -0.0130640166, -0.00695121149, 0.00778618176, -0.00578294042, -0.0203416571, 0.0241076127, -0.00323851546, 0.0182937477, 0.00685500074, -0.0209738985, 0.00374533888, -0.0235166047, 0.0039618127, -0.0286707412, 0.0106312642, 0.00449784286, -0.0118751293, -0.0362576284, 0.0198606048, 0.0187885445, 0.0235166047, 0.000450986903, -0.00572109083, 0.00412674481, 0.00224033115, -0.0292480048, 0.00314574107, -0.00485863211, -0.0107824523, 0.0107480921, -0.0198331159, -0.00714706862, 0.00910564, -0.0201354921, 0.0051507, 0.000621073414, 0.004841452, 0.00817789603, 0.0010376994, 0.0127547691, 0.00673473766, -0.00836344436, 0.0432947427, 0.00969664752, -0.00713332416, 0.0167681221, 0.0103426334, -5.84873624e-06, 0.0246298984, -0.00826723408, -0.0123149492, -0.0260043349, 0.0105487984, -0.0102739111, 0.00223517697, 0.0149126332, -0.0317494795, -0.0175240617, -0.0199568141, 0.0151050547, -0.0327115841, -0.00724327937, -0.0157098062, -0.00097413169, -0.010095234, 0.0099096857, -0.0120812953, 0.00327287638, -0.0278185904, -0.0111398064, -0.0064942115, 0.0103426334, 0.000715136353, 0.0152424984, -0.00876203086, -0.000132396875, -0.0128853405, 0.00449097063, 0.0180051159, -0.0285332967, 0.0269664396, 0.0108099412, 0.0105831595, -0.0103632491, -0.0247123651, -0.00607844442, -0.006745046, -0.0284233429, 0.0377420187, 0.000687218155, -0.0211525746, -0.00234513194, 0.00773120392, -0.0170155205, -0.000318697421, -0.0103563778, 0.00152648333, -0.00529157976, -0.0186785888, -0.000971554662, 0.00457687303, -0.00466621108, 0.0301001538, 0.00354604563, 0.000277249579, -6.71648377e-05, 0.00275574485, 0.0113322269, 0.0144865587, -0.00411987258, 0.0293029808, 0.00597536191, -0.0175790396, -0.0200392809, 0.0112016555, -0.00308560953, 0.0183487236, 0.00433634641, -0.00889260229, 0.0305399746, -0.00605782773, 0.0189947095, 0.044806622, 0.0336187109, -0.0160259269, 0.00844591111, -0.0114902873, -0.0381818414, -0.0188435223, -0.0046318504, 0.00443599327, -0.0130571444, -0.000513266074, -0.00674848212, 0.0200805143, -0.000139161668, 0.0323542282, 0.0189397316, -0.0288356729, -0.0131877158, 0.0221009348, 0.00729825674, -0.000363151834, -0.0304575078, 0.015613596, -0.0165344682, 0.0130708888, 0.0138062127, 0.000896819693, -0.00766935432, 0.00106604712, 0.053548038, 0.000511548, 0.00502012856, 0.0119782118, -0.0247123651, -0.0131396111, -0.00234341389, -0.00477960194, -0.0336736888, -0.0277086347, 0.0155036412, 0.00119060546, 0.00199636864, 0.0176889952, 0.0103220167, -0.017977627, 0.00200495892, 0.0114146937, -0.000528298959, 0.0011579626, -0.0124523928, -0.00544276787, 0.0410681553, -0.0171117317, -0.00396868493, 0.00128337985, -0.0205340777, -0.0345533267, -0.0104938205, -0.0222246349, 0.0290830713, -0.00411300035, -0.026183011, -0.0133801373, 0.000339958235, 0.0145690246, -0.00176099653, 0.00318182, -0.00117170694, 0.00469026389, 0.00362851168, -0.0191596411, 0.0151050547, 0.0117376857, -0.0117720468, -0.00351855694, 0.0206990112, 0.0188984983, 0.00812979, 0.0251521841, 0.0246436428, -0.00107635546, 0.00528470753, -0.00920185074, -0.0141566936, 0.00699588051, 0.00562144443, 0.0276124254, -0.00028261845, 0.0185548905, 0.00163472013, 0.0159297157, -0.015379942, -0.00578981265, 0.00402022619, -0.000974990719, 0.0118407682, -0.0446142033, -0.00941488892, -0.010981746, 0.0111810388, -0.00330895535, -0.00650795596, -0.0135656865, -0.0245611761, 0.00360445911, 0.00892696343, -4.17431329e-05, -0.00553554203, -0.00874141511, -0.00526409084, 0.0429923683, 0.0101364674, 0.0124386484, 0.00514726387, 0.0245749205, 0.0283133872, 0.0167543776, 0.00736697856, 0.00979285873, 0.0293854475, 0.00684125675, 0.000674332783, -0.00301860576, -0.0208227094, -0.00451158686, 0.0232142285, 0.0126585579, 0.00645985035, 0.00806106906, 0.0157372952, 0.0146514904, -0.0188435223, 0.012809746, -0.0272688158, 0.00742882816, 1.70730764e-05, -0.0125211142, -0.00850088801, 0.0349381715, 0.023351673, -0.00754565513, 0.00127393065, -0.0258119125, -0.0158609953, 0.0254408158, 0.0174965747, -0.0100746183, 0.00736697856, -0.0127547691, -0.00611967733, -0.0111054452, -0.0047314968, 0.0105281817, 0.0129334452, -0.000307744864, -0.0029000605, 0.001250737, -0.0139986333, -0.0066591436, 0.00107635546, -0.00390339899, 0.00893383566, 0.00518506067, 0.0222933572, 0.0250147395, -0.0224582888, 0.0106724976, -0.0192558523, 0.00616091071, -0.00727076782, 0.0130296564, 0.00564893289, -0.00999902375, 0.0112566333, -0.0056145722, 0.00574857974, -0.00935303885, -0.0115727531, 0.0093874, -0.00134780654, 0.0144865587, -0.0109336404, -0.00827410631, -0.0207264982, 0.00488955714, 0.00279869582, 0.0141841825, 0.0252483953, 0.00361820357, -0.0059100762, -0.00190874841, 0.00242588, -0.00723640714, 0.00393776, 0.000214540909, -0.00998527929, 0.0134282429, 0.0104732048, 0.0111123174, 0.0129540619, 0.0316670127, -0.0128028737, -0.00696152, -0.0113803325, 0.00610936945, -0.0164520014, -0.0171117317, 0.00141309225, -0.00631209882, 0.0077724373, -0.00618152739, 0.00125846826, 0.00963479839, -0.002272974, -0.00449784286, 0.00405115075, 0.0106656253, -0.0150775658, -0.0237777475, -0.000868471921, -0.0258943792, -0.0201217476, -0.000888229464, 0.0247535966, -0.00850088801, -0.000528728473, 0.0329864696, 0.0250834618, -0.00595818134, -0.00906440709, -0.00687218131, -0.0210563634, 0.0192970857, 0.0117033245, 0.0170842428, -0.000691083726, -0.018623611, 0.000948361, 0.00696839206, 0.0187335666, -0.0068309484, 0.0297702905, 0.0064323619, -0.00134952459, 0.00176099653, -0.000191562052, 0.0103014, -0.0106656253, 0.00984096341, 0.0250834618, 0.035542924, 0.0469782315, -0.00510946708, 0.00327631249, -0.00479678251, -0.0070164972, 0.0215374157, -0.0107755801, -0.0172354318, -0.000220124566, 0.0221009348, -3.26160189e-05, 0.00184174464, 0.00955920387, -0.0257294476, 0.0117308134, -0.0163283031, 0.00845965557, 0.00147494196, 0.00391027099, 0.00113906409, 0.0028691357, 0.00650108373, 0.00747006107, 0.0190084539, -0.00547369244, 0.00391714321, 0.0130640166, 0.000303020235, 0.00532250432, -0.0209738985, -0.000725874153, -0.01127725, -0.000947502034, -0.0120400619, -0.00799234677, 0.0283408761, 0.00573139917, 0.0119094905, -0.00277807936, -0.0204928443, 0.0128372349, 8.9553112e-05, 0.012809746, -0.00409582024, 0.000589719042, 0.0108443024, -0.0293304697, 0.0195032507, 0.0132220769, -0.000784717209, 0.0168780778, 0.00421608333, -0.00287944404, -0.00147064682, -0.00642205356, 0.00422295555, -0.00126276328, -0.00604064763, 0.0101364674, -0.0209051762, 0.00832221191, -0.0269664396, -0.0189672206, 0.0152287539, 0.00355635397, -0.0041473615, -0.0118201524, -0.00804732461, 0.0128234904, -0.000510259473, -0.00816415157, 0.02479483, 0.02101513, -0.00139591179, 0.0244649649, 0.0157647841, -0.0133045428, -0.013194588, 0.00341719226, -0.00635333173, -0.00151789305, -0.0110710841, 0.00467995554, -0.015586107, 0.00657324167, -0.00585853448, 0.00511633884, -0.00927057303, -0.00959356502, -0.0193108302, 0.0231317617, 0.0245199427, 0.0150363334, -0.0164382588, -0.0158884842, 0.00601659482, -0.0129128285, -0.00133320317, -0.0301276427, -0.000726303668, -0.00670381309, -0.0280934777, 0.00608188054, 0.00312340655, -0.00128423888, 0.019214619, 0.00662821904, -0.00525721861, -2.42539681e-05, 0.00983409118, -0.00427793292, 0.000267585565, -0.00554928649, -0.0104869492, 0.00377282756, -0.0134694753, 0.000752503867, -0.00797173, -0.0350206383, -0.00966228731, 0.00984783564, 9.08684888e-06, -0.0108649191, 0.0241076127, -0.0045837448, -0.00970352, 0.0178539269, -0.00381406071, 0.00783428643, 0.00425388, 0.00975162536, 0.0211525746, -0.0030357861, -0.0122187389, -0.00195341767, -0.0329314917, 0.000255988765, -0.00264407182, 0.00924995635, -0.0217848159, 0.00554585038, -0.0125967087, -0.00744257262, 0.0183762126, 0.00872079842, -0.0101433396, 0.0151187992, -0.00138302648, 0.0023657484, 0.0362026505, -0.00788239203, -0.000292711979, 0.0088170087, -0.0139436563, -0.00113219186, -0.00821912941, 0.00931867771, 0.0226919428, -0.00416110596, -0.0135794301, -0.0155311301, 0.00310622598, 0.0230218079, 0.025825657, 0.0227469206, 0.0410406664, 0.0134763476, 0.0186785888, 0.0147339571, -0.00534999324, -0.000172234053, 0.0141017167, 0.0282858983, 0.0089888135, -0.00656980556, -0.0409307107, -0.0101708286, -0.0135863023, 0.0151737761, 0.0160259269, -0.00663852738, -0.0183212347, 0.0208639428, -0.0146102579, -0.0103563778, -0.0157098062, -0.000426719518, 0.0057623242, 0.0101639563, 0.0125898365, -0.0201354921, 0.0257157031, 0.016589446, 0.00320759066, 0.0114765428, -0.00170601904, -0.00194482738, 0.015586107, 0.00857648253, 0.00758001627, 0.00382780493, 0.0141841825, -0.00839093328, -0.0131121222, -0.0133870095, -0.037219733, 0.00706460234, 0.00385185773, -0.013785596, 0.020369146, -0.0109130237, -0.0173178967, -0.000609047071, 0.0106037762, -0.00595818134, 0.0148026785, 0.011304738, 0.00982721895, -0.00633958727, -0.00342234643, 0.00410269247, -0.00653888052, 0.00554241426, -0.0188984983, 0.00789613649, 0.0141154602, -0.00319212815, 0.0204103794, 0.00705085834, 0.00279869582, -0.00576576032, -0.0149538666, -0.0135107087, 0.00414048927, -0.00481396308, -0.0165482126, 0.0197506491, 0.0269114617, 0.00587915117, 0.00339657557, -0.0206028, -0.00466277497, 0.0158884842, -0.00240698154, 0.006892798, -0.00572796306, -0.00280385, 0.00203760178, 0.0368623808, -0.00691685081, -0.0168780778, -0.0065217, -0.0254270714, -0.00850088801, -0.0174003635, -0.0178951602, 0.00105745695, -0.0141292047, 0.00873454288, -0.00217332738, 0.00973100867, 0.0102807833, 0.00468682777, 0.0153524531, 0.00659042178, 0.02479483, 0.00459061703, -0.00427793292, 0.0128647238, 0.0267052967, -0.00618496304, 0.00683782063, -0.00495484285, -0.000949220033, -0.0139574008, -0.00633958727, 0.00786177535, -0.00568329403, 0.00625712099, 0.00204103789, 0.00938052777, -0.0113253547, 0.00782054197, 0.0189534761, -0.0322717652, -0.000275746279, 0.0151737761, -0.000587142, 0.0123218214, -0.00790988095, -0.00204791012, 0.0033536246, 0.0088651143, -0.0111054452, -0.014761446, 0.0149263777, -0.0211938079, -0.0241213571, -0.00949048251, 0.00947673805, 0.000482770731, -0.00213037618, 0.0145140467, -0.00375908334, 0.0095110992, 0.0143766031, 0.0177439731, 0.0074150837, -0.00120692689, -0.00802670792, 0.0238602143, -0.0135863023, 0.025976846, -0.0149538666, 0.000616348756, -0.0133251594, 0.00884449761, -0.00556646707, 0.0220871903, -0.00737385079, 0.00663165515, -0.0181975365, -0.0187335666, 0.00418172218, 0.0232966952, 0.0267602745, -0.0159022287, 0.00517131668, -0.0205890555, -0.019214619, 0.00292754918, 0.017180454, -0.00256675971, 0.00274028233, -0.00882388093, 0.010686242, 0.00424013613, 0.00212178612, 0.00196372578, -0.00884449761, -0.00924995635, 0.00257191388, -0.0234753713, -0.00959356502, -0.00463528652, 0.0177027397, -0.00556303095, -0.0139230397, 0.0161358826, -0.00013400754, 0.00757314404, 0.0207127556, 0.00491704559, -0.0214824397, -0.00134608848, -0.00418515829, -0.00475898571, 0.00244134245, 0.000750356296, 0.00942863245, 0.00807481352, 0.015201265, 0.0030787373, -0.0206440333, 0.00849401578, -0.00893383566, 0.00255816942, -0.031144727, -0.00910564, -0.00635676784, 0.0164932348, -0.00193108292, -0.00198262441, -0.013668769, 0.0194070395, -0.00687561743, 0.00207196269, -0.00152390625, 0.018980965, -0.0168368444, -0.0290555824, 0.0142803928, 0.000219695052, -0.0253720935, -0.00529845199, 0.00645297812, 0.000584994443, 0.000652857241, 0.00282790256, -0.0086452039, 0.00504761701, -0.0108168134, 0.0131670991, -0.00268874108, -0.00733261742, -0.00639800075, 0.0276261698, 0.0188710093, -0.019571973, 0.0119575961, 0.00947673805, -0.0195032507, -0.00165275962, -0.0248360634, 0.00484832376, -0.00301173353, -0.0093874, -0.0224720333, 0.00705773, -0.00149641745, -0.0049204817, -0.0168368444, 0.0076487381, 0.0134488586, -0.000389352033, 0.0287257191, -0.0201904681, 0.0430748314, 0.0123836705, -0.00666945195, -0.00623994088, 0.00137615437, 0.0134419864, -0.00244993274, -0.0070164972, 0.00421608333, 0.0148439119, -0.0102258064, -0.00310450792, 0.0152699873, 0.00808855705, 0.000536459673, 0.0300451778, -0.0158747397, -0.00724327937, 0.00498920353, -0.0104869492, 0.00225063949, -0.000657581841, -0.00107979146, 0.0114765428, -0.0195032507, -0.0211250857, -0.00903004594, -0.0174003635, 0.0206715222, -0.00914687384, -0.00488268491, 0.00676566269, 0.0107618356, 0.00360789523, -0.0135038365, 0.00754565513, -0.00449440675, 0.00171976339, 0.00563175278, 0.00614716625, 0.00433291029, 0.0289456286, -0.0200667698, -0.00404771464, 0.00099646626, 0.0214412063, 0.0137100015, -0.0128784683, -0.000219909809, -0.000450986903, 0.0142391594, -0.0308973268, 0.00472806068, 0.00183659047, -0.0138199572, 0.0149813555, -0.0235715825, 0.00994404685, 0.000211534338, -0.00352199306, 0.0182525143, 0.0159846935, 0.0129471896, 0.00783428643, 0.0150225889, -0.00551836146, 0.00265438017, 0.00678971503, -0.00695808372, -0.00380375236, 0.0280659888, -0.0118132802, 0.00887198653, 0.0072501516, -0.0196544379, 0.00415423373, -0.00228843652, 0.0101295952, -0.0220047254, 0.0243412666, -0.00652857218, 0.0231867395, 0.00666601583, -0.028368365, -0.0039996095, 0.0142803928, 0.0246161539, 0.011985084, 0.00192764692, 0.00394463213, 0.00353230117, 0.00977224205, -0.00621588808, -0.00124730088, 0.0149263777, 0.00664883573, -0.027777357, 0.00576919643, -0.010390738, -0.0126104532, 0.000463442731, 0.000462154188, 0.0147064682, -0.0171117317, 0.0192970857, 0.0471706539, 0.0041473615, 0.0296603348, 0.00836344436, -0.0189397316, -0.00514039164, -0.00437414367, -0.0268564858, -0.00475898571, 0.000888229464, 0.0136412801, -0.032739073, -0.0187473111, 0.00531906821, 0.0291105602, 0.00150500773, -0.00491360947, 0.0104732048, 0.00369379739, 0.0070164972, -0.0150913103, -1.22612064e-05, -0.00330895535, 0.0124111595, -0.00119146449, 0.0179226492, 0.0139299119, -0.0155586191, 0.0286157634, -0.00532250432, -0.00598910591, 0.000362507562, -0.000556646672, 0.00162269385, 0.00397899281, 0.0129197007, -0.0163695365, -0.000888229464, -0.0172079429, 0.00841155, -0.00918123405, -0.00837718882, 0.0193520635, 0.0190084539, 0.00681376783, 0.00619183527, 0.0105762873, -0.0356528759, -0.0150638213, 0.00326944026, 0.00372472242, -0.014788934, -0.0101364674, 0.00378657202, -0.0181425586, 0.0018898499, 0.0357353427, 0.0144865587, -0.0038759103, 0.0124798818, 0.0238877032, -0.00433634641, -0.0118407682, -0.00876203086, -0.0099096857, 0.021812303, -0.00810917374, -0.00066144747, -0.00357353431, 0.00663509127, 0.00366974482, -0.035515435, -0.00372815831, 0.0104250992, 0.0279010572, -0.0262379888, -0.00993717462, 0.00204275595, -0.00562488055, -0.00948361, 0.0191321522, 0.0225270111, -0.00901630241, 0.00974475313, -0.0150913103, -0.0106793698, 0.000736611953, 0.0147202127, 0.0107068587, 0.0211388301, -0.00901630241, -0.0176889952, -0.0256744698, 0.00971726421, 0.00773120392, -0.000826379808, 0.00826036185, -0.00740133924, 0.00364225614, -0.00369379739, 0.0078274142, 0.00949735474, 0.0178539269, 0.00539809838, -0.0050682337, 0.00894758, 0.0134488586, -0.00240354543, -8.20366622e-05, 0.0206028, 0.00546682, -0.00471775234, -0.00589289563, 0.0104113547, -0.00494109839, -0.014761446, 0.0088651143, -0.0110435952, -0.0107824523, -0.00130743254, 0.00253239879, 0.00156342122, 0.0275437031, -0.004398196, 0.00508885039, -0.00142855477, 0.00558021152, -0.0143491151, 0.00164331042, 0.0137100015, -0.00729825674, -0.013077761, -0.0229530856, 0.00457687303, -0.00816415157, 0.00354948174, -0.00911251269, -0.017771462, 0.000389781548, 0.000827238837, 0.0185823776, 0.00841842219, 0.00199465058, 0.029165538, -0.000381835591, 0.00372128631, -2.75424154e-05, 0.00854212139, 0.00986845233, -0.00491704559, -0.00350481248, 0.00957982056, -0.0181150697, -0.0151325436, 0.00659385789, -0.0181150697, -0.0104663325, -0.0140467389, -0.017386619, 0.0369723365, -0.00249116565, 7.91240382e-06, 0.00895445235, -0.00274715456, 0.0195857175, 0.0207814761, -0.0264304094, -0.0242313109, 0.0236403048, 0.00263376348, 0.0265128762, -0.0223620776, -0.0117720468, 0.00897506904, 0.00013594034, -0.0109405126, 0.00709209125, -0.00520911347, 0.00950422697, 0.0161633715, -0.0158335064, 0.0120606786, 0.0012661994, -0.0103838658, 0.0066591436, -0.0164657459, -0.00615060236, -0.0108374301, -0.00369379739, -0.00129025208, 0.00638769241, -0.00358727877, 0.0081229182, -0.0212762728, 0.0170704983, -0.0134557309, 0.00642548967, -0.0113253547, -0.000849143893, 0.0141704381, -0.00601659482, 0.00928431749, 0.00109267689, 0.00669006864, -0.00456312858, -0.0219497476, -0.00964167062, -0.0168918222, 0.0157235507, -0.000642548956, -0.0209464096, -0.00790988095, 0.0120675508, 0.00843903888, 0.00625024876, 0.0146652348, -0.0134213706, 0.00911938492, 0.00703711389, -0.0118132802, 0.0115177762, 0.0230767857, 0.0145690246, 0.00267843273, 0.00258394028, -0.000729739782, -0.00803358, -0.00374877499, 0.000854298065, 0.00385529385, 0.00535342935, 0.00716081308, -0.0106518809, 0.0140329944, 0.0328765176, -0.0053018881, 0.00990281347, -0.0175240617, -0.02479483, 0.00191046647, -0.0351580791, 0.000506393844, 0.00273512816, -0.0190496873, 0.007999219, -0.00323164323, 0.0216336269, -0.0146102579, -0.00023021808, 0.00836344436, -0.0077724373, -0.00248429365, -0.00249116565, 0.0118545126, 0.00304265833, -0.00703711389, -0.00525034638, -0.0147477016, 0.0190771762, 0.0169605445, 0.000932898605, 0.0222658683, 0.00674848212, 0.00853524916, -0.0190496873, -0.00194310932, 0.00208570715, -6.95942572e-06, -0.0213312507, -0.0129540619, 0.00323851546, 0.00308217341, -0.00962792616, 0.0074769333, 0.00481396308, 0.0109680016, -0.00766248209, 0.0229530856, -0.000890806492, 0.00806794129, 0.00725702336, 0.000183186581, 0.00397212105, 0.000808340323, -0.00357697043, 0.00577950478, -0.0148164229, -0.012514242, -0.000666601583, -0.0178401824, -0.0178814158, -0.0205203332, 0.00860397145, 0.0169468, 0.00887885876, -0.00480709085, 0.00217160932, -0.00236918451, 0.0126241976, 0.00238464703, 0.00476929406, 0.00755252736, -0.0119644674, 0.00168712053, -0.0134832198, -0.0129403174, 0.0115933698, 0.0220322143, 0.00363538391, 0.0108305579, -0.0175103191, 0.0136275357, -0.00981347542, -0.0105350539, -0.00322820712, 0.0108992793, 0.00202042144, 0.0133045428, 0.000592725642, -0.0217985585, 0.0197643936, -0.0102464221, -0.00355291786, -0.00696839206, -0.0273512825, 0.00739446701, 0.00854212139, 0.00139075774, -0.0121637611, -0.00132976705, 0.0166856572, -0.0124936262, -0.0222108904, -0.015201265, 0.00554241426, -0.00402709842, 0.00392745156, 0.0134626031, 0.0133182872, 0.000117578726, -0.0259493571, -0.00619527139, 0.0137581071, 0.0107137309, 0.00052443333, -0.00522285793, -0.0180188604, 0.0133320317, 0.0121362722, 0.000119511533, 0.0165482126, -0.0174965747, 0.0171941984, 0.00400304561, 0.0176477619, 0.0279148016, -0.00205821823, 0.0381818414, -0.00755939959, -9.01973817e-06, -0.021990981, -0.00830159523, -0.0139848888, -0.00769684324, -0.00204619206, -0.0205615666, -0.0143216262, -0.0142391594, 0.00130743254, 0.00907127932, -0.00577263255, 0.0108168134, -0.00631897058, 0.012101911, -0.00575201586, -0.01219125, 0.00219738, -0.0232142285, -0.0040614591, 0.000210031038, 0.00326085, 0.00388621865, -0.0251934174, 0.00640487298, -0.0395562761, -0.0125211142, -0.0238327254, -0.0330689363, -0.0177027397, 0.0190771762, 0.00676222658, -0.00909876823, 0.00764186587, -2.77303261e-05, 0.0139436563, 0.0141704381, 0.0112497611, 0.00949048251, -0.0142941372, -0.0144453254, 0.000288416864, -0.00437070755, -0.00753191067, 0.00682064, -0.0244512223, 0.0344158858, 0.0175378062, 0.0111535508, 0.00153850962, -0.00429167738, 0.0107412199, -0.00437758, -0.0034154742, 0.016589446, 0.0281759445, -0.00336221466, -0.00642548967, 0.0258531459, -0.0252896268, -0.0153661976, -0.0150638213, 0.0195582286, -0.00663852738, -0.000455282017, 0.018568635, 0.0135038365, -0.0130227841, 0.00815040711, 0.0107755801, -0.0102395499, 0.00775182061, 0.00518849678, -0.00534312101, 0.0104250992, 0.0171941984, 0.000623650441, 0.00521942182, -0.00616434682, -0.0125967087, -0.002272974, 0.0102395499, 0.0217710715, -0.00705085834, -0.000424357189, 0.0294954032, -0.0130090397, -0.00633271504, -0.00139591179, -0.00203931984, 0.00570734683, 0.00913312938, -0.00227812817, -0.00403397065, 0.0249460191, -0.00867269281, -0.0114353094, -0.0169330556, -0.0325466506, -0.018568635, -0.0276536588, -0.0126723023, -0.013311415, 0.00106518809, 0.0212212969, 0.00876890309, 0.0130227841, -0.0124592651, 0.00287428987, -0.00657324167, 0.0200667698, 0.017001776, -0.0511015393, -0.00704398612, 0.00909876823, 0.0156823173, -0.0120606786, -0.00821225718, 0.0232829507, -0.00998527929, 0.00455282, 0.00942863245, 0.000825950294, -0.00397899281, 0.00840467773, 0.0182250254, -0.0316945, -0.0058860234, 0.014582769, 0.00192421081, 0.00669006864, -0.0184999127, -0.0206028, -0.0163008142, -0.00028949065, -0.0111398064, -0.00927744526, 0.00413361704, 0.00286054541, 0.0206852667, 0.00632584281, -0.0161083937, -0.0234891158, -0.00706460234, -0.00574514363, -0.00942176115, 0.0152287539, -0.00588258728, 0.0138405729, -0.00520567736, -0.00206509046, -0.0299902, -0.012397415, -0.011689581, 0.00149985356, -0.00751129445, 0.00210632361, -0.0135381976, 0.0184311904, 0.00228328235, 0.00531219644, -0.000519279216, -0.0218535364, 0.0033536246, -0.0149951, -0.0023777748, -0.0456037968, 0.00151617499, 0.0230355524, 0.00927057303, -0.0239701681, -0.021757327, -0.0132426936, -0.00144917122, -0.00593756465, -0.00599941425, 4.340749e-05, -0.015586107, -0.0286707412, 0.00270763948, -0.0144453254, -0.0094423769, 0.025592003, -0.0161358826, -0.0101227229, -0.0123355659, 0.0249322746, -0.00416454207, 0.0130846333, -0.020162981, -0.0107274754, -0.00736010633, 0.000641689927, -0.00873454288, -0.0297153126, 0.00511977496, -0.0158747397, -0.00171976339, -0.00244477857, 0.0100471294, -0.0133938817, -0.00725702336, -0.0207264982, -0.0190084539, 0.00604408374, 0.0104732048, 0.0147339571, -0.00837718882, -0.0220322143, -0.0237502586, 0.00538091781, 0.00573139917, 0.00626399321, -0.0326016285, -0.000415122719, -0.0226919428, -0.00264407182, 0.003372523, -0.00274371845, 0.00889260229, -0.00520224124, 0.0105694151, -0.00661791069, -0.00556646707, -0.0066419635, 0.00411643647, -0.0212625284, -0.0121087832, 0.0184724238, -0.0148301674, -0.0160121825, 0.00845965557, 0.019214619, -0.0038759103, -0.00503387302, -0.0102326777, -0.00553554203, 0.00509915873, 0.00865894835, 0.012692919, -0.00170430099, 0.00354948174, 0.0348831937, -0.0255095381, -0.0103495056, -0.00389996287, -0.00568329403, -0.0297153126, -0.0100333849, -0.00663852738, -0.0252621397, 0.016149627, -0.0251246952, 0.00928431749, 0.00441194046, -0.00182284613, 0.0095110992, 0.00689623412, 0.0190634318, 0.00714706862, -0.0104388436, 0.0123218214, 0.0135863023, -0.00518506067, 0.0362851173, -0.00855586585, 0.022994319, -0.0260180794, 0.0016707991, -0.000250834622, 0.00629835436, -0.00185033481, 0.0275437031, -0.00559739163, -0.00374190276, 0.00441537658, -0.00885824207, -0.0130021675, -0.0164657459, 0.0204378683, -0.00814353488, -0.0119919563, -0.0125073697, -0.0367799141, -0.0117857913, -0.0103082722, 0.00553897815, 0.00535342935, 0.0149126332, -0.00419546664, -0.0166581683, -0.0120538063, 0.0124111595, -0.0161633715, 0.0174003635, -0.0154211754, -0.0110435952, 0.011600242, 0.0221421681, -0.0196681824, 0.00406489521, 0.00115710357, -0.0165619571, 0.00143800396, 0.0155036412, -0.0177577175, -0.00201354921, 0.00703367777, -0.00840467773, -0.0131121222, -0.00746318884, 0.0218397919, 0.0121843778, 0.0247535966, 3.07637492e-05, 0.0201492365, -0.013194588, -0.00910564, 0.02101513, 0.0153524531, 0.00938052777, -0.00853524916, -0.0217298381, 0.0188984983, -0.0210288744, -0.0141704381, -0.00343609066, -0.00336565077, -0.0233241841, 0.0143903475, 0.00512664719, 0.0221146792, -0.00703367777, -0.0133251594, -0.00981347542, 0.0190496873, -0.00948361, -0.0109130237, -0.00920872297, 0.0103082722, 0.00303235, 0.00418515829, -0.0157372952, 0.0118064079, -0.00643923413, -0.0127685126, 0.0101502119, -0.00330036506, 0.0290830713, -0.00732574519, 0.0050063841, -0.0110573396, 0.00928431749, -0.00518849678, 0.00727764, 0.00903691817, -0.00729825674, 0.0107687078, 0.00405802298, 0.009682904, 0.0182112809, -0.010981746, -0.00883075316, 0.00920185074, 0.0214412063, -0.00262345513, -0.0154761523, 0.00528470753, 0.0201080032, 0.00952484366, 0.00465590274, -0.0126860468, 0.0305399746, 0.0159846935, -0.0149126332, -0.00581386546, 0.000764100696, 0.0136344079, 0.00171289116, 0.0204516128, -0.00775869284, -0.00924995635, 0.00815040711, -0.00503043691, 0.00923621189, -0.0107480921, 0.00592725631, -0.00733261742, 0.000587571529, 0.0018743875, -0.00931180548, 0.0151737761, 0.0131533556, -0.0232829507, 0.000230862337, 0.0103151444, 0.00024181488, 0.0166169349, 0.0217985585, -0.0208227094, 0.0150363334, 0.00252896268, 0.00422982778, -0.013400754, -0.00382780493, 0.0116139865, 0.0111123174, -0.00957294833, 0.00106948323, -0.0178814158, -0.0189122427, 0.0246436428, 0.0183074921, -0.00840467773, 0.00157630665, 0.00862458721, -0.00894070789, 0.0159297157, -0.0106999865, 0.00220253412, -0.0128647238, -0.0124936262, 0.0178539269, 0.00475211348, -0.00508197816, 0.00616091071, -0.0168780778, 0.0302925762, 0.0223071016, 0.0192008745, -0.0036250758, 0.0169193111, -0.0168780778, 0.00581730157, 0.00874828734, 0.0236403048, -0.00344124483, -0.0106312642, -0.0125692198, 0.00751129445, 0.0107755801, -0.0187885445, -0.0136893857, -0.00264578988, 0.0153524531, 0.0401885174, 0.00552867, -0.00385873, 0.00316979364, -0.0235303491, -0.0053637377, 0.00166392687, -0.00635333173, 0.0131670991, -0.0313646346, -0.00903004594, -0.00477616629, 0.00866582058, -0.00911938492, 0.0203004237, -0.0386216603, -0.0178401824, 0.0254820492, -0.0111398064, -0.000632670184, 0.0145140467, 0.0116552198, -0.00361476745]
|
09 Feb, 2021
|
Fabric.js | Triangle cornerSize Property
09 Feb, 2021
In this article, we are going to see how to set the size of controlling corners of the canvas triangle using FabricJS. The canvas triangle means the triangle is movable and can be stretched according to requirement. Further, the triangle can be customized when it comes to initial stroke color, height, width, fill color, or stroke width.To make this possible we are going to use a JavaScript library called FabricJS. After importing the library, we will create a canvas block in the body tag which will contain the triangle. After this, we will initialize instances of Canvas and triangle provided by FabricJS and set a corner size of controlling corners of the canvas triangle using cornerSize property and render the triangle on the Canvas as given in the below example.Syntax:
fabric.Triangle({
width: number,
height: number,
cornerSize: number
});
Parameters: This function accepts three parameters as mentioned above and described below:
width: It specifies the width of triangle.
height: It specifies the height of triangle.
cornerSize: This parameter defines the size of the controlling corners.
Example: This example uses FabricJS to set a size of controlling corners of the canvas-like triangle as given below. You have to click on the object to see the size of controlling corners.
html
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Triangle cornerSize Property
</title>
<!-- Adding the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;width: 600px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Triangle cornerSize Property
</b>
</div>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a triangle instance
var triangle = new fabric.Triangle({
width: 150,
height: 100,
fill: '',
stroke: 'green',
strokeWidth: 3,
cornerColor: 'blue',
cornerSize: 10
});
// Render the triangle in canvas
canvas.add(triangle);
canvas.centerObject(triangle);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js Textbox cornerStyle Property/Fabric.js Textbox cornerSize Property/Fabric.js | Triangle cornerSize Property
|
https://www.geeksforgeeks.org/fabric-js-triangle-cornersize-property?ref=asr2
|
CSS
|
Fabric.js | Triangle cornerSize Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, Fabric.js Textbox cornerSize Property, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Fabric.js | Triangle cornerSize Property, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js Textbox cornerStyle Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.018611379, -0.00156983512, -0.00942567736, 0.0323966, 0.047115054, 0.0254506618, 0.0126720024, 0.0302368253, -0.00938568078, -0.02454409, 0.00429954845, -0.0027713757, -0.000779084861, -0.0534077249, -0.000912404212, 0.0148251103, -0.0459685065, -0.0109721813, -0.0142651685, -0.00497947726, -0.00571939955, -0.0202245433, -0.0246107485, -0.0105522256, 0.0184913911, 0.0392492115, 0.0153317237, 0.010618885, -0.0308500938, -0.000834912353, 0.0026613872, 0.0200645607, -0.0125920111, -0.0418356061, -0.00168315659, -0.026423892, -0.00773918722, 0.0663930252, -0.032796558, -0.00751921069, -0.00103322486, 0.00883907173, 0.000764086435, 0.018051438, 0.00729923369, 0.000523278373, -0.0171582, -0.0194246266, -0.0160249844, -0.0452752449, -0.0173048489, -0.0201178882, 0.0296502206, 0.00406623958, 0.00412956625, 0.0213310942, 0.00534610543, 0.044155363, -0.0121853873, -0.00328965462, 0.0439420529, -0.0836178884, -0.040289104, 0.0148251103, -0.0241041351, 0.00623601209, 0.00138152158, 0.0330631956, -0.00747921458, -0.0164649375, -0.0281570442, 0.00253806682, 0.00759253604, -0.0351696387, 0.0078391768, -0.0311967246, 0.0504480377, 0.0104589015, -0.0419955887, 0.0415689684, -0.0194646232, 0.016518265, -0.0069126077, 0.0250507034, -0.0237175096, -0.00313633727, 0.0294635724, -0.0463151373, -0.0120454021, 0.0197179299, -0.0110788364, 0.0120853977, 0.0174115058, -0.0661263913, -0.0171981938, -0.00835245661, 0.00499614188, -0.018384736, -0.0309834126, 0.0172115266, 0.0196512695, 0.054047659, 0.0151317446, -0.0183447413, -0.0119120823, -0.047888305, 0.0324232616, -0.0104322378, 0.0165315978, -0.00887906738, 0.0295435637, -0.0251840223, 0.00799249392, 0.044422, -0.0628734, 0.00751254475, -0.00125070196, -0.0357562453, 0.0432487912, -0.00594937522, 0.00349296653, -0.00415289728, 0.0115854498, 0.0360762104, -0.0439953804, 0.0306901112, -0.0264505558, 0.0161316395, 0.0201312192, -0.00449952763, -0.00209144712, -0.0179047864, -0.000310800708, -0.014638463, 0.0134985829, -0.000269346725, 0.0206111688, -0.00300135161, -0.000261639187, 0.00418289425, -0.0107722022, -0.0210911185, 0.00594604248, 0.0393025391, 0.00347963464, -0.00540276617, 0.0117121032, -0.00132986042, -0.0256373081, 0.0302901529, -0.0623934492, -4.75731285e-05, 0.0252640136, -0.0108521935, 0.0419156, -0.0233708788, -0.023890825, 0.0141585134, 0.0302901529, -0.0257306322, 0.0513279438, -0.00303968089, -0.00925236195, 0.0474350192, -0.0349563286, -0.0081724748, -0.00371627649, 0.0148384422, -0.0466084406, 0.0232375599, -0.00264138938, 0.000452452485, -0.0120254038, 0.0146784587, -0.0313300453, -0.0350096561, -0.0104389042, -0.0393558666, 0.0321299583, -0.0159983207, -0.042155575, 0.0237708371, 0.00923236366, 0.0562607609, -0.00496614538, -0.00395958405, 0.0368494652, 0.0038096, -0.0105055636, -0.0338364467, -0.0133852614, 0.0247574, 0.0360228829, 0.00983230118, 0.012711999, -0.0225176364, 0.00759920198, 0.0189846735, 0.000380793354, -0.00264472235, 0.0259439424, -0.0119654099, -0.0182514172, -0.028557, 0.0230775774, -0.00823246874, -0.0038595947, -0.0585005246, 0.0377027094, 0.0109655149, 0.00172315235, 0.00371960946, 0.0129986349, -0.00138318806, -0.0169982146, -0.00263305684, -0.0166915804, 0.0166515857, -0.0187047031, 0.015411715, 0.0140651902, 0.0219443627, -0.00879907608, -0.0319433138, -0.0487682112, -0.00837912, 0.0154650426, 0.0210644547, -0.0309567489, -0.0236241855, 0.0205578413, -0.0136785638, -0.0079191681, 0.0142918332, 0.038529288, 0.0128853135, 0.00107488711, -0.0207444876, 0.00751921069, 0.020264538, 0.00352629647, 0.00258639501, -0.0225309674, -0.0232375599, 0.0467150956, -0.00356629211, -0.0172381904, 0.0271838121, 0.00872575, -0.0278637409, -0.0428755, -0.0202245433, 0.0300235134, 0.00407290552, -0.0207311567, 0.00326465722, -0.0228909291, -0.0332498439, 0.047888305, 0.0323432721, 0.0542609692, 0.0149850929, -0.00961232372, 0.0186647065, -0.00824580062, -0.011178826, 0.0179847777, -0.0435420945, 0.00355296023, -0.0370627753, -0.000274554506, -0.0207178239, 0.033569809, -0.0358362384, -0.0174381696, 0.0380760022, -0.00830579456, -0.0074192211, 0.0399158075, -0.00389625761, 0.00981896929, 0.0232908875, 0.0347696841, 0.039755825, -0.0101655992, -0.0195312817, 0.0132652735, 0.0304234717, -0.0281303804, -0.0335164815, -0.0243841056, -0.0269038416, 0.0175048281, -0.0223843157, 0.0271571483, -0.00771918939, -0.00139735325, -0.0343697257, -0.0194246266, -0.0304234717, -0.0435687602, -0.00808581803, -0.00991895888, -0.0216643922, 0.0194779541, 0.0351429768, 0.040529076, -0.00630933745, -0.0227576103, 0.0246240813, 0.00689260941, -0.0317566656, -0.0429821536, -0.0336764641, 0.00591271231, -0.00108321954, 0.0747121572, 0.00607602857, -0.0212111063, 0.00465617795, -0.0377827, -0.0145984674, 0.0302901529, 0.0570073463, 0.0570073463, -0.0157850087, -0.0293302536, -0.0401824489, -0.00447953, -0.00993229076, -0.0162782911, -0.00346296979, -0.0243041143, -0.00466951, 0.0100522777, 0.0246374123, 0.0027713757, -0.0151850721, -0.0463151373, 0.0406623967, 0.0201312192, 0.00799916, -0.0225576311, -0.0189980045, 0.0417822786, -0.052847784, -0.0175848193, 0.00619601598, 0.0433554463, 0.0332498439, 0.000883240602, 0.0360762104, 0.0124920215, 0.0288236402, 0.0041395654, -0.0134919165, 0.0109255193, -0.0265305471, -0.0387159362, 0.0002905945, 0.0136652319, 0.0228909291, -0.00348296762, 0.0307701025, 0.0193979628, -0.0183714051, -0.00593604334, -0.00670262938, -0.0081124818, 0.00903238449, -0.0329032131, -0.0275437739, -0.0218777023, -0.0240908042, -0.0177581348, -0.0151184127, 0.0059627071, -0.0148917697, -0.0434087738, 0.00848577544, -0.0447419696, 0.035569597, 0.00585605158, 0.00953233242, 0.0500747412, 0.0415689684, -0.0116121145, -0.0107922, 0.0178114623, 0.0113121457, -0.0292502623, 0.0168249, 0.0362895243, -0.0131319547, 0.0138385473, -0.0332231782, -0.0268905107, -0.0411156826, 0.0129253091, -0.0408223793, 0.00587605, 0.0360495485, -0.002491405, -0.0266505349, 0.0397024974, -0.0150117567, -0.0391158946, -0.0295968931, 0.0238241646, -0.0487148836, 0.00321132946, 0.0145584717, -0.021477744, -0.0128253195, 0.0443420112, 0.0142118409, 0.00395958405, 0.0395425148, -0.0236908458, -0.0196912661, 0.0714058354, -0.0143718245, -0.0314100347, -0.0162249636, -0.0115987817, -0.0127186645, -0.0286369938, 0.00624601077, 0.0211711098, -0.00854576938, -0.101056054, 0.0270504933, -0.0130186332, -0.0135052484, 0.0200512279, -0.0169448871, 0.0486082286, 0.0374360681, 0.0273837913, 0.0186380427, -0.00493614841, 0.0198379178, 0.0414623134, -0.0199579038, -0.0201978795, 0.0305301268, -0.0483415909, -0.0425022021, 0.0281303804, 0.0145584717, -0.0233175512, 0.00650598342, -0.0553541891, -0.00746588269, -0.0125120198, -0.0169715509, 0.0365561619, -0.000385376188, 0.00554608414, -0.0325565822, -0.0320766307, -0.0120920632, -0.00405957364, 0.0116254464, 0.0188646857, 0.00490281871, -0.0103255827, -0.00639266195, 0.00317133358, 0.00949233677, 0.0251440257, 0.0122520467, 0.0234242063, 0.012831986, 0.0196379386, 0.00718591223, -0.00999895, -0.0190113373, 0.0215310734, -0.0164649375, 0.0411423482, -0.00122237171, 0.0145984674, 0.0302634891, -0.0163316187, -0.033463154, 0.0200645607, -0.0219043661, 0.00705259293, 0.0132252779, 0.0401557833, 0.00968565, -0.00508613279, 0.0159183294, -0.0028796976, 0.0211977735, 0.00591271231, -0.0303168166, 0.0449819453, -0.0110921683, -0.00761253387, 0.0246907417, -0.00841245, 0.0531677492, 0.0253173411, 0.0118120927, -0.0105855549, 0.0144651476, -0.0549275652, -0.00556941517, -0.0294635724, 0.0200778916, -0.0222509969, -0.00487948768, -0.0118254246, -0.0351163112, 0.0295968931, -0.000943234307, -0.0059627071, 0.0131786158, 0.0149450973, -0.0275171101, -0.00720591, -0.0184247326, 0.0175581556, 0.0339697674, 0.0133452658, -0.00438287295, 0.00932568777, -0.00408290466, -0.013211946, -0.00335798063, 0.0278104134, 0.0161449723, 0.0076725278, -0.0197845884, -0.0187713616, -0.0155983623, -0.00616601901, -0.017731471, -0.0329565406, -0.0315433554, -0.0369027928, 0.00833912473, -0.00741255516, 0.0236908458, -0.00165232655, 0.010452236, -0.00245474232, 0.00505280262, -0.0179981105, 0.0150517533, -0.00734589528, -0.00378293614, 0.0278904047, 0.00976564083, 0.0406890623, -0.0287969764, -0.0249973759, -0.0105922213, 0.0199712366, -0.00617268542, 0.0208644755, 0.0346096978, -0.0134319225, -0.0295968931, -0.00630933745, 0.0153717194, -0.0277304221, 0.0139185386, 0.0119187487, -0.0325032547, -0.0320233032, 0.00727257, 0.00412623351, -0.00689260941, 0.0115254568, -0.0292502623, 0.02269095, 0.0345830359, -0.00309967459, -0.0174648333, 0.00267471909, 0.0127253309, 0.000643682433, 0.013985198, -0.0111121666, -0.0245040935, -0.055940792, -0.0219443627, 0.0112721501, 0.0229042619, -0.0226376224, -0.004816161, -0.0241974592, 0.0506880097, 0.0159183294, -0.0183980688, 0.024664076, -0.0356229246, 0.0159583241, 0.00373294135, 0.0108988555, 0.000469950668, -0.0289036315, -0.0215444043, 0.00860576332, 0.0290902797, 0.000344130531, 0.0090390509, -0.00471617142, -0.00175981526, -0.00375293917, -0.038422633, -0.0318899862, -0.0169048924, 0.0108721917, 0.0139718661, -0.0266638678, -0.014865106, 0.0271971449, -0.0211177822, 0.0298901945, -0.00831246097, 0.0140785221, -0.0293302536, -0.0131119564, -0.00380626693, 0.0140251936, -0.0225309674, -0.0248240605, -0.0157316811, -0.0183180757, 0.0129053118, 0.00150234229, 0.0306901112, 0.00705925887, 0.0246374123, -0.0161716361, -0.0078391768, 0.0110321753, -0.0034729687, 0.00819247309, 0.0227842741, -0.00313967024, -0.00279137352, -0.0443686731, 0.0181980897, 0.00689927535, -0.00795249827, -0.0256106444, 0.00931235589, -0.0235308632, 0.0115387887, 0.00683261594, 0.0289302953, -0.00212477683, 0.0434621, -0.00305634574, -0.0139985299, 0.00601936784, -0.0229175929, -0.00283136941, -0.023677513, -0.003219662, -0.00416622916, 0.034903, -0.00909904484, -0.00421955716, 0.00546275964, -0.00816580933, -0.0090390509, -0.00487615447, -0.00355962617, 0.0106055532, -0.0169848837, -0.0156650227, 0.0524211638, 0.0299435221, 0.0132252779, 0.0166782495, -0.0333031714, -0.00487615447, 0.00160233176, -0.00465284474, -0.00913237408, -0.0277837496, 0.0152650634, 0.000275596074, 0.0181847569, 0.0415689684, 0.0272238087, 0.018384736, -0.00289636245, 0.0337564573, -0.0143851563, 0.0122187175, -0.0247973967, 0.00865909085, 0.0217710473, -0.0276770946, -0.0034962995, -0.0101456018, 0.00947233848, -0.000699093274, 0.0592471138, -0.0195312817, 0.0201045554, -0.0158783328, -0.0136319017, 0.0340230949, 0.0169182234, -0.00205645082, -0.00700593088, -0.00570606766, -0.0227442794, 0.0178781226, -0.0270238295, -0.000410165259, 0.006605973, 0.0100456122, -0.00885240361, 0.0431954637, -0.0192246474, -0.0135652423, -0.00220976793, -0.00331131904, 0.00899238884, -0.00473616924, -0.00469950633, 0.00640932703, -0.00247307355, -0.0240241438, -0.00535943732, -0.0227576103, 0.024557421, 0.00412956625, -9.7437689e-05, -0.0181047656, -0.0223176572, -0.0153583875, -0.0365028344, -0.0333298333, -0.00855243579, -0.0261972491, -0.0121320598, -0.00645932183, -0.00112321542, 0.000989062828, 0.0338364467, -0.00511279656, -0.028077051, 0.0172515213, -0.00253806682, 0.0322899446, -0.0341030844, -0.0103322482, 0.0219043661, -0.00369961164, 0.034903, 0.000226642864, 0.0348230116, -0.0372760855, 0.0500747412, -0.00346630276, 0.00717258034, -0.00977230724, -0.0110188434, 0.0251173619, -0.00951233413, 0.011952078, -0.00443620095, 0.0205445103, -0.00464284606, -0.000818664033, -0.00774585316, 0.0143451607, -0.0282370355, -0.0231575686, -0.00105822226, -0.00549275661, 0.00959232636, 0.0241441317, 0.00939901266, 0.00604269886, -0.0106322169, -0.00933235325, -0.022344321, 0.00342963985, 0.0109988451, 0.0369561203, 0.00403624307, 0.0296502206, 0.0128519842, 0.00342963985, -0.0144118201, -0.0205311775, -0.00650931662, 0.00298302015, -0.021477744, -0.0129853031, -0.0142385047, 0.0118187591, 0.0323966, 0.015411715, -0.0196646024, -0.00983896665, 0.00406290684, -0.0263172369, 0.00383959687, 0.0247973967, -0.0100056157, -0.0233975425, 0.00342630688, 0.0280237235, -0.00411956757, 0.0514346, 0.0180247743, 0.00646598777, 0.0308500938, 0.0203978587, -0.0151184127, 0.00393958623, -0.0119587444, -0.0490881801, 0.0265438799, 0.0379693471, 0.00323632685, 0.00967231765, -0.0131786158, -0.0159716569, -0.000808248471, -0.02454409, 0.0333831608, 0.0106922109, 0.0115254568, 0.0135919061, 0.040395759, -0.00230809092, 0.0244907625, -0.0130386306, 0.0139985299, 0.000409332017, -0.0269171745, -0.00457951892, 0.0142385047, 0.016851563, 0.0325832441, 0.0319699757, 0.00493281521, 0.00407290552, 0.0281037167, 0.0040062461, 0.0191046614, 0.0252773464, -0.00492281653, -0.0118654212, -0.00449286168, -0.0144384839, -0.0283970181, -0.000216018991, 0.00171981938, 0.0122787105, 0.00610269234, 0.0418622717, -0.0372760855, 0.0143184969, -0.00314300321, -0.0155850304, 0.0358895659, -0.00851910561, 0.000593687641, 0.0460751615, -0.000278929045, 0.0190646648, -0.00581938913, -0.028850304, -0.00484949071, 0.000834912353, 0.00799249392, 0.0274637826, -0.0350363217, -0.0140118618, 0.00535610411, -0.0109121874, 0.00184313976, -0.0205178447, -0.0367961377, -0.000634516706, -0.050981313, 0.000575356244, -0.0162116308, 0.011665442, -0.0242374558, 0.0423688851, 0.0578605905, -0.0092057, 0.0113121457, -0.0208778083, 0.0187047031, 0.0129253091, -0.0374893956, 0.015078417, -0.00896572508, 0.025423998, -0.00544942776, 0.0402624384, 0.0422622301, -0.0221443418, 0.0247174054, 0.0189980045, -0.00512279524, 0.0137185594, -0.0149317654, 0.006992599, -0.0069126077, -0.0341030844, 0.0455952138, 0.00786584057, 0.003606288, -0.010405574, -0.0015115079, 0.000410165259, 0.0258506183, -0.0124053638, -0.0161449723, -0.035462942, -0.0111254985, -0.0250373706, 0.00298635312, -0.00766586186, 0.047115054, 0.0374094062, -0.0162516274, 0.0111988243, -0.0152117359, -0.00852577109, 0.00883907173, -0.0341030844, -0.0151050808, 0.0131386202, 0.00144484825, 0.014305165, 0.00335464766, -0.0276770946, -0.0453285724, 0.00614268845, 0.0304501355, -0.00425288687, 0.0340764225, -0.00619934918, 0.0303968079, 0.0256239753, -0.00367294764, -0.00228142715, -0.0112921475, -0.00567940343, -0.00161399716, 0.0286369938, -0.00210811198, 0.0219310299, 0.00479616318, -0.00175148272, -0.00380293396, 0.0225576311, -0.011832091, 0.00892572943, -0.00174648326, 0.0122920424, 0.00351296458, 0.0138785429, 0.0153717194, 0.0148117784, 0.00141318492, 0.0118254246, 0.0208644755, 0.045248583, -0.0147717819, -0.0063559995, -0.00817914121, 0.0346896909, 0.0122320494, 0.010072276, -0.000480782852, 0.0197312608, 0.00331631838, -0.00454618922, -0.00787250698, -0.0108188642, 0.0105455592, -0.0107122082, -0.0387159362, -0.0214244165, -0.00688594347, 0.0203978587, 0.00184147328, 0.00861242879, 0.0208511446, -0.0176248159, -0.0153450556, -0.011498793, 0.00555941649, -0.0165049341, -0.0350096561, 0.00290469499, 0.0173181817, -0.00570273446, 0.0106722126, -0.000658680859, 0.0227309465, -0.0503947102, 0.00642599212, -0.0117920954, -0.0218243748, 0.0211577788, 0.0308767576, -0.0115387887, 0.00663263677, 0.000588688185, 0.0273038, 0.00855243579, -0.0170515422, -0.0136785638, -0.0141051859, -0.000304343033, 0.0123853665, -0.0056260759, 0.0124920215, 0.019811254, -0.00693260552, -0.00723923976, 0.0170515422, 0.00140068622, -0.0144384839, 0.00267805206, -0.00923903, -0.00524944859, -0.0453819, -0.00248307269, -0.0083657885, -0.00457951892, 0.0184513964, -0.00574273057, 0.00487615447, -0.00569940172, -0.00644599, -0.0155583667, -0.00977230724, -0.0342097431, 0.00733922934, -0.00868575461, 0.00180147751, 0.0289302953, -0.00386292767, 0.0219576936, -0.0169182234, -0.0324232616, -0.0160649791, 0.00747921458, 0.00189313455, -0.00684594782, 0.00548275746, -0.000323924323, -0.0325032547, -0.0162116308, 0.0203311983, 0.0103855766, -0.00541943079, -0.00570606766, 0.00169648859, -0.0225309674, 0.0220643505, 0.00774585316, 0.00367628061, -0.00113488082, -0.0102655888, -0.00822580326, 0.0186780393, 0.00525611499, -0.00862576067, 0.0121853873, 0.00051869551, 0.0319699757, -0.00466284389, -0.00499947509, 0.0131319547, 0.026637204, 0.00188313564, -0.0095456643, -0.0175048281, -0.0220643505, 0.00349963247, -0.0117187696, 0.00885240361, 0.0065193153, -0.0218910351, -0.0150517533, 0.063300021, -0.0176248159, -0.0155317029, -0.0470350608, -0.0195846111, -0.0457018688, -0.00159399933, 0.0341564119, 0.0103589119, -0.0358095728, -0.00488615362, 0.00629267283, 0.00522611802, 0.0254506618, -0.0120787313, -0.0284503456, 0.000542443071, -0.00775918551, 0.040289104, -0.0222243331, -0.00135735748, 0.00958566, -0.0047828313, 0.00315300236, 0.013865211, -0.0365828238, 0.012558681, 0.00243474427, 0.0103522465, 0.00818580762, 0.000482449337, -0.00103322486, 0.0220376868, 0.0103455801, 0.00795916468, 0.0131052909, 0.0224376433, -0.0212644339, 0.00632933527, 0.00904571731, -0.0143584926, 0.0110855028, 0.0156116942, -0.0434087738, 0.00229975861, 0.0141851772, -0.0265972074, 0.0127519947, -0.0394091941, -0.00534277223, -0.0122587131, 0.000974064402, -0.0267838538, -0.0161716361, -0.0146117993, 0.00252140197, 0.000436620816, -0.0155850304, 0.0322899446, -0.0481816083, 0.00377960317, -0.000217477165, -0.0334098265, 0.00768585969, 0.00125403504, -0.00591271231, -0.0103589119, 0.0344497152, -0.0178381279, 0.0227309465, 0.0170248784, 0.0315433554, 0.0191179924, -0.00318633206, -0.0311167333, 0.006605973, -0.0195446145, 0.0258106235, -0.00822580326, -0.00163732807, 0.0176381487, 0.00131402875, -0.0287969764, 0.00471283868, -0.00905238278, 0.0057927249, -0.00224809721, -0.0209044721, -0.00291802688, 0.0256106444, -0.0123053743, 0.00386292767, -0.0109721813, 0.0393025391, -0.00122403819, -0.0244241022, -0.00192646438, -0.00444619963, 1.36313811e-05, 0.00559607893, -0.0366894826, 0.0149850929, 0.0292769261, 0.0238641612, -0.0137718869, -0.0121987192, 0.0163716152, -0.000725340506, 0.0191046614, 0.00303134834, -0.0221710056, 0.0163716152, 0.000199041606, 0.0209578, -0.00330965244, 0.00782584492, 0.00661263894, -0.018944677, -0.00703259511, -0.0217310507, -0.000992395799, -0.00103405805, 0.0130919591, 0.019277975, 0.00123820337, 0.00309634162, -0.0190246683, -0.00373294135, 0.0373560786, -0.0129319755, 0.00821913686, 0.0210777875, 0.00723257381, 0.0114121353, -0.00334798172, -0.010405574, -0.00429288251, -0.00593937654, -0.00347963464, -0.0179047864, -0.00293135876, -0.00443620095, -0.00345963682, -0.00244307681, -0.00603936566, -0.011558786, 0.00435620919, -0.00394291943, 0.00796583, 0.0129053118, 0.0081724748, -0.0207578205, 0.0159583241, 0.0031330043, 0.00972564518, 0.00837912, 0.0118787531, 0.00529611064, 0.0314900279, 0.00589938043, 0.0226509552, 0.00379293505, -0.018384736, -0.000447453029, 0.00389625761, 0.0107255401, -0.0107055428, 0.00848577544, 0.0128253195, -0.0012706999, 0.00561941, 0.00230975752, -0.00805248786, -0.00610269234, 0.0326365717, 0.0168648958, 0.0111988243, -0.0390625633, 0.0156383589, -0.00235641934, 0.000277470856, 0.0390092358, -0.00212477683, -0.005369436, -0.0463151373, -0.0212777667, -0.0063493331, 0.00236141868, 0.00983896665, 0.0161583032, -0.0246240813, 0.0182647482, 0.00789250433, 0.0110788364, 0.0079325, 0.00694593741, 0.00165149325, -0.031036742, -0.0043062144, 0.000242891168, 0.0160783119, 0.000222060014, 0.00184980582, 0.0194112957, 0.0131452866, 0.00200812239, -0.0230375808, -0.0260505974, 0.0113054793, -0.00310134096, 0.0235175304, -0.0139718661, 0.0100189485, -0.0156383589, 0.00681595085, 0.0132452762, -0.000951566733, 0.0151584083, 0.0296235569, 0.00239974796, -0.00156233599, 0.00769252563, 0.0149450973, 0.0119120823, 0.0111388303, 0.00186147122, 0.00532277441, -0.00333964941, 0.014531807, 0.0265572108, -0.0392758772, 0.00925902743, 0.0212111063, -0.0192113165, 0.01475845, 0.00143568264, -0.00730589963, -0.0073325634, 0.00583605375, -0.00825246703, 0.000277054234, 0.0286636576, 0.0123053743, 0.0132186124, 0.00869242102, -9.41047037e-05, -0.00419955887, -0.0169048924, -0.0215844, -0.00100989395, 0.00359628908, -0.0134719191, -0.0052894447, -0.0123387044, 0.00197645905, 0.00889906567, -0.000261430891, -0.0093723489, 0.0207044929, -0.0198379178, 0.0218243748, 0.00333964941, -0.0310900696, 0.00763253169, -0.0301035065, 0.00216810568, -0.0211177822, 0.00361961988, 0.00474616839, -0.0114321327, -0.0300768428, 0.0237708371, 0.0241441317, 0.0316500105, -0.0182914119, -0.00715258252, 0.00282137049, -0.00524611585, -0.0209311359, 2.53879602e-06, -0.0238241646, -0.0341830775, 0.012105396, -0.011725435, -0.0147851147, 0.0118787531, -0.00789250433, 0.0114387991, -0.00680595217, 0.00802582409, -0.0063526663, -0.00679262029, -0.000195916931, 0.0107255401, -0.0178781226, 0.0272371396, 0.0122587131, -0.0143718245, -0.00392292161, -0.003386311, -0.0012706999, 0.00513612758, -0.0124586914, -0.00720591, -0.0256639719, -0.016184967, 0.0123853665, 0.0191979837, 0.0310634058, -0.0132386098, -0.0010515562, -0.0268238503, 0.00403957581, -0.0256906357, 0.00607269583, -0.0225043036, -0.00577939302, -0.0236508492, 0.00913237408, -0.0195712782, -0.00398624828, -0.0205445103, 0.00280470541, -0.0120254038, -0.00125986768, -0.0114121353, 0.0020431187, -0.000248307275, -0.0037496062, 0.00390625652, 0.000377043732, 0.0118054273, -0.0174248368, 0.00968565, 0.0113321431, 0.00731923152, -0.0116321119, -0.0161583032, -0.0020697827, 0.00468284171, -0.0178381279, 0.0409557, 0.00320466352, -0.0168915596, 0.00425288687, 0.017944783, -0.0205045138, -0.00520612, -0.0200245641, -0.00959899183, 0.00308134314, -0.0130652944, -0.0155583667, 0.00338464463, -0.00320299692, 0.0138118835, 0.00220810156, -0.00153400563, 0.0146117993, -0.00235641934, 0.0150117567, 0.0040062461, 0.0149584292, 0.0201178882, -0.00885240361, -0.0251840223, -0.00114487973, 0.00961899, 0.00379626802, 0.0346630253, -0.00163649488, -0.012165389, 0.0340497568, 0.00429954845, 0.0227709431, 0.0337564573, 0.0351963043, -0.0260239337, 0.0172648542, -0.0214377493, -0.0157583449, -0.012558681, -0.0118187591, 0.014531807, -0.0166515857, -0.010238925, -0.010405574, -0.00478616403, -0.00711925235, 0.033703126, 0.0155317029, -0.0297568757, -0.0141451815, 0.0229575895, 0.0135585768, -0.00300635095, -0.0138918748, 0.00262139132, -0.0140251936, 0.00661930488, 0.0288236402, -0.000704926, 0.0217843801, 0.000697843381, 0.0559941195, -0.00945234112, 0.015078417, -0.00120820652, -0.0197712574, -0.0247440692, -0.00273137982, -0.0189713407, -0.0334098265, -0.0192913078, -0.00555941649, 0.0127253309, 0.00607936177, 0.0248640552, 0.0154250469, -0.00196312717, 0.000373919058, 0.0153183918, -0.0115321223, 0.00332131796, 0.000644515676, -0.0142785, 0.032796558, -0.0199579038, 0.00380293396, 0.0182247534, -0.0190246683, -0.0103789102, -0.0104389042, -0.00714591658, 0.00973897707, -0.021131115, -0.0275971014, -0.0111321649, 0.00376293832, 0.0182914119, 0.00102822541, -0.00610935874, 0.0012582012, -0.00218643714, -0.00329465396, -0.00344297173, 0.0156116942, 0.00530944252, -0.0267305262, -0.00329132099, 0.0275437739, 0.00626267586, -0.00384626281, 0.0204911809, 0.0206378326, -0.00416289642, -0.00779251521, -0.0110988347, -0.016398279, -0.00640932703, 7.12425172e-05, 0.0186513755, -0.0124520259, 0.0173448455, 0.00805915333, 0.00923236366, -0.00551942037, -0.0120720658, 0.0147184543, 0.0176648125, 0.023890825, -0.0247174054, -0.00704592699, -0.00757253822, 0.0102189267, 0.00370294461, 0.00589271449, -0.00941901095, -0.0357295834, 0.013985198, 0.0109188538, -0.00390292355, -0.00342963985, -0.00449286168, -0.00782584492, 0.0487415493, 0.00807915162, 0.0219843574, -0.00323965983, 0.00655597821, 0.0292769261, 0.0035829572, 0.00952566601, 0.00297135464, 0.0293835811, 0.0122920424, -0.000108217806, 0.0120787313, -0.0150917489, -0.00839911774, 0.0112188216, 0.00707259076, -0.00287636463, -0.00946567301, 0.0101655992, 0.00709925452, -0.011058839, 0.00333298347, -0.0200245641, 0.0246374123, 0.0158916656, -0.0220643505, -0.0106255505, 0.0332765058, 0.0214377493, -0.00974564347, -0.00190813292, -0.0172248576, -0.00921236631, 0.0032779891, 0.0163049549, -0.00563940778, 0.0126786688, -0.0185447186, -0.0137185594, -0.00126486714, -0.00414623134, 0.0148517741, 0.00680261897, 0.00107322063, 0.015518371, -0.00514945947, -0.013865211, -0.00137902191, -0.00285969977, 0.00382626499, 0.0209711306, 0.00969231594, 0.0243574418, 0.012938641, -0.0160249844, 0.0183047447, -0.0307434388, 0.0149184335, -0.000468700775, 0.0284503456, 0.00731256558, -0.0111654941, 0.0226109587, -0.0120387357, 0.0178247951, -0.00860576332, -0.0159049965, 0.0135252466, -0.000914070697, 0.00540609891, -0.0122520467, -0.00991895888, -0.0271838121, 0.0212244373, -0.00254973234, -0.0101389354, 0.0258372873, -0.00182314194, -0.010405574, 0.00386959361, 0.00453952327, -0.00705925887, 0.00495947944, 0.00997895189, -0.0270371605, 0.00819247309, 0.00847244356, 0.000142172576, 0.00895906, 0.0277304221, -0.0127853239, 0.00269971648, -0.0110321753, -0.00431954628, -0.0222776607, -0.0136519, -0.00295802276, 0.0030230158, 0.0184913911, 0.00431288034, 0.0032779891, 0.00266638678, -0.00292635942, -0.00121653895, -0.00641932618, 0.00258472865, -0.00805915333, -0.031596683, -0.00745921675, -0.025757296, -0.0139052067, -0.00159149955, 0.0134652527, 0.00486282259, -0.0186780393, 0.0338097848, 0.00837912, 0.00300301798, 0.00440287124, -0.0191846527, -0.016851563, 0.0311700609, -0.00861242879, 0.0215710681, 0.00105072302, -0.0222643297, -0.00799249392, 0.00741255516, 0.0210911185, -0.0135919061, 0.0204645172, 0.00849244185, -0.00445953198, -0.00343963876, -0.0027697091, 0.0126253413, -0.0145451399, 0.00277304207, 0.00930568948, 0.0374627337, 0.0161316395, -0.0126920007, 0.000593687641, -0.00327465613, -0.00253140088, 0.0103922421, -0.00165315974, -0.0182647482, -0.00230809092, 0.0174515, 0.00322466134, -0.00915903784, 0.00495947944, -0.0183980688, 0.00835912209, -0.0150384214, 0.00445619877, -0.0112188216, 0.0105188955, -0.00501280697, 0.00705925887, 0.00732589746, 0.00693927146, 0.0111721605, 0.000249765435, 0.00614602119, 0.00806582, -0.00284136832, -0.010738872, -0.0255306531, 0.0122320494, -0.0198512487, -0.00435287645, -0.00629267283, 0.00104489026, 0.0176648125, 0.012105396, 0.0154917063, 0.0013190282, -0.0115187904, 0.00864575896, 0.00887906738, 0.0142918332, 0.00110071781, 0.0104789, 0.0133852614, -0.0338897742, 0.00612269063, 0.00246974058, 0.0025780627, 0.0232108962, -0.000504947, 0.0133385994, -0.00583605375, -0.0140785221, 0.00949233677, 0.0112054897, 0.00977230724, 0.00744588487, -0.0128586497, 0.00904571731, -0.0233575478, -0.0161583032, 0.0153717194, -0.0190913286, -0.00128569838, -0.032929875, -0.00828579627, 0.0179314502, 0.00209478, -0.00610602554, 0.02269095, 0.0164782703, 0.00855910126, 0.031703338, 0.0125453491, -0.00796583, -0.00297135464, 0.00379293505, -0.00105072302, -0.00181980897, -0.003386311, 0.00138735434, -0.0245040935, 0.00959899183, -0.000541193178, 0.00941234548, 0.000430788088, -0.0172381904, -0.00730589963, 0.011832091, 0.018384736, 0.0136385681, -0.0163182858, -0.01051223, 0.0113654733, -0.00965898577, 0.0091257086, -0.025210686, 0.00288803014, 0.000203832766, -0.0397291631, 0.011832091, -0.0159316603, 0.00678595435, 0.0190913286, 0.00393958623, -0.0207044929, -2.32657858e-05, 0.0158783328, 0.0124186957, 0.0039195884, 0.00975230895, -0.0110521726, 0.0138918748, -0.00977230724, 0.00769919157, -0.0112321535, -0.0340764225, 0.00771252345, 0.0052361167, 0.00231975643, -0.00953233242, 0.0134252571, -0.0175314918, -0.00214810786, 0.0241841264, -0.0116121145, 0.000527444645, 0.0169182234, 0.00541276485, 0.0333031714, 0.00647931965, -0.0118520893, 0.01051223, -0.0316500105, -0.000721174292, -0.0129653057, 0.0134185906, -0.018278081, 0.00112404861, -0.0125053534, -0.0102122612, 0.0267438591, -0.000854910235, -0.00636933139, 0.00668596476, 0.000757003843, -0.00208311458, 0.0292769261, 0.00432287948, 0.0123053743, 0.0164782703, -0.0100322803, 0.000398499833, -0.00162899564, 0.0060460316, 0.0013315269, -0.012498688, 0.000862409419, -0.0163182858, -0.00445286557, 0.0150517533, 0.0179181192, 0.0164116099, 0.046021834, 0.00983896665, 0.0177448038, 0.013318602, -0.0124920215, 0.0141718453, 0.00663263677, 0.0407690518, 0.00195812783, -0.0227709431, -0.0357829109, -0.0107588703, -0.00599603727, 0.0239841491, 0.0149051016, -0.00796583, -0.00100072823, 0.00480616186, -0.0076725278, -0.00687261159, -0.00235641934, 0.00475950027, 0.00695260335, -0.00803915597, 0.00234642019, -0.0200112313, 0.0215844, 0.00476283301, -0.00683928188, 0.011178826, -0.0101855975, -0.00336464681, -0.000174877467, 0.0072459057, 0.0194379594, -0.00113071466, -0.000910737726, -0.0132919373, -0.014865106, -0.0151584083, -0.030716775, 0.0161983, -0.000653681345, -0.0105988868, 0.0119920745, -0.00947900489, -0.0166382529, -0.000813664577, 0.00588604854, -0.00964565389, 0.0160116516, 0.00831246097, 0.0068592797, -0.0203311983, -0.00102072617, -0.00149234326, -0.0145184752, 0.0020681161, -0.00208978052, 0.0154917063, 0.00947900489, -0.0113054793, -0.00442953501, 0.00606936263, 0.0191446561, -0.0228909291, -0.00559607893, -0.0130852927, 0.0172515213, -0.00471617142, -0.0135985725, 0.025210686, 0.0180247743, -0.000586188457, 0.00639932789, -0.0254506618, -0.000980730401, 0.00807248615, 0.00379293505, 0.028956959, -0.0110788364, -0.00875241403, 0.0116721075, 0.0145451399, -0.0152117359, -0.0222909935, -0.0139185386, -0.0326365717, -0.0195446145, -0.00288303057, -0.0311433971, -0.017611485, -0.006992599, 0.0301834978, -0.00553275226, 0.0173181817, -0.000941567821, -0.0105922213, 0.0311167333, -0.00125320174, 0.0362628587, -0.00437620701, -0.0137852188, 0.0234108754, 0.015851669, -0.00173315138, 0.0117387678, 0.00779251521, 0.00552608632, -0.0093723489, -0.000781584589, -0.0054560937, 0.00217310525, -0.00145651377, 0.009798971, 0.00575606246, -0.00955233071, 0.0028796976, 0.018931346, -0.0165315978, -0.00402291073, 0.00604936481, -0.00887906738, 0.0103055844, -0.00757920416, -0.00371960946, 0.00449286168, 0.00502947206, -0.0104589015, -0.0103655783, 0.0081991395, -0.019811254, -0.0224109795, -0.014198509, 0.0105455592, -0.00706592482, 0.00770585751, 0.0182914119, 0.0025780627, -0.00214810786, 0.0113854716, 0.0132319443, 0.0183580723, 0.0252240188, 0.000242682858, 0.0164916012, -0.00671596127, 0.0325299166, -0.0118387565, 0.00167732383, -0.00844578, 0.00516945729, 0.00415956322, 0.0324765891, -0.00362295285, 0.0136785638, -0.00441620313, -0.00702592917, -0.00172481884, 0.021691056, 0.0239574853, -0.0181580931, -0.0030746772, -0.0107255401, -0.011058839, 0.0150250895, 0.0175848193, -0.00234308722, 0.00126986671, -0.0139718661, 0.00394291943, 0.00803249, 0.0038862587, -0.00441953586, 0.00286636571, -0.00672596041, -0.00123153732, -0.0122453813, 0.000290802796, -0.0172381904, 0.0143451607, -0.01993124, -0.00407290552, 0.018064769, 0.0126186749, 0.00680928491, 0.0275704376, 0.00336464681, -0.0173048489, -0.00114238006, -0.00212144386, -0.013865211, 0.00533943949, 0.00110821694, 0.00774585316, 0.0104255723, 0.0167049132, -0.00426621875, -0.013865211, -0.00137818861, -0.00547275878, 0.00712591829, -0.0241974592, 0.012938641, -0.000828663, 0.0142518366, 0.00630933745, 0.0023480868, 0.0168782286, 0.0162516274, 0.00471950462, -0.00278470758, -0.00163816137, 0.0325565822, -0.0207711533, -0.0299168583, 0.00392958755, 0.00452952459, -0.00891239755, -0.0175448246, 0.0202778708, 0.00304634683, 0.00331465201, 0.00440953718, -0.0181180984, 0.00486282259, -0.00202312088, 0.00265805423, 0.00632600253, -0.0123787, -0.00165315974, 0.0338097848, 0.02454409, -0.0101655992, 0.0277837496, 0.00999895, -0.00586605072, -0.00739922328, -0.0196512695, 0.0116054481, 0.0126720024, -0.00689260941, -0.00309967459, 0.00653264718, -0.0087857442, -0.00482282694, -0.0215310734, 0.00293135876, 0.0216377284, -0.000229142606, 0.0212910976, -0.0197712574, 0.0295968931, 0.0122053847, 0.00346630276, -0.000791166909, -0.00468617445, 0.00933902, 0.00789917074, -0.012165389, 0.00880574249, 0.00363295176, 0.00857243314, 0.00757920416, 0.0252773464, 0.00390292355, 0.00260639307, 0.031036742, 0.00390625652, -0.00802582409, -0.0177448038, -0.0206111688, 0.00235475274, -0.00187646959, -0.00513612758, 0.0100456122, -0.00533610629, -0.0194246266, -0.00216810568, -0.00610935874, 0.021357758, -0.0157316811, -0.00175481569, 0.00299468567, 0.0010765536, 0.00857243314, -0.0200778916, 0.00555608328, 0.0120520676, 0.00745255081, 0.0102522569, 0.00697260117, -0.0056294091, 0.025877282, -0.00424955366, -0.0163849462, 0.0116321119, 0.00303801429, 0.00584271969, -0.0101056052, 0.00851243921, -0.00661930488, 0.0173181817, -0.0279970597, 0.00131402875, 0.0109055219, -0.00495947944, 0.0230909083, -0.0193579681, 0.00757253822, 0.0102855871, -0.00718591223, 0.0205311775, 0.0202112105, 0.0174648333, -0.00100072823, 0.0130786272, 0.00134069251, 0.000502030598, 0.0113121457, -0.00476949941, -0.00411956757, 0.0207578205, -0.0156516898, 0.0103522465, 0.00813247915, -0.0174115058, 0.00931235589, -0.00658930792, 0.0104722334, -0.0391425565, 0.022024354, 0.00199812348, 0.00356629211, 0.0103122508, -0.00841911603, -0.00683928188, 0.00698593305, 0.0241841264, 0.00719924411, 0.00814581104, -0.000311425625, -0.00122820435, 0.000257681269, -0.00893239584, 0.0194912869, 0.0116721075, -5.75460399e-05, -0.0162916221, 0.0107322065, -0.000124153637, -0.00663263677, -0.00187313661, 0.0139985299, 0.00913237408, -0.00991895888, 0.0365828238, 0.0438887253, 0.015865, 0.0196379386, 0.0186247118, -0.0218643714, 0.000197583417, -0.0060160351, -0.0181580931, -0.000112904811, 0.0120054064, 0.0305567924, -0.0295702294, -0.0287969764, 0.0170782059, 0.0204645172, 0.0118387565, 0.0201845467, 0.0174381696, 0.00603936566, 0.0158250052, -0.0279970597, -1.10339979e-05, 0.00787917245, 0.00648598559, -0.0199845675, 0.0213444252, 0.00886573549, -0.00883240625, 0.0385026224, -0.00596604031, -0.00469617359, -1.07670985e-05, -0.0118254246, 0.00535610411, 0.000930735609, 0.0228509344, 0.00109155208, 0.00290469499, -0.0189180132, 0.011178826, -0.00304634683, -0.0175848193, -0.00492614927, 0.0108588599, -0.0107255401, -0.00020289536, 0.0103255827, -0.0335164815, -0.0205178447, 0.0163316187, -0.00885907, -0.00154733751, 0.00233475491, 0.00246807421, -0.00255306531, 0.0141851772, 0.0267705228, 0.0356229246, -0.00510946335, -0.0103989085, 0.0204511862, 0.00165066007, -0.0165982563, 0.00830579456, -0.00663930271, 0.0224776398, -0.00584271969, 0.00328465505, -0.00736589311, -0.00253306725, 0.00250807, -0.0110388407, -0.0254773255, 0.00898572337, 0.00565273967, -0.0210777875, 0.0152384, 0.0079458328, -0.00662263809, -0.0101989293, 0.0198912453, 0.0319966413, -0.0182247534, 0.00134569209, -0.028183708, -0.0143184969, -0.000774502, 0.0202112105, 0.00173315138, 0.0156916864, -0.0043928721, -0.0188780185, -0.0170782059, -0.00412290031, 0.00316800061, -0.00185813825, -0.0115654524, 0.00767919375, 0.00543609587, -0.000860742934, 0.0112188216, 0.0274637826, 0.0126986662, 0.000352046365, -0.00156650215, 0.00739922328, 0.0117454333, 0.00739255734, 0.000411623449, -0.00362961879, 0.00712591829, -0.00237808353, 0.001549004, 0.00544609502, 0.00535610411, -0.0162649583, 0.00949233677, -0.00701926276, 0.00459951721, -0.00516279135, -0.00903238449, -0.00137152267, 0.0239041559, -0.00655597821, -0.00112988136, -0.011452131, 0.0132652735, -0.0208244808, -0.00260306, 0.00732589746, -0.00293135876, -0.00368627952, -0.0132586081, -0.00315133575, -0.0168648958, 0.00210311241, 0.00737922499, -0.0167049132, -2.70804903e-05, 0.0101522673, 0.0103055844, 0.0129653057, -0.00291469391, 0.0366361514, -0.00159399933, 0.000831996, -0.00301301689, 0.010785534, -2.34740983e-05, -0.0137718869, 0.00572606549, -0.00304301386, -0.00832579285, -0.027410455, 0.0136785638, -0.0101922629, -0.00515945815, 0.00721924193, -0.019811254, 0.0323166065, 0.0101056052, -0.0152783962, 0.0106322169, -0.00327298976, 0.0191313252, -0.00584271969, -0.0180247743, -0.0256906357, 0.0247307364, -0.00711258641, 0.0231842324, -0.00798582844, -0.0163049549, 0.0122920424, 0.00291636051, -0.011118833, 0.00972564518, -0.00131736172, 0.00141985086, 0.0169182234, -0.01771814, 0.0164649375, -0.00606603, -0.0133119356, -0.0122187175, -0.0123453708, -0.00191646547, -0.013865211, 0.00700593088, -0.00469284039, 0.0141185177, -0.00320633, -0.00122320489, -0.0148117784, 0.0168648958, -0.0154650426, -0.00722590787, -0.00680261897, 0.00671262853, 0.0138385473, -0.00952566601, 0.0123653682, 0.0111121666, 0.00624267804, -0.00542943, -0.015518371, 0.00319633097, -0.00695926929, 0.0154383788, -0.0159849878, -0.0165449288, -0.0243707746, 0.0131386202, 0.0241841264, -0.00490281871, 0.019264644, -0.0115121249, -0.00249473797, 0.00344963768, -0.0122320494, -0.00206644973, 0.0349829942, 0.0139585342, -0.00722590787, 0.000211644438, -0.00541276485, -0.00209311349, -0.011832091, -0.00570606766, 0.00547609152, 0.00695260335, 0.0199712366, -0.00886573549, 0.0160116516, 0.0181847569, 0.00231475686, 0.00514279353, -0.0177448038, -0.0178647917, -0.004649512, -0.0196246058, -0.00440287124, 0.00261305901, -0.00640599383, 0.00382293202, -0.0146117993, 0.028557, -0.014425152, -0.0066892975, 0.0249040518, 0.000186751218, 0.010405574, -0.0038862587, 0.00799249392, 0.00900572073, -0.0143984882, -0.00361961988, -0.0207178239, 0.015411715, 0.0195179507, -0.00727257, 0.0122053847, 0.0084257815, 0.0169848837, -0.0140785221, 0.00322466134, -0.00137985509, 0.014198509, -0.0103189163, 0.00739922328, 0.00171648641, -0.00951900054, -0.0133585976, -0.0014998425, 0.01051223, 0.00975897536, -0.00252640131, 0.0196779333, 0.0183447413, 0.0089523932, 0.012831986, 0.00839245226, -0.00145151431, 0.0035562932, -0.0134319225, -0.00278970716, -0.00697926711, -0.0110988347, -0.0151317446, -0.0162516274, -0.0188913494, -0.0171981938, 0.0145984674, 0.0135985725, -0.00409623655, 0.00347630167, -0.00475616707, 0.00213977532, 0.00644599, 0.00909237843, 0.00390958972, 0.0105255619, 0.00743255299, 0.00437620701, -0.0231575686, -0.00163899455, 0.000674929121, 0.00860576332, -0.000482449337, 0.0122520467, -0.00633933442, 0.0125386836, -0.0148784379, -0.0122853769, -0.00869242102, 0.0129786376, -0.00109405175, 0.00865242444, 0.00266971975, -0.0364495069, 0.0188646857, -0.019277975, -0.00339464354, -0.011118833, -0.0265305471, -0.00607602857, 0.0150517533, 0.00192479789, -0.0178381279, -0.0163316187, 0.0127319964, 0.00138318806, -0.0366361514, -0.0169315562, 0.00182314194, -0.00414623134, 0.00731923152, 0.026970502, 0.00192813086, 0.00664263591, -0.0261572544, 0.00471950462, 0.00017039878, 0.00806582, -0.00239141565, -0.00398624828, -0.0106455488, 0.00952566601, 0.0143718245, -0.000149880099, 0.0111388303, -0.0115387887, 0.0264905524, -0.00451285951, 0.00595604116, 0.0295435637, -0.000806165335, 0.0257306322, -0.0181047656, -0.00619268324, -0.0182380844, -0.0131719504, -0.0115321223, -0.0120187383, -0.00467284257, -0.0220510177, -0.0129186437, -0.000526194752, 0.00320299692, 0.00213644234, 0.00150234229, -0.000643682433, -0.0101589337, 0.0203578621, 0.00445286557, 0.00554941734, 0.000282053719, -0.0148784379, -0.00313633727, -0.00718591223, 0.0156650227, -0.0019481288, -0.0122120511, -0.000278304098, -0.0416489616, -0.000252681813, -0.0294369087, -0.00650598342, -0.0141851772, 0.00915237237, -0.00173815084, -0.00737255905, 0.0113321431, -0.00874574855, 0.00925902743, 0.012105396, 0.0225043036, 0.0132252779, -0.0133852614, -0.0140518583, -0.00991229247, -0.00368961249, -0.00670929532, 0.00219810242, -0.0081724748, 0.0226376224, 0.0191446561, 0.00278637419, 0.000974897644, -0.00278804055, 0.00959899183, -0.00545276096, -0.00691927364, 0.0107655367, 0.0393825322, -0.00650598342, 0.00361628691, 0.0155850304, -0.0269038416, -0.0186247118, -0.0178647917, 0.00641599298, 0.00683261594, -0.000129361419, 0.025104031, 0.0110455072, -0.00321466243, -0.00435287645, 0.00346963573, -0.00859909691, -0.00476949941, -0.00683261594, 0.00477616535, 0.00693260552, 0.00757920416, 0.0031596683, 0.00107405393, -0.00311633945, -0.0100989398, -0.00496614538, -0.0125253517, 0.00845911168, 0.00441287, 0.0218777023, 0.0197045971, 0.00112238212, -0.0148517741, -0.00819247309, -0.00550608849, 0.00316300127, -0.00286969868, -0.0157716777, 0.000940734579, 0.00657264329, -0.0089523932, -0.00130736269, -0.0155983623, -0.00541276485, -0.00959232636, -0.0265038833, -0.00779251521, -0.00240974687, -0.00453619054, 0.0325565822, 0.00929902401, 0.00991895888, 0.000566190574, 0.0091190422, -0.00252140197, 0.00869908649, 0.0132852718, -0.0393825322, -0.00654264633, -0.00231808983, 0.0243174471, -0.00467284257, -0.016731577, 0.0206378326, -0.013211946, 0.00678595435, 0.0106455488, -0.00395291811, 0.000668679771, -0.00731923152, 0.00415956322, -0.0278104134, 0.0118254246, 0.0175448246, -0.001596499, -0.0001225913, -0.0166915804, -0.0245707538, -0.00813914556, 0.00271804794, -0.00783251133, -0.0353562869, -0.00580272404, -0.00646598777, 0.0269038416, 0.00440287124, -0.0116987713, -0.0186247118, -0.0110988347, -0.0201578829, -0.0157716777, 0.00929902401, -0.0161316395, -0.00495947944, -0.0127586601, -0.00180481048, -0.0296502206, -0.0189846735, -0.0203711949, -0.00317133358, 0.00169982156, 0.00225309678, -0.0193046406, 0.0144518157, 0.00964565389, 0.00666596694, 0.0323166065, -0.0169315562, 0.00985896494, -0.024210792, -0.00651264936, -0.0289302953, 0.00329465396, 0.0218910351, 0.0053727692, -0.02675719, -0.0143184969, -0.0112988139, -0.0104922317, -0.0156250261, -0.00222643279, -0.00090490497, -0.00223143236, -0.0320766307, 0.00393292028, -0.0105255619, -0.0169982146, 0.0261439215, -0.018278081, -0.00919236802, -0.0103722438, 0.0028796976, -0.00534277223, 0.0107588703, -0.00821247138, -0.0301035065, -0.00620934786, -0.00498281, -0.0150250895, -0.0265972074, -0.000547442527, -0.0126986662, -0.00909237843, 0.000985729857, -0.00825246703, -0.0121253934, -0.0195579473, -0.0076725278, -0.0255573168, 0.00577939302, -0.000210707047, 0.0262105819, -0.00933235325, -0.0114654629, -0.0241707955, 0.0233842116, 0.00331465201, -0.00251140306, -0.0181847569, 0.000630767085, -0.0225576311, -0.00461951504, -0.00245474232, -0.0125653474, 0.00264638872, -0.00810581539, -0.00535943732, -0.00772585534, 0.00334964832, -0.0136452336, 0.00164649379, -0.0022397649, -0.00511612929, 0.00801915769, -0.0010640549, -0.0175048281, 0.00996562, 0.0210777875, -0.00171148696, -0.00150650844, -0.0184114, -0.00418956, 0.0129719712, -0.00233142194, 0.000284136826, 0.011785429, -0.00146984565, 0.0235175304, -0.00892572943, -0.0145851355, 0.00787917245, -0.00889239926, -0.0242907833, -0.026090594, -0.00424622092, -0.018944677, -0.00327632274, -0.0224509761, 0.0102322586, -0.0129319755, -0.00290469499, 0.00434621051, 0.00728590181, 0.0118187591, -0.00143568264, -0.00196812674, 0.0172115266, 0.00401624478, -0.0279437322, 0.039622508, -0.00484282477, 0.0118587548, -0.0143584926, 0.00903238449, -0.0160383154, -0.00429621572, -0.00159899879, 0.0166115891, -0.00418622699, -0.00184980582, -0.0108055323, -0.010845528, -0.0071659144, -0.0115454542, 0.0188513547, -0.00668263156, -0.0195846111, 0.00696593523, -0.024890719, -0.0151050808, -0.015198404, 0.012392032, 0.00290302862, 0.0102122612, -0.000303509791, -0.024877388, -0.0238374975, 0.0147051224, -0.00170065474, -0.0111254985, -0.00613602251, -0.0278904047, 0.0143718245, 0.0291436072, -0.0138118835, 0.0157983415, 0.00694593741, -0.0181580931, 0.000480782852, 0.00661930488, -0.0199712366, -0.00260639307, -0.00721257599, 0.00267971866, -0.0211977735, -0.00705925887, 0.0208778083, 0.0103789102, 0.00427288469, -0.0120520676, 0.0095456643, -0.00326132425, -0.00988562871, 0.0221710056, 0.0203578621, 0.00390958972, -0.00889239926, -0.0297835395, 0.0247040726, -0.0211711098, -0.0129986349, -0.010785534, -0.0238641612, -0.018051438, 0.00130569621, -0.00125570153, 0.0183447413, 0.00387292658, 0.00101072725, -0.0148917697, 0.0267438591, 0.00302801537, -0.00554608414, -0.0178381279, -0.00389625761, 0.00779251521, 0.00106655469, -0.00749254646, 0.0166249219, -0.00419955887, -0.0230642445, 0.00814581104, -0.00921903178, 0.035329625, -0.00228309352, 0.00908571295, -0.00855910126, 0.00533277355, -0.00774585316, 0.0216377284, 0.00778584927, -0.00184647273, 0.018611379, -0.00162649585, 0.00179314509, 0.0185847152, -0.0123986984, 0.000280178909, 0.0048128278, 0.0189846735, -0.00523278397, -0.021797711, 0.00532610761, 0.0293035898, 0.00745255081, -0.00354296132, 0.000714508293, 0.0171582, 0.0135985725, -0.0156916864, -0.0009524, 0.0040895706, 0.00605603075, 0.00713258423, 0.0121520571, -0.00799249392, -0.00194979529, 0.0176514797, -0.00722590787, 0.00964565389, -0.00183980679, 0.000201645496, -0.0122653786, -0.00915237237, -0.00637266412, -0.00485282391, 0.0234775357, 0.0129253091, -0.0121187279, -0.0104189059, 0.0161716361, 0.0108055323, 0.0111254985, 0.0227842741, -0.0199579038, 0.0118587548, 0.00568273664, 2.17034503e-05, 0.00372294243, -0.0039195884, 0.0108121978, 0.00899238884, -0.0123253725, 0.00802582409, -0.0122387148, -0.018824691, 0.0305567924, 0.0101122716, -0.00460951589, -0.00847911, -0.00859243143, -0.0206911601, 0.0052861115, -0.0133452658, -0.00274137873, -0.0206644963, -0.0103589119, 0.0207178239, 0.0135052484, -0.0188646857, -0.00638266327, -0.011285482, 0.02269095, 0.00433621136, 0.0269305054, -0.0166649166, 0.0241441317, -0.0121587235, -0.000733673, 0.00339464354, 0.0138252154, -0.0116987713, -0.0016948221, -0.0128586497, 0.0163049549, 0.00506280176, -0.00684594782, -0.000722840778, 0.00368961249, -0.000224976378, 0.0262905732, 0.00105322269, 0.00178314606, -0.0100856079, -0.00731256558, -0.013985198, 0.00726590352, -0.00306801125, 0.0100122821, -0.0165049341, -0.00946567301, 0.00679262029, 0.010072276, -0.0178914554, 0.0274904463, -0.0256373081, -0.0154383788, 0.0373827405, 0.0076725278, -0.00374627323, 0.00133485987, 0.00715924846, -0.0111854924]
|
20 May, 2020
|
Fabric.js | Rect cornerSize Property
20 May, 2020
In this article, we are going to see how to set the size of controlling corners of the canvas rectangle using FabricJS. The canvas rectangle means rectangle is movable and can be stretched according to requirement. Further, the rectangle can be customized when it comes to initial stroke color, height, width, fill color, or stroke width.
Approach: To make it possible, we are going to use a JavaScript library called FabricJS. After importing the library, we will create a canvas block in the body tag which will contain the rectangle. After this, we will initialize instances of Canvas and Rectangle provided by FabricJS and set the size of controlling corners of canvas rectangle using cornerSize property and render the Rectangle on the Canvas as given in the below example.
Syntax:
fabric.Rect({
width: number,
height: number,
cornerSize: number
});
Parameters: This function accepts three parameters as mentioned above and described below:
width: It specifies the width of rectangle.
height: It specifies the height of rectangle.
cornerSize: It specifies the size of the controlling corners.
Example: This example uses FabricJS to set the size of controlling corners of the canvas-like rectangle as given below. You have to click on the object to see the size of controlling corners.
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Rect cornerSize Property
</title>
<!-- Adding the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a Rect instance
var rectangle = new fabric.Rect({
width: 200,
height: 100,
fill: '',
stroke: 'green',
strokeWidth: 3,
cornerColor: 'blue',
cornerSize: 10
});
// Render the Rect in canvas
canvas.add(rectangle);
canvas.centerObject(rectangle);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js Textbox cornerStyle Property/Fabric.js Textbox cornerSize Property/Fabric.js | Rect cornerSize Property
|
https://www.geeksforgeeks.org/fabric-js-rect-cornersize-property?ref=asr1
|
CSS
|
Fabric.js | Rect cornerSize Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Fabric.js | Rect cornerSize Property, Onsen UI CSS Component Basic Progress Bar, Fabric.js Textbox cornerSize Property, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js Textbox cornerStyle Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0179931801, 0.0042156619, -0.00907831546, 0.0346787572, 0.0276367627, -0.00443359604, 0.0124971559, 0.0359863602, -0.0143564064, -0.028740054, 0.0209352896, -0.000741486554, 0.000945799751, -0.0483541191, -0.00244324515, 0.0236049835, -0.0454664938, -0.00151276879, -0.0321452729, -0.00637797639, 0.000277099753, -0.0308104269, -0.0245856866, 0.0190828517, -0.00414415216, 0.0389284715, 0.0111146374, -0.00188649166, -0.0295300651, 0.0176254176, 0.0137162246, 0.0195050985, -0.0263836421, -0.0425788648, -0.00660272082, -0.0152145214, 0.000251347781, 0.0725720376, -0.0210578777, -0.0150783127, 0.00279398263, 0.020186143, -0.00454596803, 0.022188412, -0.000351163268, 0.00520998612, -0.0233189445, -0.0102224695, -0.0239455048, -0.0537752286, -0.024640169, -0.0212485697, 0.0172576532, 0.00190351775, 0.00342394831, 0.0122587904, 0.00167792197, 0.0422519669, -0.013988642, -0.0124222413, 0.0406174585, -0.0733348131, -0.027977284, 0.00490351627, -0.0556004271, 0.000788734, 0.000721055258, 0.00636435533, -0.000916004064, -0.0131032849, -0.0347877257, 0.0174347237, -0.0051282607, -0.0139409695, 0.00559818093, -0.0045936415, 0.0243405104, -0.00907831546, -0.0470465161, 0.0527672842, -0.0113461921, 0.00359250675, -0.0268467516, 0.0292304046, -0.0210578777, -0.0187968127, 0.0219432358, -0.0435323268, 0.00271906797, 0.0106992, -0.00881270878, 0.0363132618, 0.0234142896, -0.054810416, -0.00366401626, -0.00199035089, 0.0152826253, -0.00645970181, -0.0281134937, 0.0155822849, 0.00741656823, 0.0611305, 0.0177207626, -0.0248036198, 0.00695005339, -0.0604222156, 0.0369943045, -0.0306469761, 0.00738932658, -0.00580589939, 0.0378932841, -0.027977284, 0.00166430115, 0.0315187126, -0.055219043, 0.016086258, -0.00748467259, -0.0365856811, 0.0319545828, 0.00291146291, 0.000729568303, -0.0055062403, 0.0260976031, 0.0396912396, -0.0509148426, 0.0214120205, -0.0116594722, 0.0201044176, 0.0187014658, 0.00988875795, -0.0139750214, -0.00595232379, 0.00496481033, -0.0116458517, 0.0245993063, 0.0133893238, -0.00030434152, -0.000961974554, -0.0012352434, -0.000354568503, -0.0246129278, -0.0250624157, 0.0157184936, 0.0299931746, -0.0133757023, -0.000363507192, 0.00341543532, 0.00916685164, -0.0140158841, 0.0333166681, -0.061076019, -0.00816571712, 0.0265334714, -0.00830873568, 0.0657616, -0.0303473175, -0.0366401635, 0.0193144064, 0.0592235811, -0.00953461509, 0.0544290319, -0.00330817094, -0.00469239289, 0.0390646793, -0.0401543491, -0.00902383216, -0.00539727323, -0.00046694075, -0.045657184, 0.0186197404, -0.00762769207, -0.00509080337, -0.00767536508, 0.016562989, -0.0348966904, -0.0435323268, -0.00906469487, -0.0477820411, 0.0265062302, -0.0311373286, -0.0386560522, 0.0203359723, 0.0227332469, 0.0660885051, -0.0194369946, -0.00532235811, 0.0213575382, 0.00100964762, -0.0129262134, -0.0274324492, -0.00162939762, 0.0415436812, 0.0224063452, 0.0269693397, 0.00343927182, -0.0165902302, 0.00838365, 0.0180749055, -0.0176254176, 0.0025607252, 0.020349592, -0.0164948832, -0.0264789872, -0.0382201858, 0.011795681, -0.00810442306, 4.00911413e-05, -0.055573184, 0.0389012285, 0.0090578841, 0.0223654825, -0.00108371116, 0.0202951096, 0.00534619484, -0.0208671857, -0.00219977181, -0.0232780818, 0.00990237854, -0.031028362, -0.0125516392, 0.0159636699, 0.0147922738, -0.0195868239, -0.0463109873, -0.0356867, -0.008615206, 0.0265743341, 0.016944373, -0.00587740913, -0.0184426699, 0.00637116609, -0.0324176922, -0.0246129278, 0.00238705892, 0.0335346, 0.000141103796, 0.0046481248, -0.0065891, 0.00438932795, 0.00699432101, 0.00496140495, 0.0174347237, -0.028930746, -0.0189194, 0.0622201748, 0.012429052, -0.0238637794, 0.011284898, 0.017870592, -0.027405208, -0.0518410653, -0.0157593563, 0.0108898925, -0.00136464182, -0.0205130428, -0.0174892079, -0.00608512759, -0.0362042971, 0.0435050875, 0.0474006571, 0.0415981635, 0.0102156587, -0.00715777185, 0.00019345904, -0.0160998777, -0.00707604643, 0.00954142585, -0.0439409539, -0.00391259743, -0.0140431263, 0.00617706822, -0.0419250652, 0.0263155382, -0.0311373286, -0.0371577553, 0.047972735, -0.0133075984, -0.00576503668, 0.0392281301, -0.0045017004, -0.00260158791, 0.015514181, 0.024667412, 0.0378932841, -0.00932349171, -0.00847218651, 0.00821339, 0.0293666143, -0.0175300706, -0.0227604881, -0.0227332469, -0.0250351746, 0.0212485697, -0.00588762481, 0.0351691097, -0.0164812636, -0.0025862644, -0.0385470875, -0.0157593563, -0.0262474325, -0.0188376755, -0.0231418721, -0.00760045042, -0.0329897664, 0.0476730764, 0.0262746755, 0.0339432284, -0.0185788777, -0.0150919333, 0.0169852357, 0.0217389222, -0.0227741096, -0.0311918128, -0.0333166681, 0.00319920387, -0.00626560394, 0.0711554661, 0.000491202925, -0.0444585495, 0.0119931838, -0.0377025902, -0.0191237144, 0.016562989, 0.0434778444, 0.0554369763, -0.0243132692, -0.0197638944, -0.0230465271, 0.00966401305, 0.0111418786, -0.0323632061, 0.000339245016, -0.00773665914, -0.00597616052, 0.0139750214, 0.0127695734, 0.0149284825, -0.00540067814, -0.0425516255, 0.0410260856, 0.022188412, 0.00785924681, -0.0415709205, -0.0157729778, 0.0347877257, -0.0431781858, -0.00409988454, -0.00593870319, 0.0368580967, 0.0395005494, 0.00089982932, 0.0166719556, -0.0045017004, 0.0406447, -0.00860158447, -0.00719863456, -0.00805675, -0.0301838666, -0.0343246125, -0.0120408563, 0.0234142896, 0.00914642, -0.00419182517, 0.0102905734, 0.0187831912, -0.0275414158, -0.00918728299, 0.00928943884, -0.01255845, 0.010522129, -0.0189330205, -0.0263836421, -0.0178297292, -0.0128240576, 0.00242792163, -0.0163995381, 0.018088527, -0.0203632135, -0.0647264123, 0.0118297329, -0.0468830653, 0.0379205272, -0.00396367582, -0.00204823958, 0.0378660411, 0.0277184881, -0.0199682079, -0.019205438, 0.0283314269, 0.0204449389, -0.0454120077, 0.0269557182, 0.031573195, -0.00167451671, 0.0251441412, -0.0108762719, -0.014083988, -0.0328808, 0.00348694483, -0.0406447, -0.00615323195, 0.022855835, 9.43884297e-05, -0.0269829612, 0.0241498183, -0.0140022635, -0.0187968127, -0.024163438, 0.023686707, -0.036531195, 0.00823382102, 0.0102020381, -0.0111554991, -0.017421104, 0.0484903269, 0.0225016922, 0.023305323, 0.0343791, -0.016372297, 0.00500907796, 0.0550011061, -0.0194778573, -0.0250760373, -0.0150102079, 0.00698751071, -0.0191100929, -0.0254029389, 0.0133144092, 0.0116867134, -0.00722587621, -0.115178153, 0.0374301746, -0.0157593563, -0.014942104, 0.0465834066, 0.00369806844, 0.0518955477, 0.0337797776, 0.0118705956, 0.0191237144, 0.0106038544, 0.0153643508, 0.0280862525, -0.0439954363, -0.010808167, 0.043014735, -0.039664, -0.0297479983, 0.0249398295, 0.0125312079, -0.00679341331, -0.0184154287, -0.0463927127, 0.00143444876, -0.0123745678, -0.0344063379, 0.0457933955, 0.00251475465, -0.0113666235, -0.0276776254, -0.0267241634, -0.0233598072, 0.00123354082, 0.0152417636, 0.0374574177, -0.00492054224, -0.0187150873, -0.0149965873, 0.000963677187, -0.00415436784, 0.00162769505, 0.0121362032, 0.00403859047, 0.0141248507, 0.00627581961, 0.014560719, -0.00608512759, -0.00567990635, 0.0215618517, -0.0182519779, 0.0391464047, -0.00869012065, -0.0124903461, 0.0243405104, -0.0106106643, -0.027405208, 0.0403178, -0.0237275697, 0.0204858016, -0.00875822455, 0.0553007685, 0.00541770458, 0.00159960194, 0.00530533213, 0.00883314, 0.0160590149, 0.0181021485, -0.0265334714, 0.0352780744, 0.00827468373, -0.00599659188, 0.0219977181, -0.00911917817, 0.0471554808, 0.0313825049, 0.00312088383, -0.00510782935, 0.0107809259, -0.0648353845, -0.00580249447, -0.0115368841, 0.0453575253, -0.0428512841, 0.00414415216, -0.0238774, -0.0567173399, 0.0107673043, -0.00642224448, -0.00129568612, 0.0190828517, 0.0049341633, -0.0161952246, 0.00205845525, -0.0130147496, 0.0184971523, 0.0243132692, 0.00744381035, -0.00547559327, 0.0245720651, 0.0168217849, -0.0190964714, 0.00380703551, 0.0310828444, 0.0109035131, -0.00724630756, -0.0280045271, -0.00694324309, -0.0149965873, -0.0045561837, -0.0271055475, -0.044322338, -0.0150919333, -0.00274290447, -0.00130760437, -0.0110805845, 0.023782054, -0.00484562758, 0.00978660118, -0.0072394968, 0.00950737298, -0.00995686185, 0.0173121374, -0.0187150873, 0.00704199402, 0.0281952191, 0.00639840774, 0.0390101969, -0.0258796699, -0.0295845475, -0.0153643508, 0.0253484547, -0.0131782, 0.0246537905, 0.041107811, -0.00377979386, -0.0306197349, 0.00263904524, 0.00975935906, -0.0363949873, -0.00268501579, 0.0181021485, -0.0196685493, 0.000366699591, 0.00360272243, 0.00666742027, -0.0154596968, 0.0104948869, -0.0319545828, 0.0317911319, 0.0300476588, -0.00810442306, -0.0226379, -0.00370828412, 0.0139001068, 0.00359931728, 0.0121225817, -0.0126606068, -0.0192599222, -0.0486537777, -0.0196413063, 0.00858796388, 0.0167128183, -0.0316549204, 0.00633370876, -0.0242724065, 0.0594959967, 0.017230412, -0.0147377905, 0.0182655975, -0.0351418667, 0.0275414158, 0.0104744555, 0.00537684187, 0.00544494623, -0.0179386977, -0.0207854602, 0.0182655975, 0.0322814807, 0.00622474169, 0.0134301865, -0.000548240379, -0.000298382365, -0.0126742274, -0.0364222303, -0.0374029316, -0.0323087238, 0.0147650326, 0.00937797502, -0.0272417571, -0.014179335, 0.0207854602, -0.024640169, 0.0359863602, -0.0238365382, 0.0188512951, -0.0248036198, -0.0195868239, -0.0165357459, 0.0176935215, -0.0207854602, -0.0369398221, -0.0134506179, 0.00215209881, -0.000261989073, 0.0264245048, 0.0105425604, 0.000317962375, 0.0189738832, -0.0030170246, -0.0148331365, 0.00381044089, 0.0127423322, 0.0158683229, 0.0315187126, -0.0038989766, -0.0102497116, -0.0522224493, 0.0218342692, -0.00308002112, -0.0153507302, -0.0313825049, 0.00994324125, -0.0299931746, 0.0117548183, 0.0162224658, 0.0280590095, 0.00427014567, 0.0390919223, -0.00515890773, -0.0104540242, -0.00897615869, -0.0114279175, -0.0117684389, -0.00468898751, -0.0161816031, -0.0195595808, 0.0231282525, -0.00192054384, 0.00363677461, 0.0204721801, -0.0104335928, -0.00477071293, -0.0100249667, -0.00563223334, 0.0114619695, -0.0181838721, -0.0116594722, 0.0386288129, 0.0333166681, 0.00418161, 0.0120612876, -0.0351691097, -0.0120680984, -0.00370147382, -0.00567309605, -0.00130164518, -0.0386832952, 0.0282224603, 0.00225936319, 0.00920771435, 0.0292304046, 0.0158819444, 0.0253893174, 0.0113734333, 0.0287945382, -0.000779369671, 0.00519636506, -0.0340521969, 0.0116254203, 0.0138660548, -0.0199682079, -0.00356185972, -0.0124154305, -0.00102667371, -0.0133825131, 0.0568263046, -0.0171759278, 0.0191509556, -0.0134506179, -0.0147241699, 0.0206492525, 0.0216027126, -0.00756639801, -0.00628944067, 0.00130164518, -0.0266696811, 0.0134846698, -0.0307014603, 0.00199205359, 0.0192190595, 0.00881270878, -0.00886719208, 0.0111827413, -0.0296662729, 0.00621112064, 0.0026748, -0.000779369671, -0.00204823958, -0.00225255289, -0.00645289104, -0.00159875059, 0.010556181, -0.044322338, -0.00332179177, -0.030265592, 0.0176662803, 0.00405221153, 0.00537343649, -0.0213439167, -0.00863563735, -0.0233325642, -0.0461747795, -0.0154052135, -0.00962315, -0.0118774064, -0.0288217794, -0.0106923897, 0.00863563735, 0.0213711578, 0.0184835326, -0.00713052973, -0.0205266643, 0.0156912524, -0.000782349205, 0.0104131615, -0.0242724065, 0.00454596803, 0.016372297, -0.00911917817, 0.027309861, 0.00893529598, 0.0276367627, -0.0313825049, 0.032526657, -0.00473325513, 0.00137230346, -0.0241089556, -0.0102224695, 0.0267922673, -0.00204823958, 0.00915323, -0.0135936365, 0.0183064602, -0.0125380186, 0.00587740913, 0.0145743405, 0.00595913455, -0.0375936255, -0.0112099834, 0.00800907705, -0.014370027, 0.0173938628, 0.0298297238, 0.0245856866, 0.000738507, 0.00819976907, -0.0142883016, -0.0273779668, 0.0179931801, 0.0138796754, 0.0228830762, 0.00980022177, 0.0162360873, 0.00943926908, 0.00286208722, -0.0164131578, -0.0247627571, -0.00572076906, 0.000267735391, -0.0243132692, -0.0112440353, -0.00833597779, 0.0122792218, 0.0326901078, 0.0131577691, -0.00885357149, 6.28369453e-05, 0.00476730755, -0.0269557182, 0.0106379064, 0.00474687619, -0.00698751071, -0.0101475548, -0.00846537575, -0.000691685244, -0.0328535587, 0.061457403, 0.00656866888, 0.0157457348, 0.037103273, 0.0113053294, -0.0163586754, 0.00135272346, -0.0155959064, -0.0451395921, 0.024163438, 0.0322542414, -0.000145041078, 0.00789329875, 0.00474347081, -0.0296390317, 0.00621452602, -0.0327718332, 0.0244358554, 0.018374566, -0.0025368887, 0.0175981745, 0.0293121301, 0.0133348405, 0.0269965809, -0.0157593563, 0.0260567404, -0.0212349501, -0.0314914696, -0.0128240576, 0.00538024725, 0.0193144064, 0.0595504828, 0.018565258, -0.0225561745, 0.00198694575, 0.00546197221, -0.00516912341, 0.017897835, 0.028549362, -0.0117480075, -0.000126418774, -0.000947502383, -0.0187831912, -0.0265607126, -0.00809080154, 0.00364017976, 0.0135391532, -0.000724460464, 0.027214516, -0.0472372063, -0.00708285673, 0.0203223508, -0.0272962414, 0.0277048666, 0.00388876093, -0.00185073691, 0.0380022526, -0.0131713897, 0.0102905734, -0.00175198552, -0.0270374436, 0.0068070339, -0.0109716179, 0.0145062357, 0.0201725215, -0.0420885161, -0.0254165586, -0.00627581961, 0.0129057821, -0.00906469487, -0.0191918183, -0.0282769445, 0.00209761527, -0.0398002081, -0.00892167538, -0.0196549278, 0.0193961319, -0.0364494696, 0.0261384659, 0.0465561636, -0.000409477652, 0.0151055539, -0.0185788777, 0.0110124806, 0.0166719556, -0.0289579872, 0.0185243953, -0.018565258, 0.0334256366, 2.79334417e-05, 0.0388739891, 0.0253893174, -0.00657547917, 0.0240680929, 0.0305107683, -0.00355504942, 0.00889443327, -0.0185516365, 0.00984108448, -0.00246537896, -0.0123132747, 0.0345425494, 0.0239591263, -0.00160045328, -0.00632349309, -0.00326560554, 0.00602723891, 0.0193961319, -0.0335346, -0.0181430094, -0.0299386904, -0.00190351775, -0.0122111179, -0.00240578759, 0.00488649029, 0.0513234697, 0.0421702415, -0.0243949927, -0.0152690047, -0.00242281379, -0.00451872637, -0.0023240624, -0.0432871506, -0.00343416398, 0.0160590149, 0.00765493372, 0.0115505047, -0.00394324446, -0.0152553841, -0.0256481152, -0.0137094148, 0.021044258, -0.00671168789, 0.014942104, -0.0146288238, 0.0391464047, 0.0321180299, -0.00623155199, 0.00468558213, -0.00568331173, -0.00471963454, 0.0152826253, 0.00721225515, -0.00461407285, 0.0139205381, 0.00111010158, 0.0102224695, -0.00100879627, 0.023305323, -0.0219432358, 0.014179335, 0.00910555758, 0.0121702552, -0.00401134882, 0.0176799, 0.0222020317, 0.0181838721, 0.00340521964, 0.00611917954, 0.0205947682, 0.0294210985, -0.0128036262, -0.0055062403, -0.00814528577, 0.0264245048, 0.00105987466, 0.016944373, 0.010426783, 0.0255391467, 0.00986151583, 0.00219636667, -0.00368444761, -0.0104948869, -0.000834704493, -0.000898978, -0.0392281301, -0.0177480057, -0.0169171318, 0.0187423285, 0.0109103238, -0.00230533374, 0.00598978158, -0.00605448056, -0.0112644667, -0.0138251921, 0.0185516365, -0.00500907796, -0.0298297238, 0.00899659, 0.0242315438, -0.000721055258, 0.0174755864, -0.0107196318, 0.0278683174, -0.0635277778, 0.00195459602, 0.00406242721, -0.0164131578, 0.0262201913, 0.047101, 0.00642905477, 0.0233189445, 0.00190692302, 0.0269148555, -7.63514108e-05, -0.0176799, 0.001557888, 0.0132735465, -0.00604426488, 0.00724630756, -0.00681384467, 0.0102429008, 0.00779114245, -0.00989556871, 0.000698921329, -0.0059795659, -0.00779114245, -0.00547559327, -0.0182383563, 0.0045085107, -0.0190283675, -0.0535028093, -0.00711690914, -0.0166719556, -0.0118297329, 0.0163314342, -0.0083768405, 0.0112712774, -0.00788648892, -0.00433484465, -0.000311790413, -0.0133757023, -0.0238774, -7.05519e-05, -0.011284898, 0.0095209945, 0.0116867134, -0.0032792266, 0.0316276811, -0.0147377905, -0.027214516, -0.0143019222, 0.0296662729, 0.00764812343, -0.0114415381, 0.00316855684, 0.00390238175, -0.0435868129, -0.0188785382, 0.0266288184, 0.00711690914, -0.00447445875, -0.00650056452, -0.000953461509, -0.00920771435, 0.0242043, 0.00770941749, -0.0016677063, 0.00441657, -0.0167945437, -0.0109511865, 0.0159364287, -0.00677638687, -0.00685130199, 0.0179386977, 0.0153371096, 0.0280862525, 0.00202440307, -0.0162088461, -0.00132122519, 0.0263427794, -0.00671168789, -0.0187695716, -0.0174483452, -0.0251577627, 0.00916004088, -0.00301191676, 0.0023478989, 0.00525765913, -0.0284676366, -0.0178161096, 0.0717003047, -0.00681043928, -0.00283654802, -0.0497979335, -0.00432803435, -0.0436957777, 0.00743018929, 0.0142883016, 0.0169579946, -0.0227196254, -0.000362443068, -0.00343586667, 0.00732803252, 0.0256617349, -0.0154052135, -0.0165493675, -0.00357888592, -0.00870374124, 0.0312462952, -0.021711681, -0.00588081451, 0.0134778591, -0.0204585604, -0.00246027112, 0.0189875048, -0.0235913619, -0.00880589802, -0.0154596968, 0.00572757935, 0.0190556087, 0.00592848752, 0.00228490238, 0.0224335864, 0.00539727323, -0.00117990864, 0.0169579946, 0.0344880633, -0.0170942023, 0.0092281457, 0.0111759305, -0.0129262134, 0.018088527, 0.0201180372, -0.0360136032, -0.0110192904, 0.0193007849, -0.0306742191, -0.00293359673, -0.0368580967, -0.00622814661, -0.0121362032, 0.0123405159, -0.0286310874, -0.00118246255, 0.0189602636, 0.0072394968, 0.00376276765, -0.0243268888, 0.0125856921, -0.0416526459, -0.00398070179, 0.00538365217, -0.0300476588, 0.0185243953, 0.00630306173, -0.0175436921, -0.0175845549, 0.0305652507, -0.00932349171, 0.0273915865, 0.00834278855, 0.0189738832, 0.0340249538, -0.00145402877, -0.0337797776, -0.00161747937, -0.0167945437, 0.0323359668, 0.00951418374, -0.00624517305, 0.00140720699, -0.0037116895, -0.0409988463, 0.0176662803, 0.00249602599, 0.00990918931, -0.00150766096, -0.0201997627, -0.00383768254, 0.022855835, -0.0379477665, 0.0045017004, -0.019205438, 0.0429057665, 0.00626219902, -0.0170124769, 0.00732803252, -0.00630987203, -0.00271055475, -0.00883995, -0.0472099669, 0.0168626476, 0.0310828444, 0.0105493702, -0.0103586782, -0.0237003285, 0.0158819444, 0.0059795659, 0.0206764936, 0.0142065762, -0.0151872793, 0.0290669557, -0.00208569714, 0.0243813731, -0.00561861228, 0.0125312079, 0.00200567441, -0.00709647778, -0.00929625, -0.00875822455, -0.00769579643, -0.00254029385, 0.0332894288, 0.034814965, 0.0139614008, 0.00312428898, -0.0228149723, -0.00514188176, 0.0330442525, -0.0184971523, 0.000208888945, 0.0190692302, 0.0163041912, 0.0171486866, -0.00802950747, -0.00405902183, -0.000719352625, -0.00150680973, 0.00424971431, -0.0137162246, -0.00357207539, -0.00280760368, -0.00329965795, -0.0231691152, -0.000418842, -0.0145334778, 0.00730760116, -0.0112031726, -0.000893870136, 0.0139137274, 0.00851986, -0.0248036198, 0.00200737687, 0.000552496873, 0.00102241721, 0.000508229, 0.0122043071, 0.00833597779, 0.0195459612, 0.00640521804, 0.0297207572, 0.0118842162, -0.0137230353, 0.000600169937, 0.00305788731, 0.0118842162, -0.0116662821, 0.0242179222, 0.0170805827, 0.00490692165, -0.00045374551, 0.00722587621, 0.00447786367, -0.0159500483, 0.0255800094, 0.0225016922, 0.017230412, -0.041707132, 0.0143427849, -0.00766855478, 0.00549261924, 0.0313825049, -0.0018915995, 0.00115522079, -0.0485175699, -0.034460824, -0.0140022635, -0.0121498238, 0.0143564064, 0.0168490261, -0.0177752469, 0.0268195104, 0.00950056314, -0.00431441329, 0.0110465325, 3.16579e-06, -0.00265436876, -0.0304562841, -0.00279057748, -0.0072394968, 0.00150766096, 0.0145062357, 0.00422587758, 0.014942104, 0.00483541191, 0.0234687738, -0.020853566, -0.0199409667, 0.0127219008, -0.00395686505, 0.0348694474, -0.0193688888, 0.0155686643, -0.00534278946, 0.0185925, 0.00206015795, -0.0107400632, 0.00782519486, 0.015895566, 0.00040522113, -0.00290635508, 0.00579568371, 0.0135868266, 0.0166855771, 0.01703972, 0.00350397103, 0.0031872855, 0.00717139244, 0.0109988591, 0.0243268888, -0.0204176977, -0.000239855159, 0.0183881857, -0.0181566309, 0.0129466448, -0.00574120041, -0.00248410762, 0.00288762618, -0.00287230266, -0.00654823752, 0.0215482302, 0.0272689983, 0.000397346565, 0.0163450539, 0.00572417444, -0.000130036831, 0.0187968127, -0.0175300706, -0.0158547033, 0.00424971431, 0.00244324515, -0.011952321, -0.015609527, -0.0224608295, -0.000224744494, 0.00913960952, -0.0049886466, -0.0159364287, 0.0188240539, -0.0176390372, 0.0140431263, -0.000907491, -0.0234415326, -0.00724630756, -0.0342701301, 0.0100113461, -0.0286583286, 0.0209352896, 0.00148297311, -0.0191509556, -0.0368308574, 0.0146969277, 0.023114631, 0.0321997553, 0.000853433157, 0.00516231311, 0.000353717187, -0.00719863456, -0.0126333646, -0.00224744505, -0.023972746, -0.0297479983, 0.0164267793, -0.0140295047, 0.000412457244, 0.018538015, -0.014560719, 0.00103178155, -0.000827042735, 0.00826106314, -0.000811719219, 0.0026101009, -0.000688705652, 0.0180068016, -0.021493746, 0.0154596968, 0.0115981782, -0.0175709333, 0.000809591, 0.00137060089, -0.0041101, 0.00340521964, -0.00496821525, -0.00701475237, -0.0218478888, -0.00990918931, 0.00795459282, 0.00941202696, 0.0180204231, -0.0136957932, -0.0049886466, -0.0275686588, -0.00287230266, -0.0350601412, -0.00515550235, -0.0157729778, -0.00514188176, -0.00346651371, 0.00813847501, -0.0143155437, -0.0126742274, -0.0252122469, -0.00583314104, -0.0044540274, -0.00889443327, -0.000484392483, 0.00307150814, 0.00223041885, -0.00805675, 0.000245601463, -0.00472985, -0.00086960796, -0.013511912, 0.0220385808, 0.00875141472, 0.0159636699, -0.00559818093, -0.0134029444, -0.00410328945, -0.00232065725, -0.028549362, 0.0444857888, -0.00766855478, -0.0177888665, 0.00165578804, 0.00582973612, -0.0192463, -0.00797502417, -0.0219568554, -0.00314301765, 0.00975935906, -0.0178161096, -0.00548240356, -0.0103927301, -0.0151055539, 0.0115505047, -0.00224233721, 0.000170048152, 0.00853348058, -0.00596253946, 0.00978660118, 0.0149284825, 0.0155822849, 0.0189875048, -0.00558456033, -0.0173802413, -0.0143564064, 0.0115028322, -0.00452553714, 0.0262065697, -0.0129602663, -0.00380363036, 0.0345970318, 0.00791373, 0.0292031635, 0.0436140522, 0.0401271097, -0.010617475, 0.0098683266, -0.0240272302, -0.029693516, -0.0106583377, 0.00555731868, 0.0111146374, -0.0153643508, 0.00708285673, -0.00923495553, 0.00512485579, -0.000734250469, 0.0381929427, 0.0292848889, -0.0117071448, -0.0122519806, 0.0320907906, -0.0018439265, -0.00892848615, -0.0108762719, 0.000591231277, -0.00679341331, 0.00954823568, 0.0197911374, -0.00624857796, 0.0243268888, 0.000291359116, 0.054810416, 0.00648353808, 0.0159772914, -0.0055675339, -0.0192599222, -0.027977284, -0.012653796, -0.00532235811, -0.031573195, -0.0173393786, -0.00338138314, 0.0028229272, 0.00146424444, 0.0356049761, 0.00460385717, -0.0264245048, 0.000150148902, -0.005135071, -0.0141112301, -0.00434506033, -0.010808167, -0.00237684324, 0.0240272302, -0.019682169, 0.0120749092, 0.00898296945, -0.0122996531, -0.019014746, -0.00811804365, -0.00826787297, 0.0220658239, -0.00711009884, -0.0121089611, -0.00488989521, 0.00535300514, 0.0222565159, -0.00434846571, 0.00407264289, -7.26801591e-05, -0.00546197221, 0.00383087201, -0.0103382468, 0.0157048739, 0.0135051012, -0.0189194, -0.00107690075, 0.0198864825, -0.000138337055, 0.00174687768, 0.0160045326, 0.0248853453, 0.00262542441, -0.0115845576, -0.0125175873, -0.0120136151, 0.00289273402, -0.00640521804, 0.0127150901, -0.0067048776, 0.0114006754, 0.0101543646, 0.00854710117, -0.00621793093, -0.0106379064, 0.01007945, 0.0037593625, 0.00971168652, -0.0346242748, -0.00722587621, -0.00916004088, 0.0108694611, -0.00363336946, 0.00542792026, -0.00247389218, -0.0134982904, 0.00318898819, 0.0196685493, 0.0102429008, -0.00141316617, -0.000480987277, -0.00295232539, 0.0506969094, 0.0116117988, 0.0139750214, -0.00324517442, 0.00408626348, 0.0256344937, 0.00605107518, 0.0144381309, 0.00206867093, 0.0311373286, 0.01131895, 0.000849602278, 0.0304290429, -0.0256481152, -0.00607150653, 0.021970477, 0.00977979, -0.0104880761, 0.00332008908, 0.00574801071, 0.0152145214, -0.0185107738, 0.00553688733, -0.0230737682, 0.0261929501, 0.000443529862, -0.0238365382, -0.00372190517, 0.0292031635, 0.0234142896, 0.0014974454, 0.00123183825, -0.00552326627, -0.00533597916, 0.0146424444, 0.0080976123, -0.0101952273, 0.00486605894, -0.0238910206, -0.0225425549, -0.00594891887, 0.00770260673, 0.00729398057, 0.00633711368, -0.00355845457, 0.016086258, -0.00188138383, -0.014370027, -0.00244154246, -0.00401475374, -0.0030664003, 0.0171486866, 0.00610555895, 0.0263700206, 0.0143155437, -0.0149965873, 0.0148195159, -0.0129602663, 0.00895572733, -0.0026577739, 0.0220522024, 0.0113870548, -0.00566288037, 0.0137230353, -0.024926208, 0.014942104, -0.0115505047, -0.0211259834, 0.0149012413, -0.00726673892, 0.00986151583, -0.0168626476, -0.008615206, -0.0216571968, 0.00999091472, -0.00204313174, 0.0013408052, 0.0114415381, -0.00812485442, -0.00272928365, -0.00740975793, 0.00628603529, -0.014274681, 0.00620771525, 0.00349716051, -0.0198183786, 0.00477411784, 0.00779114245, 0.00456639938, 0.0178569723, 0.024449477, -0.0131918211, -0.00681724958, -0.0188785382, 0.00264415308, -0.0150919333, -0.00516912341, -0.00657888455, -0.00903745275, 0.0169852357, 0.00518614938, -0.000975595438, 0.0174074825, -0.00887400284, 0.00593870319, 0.00279057748, -0.000932178868, -0.0237956755, -0.0217661634, -0.00651078, -0.0261929501, -0.0218342692, 0.011414296, 0.0149557246, -0.0106855789, -0.0116799036, 0.0333711542, 0.0163178127, 0.00294892024, 0.000267948228, -0.00402837479, -0.024830861, 0.0195187181, 0.0125856921, 0.0250487961, -0.00139188347, -0.0222565159, -0.00507037202, 0.00757320831, 0.0133007877, -0.00778433215, 0.0110397218, 0.00548240356, 0.0150646921, -0.00617706822, -0.00396027043, 0.0246810317, -0.00612939522, -0.0106242849, 0.0164540205, 0.0352235921, 0.0262746755, -0.0160590149, -0.00437570736, 0.00298126973, -0.0153915929, 0.00862201583, -0.00686832797, -0.0132599249, 0.00531214243, 0.0251169, 0.00589103, -0.0152145214, 0.0120136151, -0.0186742246, 0.011761629, -0.0139409695, 0.00229171291, -0.00972530711, 0.011094206, -0.0125175873, 0.00832916703, -0.000621878251, 0.00131015829, 0.0116662821, -0.00562201766, 0.00366401626, 0.00300170109, 0.00892167538, -0.0078047635, -0.0372394808, 0.0165357459, -0.0133825131, -0.0115505047, -0.00187457341, -0.00764131267, 0.0223246198, -0.00491032656, 0.0161952246, -0.00982746389, -0.0184290484, 0.0137502765, 0.00976617, 0.0132531151, -0.00858115312, 0.00549261924, 0.021684438, -0.0266288184, 0.0101475548, 0.0167945437, -0.00429057656, 0.0301566254, 0.00192735437, 0.0130147496, -0.00370147382, -0.00305788731, 0.00482179085, -0.000255604304, -0.00276333583, 0.0138183814, -0.0179931801, 0.00548240356, -0.0206628721, -0.020376835, 0.0206628721, -0.0277184881, -0.00158087327, -0.0225834176, -0.00895572733, 0.00930987, 0.00134846696, -0.00898296945, 0.0170669612, 0.0195732024, 0.0122928433, 0.0241089556, 0.0118433535, -0.0108898925, -0.0125720706, 0.00296254107, 0.00310045248, -0.0143836476, -0.00737570599, 0.000680618279, -0.0203359723, -0.00674914522, 0.00335584395, 0.0107060103, -0.00684789661, -0.00645629643, 0.00262712687, 0.0119591318, 0.00772984838, 0.0227604881, -0.0136889834, -0.0102633322, 0.00895572733, -0.00668104086, -0.000341373263, -0.0221203063, -0.00815890636, -0.00180817163, -0.0420885161, -0.00420885161, -0.0121566346, -0.00557434466, 0.0182928406, 0.00488989521, -0.0133552719, -2.35705047e-05, 0.015800219, -0.00489330059, 0.00732122222, 0.00635754503, -0.00591146108, 0.00762769207, -0.0114619695, 0.00731441192, -0.0214528833, -0.0387922637, 0.00826787297, 0.00717139244, 0.00483541191, -0.0161407404, 0.0100181559, -0.0145743405, -0.000699772616, 0.0154052135, -0.0172440317, -0.00528490078, 0.0123268953, 0.0157593563, 0.0357139446, 0.00119438081, -0.0145198563, 0.0019171387, -0.0243949927, 0.0026101009, -0.00150680973, 0.00140380184, -0.0178024881, 0.00834959839, -0.00830192585, -0.00829511508, 0.0169171318, 0.00263564, 0.00194778561, 0.00841770321, 0.00367763732, -0.00109988591, 0.0227877293, -0.000921111903, 0.0113121392, 0.0127900047, -0.0108013563, 0.00857434329, -0.00864244718, 0.00477752322, 0.0111214472, -0.0115505047, -0.0042224722, -0.0304290429, 0.00679681823, 0.0178569723, 0.019872861, 0.0105698016, 0.0395005494, 0.0172576532, 0.013511912, 0.0124018099, -0.00646991748, 0.00220998749, -0.000152064342, 0.0359046347, 0.00741656823, -0.0136889834, -0.0354960114, -0.0113461921, -0.0108898925, 0.0105970437, 0.0162088461, -0.0109375659, 0.00113138428, 0.00470601348, -0.0114211068, -0.00271566259, -0.0226787627, 0.0110261012, -0.000171750769, -0.00162343844, -0.00300340378, -0.0121430131, 0.0148876207, 0.00473666051, 0.00787967816, 0.011700335, -0.00343586667, -0.00243302947, 0.00227809185, 0.007518725, 0.00348524237, -0.00157406274, 0.00172814901, -0.00387854525, -0.0115368841, -0.00315834116, -0.0300749, 0.0113393813, -0.00431100791, -0.0195595808, 0.018279219, -0.0108626503, -0.0149012413, -0.0027309861, 0.00312939682, -0.0164812636, -4.36293776e-05, 0.0141248507, 0.0032604977, -0.00337116746, 0.00625198334, -0.00139954523, -0.00112712767, -0.00300680893, -0.0101339333, 0.0118978377, 0.00678319763, -0.0101339333, 0.0115028322, 0.00636435533, 0.0215482302, -0.020567527, -0.0109648071, -0.0115913674, 0.0141929556, 0.00977298059, -0.0137638981, 0.0211396031, 0.0187014658, -0.00691259606, 0.00965039246, -0.0272553787, -0.0100522088, 0.00813166425, -0.00913279876, 0.0306197349, -0.0126946587, -0.021970477, 0.0153643508, 0.0294483397, -0.0140431263, -0.0194914769, -0.00704880478, -0.0265879557, -0.00819295831, -0.0119931838, -0.0289035048, -0.00778433215, -0.00794778299, 0.00750510395, 0.0023734381, 0.0221747905, 0.00107690075, 0.00308853411, 0.0285221189, 0.0101203127, 0.0192463, -0.0035959119, -0.0116867134, 0.0121498238, 0.0187695716, -0.000695516123, 0.00732122222, 0.0100113461, 0.00197673, -0.0047945492, -0.0179795604, 0.00141316617, -0.0120204249, 0.00417139428, 0.0103791095, 0.0144517524, -0.003735526, 0.0162633285, 0.0221747905, -0.0281952191, 0.00215550396, 0.0114551587, -0.00638819207, 0.010270142, -0.0193416476, -0.00649034884, 0.0107264416, 0.0072394968, -0.014846758, -0.0072326865, 0.00430419762, -0.0274324492, -0.021711681, -0.0279228017, 0.00414755754, -0.00331668393, -0.0106106643, 0.0310011189, -0.00776390079, 0.00980703253, 0.0152553841, 0.0126197441, 0.0110397218, 0.00919409283, 0.00247729733, 0.00637116609, 0.000811719219, 0.0232780818, -0.0213166755, -0.0169307515, -0.0178569723, 0.0087786559, -0.00259477738, 0.0350601412, -0.00285527669, 0.01023609, -0.00533597916, -0.0107332524, 0.00261861389, 0.0217389222, 0.0345153064, -0.0154596968, 0.000720203971, -0.01627695, -0.0086765, 0.0181838721, 0.0228013508, 0.00199375604, 0.0191237144, -0.0184835326, 0.0141384723, 5.10250866e-05, 0.000447786384, -0.00765493372, -0.00146850094, -0.00784562621, -0.00739613688, -0.0126606068, -0.00345970318, -0.0163314342, 0.0213166755, -0.0124494834, -0.00725311786, 0.022188412, -0.00081044226, 0.00309534464, 0.0378932841, 0.00391259743, -0.010140744, -0.00324176904, 0.00232746755, -0.00806356, 0.012081719, -0.00896253809, 0.0026339374, -0.00145488011, 0.0120476671, -0.00427695597, -0.0126606068, -0.000161322285, 0.000801077927, 0.000738932635, -0.0231554937, -0.00829511508, -0.00563563872, 0.00434165495, 0.00758682936, 0.00605788594, 0.00879227743, 0.0128717301, 0.00755277695, -0.0058399518, -0.00698070042, 0.0289035048, -0.0169988573, -0.0191918183, 0.0095754778, 0.0077570905, -0.0194506142, -0.0134778591, 0.0140567468, 0.0113053294, -0.00352780754, 0.00203632144, -0.00981384329, 0.008615206, -0.00757320831, 0.0163586754, -0.004307603, -0.0178161096, -0.0101339333, 0.026165707, 0.015514181, -0.0117071448, 0.0240680929, 0.00352780754, -0.00379000953, -0.00613620598, -0.0218478888, 0.020186143, 0.0114483489, -0.012463104, -0.01627695, 0.0167128183, 0.0052678748, 0.00343075884, -0.0260567404, 0.0102020381, 0.0223246198, -0.00597616052, 0.0102769528, -0.0157593563, 0.0279228017, 0.00137315481, 0.00897615869, -0.00296083838, -0.0126606068, 0.0117548183, -0.00100879627, -0.01627695, 0.0166583341, 0.00663336786, 0.0071918238, 0.00531214243, 0.0217797849, -0.0010649825, 0.00172985159, 0.0235913619, -0.0108967032, -0.00847218651, -0.00890805479, -0.011761629, 0.00637797639, -0.00214699097, -0.00726673892, 0.00871736184, -0.0276640039, -0.0232235976, 0.000346481102, -0.00770941749, 0.0172712747, -0.0163178127, -0.00167196279, -0.00471963454, 0.00413053157, 0.00800907705, -0.024667412, 0.0100726401, -0.000328816532, 0.000539727334, 0.00758682936, 0.0105970437, 0.00147275755, 0.0293121301, -0.0126401754, -0.0218070261, 0.00834959839, 0.00238705892, -0.000253476028, -0.0110397218, 0.0121225817, 0.00180306379, -0.00139103225, -0.0215754714, -0.00622814661, -0.00657207379, -0.00354823889, 0.019205438, -0.0170669612, -0.00506696664, 0.00745062064, 0.00181327946, 0.0191781968, 0.0146833071, 0.0101475548, -0.00177071418, 0.0101475548, -0.00376276765, 0.00765493372, 0.00881270878, -0.00953461509, -0.00048396684, 0.0115436949, -0.0133075984, 0.0145334778, 0.0199818294, -0.0227741096, 0.0107400632, -0.000421395933, 0.00623836229, -0.0337252952, 0.0219568554, -0.0185925, 0.0173802413, 0.0175845549, -0.0131509583, -0.0087241726, 0.00596935, 0.0132803563, 0.00207377877, 0.00218785368, 0.00301872729, 0.00542451488, -0.00512145041, -0.0148331365, 0.011223604, 0.00428717164, 0.00349716051, -0.0260839816, 0.000892167562, 0.00312769436, -0.00583314104, -0.0169852357, 0.00491373194, 0.0109784277, -0.00368785299, 0.0294483397, 0.0346787572, 0.00954823568, 0.0263291579, 0.00973892864, -0.0171214435, -0.0105970437, -0.00460726209, -0.0343518555, -0.00698751071, -0.0018915995, 0.0266151968, -0.0215482302, -0.0321452729, 0.0170533396, 0.0106651476, 0.00365720596, 0.00511804502, 0.00131867127, 0.00838365, 0.009854706, -0.025498284, -1.21510475e-05, 0.0093507329, 0.0160590149, -0.00940521713, 0.0171486866, -0.00495118927, -0.0116662821, 0.0368308574, -0.00308002112, -0.00525425375, -0.00552667165, -0.000455022469, -0.00309704733, -0.00628263038, 0.0200363118, -0.00913279876, 0.0103859203, -0.0126674175, 0.00581611507, -0.0158138406, -0.00809080154, -0.00391600281, 0.0196004435, -0.0134029444, 0.00257264334, 0.00965720322, -0.0366674066, -0.0154733183, 0.0145334778, 0.00894210674, -0.0108149778, 0.000416288094, 0.0103450576, -0.00817252696, 0.0215890929, 0.0227877293, 0.0228149723, -0.00543473056, -0.00549942954, 0.0244767182, 0.00365380058, -0.0179659389, 0.00349035021, -0.011509642, 0.0217797849, -0.0112644667, -0.0037593625, -0.0118365437, 0.00210953364, 0.00707604643, -0.0166855771, -0.0264789872, 0.00318558305, 0.0181157682, -0.0100113461, 0.00909193605, 0.00962315, -0.00863563735, -0.0112644667, 0.0270238239, 0.0264653675, -0.0119318897, 0.00720544485, -0.0209080484, -0.0108762719, -0.0103859203, 0.0184290484, 0.0138864862, 0.0237275697, -0.0128376782, -0.00855391193, -0.0190692302, 0.0068444917, 0.0103110047, 0.00574460533, -0.00413393648, 0.00982065313, 0.00836322, 0.00138166791, 0.0114006754, 0.0198047571, 0.0172031689, 0.00797502417, 0.00316174654, 0.00990237854, 0.013668552, 0.00839727186, 0.00265266607, 0.00254199654, 0.0127559528, 0.00295743323, -0.00014429618, 0.00230363104, -0.0127627635, -0.0172440317, 0.00470601348, -0.0176254176, 0.0135051012, -0.0090715047, 0.00454256311, -0.00365380058, 0.0238229167, -0.010712821, 0.00369806844, -0.0131918211, 0.0106447162, -0.0161679834, -0.00156980625, 0.0181838721, -0.00634392397, -0.0090578841, -0.0226923842, -0.00774346944, -0.00916685164, 0.00769579643, -0.00287400535, -0.0183064602, -0.00403518509, 0.0106038544, 0.000638478668, 0.0103722988, 0.00617706822, 0.0201316588, 0.00427695597, -0.00537684187, 0.0195459612, 0.0207718406, 0.00061506778, -0.014560719, -0.000219211011, -0.00283484533, -0.00332349446, -0.019832, 0.0256344937, -0.0217797849, -0.00323836389, 0.0129943183, -0.0204994231, 0.0324721746, -0.00398410717, -0.0116935242, 0.0205130428, -0.00148637837, 0.0186606031, 0.00303575327, -0.0163859166, -0.0209216699, 0.0288217794, -0.00687513826, 0.0279500429, -0.0132871671, -0.010842219, 0.0286855698, -0.000587400398, -0.0141112301, 0.00692962203, 0.000960271922, 0.000997729367, 0.0103450576, -0.0174483452, 0.0226787627, 0.00823382102, -0.0189057793, 0.00221169018, -0.0176799, -0.000533768209, 0.000717650051, 0.00248410762, -0.00690238038, 0.0109103238, -0.00538705755, -0.00955504645, -0.0270919278, 0.0116730928, -0.0225016922, -0.00486946432, 0.00660953112, 0.000299446488, 0.0227877293, -0.00380022521, 0.00482860161, 0.0222973786, 0.00286719506, -0.0123541364, -0.012653796, 0.0102905734, -0.0152417636, 0.0141384723, -0.0255527683, -0.00920090359, -0.0163995381, 0.00800226629, 0.0168626476, -0.00862201583, 0.0122179277, -0.025307592, -0.0134574277, 1.84759774e-05, -0.000441401586, 0.00081980665, 0.0340521969, 0.00897615869, -0.0165221263, 0.000959420635, -0.0061804736, 0.002853574, -0.00468558213, -0.0011986373, -0.000978149357, 9.32178882e-05, 0.011189552, -0.00333371013, 0.0217253, 0.011761629, 0.000738081348, 0.0141929556, -0.0171623062, -0.0188921578, -0.00329114473, -0.0138115706, 0.0114006754, 0.00924857613, -0.0106447162, 0.00986151583, -0.0170942023, 0.0203632135, -0.0102837635, -0.0189466421, 0.0113870548, 0.000370956113, 0.0183337033, -0.00574801071, 0.000500141643, 0.00708966749, 0.00175879593, 0.00183200813, -0.0116254203, 0.015418835, 0.0232235976, 0.000370317633, 0.00849261787, 0.00875822455, 0.015323488, -0.00536322081, -0.00227638939, -0.00310726301, 0.00520998612, -0.00716458214, 0.0024943233, 0.00507718232, -0.00907831546, -0.0199137237, -0.00189500477, 0.00839046109, 0.0122587904, 0.00157406274, 0.0211668462, 0.0132803563, 0.0162360873, 0.020349592, -0.000752979191, 0.00995686185, 0.00849261787, -0.0124971559, 0.00745062064, -0.0106447162, -0.0141520929, -0.0158274602, -0.0126878479, -0.0078728674, -0.0186197404, 0.00854710117, 0.0101816067, -0.005707148, -0.00651418511, -0.00508399308, -0.00611577462, 0.0114347273, 0.00657547917, 0.0119659416, 0.0164812636, 0.00397729641, 0.00458683074, -0.0290397126, 0.00131186086, -0.00109648076, 0.0248036198, -0.00751191471, 0.0169988573, -0.00132207654, 0.00849942863, -0.00790010951, -0.00750510395, -0.0040215645, 0.00680022361, -0.00562542304, 0.00656866888, 0.005707148, -0.0208399445, 0.016562989, -0.0193688888, -0.00336946477, -0.00705561507, -0.0234279111, 0.00354142836, 0.00639500236, 0.00728717027, -0.00639500236, -0.0217253, 0.014846758, -0.00236662757, -0.0300749, -0.0127900047, 0.00772303808, -0.00941883773, -0.00383427739, 0.0143427849, 0.00336095178, 0.0105016977, -0.0165221263, -0.000890464929, 0.00293529942, 0.00737570599, 0.00226106588, -0.000915152777, -0.0115164528, 0.00519977044, 0.0083223572, 0.00198524306, 0.00971849728, -0.0155822849, 0.0169579946, -0.00439273333, 0.0112167932, 0.0295300651, -0.00125141826, 0.018374566, -0.0102633322, -0.0089489175, -0.0172985159, -0.0114551587, -0.0232917033, -0.0161407404, 0.00228490238, -0.0205266643, -0.0133280298, 0.00433825, 0.00255050953, 0.00975935906, 0.00245516328, 0.0083768405, -0.0143972691, 0.0165357459, 0.00522360671, 0.00130675302, -0.00460385717, -0.016944373, -0.00338138314, 0.0021606118, 0.0110329119, -0.00848580711, -0.0110737747, 0.0017451751, -0.0341884047, -0.00554369763, -0.0169716142, -0.00944607891, -0.00514528668, 0.0180476643, 0.00792735163, -0.0129602663, 0.0144108897, -0.00785243697, -0.00158768368, 0.0213166755, 0.00894210674, 0.00365720596, -0.00313620735, -0.00959590916, 0.0110805845, -0.0174619667, -0.00937116425, 0.00172644632, -0.0163586754, 0.0240680929, 0.0203223508, -0.00106413115, 0.00516571803, -0.00144466443, 0.0165766086, 0.0054211095, 0.00114330254, 0.00392621849, 0.0293121301, -0.000642309547, -0.00703518372, 0.0172712747, -0.0338887461, -0.0181293897, -0.0102633322, 0.0165766086, 0.00265096361, 0.00112968159, 0.0154869389, 0.0106923897, -0.0124426726, 0.00728035951, 0.00444381172, -0.00756639801, -0.00711009884, 0.00415436784, 0.000386066764, 0.00931668095, 0.00898978, 0.013001129, 0.00231214403, -0.000193671862, -0.00932349171, -0.000654653471, -0.00777752185, 0.011128258, 0.00278717233, 0.0148876207, 0.00843813457, -0.0025862644, -0.00483541191, -0.00395005476, -0.0040760478, 0.0113121392, -0.00450510578, -0.00988875795, 0.0123064639, 0.0101679862, -0.0157048739, 0.00140976091, -0.0169307515, -0.0053666262, -0.00454937341, -0.0328808, -0.0128921615, -0.00911236741, 0.017230412, 0.0237548128, 0.00730760116, 0.00494778436, -0.00334733096, 0.0113461921, 0.00944607891, 0.00371509464, 0.0194914769, -0.0437230207, -0.00519636506, 0.00698751071, 0.010808167, 0.00233598077, -0.0228422135, 0.0150510706, -0.0163314342, 0.00959590916, 0.0100113461, -0.00477752322, -0.00491713732, -0.0026748, 0.00874460395, -0.0226379, 0.00209250744, 0.0249806922, -0.00340862479, 0.00517933909, -0.0199682079, -0.0244767182, -0.0032860369, 0.000378192199, -0.0117480075, -0.034706, 0.00502269901, -0.00751191471, 0.0148603786, 0.00321112224, -0.00893529598, -0.0250215549, 0.00139103225, -0.011284898, -0.00980022177, 0.0173393786, -0.0148331365, 0.000309662166, -0.0112304147, -0.00387173472, -0.0330714919, -0.0175164491, -0.0129602663, 0.00123609474, -0.00993643049, -0.00545175653, -0.00432803435, 0.0138183814, 0.00612258492, 0.00950056314, 0.0266696811, -0.017870592, 0.00086960796, -0.0159091856, -0.0133893238, -0.0295573063, 0.00257094088, 0.0230737682, 0.00863563735, -0.0204040762, -0.0123881893, -0.0126469862, -0.0117139556, -0.0104812663, -0.00295913592, 0.0155278016, 0.000493756845, -0.0317638889, -0.00309364195, -0.00909874681, -0.0192735437, 0.0334256366, -0.0191781968, -0.0178161096, -0.00302724028, 0.0159228072, -0.0154324556, 0.010617475, -0.0164812636, -0.0242315438, -0.0062724147, -0.00169409672, -0.0154733183, -0.0187968127, -0.00323155336, -0.0103927301, -0.00913960952, -0.00893529598, 0.00621793093, -0.0143155437, -0.00731441192, -0.00720544485, -0.0232917033, 0.00658569485, 0.00578887342, 0.0150783127, -0.0115913674, -0.0188104343, -0.033861503, 0.0201589, 0.00970487576, -2.3464092e-05, -0.0275686588, -0.00285187154, -0.0127219008, -0.00449829502, -0.00727354921, -0.0141248507, -6.31561852e-05, -0.00885357149, 0.0141520929, -0.00264926092, 0.00916004088, -0.010522129, -0.00818614848, -0.00526106451, -0.00850623846, 0.0117820604, -0.00576163176, -0.00771622779, 0.0079886457, 0.026642438, -0.0136413099, 0.0144517524, -0.00783881545, 0.000863648835, -0.003783199, 0.00740975793, 0.01503745, 0.00572757935, -0.00455277879, 0.020853566, -0.0155959064, -0.0291486811, 0.00115436944, -0.012081719, -0.0289035048, -0.015418835, 0.00415096292, -0.0253620762, 0.00884676073, -0.0285221189, 0.0052133915, -0.00577184744, -0.0055607236, -0.00032200609, 0.00562201766, 0.00785924681, 0.0168626476, -0.0127014695, 0.0170669612, -0.00101220154, -0.014083988, 0.0385470875, -0.00659591053, 0.00543813594, -0.0136549305, 0.0121021504, -0.00629284605, 0.00973211788, 0.00834278855, 0.019041989, 0.00151532271, -0.00693983771, -0.000982405851, -0.0117752496, -0.0133757023, -0.00624857796, 0.0203087293, -0.014370027, -0.0280317683, -0.00417479919, -0.0337252952, -0.0163586754, -0.00241259811, 0.0124767246, 0.00841089245, 0.00758682936, -0.000255391467, -0.0282497015, -0.0188104343, 0.0343246125, -0.0137911392, -0.00427695597, -0.010270142, -0.0160181541, 0.00691259606, 0.0165493675, -0.0125925019, 0.0117139556, 0.00519636506, -0.0243405104, 0.00158342719, 0.00145913661, -0.0215482302, 0.00255902251, 0.0066129365, -0.00762088178, -0.0222701356, -0.0024449476, 0.0254846644, 0.0027565253, 0.0161407404, -0.00308172381, 0.0136753619, -0.00247559464, -0.00615323195, 0.0223246198, 0.0117071448, 0.00708285673, -0.00952780433, -0.0158410817, 0.0235505, -0.0215618517, -0.0161543619, -0.0110192904, -0.0222292747, -0.0219296142, -0.00035541979, 0.0013663444, 0.0228830762, 0.0109171346, -0.00738251628, -0.0197638944, 0.0251577627, -0.00153490272, -0.010617475, -0.0172440317, 0.0141384723, 0.00430419762, 0.00508399308, -0.0181430094, 0.0149012413, -0.00760045042, -0.0247763786, 0.00933030155, -0.00936435442, 0.0264245048, -0.0111010158, 0.00685130199, -0.0135051012, 0.00770941749, -0.00934392307, 0.0114892107, 0.00230873888, 0.000707008701, 0.000715947419, -0.00352440239, 0.00977298059, 0.0101884175, -0.0138251921, -0.00390238175, 0.0144381309, 0.0071782032, -0.00803631824, -0.0158819444, -0.000191224361, 0.0198183786, 0.0179659389, -0.0056458544, 0.00507037202, 0.0265607126, 0.0145198563, -0.0169579946, 0.00747786229, -0.0063200877, 0.00473666051, 0.00943926908, 0.00169579941, -0.00365720596, -0.00369125814, 0.0146696866, -0.00470941886, 0.00669466192, -0.00444381172, -0.00884676073, -0.0239046421, -0.0149012413, -0.00943926908, 0.0011705443, 0.0131986318, 0.00914642, -0.0170942023, -0.0191237144, 0.000276886916, -0.00243302947, 0.0121362032, 0.0262882952, -0.0124426726, 0.0171078239, 0.0151191754, 0.00115777471, 0.00548921386, -0.00113308686, 0.0173938628, 0.0071782032, -0.0157729778, 0.00163195154, -0.0117548183, -0.0111623099, 0.0234823953, 0.0197775159, 0.00424290355, -0.00303915865, -0.00730760116, -0.00732122222, 0.0142065762, -0.0106992, -0.00407945318, -0.0154733183, -0.0102633322, 0.0151600381, -0.00196991954, -0.0124222413, 0.000588251685, -0.00540067814, 0.023782054, 0.0157593563, 0.0241361968, -0.0110329119, 0.0187695716, 0.000667848682, 0.000569948636, 0.00891486462, 0.00738932658, -0.00927581824, -0.00886038132, -0.00847218651, 0.0115028322, 0.00849942863, 0.00597275514, 0.00230873888, 0.00701475237, 0.00523382239, 0.0222973786, 0.00115522079, 0.00154171325, -0.00506356172, -0.0133348405, -0.011856975, 0.00126248517, 0.00501248334, 0.00224063452, -0.0120680984, -0.00387854525, 0.00534619484, 0.0157048739, -0.00729398057, 0.016944373, -0.0313825049, -0.0176526587, 0.0186469834, 0.0025368887, -0.0138183814, 0.000540152949, 0.00366742164, -0.00041713941]
|
08 Feb, 2022
|
Fabric.js Text cornerSize Property
08 Feb, 2022
In this article, we are going to see how to change the cornerSize of the text canvas using Fabric.js. The canvas means the text written is movable, rotatable, resizable, and can be stretched. Further, the text itself cannot be edited like a textbox.
To make it possible, we are going to use a JavaScript library called Fabric.js. After importing the library using CDN, we will create a canvas block in the body tag that will contain our text. After this, we will initialize instances of Canvas and Text provided by FabricJS and change the corner size of the canvas text using cornerSize property.
Syntax:
fabric.Text(text,
cornerSize: Number
);
Parameters: This property accepts one parameter as mentioned above and described below:
cornerSize: This parameter takes a number value.
Below is the example that illustrates the use of cornerSize property in Fabric.js:
Example:
HTML
<!DOCTYPE html>
<html>
<head>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;width: 400px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Text cornerSize Property
</b>
</div>
<div style="text-align: center;">
<canvas id="canvas" width="400" height="200"
style="border:1px solid green;">
</canvas>
</div>
<script>
// Create a new instance of Canvas
var canvas = new fabric.Canvas("canvas");
// Create a new Text instance
var geek = new fabric.Text('GeeksforGeeks', {
cornerSize: 30
});
// Render the text on Canvas
canvas.add(geek);
canvas.centerObject(geek);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js Textbox cornerStyle Property/Fabric.js Textbox cornerSize Property/Fabric.js Text cornerSize Property
|
https://www.geeksforgeeks.org/fabric-js-text-cornersize-property/?ref=next_article
|
CSS
|
Fabric.js Text cornerSize Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, Fabric.js Textbox cornerSize Property, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js Textbox cornerStyle Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, Fabric.js Text cornerSize Property, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0246418323, 0.0222082287, -0.0129325027, 0.0488249771, 0.0416133553, -0.00384471193, -0.0196344703, 0.0263746604, -0.0208066776, -0.0365932509, 0.0240812115, -0.00705235498, -0.00625601877, -0.0388866961, 0.00645988062, 0.018666124, -0.0463531464, -0.00316941878, -0.00897630397, 0.00363447913, -0.00777861383, -0.00557754, -0.00819907896, 0.0117985196, 0.00501373364, 0.0380967334, 0.0127222696, 0.00940951053, -0.0274449363, 0.022692401, 0.0129962098, 0.0145761408, -0.0118622268, -0.0446967669, -0.00452956138, -0.0251005217, 0.00463786302, 0.0630443618, -0.0255464707, -0.0297383852, 0.0294835586, 0.00849213079, 0.000518813147, 0.0239920225, -0.00990005396, -0.011002183, -0.0138116581, -0.016818624, -0.0345291458, -0.0422504209, -0.0114608733, -0.0196981765, 0.00959426071, 0.00348795322, 0.0127668651, 0.0121743903, -0.00824367441, 0.0266040061, -1.1951267e-05, -0.0106135709, 0.0381986648, -0.0966306403, -0.0292032473, 0.00555524277, -0.0517300107, -0.0166784693, -0.0131873302, 0.0105753466, -0.000981882797, -0.00910371728, -0.0347584896, 0.0200549345, 0.0121935029, -0.011511839, 0.0116519937, -0.0369245261, 0.0438558385, 0.00258331513, -0.0547879413, 0.0298658, 0.00460600946, -0.00760660507, 0.000549870252, 0.0216730908, -0.00882340688, -0.024272332, 0.0228835214, -0.0379183516, -0.0209850557, 0.0261708, -0.00207684515, 0.0305793174, 0.012913391, -0.0566736683, -0.02093409, 0.00199880428, -0.00988094136, -0.0144487275, -0.00333824218, 0.000792354695, 0.0172518305, 0.052392561, 0.0306557659, -0.0521122515, 0.00493728556, -0.0323121436, 0.0062146089, -0.017863417, 0.0408743545, -0.00798884686, 0.0419446304, -0.0346565582, 0.0111487089, 0.0493855961, -0.0526473895, 0.0207429696, -0.00825004466, -0.0243615229, 0.0232530218, 0.011301606, -0.00970893353, -0.00376507849, 0.0253043845, 0.0339430422, -0.0394728, 0.0255846959, -0.0241576601, 0.0265020747, 0.0212271418, -0.00563169084, -0.0161560718, -0.00634520827, 0.0220043659, 0.00121680193, 0.0547879413, -0.00223452, 0.0149456412, 0.0117666665, -0.0129643558, -0.00589926, -0.0251897126, -0.0142958304, 0.0174302105, 0.0271901097, -0.0190483667, -0.012524779, 0.00778498454, -0.000658570207, -0.0149838654, 0.0337137, -0.0485956296, -0.0285916608, 0.0270881783, -0.0159776937, 0.0423268713, -0.0236225221, -0.0260816086, 0.00573043665, 0.0382496305, 0.0182329174, 0.0468373187, 0.00590244541, 0.00751104485, 0.0260688681, -0.0306048, -0.0154680377, 0.00853672624, -0.010677278, -0.0396766625, 0.0191120729, -0.00578140188, 0.0153533649, -0.0061668288, 0.000437985, -0.0507616661, -0.0345291458, -0.0110913729, -0.0368225947, 0.00277443603, 0.00246545742, -0.0477037355, 0.0311399382, 0.0340449736, 0.0497678369, -0.0174047276, -0.00103603362, 0.0186151583, 0.00753652724, 0.003742781, -0.00919290725, -0.0102822948, 0.0440596975, 0.0296874195, 0.000681265781, 0.0228452981, -0.0222209711, 0.0268588327, 0.0355994217, -0.0183603317, -0.0165255722, 0.0130344341, -0.00927572604, -0.0138881067, -0.0406195261, 0.0281074885, 0.0258140396, -0.0120852012, -0.0496913902, 0.030477386, 0.00912283, -0.00581644103, -0.0150475726, 0.0193923842, 0.00774676027, -0.0209723152, -0.00221222243, -0.0233676955, 0.0165637974, -0.0210105386, -0.0176595561, 0.0327963158, 0.013747951, -0.00268206093, -0.0369500071, -0.0325924568, -0.0020115457, 0.0245781261, 0.0160541404, -0.00212781085, -0.0346820429, 0.0128114596, -0.0118176322, -0.0273939706, 0.0121935029, 0.0557562858, -9.78498356e-05, -0.00829464, 0.00247819885, -0.00486720772, 0.0109002525, 0.0103014074, 0.00821819156, -0.0168950725, -0.0357778, 0.0417407677, 0.0235078502, -0.0031821602, 0.00467608729, 0.00202269433, -0.0262472462, -0.0352426618, -0.0304264203, 0.0178124513, 0.0133529687, -0.0218387283, -0.0279036257, 0.0016611577, -0.0396511815, 0.0366951786, 0.0458434932, 0.0463021807, -1.26916111e-05, -0.00939676911, -0.000520803966, -0.019685436, -0.000633883756, 0.0157738309, -0.0435245596, -0.00160621048, -0.0233167298, 0.00874695834, -0.0377399735, 0.0225395039, -0.0235715564, -0.0464550778, 0.0327708349, -0.0158885028, 0.00682301028, 0.0218132455, 0.00438303547, -0.00322675495, 0.0128687955, 0.0360326283, 0.0513732508, -0.0282349028, -0.0183730721, -0.0178124513, 0.0414349735, -0.0265020747, -0.0391160436, 0.000266374525, -0.0285406951, 0.0299677309, -0.00569858309, 0.0167676583, -0.0285406951, -0.00877881236, -0.0351662152, -0.0146653308, -0.0388102494, -0.00681026885, -0.0220553316, -0.0118048908, -0.0344781801, 0.0241831429, 0.0321847312, 0.017175382, -0.00745370844, -0.00279354793, 0.015327883, 0.0147290379, -0.0410272516, -0.0269607641, -0.0147417793, 0.0112251574, -0.0211506933, 0.0475508384, -0.00142464577, -0.0291522816, -0.00350069464, -0.0251514874, -0.0204499178, 0.0254700221, 0.0407469384, 0.0610567033, -0.0147417793, -0.0307067297, -0.0198383313, 0.0470157, -0.00554887205, -0.0224630572, -0.00114194641, -0.00629742816, 0.0109002525, 0.0196726937, 0.0182201769, 0.00829464, -0.00139119965, -0.0395747311, 0.0427345969, 0.0371538699, -0.00297670532, -0.0684467, -0.0161560718, 0.0278526619, -0.0578968413, -0.0159776937, 0.011002183, 0.026451109, 0.0210360214, 0.000833764207, 0.0220425911, 0.0247565061, 0.027139144, -0.0340194888, 0.0152514344, -0.0147290379, -0.031878937, -0.0427855626, 0.00485765189, 0.0225904696, 0.00427473383, 0.00822456181, 0.0199147798, -0.00149313069, -0.0259414539, -0.00250845961, 0.0102058472, -0.0152514344, -0.00752378628, -0.0129516153, -0.014283089, -0.0202970207, -0.0028731816, 0.013658761, -0.0264765918, 0.00191917061, -0.0204754, -0.0397785939, 0.0136077963, -0.0444164574, 0.0257630739, 0.0173410214, 0.0112824934, 0.0391160436, 0.0320828, -0.0374087, -0.0237117112, 0.0242213663, 0.037485145, -0.0470666662, 0.0257375911, 0.0176468138, -0.0176085904, 0.0135313477, -0.0164491236, -0.0274704192, -0.0232785046, 0.0223483834, -0.0404156633, -0.0123909935, 0.0251897126, -0.0137097267, -0.0392944217, 0.0394218341, -0.0136715025, -0.0349368677, -0.02433604, 0.0144487275, -0.0258777477, -0.00297033461, 0.0120214941, -0.0155954519, -0.0346310772, 0.0558582172, 0.0146271065, 0.0309105925, 0.0239410568, -0.0157610904, -0.000609993644, 0.0739000142, -0.0102631832, -0.0260816086, -0.00141349703, -0.00415050518, -0.0280820057, -0.0282349028, 0.0146908136, -0.00200198963, -0.0126203392, -0.0906167105, 0.0458689742, 0.000606410147, -0.0375106297, 0.0231256075, 0.00815448444, 0.0586103573, 0.0278016962, 0.0438813195, 0.0247947294, 0.00458689732, 0.00559665216, 0.0427091122, -0.00882340688, -0.0261962805, 0.0326179378, -0.0333314538, -0.013480382, 0.0317515247, 0.0109639596, -0.0134931235, -0.00884251948, -0.0580497347, -0.0161305889, -0.00809077732, -0.0226414353, 0.0424288027, -0.000143639176, 0.00556798372, -0.0315986276, -0.023469625, -0.0347584896, -0.00579732889, 0.025495505, 0.025915971, -0.00807166565, -0.0176595561, -0.0107282437, 0.00880429521, 0.0127732353, 0.00620186748, 0.0108620282, 0.0236734878, 0.0229344871, 0.000627114903, 0.0102631832, -0.00653632917, 0.00217877631, 0.0255209878, -0.0183221065, 0.030120628, -0.00626238948, -0.0161688142, 0.0226032119, -0.0109384768, -0.0459963903, 0.0152769173, -0.0262982119, 0.0121425372, 0.0164491236, 0.044824183, 0.0212526247, -0.00199880428, -0.0189082101, 0.00390523369, 0.0205008835, 0.0269862469, -0.0464041121, 0.0346310772, -0.00694405334, -0.0156336762, 0.0275213849, -0.0171244182, 0.0532080121, 0.0363129377, 0.0120469769, -0.00373003958, 0.0250368156, -0.0483662859, -0.00481942762, -0.0174556933, 0.0339430422, -0.0437029414, 0.000433207, -0.0199784879, -0.0496659055, 0.00974078663, -0.0226796605, 0.00823093299, 0.0101421401, 0.00410591, -0.00679115672, 0.00353891891, -0.00635794969, 0.0278526619, 0.0492836647, -0.00473979395, -0.0106963906, 0.0285152122, -0.00133704883, -0.0128751667, -0.00174079137, 0.011002183, 0.00153454021, 0.017685039, -0.0276488, -0.0171881244, -0.0266040061, -0.00774038956, -0.0216730908, -0.0555524267, -0.00471431157, -0.029610971, -0.00279991864, 0.00295281527, 0.0275213849, -0.00152339146, -0.0011570768, -0.022692401, 0.0097598983, -0.0237754192, 0.0150093483, -0.00843479484, 0.00602985919, 0.0249985922, -0.00422058301, 0.00603304431, -0.0182966255, -0.0216730908, -0.0109066227, 0.0262982119, 0.00825641584, 0.0266549718, 0.041180145, 0.00730081182, -0.0313183181, 0.0229727123, 0.00744096702, -0.0339175574, 0.00400716485, 0.0252534188, -0.0360071473, 0.00209755, -0.00201950897, 0.00645032478, -0.00156957901, 0.0201568659, -0.0274704192, 0.0371793509, 0.00928846747, 0.00723710516, -0.00930757914, -0.00343698775, 0.00647899276, 0.0125757437, 0.0352936275, -0.0337901451, -0.0134931235, -0.0637578741, -0.0208958667, 0.0213418156, 0.0202587973, -0.0253171269, -0.00395938428, -0.0179271251, 0.0545331165, 0.0160031766, -0.00121441297, 0.0265275575, -0.0380967334, 0.0193796419, 0.0272920411, -0.00810351875, 0.023023678, -0.0179271251, -0.0266294889, 0.0215711594, 0.0157101247, 0.00274258247, 0.0192140043, -0.00333187147, -0.0086068036, 0.00111009285, -0.0444164574, -0.0420975275, -0.0143977618, 0.00207525259, 0.00442763045, -0.0168695897, -0.00413139304, 0.0202078316, 0.000853672565, 0.0249731094, -0.0133529687, 0.0427345969, -0.00911645871, -0.00688034622, -0.0175194, 0.0225777291, -0.0336627327, -0.0270881783, -0.0107409852, -0.0233931765, 0.0245526433, 0.0267314203, 0.0196726937, -0.00121680193, 0.0034561, -0.0195707623, -0.0142193818, -0.00716065662, 0.0186788663, 0.00268683885, 0.0345036611, 0.00232848758, -0.00624009175, -0.0423268713, 0.00457734149, -0.00848576054, -0.00747282058, -0.0120214941, 0.00433844049, -0.0161178485, 0.00629742816, 0.00753652724, 0.0379183516, 0.00183316635, 0.0519593544, 0.0097598983, 0.00144773955, 0.0130981402, -0.0226669181, -0.00867051072, -0.000926139182, -0.00460282434, -0.00630061328, 0.00994464848, -0.00307704369, -0.0148946755, 0.00578458747, -0.00968982093, 0.00579095818, -0.0142576061, 0.0111933043, -0.00472068181, -0.0173282791, -0.0047652768, 0.0284897294, 0.0265020747, -0.001226358, 0.0246163495, -0.0361600406, -0.0245653838, 0.0151749859, 0.00939676911, -0.00203384319, -0.0294580758, 0.0271646269, -0.000187139041, 0.00988094136, 0.0382241458, 0.0201568659, 0.0349878334, 0.0155827105, 0.0356503874, -0.0123527702, 0.0108492868, -0.0271901097, 0.0109830713, 0.0169715211, -0.0278016962, -0.00313756522, -0.00724347588, -0.000567787851, -0.0201313831, 0.0404156633, -0.0157610904, 0.0276233163, -0.00340194907, -0.00183316635, 0.0181946941, 0.0161560718, 0.000115966483, -0.000767668243, -0.0160031766, -0.00823093299, 0.0113525717, -0.0143085718, -0.00953692477, 0.0207174867, 0.00560302287, 0.00683575124, 0.0189336929, -0.0332040414, -0.00648217788, 0.0028524769, 0.0160541404, 0.00554250134, -0.000903841807, -0.00813537277, -0.000840931199, -0.00461875089, -0.024068471, 0.00650129, -0.0321337655, 0.0299167652, -0.0177360047, 0.000746565347, -0.0168058835, -0.0072880704, -0.00531315617, -0.0462767, -0.0227178838, 0.00157276436, -0.00754289795, -0.0306048, -0.0147417793, 0.0138753653, 0.0155572277, 0.0210232809, -0.0141174514, -0.0375870764, 0.024603609, -0.0106135709, 0.0289484207, -0.0182966255, -0.00263268803, -0.000517618668, 0.00480350107, 0.0308851097, -0.00376189314, 0.0371538699, -0.0388866961, 0.0391924903, -0.00429703109, 0.00417917315, -0.0136969853, -0.0145379165, 0.0113398302, -0.0101230284, 0.0098682, -0.0173027962, 0.0221190397, -0.00345291453, -0.00457734149, 0.012913391, 0.00904638134, -0.0140282614, -0.0201950911, -0.00746645, -0.007485562, 0.0265275575, 0.0126967868, 0.0339430422, -0.000477005495, -0.00670833746, 0.00153533649, -0.0258140396, 0.00687397551, 0.0151749859, 0.0089189671, 0.00300537352, 0.0347075239, 0.0165128317, -0.00868325215, -0.0104288207, -0.0281329714, -0.0168441068, 0.00462830719, -0.0256101787, -0.0042142123, -0.00974715687, 0.0275213849, 0.0240302458, 0.0233676955, -0.0121871317, -0.0129388738, 0.00661914796, -0.00228867074, -0.0116201406, 0.0040740571, 0.0213545561, -0.00521759596, 0.00509655289, 0.00844753627, -0.0066446308, 0.0347839743, 0.0184112974, 0.00825004466, 0.0115946578, 0.00854946766, -0.014283089, -0.00215010811, -0.00951781217, -0.046735391, 0.0432697348, 0.0580497347, -0.00394345773, 0.0119641582, -0.008587691, -0.0180800203, -0.00170575257, -0.0382241458, 0.0451809391, 0.0132255545, 0.0119386753, 0.0244889371, 0.0410017669, 0.0116711063, 0.0301715918, -0.0206155553, 0.0213545561, -0.0151240202, -0.00939039886, -0.0147162965, 0.00161735923, -0.00196854351, 0.0322611779, 0.0196599532, -0.0255337302, 0.0144105032, 0.000327294256, 0.0289229378, 0.0179398656, 0.0212908499, 5.86800379e-05, -0.0310125239, -0.00482579833, -0.00533226831, -0.0437793881, -0.00700138928, 0.00310252653, 0.0176722966, 0.0176085904, 0.0206410382, -0.0549918041, 0.0028524769, 0.0203607287, -0.0171244182, 0.036771629, 0.00389886298, 0.00840931199, 0.0428620093, 0.0046729017, 0.0114736147, 0.00569221238, -0.0214310046, -0.000325701578, -0.0254572816, -0.00733266538, 0.00900178682, -0.0266040061, -0.00096277066, 0.0111614503, 0.00227752212, 0.000773640815, -0.0155954519, -0.0331785604, 0.00545649696, -0.0522396676, -0.000115070608, -0.0206155553, 0.0476782508, -0.0451554582, 0.0212781075, 0.0534628406, 0.0111678215, -0.00439259131, -0.0135313477, 0.0309360754, 0.0120406058, -0.0253935736, 0.0186151583, -0.0199147798, 0.0212398842, -0.0220171083, 0.0212526247, 0.0045646, -0.00153613288, 0.0219406597, 0.0205900725, 0.0118494853, 0.0143977618, -0.0146780722, 0.00984908827, 0.00323949638, -0.00296874205, 0.0279800743, 0.0162325203, -0.00412183721, -0.00129802828, -0.011690218, 0.0165255722, 0.0261962805, -0.0290248673, -0.0115436921, -0.0233676955, -0.0110212956, -0.0127350111, -0.0142321233, 0.0162580032, 0.0376380421, 0.0363384224, -0.0163344517, -0.000844116556, -0.00724984659, -0.0194178671, -0.000992235146, -0.0325160064, -0.0123973647, 0.0121106831, 0.00683575124, 0.0190356243, -0.0261962805, -0.0318024904, -0.0533609092, 0.00974078663, 0.00216762768, 0.00442125974, 0.0478056669, -0.0221827459, 0.0360326283, 0.0487994924, -0.020844901, 0.015238693, -0.0022010738, -0.00194943149, 0.0170607101, 0.0094795879, 0.0043034018, 0.00603941502, -0.00563487597, 0.0104479333, -0.000999402138, 0.0334079042, -0.0401863195, 0.000461078773, 0.021469228, 0.0249221437, 0.00164523092, 0.00737726036, 0.017506659, 0.0160923656, -0.0105116405, 0.00143420184, -0.00142384949, 0.0431423187, -0.0152514344, -0.016551055, -0.0248966608, 0.0303754546, 0.0076257172, 0.0109512182, 0.0157993138, 0.00947321765, 0.000302209664, 0.0139135895, 0.00682938052, -0.0141556757, 0.0122380974, 0.0021931103, -0.034350764, -0.0231893156, -0.01401552, 0.0319553874, 0.00487676403, 0.0191375557, 0.0191248152, -0.0332295224, -0.0161051061, -0.0172900558, -0.0028238087, -0.000676487747, -0.0366187319, -0.00739000179, 0.0265785232, 0.00203543575, 0.0065044756, -0.0245016776, 0.0289739035, -0.0546350442, 0.00317578949, -0.00155444862, -0.00674656173, 0.00318375276, 0.0417917334, -0.0135950549, 0.0103714848, -0.00972167403, 0.024960367, -0.00977264, -0.00308500719, -0.0261453167, 0.00153294753, -0.00766394148, 0.00596296694, -0.0118367439, 0.0143467961, 0.0154425548, -0.0209468324, -0.00151622447, -0.0154043306, -0.00129006489, -0.0145888822, -0.00443400117, 0.00120804226, -0.0131873302, -0.0369754918, -0.0128687955, -0.0119450456, -0.0178124513, 0.0173027962, 0.00496276841, 0.00426199241, -0.00249731098, 0.00217081304, -0.0116201406, -0.00617001439, -0.0107792094, 0.00878518261, -0.00274576782, 0.0230364185, 0.0186279, -0.0127668651, 0.00436710846, -0.0229217466, -0.0274449363, -0.014703555, 0.023648005, 0.0130408043, -0.0143722789, 0.0117857782, -0.00696316548, -0.0396511815, -0.0236607455, 0.0200549345, 0.0186024178, 0.00823730323, -0.00696953572, 0.00567947095, -0.0132255545, 0.0210742466, 0.00951781217, 0.00449133711, 0.0215839017, -0.0271901097, -0.000778418791, 0.00554568646, -0.0202715397, -0.0140410028, 0.0179780908, 0.0200549345, 0.0156846419, -0.00444037141, -0.0078168381, 0.0115819164, 0.0192267448, -0.0139518129, -0.00772127742, -0.0201186426, -0.019685436, 0.015060314, -0.00639935909, -5.71371347e-05, 0.00396894058, -0.0189591758, -0.0182456598, 0.0441871136, -0.0150475726, -0.00107505405, -0.0498442873, 0.00239378703, -0.0370264575, 0.00424925098, 0.0267314203, 0.0201950911, -0.0307067297, 0.0078678038, 0.00922476, 0.000705952174, 0.0316750742, -0.0202333145, -0.000388014887, -1.67977196e-05, 0.0027123217, 0.0385044552, -0.0146653308, -0.00849213079, 0.016729435, -0.0103905974, 0.00318693812, -0.00075213972, -0.022692401, -0.00440533273, -0.0138498824, 0.0166147612, 0.0114672435, 0.00187935389, -0.00877244119, 0.0231893156, 0.00474935025, -0.00341150514, 0.0152769173, 0.0182201769, -0.0178761594, 0.00188413181, 0.00590563053, -0.0174684338, 0.0144487275, 0.00630061328, -0.0322611779, 0.00620505307, 0.0171116758, -0.0291267987, -0.0119131925, -0.0214437451, 0.00206251116, -0.022756109, 0.00535138045, -0.0297129024, -0.0067274496, 0.00786143262, -0.0142448647, 0.011034037, -0.0207429696, 0.0309360754, -0.0441616289, 0.00819907896, 0.00459963875, -0.0163981579, 0.0175321419, 0.0111678215, -0.00427791895, -0.0352426618, 0.0389631465, -0.0335608, 0.01401552, 0.0191248152, 0.0158120543, 0.0285916608, -0.00202110177, -0.0465570092, -0.00222496386, -0.0181946941, 0.0294580758, -0.0100975456, -0.0125948563, 0.0130344341, 0.00488950545, -0.0261198338, 0.00854309648, -0.00747919129, 0.0140410028, -4.52169734e-05, -0.0318534561, 0.000195002867, 0.00749830343, -0.0257758163, -0.00861954503, -0.0165383145, 0.0222209711, 0.0094987005, -0.0207939353, 0.00849850196, -0.00789965689, 0.00312323123, -0.00516025955, -0.0438303538, 0.0127222696, 0.0310380068, 0.00473660883, -0.00853035506, -0.0167421754, 0.0158375371, -0.00882977806, -0.0143467961, 0.0190738495, -0.0141301928, 0.0253680907, -0.00770216528, 0.02093409, -0.00718613947, 0.0238773506, 0.00573680736, -0.0292032473, 0.00339557836, -0.00205773325, -0.00995102, -0.00400079414, 0.030120628, 0.0272665583, -0.00485128118, 0.0177614857, -0.0213927813, 0.00613179, 0.0279291086, -0.0327963158, 0.00714154448, 0.0200804174, 0.0120214941, 0.0234823674, -0.00959426071, 0.00888074283, -0.00665100152, -0.00445948355, -0.000234321982, -0.0151749859, -0.000473421969, 0.00713517377, -0.00431932835, -0.0216730908, -0.00201473106, 0.000536730688, 0.00868325215, 0.00569221238, -0.00139916304, 0.0115564335, 0.0105626052, -0.00789965689, 0.00334779802, 0.0020529551, 0.0158885028, -0.00169301115, 0.00225522462, 0.000220187008, 0.0269097984, 0.0118877096, 0.0329746976, 0.00682301028, -0.0191757791, 0.000575751183, 0.00983634684, -0.00701413071, -0.0261198338, 0.00800158828, 0.024068471, -0.00053394353, 0.00352936285, 0.010823804, 0.0050455872, 0.00717976876, 0.0196344703, 0.00946684647, 0.0065044756, -0.0247055404, 0.0223993491, -0.010467045, 0.00952418335, 0.0285152122, -0.00844753627, 0.00155763398, -0.0457160771, -0.0192267448, -0.00140712643, -0.00814174302, -0.0147800036, 0.0150985373, -0.0223993491, 0.0210105386, 0.00797610544, 0.00741548417, 0.012403735, -0.00852398481, -0.00422695326, -0.0307831783, -0.00641210051, 0.00503603136, 0.000102926475, 0.0164746065, -0.0011706145, 0.0188699868, 0.0158375371, 0.00694405334, -0.0208321605, -0.0170479696, 0.0118431142, -0.0091674244, 0.0368480757, -0.0054660528, -0.000888711365, 0.00359306973, 0.00716065662, 0.0012621932, -0.00929483771, -0.00298626139, 0.0154935205, 0.00212462549, -0.00160143245, 0.00870236382, 0.0161178485, 0.0101293987, 0.00965796784, 0.0108046923, 0.00539916055, 0.00845390651, 0.012703158, 0.0178506766, -0.0410272516, 0.00339876371, 0.0320573188, -0.00545649696, 0.00577184604, -0.00219151773, -0.0138626238, -0.00322197704, 0.00266772695, -0.00265817088, 0.00269320956, 0.0476018041, -0.00566354441, -0.00613179, -0.0207174867, -0.000125024817, 0.0173155386, -0.0106517952, -0.00684849266, -0.00266454159, 0.00165637967, -0.0091292, -0.00666374294, -0.0254317988, -0.00632609613, 0.00738363108, -0.00967707951, -0.0222846773, 0.0222591944, 0.00714154448, 0.000604419329, 0.00241608452, -0.0207557119, 0.00940951053, -0.0206155553, -0.0091292, -0.030299006, 0.0184367802, 0.00854309648, -0.0276233163, -0.033076629, 0.0155699691, 0.0297638681, 0.0136842439, 0.00413457863, -0.00371092744, 0.00684212195, 0.00220425916, -0.0173282791, 0.000493330357, -0.0259541944, -0.0267823841, 0.00821819156, -0.0177614857, 0.00299422466, 0.0228070728, -0.0212908499, 0.00314393593, -0.0280055571, 0.00783595, 0.00844116602, -0.00840294175, 0.0199784879, 0.00508699659, -0.0121552786, 0.0165128317, 0.00949232932, -0.00942862313, 0.0146398479, 0.0149074169, -0.00844753627, 0.0083774589, 0.0031327873, -0.00573999248, -0.0183221065, 0.00243519666, -0.00313119474, 0.00744733773, 0.0406195261, -0.0149329, -0.0152641758, -0.0154552963, 0.00200517499, -0.0266549718, -0.00268206093, -0.0280820057, -0.00968345068, -0.0097790109, 0.0101612518, -0.00640891492, -0.00538641913, -0.028897455, -0.00395938428, -0.0157483481, -0.00849213079, 1.60013842e-05, 0.00910371728, -0.00385745335, 0.00433525536, 0.00242564059, 4.74566696e-05, 0.0063165403, -0.0328218, 0.0138116581, 0.0111487089, 0.0171371587, -0.00966433808, -0.014881934, -0.0115691749, -0.00693768263, -0.0174429528, 0.0470157, 0.000328886934, -0.0184750035, 0.00433844049, 0.00833286345, -0.0141939, -1.34008478e-05, -0.0222974177, 0.0144359861, 0.00834560487, -0.0135950549, 0.00705872569, -0.00331913, 0.00142225681, 0.0257758163, -0.00737726036, 0.00412820792, 0.00363766449, -0.00595022552, 0.00933306199, 0.00639935909, -0.00180768361, 0.0289484207, 0.00728169968, -0.0109894415, -0.0194943137, -0.00298148347, 0.0071479152, 0.0216348674, -0.00800795853, -0.00956877787, 0.0308596268, -0.00501691923, 0.0218259878, 0.0560111143, 0.0202587973, -0.0161815546, 0.0187680554, -0.0249221437, -0.0367206633, -0.0194943137, -0.00549472077, 0.00549790636, 0.0037141128, -0.0053354539, -0.000485367025, 0.00442125974, -0.0118303727, 0.0244252291, 0.01586302, -0.0152132101, -0.0188572463, 0.0314712152, 0.0178124513, -0.0174684338, -0.0199275222, 0.00530360034, 0.00461875089, -0.00239697238, 0.0213927813, -0.00447859569, 0.0254190564, 0.000707146712, 0.0441361479, -0.0114608733, 0.0159394685, -0.00813537277, -0.0308596268, -0.0045837122, -0.0128687955, 0.0126267094, -0.0229344871, -0.0380712487, 0.00269320956, 0.0120724598, 0.00197969214, 0.00569858309, 0.00251960824, -0.0287955236, -0.00301174424, 0.0105817178, 0.000199382717, 0.0057941433, -0.0087597, -0.00640891492, 0.0211634357, -0.0173410214, 0.00847301912, 0.0169587787, -0.0145379165, -0.0229217466, -0.0207302291, -0.0107409852, 0.0125375194, -0.0216093846, -0.0116838478, -0.00979812257, -0.0115245804, 0.0122317271, -0.00404857425, 0.00228707818, 0.0091674244, -0.00533226831, -0.00145251758, -0.0181946941, 0.0198510736, -0.000609197305, -0.019354159, 0.00222337106, 0.0192394871, 0.00984908827, 0.004443557, 0.0166912097, 0.0275468677, 0.0038256, -0.00258809328, -0.0115755452, -0.00615090225, 0.00262950268, -0.0073454068, 0.0123527702, 0.000510849757, 0.0124164764, 0.0103396317, 0.0143595375, -0.0148182269, -0.0116265109, 0.0220553316, -0.00144216523, 0.01401552, -0.0331785604, -0.00557754, -0.0155954519, 0.0138753653, 0.00099780946, 0.00743459631, -0.00677204458, -0.0160668828, 0.0032936472, 0.0154425548, -9.60083053e-05, -0.0115309507, 0.010556235, -0.0016818624, 0.0265785232, 0.0043543675, 0.0136842439, 0.00258172257, 0.00404857425, 0.0349623524, 0.0166529864, 0.00271709962, 0.0041536903, 0.0344272144, 0.0185387116, -0.00129404664, 0.00738363108, -0.0261962805, 0.00652040215, 0.0185259692, 0.00935217459, -0.00430977251, -0.0116201406, 0.0109830713, 0.0147800036, -0.0167676583, 0.00951144192, -0.0266549718, 0.012703158, 0.00553294504, -0.024960367, 0.00233645085, 0.0338665918, 0.0187807977, -4.31763619e-05, -0.00193350471, -0.00998924393, -0.0211379528, 0.00929483771, 0.00208003051, -0.00854309648, 0.00600119075, -0.0232020561, -0.00716065662, -0.00755563937, -0.00218673958, 0.00710969092, -0.0116073992, 0.00536412187, 0.00558709586, -0.00149153802, -0.0125884851, -0.00810989, 0.0103969676, -0.00109416619, 0.00736451894, 0.00604260061, 0.0216348674, 0.0177360047, -0.0141939, 0.0188954696, -0.0273939706, -0.00446266914, 9.26736466e-05, 0.0235333331, 0.0187807977, -0.00188890984, 0.00845390651, -0.0217240565, 0.0235460736, -0.00285725482, -0.0198765565, 0.0179143827, -0.00170415989, 0.00515070371, -0.0116519937, 0.00367907411, -0.0237754192, 0.0147162965, -0.00363447913, 0.00595978135, 0.017774228, -0.00483853975, -0.00506469933, 0.00220266636, 0.0119832698, -0.00689945836, 0.0094795879, 0.00322675495, -0.0188062806, 0.0119259339, 0.0147545207, 0.00931395, 0.00889985543, 0.0177614857, -0.0140919685, -0.0106836492, -0.0128687955, 0.00358351367, -0.00605215644, -0.0136205377, -0.0103842262, -0.00128767593, 0.00173282798, 0.00581007032, -0.00498825125, 0.00925661437, -0.00726895826, -0.00235078507, -0.00337646622, 0.00555842789, -0.0220043659, -0.0281329714, -0.0206537805, -0.0430149063, -0.0143340547, 0.00093649159, 0.0130344341, -0.00239697238, -0.0177869685, 0.0346820429, 0.00688034622, 0.00861954503, 0.0065427, -0.0278016962, -0.0100083556, 0.0246800575, -0.000969937711, 0.0257885568, 0.00200517499, -0.0210360214, -0.00634520827, 0.00758749293, 0.0192904528, -0.0179653484, 0.01908659, -0.00166752841, -0.0110595198, -0.00888074283, -0.00557754, 0.0128050894, -0.00107027614, 0.00230141217, 0.0128305713, 0.037485145, 0.0222082287, -0.0136205377, 0.00345928525, 0.00293051777, -0.0136969853, 0.0205263663, 0.00122158, -0.0153788477, -7.35118e-05, 0.00868325215, 0.00475253537, 0.0132765202, 0.00523670809, -0.0189846586, 0.00325542316, -0.0134421578, 0.0050933673, -0.00945410505, 0.0155444862, -0.00137288391, 0.00493091485, 0.00617001439, -0.00705872569, 0.00712880306, 0.000604817469, -0.00498506567, -0.00642484194, 0.00459326804, 0.00319490163, -0.0239028335, 8.08281402e-05, -0.0237244535, -0.00766394148, -0.010021097, -0.0101676229, 0.0160159171, 0.000766075565, 0.0199147798, -0.00879792403, -0.00721799303, 0.00905912276, 0.0165765379, 0.0064471392, 0.00265817088, 0.00601711776, 0.0257503334, -0.0247947294, 0.00889348425, 0.0164746065, -0.00187776121, 0.0280055571, -0.0037841904, 0.00403901795, 0.00599163491, -0.00761934649, 0.00145968457, 0.0147672622, 0.00286999624, 0.0124547007, -0.0268588327, 0.0156719, -0.0144232446, -0.0188445039, 0.0122954333, -0.0201950911, 0.00369818602, -0.0136332791, -0.0145761408, 0.00204180647, 0.00469838455, -0.000599641295, 0.0117348125, 0.0246673152, 0.00571450964, 0.0462257341, 0.0124483304, -0.0142958304, -0.00338602229, 0.000555046427, -0.00283814291, -0.0126904165, -0.000951622, -0.00413457863, -0.0227178838, 0.0109257353, -0.00927572604, 0.0201186426, -0.00384789729, -0.0134166749, 0.0041536903, 0.00306589506, 0.0169332959, 0.0184877459, -0.0155954519, -0.0267314203, 0.00387656549, -0.00439896202, -0.00728169968, -0.0267823841, -0.000447939208, -0.0108301751, -0.0329746976, 0.00431614323, -0.0134166749, 0.00479394477, 0.0152259516, 0.0105689764, 0.00850487221, -1.92613861e-05, 0.0130981402, -0.00173601334, 0.00977264, 0.0137606924, -0.0169205554, 0.0193159357, -0.0190356243, -0.00536730699, -0.00709695, -0.0315731429, -0.0046346779, 0.00331594469, -0.00675930316, -0.0284132827, 0.0203989521, -0.0174429528, -0.00552338921, 0.00702050142, -0.0123272873, 0.00179175683, 0.014703555, 0.00511566503, 0.030834144, 0.00447859569, -0.0229981951, 0.00624646246, -0.0294580758, -0.00182520295, 0.0128751667, 0.0112697519, -0.023737194, 0.00142225681, -0.00485128118, -0.00243519666, 0.0125502609, 0.0130981402, -0.00820545, 0.0118940799, -0.00156241201, -0.00503284577, 0.0209213495, -0.00457415637, 0.0129006496, 0.0148054855, -0.00463786302, 0.00909097586, -0.00119530095, 0.00566672953, 0.0157356076, -0.0151240202, -0.0083902, -0.012403735, -0.00582599686, 0.0125120375, 0.0146016236, 0.0107473554, 0.0375870764, 0.011002183, 0.0184112974, 0.0126203392, 0.00172486459, 0.0123718819, 0.00602985919, 0.028897455, 0.0071479152, -0.00294485199, -0.0393199064, -0.0135186063, -0.0160414, 0.00562213501, 0.00649173418, -0.00974715687, 0.00188253925, 0.0046251216, -0.0189591758, -0.0174429528, -0.0107919509, 0.00909734704, 0.00115946576, -0.0102313301, 0.00707146712, -0.00290025701, 0.0176340733, 0.00860043243, -0.00316782598, 0.0183730721, -0.00823730323, -0.0248074699, 0.0142193818, 0.00872784667, -0.00742185488, 0.00643121265, 0.0134421578, -0.00366633269, -0.021532936, -0.0185004864, -0.0192777105, 0.00584829412, -6.95301205e-05, -0.00858132076, 0.0143467961, -0.0155827105, -0.0123591404, -0.00882977806, 0.000119350916, -0.00405494496, 0.0105180107, 0.0186024178, 0.00538641913, -0.00274895318, -0.00273621175, -0.0131745888, -0.0145251751, 0.00635157898, -0.0131236231, 0.0199402627, 0.00642802706, -0.0138498824, 0.00796336401, 0.0170607101, 0.0122635802, -0.0157865714, -0.0214182623, -0.0107792094, 0.00618275581, 0.00230459752, -0.00661277724, 0.0292287301, 0.0203479864, 0.00183157367, 0.00693131192, -0.0189464353, -0.0139008481, 0.00835197605, -0.00312163867, 0.0304264203, 0.00476209167, -0.013747951, 0.00314871408, 0.0275723506, -0.0131618474, -0.0185896754, -0.012346399, -0.0354210436, -0.0176977795, -0.0150475726, -0.00778498454, -0.0119131925, 0.00171212316, 0.00651084632, -0.00289707165, 0.00881703664, 0.00351662142, 0.00867051072, 0.022692401, 0.0191630386, 0.0278016962, -0.00305474643, -0.00961337239, 0.0108046923, 0.0192267448, 0.0092693558, 0.0104797864, -0.0129452441, 0.0116265109, -0.0156719, 0.00434162607, 0.00330957398, -0.00137686555, 0.00606489787, 0.0138116581, 0.00447222497, -0.0091292, 0.00356121617, 0.00991916563, -0.0116965882, -0.00525582, 0.00616364367, -0.0086386567, 0.0187170897, -0.0143722789, 0.00107744313, 0.00154329988, 0.000359346799, -0.00851124339, -0.0123336576, 0.00894445, -0.0277507305, -0.0270881783, -0.0231765732, 0.00454230281, 0.003153492, 0.00197969214, 0.0176340733, -0.00746007916, 0.0230109356, 0.0160414, 0.0172645729, 0.0064566955, 0.0150093483, -0.0229854528, 0.00823730323, -0.00549472077, 0.0228070728, -0.0125948563, -0.0198128484, -0.0178124513, 0.0083073806, -0.00479713036, 0.0286935922, -0.00576866092, 0.00288273767, -0.0031614555, -0.00410272507, -0.00851124339, 0.0219788831, 0.0322356969, -0.00817996729, -0.000629902061, -0.00815448444, -0.0151749859, 0.00410909578, 0.0230873842, -0.00266454159, 0.00583236758, -0.00412502233, 0.00497869495, -0.00992553681, 0.00598844932, -0.000452717242, 0.0120660886, -0.0123846233, 0.00509973802, -0.013747951, -0.00282062334, -0.0121425372, 0.0136205377, -0.0131618474, -0.00796336401, 0.00863228645, 0.0136842439, 0.0089189671, 0.023737194, -0.00747282058, -0.0190611072, 0.00596615206, 0.00493091485, -0.00795699283, 0.0104925279, 0.000212820902, 0.00665737223, 0.0065427, 0.018462263, 0.000180171104, -0.0165637974, 0.000771649939, -0.0123527702, -0.00280151144, -0.0327963158, 0.0106135709, 0.00202110177, 0.00660640653, 0.0109257353, 0.00411228091, -0.00476209167, 0.020309763, 0.00478757406, 0.00034142923, -0.00546923839, 0.0111805629, -0.011301606, -0.0159776937, 0.00557116931, 0.0177360047, -0.0214437451, -0.0126075977, 0.00577184604, 0.0118176322, -0.00655544084, 0.00435755262, -0.0200167112, 0.0123973647, -0.00444992771, 0.00487676403, -0.00148994534, -0.00141827506, -0.00595659623, 0.0217495393, 0.00823730323, -0.00605534157, 7.90363847e-05, 0.00744096702, -0.0187680554, -0.00193031935, -0.0136332791, 0.0162452627, 0.0056539881, -0.0106135709, -0.0140410028, 0.00737726036, 0.00657455297, -0.00376189314, -0.01124427, 0.00846664794, 0.00972167403, -0.00973441545, 0.0209850557, -0.0129452441, 0.0286935922, 0.0020322504, -0.00482261321, -0.00332868611, -0.000279315, 0.0192522276, 0.0121871317, -0.00786143262, 0.00227433676, -0.00492772926, 0.011511839, 0.00107664673, 0.0111295972, 0.00826278608, 0.00418554386, 0.0289484207, 0.00236830441, -0.00467608729, -0.00566672953, -0.012645822, 0.00672107888, -0.00134182675, -0.00332868611, 0.00735177752, -0.0165637974, -0.0235970393, -0.00968982093, -0.0189591758, 0.0214564875, -0.0196089875, 0.000628707581, 0.0153661063, 0.0107027609, 0.0130153215, -0.0319044217, 0.00642165635, -0.00946684647, -0.001401552, 0.00838382915, 0.0238646083, 0.012346399, 0.0316241086, -0.00553294504, -0.00330001791, 0.00413139304, 0.00726258755, -0.0145251751, -0.0165637974, 0.00404220354, 0.00289229373, 0.0239665397, -0.0287445579, -0.00944136363, -0.00124626642, -0.0072052516, 0.0168695897, -0.0108747697, -0.00468245801, -0.00557116931, -0.00184590777, 0.0197491422, 0.0197618827, 0.01401552, 0.00589288911, 0.011422649, -0.0180927627, 0.00217877631, -0.0104224505, -0.00622097962, -0.0083264932, 0.0110531487, -0.000349392591, 0.00625920389, 0.0130344341, -0.0227433667, 0.00411546649, -0.00191120734, 0.0119450456, -0.0202460568, 0.0190993324, -0.00810989, 0.00313756522, 0.00701413071, -0.0126585634, -0.00202587969, 0.00446266914, 0.0140664857, 0.0266040061, 0.00314552872, 0.00814174302, 0.00221062987, -0.000112283429, -0.00653632917, 0.00131236238, 0.00526219094, 0.00901452731, -0.0154552963, 0.00108859187, 0.00915468298, -0.0054660528, -0.0101612518, 0.0110467784, 0.00843479484, -0.0107155023, 0.0282094199, 0.0375615954, -0.000903841807, 0.0175703652, 0.0146271065, -0.0135950549, -0.00517937168, -0.005845109, -0.0221317802, -0.00908460561, -0.0044945227, 0.0245399009, -0.0166912097, -0.0177997109, 0.0150348311, 0.0194306076, 0.00280628935, -0.00640891492, 0.00784232095, 0.00925024319, -0.00730081182, -0.0229472294, -1.46700095e-05, 0.0108492868, 0.0199784879, -0.0189464353, 0.0151877273, 0.00213895948, -0.0165000893, 0.0252661612, -0.00696316548, 0.0167676583, -0.000261596491, -0.00269639492, 0.00600756146, -0.00342424633, 0.0122635802, -0.00387338013, 0.00872784667, 0.00363129377, 0.00715428591, -0.0118749682, -0.0121871317, 0.00437985, 0.0131873302, -0.00391478976, 0.010976701, 0.00886800233, -0.0397021472, -0.00690582907, 0.0133911921, 0.011034037, -0.0141556757, -0.00125900784, 0.00980449375, -0.0189846586, 0.00996376108, 0.0255082473, 0.0156719, -0.0060266736, -0.00803344138, 0.0291777644, -8.95380726e-05, -0.0160159171, -0.000942065904, -0.00674019102, 0.0131491059, -0.00253394246, -0.00913557131, -0.00212621805, 0.00795062259, -0.0069122, -0.0016261189, -0.0283113513, 0.00203543575, 0.0134039335, -0.0227943324, 0.00438303547, 0.00895082112, -0.00578140188, -0.0046729017, 0.0168441068, 0.0149074169, -0.0123081747, 0.00833923463, -0.0171881244, -0.0100911744, -0.00187776121, 0.0131491059, 0.00189368788, 0.036261972, -0.004443557, -0.0117157008, -0.0228325557, 0.00746645, 0.00167549169, 0.0123209162, -0.0109257353, -0.0135058649, -0.00162213715, 0.00158948742, 0.000401552621, 0.0194560904, 0.0154298134, 0.00927572604, 0.00218992494, -0.000817837485, 0.00413457863, 0.0150985373, 0.00911008846, 0.0110467784, 0.00508062588, -0.00879792403, -0.00195261685, -0.00211188407, -0.00100179121, -0.0247819871, 0.00789328571, -0.0152132101, 0.00821819156, -0.00312323123, 0.00874695834, 0.00352299213, 0.0166529864, 0.00951781217, -0.00211984734, -0.00595022552, 0.00337009551, -0.00914831273, -0.00441170344, 0.0176340733, 0.00606489787, -0.000891100382, -0.0358287655, -0.00199243356, -0.0114672435, -0.00201950897, 0.000328488764, -0.0266549718, -0.00888074283, -0.00598844932, 0.002691617, 0.0153661063, -0.00335735409, 0.0209086072, 0.00441170344, -0.00380648789, 0.000462273252, 0.0171626415, 0.00558709586, -0.0119386753, -0.00774676027, -0.00118415221, -0.00441488903, -0.0202460568, 0.0145888822, -0.0119323041, 0.000508460798, 0.00581644103, -0.0209595729, 0.0328727663, 0.00374915171, -0.0105498647, 0.0109002525, -0.00628150115, 0.00769579457, -0.00405813, -0.0179398656, -0.0242468491, 0.0294325929, 0.00904638134, 0.0305793174, -0.0108365454, -0.00543419924, 0.0186406411, 0.000991438748, 0.00598207908, 0.00325701572, 0.00190961466, 0.00725621684, 0.0068676048, -0.0281329714, 0.0265785232, 0.00556161301, -0.00963248499, 0.00245430879, -0.00389567763, 0.001297232, -0.0206410382, -0.00114831701, -0.0135313477, 0.0104415622, -0.00601074705, 0.00493728556, -0.0107091311, 0.0156209348, -0.0203989521, -9.20763923e-05, -0.0102504417, -0.00606808299, 0.0126330806, -0.0127987182, 0.0159139857, 0.00443081558, 0.00962611381, -0.0050933673, -0.0125438906, 0.0039339019, -0.0142193818, -0.00193031935, -0.00782957952, -0.0200421941, -0.0200931598, 0.0025307571, 0.0184240378, 0.00180609094, 0.00695042405, -0.0161688142, -0.00500099221, 0.00462193647, -0.00222018571, 0.0013450121, 0.0231001247, 0.00770216528, -0.00717976876, 0.00216444233, 0.0028938863, 0.00754926866, -0.000547481235, 0.00737088965, 0.00473342324, 0.00853035506, 0.012257209, -0.0115245804, 0.0183221065, 0.0188062806, 0.00366633269, 0.0103651145, -0.0129197612, -0.0157993138, 0.00372048351, -0.0179653484, 0.000759306713, 0.00221700058, -0.0138626238, 0.0115182092, -0.00973441545, 0.027139144, -0.0193159357, -0.00826278608, 0.00462193647, -0.00165797235, 0.00713517377, -0.0010304593, -0.0119323041, 0.00569539797, -0.00101771788, -0.00203065784, -0.00079673453, 0.0195707623, 0.0166784693, -0.012403735, 0.0149329, 0.0124992961, 0.0080207, -0.0219916254, -0.00239697238, 0.00616045808, 0.00572725106, -0.015060314, 0.00408998365, -0.00890622567, -0.0225395039, -0.00957514811, 0.00224885391, -0.00188731716, 0.00330957398, 0.000241289919, 0.0193923842, 0.00483216904, 0.0100720627, 0.0173792448, 0.000545888557, 0.011479985, 0.00417917315, -0.0266549718, 0.0145379165, -0.0140664857, -0.00569539797, -0.0176595561, -0.0128560541, -0.00324108894, -0.0105371233, 0.0043448112, 0.0149201583, -0.0103460019, -0.0110595198, 0.00262472476, -0.00846027769, 0.0135950549, 0.00889985543, 0.0035739576, 0.0104097091, -0.0019621728, 0.00315667735, -0.0193286762, -0.00928209722, 0.0105498647, 0.0296364538, 0.00156798633, 0.0150093483, -0.0128178298, 0.0192012619, -0.0063547641, -0.0116583649, -0.00383515609, 0.0126203392, -0.00423969468, 0.0217367969, 0.0014365908, -0.0330256633, 0.0128624253, -0.0226032119, 0.0114608733, -0.0134421578, -0.0274704192, 0.00466016028, 0.00119848619, 0.0129579855, -0.0201950911, -0.0193669014, 0.0155190034, -0.000183256911, -0.0245144181, -0.0153406244, -0.00183953706, -0.00258012977, 0.0155317448, 0.00846027769, 0.0157865714, 0.00663188938, -0.0232657641, 0.0074282256, 0.000326697, 0.00464741886, 0.0159012452, 0.000203563483, -0.0152514344, 0.00730081182, 0.00503284577, -0.0094795879, 0.00874695834, -0.0201568659, 0.0214182623, -0.00266613415, 0.0117348125, 0.0243997462, -0.0105753466, 0.0199147798, -0.0144869518, -0.0150730545, -0.00803981163, -0.0135313477, -0.0227688495, -0.0102695543, -0.00441170344, -0.0242978148, -0.00636113482, -0.0104415622, 0.00750467414, 1.58271851e-05, -0.00352299213, 0.00622735033, -0.0129834684, 0.0142958304, 0.00203543575, -0.00609038072, -0.00452956138, -0.00579732889, 0.00968982093, 0.00591518637, 0.0075683808, 0.00190961466, -0.0192012619, 0.00259605655, -0.0412311107, -0.00033247043, -0.0356249027, -0.0158885028, -0.0198510736, 0.015417072, -0.00519848382, -0.00359625509, -0.000313159282, 0.00150348304, 0.00750467414, 0.0188572463, 0.0163089689, 0.0118303727, 0.00693768263, -0.0155572277, 0.0040740571, -0.0100019844, -0.00147640763, 0.00906549301, -0.015060314, 0.036109075, 0.0294835586, 0.000649810478, 0.000492932217, -0.000387616717, 0.011034037, 0.0029225545, -0.000567787851, 0.00696953572, 0.0351916961, -0.012136166, -0.00751104485, 0.0182201769, -0.0284642465, -0.00638980325, -0.00689308764, 0.0146143651, -0.00821819156, 0.000195102417, 0.0164746065, 0.0204499178, -0.00129484292, -0.0106836492, 0.003742781, -0.00800795853, -0.0104415622, 0.00422376813, -0.00184112974, 0.0104606748, -0.00214373763, -0.00526537606, 0.00492772926, -0.00627831602, -0.0114290193, -0.010110287, -0.00889348425, 0.00485765189, 0.000290065538, 0.0137352096, 0.0215456765, -0.00484172534, 0.00474297954, -0.000578936539, 0.00102408859, 0.0138244, 0.00526219094, -0.0156081934, 0.0194688309, 0.0177997109, -0.0122826919, -0.0150093483, -0.00816722587, -0.0229981951, -0.0146908136, -0.0186533835, -0.00495958282, -0.00795062259, 0.00567947095, 0.0305538345, 0.0113398302, 0.0115628038, -0.0026629488, -0.00157833868, -0.00287636695, 0.00621779449, 0.0234823674, -0.0468628034, -0.00318056741, 0.00369500089, -0.00335098337, 0.00253394246, -0.0192904528, 0.0250750389, -0.0061763851, 0.00362492329, 0.017685039, -0.000397570926, -0.00695679476, 0.00322038424, -0.000270356191, -0.0290503502, -0.00395938428, 0.021800505, 0.00401672069, -0.00199880428, -0.00152259518, -0.01908659, -0.0062241652, -0.0107728383, -0.00452956138, -0.026451109, -0.0109830713, -0.0121234246, 0.0188317634, 0.00292573986, -0.0134931235, -0.0259669367, -0.00203543575, -0.0120406058, -0.0133529687, 0.0216348674, -0.00624646246, 0.0110850027, -0.00942862313, 0.00454230281, -0.0282094199, -0.0143085718, -0.0146780722, 0.000941269624, -0.0108365454, -0.00402627653, -0.015327883, 0.0166784693, 0.00725621684, 0.0116774766, 0.022692401, -0.0183475893, 0.00251323753, -0.0188827273, -0.00961974356, -0.0349623524, 0.0114736147, 0.0141174514, 0.00601393217, -0.0192904528, -0.0116392523, -0.00829464, -0.0108492868, -0.0144232446, -0.00621779449, -0.00418554386, -0.00775313098, -0.0385299399, -0.0005080626, -0.0123018045, -0.007485562, 0.0146653308, -0.0192140043, -0.0228962637, 0.000771649939, 0.0137989167, -0.00535456557, 0.0155699691, -0.0142321233, -0.00858132076, -0.0157228652, -0.000537527, -0.0272920411, -0.0186406411, 0.00284929154, -0.0235333331, 0.00466653099, -0.000435994152, -0.00202906504, -0.00471112598, -0.0053354539, -0.0158502795, -0.0232402813, 0.013302003, -0.00705235498, 0.0103905974, -0.0192522276, -0.0219916254, -0.0207429696, 0.0261962805, 0.00180927629, 0.00746645, -0.0259924196, 0.00417598803, -0.0125948563, 0.008887114, 0.00180290558, 0.0146908136, 0.00303881965, -0.00585466484, -0.00801433, 0.0006657372, 0.00483853975, 0.00141827506, 0.000885526068, -0.000651005, -0.00648536347, 0.00641528564, 0.000173601336, -0.0118813384, 0.00925661437, 0.022424832, -0.0149201583, 0.000792752835, -0.00604260061, 0.00828826893, 0.00836471748, 0.00774038956, 0.0134039335, -0.00769579457, -0.00988731254, 0.0180800203, -0.00726258755, -0.0125757437, 0.00121839461, -0.00499143638, -0.0320063531, -0.0152641758, -0.00277284323, -0.0179526079, -0.00348476786, -0.032923732, 0.0111805629, -0.000244077106, -0.00298148347, 0.000582121895, 0.00377781969, 0.00962611381, 0.0142958304, -0.0101548815, 0.017685039, -0.000254827639, -0.0120852012, 0.0297129024, -0.00916105323, 0.0114863561, -0.0166784693, 0.00731992396, 0.000360143138, 0.0052335225, 0.00229822681, 0.0132637788, -0.0119514167, -0.00547879422, -0.00436073821, -0.0114545021, -0.00708420854, -0.000757315895, 0.0152896587, -0.0241704024, -0.0193286762, -0.00179494219, -0.0272155926, -0.0172136072, 0.00458052661, 0.0129388738, 0.00867688097, 0.0252534188, -0.00333824218, -0.0293306615, -0.00119689351, 0.0181692112, -0.00822456181, 0.00129245396, -0.0168568492, -0.0179780908, 0.00378737575, 0.025559213, -0.0061763851, 0.00582599686, -0.00137129123, -0.0135058649, 0.00426199241, 0.00266135624, -0.0246163495, -0.00803344138, 4.31514782e-05, -0.00247023534, -0.00107346138, -0.0130344341, 0.0412311107, 0.0166529864, 0.012435589, -0.00207684515, 0.012913391, -0.0101166572, -0.0019064293, 0.0299167652, 0.0166657269, 0.00318693812, -0.00218355423, -0.0349113867, 0.0243105572, -0.0226669181, -0.0182838831, -0.0129516153, -0.0107983211, -0.0148691926, 0.00313119474, -0.00343061704, 0.0227433667, 0.00101055088, -0.00933943316, -0.0233167298, 0.0208576415, -0.00203862111, -0.00132908544, -0.0162070375, 0.0174302105, -0.00226637325, 0.0109830713, -0.0137989167, 0.0107091311, -0.00251323753, -0.0206282977, 0.0180800203, -0.0161688142, 0.0342743173, -0.000904638146, -0.00295281527, -0.0208831243, 0.00710332068, -0.0119195627, 0.0105434936, 0.00789965689, -0.00314234337, -0.00133864139, -0.00619549677, 0.0143467961, 0.0155572277, -0.0214819703, -0.00504877279, 0.000867210329, 0.0158375371, -0.0003941865, -0.0247947294, -0.00589288911, 0.0246673152, 0.00952418335, -0.00462830719, -0.000151702086, 0.0284897294, 0.0112761231, -0.00349113857, 0.00304041221, 0.00298148347, 0.00893170852, 0.00426199241, 0.0115819164, -0.00538641913, -0.00521441037, 0.0130280629, -0.0157483481, 0.0120533472, -0.00166912109, -0.0019828775, -0.0178379342, -0.00612223428, -0.00274417526, -0.00828826893, 0.0197618827, -0.000825800817, -0.00634202268, -0.00963248499, -0.00637387624, -0.005144333, 0.0148182269, 0.0278271791, -0.0104288207, 0.00930120889, -0.00512203574, 0.000625920366, -0.000996216782, 0.00199561892, 0.0219024364, 0.00724347588, -0.00709057925, 0.000675691408, -0.0196344703, -0.00984908827, 0.0207939353, 0.0160159171, -0.000713119225, 0.000460680603, -0.00144853583, -0.0100720627, 0.0121552786, -0.00464423373, 0.00131714041, -0.0123655116, -0.0189082101, 0.0146016236, 0.00717339804, -0.00950507075, 0.0114863561, -0.0145379165, 0.0145124337, 0.0275978334, 0.0284387637, -0.00513796229, 0.0287700407, -0.00713517377, 0.0076257172, 0.00965159666, 0.0229854528, -0.00826915726, -0.0102759246, -0.00985545851, 0.005144333, 0.011868597, -0.000554250146, -0.00443400117, 0.000860043277, 0.00615408737, 0.0271901097, 0.00331594469, 0.0130726583, -0.017149901, -0.0161688142, -0.0136332791, 0.00408998365, 0.00665100152, 0.0110085541, -0.0193414185, -0.0130726583, -0.00116105843, 0.011123226, -0.0129770972, 0.0196981765, -0.0382241458, -0.0100274673, 0.0305283517, -0.00256261043, -0.0135186063, -0.0133529687, 0.00206410396, -0.00805255305]
|
17 Jan, 2021
|
Fabric.js Polygon cornerStyle Property
17 Jan, 2021
In this article, we are going to see how to set the style of controlling corners of the canvas Polygon using FabricJS. The canvas Polygon means Polygon is movable and can be stretched according to requirement. Further, the Polygon can be customized when it comes to initial stroke color, height, width, fill color, or stroke width.
To make it possible, we are going to use a JavaScript library called FabricJS. After importing the library, we will create a canvas block in the body tag which will contain the Polygon. After this, we will initialize instances of Canvas and Polygon provided by FabricJS and set the style of controlling corners of canvas Polygon using cornerStyle property and render the Polygon on the Canvas as given in the below example.
Syntax:
fabric.Polygon([
{ x: pixel, y: pixel },
{ x: pixel, y: pixel },
{ x: pixel, y: pixel},
{ x: pixel, y: pixel},
{ x: pixel, y: pixel }],
{ cornerStyle : string}
);
Parameters: This function accepts three parameters as mentioned above and described below:
cornerStyle: It specifies the style of the controlling corners.
Below examples illustrate the Fabric.JS Polygon cornerStyle property in JavaScript:
Example:
HTML
<!DOCTYPE html>
<html>
<head>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;width: 600px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Polygon cornerStyle Property
</b>
</div>
<canvas id="canvas"
width="600"
height="200"
style="border:1px solid #000000;">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a polygon instance
var polygon = new fabric.Polygon([
{ x: 295, y: 10 },
{ x: 235, y: 198 },
{ x: 385, y: 78},
{ x: 205, y: 78},
{ x: 355, y: 198 }], {
stroke: 'green',
strokeWidth: 3,
cornerColor: 'blue',
cornerStyle: 'circle'
});
// Render the polygon in canvas
canvas.add(polygon);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js Polygon cornerStyle Property
|
https://www.geeksforgeeks.org/fabric-js-polygon-cornerstyle-property?ref=asr9
|
CSS
|
Fabric.js Polygon cornerStyle Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, Fabric.js Polygon cornerStyle Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.00128964381, -0.0178472642, -0.015725024, 0.0304784216, 0.0457176343, 0.0288419966, -0.0199567191, 0.016568806, -0.00629640231, -0.031987, 0.0242139809, -0.00594482617, 0.0068908846, -0.0542577282, 0.00242906879, -0.00275827153, -0.0266686194, 0.00836750306, -0.0144977057, -0.00822048075, -0.0133982319, -0.0177705567, -0.033930257, 0.00978019834, 0.0276146773, 0.0392230712, 0.0418822616, 0.0154821174, -0.0131425411, 0.0240733512, 0.00873825513, 0.00732556032, 0.0111928936, -0.0314756185, -0.00251536467, -0.0243546106, 0.00767074386, 0.0586044826, -0.00287493085, -0.0260293912, -0.00987608265, 0.00164920988, 0.0135132931, 0.033930257, 0.00972906, 0.00778580504, 0.0015421391, 0.00362442643, 0.00507227937, -0.0549225248, -0.00140070973, -0.0169779137, 0.0284073204, 0.0043499507, 0.00745340576, 0.000947656459, -0.0101445587, 0.0419334, -0.00833554193, -0.00817573443, 0.000462242198, -0.077372238, -0.046229016, -0.000107769956, -0.0436976701, 0.0221428797, 0.00662240852, 0.0420868136, -0.0342882238, -0.00864237081, -0.00941583794, 0.0156483166, 0.0275891088, -0.0225392021, 0.0136922775, -0.0157378092, 0.0482745469, 0.0036020535, -0.0325495228, 0.0456664935, -0.0369218476, -0.00815016497, -0.00875104, 0.0318335854, -0.0194453355, -0.0163514689, 0.0363593251, -0.0445414521, 0.0191896446, 0.0169267748, -0.00412302464, -0.00483896071, 0.0232807063, -0.0589624494, -0.0270521566, -0.0136539238, 0.00392166758, -0.0201612711, -0.00812459644, -0.00452893507, 0.0077730203, 0.0421635211, -0.00119775464, -0.00273749675, 0.0399645753, -0.0297880545, 0.0293278098, -0.0083547188, 0.00434355857, -0.0146127669, 0.0248148553, -0.0227054022, -0.00260006241, 0.0435442552, -0.0362314805, 0.0247637182, 0.00569872325, -0.0298391934, 0.026016606, -0.00642424775, -0.00115780288, -0.00960121397, 0.0130338725, 0.0204808861, -0.0271032937, 0.0174892955, -0.0170034822, 0.0150474422, 0.00194325508, 0.00583935343, -0.0256586373, -0.0385582708, 0.0118576912, -0.0307341125, 0.0240733512, 0.0229355246, -0.0138329081, 0.0145488437, -0.00202955096, 0.00464719208, 0.00221173116, -0.0252878852, 0.0267197564, 0.0197521653, 0.00820769556, -0.0156994555, 0.0299926084, -0.0139991073, -0.0139096156, 0.0329330601, -0.0476097502, 0.0320125706, 0.050294511, -0.0273589864, 0.0419589691, -0.0332910269, -0.0209283456, 0.0101253819, 0.0517263822, -0.0440045, 0.0414987244, 0.0278959386, 0.00830358, 0.0334955826, -0.0146383364, -0.000938867044, 0.00793282781, 0.00504031777, -0.0542065874, 0.0182691552, 0.00718493, -0.00608865265, 0.0328307822, 0.00146543165, -0.0451039746, -0.0376633517, 8.05527961e-05, -0.0260933135, 0.0155204711, -0.0139607536, -0.036794, 0.019790519, 0.0311176497, 0.0524678864, 0.000506988203, 0.0217337739, 0.0405526645, 4.8784882e-06, -0.000609664305, -0.0171568971, -0.00850813277, 0.032881923, 0.044490315, -0.00781776663, -0.000862958666, 0.000483017153, 0.0220533889, 0.0189339519, -0.0318080187, 0.000475426292, 0.0295835, -0.0335211493, -0.0152903488, -0.0450016968, 0.0451806821, -0.0124713508, -0.00972906, -0.0522889048, 0.0439789295, -0.0105344877, 0.00519692898, 0.0107837869, 0.0286118742, 0.00298359967, -0.00882774778, -0.0036308188, -0.0171185434, -0.00311144534, 0.000141429337, -0.0242651198, 0.0355922505, 0.0303761456, -0.0493484512, -0.00827801134, -0.0474819019, -0.0183458626, 0.0157889482, 0.0114166234, -0.0262083746, -0.0395810381, 0.0107326489, -0.0153670562, -0.00516496738, -0.00276945811, 0.0369985551, 0.0248404257, -0.032447245, -0.00373629131, 0.0211456828, 0.00958203711, -0.0092304619, -0.0240094271, -0.0322682634, -0.014088599, 0.0354132652, 0.0133854477, -0.0255563613, 0.000667594431, 0.00708904583, 0.00784333516, -0.0376889221, -0.0223602187, 0.00374268368, 0.0171952508, -0.0212990977, -0.0183202922, -0.0223602187, -0.0521099195, 0.0556896, 0.0176299252, 0.0516496748, 0.0391719304, -0.0158145167, 0.0263873581, -0.00962678343, -0.00859762542, -0.00302834576, -0.0390952229, -0.00829718821, -0.029864762, 0.0249810554, -0.044055637, 0.042316936, -0.0239838585, -0.0137945544, 0.0357456654, -0.0142164454, -0.00839946419, 0.0250066239, -0.010393858, -0.0197649505, 0.0083483262, 0.021899974, 0.0122859748, -0.00250258017, -0.00971627515, -0.00100199087, 0.0162364077, -0.0345183462, -0.03715197, -0.0143954288, -0.0209794845, 0.0189467371, -0.0190617982, 0.00619092956, -0.00519053638, 0.0210050531, -0.0216698516, -0.0114485854, 0.00166359253, -0.0353109911, -0.0328563526, -0.0336745642, -0.000435075, 0.00210306235, 0.0199822877, 0.0533883758, 0.00752372108, 0.000854968326, 0.024482457, -0.00778580504, -0.00978019834, -0.0371008292, -0.0192279983, 0.00351256132, -0.00507227937, 0.0688832775, -0.000201157265, -0.0131553253, 0.00193206861, -0.0543088652, -0.00485174544, 0.0116531383, 0.0403992496, 0.0380980261, -0.0139607536, -0.00599916093, -0.0230633691, -0.018575985, 0.0171568971, -0.0263106506, -0.00181860547, -0.026016606, 0.00663519325, 0.00599276833, 0.0119599681, -0.00659683952, -0.00290049985, -0.0291488264, 0.0108924564, 0.0124266045, 0.0312454961, -0.0129188113, -0.00586172659, 0.0422913656, -0.0559452921, -0.00179463439, -0.00542705134, 0.0333165973, 0.0376889221, 0.000814217492, 0.0237920899, 0.00124729495, -0.00662880111, -0.00139991078, -0.0105664497, 0.0294045173, -0.0308875274, -0.0323194, 0.00397280604, 0.01646653, 0.0231017228, 0.0220406037, 0.00666715484, 0.0259654671, -0.0236770287, -0.0155588249, 0.00655209366, 0.00388970622, 0.00341028487, -0.049450729, -0.0491950363, -0.0191385057, -0.0304528531, -0.0180901699, -0.00800953526, 0.0300948843, -0.000904508517, -0.0403736793, -0.000138333067, -0.0289698429, 0.0439277925, 0.00447460031, 0.012401036, 0.0385838412, 0.0483256839, -0.0117554143, 0.00582017656, 0.0386605486, -0.0239327196, -0.0261572357, 0.020634301, 0.0288675651, -0.0300948843, -0.00352534605, -0.0256075, -0.0134493709, -0.0162236225, 0.0068653156, -0.0403481126, -0.00591606088, 0.00522249797, -0.00873825513, -0.0149451653, 0.028074922, -0.027384555, -0.0263106506, -0.0127526112, -0.0126950806, -0.0210178383, 0.005264048, 0.0149707347, 0.00475586113, 0.00275667361, 0.0418055542, 0.0166327301, -0.000192068226, 0.0809007734, -0.0169267748, 0.0160702076, 0.0707754, -0.0230761543, -0.0303250067, -0.0102596199, -0.00772827445, -0.0323194, -0.0148045355, -0.0144849215, 0.00218296587, 0.0169267748, -0.113015622, 0.000235515807, -0.00170514244, -0.0250449777, -0.00175308459, -0.00692284619, 0.024802072, 0.0252751, 0.0498086959, 0.0195092577, -0.000648018031, -0.00310345506, 0.0351064354, -0.0126055889, -0.00602792623, 0.0267708953, -0.0498854034, -0.0175915714, 0.0251344703, -0.00139511656, -0.0118385144, 0.00349338446, -0.0657127053, -0.00681417715, -0.0149963042, 0.00165879831, 0.042956166, 0.00286054821, 0.0425981954, -0.00531518599, -0.0230505858, -0.0288419966, -0.0197777338, 0.0148684578, 0.00919210818, 0.00352214975, -0.00394723704, -0.0104833497, 0.00317057408, 0.00274069281, 0.00377144897, 0.00917932298, 0.0110330861, 0.00605988735, 0.00504351407, -0.018397, -0.00386413722, -0.00535353972, -0.00270873145, -0.0363848954, 0.0308875274, -0.00591286505, -0.00529281329, 0.0221428797, -0.0155843943, -0.0262850821, 0.0101445587, -0.0343137942, -0.00150698156, 0.00932634622, 0.0333421677, 0.0154309794, -0.0278192312, 0.00189211674, -0.00602153363, 0.0232934915, 0.0108988481, -0.0302227307, 0.0609568432, -0.0087126866, -0.000587690854, 0.0019272744, -0.0164026078, 0.0387883931, 0.0322171226, 8.30997233e-05, -0.0100998124, 0.0351831429, -0.0143698603, -0.00682056975, -0.0467403978, 0.0180262476, -0.0184225701, 0.01540541, -0.0184353534, -0.037407659, 0.00751732895, 0.00991443638, -0.0256842077, -0.00480060698, 0.0192663521, -0.0298903305, 0.00717853755, -0.00792004261, 0.00292287301, 0.0642297, -0.000847777, -0.0318591557, -0.0108029637, -0.0113335242, -0.0107582184, -0.0094350148, -0.00386413722, 0.0181924477, 0.0143826446, -0.0295835, -0.00239710743, -0.00848895684, 0.00893641636, -0.00210625841, -0.0581953749, 0.00424447842, -0.043211855, 0.00148620654, 0.0160446391, 0.0311687887, -0.00567315426, 0.0173486657, -0.00884053204, 0.00654250523, -0.052876994, 0.0188700296, -0.0174253732, -0.00745979836, 0.018627122, -0.00712100696, 0.0162236225, -0.0119152218, -0.0185632, -0.019100152, 0.0200717803, -0.00963317603, 0.015354272, 0.0218616202, -0.00412302464, -0.0358990803, -0.00117058749, 0.00438191229, -0.0032824392, 0.00643383618, 0.0110266944, -0.0307341125, -0.00671829283, 0.0312199276, 0.0147789661, -0.0178216938, 0.00804149639, -0.0277680922, 0.0159040093, 0.0379957519, -0.0140758147, -0.00986329839, 0.00966513716, 0.0104833497, -0.000327604677, 0.0104002496, -0.00728720659, -0.00829718821, -0.0496297106, -0.0348763131, -0.010208481, 0.0245080255, -0.0204297472, 0.00754929, -0.0392486379, 0.0195731819, 0.0198800117, -0.0224624947, 0.00448418874, -0.0225264169, -0.00560923154, 0.025172824, 0.00996557437, -0.00841224939, -0.00611741794, -0.0346973315, 0.0194069818, 0.0195731819, 0.0149579505, 0.0123754665, 0.00512341736, -0.0164793152, 0.00210945448, -0.0374588, -0.0329074897, -0.0225519873, 0.0168756358, 0.022692617, -0.0242779031, -0.0219383277, 0.0282539055, -0.0284073204, 0.0498086959, -0.00908983126, -0.00433397, -0.0290721189, -0.0229227394, -0.0178472642, 0.0159295779, -0.0350041613, -0.0215675738, -0.0117170606, -0.0130850105, 0.00788808148, -0.00954368338, 0.0200589951, -0.0178600475, 0.0470983647, -0.0168372821, -0.00181061518, -0.0248148553, 0.00872547086, -0.00220374065, 0.0269498788, -0.000288451934, 0.0195603967, -0.0376889221, 0.00582656916, 0.015725024, 0.00521930167, -0.0229483079, 0.0124202128, -0.0157633778, 0.016517669, -0.00240030349, 0.0188828148, -0.00606628, 0.0555873215, -0.0104897423, -0.0277936608, 0.0122476211, -0.0296602082, -0.00440108916, -0.0054686009, -0.0144209983, 0.00153334974, 0.0222323723, 0.0272567086, 0.0023587537, 0.0116850995, -0.0361803398, -0.00671829283, -0.0102276579, 0.000814617029, 0.0125736278, -0.00887888577, -0.043211855, 0.0301460233, 0.0195092577, 0.00164920988, -0.00685253087, -0.0164537448, -0.0092816, -0.00397600234, -0.00390888331, -0.00206470862, -0.025696991, -0.00340708857, 0.0097929826, -0.00198640302, 0.0225008484, -0.00645940565, -0.0113207391, 0.013986323, 0.0226031244, -0.0230378, 0.0101445587, -0.0185504146, -0.00261923927, -0.00590966875, -0.00377464504, -0.00482298, -0.0262083746, 0.0185887683, -0.00331120426, 0.0484535322, -0.0107518258, 0.00971627515, -0.0108477101, -0.0237281676, 0.0386349782, 0.0141525222, 0.00204233546, 0.0171952508, -0.00281260605, -0.0126950806, 0.0133343097, -0.0209667, 0.0130274799, 0.00315459329, 0.0273078475, -0.00585853029, 0.0168500673, -0.0189850908, 0.000829399156, -0.00372989918, -0.0137306312, -0.0310920812, -0.00843142625, -0.00193047046, 0.0211712532, 0.00751732895, -0.0234596916, -0.00600874936, -0.0294812247, 0.0312966332, 0.00903869327, 0.00050539017, -0.0179239716, -0.00481339172, -0.0022548791, -0.0355922505, -0.0273589864, -0.0125800194, -0.00763878226, -0.0102660116, -0.0157889482, 0.0114421928, 0.0176299252, 0.00987608265, 0.0123562897, -0.00874464773, 0.0210050531, -0.0158528704, 0.0307341125, -0.024802072, -0.0201357026, 0.014459352, 0.0102148736, 0.0419845358, 0.00441706972, 0.0387116857, -0.0174381565, 0.0604454614, 0.012503312, 0.00481019542, -0.00210466026, -0.00674386229, 0.0298136231, 0.0116914921, 0.00519373268, -0.0104641728, -0.00806067325, 0.0197777338, -0.00229163468, 0.00744701363, -0.00758125167, -0.0401691273, -0.0107773952, 0.0105408803, -0.00675025443, 0.0274612624, 0.0327285081, 0.0225392021, 0.00548138563, -0.00192407821, -0.00783694349, -0.0164153911, -0.000797038199, 0.0129699493, 0.0295067932, 0.00990165211, 0.024060566, 0.0138840461, -0.000345383218, -0.0146511206, -0.0341092385, 0.0116339615, -0.0100486744, -0.0414475836, -0.041268602, -0.0347229, 0.00616216427, 0.0195092577, 0.0383792892, -0.0206215158, -0.0159423631, -0.0148045355, -0.0176682789, 0.0177449863, 0.00620691, -0.0242779031, -0.0352342837, 0.00139431749, 0.00691645406, -0.0164537448, 0.0187166147, 0.0309898052, -0.0120622441, 0.025594715, 0.0083419336, -0.0353365578, 0.00539828604, 0.00427324325, -0.0492206067, 0.0340325311, 0.0234341212, 0.00104513881, -0.00665437, 0.0070506921, -0.0129379882, -0.000937269, -0.0534395128, 0.057786271, 0.00680778502, 0.0142675834, 0.0101893041, 0.0458966158, 0.000960441, 0.0142164454, -0.0023587537, 0.0354388356, 0.00212863134, -0.0177961253, 0.014037461, 0.0277425237, 0.0137689849, 0.0742528, 0.0346973315, 0.00227245782, 0.00219095615, -0.00475905742, 0.00149819208, 0.0308363903, 0.015354272, 0.0152392108, -0.0197521653, 0.00465678051, -0.00349338446, -0.0337001346, 0.0039951792, 0.0187166147, -0.0009987948, 0.0130402641, 0.0401179902, -0.0254540853, 0.0155716101, -0.00532797072, -0.0359246507, 0.000758684473, -0.0192152131, -0.00683335401, 0.0228332467, 0.0176427104, 0.0217976961, -0.0029180788, -0.0320892781, -0.00218616193, 0.00957564544, -0.000220334128, 0.0195220429, -0.0437232405, 0.0106495488, -0.0152903488, -0.00443944288, -0.0109563787, -0.0214141589, -0.0205448084, 0.00257609133, -0.0434419774, 0.0027982234, -0.00284296949, 0.000870949, -0.00727442186, 0.0162747614, 0.0477375947, -0.0156355333, -0.0103299348, -0.0118960449, 0.0289954115, 0.011608392, -0.0158400852, 0.0124649582, 0.00551654305, 0.025645854, -0.00827801134, 0.0432374254, 0.0272311401, -0.00905147754, 0.0190106593, 0.0286885817, -0.0292766728, 0.0331631824, -0.0145232752, 0.0260038208, 0.021056192, -0.027333416, 0.0278192312, 0.0152392108, 0.00241149, -0.0170162655, 0.00213662162, -0.0117298458, 0.0242906883, -0.0161341317, -0.0129763419, -0.0391463637, -0.00581698073, -0.00212863134, 0.00737030618, 0.00381939113, 0.0310153738, 0.0451295413, -0.0134365857, 0.00481019542, -0.0102851884, 0.00276306574, -0.00260965084, -0.0122859748, -0.0195987504, 0.0137434155, -0.0045097582, -0.00811181124, -0.0180518162, -0.00702512264, -0.0744573548, 0.021899974, 0.0244441032, -0.0150218727, 0.0312966332, -0.00448418874, 0.0197393801, 0.0361547731, -0.0023587537, -0.0135388626, -0.000725924037, -0.00877660885, -0.0148428893, 0.0139351841, 0.00878300145, 0.0238432288, -0.0117042763, 0.0205831621, 0.011135363, 0.0335978568, -0.0223857872, -0.0158656556, 0.00582656916, -0.00159887061, 0.00727442186, 0.0335211493, 0.00699316151, 0.00478782272, 0.00365638779, 0.00853370223, 0.00768992072, 0.00710183, -0.0262595136, -0.0136411395, 0.00486453, 0.0382770114, 0.0158656556, 0.00359885721, 0.0147150429, 0.0363593251, -0.00209826813, 0.00458326936, 0.00324568339, -0.0148045355, 0.00627083285, -0.00548138563, -0.0258248374, -0.0213502366, -0.0201357026, 0.00774105871, 0.0107710026, 0.0019688243, 0.0286630131, -0.0248276405, -0.0114038391, -0.0140246768, 0.0110266944, -0.0152136413, -0.0231912155, 0.0201612711, 0.0286885817, -0.0118193375, 0.00626444072, -0.0088661015, 0.0173230954, -0.0596272461, 0.00641465932, -0.0148684578, -0.0235619675, 0.0161724854, 0.0259910375, -0.0207110085, 0.0213502366, 0.00680778502, 0.028816428, -0.0142931528, -0.00492206076, 0.00357648428, 0.00314660301, -0.00570831168, 0.00792004261, -0.00144945097, 0.0155204711, 0.0197777338, -0.013244817, -0.00839307252, 0.0128676724, 0.00699316151, -0.0116147846, -0.012874065, -0.0091985, -0.0352598503, -0.0327285081, -0.00767074386, -0.0197521653, -0.00385774486, 0.00832275674, 0.00597998407, 0.00617814483, -0.0112056779, -0.00763239, -0.0229866616, -0.0218232665, -0.0211968217, -7.27621955e-05, -0.0156227481, -0.0147150429, 0.0270521566, 0.00140630302, 0.0156611018, -0.00262722978, -0.018678261, -0.00621649856, 0.00319294701, 0.0155716101, -0.00392806, -0.0131169716, -0.0340325311, -0.0285351668, -0.0150346579, 0.0336745642, 0.00140550395, 0.00159647351, 0.0133854477, 0.0133854477, -0.0111928936, 0.00850813277, 0.0175532177, 0.0122859748, 0.014037461, -0.0185504146, 0.000237713146, 0.0113527011, 0.00203754124, -0.0130914031, 0.00988247525, -0.00599276833, 0.0242779031, 0.0111225788, -0.00251057046, -0.00517775211, 0.0244057495, -0.00339750014, -0.0058073923, -0.0234980453, -0.0226159096, 0.0158656556, -0.00467915367, -0.00968431402, -0.00793282781, -0.0330353379, -0.00786890462, 0.0671445802, -0.00941583794, -0.0260549597, -0.0298136231, -0.00236514607, -0.0412941687, -0.00307309162, 0.0414220169, -0.00975462887, -0.0434164107, 0.0163131151, -0.00693563092, 0.00313861272, 0.0353621282, 0.0111992862, -0.018627122, -0.00864876341, 0.00182659586, 0.0224880632, -0.0317824483, -0.00583935343, 0.00874464773, -0.0164409615, -0.0124905277, 0.0179878939, -0.0351575762, 0.00296442281, -0.0137817692, 0.0145616289, 0.00168916164, 0.0079903584, -0.0156994555, 0.0368962772, 0.00477503799, 0.00165080791, 0.00940944534, 0.0187421832, -0.0219638962, -0.000258488086, 0.0114421928, -0.00873825513, 0.0175532177, 0.0242651198, -0.0171696804, 0.000993201509, 0.00898755435, -0.0321404152, 0.0025409339, -0.0134749394, -0.00965235289, -0.0117745912, -0.00757485954, -0.0187038295, 0.000928479596, 0.0176938493, -0.00530559756, 0.0077985893, -0.0201996248, 0.0225647707, -0.0186015535, -0.0133087402, -0.00355091505, -0.0245208107, 0.00103634945, 0.0243418273, -0.00608226052, -0.0356945284, 0.0247125793, -0.00801592693, 0.0163642541, 0.00802231953, 0.0238687973, 0.0296602082, 0.00144945097, -0.0458454788, 0.0029772073, -0.0148428893, 0.0210434068, -0.0116403531, -0.00591286505, 0.00245303987, -0.0227054022, -0.025172824, 0.0252111778, -0.0160190705, 0.023114508, -0.00320093753, -0.00894920062, -0.0056220158, 0.0150857959, -0.0229355246, 0.00763878226, -0.0226031244, 0.0267708953, 0.00992722064, -0.0207621455, -0.0018154094, -0.00643703248, 0.00371072232, -0.0101445587, -0.0245591644, 0.0229483079, 0.0232295692, 0.023740951, -0.00503712147, -0.0150218727, 0.0141653065, -0.00146223546, 0.0180773865, 0.00985051319, -0.0166199449, 0.00286534242, 0.0132576022, 0.00457687723, -0.0128932418, 0.013986323, 0.0189595222, -0.0110650482, 0.00781776663, -0.0154949026, 0.00237952871, -0.0166071597, 0.0227054022, 0.0121900905, -0.000170993662, -0.00233797869, -0.0150346579, 0.00879578572, 0.0327029377, -0.00712100696, 0.00297081517, 0.00605349522, 0.00631877501, 0.0183202922, -0.0260549597, 0.0107710026, -0.0182180163, -0.00848895684, -0.00857205596, 0.0135388626, -0.00291168643, -0.0152136413, -0.0121325599, -0.000264081347, 0.0117809838, -0.00990165211, -0.00166838674, 0.00121293636, 0.0104513885, 0.00836111, 0.0081885187, -0.0198672265, 0.0105856266, -0.00168276939, 0.00951811485, 0.0108988481, 0.0261316672, 0.0147533966, 0.032447245, 0.0177577715, 0.0160574242, 0.00186494959, -0.00146782876, 0.0106879026, 0.000428682717, 0.0118257301, -0.0202891175, -0.00947336853, 0.00636991346, 0.0109627713, 0.0156994555, -0.00706986897, 0.00152935449, -0.00482937228, 0.0236514602, 0.0307852514, 0.0121453442, -0.0447715744, 0.0226031244, 0.00702512264, 0.0011857691, 0.0367428623, -0.020634301, 0.0102212662, -0.0283306129, -0.00543024717, -0.00507227937, -0.00786890462, 0.0100870281, 0.00547818933, -0.00792004261, 0.0146511206, 0.00770909758, 0.0258759763, 0.00585533446, -0.00595761091, -0.0369985551, -0.0382770114, -0.0154437637, -1.08306801e-06, -0.000925283472, 0.0111161862, -0.0150985802, 0.00412622094, -0.0106942952, 0.00946697593, -0.0141141685, -0.00134637533, 0.0146127669, -0.00180102675, 0.0211329, -0.010662334, -0.00830358, 0.00511063309, 0.0206215158, -0.00467595737, 0.00964596, 0.00962678343, 0.022590341, 0.0124585666, 0.010630372, 0.016568806, 0.00497000292, 0.0133470939, -0.00201357016, -0.00478782272, 0.0143187214, -0.00498598348, 0.00509145623, 0.0208644234, -0.0280493535, -0.00197841274, 0.0226670485, -0.0127909649, 0.0161852688, -0.00953729171, 0.00651374, -0.0210306216, 0.0143059371, 0.00228204625, 0.0149068115, 0.0171185434, 0.0241117049, 0.012113383, -0.00282858685, -8.08024924e-05, 0.0065297205, -0.00402074819, -0.00839307252, 0.000903709501, 0.00587131502, -0.00538230501, -0.00511382893, -0.00682696188, -0.00767074386, 0.0120047135, -0.0185120609, -0.0209922679, 0.00912818499, -0.0127142575, -0.0147789661, 0.00626124442, -0.0182308014, -0.0228588171, -0.02021241, 0.00286853849, -0.0253134537, 0.0123435054, -0.00535673602, -0.0144721363, -0.0414220169, 0.0342370868, 0.0252111778, 0.019892795, 0.0078049819, -0.000806227152, 0.00442026602, -0.00220214273, -0.00455450406, 0.00774745131, -0.014408214, -0.0284073204, 0.00267676986, -0.0182819385, -0.0123562897, 0.01540541, -0.0325495228, 0.0177705567, -0.0115252929, -0.0107710026, -0.00166998478, 0.00645940565, 0.00947336853, -0.000817014137, -0.00831636507, 0.0209155604, 0.00937109161, 0.00967792142, -0.0032504776, 0.00901312381, 0.000325207569, 0.00158209086, -0.0148684578, -0.00745979836, -0.031398911, -0.0236514602, -0.00446501188, 0.030657405, 0.0208132844, -0.0264896341, -0.00909622386, -0.00137673866, 0.00328563526, -0.0322171226, -0.0127590038, -0.0323449709, -0.0339558274, -0.00220054458, -0.00222291751, 0.00944779906, -0.0167094376, -0.0294812247, 0.00910900813, -0.0167605747, -0.00460883835, -0.00816934183, 0.0167733599, 0.00949893799, 0.00405271, 0.00724246074, 0.00540148187, 0.0214908663, -0.0236898139, 0.00365319173, 0.00602153363, 0.0116723152, 0.00723606814, -0.00198480487, 0.0110203018, -0.0107965721, -0.0249299165, 0.0342626534, -0.00609504525, 0.003100259, 0.0115892151, 0.0160702076, -0.0141141685, -0.00511382893, -0.017514864, -0.0156099638, 0.0185887683, -0.00763239, -0.0248659942, 0.0029931881, -0.00812459644, 0.0171313267, 0.00731277559, 0.00265439693, 0.0206470843, 0.00519053638, 0.0220278185, 0.0137562007, 0.0101125967, 0.0020103741, -0.00573068485, 0.0105217034, -0.000909302733, 0.0251472555, -0.00393445231, 0.0388139635, 0.00242747087, -0.00388011779, 0.022794893, 0.00432118541, 0.0335722901, 0.0168500673, 0.0130019104, -0.0131681096, 0.0197649505, 0.0070506921, -0.0137178469, -0.00836750306, -0.0159423631, -0.000165300531, -0.00920489244, -0.00931356102, -0.010157343, 0.00652652467, -0.00737669831, 0.0231656469, 0.016990697, -0.0276658162, -0.00177226146, 0.0149195967, 0.0190745834, -0.0117362374, -0.023216784, 0.0114358, -0.0121773053, 0.00406549405, 0.027384555, 0.00374587975, 0.0253645927, 0.00730638346, 0.0607011504, -0.00985690579, -0.000938068, -0.00064042717, -0.00285255793, -0.0167350061, 0.00160845905, -0.0282794759, -0.0377656296, -0.0261572357, -0.00442665815, 0.0170290507, 0.00683974661, 0.0441579148, 0.00615896797, -0.00431159697, 0.00357009191, 0.00395043287, -0.0147789661, 0.00852731, -0.00836111, -0.000363761035, 0.0164153911, -0.0153798414, -0.0122923665, 1.90145547e-05, -0.00123770651, -0.0133470939, -0.0228716, -0.0140630305, 0.00916653872, 0.000958843, -0.021260744, -0.0184481386, 0.0054174629, 0.0200845636, -0.00139751367, 0.00703151524, -0.00257928763, -0.000603671535, -0.0182819385, -0.00402394449, 0.0113846622, 0.00202635489, -0.0192024279, -0.0124329971, 0.0114038391, -0.0114294086, -0.00136235601, 0.0285863057, 0.0137945544, 0.00204712967, -0.00887888577, -0.0017403, -0.0195476115, -0.00737669831, -0.0110906167, 0.0152392108, 0.00232519419, 0.00143107318, 0.000141129698, 0.000930876704, -0.00314021064, -0.00520012481, 0.00488370704, -0.00944779906, 0.0174892955, -0.0413453095, -0.00999753643, -0.00330800819, 0.0142931528, 0.0127781807, 0.0137562007, 0.00251057046, -0.0168500673, -0.00385135249, 0.0321659856, -0.0187294, 0.00967153, 0.00981215946, 0.000535753497, 0.0411663242, 0.0150857959, 0.0268476028, 0.0052576554, 0.0166838672, 0.02200225, 0.0222962946, 0.000190070641, -0.00108269346, 0.0279982146, 0.00958203711, 0.0134110171, 0.0188444611, -0.0204297472, -0.000522968941, 0.017092973, 0.0086999014, 0.00320573174, -0.00626763701, 0.0111673241, 0.0206470843, -0.00467915367, 0.00864876341, -0.0104769571, 0.014881243, 0.00880857091, -0.0167350061, 0.000962838123, 0.0185632, 0.0136283543, -7.63079224e-05, -0.0019688243, -0.00953089911, -0.00126806984, 0.00761321327, 0.0185632, 0.0115636466, 0.0198160876, -0.0108860638, -0.0225008484, -0.0167477913, 0.00357648428, -0.00128804566, 0.00373309525, 0.0110203018, 0.00356369978, 0.00718493, -0.0114421928, 0.00667354697, -0.00569233112, -0.00200717803, -0.00162683695, -0.00197681459, 0.0251600388, 0.0167477913, -0.00802871212, 0.00136635127, -0.0152392108, 0.0135388626, 0.00104194274, 0.0255307928, -0.00228524231, -0.00484854914, 0.024802072, -0.0243546106, 0.00236674398, -0.0143826446, -0.0176554956, 0.00940944534, 0.00211265078, 0.0135260783, -0.00381299877, 0.00329841976, -0.0226031244, 0.0215420052, -0.0175020806, -0.00462162308, 0.0180773865, 0.00143347029, -0.00999114383, 0.0138201229, 0.0020854834, -0.00790086575, 0.00521930167, -0.00714018382, -0.0127142575, 0.0123626823, 0.0187421832, -0.00836111, 0.00848256424, 0.0141780917, 0.00881496258, 0.000399118377, 0.00292127486, 0.00578821544, -0.0124841351, -0.023536399, -0.0238432288, 0.0152264265, 0.0171696804, 0.00868711714, -0.0092752073, 0.00898116268, -0.00307788583, 0.00345822703, -0.00623567542, -0.00358607271, -0.0229866616, -0.0305551291, -0.0254157316, -0.0337768421, -0.0112632085, -0.00966513716, -0.00480380328, -0.00285255793, -0.00745979836, 0.0312710665, 0.0112568168, 0.0169779137, -0.0121261673, -0.0198672265, -0.0133598782, 0.0200462099, -0.013295956, 0.0286118742, 0.00806706585, -0.0313733406, -0.0139991073, 0.00774105871, 0.0237153824, -0.00299478625, 0.0136283543, 0.00203754124, -0.0189595222, 0.00169075979, 0.00654570153, -0.00481019542, -0.0111481473, 0.00441067759, 0.0150090884, 0.0288675651, 0.0295323636, -0.0278448, -0.0184737071, -0.012957165, -0.0188572444, 0.00643064035, -0.0094350148, -0.0218616202, -0.00318975095, 0.0132320328, 0.0109819481, 0.000345782755, 0.00304432632, -0.00955646858, -0.00495721819, -0.00915375445, 0.00221652538, -0.00753011322, 0.0255052224, -0.0025537184, -0.00812459644, 0.00796478894, -0.00121852965, 0.0167350061, -0.0220278185, -0.00207909127, 0.0124329971, -0.00558046624, -0.00820769556, -0.0194325503, 0.0123562897, -0.0209411308, -0.0177577715, -0.007229676, -0.00290529407, 0.0118704755, 0.0101956967, 0.0211073291, 0.00955007598, -0.00703790737, 0.0131297568, -0.00952450652, 0.00093567092, 0.0185887683, 0.0159040093, 0.0165304523, -0.0315011889, -0.00172272115, 0.0119599681, 0.00875743199, 0.0276146773, 0.0030091689, 0.00791365094, -0.00251376652, -0.00728081446, 0.0225008484, 0.0170418359, 0.0136794932, 0.00811181124, -0.0145744132, 0.00741505204, -0.0221173111, -0.0284584593, 0.000680379, -0.0011106598, -0.00807345752, -0.013193679, 0.00225008489, 0.00919210818, -0.00855927169, 0.00220853486, 0.0161597, 0.0199950729, 0.0137306312, 0.0284073204, 0.0186526924, -0.00592564931, 0.0122284442, 0.00978659093, 0.0102020893, -0.00581698073, -0.00443944288, -0.00999753643, -0.0119280061, 0.0121709136, 0.0128101418, 0.0174509417, -0.0168756358, -0.0184097849, -0.00381939113, 0.00220533879, 0.00427643955, 0.0121389516, -0.0220917426, 0.00374268368, 0.00365638779, 0.00772188185, 0.0246486571, -0.0202251934, 0.01451049, -0.0169523433, -0.0257481299, 0.00358287664, -0.0083483262, -0.00447140448, 0.00440748129, -0.00121373544, -0.0260805283, -2.27350647e-05, -0.00748536736, -0.00302994368, 0.00253134547, 0.00949254539, -0.00675025443, -0.00154054107, -0.0018361843, 0.0109435944, -0.0036276225, -0.0119855367, -0.00494443346, -0.00516816368, 0.000459046074, -0.0186015535, 0.0155204711, -0.0119280061, -0.0137178469, 0.0132831708, -0.0222579408, -0.016888421, 0.0163003299, 8.28999619e-05, 0.0307852514, 0.000707945728, -0.0189083833, 0.0105153108, -0.0328052156, -0.0110586556, 0.00411343621, -0.00393445231, -0.00590647245, -0.00030123649, -0.0178472642, 0.00192887243, -0.00203913939, 0.00475905742, -0.00965874456, -0.00626124442, 0.0105536645, 0.00450336561, 0.0194964744, -0.00644342462, 0.00231081154, 0.0120238904, -0.00717853755, 0.0159679316, -0.00167797517, -0.00645301305, 0.0013991117, -0.00663519325, 0.000946857443, -0.0151752876, -0.00691645406, 0.00611741794, 0.0122348359, 0.0148940273, 0.0340836719, 0.0102148736, 0.0174637269, 0.0166199449, -0.00412941724, 0.00392806, 0.00940944534, 0.0270010177, 0.00264321035, -0.0199822877, -0.0360269248, -0.00139271945, -0.0147917503, -0.00408147508, 0.0109563787, -0.00286054821, -0.0175532177, 0.0103618959, -0.0094414074, -0.014408214, -0.0192791354, 0.0132831708, 0.00142547989, 0.00370752602, 0.00434036227, -0.0200589951, -0.00723606814, 0.0115252929, -0.00368834916, 0.00458966149, -0.015776163, 0.0096395677, 0.00758764381, 0.0111034019, 0.0103555042, -0.0172336046, 0.00823326502, -0.0216187127, -0.00386733329, -0.00564758526, -0.0150602264, -0.000245304, 0.0190873668, -0.0138712618, 0.00241468614, 0.0101893041, 0.00800314266, -0.0027854389, 0.00937748421, 0.00135516468, 0.0138201229, 0.0107326489, 0.00395682547, -0.0070762611, -0.0170290507, 0.00220693694, -0.0153798414, -0.0169523433, -0.00130083028, 0.0047430764, 0.0123562897, 0.00998475123, -0.00227725203, 0.00685892347, 0.0135772163, -0.017732203, -0.0048996876, -0.0104833497, 0.0102660116, -0.00212223921, -0.0200589951, 0.0299926084, 0.0266174804, 0.0131297568, 0.000306430244, -0.019419767, -0.000193666303, 0.0136283543, -0.016146915, 0.0119088292, -0.00483256858, -0.00313701457, 0.000606068643, 0.00848256424, -0.0143315066, -0.0174637269, 0.00655209366, -0.0325495228, -0.01693956, -0.01540541, -0.0117809838, -0.013666708, -0.00423808582, 0.0256330688, -0.0077985893, 0.00366917253, 0.0095948223, -0.00607267208, 0.0249938406, 0.0132192485, 0.0391719304, -0.00551973935, -0.0087126866, 0.0188828148, 0.0111417556, 0.00217817165, -0.0048964913, -0.0111928936, 0.00752372108, -0.0136411395, 0.00503392564, 0.00584574603, -0.0103107579, 0.00758125167, 0.00558685837, -0.00424128212, 0.00839946419, 0.00836111, 0.0171824656, -0.0319614336, -0.0216954201, 0.0132831708, 0.00338151958, 0.0157378092, -0.0134621551, -0.00237793056, 0.0211201143, -0.000662400678, 0.000179083901, 0.00784972776, 0.0081373807, -0.0137817692, -0.0162108392, -0.0160702076, 0.0191896446, -0.00758125167, -0.0094286222, 0.017412588, 0.000764677243, 0.00582337286, 0.0244952422, 0.0145744132, 0.0133343097, 0.00830358, 0.00190969557, 0.017412588, -0.014932381, 0.00249778596, -0.00416137837, -0.0196754579, -0.0276658162, 0.00639228662, 0.0106815109, 0.0209155604, -0.00195603957, 0.0132192485, 0.000781457, -0.00935191475, -0.00990804378, -0.0101189893, 0.0261316672, -0.00955646858, 0.000343385647, -0.00535034388, -0.0032504776, 0.010208481, 0.0169779137, -0.015776163, -0.0111545399, -0.0083547188, 0.0201484859, 0.00377464504, 0.00227245782, -0.00162683695, -0.00754289795, -0.00176267303, -0.00362123037, -0.0131808948, 0.0108221406, -0.0277425237, 0.00986969, -0.0172463879, -0.0099591827, 0.00311623956, -0.00260006241, -0.00860401709, 0.0155332563, -0.0108796712, -0.0184864923, 0.00244185352, -0.00209667, -0.00609504525, 4.8566395e-05, -0.00726802973, 0.00899394695, 0.00719771441, -0.00125848141, -0.00166199449, -0.00908983126, -0.00790086575, -0.016888421, 0.00506269094, -0.0225775559, 0.0207749307, -0.00504031777, 0.00895559322, 0.013193679, 0.0119407913, 0.0257736985, 0.0193430595, 0.00806706585, -0.00697398465, -0.0176554956, 0.0235619675, -0.0203913935, -0.0364104621, 0.000244305207, 0.0135772163, -0.0196243189, -0.0122667979, 0.00123451033, 0.00439469703, 0.005804196, -0.00724885287, -0.0264129266, 0.01825637, -0.00620051799, 0.0278448, 0.012030283, -0.0232679229, -0.013244817, 0.0379190445, 0.026540773, -0.00532157859, 0.0160702076, 0.00726802973, -0.0109052407, -0.00451295404, -0.0162364077, 0.00263362192, 0.00756207481, -0.000306430244, -0.0058009997, -0.00391847175, 0.00276466389, 0.00283977319, -0.00787529722, 0.0130146956, 0.0158400852, -0.00334636192, 0.00372031075, -0.0135132931, 0.0252878852, 0.0231656469, 0.00821408816, 0.000257089763, -0.0298391934, 0.0153287025, -0.000449457642, -0.00903230067, 0.00150058919, 0.0103171505, 0.0201101322, 0.011052263, 0.00575305801, -0.00186974381, 0.0293278098, 0.0340325311, -0.0127014732, -0.0154309794, -0.00365638779, -0.0250194091, 0.00288451929, -0.00762599753, 0.00170194625, 0.000779459428, -0.000731916807, -0.0270010177, -0.00809263438, -0.00561882, 0.0294300858, 0.00454171933, -0.0213885903, 0.0141013842, -0.00345503073, -0.00887249317, -0.0110970093, 0.0102148736, 0.00321691809, -0.00624846, 0.0122667979, 0.00960121397, 0.00555489678, 0.00839946419, -0.00600555306, -0.00611741794, 0.0208516382, 0.0124457814, 0.00459285779, -0.00142148475, 0.0155843943, -0.0061717527, 0.0220661722, -0.0279215071, -0.0182819385, 0.00096923043, -0.00563480053, 0.0317313112, -0.0340581, -0.0109372018, 0.0120494599, -0.0124074277, 0.00997836, 0.0107965721, 0.0104769571, -0.00301076681, 0.00760042854, -0.005804196, 0.0142036602, 0.0236514602, 0.000226726406, -0.00142068567, 0.0210306216, -0.0127078658, 0.00766435126, 0.0061685564, -0.0194581207, 0.00585533446, 0.00666076224, 0.00409745565, -0.0412941687, 0.00664797798, 0.000240909299, 0.00965874456, 0.0129507724, -0.0068653156, -0.00694841519, 0.018678261, 0.0320637077, 0.000138233198, 0.00449697347, -0.00769631285, 0.00892363209, 0.00290689222, -0.0120494599, 0.00109867426, 0.00597359147, 0.00325687, -0.00976741407, 0.0159551464, 0.0147278281, -0.00352854212, -0.000145624275, 0.0200717803, -0.0140502453, -0.00701873051, 0.0323449709, 0.0440045, 0.00251057046, 0.0110458713, 0.0123435054, -0.0158912241, 0.00711461483, -0.00619092956, -0.0234341212, -0.0205703769, 0.0128101418, 0.0221300963, -0.0354132652, -0.0208260696, -1.99009846e-05, 0.019688243, 0.0113271317, 0.00847617164, 0.0278192312, -0.00105312921, 0.0166199449, -0.025492439, -1.18669304e-05, -0.0143570751, 0.00547179719, -0.0154949026, 0.0239966437, 0.00576903857, -0.0190106593, 0.0327796452, -0.00208228733, -0.00434036227, -0.00387692172, -0.0103618959, 0.00893002376, 0.00437552, 0.0106879026, -0.0113143474, -0.00131761, -0.0135132931, -0.00067997945, -0.00184417458, -0.00839307252, 0.00515218265, 0.0034198733, -0.0282794759, 0.00499876821, 0.00385135249, -0.0186143387, -0.0129699493, 0.0127653964, 0.00804149639, -0.00593204191, 0.00127526117, 0.00130482542, -0.0132576022, 0.0183842164, 0.0234085526, 0.0394531935, -0.0194453355, -0.00214940635, 0.0300437454, 0.00923685357, -0.00297241309, 0.00983772893, -0.00032320997, 0.0277680922, 0.00114581734, -0.00682696188, -0.000163402816, -0.00516496738, 0.00225008489, -0.0116978837, -0.0174253732, 0.0125416657, 0.0116275689, -0.019688243, 0.0136411395, 0.0161724854, -0.00766435126, 0.00737669831, 0.00896837749, 0.0368962772, -0.0257736985, -0.0034614231, -0.0170546193, -0.0130722262, -0.00909622386, 0.0196243189, 0.00729999132, 0.00501794508, -0.00781776663, -0.0355922505, -0.00108269346, -0.00636671716, 0.00795839634, 0.00994000584, -0.0132703865, 0.000837389496, -0.00868072454, -0.0167477913, 0.0119663598, 0.0156355333, 0.0108732795, -0.0101317735, -0.00657127053, 0.0077730203, 0.0129124187, -0.00712739956, 0.0131169716, 0.0123754665, 0.00481978385, -0.00560603524, 0.00287173479, 0.00914096925, 0.0054462282, -0.0199695025, 0.0119535755, -0.0110139092, -0.00229483075, 0.00166838674, 0.0181029551, 0.00739587517, 0.0303761456, 0.0057179, -0.00184737076, -0.0195476115, -0.00948615279, -0.018575985, -0.000536952051, 0.00386094092, 0.00561242737, -0.00941583794, -0.0140758147, 0.00561242737, -0.0116850995, -0.00297880545, 0.00523847854, -0.0123626823, -0.000236914115, -0.00763878226, 0.0130658336, 0.0039887866, 0.00291008828, 0.0157378092, 0.0130338725, 0.0172591731, 0.00452893507, 0.0118640838, 0.0069612, 0.000211544728, -0.00664797798, 0.00583296129, -0.0140758147, -0.00322171231, -0.0200078562, -0.00642105192, -0.00554850465, 0.00154693332, -0.0135005089, 0.0234341212, 0.000898116268, -0.0130274799, 0.00794561207, -0.020838853, 0.00972906, -0.00135356665, -0.0205703769, -0.0150730116, 0.0293278098, -0.00632836344, 0.0258120522, 0.00583935343, -0.0138201229, 0.00641785562, 0.00570511585, -0.0159295779, 0.0125224888, 0.0161597, 0.00658405479, 0.00757485954, -0.0288419966, 0.0162236225, -0.00128005538, -0.000914096949, -0.0137050617, -0.0128612807, -0.00738948304, 0.0063475403, -0.00664797798, -0.00663519325, 0.00387052936, 0.00903869327, 0.0118129449, -0.0136027858, 0.0136922775, -0.0151113654, -0.00746619049, -0.00256810104, -0.00205671811, 0.0101829125, 0.00271512358, 0.0226286948, 0.0232295692, 0.00355411135, -0.0022548791, -0.0226159096, 0.0153926257, -0.0245208107, 0.0137050617, -0.00969070662, -0.0228971709, -0.0108093563, 0.0247253645, 0.00440428546, -0.0119216144, 0.0178984012, 0.00221492723, -0.00316737802, -0.00482617645, -0.0352342837, -0.0138584767, 0.0282794759, 0.0228332467, -0.0074406215, -0.0110714398, -0.00305551291, 0.00100998126, -0.00926881563, -0.0162491929, 0.00825244188, -0.00715936068, 0.0054142666, -0.00128644763, -0.00128405052, 0.00731916819, 0.00809902698, -0.00802231953, -0.0109308101, -0.0170801897, 0.00395362917, -0.020634301, -0.00497319875, -0.00464399625, -0.0102532273, 0.00921767671, -0.00654570153, 0.0213118829, -0.0307596829, -0.00793921947, 0.0195476115, -0.00333357742, -0.00107150699, -0.000821408816, 0.000625645043, 0.00373309525, -0.0130274799, -0.00263681822, -0.0115380771, 0.0312710665, 0.00852731, -0.0102340505, 0.000461043644, 0.0099591827, 0.000798236753, 0.0063475403, 0.0115508614, 0.00583935343, 0.0178728327, -0.0123626823, 0.00364040723, -0.0118129449, 0.000908503716, -0.0280237831, -0.000927680579, 0.00575625384, 0.00472709583, -0.0212479606, 0.0163259, 0.0142292297, 0.0200334266, 0.0159551464, 0.0144337825, 0.00179623254, -0.00295643252, -0.00823326502, 0.00742144464, -0.00657766266, -0.0282027684, -0.00494123762, -0.00316737802, -0.0139991073, -0.0318335854, 0.0166199449, 0.019419767, -0.00858484, 0.00721689127, -0.00660323165, 6.68693101e-05, 0.00475905742, 0.00290529407, -0.00209027762, 0.0235747527, 0.00824604928, -0.00992722064, -0.0153287025, 0.0102212662, -0.00378423347, 0.00113702798, -0.00387372565, -0.00407508248, -0.00545901246, 0.00548458192, -0.00631877501, -0.0128868492, -0.0108796712, 0.0129955187, 0.00977380574, -0.00701873051, -0.00449058134, -0.0299159, 0.0102148736, -0.00626763701, 0.0120366756, 0.00244664773, -0.00228524231, 0.00716575328, 0.0234596916, 0.0043563433, -0.0253262389, -0.00822687242, -0.00448738504, -0.00181221322, -0.0151369339, -0.0205448084, 0.00139032234, 0.00307468977, 0.0114805466, 0.0286885817, 0.0121517368, -0.000748696562, -0.0259782523, -0.00602153363, -0.017732203, 0.0025537184, -0.00832914934, -0.00628361758, -0.00467915367, 0.00151017762, 0.00442026602, 0.0136411395, -0.0013783368, -0.0147406124, 0.0282539055, 0.0094414074, -0.00447140448, 0.0203786083, -0.0131169716, 0.0191129372, -0.00492206076, -0.000864556758, -0.0205064546, -0.0148301041, -0.0119535755, -0.00954368338, 0.00706986897, -0.0171696804, -0.0189211685, 0.0075940364, 0.00298999203, 0.00503072934, 0.010662334, 0.00709543796, -0.00495402189, 0.0118385144, 0.0100167133, 0.00685253087, 0.00629000971, -0.018678261, 0.000751493149, -0.00986329839, 0.000475026784, 0.0179495402, -0.0247253645, 0.0233062766, -0.0226670485, -0.0177961253, -0.0172208194, -0.0128612807, -0.0134110171, 0.0279215071, -0.00334316585, 0.00516177109, 0.0227181856, -0.0221684501, -0.00104833499, 0.0158528704, 0.0107390415, -0.00859123282, -0.0112120705, -0.0131041873, -0.000642424799, -0.00530559756, -0.00889167, 0.0122412285, -0.0186015535, 0.0207237918, 0.0220406037, 0.00192887243, 0.00887888577, 0.00458326936, 0.0120366756, -0.00310505321, 0.00205512019, 0.00364999566, 0.0394531935, -0.0129060261, -0.00623247912, 0.0209794845, -0.0145744132, -0.00665437, -0.00041829524, 0.00468554581, -0.0126886889, 0.000505789649, 0.0103235422, 0.00461842678, 0.00408147508, 0.00669272384, -0.00830997247, 0.00493164919, 0.00291967671, 0.00750454422, 0.0133215245, 0.013986323, 0.00708265323, 0.0113335242, -0.0160702076, -0.00608226052, 0.00758764381, -0.00773466658, 0.000830997247, 0.0259654671, 0.00564119266, 0.0288931355, 0.0229994468, 0.000908503716, -0.0107390415, 0.0141780917, -0.020314686, 0.0123179359, -0.00416137837, -0.0068653156, 0.00446820818, 0.0170418359, -0.00661601638, -0.0178856179, 0.00427963585, -0.00187773409, -0.00983772893, -0.0121005978, 0.00531518599, 0.0132064633, 0.00285255793, 0.0301971603, 0.0100806355, -0.00869351, 0.0113399159, 0.00736391405, -0.00335275428, 0.0150090884, 0.00946058426, -0.0255563613, -0.0142931528, 0.00769631285, 0.0114805466, 0.0217593424, -0.021899974, 0.0218488351, -0.0181796625, 0.00788168889, 0.00211424869, 0.00365638779, 0.014408214, -0.0100167133, -0.00924324617, -0.0316801704, 0.00640507089, 0.022692617, -0.00314820115, 0.00699955365, -0.0210050531, -0.0139607536, -0.0268731713, 0.0134238014, -0.0122092674, -0.0115316845, -0.00343905017, -0.0101637356, 0.0178600475, 0.00270393724, -0.0103235422, 0.000681577541, -0.00522569427, -0.0151752876, -0.0115508614, 0.00987608265, -0.00726802973, 0.00586492289, -0.0217082053, -0.00244185352, -0.0414475836, -0.0138201229, -0.00458326936, -0.00693563092, -0.0136027858, -0.0129379882, -0.00738309091, 0.00685253087, 0.00119855371, 0.00213022949, 0.0340581, -0.00747258263, 0.00289570587, -0.0176938493, -0.0085464865, -0.015354272, -0.00831636507, 0.0132320328, 0.014881243, -0.0217721276, -0.0013759397, -0.0103810728, -0.00407188665, -0.00878300145, -0.0130786179, 0.0149068115, 0.000481818599, -0.0371008292, -0.00215420057, 0.00495082606, -0.0395810381, 0.029967038, -0.01825637, 0.00196243194, 0.0159935, 0.00334955798, 0.00482937228, 0.0069612, -0.012586412, -0.00704429951, -0.0097929826, 0.00502114091, -0.0127973575, -0.0203274712, 0.00476864586, -0.00011556055, -0.00311783771, -0.0118960449, 0.00447460031, -0.00247061881, 0.00735752145, 0.00211744499, -0.0149963042, 0.0111225788, 0.00318335858, 0.00273110438, -0.0178216938, -0.00195603957, -0.0240861345, 0.00955646858, -0.00953729171, 0.00271352567, -0.0280237831, 0.0104002496, -0.0286885817, 0.00348379603, -0.00478462642, -0.0176682789, 0.00170514244, 0.00213662162, -0.00355730741, 0.00611422211, -0.00836111, -0.0172719583, 0.00240989192, -0.00697398465, -0.0152647803, 0.0179878939, -0.00868072454, -0.00955646858, 0.0142292297, 0.0195476115, -0.00351256132, -0.010106205, -0.0187038295, -0.00965235289, 0.00283338106, 0.00566036953, -0.00327604683, 0.00854009483, 0.0155971786, 0.0241372734, 0.00136155705, -0.0239455048, 0.00739587517, -0.0107837869, -0.0180646013, -0.0293022413, -0.00442026602, -0.0141525222, 0.0139096156, -0.0175787881, 0.0132831708, -0.0175276492, 0.00326805655, -0.00590008032, 0.00958203711, 0.0196498893, -0.00109308097, -0.0218232665, 0.0063763056, -0.0142420139, -0.0030682974, 0.0310920812, 0.00184417458, 0.0178728327, -0.00957564544, 0.00449058134, -0.0136539238, 0.00781137403, -0.00571150798, -0.00151497184, -0.000588090334, -0.00133438979, 0.00628361758, -0.0139607536, -0.00442026602, -0.0175787881, 0.00592884561, -0.0114677623, -0.0102660116, 0.00159966969, -0.0422913656, -0.000516177155, 0.00896837749, 0.00185056694, 0.0176938493, 0.0169779137, -0.00985690579, -0.0290976875, -0.0366917253, 0.0204297472, -0.0108732795, -0.010528096, -0.00089012587, -0.0275635384, 0.0099591827, 0.0199183654, -0.0228716, -0.00418055523, 0.00905787, -0.0075940364, 0.00760042854, 0.00160925812, -0.0173998028, -0.00839946419, -0.00515537895, 0.00706986897, -0.0296602082, -0.00825244188, 0.0234085526, 0.0193941966, -0.0116978837, -0.0197777338, 0.0100486744, -0.00379062584, -0.00742144464, 0.0305806976, 0.0326262303, 0.0092816, 0.00190010713, -0.028816428, 0.0150602264, -0.00809263438, -0.00652013207, -0.0112568168, -0.0115828235, -0.00874464773, 0.00128165341, -0.000122951635, 0.00891723949, 0.00512341736, -0.0146383364, -0.000141429337, 0.0329841971, -0.00156211504, -0.0162875466, -0.0187805369, 0.00480699958, 0.0137178469, -0.00715936068, -0.026438497, 0.00122412283, -0.00542065874, -0.0156994555, 0.00658405479, -0.00485494174, 0.0260549597, -0.00266558351, -0.0085017411, -0.0223985724, 0.0200717803, 0.00263362192, 0.0120622441, 0.00347101153, 0.00609184895, 0.0138584767, 0.008706294, 0.0095948223, 0.0192535669, -0.0151369339, -0.00409745565, 0.00739587517, 0.013986323, -0.00739587517, 0.0034198733, 0.00839946419, 0.0151369339, 0.00674386229, 0.00674386229, 0.00110666454, 0.0234724749, 0.00776023557, 0.00438191229, 1.68546612e-05, 0.00560603524, -0.00495721819, 0.00884053204, 0.0205703769, -0.0157889482, -0.00190809753, 0.0155588249, -0.00333677349, 0.0213374514, -0.00283338106, -0.0119216144, -0.0119216144, -0.00920489244, -0.013666708, 0.00795200467, 0.0313222036, -0.00309546478, -0.0286118742, -0.0127973575, 0.0101509504, 0.00994000584, 0.00498278718, 0.0118065532, -0.0203019, -0.00589688402, -0.0183714312, -0.0125736278, -0.00786251202, -0.0284840278, 0.0183202922, 0.00400157133, -0.0157122407, 0.0303250067, -0.012113383, -0.0233829841, 0.0308363903, 0.0155716101, -4.36723021e-05, -0.0206215158, -0.00608865265, 0.00788168889, 0.0065041515, -0.00988247525, -0.00839946419, -0.0348507464, -0.0139224, 0.00140470499, 0.0250577629, -0.00307468977, 0.016146915, -0.00852731, 0.0203274712, 0.0155332563, 0.0291488264, -0.0110650482, 0.016146915, -0.0156611018, 0.0029772073, -0.0143570751, 0.0236770287, -0.0125160972, 0.00440428546, -0.00916014612, 0.00423169369, -0.00566676212, -0.00667993911, 0.00495721819, 0.00703151524, 0.00239870558, 0.0206215158, 0.00355730741, 0.0211712532, 0.00213821977, -0.0110075176, -0.0147917503, 0.00567315426, -0.0134749394, 0.00543663977, -0.0192663521, -0.0110970093, -0.000893322052, 0.00638909033, -0.0276658162, 0.0192024279, -0.0222962946, -0.0253390241, 0.0163003299, 0.00165080791, 0.00699316151, 0.000233318453, 0.00520971324, -0.0131297568]
|
17 Feb, 2021
|
Fabric.js Polyline cornerStyle Property
17 Feb, 2021
In this article, we are going to see how to change the style of controlling corners of a canvas Polyline using cornerStyle Property in FabricJS. The canvas means the Polyline is movable and can be stretched according to requirements. Further, the circle can be customized when it comes to initial stroke color, fill color, stroke width, or radius.
To make it possible we are going to use a JavaScript library called FabricJS. After importing the library using CDN, we will create a canvas block in the body tag which will contain our Polyline. After this, we will initialize instances of Canvas and Polyline provided by FabricJS and change the style of controlling corners of the circle using cornerStyle property, and render the Circle on the Canvas as given in the example below.
Syntax:
var polyline = new fabric.Polyline(Points, {
cornerStyle: string
});
Parameters: This property accepts a single parameter as mentioned above and described below:
cornerStyle: It specifies the style of the controlling corners. The accepted values of this parameter are circle and rect.
The below example illustrates the cornerStyle property in Fabric.js:
Example:
HTML
<!DOCTYPE html>
<html>
<head>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;width: 600px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Polyline cornerStyle Property
</b>
</div>
<canvas id="canvas"
width="600"
height="200"
style="border:1px solid #000000;">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a polyline instance
var polyline = new fabric.Polyline([
{ x: 200,
y: 10 },
{x: 250,
y: 50
}, {
x: 250,
y: 180
}, {
x: 150,
y: 180
}, {
x: 150,
y: 50
}, {
x: 200,
y: 10 }], {
cornerStyle: 'circle'
});
// Render the polyline in canvas
canvas.add(polyline);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js Polygon cornerStyle Property/Fabric.js Polyline cornerStyle Property
|
https://www.geeksforgeeks.org/fabric-js-polyline-cornerstyle-property/?ref=next_article
|
CSS
|
Fabric.js Polyline cornerStyle Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, Fabric.js Polygon cornerStyle Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, Fabric.js Polyline cornerStyle Property, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.00782978442, -0.00567593891, -0.0168248694, 0.0381538309, 0.0409034193, 0.0421341881, -0.0439410619, 0.0178985205, -0.011548277, -0.0439934358, 0.00917839259, -0.0109590786, 0.00847790204, -0.0490736291, -0.0113387844, 0.014428799, -0.0306120981, 0.00624877, -0.0180032663, -0.0170998294, -0.0069394405, -0.0280720014, -0.039934516, 0.00532569317, 0.0104091614, 0.0459574275, 0.0257413965, 0.0185269974, -0.0339639783, 0.0123862466, -0.0023698844, 0.014729945, 0.00440589, -0.0175188147, 0.00820294302, -0.0334402472, 0.0116268368, 0.027129285, -0.024274949, -0.0025499172, -0.0102193085, -0.00795417, 0.0282029342, 0.030638285, 0.0123273274, -0.00684124092, -0.00365957292, 0.0145204524, 0.00637970259, -0.076150544, -0.00567266531, -0.00271521974, 0.0176366549, 0.00642552925, 0.0145728253, 0.00510310754, -0.0031653014, 0.0449885242, -0.00739770569, -0.00741734542, -0.0111554787, -0.0705989897, -0.038075272, -0.0111031048, -0.0434435159, 0.0111489315, 0.00817021, 0.0380229, -0.0158821531, -0.00631423621, -0.0237381253, 0.0176890269, 0.0318428688, -0.00368575961, -0.000894435, -0.00866775401, 0.0430245325, 0.00492634811, -0.0395155326, 0.0412176587, -0.0276530161, -0.0119345291, -0.00842552818, 0.0241702031, -0.00634042313, -0.0273649637, 0.0464549735, -0.0363469571, 0.0280196276, 0.0269983523, -0.00404582499, 0.00498854136, 0.0305335391, -0.0483927801, -0.0199934449, -0.00786251761, 0.00221440173, -0.00900817942, -0.0185924638, -0.00156219245, -0.00361701986, 0.048576083, 0.00786251761, -0.00658592209, 0.0359803438, -0.055515524, 0.0167070311, -0.0035646467, -0.00321112806, -0.0073125991, 0.0338854194, -0.0382323898, 0.00058346946, 0.0326808393, -0.0424746126, 0.0245891884, -0.016405886, -0.0491260029, 0.0471358225, -0.0118428757, 0.000887888367, -0.0252176654, 0.0120392749, 0.00868084747, -0.00936169829, 0.0219836235, -0.0185793713, 0.00462847622, 0.0169950835, 0.00452373, -0.0279934425, -0.0470834486, 0.0143109597, -0.0275220834, 0.0258592367, 0.0267364867, -0.00997708272, 0.00955809746, 0.00245990069, 0.00752863847, 0.00308837835, -0.0341996588, 0.0100883758, 0.0162880458, 0.0117774094, -0.010671027, 0.0315024406, -0.00287724915, 0.000774140412, 0.0369492471, -0.061171826, 0.0200981908, 0.0326546505, -0.00688052084, 0.0568248555, -0.0357970409, -0.032392785, 0.0207135752, 0.033466436, -0.0406677425, 0.0278625097, 0.0408772342, 0.0049427147, 0.0449361503, -0.0301669277, -0.0141014671, 0.0171522032, 0.00672994833, -0.0590768978, 0.0176366549, 0.00280687283, 0.00952536426, 0.045040898, -0.01253682, -0.0381014571, -0.0393322259, -0.013852695, -0.0417675786, 0.0137872286, -0.0244844425, -0.0392798521, 0.00313584157, 0.0124058872, 0.0698657632, 0.0149787171, 0.0101014692, 0.0364778899, -0.00165139046, -0.00473649567, -0.0282029342, -0.00803273, 0.0473191291, 0.0430507176, -0.000342062063, -0.00277250307, -0.00226677489, 0.0110441856, 0.0157250352, -0.0228739679, 0.0179247055, 0.0228346884, -0.0218526907, -0.0285695456, -0.0475286208, 0.0385990031, -0.0193780605, -0.0146906646, -0.0280458145, 0.0416628309, -0.0227430351, -0.00101963955, 0.0157250352, 0.0261734761, 0.00771194464, 0.00847790204, -0.00412111124, -0.00944025815, -0.00272176648, 0.00331751094, -0.0348543227, 0.0283600539, 0.0313715078, -0.0471096374, -0.00976104382, -0.0689230487, -0.00816366263, 0.0158952475, 0.022271676, -0.0177152138, -0.0318952389, 0.0113060512, -0.00193453277, -0.0172569491, 0.00737806549, 0.0163404197, 0.0241440162, -0.0249034259, -0.0169165228, 0.0124386204, 0.0059443512, -0.00313747837, -0.0208314154, -0.015279863, -0.0116530228, 0.0118166888, 0.00205073575, -0.0112274913, 0.00540098, 0.00645498931, -0.000804009498, -0.0148477843, -0.00454991637, 0.00908019301, -0.00417348417, -0.0404058769, -0.0095122708, -0.0269721653, -0.0377872176, 0.0471358225, 0.0182389449, 0.0452503897, 0.0265269931, -0.00875286, 0.0399083309, 0.000269230659, -0.0119279819, 0.0031505716, -0.0224026088, -0.0183175039, -0.00500163483, 0.0232405793, -0.0371587425, 0.0574533306, -0.0061440235, -0.0128837917, 0.0230179932, -0.0225728229, -0.025152199, 0.0225990079, -0.00667102821, -0.0189067032, 0.00862847455, 0.0290932786, -0.00143862457, -0.0367397554, -0.0174009744, -0.00414075097, 0.000765957113, -0.0275220834, -0.0368706882, -0.0254664384, -0.0195482727, 0.0188412368, -0.015581008, 0.00828150194, -0.00291325571, 0.0129558053, -0.0279148817, 0.000787233701, 0.00953845773, -0.0278625097, -0.0407463, -0.0147168515, -0.0195351802, 0.0230834596, 0.0186448377, 0.0508543178, 0.00282487599, 0.0211849343, 0.00493944157, -0.0126742991, -0.0171783883, -0.0172569491, -0.0145466393, 0.0025499172, -0.0138396015, 0.0685564354, 0.00862192735, -0.025702117, 0.0106186531, -0.0359541588, 0.00527332025, 0.0140883736, 0.0324975327, 0.0516137257, -0.0260818228, -0.000148220075, -0.0232798588, 0.000131955763, 0.0182389449, -0.0212765876, 5.87663417e-05, -0.00448445, 0.0216301065, 0.00263011339, -0.00791489054, -0.0173224155, -0.0197315793, -0.0296955686, 0.00095089979, 0.0214598924, 0.0356137343, -0.000443535, 0.0031898513, 0.0406939276, -0.0582389273, -0.0217479449, 0.00405891798, 0.0323666, 0.0374206081, 0.000908346614, 0.0337021127, 0.0033453342, -0.0217348523, -0.00151309266, -0.0260556359, 0.00528968684, -0.0359541588, -0.0209361613, 0.00335842744, 0.0215646401, 0.0122160343, -0.00877250079, 0.0270507261, 0.0448314063, -0.0163011383, -0.0287266653, 0.0159214344, 0.0151882097, 0.00499836123, -0.031188203, -0.0461669192, -0.0163011383, -0.019587554, -0.0171260163, -0.0107954126, 0.0367135704, -0.0055220928, -0.0365826376, 0.000904254965, -0.0232536737, 0.0447790325, 0.0111947581, 0.00354500674, 0.0110114524, 0.0456431881, -0.0186186507, 0.00613747723, 0.0303240474, -0.0118625155, -0.0202684049, 0.0345662721, 0.0654664189, -0.0192209408, 0.0039476254, -0.0189328883, -0.0125564598, -0.00843862165, 0.0169034302, -0.0549394228, -0.00254009711, -0.00622258335, -0.0103895208, -0.0225728229, 0.0196923, -0.0295384489, -0.0280196276, 0.00405564485, -0.00250736391, -0.00621276349, 0.0141407475, 0.00291816564, 0.0197053924, 0.0043862504, 0.0538919568, 0.0317643061, 0.0119999954, 0.0563011244, -0.0118363295, 0.0114828106, 0.0876726285, -0.0134337097, -0.0403011292, -0.0031669382, -0.00510310754, -0.0110769188, -0.0129165249, 0.000554009574, 0.0198101383, -0.00204255246, -0.0911816284, 0.00639606919, 0.0150179975, -0.010972172, 0.00389197888, -0.000244680763, 0.0307430308, 0.0177414, 0.0428412259, 0.0241571087, -0.0149787171, -0.00262029353, 0.046193108, -0.0190507285, -0.00133960671, 0.019967258, -0.0411914736, -0.0168772433, 0.0227168482, -0.00613420364, -0.0029721756, 0.00452045631, -0.0545728095, -0.0134991761, -0.0148085048, -0.00111947581, 0.0342782177, 0.00603600405, 0.0384942554, -0.0215253588, -0.00679541472, -0.0258985162, -0.0120654618, 0.0101538422, 0.0107037602, -0.0268936064, -0.00677577453, -0.0100360028, 0.0178461466, 0.00192962273, -9.25736094e-06, -0.00214238861, 0.00799345, 0.0166677516, -0.00563338539, -0.0063338764, 0.0015581008, 0.015581008, -0.0103436951, -0.0300359949, 0.0429983474, -0.00841243472, 0.0142062139, 0.0243927892, -0.00278068637, -0.0119934482, 0.000264116097, -0.00639934279, -0.00817675609, 0.00874631386, 0.042186562, 0.0204778966, -0.027757762, -0.00306546525, -0.0181211047, 0.0322618522, 0.025152199, -0.0133551499, 0.0498592257, -0.0128772454, 0.00542061962, -0.00430114381, -0.0181211047, 0.0360589065, 0.0383371376, 0.000168985207, -0.00622258335, 0.036425516, -0.000700899865, -0.00161783898, -0.0166546572, 0.0234107915, -0.0165237244, 0.024523722, 0.00777086429, -0.0246415604, 0.015855968, 0.0031505716, -0.0360850915, 0.000169905819, 0.0302978605, -0.0322618522, 0.00680196099, -0.0325760916, 0.00030953341, 0.0667233765, 0.0118690627, -0.0225990079, 0.00797381, -0.0097348569, -0.00169067038, 0.000370294438, 0.0153715154, 0.027155472, 0.00282160286, -0.0242880415, -0.0101734819, 0.00440916372, 0.00282814936, -0.00775777083, -0.0560392551, 0.0178985205, -0.0293027703, 0.00476268213, 0.011574463, 0.0445695408, -0.0104615344, 0.0119672623, -0.00909983274, 0.0165630039, -0.0481571, 0.0183829721, -0.00925695244, -0.00517184753, 0.0166546572, -0.00294926227, 0.0145597318, -0.0241702031, -0.025099827, 7.39565949e-05, 0.0077381311, -0.00377741246, 0.025152199, 0.0102062151, 0.00177086669, -0.0432863981, 0.00989852287, -0.00649099564, -0.0203862432, -0.00360719976, 0.00446808338, -0.0152929565, 0.00411129138, 0.0331783816, 0.0227561276, -0.0264615268, 0.019967258, -0.0149918105, 0.0165237244, 0.0412176587, -0.0184353441, -0.0191554744, 0.00748935854, 0.00981341675, -0.00504746102, 0.0109328926, -0.00845171511, -0.00132242171, -0.0402487554, -0.031711936, -0.00997053646, 0.0257283039, -0.0123600606, 0.00779705076, -0.0329427049, 0.042788852, 0.0255842768, -0.0223895162, 0.00406546472, -0.0240523629, 0.0107299462, 0.0317381211, 0.00847790204, 0.00443535, -0.000452127482, -0.037603911, 0.0305073522, 0.0157905016, 0.00323731452, 0.016733218, 0.00452373, -0.00213420531, 0.00284287939, -0.0341472849, -0.0273387786, -0.0182782244, 0.039829772, 0.0344353393, -0.00971521717, -0.0284124278, 0.00866120774, -0.0360850915, 0.0579770617, -0.00440589, 0.0109656258, -0.0344353393, 3.16847254e-05, -0.0232405793, 0.0214075204, -0.0147954114, -0.0118363295, -0.0174926277, -0.00883142, -0.000722585653, -0.00947299134, 0.0160785522, -0.0149263442, 0.0212896802, -0.0243011359, -0.000876431703, -0.0210016277, -0.0121636614, -0.00449099671, 0.0295384489, 0.007927984, 0.0256235581, -0.0501210913, 0.0254140645, 0.0192471277, 0.0071162, -0.00756791839, 0.00531914691, -0.0236333776, 0.0186055563, -0.0205957368, 0.0203731507, -0.0021914884, 0.0483142175, -0.0129558053, -0.0187495835, 0.0149394376, -0.0118821552, 0.00782323722, 0.012124381, -0.0168379638, 0.011109652, 0.0237250309, 0.037499167, -0.00563665899, -0.00687397411, -0.0303764194, 0.00535842683, -0.0132242171, -0.000842061825, 0.0255580917, -0.00616693683, -0.0348805077, 0.0101865754, 0.0447528474, 0.00543371309, -0.00634369627, -0.0288575981, -0.0012667753, -0.00556464586, 0.0161702055, -0.00192798616, -0.0275744572, 0.00526350038, 0.00779050402, -0.0029541722, 0.0207790416, -0.00682814792, -0.0297741294, 0.0025744671, 0.0508543178, -0.0183436908, 0.0141014671, -0.0243666023, -0.00469394261, -0.00239116116, -0.0145597318, -0.00480523519, -0.0332307555, 0.00179869, -0.0235810056, 0.0496497341, -0.0100098159, 0.0132831372, 0.00460228929, -0.0232536737, 0.0223502368, 0.0186841171, 0.00528314, 0.0203993376, 0.00467757601, -0.015279863, 0.0165499114, -0.0182651319, 0.0109787192, -0.00208019558, 0.0184746236, -0.0105400942, 0.0234107915, -0.0283862408, -0.00461538276, -0.00905400608, -0.0152013032, -0.0396726504, -0.0112274913, -0.00427823048, 0.0041505713, -0.00993780326, -0.0151358368, -0.0138134146, -0.0303764194, 0.0256890245, 0.011247131, 0.00826840941, -0.0141407475, 0.00450081658, 0.0144680794, -0.0449885242, -0.0077512241, -0.00254500704, -0.00498526823, -0.011685756, -0.0103240544, 0.0145073589, 0.0339377932, 0.000936169818, -0.00250572735, -0.00745662535, 0.0182389449, -0.00539770629, 0.00864811428, -0.0196268335, -0.0107561331, 0.00291325571, 0.00701800035, 0.0458526835, -0.00881832745, 0.0498592257, -0.0163797, 0.0374729782, 0.0305335391, 0.0107037602, -0.0153715154, 0.00486088172, 0.0163927916, 0.00663174829, -0.00040220932, -0.00182160316, 0.00690016104, 0.00291489251, -0.00348281371, 0.0235417243, -0.0021849419, -0.039829772, -0.0023797045, -0.00648444891, -0.0055220928, 0.0172045752, 0.034671016, 0.0184222516, 0.0129296184, 0.000492225634, 0.00635678973, -0.020216031, 0.00632405654, 0.00706382701, 0.0339377932, 0.0336235538, 0.00781014422, 0.0172045752, 0.0233060457, -0.0140883736, -0.0393060409, 0.00872012693, -0.0247463081, -0.0336759277, -0.0403273143, -0.0416890159, 0.00705728028, -0.00103027781, 0.0267495792, -0.00431096368, -0.0162618589, -0.017034363, -0.0206481088, 0.00920457859, -0.00804582331, -0.0053486065, -0.0270769112, -0.00806546304, -0.00353518687, -0.0204909891, 0.0258592367, 0.0179770794, -0.0204517096, 0.0414271504, -0.00565957231, -0.0206481088, 0.00563011225, -0.0207266696, -0.0590245239, 0.0389132425, 0.0329427049, -0.0156988483, 0.00574467843, -0.00472340221, -0.0191554744, 0.010808506, -0.0429983474, 0.0472405702, -0.00265466329, 0.0129427118, 0.0161833, 0.0563534945, 0.00114238902, 0.00879214052, -0.00210801885, 0.0211587474, -0.0110834651, -0.0209361613, 0.0142062139, 0.0384942554, 0.015306049, 0.0553060323, 0.0231751129, -0.00794762373, -0.000233633298, -0.00891652703, 0.00350900018, 0.031135831, 0.02595089, 0.0155548221, -0.00841898192, 0.00936824456, -0.0103502413, -0.0336759277, 0.0063338764, 0.0278101359, -0.0148085048, -0.00273158634, 0.0417413898, -0.0344353393, 0.0129558053, 0.00424549729, -0.033466436, 0.00252045714, -0.0129296184, 0.00256301044, 0.0223109573, 0.0145728253, 0.0225597285, -0.0210409071, -0.0129165249, -0.00269558, -0.00843862165, 0.00304091536, 0.0161309261, -0.0355089866, -0.0254140645, -0.0212242138, -0.0176235605, -0.0136301089, -0.0161047392, -0.00484124199, 0.000997544616, -0.0396202765, -0.00843207538, -0.00759410486, 0.0185008105, -0.0247201212, 0.0176890269, 0.0296170097, -0.0108805196, -0.0180687327, -0.0158035941, 0.0264222473, 0.00490343478, -0.016157113, 0.00272667641, -0.00523076719, 0.0302193, -0.0234893523, 0.0500949062, 0.0161309261, 0.014428799, 0.018212758, 0.0337806754, -0.0302193, 0.0219836235, -0.0166677516, 0.0349590704, 0.0271030981, -0.00923731178, 0.0309787113, 0.0113453306, -0.0143109597, -0.0157643147, -0.00113502413, 0.00143125968, 0.0289885309, -0.0266186465, 0.00608837744, -0.0335973687, -0.0105466405, -0.0134206163, 0.0116202896, 0.0011039275, 0.0282291211, 0.0308215916, -0.0153191425, 0.0167724974, -0.0104288012, -0.0078952508, -0.00320294476, -0.0221014638, -0.0184353441, 0.0149918105, 0.000222176663, -0.00827495568, -0.0208183229, 0.00190998288, -0.0801309, 0.0136562958, 0.0249165203, -0.00718821306, 0.0217741318, -0.0154107958, 0.0169296172, 0.0274435245, -0.0194828063, 0.00437315693, 0.00182160316, -0.00918493886, -0.0168772433, -0.004772502, 0.011299504, 0.0238428712, -0.00529950671, 0.0135646425, 0.0148608778, 0.021093281, -0.0310834572, -0.0113715176, 0.00824876875, -0.00394107867, -0.0159869, 0.0376824737, 0.0134598967, 0.00756137166, -0.000968903, 0.00579705182, 0.00618657703, -0.000356587407, -0.0120065417, -0.00912601873, 0.00163666054, 0.0149001572, 0.0343044065, 0.00345662702, 0.0116988495, 0.0314762555, -0.00799345, 0.0195613671, 0.00308019505, 0.00696562743, 0.00449754298, 0.0069394405, -0.0208183229, -0.040929608, 0.00905400608, 0.0221538376, 0.0200065393, -0.00190998288, 0.0240654573, -0.0307430308, -0.0166153777, -0.0106448401, -0.00545662642, -0.0111554787, -0.0255711842, 0.0278363228, 0.0265008081, -0.0160523672, 0.00138134148, -0.00981341675, 0.0411914736, -0.0698657632, 0.013139111, -0.02595089, -0.0127201257, 0.0151620237, 0.0178723335, -0.021342054, -0.00529296, 0.0153584229, 0.0239083376, -0.0131718442, 0.0103764283, 0.00294435234, 0.000570785371, -0.00547626615, -0.000571603712, -0.00699836062, 0.0246546548, 0.0166939367, -0.0107692266, -0.0106382938, 0.0105139073, 0.00283796946, -0.0119279819, 0.00866775401, -0.00864811428, -0.020517176, -0.0218919721, -0.0206873901, -0.0374467932, -0.00177414, 0.00270376331, 0.0035548266, 0.001875613, 0.00268903328, 0.0075482782, -0.0191816613, 0.00518166739, -0.0136693893, 0.00786251761, -0.0188412368, -0.00231096474, 0.0223371424, -0.0103698811, 0.011109652, -0.0110703716, -0.0269459784, -0.00232078461, 0.00401636492, 0.00632732967, -0.000921439903, -0.0113387844, -0.016484445, -0.0206088293, -0.020216031, 0.0386251882, -0.0165891908, 0.00207528565, -0.00033081, 0.0129623516, -0.0159607138, 0.0180556383, 0.0166546572, 0.00543371309, 0.003003272, -0.0118297823, -0.0125695532, 0.00493616797, -0.0100490954, -0.023973804, 0.0118101425, -0.0177283064, 0.0137348557, 0.00387888541, -0.00118085055, -0.0142585868, 0.0166677516, -0.00242716749, -0.00898854, -0.0233322326, -0.0228739679, 0.0223502368, 0.000572422, -0.0203600563, -0.00580032496, -0.044543352, -0.00840588845, 0.0621669143, -0.00124386197, -0.0267364867, -0.0169819891, -0.00250081741, -0.0324189737, 0.00333878747, 0.0256366506, -0.00892962, -0.0303240474, 0.0270245392, -0.0088707, -0.00889034, 0.0340163521, 0.00586906448, -0.0127659524, -0.00349263358, -0.0129296184, 0.0265269931, -0.01678559, -0.0222062096, 0.00927659217, 0.0142716803, -0.0163666047, 0.0161833, -0.0232667662, 0.00449427, -0.0162356719, 0.0123404209, 0.0053486065, 0.00206055562, -0.0249688923, 0.0395155326, 0.00521112699, -0.00210147211, 0.0290147178, 0.0201374721, -0.0166546572, 0.0104484409, -0.000493862317, -0.00376104587, 0.0217086654, 0.0275744572, -0.0175450016, 0.015306049, 0.0111227455, -0.0324451588, 0.0119476216, -0.0210540015, -0.0173486024, -0.00820294302, -0.012890338, -0.0183567852, -0.00565629872, 0.0214206129, 0.00285597262, 0.00125204527, -0.0121833012, 0.0386251882, -0.0245368145, -0.0195351802, -0.00446808338, -0.023973804, 0.0141669335, 0.0240785498, 0.000736088085, -0.0249688923, 0.0395940915, -0.0010711943, 0.0114435302, 0.016759403, 0.0302454866, 0.0315024406, -0.00534533337, -0.0388608687, -0.00335515407, -0.0240916423, 0.0123404209, 0.0177152138, -0.0197053924, 0.0015916524, -0.0270507261, -0.019639926, 0.0243796948, -0.0037577725, 0.0203862432, -0.00513584074, -0.0166284703, 0.000183203694, 0.0192602221, -0.0266841128, 0.0067364946, -0.0263175014, 0.0275220834, 0.0153191425, -0.0259377956, -0.0124648064, 0.00643534912, -0.000439443364, 0.000443944184, -0.0395155326, 0.0278101359, 0.0141145606, 0.00383960572, -0.010068736, -0.027207844, 0.0207528565, 0.00369230611, 0.0262127556, 0.00838624872, -0.0154107958, 0.00206710235, 0.0115875565, 0.0172700416, -0.00928313844, 0.015855968, 0.0119541688, 0.00716857333, 0.0186972097, -0.00688706758, -0.0119476216, -0.00998362899, 0.0177544933, 0.0180687327, -0.00288052252, 0.00181669323, -0.0219050646, 0.0111031048, 0.0265008081, -0.0127397655, 0.0296955686, 0.0107757729, 0.0117708622, 0.0075351852, -0.0221538376, 0.0234238859, -0.00844516885, -0.0106841205, 0.0109394388, 0.00955155119, -0.000810556114, -0.0188543294, -0.00817675609, -0.0101931216, 0.0151620237, 0.0043535172, 0.00169230695, -0.00709656, 0.011548277, -0.00647135591, -0.0011931255, -0.0285171736, 0.0219181571, -0.00522749359, 0.0119672623, -0.000963993079, 0.0126677528, 0.0111816647, 0.0189459827, 0.00997053646, 0.0187757704, -0.00993780326, -0.0104615344, 0.0140098138, 0.000195580928, 0.0148608778, 0.000279255211, -0.0135384556, 0.0031587549, 0.00806546304, 0.00920457859, -0.00107774092, 0.00535515323, -0.000470949075, 0.017610468, 0.0237774048, 0.00483469525, -0.040929608, 0.0209230687, 0.0117970491, -0.0009901796, 0.032314226, -0.0144811729, 0.00552863954, -0.0405368097, -0.0108870659, -0.0216824785, -0.00284615275, 0.0156464744, 0.0232274868, -0.0118101425, 0.0130409114, 0.0029967255, 0.0154369818, 0.0141407475, 0.0128576048, -0.0187103041, -0.0372896753, -0.0147692244, -0.0124058872, 0.00958428439, 0.0307430308, -0.011109652, 0.00106464769, -0.0116726626, 0.0145204524, -0.023148926, 0.00348936021, 0.00542716635, -0.00172667683, 0.0162487663, -0.0114828106, -0.010945986, 0.0203993376, 0.0243142284, -0.00368903275, 0.0181472916, 0.0061276569, 0.0202291235, 0.00432733027, 0.000702536548, 0.0039476254, 0.0119345291, 0.0191292893, -0.00144107966, -0.00718166633, 0.000104950857, -0.00300490879, 0.0109918118, 0.0114435302, -0.032288041, 0.000311579264, 0.0205957368, -0.0109787192, 0.0106055606, -0.01678559, -0.00670376141, -0.0170998294, 0.0132831372, -0.00609165058, 0.0248117745, 0.0161963925, 0.0221407432, 0.0220359974, -0.0193256885, -9.72278649e-05, 0.00968248397, 0.00344353379, -0.0139181614, 0.00432078401, 0.0159345269, 0.00604255078, 0.00454664277, -0.00387888541, -0.010808506, 0.0221407432, -0.00598035753, -0.0322094783, 0.015855968, -0.0157381278, -0.00337479403, 0.00942716468, -0.0249950793, -0.0198363252, -0.0217217579, 0.00261865696, -0.0257413965, -0.00857610162, -0.0053355135, -0.0227954071, -0.0292503964, 0.0447266586, 0.0225728229, 0.0160130858, 0.0145597318, 0.00366939302, 0.0100425491, -0.00293453224, -0.0136432024, 0.0067234016, -0.0126873925, -0.0178592391, -0.00143289636, -0.00655646203, -0.00384615222, 0.00806546304, -0.0199279785, 0.021093281, 0.00332733081, -0.0025891969, 0.00158428738, 0.0177283064, 0.00570539851, 0.00100327295, -0.0133944303, 0.0174271613, 0.0146382917, -0.00518821413, 0.00861538108, 0.0204124302, -0.0140229072, 0.00206873892, -0.00924385898, -0.0274958964, -0.0258199573, -0.0201505646, -0.00227495818, 0.0164713524, 0.0211849343, -0.0438363142, -0.00624222308, -0.00445171678, 0.0134729892, -0.0285957325, -0.00547953928, -0.0221407432, -0.0129885385, 1.65456149e-05, -0.000635842618, 0.00602945732, 0.00201472919, -0.00838624872, -0.00486088172, -0.0138396015, -0.00696562743, 0.0141800269, 0.0202422179, 0.00815711636, -3.97401636e-05, 0.00441898359, -0.000540916284, 0.00900817942, -0.0270507261, 0.00194926269, 0.00677577453, 0.0192078482, -0.00567921204, -0.00822912902, -0.000831014419, -0.0233715121, -0.0238166843, 0.0393846, -0.0169165228, 0.0067692278, -0.00589852454, -0.00258756033, -0.0168510564, 0.00125040871, -0.0137610417, 0.00291980244, 0.00813747663, -0.00710310694, -0.0107364934, -0.00885106064, -0.00630441634, 0.0334140621, 0.0105008138, 0.0104680806, 0.0207397621, -0.00468084915, 0.0168379638, 0.0220490899, 0.00909983274, -0.00276595633, -0.00346317375, 0.01058592, 0.00527332025, 0.0132045774, -2.02153151e-05, 0.0280981883, 0.00669721514, -0.00445499, 0.0178985205, 0.00866120774, 0.0389656126, 0.00983305648, 0.0206350163, -0.00370867271, 0.0263567809, 0.0090671, -0.0271030981, 0.00759410486, -0.00439279666, -0.00307528512, 0.00231587468, -0.0108477864, -0.0109132528, 0.00099427125, -0.000875613361, 0.0217610393, 0.0111227455, -0.0232536737, 0.00621603662, 0.021944344, 0.00765302451, -0.00461538276, -0.0266448334, 0.0104746278, -0.0234631654, -0.0031489348, 0.0250081737, 0.00678886799, 0.0231751129, 0.0132176708, 0.0611194521, -0.0119672623, 0.000479541544, -0.0112340376, 0.00157201244, -0.0077512241, -0.00775777083, -0.0199541654, -0.0205957368, -0.0201112852, -0.0133944303, 0.0212242138, 0.00172831351, 0.0453813225, -0.00859574135, -0.00254664384, -0.00356137333, -0.0210409071, -0.0313715078, 0.00454991637, -0.0107561331, -0.0073125991, 0.0221800245, -0.0175711866, -0.0233191401, -0.00875940733, 0.00481178192, -0.00200818246, -0.0210278146, -0.00340098049, 0.00347299362, 0.00414075097, -0.0291980244, -0.0175188147, 0.019967258, 0.0181472916, -0.000990998, 0.0075351852, -0.00898854, 0.00780359749, 0.00169885368, -0.0109590786, 0.0106513863, 0.0134337097, -0.0035875598, -0.00803273, 0.0129492581, 0.00578723149, 0.00650736224, 0.028831413, 0.0161309261, 0.00860883482, 0.00874631386, -0.00341080059, -0.0159738064, -0.0108477864, 0.00346972025, 0.0104026143, -0.00354828, 0.00329623441, 0.005567919, 0.0101734819, -0.0219050646, 0.00193780602, 0.000613747688, -0.00437970366, -0.00493944157, -0.0354566127, -0.00539116, -0.00317021157, 0.0248117745, 0.0027675929, 0.00427823048, 0.00828150194, -0.0139574409, -0.00567921204, 0.0256890245, -0.017034363, -0.00115630066, 0.0155417286, 0.00371521944, 0.041008167, 0.0191554744, 0.0242225751, 0.00901472662, 0.0168903377, 0.0174271613, 0.00982651, -0.00434042374, 0.000951718132, 0.00464811595, 0.0119279819, -0.00527659338, 0.028831413, -0.0286742933, -0.0101538422, 0.0255842768, 0.0011767589, -0.000405278057, -0.0100425491, 0.00467757601, 0.0280981883, -0.011384611, 0.0109197991, -0.00489688851, 0.0190507285, 0.00171194691, -0.0171914827, -0.0110638253, 0.00746317208, 0.0155155417, 0.00407855818, -0.0067364946, -0.00607855711, 0.000986088, 0.00608183071, 0.00499836123, -0.00382651226, 0.0129361646, -0.013878881, -0.00646153605, -0.0134206163, 0.0157774072, -0.00487070158, -0.00164729881, 0.00665138848, -0.00433060387, 0.0147823179, -0.0117774094, 0.000670621637, -0.0100425491, -0.0065499153, -0.0107234, -0.000979541335, 0.0328641422, 0.024523722, -0.0083273286, 0.00127577689, -0.0118559692, -0.00156382914, 0.00207037549, 0.0201767515, -0.00409819791, 0.0029721756, 0.00325695449, -0.0249427073, 0.00373485941, -0.0127724987, -0.0237643104, 0.00301472866, 0.0155941015, 0.0163666047, -0.0067234016, -0.00195253605, -0.010533547, 0.00715548, -0.0125695532, -0.000583060319, 0.0207135752, -0.00133142329, -0.010258588, 0.0134991761, 0.005567919, -0.00990506914, 0.0127528589, -0.00370867271, -0.0193518735, 0.00715548, 0.023672659, 0.00276431977, 0.0110310921, 0.00593453133, -0.00727331964, -0.000291121, -0.00341407396, 0.012563006, -0.017584281, -0.0302454866, -0.00735842576, 0.00292471237, 0.00295089907, 0.011849422, -0.00524386, 0.00782323722, -0.00138706982, 0.00310310838, 0.00153927924, 0.0109918118, -0.0230179932, -0.0309263375, -0.0202422179, -0.0441767424, -0.00860228762, 0.00430769054, -3.24263383e-05, -0.0164320711, 0.00218657847, 0.0296693817, 0.00928313844, 0.0181342, -0.00258592376, -0.0314500704, -0.00552536594, 0.0173224155, 0.00662192842, 0.0212896802, 0.00515548093, -0.0390441753, -0.0102651352, 0.00717511959, 0.00793453, 0.00915875193, 0.0114500774, -0.00313747837, -0.0229132473, 0.0109067056, 2.28748886e-05, -0.00581996469, -0.0162094869, 0.00601963745, 0.0203862432, 0.0351423733, 0.0275744572, -0.0263175014, -0.0163535122, 0.00493289484, -0.0206873901, 0.00812438317, 0.00403927825, -0.0188281424, 0.000982814701, 0.0246022809, -0.0017937799, 0.00155482756, 0.00505728088, 0.000597790291, -0.0100425491, 0.00130278175, 0.0115155438, 0.000688215776, 0.0172438547, -0.000592061959, 0.00537806656, -0.00517512066, -0.0019885425, 0.0166022852, -0.0252700392, 0.0089689, 0.0148870647, -0.00942061841, -0.0157119408, -0.0198494196, 0.00409165118, -0.0235417243, -0.0104418946, -0.0181342, 0.00109492592, 0.0139181614, 0.0145335458, 0.0224811696, -0.0011129292, -0.0154238893, 0.00532569317, -0.0103567876, 0.00622585649, 0.0185269974, 0.0192078482, 0.0273649637, -0.0238559637, 0.00102536788, 0.0213551465, 0.010808506, 0.0130801909, -0.00231260131, -0.00579050509, -0.000833878526, -0.00443207659, 0.0180294532, 0.0310310833, -0.00581341842, 0.00799345, -0.00716857333, 0.00496890163, -0.018487718, -0.016484445, 0.0109328926, 0.00765302451, -0.0101734819, -0.000346972025, 0.000942716491, -0.00037131735, -0.00860228762, -0.0133747896, 0.00410147151, 0.023947617, 0.00458264956, 0.0351947471, 0.0160523672, 0.00979377702, -0.00130851008, -0.0139443474, -0.00063666096, -0.00942716468, -0.00082242192, -0.00532242, -0.0211325604, 0.0166808441, 0.00517184753, 0.0168510564, -0.0135908294, -0.0146513851, -0.00296726567, 0.00512602087, 0.00526350038, 0.00845826138, -0.00681505445, 0.0043535172, -0.00364647969, 0.010998359, 0.013165297, -0.0191292893, 0.0155024482, -0.00705073355, -0.0210278146, -0.00285269925, -0.0127201257, -0.00499508809, 0.00390179874, -0.00700490689, -0.0207135752, -2.07907033e-05, -0.01678559, -1.76068879e-05, -0.000152311724, 0.0173224155, -0.0097021237, -0.00724058645, -0.0160654597, 0.00585269788, 0.00581669156, -0.0224026088, 0.00224058819, -0.00461538276, -0.00661210855, -0.0226382893, 0.00153764256, -0.0108477864, -0.016458258, 0.0121963946, -0.0112667708, -0.0143764261, 0.0108215995, 0.00031423883, 0.0282291211, -0.00367593952, -0.0241178293, 0.0242094826, -0.0139967212, -0.0104549872, 0.00849099457, -0.00611783704, -0.00531587331, 0.00818330236, -0.00582651142, -0.00462847622, -0.0179247055, 0.00450736331, -0.00788215734, -0.000260229019, 0.0164713524, 0.0152274901, 0.0103436951, -0.00059697195, 0.0091129262, 0.0181734785, 0.00606546411, 0.0209885351, -0.0119017959, -0.012975445, 0.0057544983, -6.97626529e-05, 0.00160065398, -0.0223371424, -0.0107364934, 0.0208052285, 0.0198494196, 0.00940752495, 0.0299312472, 0.00460883602, 0.0164320711, 0.0175319072, 0.00667430181, 0.00359410653, 0.0146775721, 0.0213813335, -0.00116530235, -0.00822912902, -0.0306906588, -0.0139181614, -0.0160261802, -0.00560719892, 0.0139836278, 0.00649426924, -0.0231358334, 0.00314075151, -0.0051456606, -0.0252962261, -0.0199410729, 0.0101538422, -0.010808506, 0.0163797, 0.00718166633, -0.000800327, -0.00453355, 0.00417348417, -0.00726022618, 0.0142062139, -0.0147430385, 0.00448445, 0.0095122708, 0.00271030981, -0.000760638, -0.0133093232, 0.0142585868, -0.0140621876, -0.0108215995, -0.00706382701, -0.0186972097, 0.00115139072, 0.0273649637, -0.0263960604, 0.00217021187, 0.00209492538, 0.00566284545, -0.0117970491, 0.0205826424, -0.000852700148, 0.016733218, 0.00686742784, 0.00767921144, -0.00141980301, -0.0217610393, 0.00807201, 0.00654664217, -0.0122553138, 0.00956464466, 0.00895580649, 0.000916529913, 3.75409e-05, -0.00281669269, 0.0155417286, -0.000965629704, -0.00216202857, 0.00400981819, -0.0218134113, 0.0025499172, 0.0123862466, -0.0210278146, 0.0246677473, 0.0301407408, -0.00495580817, 0.0116923032, -0.0156726614, -0.007927984, 0.00737151923, -0.0212634932, 0.00180359988, -0.00945989788, 0.00963665731, 0.00180196331, 0.0200589113, -0.0107103065, -0.0193911549, -0.000213993364, -0.0261865687, -0.00969557744, -0.0156464744, -0.0039607184, -0.012975445, -0.00987888314, -0.00297381217, -0.00489688851, -0.000452127482, 0.00373158604, 0.000860065105, 0.0265400875, -0.00618003029, 0.0378919654, -0.012288047, -0.00804582331, 0.0225597285, 0.0124779, 0.0124124335, -0.0057577719, -0.00917184539, 0.0059279846, -0.0207135752, -0.0176235605, 0.0137872286, -0.00344680715, 0.00826840941, 0.00278068637, 0.00487070158, 0.018160386, 0.00942061841, 0.0234107915, -0.0470572636, -0.0113322372, 0.0107299462, -0.00657282863, 0.0267626736, -0.00800654292, -0.0110638253, 0.0143240532, -0.0053813397, -0.00722749298, 0.0135122696, 0.0142193064, -0.00959737785, -0.00613420364, -0.016405886, 0.00593780447, -0.00168412365, -0.0130932843, 0.0196923, 0.0162880458, 0.0067234016, 0.0191292893, 0.01239934, 0.00537806656, 0.00561374566, -0.0055220928, 0.0214206129, -0.0211325604, -0.00215548184, -0.00287724915, -0.0049623549, -0.0307168458, 0.00395089854, 0.00678886799, 0.0191292893, 0.000750408857, 0.01766284, -0.00145580957, -0.00989852287, -0.01165957, -0.013852695, 0.0276530161, -0.0103502413, -0.000672667462, -0.0126808463, -0.0119672623, 0.00898854, 0.0220229048, -0.0077512241, -0.0140883736, 0.00562356552, 0.0129950847, -0.00829459541, 0.0103764283, 0.00366611965, 0.00856300816, -0.00774467783, 0.00906055234, -0.016157113, 0.0292503964, -0.0126939388, 0.00669066841, -0.0181865711, -0.0130278179, 0.0029885422, -0.0174402539, -0.00550899934, 0.0142324, -0.00277413963, -0.0146644786, 0.00733878603, -0.00942061841, -0.0166284703, 0.000661210855, -0.00199508923, 0.0057381317, 0.00739115896, 0.00221112836, -0.00567921204, -0.00968903, -6.76656855e-05, -0.0112864114, 0.00506055448, -0.0324189737, 0.0146775721, -0.00836660899, 0.00324386125, 0.00771194464, 0.0211718399, 0.0168641508, 0.024026176, 0.00546971941, -0.00736497249, -0.0215122662, 0.0172569491, -0.0226382893, -0.0407724865, 0.0113191446, 0.0197970457, -0.0246939342, -0.0105924672, -0.00838624872, -0.0055711926, 0.0057381317, 0.00518166739, -0.0178854261, 0.0154107958, -0.005129294, 0.0188412368, 0.00637315633, -0.0189197958, -0.0177021213, 0.0377086587, 0.0241702031, -0.00115057232, 0.0140621876, 0.00209492538, -0.0114435302, 0.00212274864, -0.0127201257, 0.00779050402, 0.0108805196, 0.00429132394, -0.00796071719, -0.00273976964, 0.00114320742, 0.00474958867, -0.00964320358, 0.0111685712, 0.0142585868, -0.013603922, 0.00348281371, -0.00603600405, 0.02945989, 0.0145073589, 0.017335508, 0.00179869, -0.0313191377, 0.0155941015, 0.0205957368, -0.00482487539, -0.00499836123, 0.015279863, 0.0167724974, 0.0116202896, 0.0160916466, 0.000318944221, 0.019639926, 0.042684108, -0.0171129219, -0.00853027496, -0.00501800142, -0.0113060512, 0.0161178336, -0.00217839517, 0.00476922886, -0.00472012907, 0.00132815, -0.0231096465, -0.0127135795, -0.00112684083, 0.0232798588, -0.00704418682, -0.00771194464, 0.0049590813, 0.000192000734, -0.00957773719, -0.0111489315, 0.0156595688, -0.00411783811, -0.00214729854, 0.0061440235, 0.00508346781, 0.0183305983, 0.00621603662, -0.0146644786, -0.0129688978, 0.00173486012, 0.0106382938, 0.00597053766, -0.00342716719, 0.0102258548, -0.00255155377, 0.0147823179, -0.0178854261, -0.0222323965, -0.00698526716, -0.0053355135, 0.0250212662, -0.0294075161, -0.0132634966, 0.0134075228, -0.00192471279, 0.00771194464, 0.0183567852, 0.0254271589, -0.00443862332, 0.0087397676, -0.0185139049, 0.0144418925, 0.017584281, 0.00426841062, -6.34205935e-05, 0.0187495835, -0.0178461466, 0.0156202884, 0.0111947581, -0.0087397676, 0.00237643113, 0.0200458188, 0.00803927612, -0.02945989, -0.00249099731, 0.00486742845, 0.00111702085, 0.00912601873, -0.00332733081, -0.00822912902, 0.0192078482, 0.0298526883, -0.00588870468, 0.0115286373, 0.00413093111, 0.00465466268, -0.00181505654, -0.0119934482, 0.00277904957, 0.00212274864, 0.00554500613, -0.0067364946, 0.00221112836, 0.0123076877, -0.0118166888, 0.00268248655, 0.0183044113, -0.0131325638, -0.00966284424, 0.0355351754, 0.0296431966, -0.000335106248, 0.0221145581, 0.0134991761, -0.013878881, 0.000283960602, -0.0192602221, -0.0348281376, -0.00624222308, 0.00587888481, 0.0118035963, -0.0308739636, -0.0233584195, 0.00290179905, 0.00575122517, 0.00722094625, -0.0031653014, 0.0113453306, 0.00320785469, 0.0191685688, -0.0309787113, -1.42184881e-05, -0.00997708272, 0.00691980077, -0.0247855876, 0.0176759344, -0.00144844456, -0.010147295, 0.0316071883, 0.00212765881, -0.00509001408, -0.0105531868, -0.00968248397, 0.0145990122, 0.00703109382, 0.0166415647, -0.0168510564, 0.00207855878, -0.00703764055, 0.00189688953, -0.0138003221, -0.00866775401, 0.0137086688, 0.0190638211, -0.0205564555, 0.0120392749, 0.00116284727, -0.0133682434, -0.0121767549, 0.020464804, -0.00890998, -0.0077184909, -0.00705073355, 0.00659901509, -0.0108477864, 0.0136562958, 0.0272864047, 0.0299574342, -0.0217086654, -0.0104484409, 0.0315548144, 0.017283136, -0.0123076877, 0.00488706818, -0.00514238747, 0.014729945, -0.00838624872, 0.00409165118, -0.000634205935, 0.00701145362, 0.000886251684, -0.00869394094, -0.00477904873, 0.00902781915, 0.0104353474, -0.0190638211, 0.00271358318, 0.0202029385, -0.007515545, -0.000851063465, -0.00221767509, 0.0420294441, -0.0177414, 0.00905400608, -0.007515545, -0.0166677516, -0.00616693683, 0.00820294302, 0.00234697131, 0.0053682467, 0.00126841187, -0.0154238893, -0.00585924461, -0.00103846111, 0.0119279819, -0.000251431979, -0.010121109, 0.00541734649, -0.0139312549, -0.0180163588, 0.0090671, 0.0268412326, 0.0155024482, -0.00587233808, -0.0135253631, 0.0118101425, 0.024851054, -0.000567102863, -0.00424222415, 0.00510965427, 0.00631423621, -0.0100883758, 0.0121571142, 0.00395744527, -0.000936988159, -0.0289623458, 0.0212765876, -0.0151358368, -0.00662520202, -0.00639934279, 0.0199279785, 0.00568903191, 0.0314238816, 0.000461947435, 0.00300981873, -0.0191423818, -0.00724058645, -0.030585913, -0.00357774, 0.003751226, -0.00469394261, -0.00471030921, -0.0161702055, 0.00963011105, -0.0156726614, -0.00733878603, -0.00329623441, 0.00247299415, -0.000620294362, 0.000304623449, 0.00904091261, 0.00322749466, 0.0130932843, 0.0181080122, 0.00876595359, 0.0190507285, -0.00650081551, 0.0155417286, 0.00649099564, 0.00461865589, -0.00718166633, -0.00987233594, -0.0104026143, 0.000765957113, -0.0108870659, 0.00614075037, -0.000473813241, -0.000251636549, -0.0090671, 0.0206481088, 6.57221462e-05, -0.00618657703, 0.00307528512, -0.010671027, 0.0145859187, 0.00893616676, -0.0349066965, -0.0109918118, 0.0316071883, -0.00937479176, 0.0259639826, -0.0057250387, -0.0142193064, 0.00372503931, 0.0155286351, -0.0184484385, 0.0117643159, -0.00291652908, 0.00779705076, -0.00318821473, -0.027129285, 0.0224287957, 0.0136301089, -0.0216955729, -0.0203469638, -0.0124386204, -0.00957119092, 0.0019639926, -0.00548281288, -0.00582323829, 0.0126612056, 0.00528314, 0.00225531822, -0.0254402515, 0.0103240544, -0.00785597, -0.0055711926, -0.000405482657, -0.00263175019, 0.00600981759, 0.00776431756, 0.0148346908, 0.0150572769, -0.00152618601, -0.0120261814, -0.0292242114, 0.0226382893, -0.0204386171, 0.00710310694, -0.000710310647, -0.00334206084, -0.00407855818, 0.0148477843, 0.00938788522, 0.00472012907, 0.010507361, 0.00705073355, 0.00468739588, -0.0114828106, -0.0225466359, -0.0115679167, 0.0146382917, 0.0114762634, 0.00270703644, -0.00416039117, -0.00604255078, -0.00742389215, 0.00407528458, -0.0091391122, 0.00919148605, 0.00879868679, 0.00428150408, -0.0160261802, -0.00148363283, 0.0137086688, 0.00365302642, 0.00760065159, -0.0131260175, -0.00749590527, 0.00209983555, -0.0265139, -0.00450408971, -0.00402945839, -0.00817675609, 0.0225859154, -0.00510310754, 0.0275220834, -0.0327594, 0.00496890163, 0.000255932799, 0.000146992577, 0.00562029239, 0.00200163573, 0.00500818109, 0.00179541658, -0.00741734542, 0.00446481, -0.0169558041, 0.027129285, 0.00418985076, -0.00131914834, 0.00650736224, 0.0119541688, -0.00805891678, -0.0133551499, 0.00412111124, 0.00612111064, 0.0282029342, -0.0119214356, 0.00111620245, 3.87683976e-05, 0.00660556182, -0.0366088226, -0.00725367945, -0.00350572681, -0.00195908267, -0.021669386, 0.0111751184, 0.0185662769, 0.0225597285, 0.00978068355, 0.0129427118, -0.000398526841, -0.00626513641, -0.00821603555, 0.0192864072, -0.0176366549, -0.0223109573, -0.0126481131, -0.0078952508, -0.00946644414, -0.0331521966, 0.0262651276, 0.0199410729, -0.00362029322, 0.0127790459, -0.0115810102, -0.00820294302, -0.000370499038, -0.00795417, -0.00498199463, 0.0307168458, 0.00137315819, -0.0130474577, -0.015004904, 0.00976104382, 0.00234206114, 0.00405891798, -0.009518818, 0.00047749572, 0.000574877, 0.00618003029, -0.0073322393, -0.00571521884, -0.0141800269, 0.00457937596, 0.00243535079, -0.00681505445, -0.0065171821, -0.0136301089, 0.0109132528, -0.00522749359, 0.0116464766, -0.00713584, -0.00782978442, 0.00745662535, 0.0149263442, -0.000376841082, -0.0181996655, -0.0196006466, -0.0102847749, -0.00680196099, -0.00608510384, -0.00713584, -0.00214566197, 5.50327095e-05, 0.0152405826, 0.0284909867, 0.00204582559, 0.000933714851, -0.025099827, -0.00558428559, -0.0130801909, -0.00703109382, -0.00318003143, -0.0160130858, 0.0071162, 0.00261211023, -0.00176432007, 0.0141669335, -0.00843207538, -0.0190245416, 0.0214598924, 0.00976104382, 0.00142798631, 0.0221538376, -0.00739115896, 0.0175319072, -0.0203469638, 0.00693289423, -0.00902781915, -0.0204255227, -0.0013633382, -0.0171129219, -0.00309001515, -0.012864152, -0.0255057178, 0.00530605344, 0.00955809746, 0.00280359946, 0.00325368112, -0.00125777361, -0.00320130796, 0.0129950847, 0.00648772251, 0.00325531792, -0.0024042544, -0.0125891929, 0.00161865726, -0.0087070344, -0.00546971941, 0.00947299134, -0.0157250352, 0.0175188147, -0.0316857472, -0.0150441835, -0.0248379596, -0.0104549872, -0.0107561331, 0.0298788752, -0.00588215794, -0.00270049, 0.0276530161, -0.0106513863, 0.00452700304, 0.00947299134, 0.00354173337, -0.00980032329, -0.00250900071, -0.00517512066, 0.00964975078, -0.0090671, 0.00253027724, 0.00713584, -0.0255057178, 0.0268412326, 0.0214991737, 0.00111047423, 0.0231751129, 0.017610468, 0.0148215983, 0.000436579197, 0.00158592407, 0.00776431756, 0.0180163588, -0.010121109, -0.00678886799, 0.0257937703, -0.00580687169, -0.00363665982, -0.00373813277, 0.0083011426, -0.0130670974, 0.0103567876, 0.00707692, 0.00371849281, 0.00114811736, 0.0146775721, 0.0087004872, -0.0071292934, -0.00188706955, 0.0129623516, 0.0178461466, 0.0240916423, 0.00294271554, 0.00544026, -0.0235548187, -0.0104353474, 0.00463174935, -0.00588215794, -0.00245990069, 0.0103044147, -0.00790179707, 0.0218788777, 0.0251914784, 0.00107283099, -0.0200065393, 0.0130801909, -0.0179639868, 0.00637642946, -0.0065335487, -0.0136955753, -0.003963992, 0.0230049, -0.0152667696, -0.0151358368, 0.00348608685, -0.00902781915, -0.00902127288, -0.00976104382, 0.00236006454, 0.0021996717, 0.00541407289, 0.0329427049, 0.00206710235, 0.00354828, 0.00403273152, 0.00466448255, -0.00654664217, 0.00727986591, 0.0205695499, -0.0302716736, -0.0103436951, 0.0230179932, 0.00543698622, 0.0183175039, -0.0259901695, 0.0236202851, -0.0261080097, 0.0109852655, 0.0087004872, 0.0183698777, 0.0180687327, -0.00270539988, -0.00790179707, -0.0328379571, -0.00401309179, 0.0157512203, -0.0020065459, 0.0149525311, -0.0267888606, -0.0127659524, -0.0370539948, -0.00769885117, 0.00429459708, -0.0111031048, -0.00686088111, -0.00674304133, 0.0147954114, 0.00623567682, -0.00642880239, 0.00834696833, -0.000219107926, -0.0103240544, -0.0121178348, 0.0145073589, -0.00170212693, -0.00225204485, -0.019587554, -0.00887724664, -0.0308477785, -0.015581008, -0.00119721715, -0.00883796718, -0.0159738064, -0.0116726626, -0.00805237, -0.000739361392, -0.00934205856, -0.00743043888, 0.0325237177, -0.0105270008, 0.00688052084, -0.0142978663, -0.00791489054, -0.0261472892, -0.00881178, 0.0129296184, 0.0129165249, -0.0124648064, 0.00584615162, -0.011738129, -0.0145466393, -0.0219967179, -0.00972831063, 0.0108215995, -0.00429459708, -0.0352209359, -0.000851063465, -0.00171194691, -0.0324451588, 0.0287528522, -0.0142847728, -0.00758101186, 0.0167724974, 0.0123666069, -0.00102536788, 0.0140752811, -0.0181211047, -0.00757446513, -0.0222323965, 0.00714893313, 0.00281996606, -0.012726672, -0.00370212621, 0.0102454945, 0.00058346946, -0.00666120835, -0.00456628297, 0.00089198, -0.00904746, 0.00263011339, -0.0152667696, 0.00752863847, 0.0102978684, -0.00527332025, -0.0170212705, -0.00710310694, -0.0175580941, 0.0245891884, -0.00840588845, -0.00172831351, -0.0330736376, 0.00915875193, -0.0120523684, -0.00765957125, 0.000731178094, -0.0135515491, -0.00342062046, 0.00654664217, -0.00217348523, 0.00581996469, -0.00463174935, -0.010972172, -0.010396068, 0.000438625022, -0.023672659, 0.0228346884, -0.00582651142, -0.0140098138, 0.000269230659, 0.0246415604, -0.00269066985, -0.00729950611, -0.0145466393, -0.00434697047, 0.0014942711, 0.0053682467, -0.00595089793, 0.010834693, 0.00654664217, 0.0188019555, -0.00503109442, -0.0178985205, 0.00991161633, -0.0131522045, -0.0217741318, -0.0224418901, -0.0115613705, -0.0188543294, 0.0109263454, -0.0215777326, 0.0130736446, -0.0108936122, 0.0101800282, 0.00236824783, 0.00690016104, 0.028883785, 0.00585924461, -0.0314762555, 0.000588379451, -0.0147692244, -0.00956464466, 0.031135831, 0.00599345099, 0.009518818, 0.00171194691, 0.00267430325, -0.0151751162, 0.00509983441, 0.0111031048, 0.00697872043, -0.00192962273, -0.0156202884, 0.00545662642, -0.0147037581, -0.00710310694, -0.0137086688, 0.00174468011, -0.00890998, -0.0175711866, -0.00483469525, -0.0359279737, -0.0025482804, -0.00171685696, -0.00506382762, 0.0248772409, 0.0146775721, -0.00813092943, -0.0262127556, -0.0212896802, 0.0313976966, -0.00513911387, -0.000408755965, -0.00874631386, -0.0189721696, 0.0119279819, 0.0201636571, -0.0121440208, 0.00148854277, 0.0085499147, -0.00845826138, 0.00177250337, 0.00657937536, -0.0013158751, -0.009545004, -0.00979377702, 0.00668739481, -0.0333093144, -0.010422254, 0.0119017959, 0.000952536415, -0.00122667709, -0.0197184868, 0.010094922, -0.0103175081, 0.00327495765, 0.0252569448, 0.0318428688, 0.00921767205, 0.000176247879, -0.0143633327, 0.0077053979, -0.0149656236, -0.00072094897, -0.011247131, -0.00387233892, -0.0117970491, -0.0049459883, -0.00641898252, 0.00606546411, 0.00693289423, -0.0174926277, 0.00328968768, 0.0333878733, -0.0100032697, -0.0149394376, -0.0169950835, 0.0101342024, 0.00866120774, -0.0091129262, -0.028333867, -0.00410147151, -0.00260720029, -0.0226775687, 0.00642225612, -0.00172667683, 0.0116661163, -0.0127790459, -0.0238821507, -0.0312929489, 0.0252438523, -0.00149181613, -0.0111227455, 0.000304214278, 0.0177152138, 0.00605891738, 0.00434697047, 0.0134075228, 0.0135253631, -0.00052618637, 0.00187233964, 0.0145859187, 0.00288706925, -0.0116464766, -0.00328477775, 0.00237479433, 0.0061309305, 0.0153715154, 0.00811129, 0.0100883758, 0.0233584195, 0.00161947566, 0.00451063644, 0.00840588845, 0.0103895208, 0.0142585868, -0.0045695561, 0.0305597261, -0.01327659, 0.00272013, 0.0217872243, 0.00276431977, 0.0170081761, 0.00266775675, -0.009518818, -0.0117643159, -0.0165237244, -0.00104173447, 0.00447135651, 0.0297479425, -0.0135253631, -0.015306049, -0.00706382701, 0.0126677528, 0.0151882097, 0.00132487668, 0.0033518807, -0.00828150194, -0.00619639689, 0.00809819624, -0.00898854, 0.00615711696, -0.0284124278, 0.00966284424, -0.00131914834, -0.00980687, 0.00623567682, -0.00646480918, -0.0319214277, 0.0180294532, 0.00940097775, 0.00158019573, -0.0197184868, 0.00448772311, 0.0160785522, 0.00925040524, 0.000302986795, -0.0130081782, -0.0203207768, -0.0178854261, -0.000657937548, 0.0248641465, -0.00230441801, 0.00686088111, -0.00590179814, 0.0357184783, 0.0176759344, 0.0187495835, -0.0130212717, 0.0184484385, -0.000149959029, 0.0115810102, -0.00898854, 0.0158428736, -0.0110376384, 0.0115941036, -0.00686742784, 0.0122422213, 0.00310310838, 0.00288379588, 0.00631096307, 0.00745662535, 0.00285269925, 0.0212242138, 0.00629132334, 0.0110572791, 0.00349918031, -0.00925040524, -0.0153453294, -0.00204909896, 0.00106464769, 0.0150965564, -0.0279934425, -0.00930277817, -0.00114893576, 0.0107103065, -0.0224418901, 0.0159214344, -0.0189852621, -0.0314500704, 0.0206350163, 0.00180359988, -0.00210965541, -0.00641243579, 0.017584281, 0.000161006479]
|
20 Jan, 2021
|
Fabric.js line cornerStyle Property
20 Jan, 2021
In this article, we are going to see how to set the style of controlling corners of the canvas lines using FabricJS. The canvas line means the line is movable and can be stretched according to requirement. Further, the line can be customized when it comes to initial stroke color, height, width, fill color, or stroke width.
Syntax:
fabric.line({
cornerStyle : string
});
Approach: To make this possible we are going to use a JavaScript library called FabricJS. After importing the library, we will create a canvas block in the body tag which will contain the line. After this, we will initialize instances of Canvas and line provided by FabricJS and set the style of controlling corners of the canvas line using cornerStyle property, and render the line on the Canvas as given below.
Parameters: This function accepts a single parameter as mentioned above and described below:
cornerStyle: It specifies the style of controlling corners of the object. It contains a string value.
Example:
HTML
<!DOCTYPE html>
<html>
<head>
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<h1>fabric.js | line cornerStyle property</h1>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000;">
</canvas>
<script>
var canvas = new fabric.Canvas("canvas");
var line = new fabric.Line([150, 10, 220, 150], {
stroke: 'green',
cornerStyle: "circle"
});
canvas.add(line);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js Polygon cornerStyle Property/Fabric.js Polyline cornerStyle Property/Fabric.js line cornerStyle Property
|
https://www.geeksforgeeks.org/fabric-js-line-cornerstyle-property/?ref=next_article
|
CSS
|
Fabric.js line cornerStyle Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, Fabric.js Polygon cornerStyle Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, Fabric.js Polyline cornerStyle Property, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js line cornerStyle Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.00081438967, -0.00370230502, -0.011660751, 0.0312564522, 0.0393390916, 0.0429104902, -0.0392853841, 0.0211732909, -0.00886807777, -0.0559608638, 0.0113385189, 0.00248386734, -0.0104456693, -0.0350158177, 0.00489389, 0.0399029963, -0.0423197299, 0.00923058856, -0.0103449719, -0.0189176723, 0.013151071, -0.0114190774, -0.0462133624, 0.0224219393, 0.010331546, 0.0375131108, 0.0227038916, 0.0210390277, -0.0398224369, -0.000432159373, 0.00592100294, 0.000532856677, 0.0080893524, -0.028141547, -0.0062432345, -0.0362510383, 0.0115466267, 0.0602035746, -0.0222742483, -0.00854584668, -0.0080625, -0.0270942952, 0.00459851138, 0.0348547027, 0.0167291835, 0.00694811577, -0.0123723447, 0.0105463667, -0.0158967525, -0.0751873404, -0.014661531, -0.0111035584, 0.0231738128, 0.00753216026, 0.0174004976, 0.0238988325, -0.0139230844, 0.0399298482, -0.00482675852, 0.00780739961, 0.000365657179, -0.0757781, -0.0390705653, -0.019159345, -0.0491402969, 0.0103919646, 0.0189042445, 0.0217640493, -0.0229589902, -0.00250065024, -0.0290813893, 0.00971393567, 0.0335657746, -0.018488029, -0.0136881238, -0.0044474653, 0.0436355099, 0.0250669215, -0.0635333, 0.0421049111, 0.00381642883, -0.0180315357, -0.0230932534, 0.0400909632, -0.0200991873, -0.032625936, 0.037647374, -0.0381307229, 0.0189982299, 0.0167694613, 0.000399432727, 0.0185954403, 0.0221802648, -0.0277656093, -0.0303166099, 0.000244610594, 0.0133994576, -0.00940513052, -0.00741132349, -0.00807592552, 0.00977435429, 0.0568738505, 0.0025963129, -0.0121373851, 0.0246238541, -0.0384261, 0.0228515808, 0.00217674067, 0.0128087, -0.0279535782, 0.0241673589, -0.0370834693, 0.0202065967, 0.0390705653, -0.0455420464, 0.0405743122, -0.0251877587, -0.0427225195, 0.0351500809, -0.00297560613, 0.00477641, -0.0247044116, 0.00845857523, 0.0226904657, -0.0221131332, 0.0243956055, -0.0165277887, -0.00492745591, 0.0144064315, 0.0131376451, -0.0302360505, -0.040144667, 0.0419706479, -0.00274400227, 0.0399835519, 0.0166351981, -0.0249460842, 0.00631372258, -0.000458172843, -0.00223548082, -0.00544101233, -0.0367343873, 0.00248722406, 0.0360093638, -0.00472270465, -0.00219016685, 0.0403594896, 0.00597806461, -0.0093447119, 0.0277656093, -0.0601498708, 0.00714951055, 0.0273225419, -0.0130705135, 0.0609017462, -0.0338343, -0.0326796398, -0.00107158744, 0.0474485829, -0.0201528929, 0.0394733548, 0.0226099063, 0.00195856299, 0.0419437923, -0.039795585, 0.0010027776, 0.0146883838, 0.00484689791, -0.0481198952, 0.0247983951, 0.00326427165, 0.00191157102, 0.0315786824, -0.00469585229, -0.0362241864, -0.0308805145, 0.00894192327, -0.0284906309, 0.0197769552, -0.0264498312, -0.0524431691, 0.00245533651, 0.0105195139, 0.0554238111, 0.00868011, 0.00297224941, 0.0215358026, 0.0145272678, 0.00323070586, -0.0286786, 0.00440047309, 0.0321694389, 0.0372714363, -0.00341699598, 0.000319084647, 0.00256610359, 0.0308805145, 0.0166351981, -0.0253220219, 0.0115264878, 0.00684070541, -0.0263961274, -0.00535038486, -0.0427225195, 0.0172662362, -0.00828403328, -0.00865325704, -0.0634795949, 0.0376742259, -0.0223548077, 0.00377614982, 0.0155342417, 0.0294573251, 0.00876738, 0.00239827461, -0.00403460627, -0.011486209, 0.000834948674, -0.00938499067, -0.0475559905, 0.0355260186, 0.0245835744, -0.0295915883, -0.0302091986, -0.0503486656, -0.0080893524, 0.00173535058, 0.0289471261, -0.0134397373, -0.0415678583, 0.00344049209, -0.00448103109, -0.0132853342, -0.0116741769, 0.0235631745, 0.0154402573, -0.00271379296, -0.0130973663, 0.0166217722, 0.0172125306, 0.00207939977, -0.0150777465, -0.0237377174, -0.00228247279, 0.0110632796, 0.0122985, -0.0110028619, -0.0060149869, 0.00186793541, -0.0209181923, -0.0216834918, -0.029699, 0.0374057, -0.00321895792, -0.0295915883, -0.0202334505, -0.0237377174, -0.0342370905, 0.0691723526, 0.0385335125, 0.0429373421, 0.0314444192, -0.0067097987, 0.0330018699, -0.0217506234, -0.0163935255, -0.012654298, -0.041648414, -0.01731994, -0.00772684161, 0.00532688852, -0.0374325551, 0.0492477082, -0.0210658815, -0.0244895909, 0.0461059511, -0.0147823682, -0.00752544682, 0.0232812222, -0.019145919, -0.0235363226, 0.00169339345, 0.0315786824, 0.0219385922, -0.0413798876, -0.0115466267, -0.00940513052, -0.000648658606, -0.0268660467, -0.0301554929, -0.0147420885, -0.0132249156, 0.0125536006, -0.0198306609, 0.0196695458, -0.0209718961, 0.0194547232, -0.0198709387, -0.0108148931, -0.020824207, -0.0171051193, -0.0532756, -0.0190116558, -0.0357408375, 0.02929621, 0.0295915883, 0.0387483314, 0.00800879393, 0.0140573476, 0.0272017047, 0.0017152112, -0.0344519131, -0.0337268934, -0.0271614268, 0.00505164918, -0.0177898612, 0.0641240627, 0.000283421017, -0.00697496813, 0.00375265372, -0.0395002067, -0.00296553643, -0.00333308149, 0.0307731032, 0.0425882563, -0.0140707735, -0.00790809654, -0.0229992699, 9.01031308e-05, 0.0162592623, -0.0233349279, -0.00741803646, -0.00195017166, 0.0135135818, 0.00692126295, -0.0104859481, -0.0160041619, -0.0133658918, -0.0242479164, 0.0116808899, 0.0235094689, 0.0287860092, -0.0240733754, -0.00263491343, 0.0457837172, -0.0511005372, -0.0149300573, 0.00516577298, 0.0434475392, 0.0367343873, 0.00092054141, 0.0237242915, 0.00711594475, -0.0120501136, -0.0100294538, -0.0204751231, 0.0101972828, -0.0340222716, -0.0468846746, 0.0180046819, 0.0143930046, 0.0171185452, 0.00608883193, 0.0248252489, 0.0303434618, -0.0394465, -0.0201260392, 0.000711594475, -0.0185685866, -0.00929100718, -0.0320351757, -0.0447364673, -0.0125468876, -0.0110834194, -0.0141244791, -0.0162458364, 0.0285980422, -0.0207302235, -0.0361973345, 0.00362510374, -0.027483657, 0.0235766, 0.0117278825, 0.0217237696, 0.017158825, 0.0471800566, -0.0206899438, -0.0123522058, 0.028141547, -0.000959142053, -0.0339685641, 0.0293767676, 0.0445753522, -0.00643120287, 0.0106067853, -0.0211867187, -0.0107276225, -0.0161787048, 0.0219117384, -0.0432327203, -0.0172393825, -0.00729719969, -0.00733076548, -0.0297527034, 0.0137284026, -0.0186222922, -0.0168365929, 0.00950582791, -0.00529667968, -0.0298601147, 0.0160712935, -0.0216834918, 0.029645294, -0.00552492682, 0.0426956676, 0.0292693563, 0.0317666493, 0.049462527, -0.0102979802, 0.02397939, 0.0743817613, -0.0187162776, -0.041460447, -0.00390034332, -0.0107276225, -0.0250534955, -0.0264632571, -0.0166217722, 0.00841158349, 0.00693468936, -0.095702745, 0.0200052019, 0.0131913498, -0.0231201071, 0.0234557651, -0.00913660415, 0.0352843441, 0.0160041619, 0.0449512862, 0.0362241864, 0.00152556458, 5.40723668e-05, 0.0330824293, -0.010492662, -0.0186759979, 0.0343445, -0.040440049, -0.0114056505, 0.018152371, 0.000237268076, -0.0106940567, -0.00596128171, -0.0478782244, 0.000521947804, -0.0101435781, -0.00626673037, 0.0502144024, -0.00521947816, 0.0349084064, -0.00352104986, -0.0205422547, -0.0310684834, -0.00460858131, 0.017333366, 0.0277924631, -0.0211867187, -0.029699, -0.0193741657, 0.0150911734, 0.0105732195, 0.0187968351, -0.0136209922, 0.0133994576, 0.0352037847, -0.0015733958, 0.0131712109, -0.00461529428, 0.00800208095, 0.0028967266, -0.0292156525, 0.0268123429, -0.00260302587, 0.00677357381, 0.0221802648, -0.00636742776, -0.0218580328, 0.013312187, -0.0222205445, -0.0259933379, 0.0113385189, 0.0561219789, 0.0133457528, -0.0130570866, 0.00120333303, -0.00611904124, 0.0223413799, 0.0186357182, -0.0305314306, 0.0361167751, -0.0184343252, 0.00600156095, 0.0123857716, -0.00365866954, 0.0374862589, 0.039124269, 0.0144064315, -0.0178301409, 0.0285174828, 0.00364859984, 0.0109424433, -0.0173870716, 0.0158698987, -0.0209181923, 0.010324833, -0.0167157557, -0.0211867187, 0.0153731257, 0.00836459175, -0.0246104281, 0.000926415436, 0.017158825, -0.0376742259, 0.00379293272, -0.0198440868, 0.00979449321, 0.0504023694, 0.0105195139, -0.00958638545, -0.00972064864, 0.0030561639, 0.00116557162, 0.00490731653, 0.0174004976, 0.0127281426, 0.0144198574, -0.0304240193, -0.0186625719, -0.0103852516, 0.00165479281, -0.0034539185, -0.0508588627, -0.0151583049, -0.0270271637, 0.00337168225, 0.0215492286, 0.0263692737, -0.0107880402, 0.0216969177, 2.6905067e-05, 0.0104859481, -0.0439040363, 0.0297258515, -0.0140036419, -0.0155610936, 0.0148495, 0.0056289807, -0.00753216026, -0.0261007473, -0.0417558253, 0.00442061294, 0.0212941281, 0.0024654062, 0.0375399627, 0.037459407, 0.00862640422, -0.0458642766, 0.00940513052, -0.00676350389, -0.0363853, 0.00810949132, 0.00255939038, -0.0227038916, -0.00833773892, 0.0183671936, 0.0149569102, -0.0141110523, 0.0336731859, -0.0188639667, 0.0451392569, 0.0367612392, 0.00517919939, -0.00980792, -0.000699007302, -0.00348748406, -0.00132416992, 0.0247312635, -0.00347070117, -0.015655078, -0.0534098633, -0.0253891535, 0.00235799584, 0.029806409, -0.0229858439, 0.00923058856, -0.0255905483, 0.0455689, 0.0215358026, -0.00898220204, 0.0336731859, -0.0310416296, 0.0166889038, 0.023804849, -0.00249058055, 0.019991776, -0.0187028497, -0.020824207, 0.0202871561, 0.0119024245, -0.00892849639, 0.0218446068, 0.0255636945, -0.0138693787, -0.00314511335, -0.034478765, -0.0366538279, -0.0236705858, 0.0273628216, 0.0150643205, -0.0083108861, -0.0105195139, 0.00839144364, -0.0165546406, 0.0409233943, -0.00729719969, 0.0162592623, -0.00994889624, -0.000710335735, -0.0171991047, 0.0195889864, -0.0235900283, -0.0235228967, -0.0276850518, 0.00304945069, 0.0101032984, 0.00553499674, 0.0093111461, -0.0126408711, 0.00854584668, -0.00872710161, -0.0214149654, -0.0140976263, 0.00667623291, 0.00563569367, 0.0236303061, 0.00522954809, 0.0110968454, -0.0446559079, 0.0252548903, 0.0156953577, 0.0212538503, -0.00605526613, 0.00269533182, -0.0248386748, 0.0152120097, -0.0137082627, 0.0109692961, 0.00169423257, 0.0513959154, -0.00468578236, -0.0295915883, 0.0081229182, -0.00124696863, 0.0116876038, 0.00753216026, -0.016648626, 0.00949240196, 0.0288934205, 0.0264632571, -0.015641652, 0.0192667563, -0.0248386748, -0.0135739995, -0.0167828873, -0.00837801769, 0.0188505407, -0.000123668913, -0.0285443366, 0.0406011641, 0.0408965424, 0.00642448943, -0.00242848392, -0.0316323861, 0.00524633098, -0.00510199787, 0.0212941281, -0.00745160226, -0.0200052019, 0.00132836564, 0.0077939732, 0.00492409943, 0.0234289113, 0.00257449504, 0.0108753117, 0.0171856768, 0.0342102386, -0.0300749354, 0.00880766, -0.0335657746, -0.00307126855, -0.00835787784, -0.00870024879, -0.0135874264, -0.0293499157, -0.00154486485, -0.0134531632, 0.0447633192, -0.0147555154, 0.00524968747, -0.0225830544, -0.0183269139, 0.0156685039, 0.0219251644, 0.00655203965, -0.00155073882, -0.0101972828, -0.000692713715, 0.021817755, -0.0181792248, 0.000271043653, 0.0201931708, 0.00780739961, -0.0174676292, 0.0207839292, -0.0288934205, 0.0178838465, 0.00119410246, -0.00614925, -0.0299138203, -0.00313336519, -0.000981799, 0.00574646099, -0.00765971, -0.0352574922, -0.0118017271, -0.0307731032, 0.0262215845, 0.019656118, 0.0122246556, -0.00463543367, 0.0106672039, -0.0149300573, -0.0355528705, -0.0147420885, -0.00543429935, -0.00114543212, -0.00906276, -0.0308536608, 0.0146749578, 0.0334315114, 0.00238820491, -0.00040215996, -0.0206899438, 0.0253354479, -0.0156013733, 0.0152791413, -0.02063624, -0.00603512675, 0.0133860316, 0.00458172848, 0.0275776424, 0.00317196595, 0.0455689, -0.0294036195, 0.0325453766, 0.0279804319, 0.0117815873, -0.00419572182, -0.0102644144, 0.012989955, 0.0170916934, -0.0033062289, -0.00609890139, -0.00194345845, -0.00654532621, -0.00218848861, 0.0283295158, -0.00170598063, -0.0452198125, -0.000324329303, -0.000576911785, 0.00177059474, 0.023482617, 0.0373788476, 0.0210121758, 0.00984148588, -0.00547793461, -0.00177562959, -0.0324648172, 0.00965351705, 0.0157356355, 0.0102174226, 0.011486209, 0.0114459293, 0.013486729, 0.00432998501, -0.00877409428, -0.0379696079, 0.00150710333, -0.0166083463, -0.0364390053, -0.0233483538, -0.0390168577, 0.00318371388, 0.00183940458, 0.0388020389, -0.00762614422, 0.000145381768, -0.0200589076, -0.0195352826, 0.00294036209, -0.00327434158, -0.0103852516, -0.0201528929, -0.0104389563, -0.0073911841, -0.0143527258, 0.036814943, 0.0207705032, -0.006078762, 0.0378353447, -0.00142151059, -0.0167560354, 0.00458172848, -0.0209181923, -0.0628351346, 0.0415947102, 0.0345324725, -0.0081229182, 0.00186961377, -0.0145809734, -0.0218580328, 0.00908289943, -0.0499995798, 0.0413530357, 0.0124327634, 0.0112378215, 0.0142587414, 0.0335657746, 0.0176824518, 0.0114593562, 0.000777886889, 0.0277924631, -0.00231436035, -0.0163263939, -0.0073911841, 0.0252817422, 0.0104121035, 0.0486032441, 0.0232812222, -0.0286786, 0.00333140325, -0.00320553174, 0.0125536006, 0.0268794745, 0.0366001241, 0.0205154028, -0.0185685866, 0.0202603023, -0.00595121225, -0.0440114476, -0.0119628431, 0.0227173176, -0.00366538274, 0.0158698987, 0.0260604694, -0.051610738, 0.00429641921, 0.00988176465, -0.0193338878, 0.00302091986, -0.0227710232, -0.00688769715, 0.0166217722, 0.0170379877, 0.0128959715, -0.0103382589, -0.0151045993, 0.0171319731, -0.00746502867, -0.00182262168, 0.0115533406, -0.0353917554, -0.0187834091, -0.00378957624, -0.00244191033, -0.00653861323, -0.0136881238, 0.00110263575, 0.00710923132, -0.0566053241, -0.00633721845, -0.00797522813, 0.0251206271, -0.0259262063, 0.0223413799, 0.0537320934, -0.000914667384, -0.0136142792, -0.01597731, 0.0110834194, 0.000751453801, -0.010331546, 0.0147555154, -0.00839815754, 0.0260067638, -0.0217909012, 0.0380770154, 0.00314511335, -0.00947226211, 0.0106806299, 0.0295110308, -0.00475627044, 0.0132182026, -7.8722238e-05, 0.0438234769, 0.0138962315, -0.0181792248, 0.032330554, 0.00237645698, -0.00280274241, -0.00921044871, -0.0212001447, -0.00618281588, 0.025483137, -0.0100361668, 0.0057431045, -0.0267586373, -0.0201797448, -0.0335926302, 0.00216667075, 0.00863311812, 0.0254025795, 0.0380233116, -0.024315048, 0.0067769303, -0.0127281426, 0.00518926885, 0.0013443093, -0.0233752076, -0.00869353581, 0.00769998925, 0.0167426094, -0.014312447, -0.024328474, 0.00322231464, -0.0671315491, 0.0147689413, 0.0045951549, -0.0200991873, 0.0211061593, -0.0145943994, 0.0355260186, 0.0347741432, -0.01731994, 0.00845857523, 0.00658560544, -0.00470927823, -0.00279602921, -0.00341531774, 0.00488382066, 0.0346130282, -0.00678028679, 0.0196829718, 0.0160981473, 0.0201797448, -0.0196963977, -0.00600156095, -6.036595e-05, 0.0214149654, -0.0109491562, 0.0210390277, 0.00761943124, -0.0145675465, -0.0123991976, -0.00863311812, 0.00074096449, 0.00810949132, 0.00133675709, -0.0202603023, -0.00861297827, 0.0374057, 0.0248386748, 0.0185551606, -8.31801881e-05, 0.0233752076, 0.0180583876, 0.0140170678, 0.0127684213, -0.00437362073, 0.0250669215, 0.000185870493, -0.012654298, -0.0381307229, -0.00925072841, 0.012150811, -0.00296721468, 0.0106000723, 0.0215626545, -0.0386409201, -0.00728377327, -0.018810261, 0.00285644759, 0.00604519621, -0.022824727, 0.0196963977, 0.0387483314, -0.0164606571, 0.0109491562, -0.00295882323, 0.0313638598, -0.0610628612, 0.0153462728, -0.00882108603, -0.00499794399, 0.00840487052, 0.032142587, -0.00170430227, -0.00209282618, 0.00874724146, 0.0307193976, -0.00973407552, -0.00936485175, -0.00145759387, -0.0057598874, -0.00737104425, -0.00461865077, -0.0109357303, 0.0253891535, 0.00500801392, -0.0196426921, 0.0015700392, 0.00580352265, -0.00203744252, -0.0174273513, 0.0107276225, -0.0065956749, -0.0217774753, -0.0329481661, -0.0138828047, -0.0264632571, -0.018649146, 0.00545779523, 0.00851899385, 0.00513892, -0.0111236982, 0.00685413135, -0.00780739961, -0.017481057, -0.00708909193, -0.00131829584, -0.00774698099, 0.0123723447, 0.0174676292, -0.015990736, 0.028141547, 0.00324077578, -0.0285980422, -0.0136948368, 0.0056289807, 0.00209618267, -0.00590422, 0.000362720166, -0.00241170102, -0.0237108637, -0.0217640493, 0.0439040363, -0.0119024245, -0.00510535436, 0.00892178342, 0.00717636291, -0.0154671101, 0.0307193976, 0.0170916934, 0.005578632, -0.00847200211, -0.0182866342, -0.0152791413, 0.0111304112, 0.000511878112, -0.02397939, 0.022824727, -0.0116473241, 0.0198843665, 0.00185954396, -0.00544436881, -0.00610225834, 0.00865325704, -0.00403125, -0.0184343252, -0.0132987602, -0.0229589902, 0.0189713761, -0.00601834385, -0.0220325757, -0.000585722795, -0.0383186899, -0.012661011, 0.0433669835, -0.00387013401, -0.0225293487, -0.0388288908, -0.00555177918, -0.0406817198, 0.0113855116, 0.0268257689, 0.00203240779, -0.0321157351, 0.019468151, 0.00551150041, -0.00491738645, 0.025308596, 0.00456830207, -0.0171991047, 0.00132500904, -0.0144735631, 0.02063624, -0.0202334505, -0.0120903924, 0.00242512743, -0.0105463667, -0.0062935832, 0.00484689791, -0.0248521, 0.0187297035, -0.0216163602, 0.0136411311, 0.00428634975, 0.0117815873, -0.0208913386, 0.029967526, -0.00130151294, 0.00299071078, 0.0410845093, 0.0188505407, -0.006907837, 0.0185417347, 0.006907837, -0.00246708468, 0.00462872069, 0.0236034542, -0.016648626, 0.00911646523, 0.0138828047, -0.0306656938, -0.0111035584, -0.029645294, -0.0227038916, -0.00970722269, -0.00208779122, -0.0391779728, 0.00085802516, 0.0151583049, -0.00334315142, -0.00119326334, -0.0230798274, 0.0373788476, -0.0162861142, -0.00698839454, -0.00422257464, -0.0225293487, 0.00505164918, 0.0160444416, -0.00470592175, -0.0319814719, 0.0343445, 0.00118655025, 0.0299943779, 0.0140976263, 0.0283563677, 0.0236034542, 0.00521276519, -0.0330824293, -0.00154654309, -0.0101905698, 0.0214283913, 0.0100563066, -0.0127751343, 0.00957967248, -0.0188773926, -0.0400372595, 0.0101032984, 0.00106403511, 0.0249192324, -0.0209181923, -0.0182329305, -0.00656882254, 0.0229589902, -0.0349889658, 0.0110230008, -0.0230664015, 0.016151851, 0.00669637229, -0.014312447, -0.0104859481, -0.00307798176, -0.00647483813, -0.00621302519, -0.0356065743, 0.0279804319, 0.0267989151, 0.0136948368, -0.0114392163, -0.0162189826, 0.0208913386, -0.00497444812, 0.0112311086, 0.0143393, -0.00663595414, 0.0143795786, 0.000440550823, 0.0196024142, -0.0113989376, 0.0198575128, 0.0148360729, 0.0112848142, 0.00375265372, -0.0219117384, -0.0127818473, -0.00831759907, 0.0124193374, 0.0328944623, 0.0119628431, 0.0134665892, -0.0285443366, 0.00579009624, 0.0279535782, -0.0310147777, 0.00905604661, 0.0107276225, 0.0191996247, 0.0104389563, -0.0281952526, 0.0233617797, -0.00759929186, -0.00597470812, 0.00100445584, -0.00609890139, -0.0016069616, 0.00478983624, -0.0102039957, -0.0101368641, 0.0158430468, -0.00215995777, -0.00373922754, 0.00536381127, -0.00207436504, -0.00495430874, -0.0134128844, -0.0338611566, 0.00889493059, -0.00677021686, 0.00818333589, 0.00835787784, 0.0100697326, 0.00984819885, 0.0299138203, 0.00845186226, 0.0234289113, -0.000486284174, -0.00356132886, 0.00124361203, 0.00179241248, 0.0034304224, -0.0127147157, -0.00815648399, 0.0144064315, -0.00276582, 0.00145927211, 0.0096400911, 0.0114056505, -0.00542422943, 0.023146959, 0.0275507886, 0.00629693968, -0.0387214795, 0.0138828047, -0.00753216026, 0.0155610936, 0.0287054516, -0.03225, 0.00847871508, -0.0498921685, -0.0104121035, -0.0201260392, -0.0149300573, -0.0049308124, 0.0108618848, -0.0121440981, 0.00961323828, -0.000122619982, 0.0155879464, 0.0169708561, -1.60355248e-05, -0.0147018097, -0.0349084064, -0.00970051, -0.0096400911, 0.00139969285, 0.0189848039, -0.0116473241, 0.000414956914, -0.00302091986, 0.0225830544, -0.0271882787, -0.00790138356, 0.018152371, 0.00486032432, 0.02197887, -0.0181792248, 0.001644723, 0.0178167149, 0.0151314521, -0.00551485689, 0.0130168078, -0.00857941248, 0.0146078262, -0.00131913496, 0.0109625822, 0.0110565666, -0.0014483633, 0.0176421721, 0.000947394059, -0.000343839434, 0.000317616155, -0.00286148232, 0.01531942, 0.00797522813, -0.0376742259, 0.0114996349, 0.0215760805, -0.00928429328, 0.014822647, -0.0165949203, 0.0102375615, -0.0212807022, 0.00788795762, -0.000970050925, 0.0183269139, 0.0216432121, 0.00749188149, 0.0139767891, -0.00436690729, -0.000117165539, 0.0295378827, -0.0212807022, -0.0198306609, 0.00244694506, 0.0231066812, -0.0132316286, 0.0103651118, -0.0139365103, -0.00831759907, 0.020810781, -0.00723006809, -0.0259933379, 0.0178301409, -0.00969379582, -0.00757243903, 0.0135941394, -0.0096400911, -0.00213646167, -0.0217909012, 0.00225729845, -0.0244358853, -0.00484689791, 0.00115382357, -0.0212404225, -0.027631348, 0.0281683989, 0.0100093149, 0.00614925, 0.0118017271, 0.00518255588, 0.0220594276, -0.0120971054, -0.0242881961, 0.00498451758, -0.0170245618, -0.0383723937, -0.00533024548, -0.0141647579, -0.00955953356, 0.00564912, -0.0222473964, 0.0220325757, -0.00450452697, -0.00560884131, -0.00816319697, 0.00396747468, 0.00790138356, -0.00656882254, -0.0274970848, 0.0163532458, 0.0166351981, -0.00746502867, 0.0123857716, 0.0141244791, -0.0138425259, 0.00801550783, -0.013815674, -0.0204482712, -0.0274970848, -0.0257113855, -0.00345727499, 0.010821606, 0.0226636119, -0.0345324725, -0.0103449719, -0.0128691187, 0.00573974755, -0.0242881961, -0.00753216026, -0.0151583049, -0.0056927558, -0.00869353581, -0.00429306272, 0.00476634037, -0.0098683387, -0.023308076, 0.00528325327, -0.0202468764, 0.0172393825, 0.000443068246, 0.0257785171, 0.00186625717, -0.000883619068, 0.00197031116, -0.00825046748, -0.00133927446, -0.0460253917, -0.00285812584, 0.0166889038, 0.0206765179, 0.000412649271, -0.000369433314, 0.00187129201, -0.00186961377, -0.0176958777, 0.0369223543, -0.0148092201, -0.00511878077, 0.00180248218, 0.00412187725, -0.0233215019, -0.00181758683, -0.0300212298, 0.0109760091, 0.0235766, -0.0208376348, -0.018810261, 0.00268861861, -0.00252414634, 0.0254160054, 0.00725020748, 0.00937156472, 0.0183269139, -0.00389363, 0.020824207, 0.0159638841, -0.000502647483, 0.0102442745, -0.00295714498, -0.00244358857, -0.00645469874, 0.0130839394, 0.00761271827, 0.032142587, -0.000619708153, -0.0107679013, 0.0267720632, 0.0164472312, 0.0268526208, 0.0263692737, 0.0320888832, 0.00713608414, 0.0231335331, 0.00558870193, -0.0357139856, 0.00243016216, -0.0115533406, 0.00298735406, -0.00458844146, -0.00220359326, -0.00656546606, 0.00367209595, -0.006907837, 0.0230932534, 0.0137485424, -0.0160175879, -0.0044138995, 0.0256174, 0.0212672763, -0.00767313642, -0.0226636119, 0.0138828047, -0.00905604661, 0.000828235527, 0.029484177, -0.000310693227, 0.0190787874, 0.00442732591, 0.0609554499, -0.00201394665, 0.00621302519, -0.00580687914, -0.00398425758, -0.000413907983, -0.00970722269, -0.0127080027, -0.0193741657, -0.0179106984, -0.0077604074, 0.0142050367, 0.00700182095, 0.0465087406, 0.00346734468, -0.0146078262, -0.0108753117, -0.0121709509, -0.0121843768, 0.00640435, -0.0183671936, 0.00225897669, 0.0248252489, -0.00666952, -0.0241002273, 0.00380635913, -0.00560548482, -0.0210256018, -0.0193473138, -0.0134397373, 0.0120501136, -0.00207604328, -0.0367343873, -0.012661011, -0.0101972828, 0.0190250818, -9.03129185e-05, 0.0100563066, -0.00661581429, 0.0146749578, -0.0156953577, -0.010982722, 0.0117815873, 0.0183940455, -0.00641106348, -0.000206219745, 0.010996148, -0.00100445584, 0.0091231782, 0.0166620519, 0.0174139254, -0.00859283842, -0.0226904657, -0.00849885494, -0.00537052425, -0.0120232608, 0.00445082178, 0.00743817585, -0.00590086356, 0.0115533406, 0.00649497751, 0.010821606, -0.0116808899, -0.0017319941, 0.00910975132, 0.000485864613, -2.54365641e-05, -0.0350695215, -0.0143527258, -0.0045951549, 0.0286786, -0.00674000802, -0.00436019432, 0.00386677752, -0.00867339689, -0.0147957942, 0.024650706, -0.00421586167, 0.000618029851, 0.0125334607, 0.00434005493, 0.0465892963, 0.0208779126, 0.0173602197, -0.000246918236, 0.0178569928, 0.0247715432, 0.00720992871, 0.00463879, -0.00530003617, 0.0209450442, 0.00983477291, 0.00225058524, 0.0152657153, -0.0297795571, -0.0146212522, 0.0149569102, 0.0206093863, -0.00312161725, 0.00575317396, 0.00374594075, 0.015990736, -0.0155208148, 0.0077939732, -0.00389027339, 0.0214955229, -9.823234e-05, -0.0288397148, -0.01797783, 0.0126341581, 0.0167560354, 0.00763957063, 0.000149577492, -0.000379293284, 0.00228247279, 0.021656638, 0.000361881015, -0.0132517684, 0.018810261, -0.0285980422, -0.00513556367, -0.00646812515, 0.00567932939, 0.0124663291, 0.00686084479, -0.00495430874, -0.00104053912, 0.011821866, -0.00988847762, -0.00259295618, 0.00544101233, -0.0114593562, 0.0030326678, -0.00193003216, 0.0245164428, 0.0259127785, -0.0116338981, 0.0216297861, -0.0104053905, 0.00262820022, 0.0098683387, 0.015655078, 0.00704881316, 0.00354118948, 0.00608547544, -0.0228381548, 0.0090896124, -0.00952596776, -0.0320083238, 0.0169171505, 0.014312447, 0.0127147157, -0.00366202625, 0.00347405788, -0.0131443581, 0.002829595, -0.0158430468, 0.0118151531, 0.0241807848, 0.0038734905, -0.00748516805, 0.0142184626, 0.00352440658, 0.00370230502, 0.00454144971, -0.00304609421, -0.0118822847, 0.00245701475, 0.0284369253, 0.00923058856, 0.0122917872, 0.0062264516, -0.000837885716, -0.00868682284, -0.00602170033, 0.0110431407, -0.0188505407, -0.0187834091, -0.00612575421, 0.00900234096, 0.00655875262, -0.00319210533, -0.00388356042, 0.013480016, -0.00896206219, 0.00723006809, -0.00105648278, 0.00605526613, -0.0154536832, -0.0281952526, -0.0123589188, -0.0358751, -0.0175884664, -7.25335412e-05, -0.00471934816, -0.0188505407, -0.00935813878, 0.0340759754, 0.0106134983, 0.012989955, 0.00218681036, -0.0196024142, -0.0243553277, 0.0145406947, 0.00239323988, 0.0288934205, 0.00378286303, -0.021656638, -0.0115399137, 0.012150811, 0.0151045993, -0.0119762691, 0.0103718247, -0.00592100294, -0.00407488504, 0.0112042557, -0.0051758429, 0.00697496813, -0.00912989117, 0.00176388153, 0.0190787874, 0.0327064916, 0.0278461687, -0.0240465216, -0.0122917872, 0.00690112356, -0.00920373574, 0.00322902761, 0.00464214664, -0.00972064864, 0.00881437305, 0.0182866342, 0.0054812911, 0.00342874415, 0.00079466973, -0.0189042445, 0.00166905823, 0.00120668963, 0.0134598762, -0.00222708937, 0.0201260392, -0.00436690729, 0.00855927262, 0.0102577014, 0.00923730154, 0.00671986863, -0.0191727709, 0.0109692961, 0.00671651168, -0.00262987847, -0.00141983235, -0.013480016, 0.00418900885, -0.0277119055, -0.0121172452, -0.0115667665, 0.0025963129, 0.00908289943, 0.0114459293, 0.0113720847, 0.00170933711, -0.0253220219, 0.0149166314, 0.00142654544, 0.0170379877, 0.0156953577, 0.00799536798, 0.023469191, -0.0246775579, 0.0101905698, 0.0227844492, 0.00305952062, 0.0272688363, -0.00607540552, 0.00483682845, -0.00615596352, 8.4491352e-05, 0.0158967525, 0.0273762476, -0.00515570305, 0.0031300087, -0.0220325757, 0.0142184626, -0.0218446068, -0.0272151306, 0.00692797638, 0.00257953, -0.00823032856, -0.0112915272, -0.00472941808, 0.00402453681, -0.00187632686, -0.00222037616, 0.00996232219, 0.0307462513, 0.0051758429, 0.0282489583, 0.0184343252, 0.00444075232, 0.00392048247, 0.00700853392, 0.00683734845, -0.00477641, -0.0149971889, -0.000272302364, -0.0242881961, 0.00676686037, -0.0160712935, 0.00718978932, -0.00148444646, -0.022650186, -0.00952596776, 0.0028060989, 0.0102241356, 0.00884793885, -0.00415544305, -0.00293364888, -0.00185786572, 0.00456830207, 0.00673329458, -0.0308268089, 0.0100831594, -0.00491067301, -0.0214552451, -0.00526311388, -0.0102308486, -0.00288162194, 0.00453138, 0.00900905393, -0.0210793074, -2.15292985e-05, -0.00473948754, 0.00269365357, 0.0103651118, 0.0178301409, -0.00872038864, -0.0021750622, -0.0129026845, 0.00483011501, -0.00122431165, -0.0115734795, -0.00176555989, 0.00200052024, 0.00308301649, -0.0217774753, 0.00571960816, -0.00855256, -0.016500935, 0.00690112356, -0.0215626545, -0.000182094343, 0.007827539, -0.00837801769, 0.0343176499, -3.22546148e-05, -0.0210658815, -0.00646141171, -0.0168768726, -0.000783760857, 0.0112915272, -0.00205422542, 0.0062432345, -0.000198142967, -0.00965351705, -0.00334482966, 0.00396411819, -0.00453809276, 0.0107007697, -0.00514899, 0.0252280366, 0.0118352929, 0.011821866, 0.0020559039, 0.0101301512, 0.016151851, 0.00130403042, 0.02263676, -0.00829746, -0.00332804676, 0.0148763517, -0.000382020487, -0.000519849942, -0.0260201897, -0.00714279711, 0.0290008299, 0.0272017047, 0.00891507, 0.0362241864, 0.0100831594, 0.00700182095, 0.0201260392, -0.00874724146, -0.000436774659, 0.00555849262, 0.031793505, 0.00369559205, -0.00590422, -0.033807449, -0.017481057, -0.0142990211, -0.00361839077, 0.0167694613, 0.00128137355, -0.0138693787, 0.00684070541, -0.015990736, -0.0114190774, -0.0199514981, 0.0135337207, 0.00017905244, 0.00635064486, 0.00544101233, -0.00417222595, 0.00391041301, 0.000627260422, -0.00801550783, 0.00590422, -0.0157222096, 0.00154989969, 0.0104389563, 0.0115466267, 0.00184947427, -0.00484018493, 0.00761271827, -0.0118822847, -0.00649162102, -0.0174273513, -0.0253623, -0.00124277291, 0.018810261, -0.0254025795, 0.0076798494, -0.00219352357, -0.00191324926, -0.0087942332, 0.0108350329, 0.000684741826, 0.0290276837, 0.00535709783, 0.00718978932, -0.00631707907, -0.00884793885, 0.0034304224, -0.00106403511, -0.0130369477, -0.00188807491, 0.0021649925, 0.0080557866, 0.0121105323, -0.00259966939, -0.000444746547, -0.00106739171, -0.0100428807, -0.00329112448, -0.0201394651, 0.0133457528, 0.00721664168, -0.0169305783, 0.0214015394, 0.016151851, -0.0062096687, 0.0141916098, -0.014648105, -0.0164606571, 0.0132853342, -0.0143393, 0.0168365929, -0.00797522813, -0.00414537359, -0.00578002678, 0.0158833247, -0.00937156472, -0.0120635396, 0.00959981233, -0.0297258515, -0.0160712935, -0.0270674415, -0.0149032045, -0.0188773926, 0.000367545261, 0.0140036419, -0.00999588799, -0.00172695925, 0.0156282261, 0.0012360597, 0.0215223767, 3.37493402e-05, 0.0310147777, -0.0164338034, -0.0104725221, 0.0150911734, 0.0170245618, 0.00747845508, -0.0015700392, -0.00809606537, 0.0128624057, -0.0274165254, -0.010163717, 0.0115936194, -0.00385335111, 0.000641106337, -0.00292357919, 0.00518591236, 0.00610561483, 0.00735090487, 0.0107947532, -0.051745, -0.010492662, 0.00366202625, 0.00203744252, 0.0242881961, -0.00315014808, -0.00976764131, 0.0198306609, 0.0015733958, 0.000143598591, 0.0100630196, 0.00634393189, -0.0186759979, -0.0149166314, -0.0182597823, 0.00841158349, -0.000681804842, -0.0188639667, 0.0387751833, 0.0139499363, 0.0219654441, 0.0120971054, 0.0166351981, 0.0171722509, -0.00661917124, 0.0050281533, 0.0245701484, -0.00559205841, 0.012332066, -0.0212001447, -0.00862640422, -0.0242210645, 0.00277421135, -0.00402453681, 0.0212404225, -0.00107326568, 0.0153865516, -0.00509864138, -0.00988176465, -0.00501808338, 0.00357811176, 0.0253757276, -0.0164069515, 0.000269365351, -0.0151717309, -0.00656210911, -0.00216331426, 0.031498123, -0.0105665065, -0.00388356042, -0.00177227298, -0.00253757276, -0.00538395066, 0.00188639667, -0.00188807491, 0.00171605032, -0.0175347608, 0.00591764646, -0.0143527258, 0.0230664015, -0.0121776639, 0.00496773468, -0.0202737283, -0.0180046819, -0.00219688, -0.00818333589, -0.00485696783, 0.0122783612, -0.0131443581, -0.023308076, 0.00922387559, 0.00152388623, -0.00586058432, -0.00028551888, -0.00127549947, 0.00481333211, 0.00802893378, 0.000253002043, -0.00221869792, -0.00678028679, -0.0130906524, -0.00317867892, 0.0044642482, -0.0275239367, 0.00776712084, -0.00933799893, 0.00522283465, 0.0106806299, -0.00454816269, 0.0111035584, 0.0236168802, 0.00753216026, -0.00536716776, -0.00621302519, 0.0178032871, -0.00636407128, -0.018152371, 0.00742475, 0.0185148828, -0.022824727, -0.00518926885, -0.0127214296, 0.00129731721, 0.00882108603, -0.00145004154, -0.0236437321, 0.012311927, -0.0147689413, 0.00640099356, 0.00484689791, -0.0154536832, -0.0204616971, 0.0309342202, 0.0291619468, -0.0108014671, 0.0132786212, 0.0124730421, -0.00269197533, -0.00184276106, 0.00171772856, 0.0195084289, 0.0066292407, -0.00645469874, -0.00573974755, 0.00275910692, -0.00521276519, -0.00859955233, -0.00919031, 0.00796851516, 0.00833102595, -0.00716965, 0.00786110479, -0.0117077427, 0.021817755, 0.009828059, 0.00607540552, -0.00298231933, -0.0180986673, 0.0124260504, 0.00713608414, -0.00888150465, -0.00852570683, 0.00293532712, 0.0176421721, 0.0212135706, 0.0154671101, 0.00842500944, 0.0119964089, 0.0447633192, -0.0164740831, -0.00630365266, -0.00282120355, -0.0175079089, 0.012983242, 0.0060149869, -0.00361503405, -0.0118889976, -0.00815648399, -0.0250937752, -0.0103785377, -0.0153059941, 0.0113586588, -7.8722238e-05, -0.0165143628, 0.011331806, -0.00145927211, -0.00278595951, -0.0125603136, -0.00196191971, 0.00342203095, 0.00362174725, 0.00547122164, 0.00880094618, 0.0160578676, 0.0213746857, -0.0180852395, -0.0128556928, 0.00959981233, 0.0169574302, 0.0229992699, -0.00791481, 0.0129698161, -0.0172528084, 0.0104523832, -0.0244627371, -0.0174407773, -0.00215660105, -0.00244694506, 0.0260873213, -0.023818275, -0.0168768726, 0.00583373196, 0.0028799437, 0.00579345319, 0.0080557866, 0.0195084289, 0.0012561992, -0.00471934816, -0.0162324086, 0.00644462928, 0.0232409444, -0.00171437208, 0.00349419727, 0.0155610936, -0.0229858439, 0.00980120711, 0.000797606772, -0.0194010194, 0.0124126244, -0.00171269372, 0.00990190357, -0.035794545, -0.00626673037, -0.00363853015, -0.00118403276, 0.00457501551, -0.00431991555, -0.0115533406, 0.0118755717, 0.0217103437, 0.00196359796, -0.00321895792, 0.000837466097, 0.00376608013, 0.00369223533, -0.0145272678, 0.00749188149, 0.0051926258, -0.00112361438, -0.00611568429, 0.00851899385, 0.0109760091, -0.00850556791, -0.00749859447, 0.0269600321, 0.00384328142, -0.00368216564, 0.0346935876, 0.033646334, -0.00606869254, 0.0254697111, 0.0105060879, -0.0192936081, -0.00150122936, -0.00335993432, -0.029806409, -0.00667958939, 0.00529332273, 0.0195084289, -0.016125, -0.0213881135, 0.00623652106, 0.00821018871, -0.000422089652, -0.00407152856, 0.00797522813, -0.00384328142, 0.0200186297, -0.0276044942, -1.32493033e-05, -0.00173367234, 0.00587401073, -0.0148092201, 0.02063624, 0.00797522813, -0.00713608414, 0.021482097, -0.00508521497, 0.013151071, -0.00824375451, -0.00283798645, 0.0148629257, 0.000280903594, 0.0143795786, -0.0168365929, 0.000721244607, -0.006578892, 0.0129295373, -0.00692126295, -0.00987505168, 0.00254764245, 0.00886807777, -0.0187431294, 0.00433669845, 0.000907115114, -0.00501472689, -0.023469191, 0.0276850518, 0.00232107332, -0.00823032856, -0.0116674639, 0.0253220219, -0.00908289943, 0.0125401737, 0.0346130282, 0.0213612597, -0.0122917872, 0.00462200725, 0.0261947326, 0.0144601362, -0.0106000723, 0.000266847928, 0.00426956685, 0.00611904124, -0.00814977, 0.00271379296, -0.00874052849, 0.00138878403, -0.00316860923, -0.00916345697, -0.0113989376, 0.00816319697, 0.00178569928, -0.0233215019, 0.00884793885, 0.0277387574, -0.00356132886, 0.00817662291, 0.0040614591, 0.0250937752, -0.0156819299, 0.00948568806, -0.0215492286, -0.0168634467, -0.00671986863, 0.00794166233, 0.00315518305, 0.0121843768, -0.0125871664, -0.0161384251, -0.0149971889, 0.00694811577, 0.00962666422, -0.00240666606, -0.000829494267, 0.00857941248, -0.0141379051, -0.00375601044, 0.00625666091, 0.0123052141, 0.0115399137, 0.00379628921, -0.010828319, 0.0108014671, 0.016500935, -0.00571960816, -0.00142990204, 0.00707566552, 0.0152791413, -0.0158698987, 0.0043635508, 0.0130906524, -0.0132249156, -0.0119225634, 0.0174139254, -0.00773355504, 0.00396411819, -0.00299742376, 0.0205825344, 0.0056121978, 0.0230798274, -0.00128724752, 0.00715622352, -0.0252951682, 0.00425949693, -0.0291082412, 0.00518926885, 0.00720992871, -0.00638756715, -0.0112378215, -0.00940513052, 0.0118017271, -0.0160847194, -0.00781411305, -0.00398090109, -0.00732405251, 0.00463543367, 0.00301924162, 0.00260470435, 0.0139230844, 0.00233617797, 0.00516912946, 0.0191056393, 0.00913660415, -0.0104590962, 0.0202334505, 0.000506423647, 0.000291392906, 0.00550478743, 0.0116003323, -0.00279099424, -0.00194345845, -0.00294875354, -0.0166083463, 0.00259463442, 0.0050617191, -0.0130369477, 0.0221265592, 2.40205081e-05, -0.00513892, 0.00434341142, -0.0126274452, 0.0150106149, 0.00777383382, -0.0254428592, -0.0182195026, 0.0224756431, 0.00195856299, 0.0192533284, -0.00632379204, -0.00650169095, 0.00129815645, 0.0142453155, -0.00751202088, 0.00682392251, 0.00233282149, -0.00657553552, -0.00478983624, -0.0298601147, 0.0181926508, 0.00735090487, -0.0216163602, -0.0196963977, -0.0116003323, -0.0061458936, 0.00548464805, -0.00252414634, -0.00828403328, 0.0116741769, -0.00692126295, 0.00360496435, -0.0222608224, 0.0112311086, -0.0234289113, -0.00671986863, -0.0088613648, -0.00126459065, 0.0177495833, 0.00125032512, 0.010996148, 0.0112109696, 0.00132081332, -0.00654868316, -0.0207436495, 0.0126207322, -0.011157264, -0.000281952525, -0.0043803337, -0.012493182, -0.0194144454, 0.0166754778, 0.0228784326, 0.00650840392, 0.0136209922, 0.00178569928, -0.00203240779, -0.0129228234, -0.00943198334, -0.00415208656, 0.0176690239, 0.0109424433, -0.00589415, -0.00482675852, 0.00256946, 0.0105933594, -0.00475291396, -0.00999588799, 0.0096065253, 0.010660491, 0.00792152341, -0.00200723344, 0.00233785622, 0.0157087836, 0.0061928858, 0.00730391312, -0.0181926508, -0.00684741838, -0.00449445751, -0.0211330131, -0.000439292111, 0.0015029076, -0.0159370303, 0.0166083463, -0.0101301512, 0.0177227296, -0.0372982919, -0.00765971, -0.00444075232, -0.00390369981, 0.00146514608, 0.00778054679, 0.0132719083, 0.00761943124, -0.00845186226, 0.0049308124, -0.015990736, 0.0176421721, 0.00966694392, -0.0130638005, 0.0155610936, 0.016151851, 0.00635735784, -0.0120098349, 0.00346734468, 0.00040278933, 0.0130839394, -0.000237897446, 0.00631707907, 0.00804236, -0.00423600106, -0.0256039742, -0.00078711746, -0.00266344426, 0.00902248081, -0.0183806196, 0.0125468876, 0.00852570683, 0.0144064315, 0.0179106984, 0.0070958049, 0.00115298445, -0.000284050388, -0.0172528084, 0.0189310983, -0.0183537658, -0.0256308261, -0.0183269139, -0.00409838138, 0.00137367938, -0.0320351757, 0.0130839394, 0.00697496813, -0.0102577014, 0.00475627044, -0.00376272341, -0.0154536832, 0.00776712084, 0.000385586842, -0.00917017, 0.0238317, -0.00889493059, -0.00147102016, -0.018313488, 0.00137703598, -0.00060837972, 0.00133088301, -0.00469585229, -0.0031132258, 0.00130403042, -0.00256778183, -0.00973407552, -0.0124529032, -0.00207100832, 0.00219184509, 0.00298231933, 0.0117614483, 0.00132920477, -0.0197366774, 0.00865325704, -0.00896206219, 0.00518926885, -0.00672993809, -0.00577331334, 0.0146078262, 0.0154671101, -0.00538395066, -0.0248118211, -0.00751873385, 0.00653861323, -0.00480326265, -0.0254697111, -0.0062935832, -0.000167094637, 0.00105480454, 0.00725020748, 0.0311758928, -0.00123186398, 0.00722335512, -0.0194547232, -0.00845857523, -0.0166351981, -0.00847871508, 0.00320049678, -0.00747845508, -0.0066628065, 0.00820347574, 0.0101368641, 0.012486469, -0.00453473628, -0.0296721458, 0.034666732, 0.0185014568, -0.00150878169, 0.0224487912, -0.00171185459, 0.0151448781, -0.0185283087, 0.00521947816, -0.0117614483, -0.00654196972, -0.0166083463, -0.00141731487, 0.00184108282, -0.0158430468, -0.0217774753, 0.00364188664, 0.0179241244, 0.0112781012, 0.0102442745, 0.00723006809, 7.44740682e-05, 0.0106134983, -0.0038734905, 0.00272050616, 0.00416551298, -0.0105463667, 0.0155476676, -0.0132719083, -0.00334315142, 0.00604183972, -0.0280878413, 0.0143527258, -0.0316592418, -0.0117144557, -0.0249460842, -0.00645469874, -0.0214149654, 0.0233886335, -0.00582030555, -0.010660491, 0.027483657, -0.00733747892, 0.0171991047, 0.00562226772, 0.0081229182, -0.00213646167, -0.0039305524, -0.0110498536, 0.00167409307, -0.00280945539, -0.00152724283, 0.00676686037, -0.0263424218, 0.0254160054, 0.0303971674, -0.00471934816, 0.0178972725, 0.007827539, 0.0270942952, -0.00358482497, -0.00209282618, 0.00954610668, 0.0247849692, -0.016312968, -0.00691455, 0.0191996247, -0.0257248115, -0.0114392163, -0.00688769715, 0.0156013733, -0.00641106348, 0.010331546, 0.0178704187, 0.0155208148, -0.00460522436, 0.0103114061, 0.00263994839, 0.00322734937, 0.00333476, 0.00823704153, 0.01031812, 0.0129161105, 0.00380971562, 0.0113049531, -0.0120232608, 0.000381600927, 0.00698839454, -0.000829494267, -0.00440047309, 0.0171856768, -0.00617945939, 0.0152120097, 0.0250400696, -0.00574646099, -0.0107947532, 0.015655078, -0.0107746143, 0.00877409428, -0.00172192429, -0.00504157972, 0.0139230844, 0.0283563677, -0.0120635396, -0.0107209086, -0.00341699598, -0.0119561292, -0.0125804534, -0.00798194204, -0.00051859126, 0.00486703776, -0.00202905107, 0.0330287255, 0.00463207718, 0.00835116487, 0.00435012439, -0.0045280233, -0.00633721845, 0.000606281857, 0.0158027671, -0.03063884, -0.0109357303, 0.0140841994, 0.0025560339, 0.0126274452, -0.0263961274, 0.023482617, -0.00683734845, 0.0105463667, 0.0115063479, 0.0150911734, 0.00423600106, -0.00117396307, -0.0101167252, -0.038963154, -0.00473277457, 0.0236840118, -0.00226065493, 0.0125200348, -0.0220997073, -0.0132383425, -0.0316592418, 0.000896206242, 0.00388691691, -0.0208644867, -0.00122599, -0.00908289943, 0.0189713761, 0.0114660691, -0.00379293272, -0.0117815873, 0.00666952, -0.0200589076, -0.0166083463, 0.0158833247, -0.00693468936, 0.00461865077, -0.0104255304, -0.00547457812, -0.0271614268, -0.0102039957, -0.00168584113, -0.00407488504, -0.0174273513, -0.00666616298, -0.00853913371, 0.00852570683, -0.00768656284, 0.0152254365, 0.0260604694, -0.00528325327, 0.00431655906, -0.00359489466, -0.00938499067, -0.0263961274, -0.00719650229, 0.00432662852, 0.0144332834, -0.0319814719, -0.00602505682, -0.00440718653, -0.0117010297, -0.0170916934, -0.00157675229, 0.00504157972, 0.00641106348, -0.0285711884, -5.47541713e-05, -0.00118067616, -0.0267049316, 0.0230126958, -0.0221265592, -0.00600491744, 0.0212538503, 0.0148897786, 0.00109676179, 0.0142318895, -0.0147420885, -0.0152925681, -0.0161115732, 0.00615932, -0.00127633859, -0.016125, -0.00767313642, 0.00428299326, -0.00300749345, -0.0104993749, -0.00930443313, -0.00668294588, -0.0188908186, -0.0113653718, -0.0102711273, 0.008827799, 0.00382314203, 0.00551821385, -0.0184343252, -0.025483137, -0.0213478338, 0.0257248115, -0.000218177549, -0.00334315142, -0.0213344079, 0.0102778403, -0.0149703361, 0.00440718653, -0.00145088066, -0.0139499363, -0.0117480215, -0.00185450912, -0.00194345845, -0.000680546102, -0.00208107824, -0.0190787874, 0.00129731721, 0.00473613106, -0.0145541206, 0.032975018, 0.00371237495, -0.0125267478, 0.0202737283, 0.0208779126, -0.00841829646, -0.00239323988, -0.0214015394, 0.00474284403, -0.00228247279, 0.00941184349, -0.00213646167, 0.0105262278, -0.00278595951, 0.00898891501, 0.000916345685, -0.0156282261, -0.00922387559, -0.0178301409, -0.0179241244, -0.0183806196, -0.0113653718, -0.0271211471, 0.00931785908, -0.02929621, 0.000424397294, -0.0111706899, 0.0093111461, 0.000771173683, 0.00404131925, 0.0215760805, 0.00917017, -0.0210390277, 0.0110699935, -0.00376608013, -0.0133927446, 0.0336731859, 0.0033800737, 0.0158296209, -0.00543765584, 0.0062768003, -0.0106806299, 0.0085726995, 0.0236974377, 0.0110699935, -0.00369559205, -0.0121709509, -0.00190485781, -0.00219688, 0.00221701944, -0.0131712109, 0.0116808899, -0.0105060879, -0.0244090334, 0.00575317396, -0.0318203568, -0.00968708284, 0.00845857523, -0.0025627471, 0.0124260504, 0.0176690239, -0.00376608013, -0.0256979577, -0.0184343252, 0.0324111134, -0.00370566174, -0.0052094087, -0.00701524736, -0.0232543703, 0.0117480215, 0.0253354479, -0.014486989, -0.00282120355, 0.0125804534, -0.0189042445, 0.00784767885, 0.00318371388, -0.00113955815, -0.00845186226, -0.00730391312, 0.00241673598, -0.0195755605, -0.00680713961, 0.023818275, 0.0213746857, -0.00222205441, -0.0093447119, 0.00784767885, 0.0019283538, -0.0111304112, 0.0213344079, 0.0367612392, 0.00866668299, -0.0110498536, -0.0251206271, 0.00922387559, -0.021159865, -0.00638756715, -0.00531346258, -0.0121306712, -0.0148495, -0.00731733907, 0.00786781777, 0.0217506234, 0.0068104961, -0.01797783, 0.00314007839, 0.0256979577, -0.013990216, -0.0153059941, -0.0165814944, 0.0138425259, 0.00953939371, -0.00317196595, -0.0232006647, 0.00765971, -0.00532688852, -0.0249997899, 0.0116808899, 0.00729719969, 0.0289471261, -0.00902248081, -0.0154671101, -0.0352843441, 0.0213478338, -0.00330455066, -0.00291183102, 0.00126710802, -0.000675930816, 0.0157624893, 0.0118554318, 0.00777383382, 0.0201663189, -0.00292357919, -0.00360496435, 0.013990216, 0.0174407773, -0.00351433689, -0.0118889976, 0.00334147294, 0.0120702535, 0.0207973551, 0.0107410485, 0.00417558243, 0.0173602197, 0.0139230844, -0.00574981747, 0.00855927262, -0.00175213348, 0.00295882323, 0.000609218841, 0.013990216, -0.00794166233, 0.00555177918, 0.01932046, -0.00696154218, 0.0213209819, 0.00536716776, -0.00974078849, -0.0237779953, -0.00633721845, -0.00794166233, 0.000897045364, 0.0330287255, -0.00946554914, -0.0160175879, -0.000472857879, 0.010821606, 0.0100898724, 0.0130839394, 0.00405810215, -0.00961995125, -0.00449781399, 0.0114392163, -0.00768656284, 0.00195856299, -0.0191727709, 0.00467571244, 0.00376272341, -0.0197501034, 0.00391041301, -0.0111841168, -0.0185820144, 0.0202065967, 0.0110095749, -0.00865325704, -0.0192667563, -0.00551485689, 0.00466228649, 0.0109424433, 0.0038399247, -0.0133390399, -0.0328676067, -0.0223011021, 0.000575653045, 0.019468151, -0.00511542428, 0.00910303835, -0.0155745205, 0.0268929, 0.0157759152, 0.0306925457, -0.00810277835, 0.0215492286, -0.00169003685, 0.00648826454, 0.00394062232, 0.0129026845, -0.00813634414, -0.00251743314, -0.0102107087, 0.0127684213, 0.0113385189, -0.0114526432, 0.00670644222, 0.0144467102, 0.000119892757, 0.024328474, 0.0150508936, 0.00596463867, 0.0029135095, -0.0148763517, -0.0141781839, 0.00441054301, 0.00533360196, 0.0050952849, -0.0346935876, -0.00135605736, -0.00242009247, 0.00606533559, -0.0202603023, 0.00784096494, -0.0408965424, -0.0177630093, 0.0326796398, -0.0114392163, -0.00352776307, -0.00375936693, 0.00078585872, 0.00215827953]
|
31 Aug, 2020
|
Fabric.js Image cornerStyle Property
31 Aug, 2020
Fabric.js is a javascript library that is used to work with canvas. The canvas image is one of the class of fabric.js that is used to create image instances. The canvas image means the Image is movable and can be stretched according to requirement. The cornerStyle property of the image is used to change the style i.e. shape of controlling corners of the canvas image.
Approach: First import the fabric.js library. After importing the library, create a canvas block in the body tag which will contain the image. After this, initialize an instance of Canvas and image class provided by Fabric.JS and change the style of the controlling corners of the canvas image using the cornerStyle property of the image object.
Syntax:
fabric.Image(image, {
cornerStyle:string
});
Parameters: This function takes two parameters as mentioned above and described below:
image: This parameter takes the image.
cornerStyle: This parameter defines the style of the controlling corners of the canvas image i.e rectangle or circle.
Example: This example uses FabricJS to change the style of the controlling corners of the canvas image as shown in the below given example.
<!DOCTYPE html>
<html>
<head>
<!-- Adding the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<h1 style="color: green;">GeeksforGeeks</h1>
<b>Fabric.js | Image cornerStyle Property </b>
<canvas id="canvas" width="400" height="300"
style="border:2px solid #000000">
</canvas>
<img src =
"https://media.geeksforgeeks.org/wp-content/uploads/20200327230544/g4gicon.png"
width="100" height="100" id="my-image"
style="display: none;">
<script>
// Create the instance of canvas object
var canvas = new fabric.Canvas("canvas");
// Getting the image
var img= document.getElementById('my-image');
// Creating the image instance
var imgInstance = new fabric.Image(img, {
cornerColor:"red",
// Setting the corner style to circle
cornerStyle:"circle"
});
// Rendering the image to canvas
canvas.add(imgInstance);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js Image cornerStyle Property
|
https://www.geeksforgeeks.org/fabric-js-image-cornerstyle-property?ref=asr8
|
CSS
|
Fabric.js Image cornerStyle Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Fabric.js Image cornerStyle Property, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.00433343509, 0.0020225863, -0.00568921724, 0.0384180546, 0.0233904123, 0.0182080287, -0.0252023451, 0.0115558263, -0.00116017589, -0.0331469774, 0.0146728586, -0.0232510325, 0.00231084856, -0.0398625322, -0.019285053, 0.0226681735, -0.0529135205, 0.00309485802, -0.0298018679, -0.00879991427, -0.00193230656, -0.03598525, -0.0333497114, -0.00949047599, 0.00860985089, 0.0372523367, 0.0236691702, 0.0146095045, -0.0375057533, 0.0265834685, 0.0136211766, 0.00102317217, 0.00184361043, -0.0137478858, -0.0070576705, -0.0447534844, -0.0109096123, 0.0629488453, -0.0230736397, -0.0129876342, 0.0180179663, -0.028027948, 0.018093992, 0.0309675876, -0.0106245177, -0.00277333497, -0.0395077504, 0.00651282305, -0.0152177056, -0.0501512736, -0.00369355641, -0.0183980931, 0.013165026, 0.0198172294, 0.00796997268, 0.0156231737, -0.00695630349, 0.0363400318, -0.00132489705, -0.00615487155, 0.0147108715, -0.0582859665, -0.0312210042, -0.00442213099, -0.039558433, 0.0103204176, 0.0306634866, 0.0284840986, -0.00784959923, -0.00533443317, -0.0257725343, 0.00309802592, 0.0302326772, -0.0309422463, -0.00158148201, -0.0136718601, 0.0353517048, 0.00375057524, -0.0647227615, 0.0426247828, -0.0022569974, 0.00453933654, -0.015103668, 0.0476677828, -0.0282813646, -0.0338818878, 0.0472369753, -0.0328428745, 0.0208435692, 0.0510382354, 0.00102554797, 0.0114798015, 0.0147235421, -0.033223, -0.0217812117, -0.00509685418, 0.0180433076, -0.0185501426, -0.0200959872, 0.00658884831, -0.00764053, 0.0303593855, -0.0021461274, -0.0387728401, 0.0136591895, -0.0381139554, 0.00219839462, -0.0200833175, 0.0218445659, -0.00892028678, 0.0363400318, -0.0242647, 0.00536927814, 0.0368215255, -0.0415857695, 0.034388721, -0.00653182948, -0.0277998727, 0.0397358239, 0.00912935659, -0.00908500794, -0.0225668065, 0.00453933654, 0.0358332, -0.0292696916, 0.047515735, -0.0191963557, 0.024252031, 0.0312716886, 0.0146475174, -0.02952311, -0.0298272092, 0.0289909337, 0.00358585408, 0.0366948172, 0.018980952, -0.00833742786, 0.0139379483, 0.00176916912, -0.00501766149, 0.00475790864, -0.0339072272, 0.0144701246, 0.045716472, 0.0018927101, -0.00290004374, 0.0299539194, -0.0146475174, 0.000325878733, 0.0396598, -0.0819551349, -0.00797630753, 0.0194371026, -0.0132790636, 0.0481999591, -0.02306097, -0.0254050791, 0.0291429833, 0.0376324616, -0.0116128456, 0.0350476056, 0.00143735099, -0.00512853172, 0.0374043845, -0.027039621, -0.015205035, -0.00627524452, -0.00945879892, -0.0460712574, 0.0259119142, 0.0147995669, 0.00262128469, 0.0116825355, -0.0247461945, -0.0350729488, -0.029624477, 0.00719705, -0.0306634866, 0.0221740101, -0.0382660031, -0.0504046902, 0.0214137565, 0.0168649182, 0.0644186661, -0.00430175755, 0.00444430485, 0.02469551, 0.0171310063, -0.0122717302, -0.0358838812, -0.00298557198, 0.0354530737, 0.0502019562, -0.00729841692, 0.0189429391, -0.00214454345, 0.0249869414, 0.00771022, -0.0249742698, 0.00158623361, 0.0124237807, -0.0379112214, -0.00188954233, -0.0450575873, 0.026634153, 0.00619921926, -0.0135324812, -0.0654830188, 0.0314744227, -0.0160666537, -0.00297131715, -0.00537878089, 0.0253670663, -0.0186388381, 0.00651282305, -0.0042922548, -0.0266848356, -0.0110933399, -0.00089804735, -0.0354784131, 0.00548965111, 0.0321839899, -0.0210843142, -0.0384940803, -0.0570695624, -0.0084768068, -0.0092497291, 0.00968687423, -0.000928140653, -0.0376071185, 0.00187687145, 0.00419088779, 0.00058246369, -0.00404200517, 0.0377591699, -0.00569555257, -0.0166495126, -0.0248602312, 0.00633226335, 0.0304860957, 0.0133931013, -0.0124998055, -0.0384687372, -0.012278066, 0.0307648536, 0.0258612297, -0.0122527238, -0.0165481456, 0.025747193, -0.00336728175, -0.00470089, -0.0217051879, -0.01013669, 0.0284080729, -0.00931941904, -0.033603128, -0.0283573903, -0.0270649623, 0.043739818, 0.0486307703, 0.0357571729, 0.027039621, -0.00236628344, 0.0266594943, -0.00612953, -0.0153317433, -0.00452666543, -0.0574750304, -0.0128672607, -0.0287628584, 0.0139506198, -0.0285601243, 0.0176505111, -0.0326654837, -0.0356558077, 0.0270649623, -0.0249996111, -0.00299824285, 0.0318545476, -0.0171183348, 0.0117142126, 0.0327161662, 0.0216798447, 0.0273690633, -0.0374297276, -0.00779258041, -0.00118155789, 0.00599648571, -0.0409015454, -0.0175238028, -0.0117142126, -0.00279392512, 0.0228709057, -0.00696263881, 0.0256965086, -0.0311703216, 0.010884271, -0.0215531364, -0.0163200703, -0.0047072256, -0.0182713829, -0.0350476056, -0.0200959872, -0.0322600156, 0.0468568504, 0.0230736397, 0.02027338, 0.00362069882, 0.021363074, -0.000163929275, -0.00914202724, -0.0161806904, -0.0196905192, -0.024657499, -0.00476107653, -0.00557201169, 0.0480479114, 0.00759618217, -0.00886326842, 0.0218192246, -0.0421939716, -0.0227315277, 0.0399385579, 0.0442719944, 0.0408001766, 0.00342113292, -0.0152937304, -0.0094334567, 0.00527107855, -0.00197190302, -0.0215024538, -0.0127088754, 0.0183854215, 0.0215277951, 0.0298778936, 0.0207295306, -0.00212712097, 0.00904066, -0.028129315, 0.029016275, 0.0286868326, 0.0254937746, -0.0341353044, -0.0104597965, 0.0618338101, -0.0615803897, -0.0131903682, -0.00547698047, 0.022655502, 0.0136338482, 0.00089646352, 0.0133550894, -0.00613903301, -0.0107385563, -0.00807134, -0.00470089, 0.00516020879, -0.0284840986, -0.0404453911, -0.00428275159, 0.0170676522, -0.00291905, 0.0141026694, -0.00690562, 0.0293457173, -0.0119993063, -0.0239986125, 0.00595847284, 0.0012536234, -0.000557122, -0.0210969858, -0.0243027136, -0.032792192, -0.00901531894, -0.0184234343, -0.0216798447, 0.00203842507, -0.0113150803, -0.0376071185, 0.00875556562, -0.0167382099, 0.0431823, -0.00507151289, 0.0221993513, 0.0363400318, 0.0454377122, -0.0304354113, -0.0202607084, 0.0321079642, -0.00270839687, -0.0406227857, 0.0177772194, 0.0375817791, -0.0159019325, 0.0199692789, -0.0282053389, -0.014115341, -0.0351236314, 0.0172703862, -0.0238212217, -0.0134437848, 0.0275717974, 0.00130985037, -0.0300552864, 0.00817904156, -0.020780215, -0.0138239106, 0.000440312462, -0.00262128469, -0.0117078768, 0.0102633983, 0.000287668168, 0.0289402492, -0.0135198105, 0.0239986125, 0.0200453047, 0.0335777849, 0.0470342413, -0.00650648773, 0.00811568741, 0.0697404295, -0.00885693263, -0.0465527475, 0.0117902374, -0.0144701246, -0.0377845131, -0.02027338, -0.00765953632, 0.00220789784, -0.00418138457, -0.102481931, 0.0143307457, 0.000685018487, -0.0193610769, 0.010067, 0.0156738572, 0.0353517048, 0.0206535049, 0.0380379297, 0.0133297471, 0.0165608171, 0.0110363215, 0.0388742052, -0.0107575618, -0.0406988114, 0.0299032349, -0.0326401405, -0.0266088117, 0.0125885019, 0.00890761614, -0.0154457809, 0.00720972056, -0.0565120466, -0.0155091351, 0.00214929506, -0.00180559792, 0.0212743785, 0.00394063815, 0.0193737485, 0.00607884629, -0.025544459, -0.0236438289, -0.0198045578, 0.0254557617, 0.014457454, -0.00379492319, -0.0230863113, -0.0086605344, 0.0202100258, 0.016294729, 0.00583176455, 0.00409902399, 0.0108525939, 0.0380886123, 0.00669655064, 0.00234886119, -0.0067345635, -0.0116255162, 0.00917370431, -0.0345661119, 0.0415857695, -0.00511586061, -0.00500499085, 0.0251770038, 0.0156611856, -0.0262286849, 0.027926581, -0.025949927, -0.0319305733, 0.0130383177, 0.0381899774, 0.0290416162, -0.00617387751, -0.0013359841, -0.00216354965, 0.00601549214, 0.0134311141, -0.0270903036, 0.0371509679, -0.00315504475, 0.00187370379, 0.0223640725, 0.00257218513, 0.030308703, 0.0443733595, -0.00696263881, 0.00304575847, 0.0218318962, -0.0128355836, 0.0191203319, -0.0221613385, 0.0234157536, -0.0136338482, -0.0104154488, -0.00940811541, -0.0446014367, 0.0185628142, 0.00457734894, -0.0141660245, 0.00671555707, 0.0220979843, -0.0287628584, 0.0179546122, -0.0210082904, 0.0226935148, 0.0444493853, 0.0051190285, -0.0158892609, 0.000129183405, -0.00211445, 0.00407368224, 0.00231401622, 0.026532786, 0.0150403138, 0.00800798461, -0.0243914109, -0.0224147551, -0.0307395123, 0.00223799096, -0.0162313748, -0.0361626409, -0.020476114, -0.0388488658, 0.0122717302, 0.00786227, 0.0379365608, -0.0222627055, 0.00413070107, -0.0103457589, 0.0162313748, -0.0246194862, 0.0176251698, -0.00816003513, 0.0125314826, 0.0151290093, 0.00380759407, 0.0120056421, -0.02027338, -0.0345661119, 0.0220473, 0.0339579098, -0.0081917122, 0.0366187915, 0.0454630554, 0.01336776, -0.044930879, 0.0148502504, 0.00511586061, -0.0192216989, 0.00357001554, 0.00948414, -0.0044728145, -0.0184994582, 0.00144051865, 0.00902799, -0.0234537665, 0.0266594943, -0.0375057533, 0.0422193147, 0.0508355, 0.00160840759, -0.00904699601, 0.00282718614, -0.00405150838, -0.000165909107, 0.00386778079, -0.00748848, -0.023365071, -0.0390515961, -0.0208942518, 0.0184867885, 0.0261019766, -0.0430302471, 0.0140013034, -0.0321586505, 0.0609721914, 0.0291936677, -0.00445064, 0.0316771567, -0.0221486669, 0.00459002, 0.0221486669, -0.0010128771, 0.0106371893, -0.014660188, -0.00906600244, 0.0378858782, 0.0119612943, 0.0258232169, 0.014900934, 0.0270903036, -0.000761043688, 0.002907963, -0.0120309843, -0.0410282537, -0.00910401437, 0.0214264281, 0.0265834685, -0.0358838812, -0.0188922565, 0.0270649623, -0.0311703216, 0.045716472, 0.0100099817, 0.0191456731, -0.00869854726, -0.00807134, -0.0215024538, 0.0114227822, -0.0325134322, -0.0201086588, -0.0196018238, -0.0029032114, 0.0146982, -0.0116445227, 0.0179419406, -0.00388045167, 0.0132157095, -0.00253575644, -0.0131143425, -0.0161806904, 0.00649381708, 0.0174097642, 0.0298778936, -0.00652549416, 0.0063069216, -0.0404707342, 0.0154837938, -0.00944612827, -0.00840711687, -0.0166875254, 0.00156326767, -0.0253670663, 0.0121260155, -0.016902931, 0.0310182702, 0.00301724905, 0.0566134118, -0.0068105883, -0.03041007, 0.0107955746, -0.0105294865, 0.00728574581, -0.00634176657, -0.0149262762, 0.0177265368, 0.0156865269, 0.00905333087, 0.0139252776, 0.00048941205, -0.0138492528, -0.018778218, -0.00238053827, -0.00703232875, 0.0169662852, -0.0147995669, -0.0272676963, 0.0238212217, 0.0349969231, -0.011055327, 0.0184741169, -0.0385954455, 0.00882525556, 0.0117205475, 0.014900934, -0.0128292479, -0.0368215255, 0.00757717574, 0.0129116084, 0.00945246313, 0.0266848356, 0.0172830559, 0.0172450431, 0.0122844009, 0.0271156449, -0.0206408352, -0.0119612943, -0.0226681735, -7.26099825e-05, -0.00534076849, -0.0166495126, -0.00556250848, -0.0209195931, 0.021667175, -0.0294724256, 0.0466034301, -0.0121957054, 0.00500182295, -0.0216038208, -0.0260512922, 0.0223387312, 0.029421743, -0.00221423316, -0.00753282756, 0.00318355416, -0.00329759205, -0.00234094192, -0.0322600156, 0.00207802141, -0.000900423154, 0.0316771567, 0.00137874822, -0.00512219593, -0.030916905, 0.0232130196, 0.00135182263, 0.00445697596, -0.0251643322, -0.00426374516, 0.00332293357, 0.00402933406, -0.00552449608, -0.0222373642, -0.00624673534, -0.0301566534, 0.0311449803, 0.00574623607, 0.00897097, -0.00898364186, 0.00352883525, 0.00187687145, -0.0431062728, -0.00491946237, -0.00466604484, 0.00881258491, -0.0348195285, -0.00458368426, 0.0202860516, 0.00966153294, 0.00949681178, -0.00148486672, -0.0273183789, 0.0297765266, -0.01058017, 0.0145714916, -0.0299285762, -0.00864152797, 0.0169662852, 0.00460902601, 0.0196905192, 0.00746947341, 0.0146855293, -0.0327668488, 0.0447534844, 0.00427641626, 0.0165861584, 0.000739661569, -0.00888227485, 0.0102824047, 0.00767220696, -0.00062206015, -0.00825506728, 0.00793196, -0.00425741, 0.0098262541, 0.0162060335, -0.0112073775, -0.035782516, 0.000394776551, -0.0119422879, -0.000875873375, 0.0288135409, 0.0237451959, 0.0244167522, 0.0153444139, 0.000791137, -0.00223957491, -0.0313730538, -0.00753916334, 0.0124744643, 0.00193705806, 0.00164562825, 0.0209069233, 0.0123984385, -0.0113720987, -0.0101683671, -0.0405721031, -0.0131270131, -0.00521405973, -0.0493910201, -0.0171436761, -0.0154584525, 0.0154837938, -0.00535343913, 0.0196525082, -0.0112137133, -0.0120373191, -0.00131064234, -0.0260766353, -0.00556567637, 0.013063659, -0.00723506231, -0.014216708, -0.000567813, -0.0233397279, -0.0165228043, 0.017789891, 0.0160159692, -0.00228550681, 0.0121386861, 0.00604400132, -0.0210843142, -0.0165354759, -0.00719071459, -0.0693856403, 0.0487828217, 0.0259119142, 0.00688027823, -0.0065381648, -0.0094144512, -0.0199312661, -0.000577712141, -0.0443987027, 0.0606174059, -0.00519822119, 0.0022807552, 0.00785593502, 0.0304860957, 0.0133550894, 0.0126075083, 0.00730475225, 0.0209195931, 0.0104471259, -0.0292950347, 0.0125568248, 0.0183854215, 0.00284936023, 0.0513676777, 0.0134184435, -0.021464441, 0.00249932753, 0.00532809785, 0.0168902595, 0.0092307236, 0.022110654, 0.0215531364, -0.0132790636, 0.00437144749, -0.00613269722, -0.030916905, 0.00505250646, 0.0289909337, 0.0019022132, 0.0152303763, 0.0428528562, -0.0503793471, -0.0157372113, 0.0207168609, -0.0291683245, 0.0140013034, -0.0146728586, -0.00484343711, 0.030308703, 0.0363907181, -0.00208910834, -0.00206218287, -0.00299824285, -0.00891395193, -0.00532493, -0.0158639196, 0.00710835401, -0.0284840986, -0.0187655464, -0.00619921926, -0.00614220044, -0.00165671529, -0.026431419, -0.0222373642, 3.78393524e-05, -0.0443733595, -0.014457454, -0.0130129755, 0.0272423532, -0.0306634866, 0.0163834244, 0.0657871142, -0.0059458022, -0.00715270173, -0.00810935162, 0.020476114, 0.0154204397, -0.01425472, 0.00768487807, -0.00517287944, 0.0328428745, -0.015547148, 0.0254937746, -0.00559418555, -0.00882525556, 0.0136211766, 0.0489855558, -0.000351220457, 0.017004298, -0.00931941904, 0.0331216343, 0.0169789549, -0.00510002207, 0.0251770038, 0.019285053, -0.00975022838, -0.000673535513, -0.0182840545, 0.000141161319, 0.0126835331, -0.020818226, -0.0141786952, -0.0366948172, -0.000131361201, -0.0174731184, -0.00132410508, 0.0176505111, 0.0330962911, 0.0300552864, -0.0073681064, -0.00919904653, -0.0035731832, -0.00563536584, 0.0141660245, -0.0168142337, -0.022009287, 0.0118535915, 0.0117775667, -0.00121244311, -0.0336538106, -0.00536927814, -0.0504300334, 0.0109983087, 0.0111820363, -0.0168775879, 0.013165026, -0.0261019766, 0.0313223712, 0.0476677828, -0.00158385781, -0.00255001104, 0.00349399028, -0.000726594764, -0.00044981562, 0.00251991767, 0.0132790636, 0.0178532451, -0.0113594281, 0.00186420057, 0.00814736448, 0.0217432, -0.0254557617, -0.010478803, -0.0021920593, 0.00609468482, -0.0112960739, 0.0219459329, 0.0107322205, 0.00427008048, -0.00663319649, 0.01381124, 0.000540095498, 0.0153317433, 0.00647481065, -0.0208815821, 0.00111345202, 0.017587157, 0.00728574581, 0.0214010868, -0.00365237612, 0.0238592345, -0.00549598644, 0.025240358, 0.00729208114, -0.0162440464, -0.000185905315, 0.0164594501, -0.027825214, -0.0249742698, -0.00223165564, 0.0167635512, 0.00276858336, -0.00588244805, 0.0281546563, -0.0317531824, 0.00185628131, -0.0323107, -0.00750115048, -0.00354784145, -0.0333750509, 0.00682959473, 0.0465020649, -0.00104930578, 0.0216925163, -0.000563061447, 0.0323867239, -0.0436637923, 0.0191963557, 0.000520693255, -0.00998463947, 0.0251263194, 0.0320066, 0.000289845979, -0.00716537284, -0.00296181417, 0.0361626409, -0.0167382099, -0.015002301, -0.0221866798, -0.00361436349, -0.0155724902, 0.000545243034, -0.00368088554, 0.00415604282, 0.0101176836, -0.0283827316, -0.0169536136, 0.018980952, 0.00419088779, -0.0218192246, 0.0129369507, 0.00050010311, -0.0262793694, -0.040268, -0.0354277305, -0.00905966666, -0.0100860065, 0.00865419861, 0.0184867885, 0.00216038199, -0.0176505111, 0.000362901425, -0.00943979248, -0.0155598186, -0.0174224358, -0.00446331128, -0.0180559792, 0.00288420497, 0.00651915884, -0.0160539821, 0.0213123914, -0.0110173151, -0.0190062933, -0.0141406823, 0.0251896735, 0.00362386671, -0.0199439377, 0.0043809507, -0.00448865304, -0.041154962, -0.00885059778, 0.0467808247, -0.00739978347, 0.00666487357, 0.0127468873, 0.00937010255, -0.0126898689, 0.0380886123, 0.0175111312, -0.00987060182, -0.00210494711, -0.0251896735, -0.00752015691, 0.00156168384, -0.00523306616, -0.0188415721, 0.012822913, 0.00274007395, 0.0353010222, -0.00946513377, -0.000577316154, 0.00715903705, 0.0253290534, -0.00364604057, -0.0115811685, -0.0235424619, -0.0193357356, 0.0191710144, -0.0103901075, -0.0148882633, 0.000883000728, -0.0323613808, -0.00943979248, 0.0493910201, 0.00474523799, -0.0422953404, -0.0311703216, 0.00115859194, -0.0481746197, -0.00440312456, 0.0394063815, -0.0113024097, -0.0293964, 0.0338565446, -0.00395014137, 0.00322948606, 0.0367961861, 0.00973122194, -0.0290923, 0.00975022838, -0.00139458675, 0.0236565, -0.0258358885, -0.00810301676, 0.00352883525, -0.0155344773, -0.016193362, 0.00399448955, -0.0192597117, 0.0100543294, -0.0230229571, 0.0207295306, 0.00229817769, 0.0007883652, -0.00219522696, 0.0465274081, 0.0021001955, 0.00938910898, 0.0139759611, 0.0154331103, -0.0234157536, 0.00568288192, 0.01381124, -0.00401032809, 0.0049384688, 0.0180813204, -0.0150276432, -0.000639086647, 0.00722872699, -0.031803865, -0.000867954048, -0.0199439377, -0.00563219842, -0.0165481456, -0.00454567187, -0.00817904156, -0.00363970525, 0.00484977243, -0.00729208114, 0.00493213302, -0.0180559792, 0.0339832529, -0.015547148, -0.000245497969, -0.00321047986, -0.0328935571, 0.0037537429, 0.00468821917, -0.0142800622, -0.0315504484, 0.0321586505, -0.0183980931, 0.0251643322, 0.0114798015, 0.0167635512, 0.0172577146, 0.000500895, -0.0302833617, 0.0120563256, -0.0045108269, 0.0195511412, 0.0087872427, -0.0173590817, 0.0127975708, 0.00127896515, -0.0102760689, 0.0185248014, -0.00388361933, 0.0109349545, 0.000470009807, -0.0159019325, 0.00676624058, 0.0282560233, -0.0222880468, -0.0115178144, -0.026836887, 0.00474840589, 0.0276985057, -0.00291746599, -0.00722872699, 0.00038725324, -0.00239479309, -0.0117585603, -0.0293710586, 0.0257978756, 0.0376324616, 0.0169789549, -0.0104661323, -0.0114988079, 0.0306634866, 0.00859718, 0.00194656127, 0.00361753115, -0.00981991831, 0.00364287291, 0.00567337871, 0.0200326331, -0.0115494914, 0.0196525082, 0.0206915177, 0.00474840589, 0.000144230056, -0.0272423532, -0.0104851387, -0.000218374393, 0.0251896735, 0.0306381453, 0.0186134968, 0.030815538, -0.0161046665, -0.00478008296, 0.0304860957, -0.0295737926, 0.0018927101, 0.00217780448, 0.0131270131, 0.00833742786, -0.0317024961, 0.0178659167, -0.010067, -0.00443480164, 0.00167730544, -0.00499548763, -0.00700065168, -0.0152683891, -0.00144527026, -0.0139886318, 0.0178152323, -0.00643046247, -0.0110806692, -0.011125017, -0.0132030388, 0.00619921926, -0.0092497291, -0.0298525523, 0.00942712184, 0.00517287944, 0.0102697341, 0.0129622919, 0.00344013912, -0.00277967053, 0.0204127599, 0.0160286408, 0.0219332632, 0.0094144512, 0.00324215693, 0.0123604266, 0.000358545803, 0.0113467574, -0.0103964424, -0.0126708625, 0.00616754219, -0.00148645055, 0.00751382159, 0.0168902595, 0.0084261233, -0.00662686117, 0.0256584957, 0.0274197459, 0.00107781519, -0.0460459143, 0.00805866811, 0.0189429391, 0.014216708, 0.0268622283, 0.000598302286, 0.0161553491, -0.0471356064, -0.0313477144, -0.00808401, 0.00684860116, 0.00089804735, 0.00852115452, -0.0113150803, 0.026836887, 0.00615170365, 0.0170803219, 0.0174604487, 0.00240588, -0.0275464542, -0.0320572816, 0.00318988971, 0.000443084224, 0.00196239981, 0.0109729664, -0.0042922548, 0.0220346302, -0.0113720987, 0.031601131, -0.00282560242, -0.0237578675, 0.00381392962, 0.00710835401, 0.011055327, -0.00890128, -0.00607567839, 0.0176758524, 0.0228075515, -0.0164087676, 0.0117078768, -0.0168522466, 0.00475790864, -0.00516337622, 0.00395330926, 0.00698164525, 0.00730475225, 0.0207422022, 0.00650648773, 0.00800165, 0.00515070558, 0.00538511667, 0.00315187708, 0.0155851608, -0.0296498183, 0.00572089432, 0.0133044058, 0.00646214, 0.0216291621, -0.0156358443, -0.00289845979, -0.0125378184, 0.000660864695, 0.00305684563, 0.00900898315, 0.0163834244, 0.0106308535, 0.0130003048, -0.0129432855, -8.79536e-05, 0.0265074447, -0.00940811541, -3.34404353e-06, 0.00178500777, 0.0185628142, -0.00549915433, 0.00194972893, -0.0138239106, -0.00587294484, 0.00601865957, -0.0212743785, -0.0100163165, 0.00691829063, -0.013063659, 0.00437778281, 0.00190854864, -0.0181193333, 0.00183410733, -0.0209449362, -0.0146475174, -0.0122083761, -0.00956016593, 0.0196778495, -0.0102190506, -0.02952311, 0.0204127599, 0.0228202231, -0.00855916739, -0.00159890449, -0.00215563038, -0.002584856, 0.00339895883, -0.0121703632, 0.000628791517, -0.00833109207, -0.0241886768, 0.0224781092, -0.00254684337, -0.0212870482, 0.0132537223, -0.0152177056, 0.0177772194, 0.000204911601, 0.00962352, -0.00501766149, 0.0011744306, 0.026836887, -0.0184361041, -0.0308915619, 0.0208562389, 0.0121893696, -0.00656350655, -0.00329125649, 0.00771655515, -0.0123667615, 0.00888861, -0.0021841398, -0.0100860065, -0.0102760689, -0.0102190506, 0.00898364186, 0.0169409439, 0.0280532893, -0.023365071, -0.0132030388, -0.0245814733, -0.00185469748, -0.0300046019, 0.0173844229, -0.0175618157, -0.00176758529, 0.00238687359, 0.00527741434, 0.0112707317, -0.0192723814, -0.0365934521, 0.00458051683, -0.0200326331, 0.00205584732, 0.0012441203, 0.00814736448, 0.021363074, 0.00433343509, 0.00875556562, 0.00191805174, 0.00937643833, -0.0432329811, 0.0141026694, 0.0113594281, 0.0178785864, 0.00436511217, -0.0154964644, 0.0105168158, -0.00754549867, -0.0134564554, 0.0338312, -0.0137732271, -0.0167508796, 0.00707667647, 0.00522989826, -0.0232890453, -0.0052995882, -0.0256711673, -0.0152177056, 0.0252530295, -0.00477057975, -0.0283067059, 0.0100099817, -0.00345597765, 0.0239859428, -0.00480859214, 0.011087005, 0.0202480387, 0.000979616074, 0.00951581728, 0.0115241492, 0.00288578891, 0.0180433076, -0.000304496672, -0.00071511179, 0.00133440015, 0.00320731197, 0.0012900522, 0.0285347812, -0.00291271438, -0.00303942314, 0.0187908895, 0.0014729877, 0.0197285321, 0.028332049, 0.0291936677, 0.0254050791, 0.0218952503, -0.028230682, -0.0341099612, 0.0053882841, 0.00129480381, -0.000585631409, -0.00403250195, -0.00902165379, -0.00259911059, 0.00378225232, -0.00740611926, 0.0346421376, 0.0172830559, -0.00869854726, 0.000652549439, 0.0434103757, 0.0151923643, -0.0168902595, -0.00969321, 0.0188162308, -0.0156231737, -0.00146427657, 0.0229342617, 0.000841820438, 0.0182587132, 0.00405150838, 0.0595530532, 0.00500815827, -0.0018420266, -0.0118155796, -0.0079382956, 0.00590462191, -0.00983258896, 0.00791295338, -0.0171816889, -0.0252783708, -0.00482126325, 0.0194244329, -0.000970904832, 0.0368468687, 0.00278125424, -0.0101113478, 0.00333243678, -0.00790028274, -0.0203240626, -0.00217146915, -0.0292696916, 0.0055339993, 0.0378858782, -0.0135324812, -0.0121640274, 0.0123984385, -0.00446014339, -0.00253734016, -0.0181573462, -0.0139886318, 0.0246321559, 0.0104978094, -0.028027948, -0.0059458022, -0.00348448707, 0.0164847914, 0.0107132141, 0.000559893728, -0.00111266, -0.0087682372, -0.0125631597, 0.00672189239, 0.00783692859, 0.000199863061, -0.0184994582, -0.00926240068, -0.00214929506, 0.00886326842, 0.0125948368, 0.0251770038, 0.0141406823, 0.01051048, -0.029117642, -0.00940178, -0.00575890718, -0.00178025616, -0.0118345851, 0.012278066, 0.000613744895, -0.0015767304, 0.0179672837, 0.00890128, -0.00962352, 0.00325957942, 0.0177645497, -0.00570505578, 0.008299415, -0.0475917608, -0.0177138653, -0.00850214902, 0.0175998285, -0.00192121952, -0.00749481516, 0.00624990277, -0.00321681518, -0.015103668, 0.0285347812, 0.00482126325, 0.00439678924, -0.00715270173, -0.00860985089, 0.0476677828, 0.0203240626, 0.0159652866, -0.00513169914, 0.00517921522, 0.0298272092, 0.00033696575, 0.00490045594, -0.000880624924, 0.0119866356, 0.0132917343, -0.000125223756, 0.00703232875, -0.0199312661, -0.00331976591, 0.016193362, 0.0150276432, -0.017992625, 0.011973965, -0.000493371685, 0.0190443061, -0.0196651779, 0.0058032549, -0.0228962488, 0.0223767422, 0.0169409439, -0.0254050791, -0.00376958167, 0.016700197, 0.0224274267, 0.00248507294, 0.00239320914, -0.0160033, 0.00397231523, 0.0264821015, 0.00522989826, -0.00124016067, 0.02027338, -0.0231496654, 0.00573039753, -0.0150529845, -0.00936376769, 0.0125694955, -0.00780525105, -0.00434610574, 0.00572406221, 0.0112200482, -0.00500182295, 0.0136085059, 0.00962352, 0.00300616212, -0.0029032114, 0.0139632905, 0.0120626613, 0.0175998285, -0.00181668485, 0.0189302675, -0.0191330016, 0.00822972506, 0.00408635288, 0.00858451, -0.00213979185, -0.00197665463, 0.0119169457, -0.042548757, 0.0193230659, -0.0100606643, -0.0195764825, 0.0132917343, 0.0155091351, 0.00436194427, -0.0130003048, -0.00110157311, -0.0161426794, 0.00972488709, -0.0209576059, 0.00496697798, 0.0106435241, -0.00200199615, -0.0108462581, 0.0162820574, 0.00332293357, -0.0170929935, 0.00901531894, -0.00486561097, -0.0229342617, 0.0123604266, 0.0161680207, -0.0102000441, 0.00547698047, 0.0099529624, -0.0138239106, 0.00482443068, -0.00999731, 0.00854016095, -0.00390896108, -0.0154711232, -0.0128862672, 0.00909767952, 0.0111123463, 0.00330075971, -0.00143497519, 0.00597114395, -0.00283510541, 0.0140013034, 0.00119106111, -0.000953482406, -0.0234284252, -0.0222627055, -0.0200453047, -0.0412309878, -0.0288642254, 0.00217622053, 0.00833742786, -0.00983892474, -0.0131016718, 0.0441706255, 0.00633543124, 0.0247461945, -0.00129797147, -0.0233904123, -0.0146095045, 0.0262793694, 0.00531542674, 0.0206408352, 0.00105088961, -0.0214517694, -0.0127468873, 0.0156738572, 0.0210589729, -0.00786227, 0.00712102465, -0.00330392737, 0.00103584304, -0.00836276915, -0.00125045574, 0.000103148741, -0.00160444796, 0.00439045392, 0.00784959923, 0.0241126511, 0.0274450872, -0.0284840986, -0.0095411595, 0.0127595589, -0.00785593502, 0.0109793022, -0.00551182497, -0.00503666792, 0.0035921894, 0.0146221751, 0.000647797831, -0.0178025607, 0.0124871349, -0.0235678032, 0.00609151693, -0.00810301676, -0.000504854659, -0.00336728175, 0.0301819947, -0.0168522466, 0.000167097, 0.00813469384, 0.00286995037, 0.0151923643, -0.0108589288, 0.0078876121, -0.00172323734, -0.000137597643, -0.00672822772, -0.027825214, 0.020476114, -0.0301566534, -0.00757084042, -0.0245307889, -0.00502082938, 0.011771231, 0.00634810189, 0.0213504024, -0.0100606643, -0.0113974409, 0.0061802133, -0.0104344552, 0.0126771973, 0.007330094, 0.0153317433, 0.0117585603, -0.0229215901, -0.00671555707, 0.00934476126, 0.0181700159, 0.0254177507, -0.0154584525, -0.00437461538, -0.014558821, -0.00306634861, 0.0160033, 0.0223894138, 0.0207928848, 0.00588244805, -0.030916905, 0.00211286638, -0.0156738572, -0.0149642881, 0.00696263881, 0.00018986495, -0.00202733791, -0.00698164525, 0.00129321986, 0.000188578066, 0.00227125199, -0.000546430936, 0.00959817786, 0.0208815821, 0.0121323504, 0.0434103757, 0.00556250848, -0.0010342591, -0.00174699514, 0.000578108069, 0.00331976591, 0.00490995916, -0.00353833823, -0.00604716921, -0.0136085059, 0.01381124, 6.8947309e-05, 0.0163200703, -0.00150387303, -0.0185248014, -0.00618338073, 0.00590145402, 0.0140519859, 0.016700197, -0.00855916739, -0.0141026694, -0.00398181845, 0.000794304709, 0.00796997268, -0.034185987, 0.00610418804, -0.00822338928, -0.0243280549, 0.00210494711, -0.0138872648, 0.000505646574, 0.00372206583, -0.00229184213, -0.00866687, -1.65438905e-05, -0.000230055346, 0.00259435899, 0.0102507276, 0.0174097642, 0.00855916739, 0.000604241737, -0.024353398, -0.00516337622, 0.00796997268, -0.0229849443, -0.0012322414, 0.00708934758, 0.00879991427, -0.0232510325, 0.0227948818, -0.0160033, -0.0201973543, 0.00647797855, -0.0116255162, 0.00416237814, 0.0140266446, 0.00592679577, 0.028129315, 0.00296339788, -0.0188415721, 0.00831842143, -0.034794189, -0.00290954672, 0.0122527238, -0.000105524523, -0.00545163872, -0.00417188136, -0.015103668, -0.00291905, -0.00727307517, 0.000133143039, 0.00655083591, 0.00556250848, 0.0222880468, 0.00182460423, 0.00850848388, 0.00309010665, 0.0121070091, 0.0239225887, 0.00215404667, 0.0192723814, -0.00297606876, -0.00918637495, 0.00735543575, -0.010238057, 0.00593629899, -0.0258232169, -0.012721546, 0.0224781092, 0.011429118, -0.00405467581, 0.0264567602, 0.00587611226, 0.0276478212, 0.0170676522, -0.0191583447, -0.000380323851, 0.00637661153, 0.029117642, 0.00121957052, 0.00350666116, -0.0342366695, -0.00696897414, -0.0169916265, 0.0114354528, 0.00615487155, -0.0120563256, -0.00977557059, 0.00474523799, -0.0139379483, -0.030612804, -0.021464441, 0.00313603855, -0.00437144749, 0.0105991764, 0.00453616865, -0.00968687423, 0.0105928406, 0.00616437476, -0.00513803447, -0.000534947962, -0.0215024538, -0.00788127631, 0.00475157332, 0.0131776966, 0.00408318546, 0.00450765947, 0.00641779182, -0.00802065618, -0.00453933654, -0.0121576926, -0.0172450431, 0.00334510766, 0.0118789338, -0.0216038208, 0.00516654411, -0.00404517259, 0.0055846828, -0.0172070302, 0.0175238028, 0.00236945134, 0.0128419194, 0.0115684969, 0.0132283801, -0.00264504249, 0.000372800539, -0.0128039066, -0.00885059778, 0.00532493, -0.00130905851, 0.0146221751, 0.0147742257, 0.00635443768, 0.00252150162, 0.00216988521, 0.000649777649, -0.0093574319, -0.0090723373, 0.000442292279, 0.021667175, -0.00575573929, -0.0207295306, 0.0311956629, 0.0196778495, -0.00167413766, 0.00483710179, -0.0210843142, -0.00594263431, 0.0186134968, -0.00643046247, 0.0197665449, -0.0144954668, -0.021768542, -0.0105991764, 0.0262793694, -0.00950314663, -0.013570494, -0.00610735547, -0.0226935148, -0.0184867885, -0.0149642881, -0.0126455203, -0.0093574319, 0.00837544, 0.00923705846, -0.00780525105, -0.00477374718, 0.0195764825, -0.0125758313, 0.0161173362, 0.00753282756, 0.0358838812, -0.00918004, -0.0162567161, 0.0140013034, 0.0138239106, 0.0102824047, 0.00240746397, -0.00216038199, 0.0114734657, 0.00923705846, -0.011631852, 0.00258168811, 0.00250566308, -0.00539778732, 0.00952848885, 0.00222373637, 0.000281926681, 0.0115684969, 0.0153950974, -0.0352503397, 0.00142943161, 0.00835643336, -0.00648748176, 0.0302580185, -0.00531859463, -0.000181747688, 0.00244547636, 0.00195606449, -0.0073491, 0.0131270131, 0.0178152323, -0.0297005, -0.0126138432, -0.0312210042, 0.0127785644, -0.0148882633, -0.00374107203, 0.0318292081, 0.00523623405, 0.00687394291, 0.0236945134, 0.005391452, 0.018778218, -0.00281609921, 0.00884426199, 0.0210336316, -0.00181351718, -0.00170581485, -0.0148249092, -0.010409113, -0.0193610769, 0.015547148, -0.00641779182, 0.026938254, 0.000685810403, 0.00955383, 0.00261019776, -0.00862252153, 0.00402616663, 0.000196695342, 0.0254050791, -0.0188669134, 0.00352883525, -0.0134311141, -0.0014729877, -0.000717091607, 0.0178659167, -0.0130129755, -0.000488224177, -0.00867954083, -0.00164879602, 0.00722239166, 0.00733642932, 0.00568921724, 0.00216196594, -0.0113087445, 0.0110806692, -0.00869221147, 0.0143054035, -0.0193357356, 0.00992762111, -0.0166368429, -0.0123224137, 0.00587928, 0.00550548965, 0.00515070558, 0.0149896303, -0.00498915184, -0.0166495126, -0.00334194, -0.00242488622, -0.0206661765, 0.0027464095, -0.000646609929, 0.00112612289, 0.0116762, 0.00454250397, -0.000404477672, -0.016294729, -0.00493213302, -0.0146475174, -0.000770942774, -0.0218445659, 0.00314870919, -0.00801432, -0.0014056738, 0.00969321, 0.00444430485, 0.0140393153, 0.00644313358, 0.00031934533, -0.0237705372, -0.00505250646, 0.0109666316, -0.00336728175, -0.0236691702, 0.00851482, 0.00957917236, -0.0156991985, 0.0117078768, 0.00214137579, 0.00704499939, 0.00194972893, -0.00439362135, -0.0203494057, 0.0230482984, -0.00918637495, 0.0110109793, -0.0114607951, -0.0158385783, -0.00737444172, 0.0311449803, 0.0209576059, -0.011631852, 0.013266393, 0.01051048, -0.022554135, -0.00719705, 0.00639561797, 0.0350729488, 0.00417188136, -0.00891395193, -0.0089583, 0.0105294865, -0.000867162133, -0.00616754219, -0.0217178576, 0.027926581, 0.0145208081, 0.00388045167, 0.00231401622, -0.01659883, 0.0351743139, 0.0132790636, 0.00680425297, 0.0164341088, -0.0114798015, 0.0104471259, 0.0299792606, -0.00592996366, -0.00245814724, 0.00822972506, 0.0100163165, 0.00820438378, 0.0198552422, -0.00754549867, 0.00793196, 0.0352249965, -0.00719705, 0.00881892, -0.00478641829, -0.00543263229, 0.00351299648, -0.000599490188, 0.00548648322, 0.00144210248, -0.00181668485, -0.0219459329, -0.0122527238, -0.0100416588, 0.0150783267, -0.00408001756, -0.0081917122, 0.00390262553, -0.00795730203, -0.00672189239, -0.0132157095, 0.000510398182, -0.00810301676, -0.00790028274, 0.00650015241, 0.000777674199, 0.0117078768, 0.030916905, -0.0121957054, -0.02673552, 0.00484660501, 0.00507151289, 0.00833109207, -0.00592996366, 0.0146982, 0.00120214804, 0.0141660245, -0.0218445659, -0.00367455, -0.010238057, 0.0107258847, 0.0271916706, -0.0196651779, -0.0139506198, 0.00867320504, -0.00331659825, 0.0190443061, 0.00484026922, 0.0261526592, 9.58728924e-05, 0.0142673906, -0.0236565, -0.00629108306, -0.00321839913, 0.00373156904, 0.00684226584, 0.0178405736, -0.0122590596, 0.00836910494, 0.0190696474, -0.0351996571, 0.0100923423, 0.00919271074, -0.00646530744, -0.025443092, 0.0189175978, -0.00394063815, -0.00246448279, 0.0107068783, 0.0133424178, -0.00923705846, 0.012822913, 0.0227441974, -0.00337678473, 0.00612002658, 0.00373790436, 0.00928774197, 0.000268661883, -0.0130509883, 0.0105865058, -0.00145239756, 0.00198932551, -0.0172070302, 0.0219586045, 0.0200072918, -0.0105611635, -0.0124301156, 0.0180179663, 0.0172577146, -0.00215721433, 0.0360866152, 0.0374550708, -0.0114481244, 0.0283573903, 0.0235044491, -0.0176378395, -0.00821705442, -0.00141280121, -0.015547148, -0.00198140601, 0.0186388381, 0.0301313102, -0.0264060777, -0.0127405524, 0.00510952529, 0.00873655919, -0.00102238019, -0.0116191804, 0.0103204176, 0.00516971201, -0.00165037985, -0.0123794321, -1.42052249e-05, -0.00448865304, 0.000368840876, -0.0162693877, 0.0142293787, 0.00567971403, -0.00631959271, 0.0174984615, -0.0214391, 0.0117078768, 0.00210811477, -0.00318830577, 0.0100543294, 0.013266393, 0.0172703862, -0.00643046247, -0.00183885894, -0.0181193333, 0.00505884178, -0.00707034115, 0.00475474121, 0.0160539821, 0.0285601243, -0.0168775879, 0.0168522466, 0.00554983784, -0.0100543294, -0.0122463889, 0.0208689105, 0.0145714916, -0.0219966173, -0.00261653308, 0.0212743785, -0.0125758313, 0.0235171206, 0.0295737926, 0.0191963557, -0.00461219391, 0.00795096625, 0.0133044058, 0.00954749435, -0.0136591895, 0.00707667647, -0.0049764812, -0.0052457368, -0.00916103367, -0.00914202724, 0.00781792216, 0.00396598, 0.00724773342, -0.0197538752, -0.0212997198, -0.0119676292, 0.00629741838, -0.0166495126, 0.0230736397, 0.0229469314, 0.00632592803, -0.00508101564, 0.0108209169, 0.0398371927, -0.0294470843, 0.0138745941, -0.0308408793, -0.0181193333, -0.00615170365, 0.0203620754, -0.00305526168, 0.0244167522, -0.0122210467, -0.00304892636, -0.0301313102, -0.00292221759, 0.00829307921, 0.00319464109, -0.00376324612, -0.00841345266, -0.0110236499, 0.00349715794, 0.0052077244, 0.0142293787, 0.0145461503, -0.0110109793, 0.00122986559, 0.00633859867, 0.0114671309, 0.00244547636, 0.00600915635, 0.0135958353, 0.00513169914, -0.0145841623, 0.00838811, 0.0121576926, 0.00257693673, -0.0207168609, 0.0155598186, -0.00398815377, -0.00366187934, -0.00777357398, 0.00706400583, 0.0075074858, 0.0153317433, -0.00413703639, -0.00671555707, -0.00835643336, -0.006360773, -0.0211730115, 0.00741879, 0.00124095264, 0.00395330926, -0.00497964909, -0.0202353671, -0.00544530293, -0.016801564, -0.00929407775, -0.0168902595, -0.0114734657, -0.00313287065, -0.00808401, -0.0018879585, 0.00191330025, 0.00522673083, 0.00741245458, 0.0176124983, 0.00909134373, 0.00859084446, 0.0242393594, 0.0132790636, -0.00405467581, 0.0105611635, -0.00307110022, 0.000853699341, -0.00423206808, 0.00136053388, -0.00886960328, -0.00695630349, -0.003018833, 0.000769754872, 0.0339579098, -0.00546114147, -0.0112010427, -0.00303625548, -0.0049764812, 0.00785593502, -0.00350982882, -0.0133170765, -0.0146855293, 0.0328428745, -0.00715270173, 0.0227061845, -0.00540412264, 0.00169472781, 0.0140899988, 0.00170423102, -0.000532968144, 0.0110299857, 0.0194751155, 0.0115494914, 0.00846413616, -0.0276224799, 0.0194624439, 0.0109729664, -0.00486244354, -0.014761555, -0.014862922, -0.00152921467, -0.00671555707, -0.00255476264, -0.00889494549, 0.00466604484, 0.0040039923, 0.00344647467, -0.0173970945, 0.0118852686, -0.0189429391, -0.00182777189, -0.00107464753, -0.00559735345, -0.000404675666, -0.00259594293, 0.0149389468, 0.0026497941, 0.00273690629, -0.000742829288, -0.0258105472, 0.011125017, -0.0142293787, -0.00168997631, -0.0016250381, -0.0173717532, -0.0115051428, 0.00162028649, 0.00869854726, 0.00085686706, 0.0182587132, 0.00246606651, -0.0056607076, -0.0017359081, -0.00541679375, -0.0119866356, 0.0153317433, 0.0145208081, -0.00747580873, -0.0108335875, -0.00523623405, 0.00606300775, -0.00549915433, 0.003665047, -0.00321998284, 0.0153317433, 0.00637027621, 0.00210494711, 0.0121386861, 0.0145714916, 0.0154964644, 0.0119422879, -0.00029736929, -0.0189682804, -0.0157245398, -0.0220219586, -0.00475474121, 0.0101683671, -0.00944612827, 0.0142040364, -0.0134184435, 0.0178025607, -0.03041007, 0.00023777665, 0.00155693223, -0.00668388, 0.00196398376, 0.0195004568, 0.000673139584, 0.00949047599, -0.00270839687, 0.00757717574, -0.0239352584, 0.0307395123, 0.00590462191, -0.00665853824, 0.00604716921, 0.00998463947, -0.000165315156, 0.00551182497, -0.00253258855, -0.00107781519, 0.0113150803, 0.00966153294, -0.00208277302, 0.000206891418, -0.0167508796, -0.0156865269, -0.00288895657, 0.00789394695, 0.0073807775, -0.0129622919, 0.00962985586, 0.0150656551, 0.011087005, 0.0113340868, 0.00940811541, -0.00154663716, 0.00358585408, -0.0233270582, 0.00708934758, -0.0201086588, -0.0111947069, -0.0145714916, -0.0111693656, -0.0172577146, -0.0250756368, 0.0146728586, -0.00428908691, -0.0138239106, -0.0124111101, -0.00939544477, -0.0218952503, 0.00267513585, -0.00415604282, -0.0275717974, 0.0235804748, -0.00786227, -0.0110489922, -0.0161806904, -0.0104534617, 0.000787573284, 0.0147108715, 0.00888861, -0.000450211577, -0.0106181828, 0.00347181619, -0.0102127148, -0.0199439377, -0.00689928466, 0.00768487807, -0.00948414, 0.00245339563, 0.00521722762, -0.0317024961, 0.0107638976, -0.0105421571, 0.00207802141, -0.000861618668, -0.000247477787, 0.0139506198, 0.0243407264, 0.0103077469, -0.0346167944, -0.0213377327, 0.00361753115, -0.0114671309, -0.0247842073, -0.0135324812, -0.0103330882, 0.00166463456, 0.00536927814, 0.0169409439, 0.0198805835, 0.0115241492, -0.0252150167, -0.0142800622, -0.00213662419, -0.00765953632, 0.00625940599, -0.00147377967, -0.00957917236, 0.000371810631, 0.0231750067, -0.00492896559, 0.0105865058, -0.0200072918, 0.0295991339, 0.00888861, -0.00286836643, 0.0160919949, -0.0108906059, 0.014660188, -0.0253543947, 0.00988960825, -0.0105928406, -0.0244927779, -0.020818226, -0.00537244556, -0.00238212221, -0.0216925163, -0.016700197, -0.00862885732, 0.0151670221, 0.00526791112, 0.00187528762, -0.000836276915, 0.0032263184, 0.0043809507, 0.00213820813, 0.00101050129, 0.00359852496, -0.0242773723, 0.00978824124, -0.00357951852, -0.00410535932, 0.0032041443, -0.0245434605, 0.0202480387, -0.0220853128, -0.0111820363, -0.0209322646, -0.00346548087, -0.00766587164, 0.0239986125, -0.0067725759, -0.0185881555, 0.0154331103, -0.00764053, 0.00579058426, 0.014356087, 0.00687394291, -0.00400716, -0.0141026694, -0.00741879, 0.00988960825, 0.000585235481, 0.00717170816, 0.00764053, -0.02469551, 0.0245434605, 0.0139759611, 0.00161632686, 0.016294729, 0.00905333087, 0.0120626613, -0.000903590873, 0.0123857679, -0.00265454571, 0.0343633778, -0.0153190726, -0.0100163165, 0.0243153851, -0.0281039719, -0.00859084446, -0.00464070356, 0.0250756368, 0.00758351106, 0.00693729706, 0.00560368877, 0.020476114, -0.00729841692, 0.00514120236, 0.0085338261, -0.00801432, 0.000409427244, -0.000755896152, 0.0077038845, 0.00380442641, -8.17666587e-05, 0.0238845758, -0.00392796751, 0.00914202724, 0.00378858787, -0.0147362128, -0.000348646689, 0.0216164906, -0.00139933836, 0.027926581, 0.0194624439, -0.00945879892, -0.0142293787, 0.0215911493, -0.0102697341, 0.0197158623, -0.00439045392, -0.0176758524, 0.0211730115, 0.0209069233, -0.0184741169, -0.0261273179, -0.0027654157, -0.0186515097, -0.00421306165, -0.0108272517, 0.000318751379, 0.00983892474, 0.0155218067, 0.0336538106, 0.017789891, 0.00226808432, 0.0109729664, 0.00150228909, -0.0117142126, -0.00302358461, 0.0255824719, -0.0340339355, 0.00236311578, 0.0206915177, 0.0081537, 0.00442529889, -0.0231750067, 0.0224400964, -0.00213820813, 0.0040039923, 0.013063659, 0.00960451365, 0.00216354965, 0.00380125875, -0.00445697596, -0.0396851413, 0.003554177, 0.0128102414, 0.005391452, 0.00811568741, -0.0199185964, -0.0126898689, -0.0303593855, 0.00886960328, -0.00870488212, -0.0193610769, 0.00225224579, -0.0110109793, 0.0187655464, 0.00740611926, -0.0117902374, -0.00854016095, 0.008299415, -0.00847047195, -0.00797630753, 0.018195359, -0.00131539395, -0.00764053, -0.0139886318, -0.00522673083, -0.0306888279, -0.0220853128, -0.0149389468, -0.0043302672, -0.015306402, -0.00973755773, -0.0172577146, 0.0094144512, -0.0084261233, -0.000152941269, 0.0189049263, -0.00429542223, 0.00968053844, -0.0144701246, -0.0122653944, -0.0437905, -0.00784326345, 0.00754549867, 0.0227441974, -0.0241379924, -0.00619605184, -0.0111630298, 0.00923705846, -0.0141660245, 0.0121196797, 0.00624356745, -0.0025072468, -0.0406227857, -0.00273690629, 0.00247240206, -0.0309929289, 0.0192977227, -0.0110236499, -0.0132410508, 0.00960451365, 0.00790661853, -0.00665853824, 0.019285053, -0.0108399224, -0.0178025607, -0.0174097642, 0.000701649, -0.0205394682, -0.0252657, -0.00465970952, -0.0048846174, -0.00342430058, -0.0150529845, -0.00883159135, -0.00939544477, -0.0197285321, -0.00780525105, -0.0133170765, 0.0148375798, -0.00317405094, 0.0111376876, -0.0148122385, -0.00421939697, -0.0202987213, 0.0156105021, -0.00624356745, 0.0121070091, -0.0344394036, 0.0251516625, -0.0218445659, 0.0109476252, 0.00633543124, 0.000415762683, -0.0131016718, -0.0113214152, 0.0101747029, 0.012278066, 0.00577157782, -0.0252910405, 0.0107765682, 0.0011380018, -0.0100606643, 0.0254811049, 0.00554033462, 0.00436827959, 0.0127912359, 0.0235678032, -0.00226491666, 0.00293330452, -0.0220473, -0.00326274708, -0.00114116957, 0.00286678271, -0.0102633983, 0.00251675, -0.00609151693, 0.0115494914, -0.00499231974, -0.0114544593, -0.00202733791, -0.0134817977, -0.0179166, -0.014115341, -0.010339424, -0.0194497742, 0.0128292479, -0.029117642, 0.00618971605, -0.0120119778, 0.0125821661, -0.00544847082, 0.0068105883, 0.0086035151, 0.00563219842, -0.022655502, 0.00541362585, 0.00480542472, -0.0148882633, 0.0305367783, -0.00541362585, 0.0158892609, 0.000586027396, 0.00329759205, -0.00487511419, 0.022655502, 0.00466287741, 0.0230229571, 0.0100226523, -0.010440791, -0.0185248014, -0.00479275361, -0.00401983131, -0.0185881555, 0.0154964644, -0.0146728586, -0.0253797378, 0.00940811541, -0.0257725343, 0.00177867233, 0.00795096625, -0.00636710832, 0.0170676522, 0.01013669, 0.00634493446, -0.0229342617, -0.0261273179, 0.0287121739, -0.0103837717, -0.0119422879, -0.000328056543, -0.0177011956, 0.0275971387, 0.0275211129, -0.0247461945, 0.00449182093, 0.00389945786, 0.00148249092, -0.00167255383, -0.0176631827, -0.0146221751, 0.000580483873, 0.00105564122, -0.002907963, -0.0298778936, -0.0104154488, 0.0307648536, 0.00458685216, 0.00831208564, -0.0106752012, 0.00771022, -0.0107385563, -0.0127468873, 0.0122273825, 0.0297005, 0.0177011956, -0.00463120034, -0.0253290534, 0.0127595589, -0.0214391, -0.0138872648, -0.0016345412, -0.00919271074, -0.01571187, -0.00685493648, 0.0110109793, 0.0192597117, 0.00326591474, -0.010782904, 0.00416554604, 0.022554135, -0.00491629448, -0.00028291659, -0.00824239571, -0.000725802849, -0.000923389103, 0.0115114786, -0.0169916265, -0.00176441763, -0.00578741636, -0.0214137565, 0.0088379262, -0.0129559571, 0.0257218499, -0.00127183786, -0.0239732713, -0.0162567161, 0.0180306379, -0.00914836302, 0.00976923481, 0.00939544477, 0.00916736852, 0.0173210688, 0.0179672837, 0.00266404892, 0.0262793694, -0.0233777408, 0.00158385781, 0.00599015038, 0.00338628795, -0.00738711283, -0.00836910494, 0.0102317212, 0.0161300078, 0.0213504024, 0.0146221751, 0.0119803008, 0.0217938833, 0.000720655313, 0.00076223159, 0.0107195498, 0.00066165661, 0.000371810631, -0.00365554378, 0.00232351944, -0.00979457702, -0.0191330016, 0.0164721217, -0.00265137805, 0.0154331103, 0.00132014544, -0.0237958804, -0.00607884629, 0.000932892261, -0.00862252153, 0.00524890469, 0.00858451, -0.00605033664, -0.00822338928, -0.00784326345, 0.00238370593, 0.00833109207, 0.0119359521, 0.00642729504, -0.0040578437, -0.00862885732, 0.00303942314, -0.00127104588, -0.00318197021, -0.0133170765, 0.014761555, -0.00475474121, -0.0160539821, 0.0188162308, -0.0106435241, -0.0183727499, 0.0132790636, 0.0112200482, 0.00113562599, -0.0157878939, -0.0157245398, 0.00663953181, 0.00677891122, 0.000787969271, -0.00275432877, -0.0283067059, -0.0136972023, 0.0124554578, 0.0188542437, -0.0111503592, 0.00994662661, -0.0188289024, 0.0246448275, 0.0139632905, 0.0251643322, -0.0211223271, 0.0277491882, -0.0146221751, -0.00207960536, -0.00350982882, 0.0291683245, -0.0153317433, -4.87531215e-05, 0.00348765496, -0.00476741185, 0.00645897212, 0.000174818299, 0.000244904018, 0.0209829472, -0.00464070356, 0.0258358885, 0.0117332181, 0.000908342423, -0.0130256461, -0.0074568023, -0.00742512522, 0.00792562403, 0.00981991831, 0.00283352169, -0.0298778936, -0.0200579744, -0.0038266005, 0.0198172294, -0.0181066617, 0.0148755927, -0.0256331544, -0.0265834685, 0.0265074447, -0.0121386861, -0.00825506728, -0.0153444139, 0.000607805443, 0.007330094]
|
17 Feb, 2021
|
Fabric.js | Ellipse cornerStyle Property
17 Feb, 2021
In this article, we are going to see how to set the style of controlling corners of canvas ellipse using FabricJS. The canvas means ellipse is movable and can be stretched according to requirement. Further, the ellipse can be customized when it comes to initial stroke color, fill color, stroke width, or radius.Approach: To make it possible, we are going to use a JavaScript library called FabricJS. After importing the library using CDN, we will create a canvas block in the body tag which will contain our ellipse. After this, we will initialize instances of Canvas and Ellipse provided by FabricJS and set the style of controlling corners of canvas ellipse using cornerStyle property and render the Ellipse on the Canvas as given in the below example.Syntax:
fabric.Ellipse({
rx: number,
ry: number,
cornerStyle: string
});
Parameters: This function accepts three parameters as mentioned above and described below:
rx: It specifies the horizontal radius.
ry: It specifies the vertical radius.
cornerStyle: It specifies the style of the controlling corners. The accepted values of this parameter are circle and rect.
Example: This example uses FabricJS to set the style of controlling corners of the canvas-like ellipse as given below. You have to click on the object to see the style of controlling corners.
html
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Ellipse cornerStyle Property
</title>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a Ellipse instance
var ellipse = new fabric.Ellipse({
rx: 80,
ry: 40,
cornerStyle: 'circle'
});
// Render the Ellipse in canvas
canvas.add(ellipse);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js | Ellipse cornerStyle Property
|
https://www.geeksforgeeks.org/fabric-js-ellipse-cornerstyle-property?ref=asr7
|
CSS
|
Fabric.js | Ellipse cornerStyle Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, Fabric.js | Ellipse cornerStyle Property, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.00337081961, -0.00387058314, -0.016006222, 0.0132075464, 0.0320400186, 0.0228857286, 0.000945242587, 0.0200319048, -0.00887166616, -0.0492181033, 0.0213140566, -0.0101676052, 6.93098918e-05, -0.0505416133, -0.00635906123, 0.0291999821, -0.0233131126, 0.00432209391, -0.0210658982, -0.0284279343, -0.0133523056, -0.0337495543, -0.0381336883, 0.0145448456, 0.00931973, 0.0583999641, 0.0106501356, 0.0133316256, -0.0291172639, 0.00914739817, 0.0370307639, 0.000906467845, 0.00372237735, -0.0114359707, -0.0144759119, -0.0219758134, 0.00803757831, 0.0417182, -0.0141450344, -0.00265564048, 0.0193977226, -0.0175503194, 0.0122562721, 0.0278213248, 0.00148033432, 0.0017552044, -0.0163371, -0.0223480519, -0.0176192522, -0.061102137, -0.0142139671, -0.0263048, 0.0360105559, -0.000138619784, 0.0185429547, 0.0158821438, 0.00952652935, 0.0461850539, -0.00123906916, -0.00151393912, 0.0244160388, -0.0786938146, -0.0152066015, 0.00106242858, -0.0475361384, 0.00555254612, 0.0103192572, 0.0339701399, -0.0265667457, 0.0132489065, -0.0287588127, 0.0118082082, 0.0339701399, 0.000851752353, -0.00935419649, 0.00256085792, 0.00876137335, 0.029668726, -0.037692517, 0.0411943085, -0.000563957437, -0.00911293179, -0.0137383305, 0.0455784425, -0.00522856181, -0.0151514551, 0.039650213, -0.0385472849, 0.0136762904, 0.0275731664, -0.00312610762, 0.0152341742, 0.0253535267, -0.0298341662, -0.00998148602, -0.0201559849, 0.0337219834, -0.0231614597, -0.0300823245, 0.00716213, 0.00835466944, 0.0628668219, -0.00672095921, -0.026539173, 0.000992634, -0.0251467284, 0.0269665569, -0.0282900687, 0.0219896, -0.0121597666, 0.0223066919, -0.00975400768, 0.0133247329, 0.0275593791, -0.0314334109, 0.0118288882, 0.000623412081, -0.0355693847, 0.0402292497, 0.00260049431, 0.00473224465, -0.0160200093, 0.0329499319, 0.039650213, -0.0335013978, 0.0397880785, 0.00105725857, 0.0115324771, 0.0248847827, 0.0151376678, -0.000641506922, -0.0331153721, 0.0209142473, -0.0285106543, 0.0590065755, 0.0161578748, -0.0199078266, 0.0132557992, 0.00662100641, 0.00536987418, -0.0230787396, -0.0333635323, 0.00276765646, 0.0102710044, -0.00467020506, -0.00797553826, 0.0220171735, -0.0253811, -0.00580070494, 0.0102503244, -0.0689880624, 0.00139244494, 0.0257946961, -0.00136487174, 0.0406979918, -0.0387954451, -0.0251053683, 0.00803068466, 0.0394020528, -0.00945070293, 0.0400638096, 0.0193425752, 0.00858214777, 0.0137452232, -0.0312403981, -0.0061419229, 0.00989876688, 0.0159372892, -0.0668925, 0.0300271772, -0.00659688, -0.00745854154, 0.0118495682, -0.00448063947, -0.0413321778, -0.0288139582, -0.000140343109, -0.0444479436, 0.0233406853, -0.0252983794, -0.0482530408, 0.0126078306, 0.0219896, 0.062315356, 0.003469049, -0.0148205766, 0.0297238734, -0.0111740259, -0.010002166, -0.0383818485, 0.011939181, 0.0336668342, 0.039457202, 0.00190082518, 0.000563526584, -0.0182258636, 0.026690824, 0.0184740219, -0.0179914907, -0.0106225619, 0.0174262412, -0.0420490801, -0.0221412517, -0.0561113916, 0.0329499319, 0.0125320042, 0.0178674124, -0.0552842, 0.0283727888, -0.00572832534, 0.0103537235, 0.019962972, 0.0281797759, 0.00199733116, -0.0119529674, -0.00534919417, -0.0170126427, -0.013345412, -0.0148481503, -0.0287863854, 0.0119874338, 0.0131110409, -0.0235061236, -0.0292551294, -0.0517548323, -0.0131041473, -0.00157425541, 0.0174676012, -0.0107397484, -0.0534367971, 0.00738271512, 0.00636940124, 0.000454095571, -0.00442549307, 0.0357899703, 0.00760330074, 0.00349317538, -0.00726552913, 0.0127801625, 0.0184326619, -0.0130421072, -0.0236991365, -0.0230098069, -0.00479428424, 0.033942569, 0.0135108512, -0.00730688917, -0.00108914007, -0.00343975239, -0.0205971543, -0.0273663681, -0.0178674124, 0.014131248, 0.0190392714, -0.0405325554, -0.00402568234, -0.0182947963, -0.0518375523, 0.0618741848, 0.0387403, 0.0708630383, 0.0151238814, 0.00236267573, 0.0312955417, -0.0109810131, -0.0232166052, -0.0111395596, -0.0440343469, -0.0133178392, -0.0196183082, 0.0234647635, -0.0340252854, 0.0608815514, -0.039650213, -0.00584206451, 0.028262496, -0.0318745784, 0.00140795484, 0.0207763799, -0.0162405949, -0.00948516931, 0.013621144, 0.0331980921, 0.0239472948, -0.0360381268, -0.00521477498, -0.021920668, 0.01045023, -0.021176191, -0.0120150074, -0.0206936616, -0.04188364, 0.0150135886, 0.00284692948, 0.0349076279, -0.0163508877, 0.0202662777, -0.026539173, -0.0180742107, -0.0295584332, -0.0310198124, -0.0312403981, -0.0193701498, -0.012918028, 0.021176191, 0.026690824, 0.0380785428, -0.0198664665, -0.0123114185, 0.0234509781, 0.0128215225, 0.00595235731, -0.0195218, -0.0406428464, 0.008003111, -0.0140347416, 0.0754401833, 0.00364655117, -0.024347106, 0.0106639219, -0.0188876186, -0.013917556, -0.0080168983, 0.0189289786, 0.0441722125, -0.00240575871, -0.00690363161, -0.0262910146, -0.00409461511, 0.0309370924, -0.0382991284, -0.0152203878, -0.00579725811, 0.0167644843, -0.00520443497, -0.0151514551, -0.00243850192, -0.00298824185, -0.0315988474, 0.0299168844, 0.0196045209, 0.0670027956, -0.0211624056, -0.0132351201, 0.0381061174, -0.0445306636, -0.00460471865, -0.010257218, 0.0362587124, 0.0186256729, 0.000949550886, 0.0101607116, -0.00512171583, -0.0348524824, -1.57791746e-05, -0.0367826037, 0.0186808202, -0.0178398378, -0.0269251969, 0.00738271512, 0.0346318968, 0.00752058113, 0.0203076378, 0.00492181024, 0.0388781652, -0.0197423864, -0.0124837514, 0.0295032877, -0.000479514594, 0.00458059227, -0.0555875041, -0.0511757955, -0.0125526842, -0.0404774062, -0.00716213, -0.0070931972, 0.0165852588, -0.0171367228, -0.0554496385, 0.00992634, -0.0200870521, 0.0313506909, -0.00540089374, 0.0274353, 0.0346870422, 0.0314334109, -0.0291999821, -0.0274215136, 0.00980915409, -0.0147102838, -0.0541812703, 0.0279178303, 0.0390711762, -0.0182120763, 0.0179914907, -0.0144069791, -0.00535608735, -0.0262082946, 0.0122838458, -0.0430141389, -0.0340252854, 0.0177433323, -0.00948516931, -0.021134831, 0.0269941296, -0.0263185874, -0.0260428563, -0.0150411623, 0.0190254841, -0.0153720398, 0.00437724032, 0.0033277364, 0.0329775065, -0.00879584, 0.0294205677, 0.0286209472, 0.0280970559, 0.0687674731, -0.00255224109, 0.00779631268, 0.0626462325, -0.0264978129, -0.0376373716, -0.00592823094, 0.0149032967, 0.00501142303, -0.0391538963, -5.05687567e-05, -0.0144759119, 0.0293102749, -0.11189191, 0.0200732648, -0.0068657184, -0.013834836, 0.0301926173, 0.0181293562, 0.0364241526, -0.00928526372, 0.0333359577, 0.023368258, -0.00938177, 0.00702426396, 0.0356796756, -0.0211210456, -0.0166955516, 0.0347421877, -0.048694212, -0.0126560833, 0.0173573084, -0.0170126427, -0.00196631136, 0.0017957025, -0.0550911874, -0.00465641823, 0.00384301, -0.0273112208, 0.0234234054, 0.00765155349, 0.0158269964, -0.0152066015, -0.0240575876, -0.0182672217, 0.00264357729, 0.00683125202, 0.0258912034, -0.0271182097, -0.00567662576, -0.0107673211, 0.0115531562, 0.0061143497, 0.00269183028, 0.00562147936, 0.00502865622, 0.0461023338, -0.00344836898, 0.0213829912, -0.0149998022, 0.00439447351, 0.000285856193, -0.0238645747, 0.0239472948, -0.005362981, 0.0126836561, 0.0219896, 0.00705873035, -0.019962972, 0.0304959211, -0.003346693, -0.0127939489, -0.00270734029, 0.0614330135, 0.0251467284, -0.0225824229, -0.0016638682, 0.00138124335, 0.00791349821, 0.0149860159, -0.0254086722, 0.0117323818, 0.00593512412, 0.0125113241, 0.0169988573, -0.017260801, 0.0319297276, 0.0344664566, 0.0169023499, -0.0286760926, 0.0191909242, -0.0186256729, -0.0081134038, -0.00937487651, 0.00820991, -0.0108638275, -0.000360820733, -0.0140278479, -0.0307716541, -0.00315712742, 0.0234234054, -0.0339701399, -0.00261945068, 0.0234096181, -0.0285933726, 0.0191633496, -0.0179087706, 0.0122080194, 0.0516721122, 0.0390711762, -0.00571453851, 0.0142277535, -2.71019453e-05, -0.0134212384, -0.00630391529, 0.0391814709, 0.0191909242, 0.0115945162, -0.0327844955, -0.0149998022, -0.0122631658, 0.000648831076, -0.0251191538, -0.0542639904, 0.00436000666, -0.0141588207, 0.000152621782, 0.0234096181, 0.0182534363, 0.00278833648, -0.00153461902, -0.00721727638, 0.0230649542, -0.0167093389, 0.00987119321, -0.0149446558, -0.00151824742, 0.0238094293, -0.00285382266, 0.0259601362, -0.0223756246, -0.0327017754, 0.00797553826, 0.0228443686, -0.0121459793, 0.0179914907, 0.0186256729, 0.0025953243, -0.0336944088, 0.00844428223, 0.0149308695, -0.0321227387, -0.00403257553, 0.0178811979, -0.0193701498, -0.0024453951, 0.0143794063, 0.0118495682, -0.0188048985, 0.0211899783, -0.0481978953, 0.036479298, 0.0382439829, -0.00188359187, -0.00447029946, 0.0162268076, -0.00918186456, -0.0137590095, 0.018046638, -0.00819612388, -0.026111789, -0.0540709794, -0.0173848812, 0.0112774251, 0.0268700495, -0.017577894, 0.00809961744, -0.0152479606, 0.0516721122, 0.0312128235, -0.00887166616, 0.0156064117, -0.0303304829, 0.0143242599, 0.00303132506, 0.0160889421, 0.026029069, -0.00887166616, -0.0285658, 0.018708393, 0.015578839, 0.000222954899, 0.016323315, -0.0117599554, 0.0139727015, -0.0066554728, -0.0107328547, -0.0248985682, -0.0253397394, 0.0386575796, 0.0329775065, -0.010725962, 0.000149175132, 0.0256844051, -0.0262772273, 0.0430417135, 0.00182844559, 0.0172056556, -0.00954720844, 0.0083684558, -0.00543191377, 0.0025039881, -0.00717591634, -0.0175089613, -0.00726552913, -0.0138003696, 0.00602129, 0.00357417157, 0.0223756246, -0.00288828905, 0.0271319952, -0.0075895139, -0.0126216169, -0.00868554693, 0.0213002712, -0.00468054507, 0.0263875201, -0.00101589889, 0.0034276892, -0.0437586159, 0.0314885564, 0.0148205766, -0.000350049959, 0.00704839081, -0.0026952771, -0.0287588127, 0.0177157596, -0.0201973449, 0.0138210496, -0.00163801841, 0.0421869457, -0.018515382, -0.0111326659, -0.00965060852, -0.023878362, 0.0044668531, -0.0140829943, 0.000507518591, -0.0108845076, 0.0276283119, 0.0168058444, -0.0141863944, 0.0105605228, -0.0328947864, 0.00261600409, -0.00814787, 0.00983672682, 0.0177433323, -0.00398432231, -0.0249123555, 0.0230925269, 0.0565801375, 0.0102434317, 0.00913361087, -0.0206523016, 0.000338632934, -0.00897506531, 0.00834777579, -0.00786524545, -0.02873124, 0.0206798743, 0.00376718375, -0.0148067903, 0.0291448366, 0.00364999776, -0.00104002538, -0.00620396249, 0.0368928947, -0.0298893116, 0.00806515105, -0.0190392714, -0.000906467845, 0.00444962, -0.00776873948, -0.00327948341, -0.0183499418, 0.0108982939, -0.008768267, 0.0574073307, -0.00765155349, -0.0138830887, -0.0177571196, -0.0242368132, 0.02094182, 0.0161992349, -0.00196286477, -0.0024953715, 0.0186256729, -0.0415527597, 0.00487011066, -0.00695877802, -0.0179777052, 0.0177433323, 0.0165714733, 0.00229374273, 0.0174676012, -0.0465710759, 0.00602473691, 0.00223514973, 0.00830641668, -0.0287863854, -0.00633838167, 0.00669338601, 0.00539400056, 0.0164611805, -0.0176468268, -0.011704809, -0.0220861062, 0.0330877975, 0.0135659976, 0.0174400266, -0.0220723189, -0.00270217028, -0.00789281912, -0.0480600297, -0.0246504098, -0.00629357528, 0.00156822382, -0.0369756147, -0.00875448063, 0.00352936517, 0.0104571236, 0.0105191628, 0.00058119063, -0.0203352105, 0.0319297276, -0.00141915644, 0.00194563158, -0.0254362449, -0.0126767633, 0.0157029182, -0.00682091201, 0.0402292497, 0.00539744738, 0.0367550291, -0.0113049978, 0.0326190554, 0.00995391328, 0.0171367228, 0.0114566507, 0.00939555652, 0.0156339854, 0.0152755342, -0.00296928524, -0.0190116987, 0.0154685462, -0.013896876, -0.00215415354, 0.032012444, -0.00468743825, -0.0564422719, 0.00110895827, 0.00971264765, -0.00560079934, -0.00586963771, 0.0263599474, 0.00721727638, 0.00221619313, 0.00337598962, -0.0123803513, -0.0183361564, 0.00474603102, 0.00320365722, 0.00241954532, -0.00798243191, 0.0129662817, 0.0135315312, -0.00379131036, 0.00243505533, -0.0263323728, -0.000281332468, -0.0229408741, -0.0364241526, -0.0215760022, -0.0122218058, 0.0121597666, 0.00370169757, 0.0354039446, 0.00985740684, -0.00273836, -0.0107811084, -0.024305746, -0.00101503718, -0.00763776712, -0.00635906123, -0.0102227516, -0.00581449131, 0.0102847908, -0.00732067553, 0.0359829813, 0.0193563625, 0.00794796553, 0.0642454773, 0.00960924849, -0.0257119779, -0.00930594373, -0.0205420088, -0.0348524824, 0.0412218831, 0.0290345438, 0.00060962548, 0.00121235766, -0.00347249559, -0.00992634, 0.0142139671, -0.0291999821, 0.0384094194, 0.00887856, 0.00070957822, 0.0124148177, 0.0185291674, 0.00402568234, 0.0201835576, -0.00665202644, 0.0203627832, 0.000910776143, -0.0247469172, -0.000476067944, 0.0150963087, 0.0239472948, 0.042269662, 0.0254638195, -0.0231063124, 0.00328120682, 0.0120977266, 0.0115186898, 0.0327017754, 0.0270217024, 0.00231442275, -0.00594546413, -0.000391409703, 0.000525182637, -0.0402568243, -0.0142139671, 0.0196734536, -0.00077420281, 0.00106673688, 0.0381612629, -0.0385472849, 0.0108982939, 0.00813408382, -0.02485721, -0.0213967767, -0.0314334109, 0.0185429547, 0.0180604234, -0.00509414263, 0.0223480519, -6.17703554e-05, -0.0116220899, 0.019452868, -0.0134694921, -0.0160751566, 0.0181569308, -0.0402568243, -0.0438413359, 0.00860282779, 0.0100642061, -0.0165714733, -0.0233544726, -0.0288415309, 0.00157167052, -0.0496317, -0.00994702, -0.0156477708, 0.0252294466, -0.0215070695, 0.0241265204, 0.0380785428, -0.0146413511, -0.0236164164, -0.0173573084, 0.0190530587, 0.00589376409, -0.0178674124, 0.00571453851, -0.0156615581, 0.0365895927, -0.0113877179, 0.0333635323, 0.0191082042, 0.00527681457, 0.0167369116, 0.0319297276, -0.0144896992, 0.0379406773, -0.0237267092, 0.0505140387, 0.00757572753, -0.0211486183, 0.0405601263, 0.0325914808, 0.013662504, -0.0332256667, 0.00456680544, -0.0105674155, 0.0298341662, -0.0251191538, -0.0107397484, -0.0360657, 0.00135625515, -0.0176054668, -0.00449787267, 0.00754815433, 0.0438137613, 0.0631976947, -0.00972643401, -0.0127801625, -0.0169299245, 0.00245056511, 0.00157339382, -0.0170953628, -0.0143518327, 0.0310198124, -0.000215415363, -0.0149170831, -0.0098298341, -0.0103468308, -0.044310078, -0.00661411323, 0.027711032, -0.0149308695, 0.0217828, -0.0381888337, 0.0341355801, 0.0302201901, -0.00918186456, -0.0106225619, 0.00765155349, -0.00956788845, 0.00941623654, -0.00109603337, -0.0061591561, 0.0143242599, -0.00967128761, 0.00269700028, 0.0100297388, 0.017577894, -0.0396777876, -0.000843566551, -0.00708630355, 0.0100159524, -0.00745854154, 0.0293378495, 0.01702643, -0.0158683565, 0.0135728912, 0.0044117067, 0.0113325715, 0.0135728912, 0.00270561688, -0.0149446558, 0.00552497339, 0.019769961, 0.00855457503, 0.0264702402, 0.00424282113, 0.011470437, 0.00190771848, 0.0193839353, -0.00552152656, -0.0160200093, 0.0183361564, 0.00638318807, -0.0168747772, -0.0341631509, -0.0298617389, 0.0142966863, 0.0149584422, 0.0113394642, 0.0271319952, -0.026539173, -0.00381888356, -0.0108707212, 0.00187497528, -0.000555771636, -0.0182947963, 0.00050622609, 0.0461299084, -0.01702643, 0.00983672682, 0.0126836561, 0.00910603814, -0.0646866485, 0.00952652935, -0.00195080147, -0.0101607116, 0.0295032877, 0.0251053683, 0.00700013759, -0.00411184831, 0.0247607026, 0.0322881788, -0.00348628219, -0.0139313424, 0.00439792, -0.00584551133, -0.0135246376, -0.00196114136, -0.00530094141, 0.00899574533, -0.00389126316, -0.026539173, 0.00642799446, 0.00188186858, -0.00293654227, -0.0184326619, -0.000280470791, 0.0044186, -0.0261393618, -0.0554772094, -0.013600464, -0.0275180191, -0.0265115984, 0.0133247329, 0.00297100865, 0.00501486938, -0.00593512412, 0.00743096834, -0.0101538189, -0.0110223731, -0.0171642955, -0.0016940264, 0.0103675108, -0.00680367881, 0.0134832785, -0.00143552793, 0.0168747772, -0.0100228461, -0.0270492751, -0.00846496224, 0.0130834673, 0.0141588207, -0.00592133729, 1.6681226e-05, -0.0159648638, -0.0359554105, -0.0067657656, 0.0388505906, 0.00254190131, -0.0112981051, 0.011642769, -0.00823059, 0.00589376409, 0.0309095196, 0.022113679, 0.00143035804, -0.000804360956, -0.0154134, -0.0300547518, 0.00771359308, 0.000447202299, -0.011918501, 0.0270354897, 0.00513894903, 0.0387678705, -0.00133988354, 0.00287622586, -0.0034139026, 0.00872001331, -0.00246952171, -0.00914739817, -0.027986763, -0.0236715637, 0.011939181, -0.018239649, -0.000941795937, 0.00386369, -0.0418009199, -0.00483564381, 0.0704770088, 0.00220068335, -0.0175503194, -0.0354315192, 0.00335358642, -0.0183499418, -0.0101400316, 0.0244022515, 0.00397398276, -0.0437861867, 0.0305510685, -0.00519409496, 0.012918028, 0.0241954532, 0.00775495311, -0.0237680692, 0.0109189739, -0.00938866287, 0.0252294466, -0.0507346243, -0.00772048673, -0.000104638013, -0.026732184, -0.0157580636, 0.0106639219, -0.0117185954, 0.0222929046, -0.00796864461, 0.00273836, 0.0233131126, 0.00923011731, -0.000583775633, 0.027752392, -0.000439231924, 0.00246090512, 0.019769961, 0.0436483212, 0.0059592505, 0.0122286994, -0.00629357528, -0.0139106624, 0.0191357769, 0.0113118915, -0.00734824874, 0.000273146667, 0.013386772, -0.00986430049, -0.00569041213, -0.0258774161, -0.00131661864, -0.0129662817, 0.00392917637, -0.031709142, 0.00442549307, 0.00592478411, -0.0121873394, 0.00366033777, -0.0142966863, 0.0233131126, -0.0472328328, -0.00570075214, -0.00337081961, -0.034245871, 0.023133887, 0.0092094373, -0.0137107568, -0.0127388025, 0.0329775065, -0.006683046, 0.0207074471, 0.00802379102, 0.0236991365, 0.0254776049, -0.00212485716, -0.0258222707, 0.00736892875, -0.0104778027, 0.0159510765, 0.00587997772, -0.0118013155, -0.00386024336, -0.0192736425, -0.0215484295, 0.0151928142, -0.00943002291, 0.0223066919, -0.0121666593, -0.0152479606, -0.00519409496, 0.0214243494, -0.00798243191, 0.00737582194, -0.037609797, 0.0316815674, 0.0240851603, -0.0237129238, -0.0107811084, 0.00747922109, 0.00541812694, -0.0216173623, -0.043096859, 0.0334462486, 0.0251053683, 0.00777563266, -0.0231614597, -0.0103123644, 0.0359002613, 0.0132144401, -0.00282107946, 0.00558356615, 0.00198871456, 0.00442894, 0.00808583107, 0.00958167482, -0.016047582, 0.0184188746, 0.015385827, 0.0137176504, 0.0132971592, -0.00937487651, 0.000659601821, 0.00522511499, 0.0359829813, 0.0211210456, 0.00561458617, 0.00666925963, -0.0206385143, 0.017770905, 0.0413046032, -0.00197837455, 0.00321916724, 0.00298134866, 0.0139658088, 0.00832020305, -0.00520098861, 0.00776873948, -0.0134488121, 0.00387402973, 0.00344836898, -0.00917497091, 0.0127801625, -0.0167782716, -0.0152617479, -0.00714145, 0.0124217113, -0.00365689117, 0.000931456045, 0.00374650396, 0.000249881821, -0.00343802921, 0.00565594574, -0.0396777876, 0.0128904553, -0.0131248273, 0.0158683565, 0.0054974, 0.0123458849, 0.0121804457, 0.0279316176, 0.0141174607, 0.00584895769, -0.0112774251, 0.00765844667, 0.0147240711, 0.0113118915, 0.00698979758, -0.0199905448, -0.00335186301, -0.00638318807, 0.0136900768, 0.000342725834, 0.00276420987, 0.00633148849, -0.0150963087, 0.0195080154, 0.0371686295, -0.0112222787, -0.0425729677, 0.00963682123, 0.0102641108, 0.00690707797, 0.00535608735, -0.0151928142, 0.000816855056, -0.045247566, -0.020431716, -0.00747232791, 0.00929905, 0.0105674155, 0.00909914449, -0.00433588028, 0.0233131126, 0.00518720178, 0.00627978845, 0.00654518045, 0.00205420097, -0.0204041433, -0.0312128235, -0.000218538888, -0.00548361335, 0.00235578232, 0.0293102749, 0.00138468994, 0.00854078773, -0.0185981, 0.0205420088, -0.008258163, -0.018005278, 0.027793752, -0.00510448217, 0.0253397394, -0.0156064117, -0.00344319921, 0.00783767272, 0.00803757831, 0.0186532475, 0.00235405914, -0.00910603814, 0.00645556767, 0.00205592415, 0.00504244259, 0.00394985592, 0.000152837194, 0.0245676916, 0.0115324771, 0.0259739216, 0.00764466031, -0.00534919417, 0.00574211171, 0.00453578588, -0.018749753, -0.00642110128, 0.00829952303, 0.00741718151, 0.00748611474, -0.0138486223, 0.0112084923, -0.0191357769, 0.00626255525, 0.00356727839, 0.0173159484, 0.0277248193, 0.019880252, 0.00718281, -0.00160613691, -0.00017362478, 0.028262496, -0.0164060332, -0.0185567401, -0.000812115904, 0.0142829, -0.0016690382, 0.0140554216, -0.00962303486, 0.000779372756, 0.01702643, -0.00461505866, -0.0163095277, 0.0188324731, -0.0146964975, 0.00530094141, 0.0173573084, -0.0219482407, -0.00591099728, -0.0167369116, -0.000410150853, -0.028455507, -0.00584895769, -0.00467709824, -0.0290345438, -0.032839641, 0.0219896, 0.0153996134, 0.0279178303, 0.011449757, 0.00809961744, 0.0121459793, 0.0008513215, -0.00403257553, 0.00350868539, -0.0186946075, -0.031157678, 0.006810572, -0.00662445324, -0.00145706953, 0.00465641823, -0.00903710537, 0.000400672579, 0.0229408741, 0.00297445524, 0.00436000666, 0.0102710044, 0.00229718932, 0.0090095317, -0.0152341742, 0.0240162276, 0.00188703858, -0.00365344458, -0.00106156687, 0.00390504976, -0.0132489065, 0.00511826901, -0.037692517, -0.0159235038, -0.0263048, -0.00683125202, 0.0109879067, 0.0139589151, 0.0186670329, -0.0277386047, 0.00149412092, -0.0249950755, -0.00177157589, -0.0248020627, -0.0106087755, -0.0199905448, -0.0198664665, 0.000526906, -0.00767223351, -0.00727242278, -0.00632804167, -0.0203627832, 0.000423722027, -0.00589721091, 0.014599991, -0.00422558747, 0.0237542819, 0.0151514551, 0.00459437864, 0.00477705104, -0.00782388542, 0.000594546378, -0.0281108432, 0.00557667296, 0.0104364436, 0.0158407837, -0.00310887443, -0.00507346261, -0.00416699471, 0.00614881609, -0.00814097747, 0.0394020528, -0.0224445574, -0.0104640163, -0.0158269964, 0.0145862047, -0.0297790188, -0.0102434317, -0.0149170831, -0.000225109048, 0.0161854476, -0.0117737418, -0.0145862047, -0.00684159203, -0.0183361564, 0.024388466, -0.00175348099, 0.0228995141, 0.0126078306, 0.000812546758, 0.0291999821, 0.000676404219, -0.00100900559, 0.0136762904, -0.00218172674, 0.0032881, -0.0122493794, 0.00724484958, 0.0249950755, 0.0120701538, -0.00697256438, 0.000730688917, 0.0341355801, 0.00433588028, 0.0327844955, 0.0355693847, 0.023285538, -0.00685882522, 0.0142277535, -0.0025763677, -0.0280143376, -0.00452199904, -0.00842360221, 0.000641076127, -0.0115186898, 0.00732067553, -0.0170402173, 0.00238335552, 0.000376546057, 0.0416630544, 0.0235199109, -0.0179225579, 0.000454095571, 0.017536534, 0.00638318807, -0.0129524944, -0.0215622168, -0.0017620977, -0.0366723128, -0.00534919417, 0.0365620181, -0.0106708156, 0.0270492751, 0.00152514072, 0.0576279163, -0.00467020506, 0.0134005584, -0.00718970317, -0.00967818126, -0.0212037656, -0.0259325635, -0.00115721137, -0.0202662777, -0.0033777128, -0.0161440894, 0.0231614597, -0.00104261038, 0.0513412356, -0.00806515105, 0.00372927077, -0.0137245432, 0.00368446438, -0.00943691656, 0.0116358763, -0.0100504188, 0.00995391328, 0.0275180191, -0.01702643, -0.00994702, 0.00276765646, 0.000720779819, -0.000628582, 0.000750507112, -0.00414976152, 0.0271182097, 0.00737582194, -0.0191771369, -0.0119667538, 0.0090646781, 0.00752058113, -0.00886477251, 0.00121408096, -0.00550429337, 0.00974711403, -0.0164336078, -0.00801000465, 0.00457714545, 0.0265529584, -0.0108845076, -0.00617294246, 0.0138003696, -0.00765155349, -0.000259144668, 0.0268838368, 0.0214657094, -0.00161044521, -0.0144345528, 0.00111412827, -0.0168885645, -0.000730688917, -0.0051906486, 0.00905778538, -0.0106639219, 0.00294515886, 0.00599371688, 0.0090095317, -0.0176468268, -0.000458403898, 0.0175641067, 0.0104088699, 0.00293309544, -0.037609797, -0.00980915409, -0.00397053594, 0.0250777937, -0.0112429587, 7.9219e-05, 0.00587997772, -0.0175916795, -0.0106777083, 0.0246366244, 0.00363621139, -0.00894749258, -0.0133040529, -0.00332084321, 0.0526096, 0.0152617479, 0.0148205766, 0.00060617883, 0.00457369909, 0.0102503244, 0.00896127895, 0.000301796914, -0.00295722205, 0.017729545, 0.012642297, 0.00199216115, 0.0249123555, -0.0284003615, 0.00139330653, 0.0061867293, 0.00919565093, 0.00544914696, 0.00449442631, -0.00880273338, 0.0161440894, -0.0217965879, 0.00562837254, -0.0127112297, 0.0216173623, 0.0141863944, -0.0191909242, -0.0223618373, 0.00966439489, 0.0215484295, 0.012428605, 0.00744475471, -0.0017431411, -0.0126354033, 0.0216311496, 0.00619017566, -0.000917669444, 0.0217828, -0.0236164164, -0.0124217113, -0.00664168643, 0.0040739351, 0.00659343321, -0.0115876235, -0.0127250161, 0.0129456017, 0.0127388025, -0.00845806859, 0.0167506989, -0.00833398942, 0.00499074301, 0.00144155964, -0.00205764757, 0.0235888436, 0.0225824229, 0.00236095232, 0.0151790278, -0.0132833729, 0.0103744036, 0.0116979154, 0.0107466411, 0.0140140615, -0.00610745652, -0.00943691656, -0.0197561737, 0.00827194937, 0.00202835095, -0.0226789284, 0.0108155748, 0.00222997973, 0.00999527238, -0.0150825223, -0.00860972144, -0.00960235484, 0.0132902665, -0.0137176504, 0.0123665649, 0.00645901402, -0.000434061949, -0.00746543473, 0.0134557048, 9.41903636e-05, -0.0158683565, -0.00986430049, -0.0121873394, -0.0201559849, -0.00037008358, 0.0108914, -0.0070931972, 0.0110844132, 0.0152893206, -0.00384645676, -0.00444272626, -0.0213416312, 0.0133040529, -0.0100090597, -0.0213829912, -0.00285209948, -0.00211624056, 0.0148067903, 0.00654862681, -0.00260221749, 0.0156891309, -0.00893370621, 0.0277248193, 0.00891991891, 0.00548361335, -0.016006222, -0.0256981906, -0.00846496224, -0.0274904463, -0.00592478411, 0.00472879782, 0.01436562, -0.0235888436, -0.0143931927, 0.040670421, 0.0187221803, 0.013366092, -0.00133729854, -0.0159648638, -0.00597993052, 0.0140140615, -0.00938866287, 0.0188186858, 0.0144759119, -0.0333359577, -0.0166679788, -0.000637629477, 0.0188876186, 0.00726552913, 0.00816855, -0.0124837514, -0.0077067, 0.000373961055, 0.00488045, 0.0101124588, 0.00314506423, 0.00276937988, 0.0173710939, 0.026111789, 0.0299720317, -0.0232579652, -0.0158269964, 0.00110895827, -0.00743096834, -0.00833398942, -0.00130972534, -0.0149584422, 0.00336220302, 0.0163508877, -0.00363276456, -0.00299858185, -0.000610487128, -0.0216173623, -0.000496747845, -0.00383956335, -0.00147516443, -0.0161578748, 0.0145310583, 0.00223687314, 0.0161440894, 0.0042566075, 0.00606609648, 0.0134143457, -0.00380509696, 0.0126216169, 0.00950584933, 0.00203179778, -0.000378915633, -0.019259857, 0.018239649, -0.028455507, -0.0220033862, -0.0139106624, 0.00125888735, 0.00676921243, 0.00152944901, 0.0262496546, -0.0290345438, -0.0266770385, 0.0130490009, -0.00169919641, 0.0126078306, 0.0156477708, 0.0205971543, 0.0233406853, -0.0269665569, -0.00279178307, 0.00958167482, 0.0142001808, 0.030688934, 0.00354315178, 0.0196045209, -0.0116565563, -0.00438068667, 0.0124423914, 0.00960235484, -0.0100504188, 0.00684159203, -0.0177846923, 0.011429077, -0.026070429, -0.0168609917, 0.00842360221, -0.0042118011, -0.0118909283, -0.00305372826, -0.000414889975, 0.0115117971, -0.0153720398, -0.0194804426, 0.0218379479, 0.0185291674, 0.008768267, 0.0293102749, 0.0159235038, -0.00762398029, -0.00398087595, 0.00916118454, -0.00077764946, 0.00198354456, -0.015813211, 0.0165714733, -0.0219896, -7.79803595e-05, 0.00198009796, 0.00373961055, -0.00877516, -0.0214932822, -0.0141450344, 0.00658654, 0.0100573124, 0.0132557992, -0.00939555652, 0.00561113935, -0.00363965798, 0.00543880695, -0.00149842922, -0.0350179225, 0.00311059784, 0.00301409164, -0.024540117, -0.00257981429, -0.02098318, -0.00370169757, 0.00797553826, 0.00304338825, -0.00809272379, -1.97508962e-05, 0.0017440028, -0.0027176803, 0.0140140615, 0.0102778981, -0.000991772278, 0.00122269755, -0.0120632602, 0.0146413511, -0.00741718151, -0.01702643, 0.00995391328, -1.96162619e-05, 0.00358795817, -0.0246228371, 0.0181845035, -0.0133936657, -0.0165990461, 0.00943691656, -0.024581477, 0.00575589854, 0.00589721091, -0.00152858743, 0.04188364, 0.00762398029, -0.0174538139, 0.000121601974, -0.0177433323, -0.00307440804, 0.010705282, -0.00864418782, 0.00112446817, 0.00205075415, -0.00151566253, 0.00480807107, 0.00103571708, 0.00389126316, 0.0126560833, -0.00489079, 0.00482875062, 0.0130145345, 0.0119874338, -0.0102089643, 0.000451941421, 0.00147344102, 0.00420835428, 0.00933351647, -0.0108362539, -0.00748611474, 0.00943002291, 0.00323640043, 0.00125457905, -0.0249812882, 0.00353970518, 0.0283727888, 0.0293654222, 0.0035465986, 0.0425453968, 0.00514928857, 0.00346215558, 0.0224583447, -0.00874758698, 0.00681746518, 0.00450476585, 0.0224721301, -0.00698979758, -0.013896876, -0.0162543822, -0.0246228371, -0.0239059348, 0.00253673131, 0.0133591993, -0.0109879067, -0.0251743011, 0.0149170831, 0.000225539887, -0.0146689247, -0.00652794726, 0.0149170831, -8.68123898e-05, -0.00153031072, -0.011959861, -0.00191805838, 0.00315023423, 0.00193701487, 0.00569385896, -0.0054353606, -0.0125526842, 0.00505622942, 0.0043565603, 0.0158269964, 0.00132437365, -0.015385827, 0.00838913582, -0.00197665137, 0.000512688537, -0.0241954532, -0.0276283119, 0.00397053594, 0.0128353089, -0.0224445574, 0.00674508559, -0.00424626749, 0.000987464, -0.0112360651, 0.0117944218, -0.00457025226, 0.0113601442, 0.00337254279, -0.0016621449, -0.0132764792, -0.00558701297, 0.000617811282, 0.000365559856, -0.00829262938, 0.00837534945, 0.019769961, 0.00273491349, 0.018046638, -0.000350911636, 0.0104019772, 0.0128284153, -0.00398087595, -0.000993495691, -0.00292964885, 0.0149860159, 0.00210417714, -0.0166817661, 0.019452868, 0.0334462486, -0.00499074301, 0.0111878123, -0.0138693023, 0.00353970518, 0.00534230098, -0.0170953628, 0.0154271862, -0.0125802569, -0.0054457, -0.00112963817, 0.0157442782, -0.01042955, -0.011939181, 0.00888545252, -0.00872690696, -0.0202387031, -0.0311301053, -0.0223894101, -0.0235199109, -0.00649003405, 0.0109120803, 0.00316229742, 0.00449787267, 0.0080582574, -0.00129593886, 0.0194666553, 0.00875448063, 0.0319297276, -0.0220585335, -0.00876137335, 0.018749753, 0.00998148602, -0.00470122462, 0.00263840728, -0.00284865266, 0.0016750698, 0.000769463659, -0.0126560833, 0.00869933423, -0.00604541646, -0.00619706931, 0.00948516931, 0.0034828356, 0.0120908329, 0.00531472778, 0.0101193516, -0.0304959211, -0.00216794014, 0.0239059348, -0.00667959964, 0.0215897895, -0.0075895139, -0.0150411623, 0.0229408741, 0.000284348265, -0.00683125202, 0.000725949765, 0.0145172719, -0.0249812882, -0.0160337966, -0.0251329411, 0.0223066919, 0.00182327558, -0.0128422026, 0.03405286, 0.008003111, 0.0172194429, 0.0145724183, 0.0181017835, 0.0128353089, 0.000943519291, 0.0035241954, 0.0184326619, -6.59171e-05, 0.0058592977, -0.0155926254, -0.0094644893, -0.0206798743, 0.0179639179, 0.00815476384, 0.0193563625, -0.000867693045, 0.0168885645, 0.00104691868, -0.00619017566, 0.00206109416, -0.00301409164, 0.0266770385, -0.0230925269, 0.00298479525, -0.00930594373, -0.00390849635, 0.00703460397, 0.0186532475, 4.69605475e-05, 0.00640731445, -0.00240058871, 0.00415320834, -0.00292792567, 0.0043117539, -0.00183189218, -0.0132489065, -0.0154409735, -0.00432554027, -0.0173435211, 0.0126836561, -8.22348156e-05, 0.00456335908, -0.0237542819, -0.000113847018, 0.0124423914, -0.0130007481, -0.00373616396, 0.0217414424, 0.00272112689, -0.0198251065, 0.00240058871, -0.00158890372, -0.0242230259, -0.00231269933, -0.0108500412, 0.000353927433, 0.00031105979, 0.000296626939, -0.00487011066, -0.0120219, -0.0025263913, -0.00609711651, -0.000766878657, -0.0137176504, -0.00814787, 0.00214381376, 0.00394296274, -0.00142174133, -0.000483822892, 0.0143380463, 0.019880252, -0.00237473892, -0.0075895139, -0.0149308695, 0.028924251, -0.00318125403, -0.0363414325, -0.000208198951, 0.0156339854, -0.0110361595, 0.00149670593, -0.00177157589, -0.00397742912, 0.00866486784, -0.00488045, -0.0226927157, 0.00998148602, -0.00289862906, 0.0186394602, 0.00985051319, -0.00642454764, -0.00308819464, 0.0252845939, 0.019880252, -0.00124940905, 0.0138141559, 0.02626344, -0.013407452, -0.0182534363, -0.00874758698, 0.0217276551, 0.00387747656, -0.00871312059, -0.0117461691, 0.00492181024, 0.000208737489, -0.00785145909, -0.012152873, 0.00754126115, 0.019962972, -0.00631080847, 0.00632804167, -0.00520098861, 0.0228995141, 0.0151376678, 0.0210796855, 0.000712594, -0.0171229355, 0.011663449, 0.0240300149, -0.00798243191, -0.000853906502, 0.0116910227, 0.00437379349, 0.0333911031, 0.00819612388, 0.000789712707, 0.00153117243, 0.0327844955, -0.0118426746, -0.00670027919, -0.00739650195, -0.0143518327, 0.00579381175, 0.00314334105, -0.00442204671, -0.00666236645, 0.00206281757, -0.0264978129, -0.0145448456, -0.0162819549, 0.00838224217, -0.00304338825, -0.0016914414, -0.00694154436, 0.0128215225, -0.0127250161, -0.0113601442, 0.00522511499, -0.00582483131, -0.00286416267, 0.00635561487, 0.00742407516, -0.00120287936, 0.0190944169, -0.0040015555, -0.0190530587, 0.0110016931, 0.00435311347, 0.00720348954, 0.00165008171, 0.00822369661, 0.00142604974, 0.0145310583, -0.0251053683, -0.0122424858, -0.0112774251, -0.00293309544, 0.0250640083, -0.0108086811, -0.0107742148, 0.0090646781, -0.00595580367, 0.0042118011, 0.00222308654, 0.00307268463, -0.00133299024, 0.0175641067, -0.015110095, 0.00300719845, 0.0184602346, 0.00393262273, -0.000669510919, 0.0120219, -0.0112498514, 0.0163784605, 0.00694499118, -0.0331705175, 0.0141036743, -0.00631080847, -0.0195218, -0.0257946961, -0.00177846919, -0.00259877089, 0.00993323326, 0.0160889421, 0.00113394647, -0.00414976152, 0.00971264765, 0.00656241365, 0.00362242479, 0.00126147235, 0.00240231212, -0.00658654, 0.0113118915, -0.00937487651, 0.0130283209, 0.0097609, -0.00891991891, -0.0174124539, 0.00390504976, 0.00785145909, -0.000553617487, -0.00536987418, 0.0128835617, 0.00315195764, -0.00904399808, 0.0399535187, 0.0384645686, -0.00551463338, 0.0268149041, 0.00388436974, -0.013386772, -0.00690018479, 0.000387316832, -0.0224583447, -0.0117668491, 0.00765844667, 0.0259877089, -0.0185015947, -0.0169437099, 0.00137951993, -0.00729999552, 0.00369480415, -0.00119684776, 0.0177019723, 0.00622464204, 0.0278488975, -0.0202249177, -1.42039507e-05, 0.00118995446, 0.0155512653, -0.0200594775, 0.0151652414, -0.000884926296, -0.000258498418, 0.0389333107, -0.00792039186, 0.00538710738, -0.0118426746, -0.000255482621, 0.00108138507, 0.00854078773, 0.00330361, 0.00199733116, -0.0098298341, -0.00582827814, 0.000505364442, -0.00739650195, -0.00340700941, 0.00718281, 0.0222515445, -0.0173986685, 0.009960806, 0.00109689496, -0.0101607116, -0.0191082042, 0.0174124539, 0.00146740943, -0.00940244924, -0.00528715458, 0.00189565518, -0.0188738331, 0.0181293562, 0.0185015947, 0.0251743011, -0.00236267573, -0.00701392395, 0.0197837465, 0.0144345528, -0.0168196317, 0.00595580367, -0.0140829943, 0.0141726071, -0.0119805411, -0.00599027053, 0.00606265, -0.00564560574, 0.000350049959, -0.00150618423, -0.00860972144, 0.00285209948, 0.00987808686, -0.0213002712, 0.0127250161, 0.0139451288, -0.00285899267, -0.00613158289, 0.00313989422, 0.0252708066, -0.0235888436, 0.00781009952, -0.0111533459, -0.0114842234, -0.0182120763, 0.0175641067, -0.00156822382, 0.0115669435, -0.00557667296, -0.0204179287, -0.0131110409, -0.00918186456, 0.00263496069, -0.00159752031, -0.0149032967, 0.00200422457, -0.00625910889, 0.00202318095, 0.00920254458, 0.0212589111, 0.0220723189, -0.00194046157, -0.00606954331, 0.0136073576, 0.0177019723, 0.0101538189, 0.00355004519, 0.00147947273, 0.0149170831, -0.0197561737, 0.00714834314, 0.0134763848, 0.00069493, -0.0262496546, 0.0150963087, -0.0157580636, -0.00884409342, -0.00535608735, 0.0201146249, -0.00858904142, 0.00943002291, -0.00199043797, 0.00205420097, -0.0220309589, -0.00283486606, -0.0277248193, 0.00912671816, 0.0067106192, -0.00171729131, -0.0174262412, -0.019921612, 0.00100814388, -0.0167369116, -0.0128422026, -0.00389470975, -0.013834836, 0.00567317894, -0.00609366968, -0.00336564961, 0.0118495682, 0.00752747431, 0.0198251065, 0.00402223552, 0.00217828015, 0.00830641668, 0.0215484295, 0.0104019772, 0.00046658967, 0.000787127705, -0.0107673211, -0.00236956892, -0.010236538, 0.00047219047, -0.0108845076, -0.0145448456, 0.00823059, -0.00291930907, 0.0222515445, 0.0051630754, 0.000238680223, 0.00874758698, -0.0108224675, 0.0236853492, 0.00417733472, -0.0166128334, -0.0162819549, 0.0276558865, -0.00181810569, 0.0242368132, 0.0116151962, 0.000348111236, 0.0103123644, 0.0134557048, -0.00469433144, 0.0103123644, -0.00118478446, 0.00166472991, 0.00501831621, -0.0209556054, 0.0139727015, 0.00264702388, -0.0108155748, -0.0130145345, -0.00495283, -0.00208694395, 0.00238335552, 0.00641420763, -0.00769291352, 0.00187325198, -0.000596700527, -0.00592478411, -0.0235474836, 0.0160200093, -0.00383956335, -0.00178536249, 0.00677955244, -0.00362931797, -0.00632459484, 0.0106983883, 0.00732067553, 0.00675197924, 0.00500108302, 0.000272715843, -0.0203352105, 0.0126836561, -0.0111119859, 0.00990566, -0.00958856847, -0.0161440894, -0.0174538139, 0.018239649, 0.0144759119, -0.000119447817, 0.0233131126, 0.00063461368, 0.00180087239, -0.00860972144, -0.0075067943, -0.00641076127, 0.0217965879, 0.0228167959, -0.00696911756, -0.0182947963, -0.00271940348, 0.00737582194, -0.00693465117, -0.013386772, -0.00102193048, 0.000406919629, 0.0112981051, 0.0133385193, 0.00883030612, 0.0127663761, 0.0140002752, 0.00989187323, 0.00489768386, -0.0153582534, 0.00142691133, -0.0193701498, 0.00716902316, 0.0210521128, -0.00622464204, 0.0306613613, -0.014131248, 0.0203489959, -0.0268838368, -0.00487011066, -0.00189910177, -0.00927837, 0.00619362248, 0.0128835617, 0.00248330832, 0.000840119901, -0.00767912669, 0.00759640709, -0.0244022515, 0.0263461601, 0.0161165148, -0.00762398029, -0.00243333192, 0.011939181, 0.0108638275, -0.0130765736, -0.0147654302, -0.0120150074, 0.00907157175, -0.00404291553, 0.0129524944, -0.00563526573, -0.00583517132, -0.00560424617, -0.0128146289, 6.82328173e-05, 0.0155236926, -0.0166128334, 0.00133471354, 0.00661411323, 0.0151376678, 0.00992634, 0.0135522112, 0.000660894322, 0.0150135886, -0.0162681676, 0.0107604284, -0.0125733642, -0.0241127331, -0.012152873, -0.0120219, -0.0128835617, -0.02485721, 0.0114221843, 0.0115876235, 0.00136401, 0.00506656943, -0.0126698697, -0.00779631268, 0.00231269933, 0.00463918503, 0.00194563158, 0.015537479, -0.0119116073, -0.0103744036, -0.0278213248, 0.0104157636, -0.00254362449, 0.00280729309, 0.00572143216, 0.0116220899, 0.00173107779, 0.00423248112, 0.00313989422, 0.00592133729, -0.00312266103, 0.009023319, -0.0058868709, -0.00492181024, -0.00761019392, -0.0212451238, 0.0169299245, -0.0109120803, 0.00927837, -0.00760330074, -7.48029852e-05, 0.00387402973, 0.0217965879, -0.00918186456, -0.0236715637, -0.0225548502, 0.00323295384, -0.0060592033, -0.0176054668, -0.0177433323, 0.0150549486, -0.0103881899, 0.013407452, 0.0162681676, 0.000781526905, 0.0186256729, -0.0328672156, -0.00352936517, -0.00262462068, -0.00437034667, 0.0113808243, -0.0173435211, 0.00522511499, 0.013579784, 0.00291758566, 0.00769980671, 0.000437939423, -0.0264702402, 0.0346043222, 0.0203489959, 0.000656155171, 0.0238645747, -0.00367412437, 0.018281009, -0.00995391328, 0.00545948697, -0.0191771369, -0.0312128235, -0.00874758698, -0.0166679788, -0.00712077, -0.014875723, -0.0251191538, -0.00198354456, 0.0152755342, -0.00115979626, 0.00698290439, 0.00880273338, -0.0114773307, 0.0161027294, 0.00911293179, 0.0163371, -0.00119684776, -0.0174124539, 0.00850632135, -0.0111533459, 0.00408772193, 0.000321830536, -0.00989876688, 0.0127250161, -0.0218793079, -0.0148481503, -0.0115945162, -0.00380165037, -0.00797553826, 0.0267046113, -0.00743786152, -0.00522166817, 0.0202524904, 0.0051630754, 0.00701392395, 0.00400844915, 0.00303821824, 0.00187669857, -0.010174498, -0.0127319098, 0.00623153569, -0.00773427309, 0.00190427178, 0.00506656943, -0.0303856283, 0.019769961, 0.0161303021, -0.00266942708, 0.0103192572, 0.0157580636, 0.0160751566, 0.00879584, -0.00240403553, -0.00927837, 0.0246917699, -0.00158890372, -0.00823059, 0.0114428643, -0.013896876, -0.0164336078, -0.00964371487, 0.0147378575, -0.0123665649, 0.00836156216, 0.0125251105, 0.00285037607, -0.00463229185, 0.00794796553, -0.0044565131, -0.011642769, -0.00477705104, 0.00543191377, 0.000112231406, 0.00399121596, 0.0123252049, 0.013917556, -0.02485721, 0.00189220847, 0.000321184314, -0.00809272379, -0.0095747821, 0.0101813916, -0.00238680211, 0.0123183122, 0.0217414424, -0.00783767272, -0.0098298341, 0.0232993253, -0.0131455073, 0.00416010153, -0.00567317894, -0.00155443721, 0.00778252631, 0.00597993052, 0.000414674578, -0.00524924137, 0.00287794927, -0.0126698697, -0.00328637683, -0.0109189739, -0.0049252566, -0.00272457348, 0.0147792166, 0.0336944088, 0.00745164836, -0.00297790184, 0.0110844132, 0.00416354788, -0.0075343675, 0.00549395336, 0.0136762904, -0.0256292578, -0.00321399723, 0.00622808887, -0.00391538953, 0.0128559889, -0.0218793079, 0.0296963, -0.0196734536, 0.00764466031, 0.00769291352, 0.0109051876, 0.00627289526, 0.00269872369, -0.0136556104, -0.0231614597, 0.00664513325, 0.025325954, -0.0103261508, -0.00229374273, -0.0132351201, -0.0109051876, -0.0161854476, 0.0156064117, 0.00629357528, -0.0270492751, -0.00778252631, -0.00322089042, 0.0112774251, 0.012214913, -0.00439792, -0.0157718509, 0.0121666593, -0.00761019392, -0.0171229355, 0.0169437099, -0.00864418782, 0.00450131949, -0.0130076408, -0.0118633546, -0.0342734456, -0.0196596682, -0.0122562721, 0.00268321368, -0.0171505101, -0.0198940393, -0.0169574972, 0.0190944169, -0.000189350103, 0.00545948697, 0.0412770286, -0.0108638275, 0.00330361, -0.00668649282, -0.0142001808, -0.0242092405, -0.0151790278, 0.00130197045, 0.0215070695, -0.0203765705, -0.0054353606, -0.0181293562, -0.0161303021, -0.0198940393, 0.00310025783, 0.0076170871, 0.00546293333, -0.0296963, 0.00202145777, 0.0110981995, -0.0207350217, 0.0185015947, -0.0222515445, -0.0105467364, 0.0186946075, 0.0313506909, -0.00430486072, 0.00436345348, -0.0154685462, -0.011684129, -0.0108431475, -0.00315712742, -0.00967128761, -0.0246504098, -0.00245745853, -0.000613502925, 0.0026125575, -0.0130627872, 0.00422558747, -0.0106156692, -0.00743096834, -0.0165301133, -0.0206523016, 0.0210658982, -0.00352591858, 0.00603163, -0.0078721391, -0.0122976322, -0.0101882853, 0.0256981906, 0.00443238625, -0.00541812694, -0.0130834673, 0.00846496224, -0.0140278479, -0.00969886128, 0.00364655117, -0.0161027294, -0.0186394602, 0.00978847407, 0.0112774251, 0.00826505665, 0.0075343675, -0.00246090512, 0.00416699471, 0.000200443988, -0.00267804367, 0.0275455937, -0.00180776569, -0.0200456921, 0.00241954532, 0.016006222, -0.0141036743, 0.00692431116, -0.0120908329, 0.0103606172, -0.0100435261, 0.0017508961, -0.00486321701, 0.000727242266, -0.00141484814, 0.0214932822, 0.00712766359, -0.0220447462, -0.0042290343, -0.0218517333, -0.0154271862, -0.0271457825, -0.00774116628, -0.0142553272, 0.00287450268, -0.0334462486, 0.0172745883, -0.0108707212, 0.000865108101, -0.00595235731, 0.0061591561, 0.0076170871, 0.0234647635, -0.0152203878, 0.00569041213, -0.00222481, -0.0163646732, 0.0411115922, -0.00890613254, 0.0111740259, -0.00311576785, 0.00774116628, -0.0222653318, 0.0132144401, 0.010195178, 0.0125664705, -0.00398776913, -0.012194233, 0.011663449, -0.00266942708, -0.00587653089, -0.0240713749, 0.00992634, -0.0130283209, -0.0256292578, -0.00242299191, -0.0434553102, 0.00195080147, 0.00489423703, 0.00235061231, 0.0205833688, 0.00368791097, -0.00754815433, -0.0347421877, -0.0253535267, 0.029475715, -0.0253535267, -0.0245125443, -0.00794107188, -0.0257946961, 0.0149032967, 0.0231063124, -0.00514928857, -0.00602129, 0.0103261508, -0.012387245, 0.01702643, -0.00821680389, -0.00903021172, -0.00308474805, 0.00521477498, 0.011704809, -0.0215760022, -0.0115462635, 0.0160200093, 0.00316746742, -0.00193356827, -0.0246641971, 0.00267976709, 0.00755504752, -0.00810651109, 0.0161165148, 0.0235061236, 0.00270217028, -0.0205420088, -0.0174538139, 0.0145586319, -0.0136762904, -0.0117323818, -0.00156650052, -0.0146275647, -0.0159510765, -0.00358451158, -0.01042955, 0.0156339854, 0.00992634, -0.0313231163, -0.00863729417, 0.0168334171, -0.0163371, -0.0153582534, -0.0164060332, 0.0121253, 0.000982294092, 0.00390849635, -0.0178536251, 0.00746543473, -0.00745854154, -0.0230098069, -0.00376029056, -0.000878463848, 0.0127801625, 0.00120115606, -0.0100090597, -0.0227754358, 0.0224307701, 0.00241265213, -0.0144759119, 0.00863729417, -0.00239197211, 0.00196286477, -0.000719918113, 0.015385827, 0.00918186456, -0.00690363161, 0.00471501146, 0.00848564226, 0.0299168844, 0.00108224677, -0.00901642535, -0.00627289526, 0.00661411323, 0.0271319952, 0.0120632602, -0.00605575647, 0.0176744, 0.0105260564, -0.00565939257, 0.00102365378, 0.004980403, 0.00106587517, 0.0070208176, -0.00108310848, -0.0153306806, -0.00645901402, 0.0125182178, 0.00877516, 0.00487355702, -0.00478049787, -0.0147240711, -0.0176744, 0.00445995945, -0.00823748298, 0.0098160468, 0.0194115099, -0.0128284153, -0.00294343545, -0.00305028143, 0.0106294556, -0.00610400969, -0.00172849291, 0.0113394642, -0.0017276312, -0.00120632607, 0.00891302619, -0.0141726071, 0.0205006488, -0.0154823326, 0.02098318, -0.0117737418, -0.0105812028, 0.00572487852, -0.0102710044, -0.0240024403, 0.0256292578, 0.0136900768, 0.00848564226, -0.00481841061, -0.00858904142, 0.000422644924, 0.00662100641, -0.0025901543, -0.0234923381, -0.0247055572, -0.00752747431, 0.00741028832, 0.0170953628, -0.00795485824, 0.00824437663, -0.00644522766, 0.00674508559, 0.00549395336, 0.0364241526, -0.0135177448, 0.00927147735, -0.00160613691, 0.00783767272, 0.00559735252, 0.0106294556, -0.0130972536, 0.00829262938, -0.000163715667, -0.00759640709, 0.00596614368, -0.0138486223, 0.00949206203, 0.0188462585, 0.00833398942, 0.0240024403, -0.000210460814, 0.00251432811, 0.00985740684, -0.0160889421, -0.0103192572, 0.000486838719, 0.00547327334, 0.0144759119, -0.0122631658, 0.00402223552, 0.00494593661, 0.0195631608, -0.0327844955, 0.0283727888, -0.0227340758, -0.0174400266, 0.0217276551, 0.00107276847, -0.00938177, 0.000923701038, 0.00604197, -0.0103468308]
|
17 Feb, 2021
|
Fabric.js | Circle cornerStyle Property
17 Feb, 2021
In this article, we are going to see how to change the style of controlling corners of a canvas circle using FabricJS. The canvas means the circle is movable and can be stretched according to requirement. Further, the circle can be customized when it comes to initial stroke color, fill color, stroke width, or radius.Approach: To make it possible we are going to use a JavaScript library called FabricJS. After importing the library using CDN, we will create a canvas block in the body tag which will contain our circle. After this, we will initialize instances of Canvas and Circle provided by FabricJS and change style of controlling corners of the circle using cornerStyle property and render the Circle on the Canvas as given in the example below.Syntax:
fabric.Circle({
radius: number,
cornerStyle: string
});
Parameters: This function accepts two parameters as mentioned above and described below:
radius: It specifies the radius of circle.
cornerStyle: It specifies the style of the controlling corners. The accepted values of this parameter are circle and rect.
Example: This example uses FabricJS to change the style of controlling corners of a canvas circle. Note that you have to click on the object to see the corners.
html
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Circle cornerStyle Property
</title>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a Circle instance
var circle = new fabric.Circle({
radius: 50,
cornerStyle: 'circle'
});
// Render the circle in canvas
canvas.add(circle);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js | Circle cornerStyle Property
|
https://www.geeksforgeeks.org/fabric-js-circle-cornerstyle-property?ref=asr6
|
CSS
|
Fabric.js | Circle cornerStyle Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, Fabric.js | Circle cornerStyle Property, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.000783421041, -0.00613758061, -0.0111480597, 0.0241541304, 0.0215993654, 0.0346464217, -0.0102600399, 0.0172685627, -0.0170909595, -0.0397832729, 0.011626224, 0.00356573961, -0.00328737986, -0.049975004, -0.00634250836, 0.0340179764, -0.0293456279, -0.00405073492, -0.0207659937, -0.0244820137, -0.0025445174, -0.0288811252, -0.0349469818, 0.015369568, 0.0176101085, 0.0346190967, 0.0167767368, 0.0174598284, -0.035274867, 0.0172958877, 0.0128967753, 0.00153695676, -0.0150280213, -0.0135798668, 0.00937885139, -0.0345098041, 0.00137984566, 0.054510735, -0.0153149199, -0.00969307404, 0.020574728, -0.0100346198, 0.017350534, 0.0350836, 0.00121846516, 0.0139897224, -0.0354388058, -0.0129240984, -0.0121863596, -0.0657954141, -0.0041497834, -0.0276788827, 0.0413407199, 0.0161346309, 0.0233617425, 0.0283619761, -0.0150416838, 0.0345098041, -0.0103283497, -0.009221741, 0.0191675592, -0.0823535621, -0.0202605054, -0.00160782749, -0.0327064395, 0.0182248913, -0.00133886014, 0.0298374537, -0.0170089882, 0.00356915523, -0.0272690281, 0.00275286031, 0.0280887391, 0.00342058274, -0.00906463, -0.00651328126, 0.0405483358, 0.0165991336, -0.055002559, 0.0430347882, -0.00286215497, -0.00782823283, -0.0175418, 0.026599599, -0.0231294911, -0.0217223223, 0.044564914, -0.0419691652, 0.0268728361, 0.0297008362, 0.00135508354, 0.0203834623, 0.0163258966, -0.0279794447, -0.0141263409, 0.00280409213, 0.0233890656, -0.00918075535, -0.0284985937, 0.00650986563, 0.00572089478, 0.0524068102, 0.0199736077, -0.0246186312, 0.0209299363, -0.0316954628, 0.0130743785, -0.00298169605, 0.0257252399, -0.019509105, 0.0408762209, -0.0230201967, 0.0167357512, 0.0486361422, -0.0572157763, 0.0289630964, -0.00102976104, -0.0439364724, 0.0360126048, 0.00405073492, 0.00484653702, -0.0133612771, 0.00755499629, 0.0339633301, -0.0346464217, 0.0459037758, -0.0158750564, -0.00585409766, 0.0214490853, 0.0153968912, -0.0190036166, -0.0319960229, 0.0252880622, -0.0146045052, 0.0504941531, 0.000223926065, 0.00592582207, -0.00745253265, -0.00141656178, 0.00460062409, 0.00131153641, -0.0302746333, -0.00216540135, 0.0345098041, 9.36049328e-05, -0.00166247494, 0.0211621877, -0.00680359546, 7.060395e-05, 0.0217359848, -0.0639920458, -0.00175042299, 0.015888717, -0.0137711326, 0.0541828498, -0.0247825738, -0.0321872905, 0.0087299142, 0.0366137251, -0.0260667875, 0.035766691, 0.0183615107, -0.00409513572, 0.00594289927, -0.0378432907, -0.00710415561, 0.000733043, 0.00407464337, -0.0483082607, 0.0275559276, -0.00500023272, 0.00400974927, 0.0175008141, -0.0111890454, -0.0278701503, -0.0284166224, 0.00470650336, -0.0421604328, 0.0147547852, -0.0314222276, -0.0646478161, 0.0178423598, 0.0243044104, 0.0674894825, 0.00478505855, -0.0113120014, 0.0301106907, -0.00565258553, -0.0101712383, -0.0316134915, 0.00766429119, 0.0260667875, 0.0460677184, -0.00460403925, -0.00607610261, -0.0176101085, 0.0263127, 0.0134569099, -0.0263946708, 0.00827224273, 0.0108679924, -0.0392641239, -0.00744570186, -0.0364224613, 0.0374607593, -0.00237374427, -0.0122478381, -0.0594563186, 0.0233207569, -0.0187303796, 0.00942666829, 0.0176101085, 0.0196593851, -0.00067071087, 0.00805365387, -0.0092080785, -0.0266269222, 0.000332366908, -0.00375017454, -0.0381984971, 0.0140853552, 0.0231431536, -0.0114486199, -0.0291816853, -0.0519696325, -0.0145908426, 0.00364771066, 0.026449319, -0.007076832, -0.0525161065, 0.0119199539, 0.00326347165, -0.0067694406, 0.0115715768, 0.0371602, 0.00987067819, -0.00418735342, -0.000273236772, 0.0116330553, 0.027788179, -0.00939251389, -0.00623321347, -0.037406113, -0.00827907398, 0.018170245, 0.0125825526, -0.00323785562, 0.0107313739, -0.00722028129, -0.026326362, -0.0167767368, -0.0217359848, 0.00481238263, 0.0121180499, -0.0401384793, -0.00747302547, -0.0299740732, -0.0459857471, 0.0659047067, 0.0509859808, 0.0621340387, 0.0226240028, 0.00620930549, 0.0344551541, -0.00784872565, -0.0259301681, -0.0175964478, -0.0475431941, -0.0166127943, -0.0332802385, 0.0117150256, -0.0313675813, 0.035794016, -0.0301653389, -0.0215310566, 0.0389089137, -0.0154242152, 0.00350426137, 0.0264356565, -0.016435191, 0.00872308388, 0.0222551338, 0.0400018618, 0.0164898392, -0.0590191409, -0.0126372, -0.0260394625, 0.0164488535, -0.0350289531, -0.0151099926, -0.0279247966, -0.03628584, 0.00691289, -0.00230201962, 0.0233207569, -0.0160936452, 0.0122683309, -0.0287991539, -0.0138735967, -0.0041668606, -0.014549857, -0.047242634, -0.0103898281, -0.0268181879, 0.0425156392, 0.0399745367, 0.0444009714, -0.00599413132, 0.00556378346, 0.0184981283, 0.0062981071, -0.0242770854, -0.0161756165, -0.0279794447, 0.00601804, -0.0160389971, 0.0608225, 0.0147684468, -0.030711811, 0.0143312681, -0.0323785543, -0.0223371051, 0.00399267208, 0.0185391139, 0.0405210108, -0.0135183884, -0.0107450355, -0.0302746333, 0.00105879246, 0.0172139164, -0.025629608, -0.00183751725, -0.00291680242, 0.00866843574, 0.0150553454, -0.00297828065, -0.0174734909, -0.0061444114, -0.0309577249, 0.0199326221, 0.0252470765, 0.0457398333, -0.0240584966, 0.0106425714, 0.0404390395, -0.0482262895, -0.00648254203, -0.0114417896, 0.0271733962, 0.0275695883, 0.000927297224, 0.0130333938, 0.00810147, -0.0263400227, 0.00067839562, -0.0200145934, 0.0176510941, -0.0322692618, -0.0367503427, 0.0027255367, 0.0226786509, 0.0117013641, 0.00817661, -0.000854718732, 0.029919425, -0.0244820137, -0.0220911913, 0.0168723706, -0.00474748854, 0.00130641321, -0.044564914, -0.0386083536, -0.0190446023, -0.0205610655, -0.0197413564, -0.0146318283, 0.0103283497, -0.0219409112, -0.045685187, 0.00363404886, -0.0232797712, 0.0358213373, -0.000563123904, 0.0122751612, 0.0308211055, 0.0512592159, -0.0328977071, -0.0223507676, 0.0154515384, -0.00453573, -0.0517783649, 0.0346190967, 0.0447561815, -0.018443482, 0.00955645554, -0.0141809881, -0.0141809881, -0.0326517932, 0.00857963413, -0.0526254, -0.0163805429, 0.0301653389, -0.00512318918, -0.0199736077, 0.00737056136, -0.0218999255, -0.0273100138, -0.00582335843, 0.00746619422, -0.0164898392, 0.0153012583, -0.00572089478, 0.0268864967, -0.00962476525, 0.029127039, 0.015096331, 0.0427069068, 0.063336283, -0.0114144655, 0.00780774048, 0.0736099854, -0.0251241196, -0.0417232513, -0.00544765778, 0.000760793628, -0.0180746112, -0.0349743068, -0.00842935406, -0.00368869631, 0.0185117908, -0.103829965, 0.00558086066, -0.0046552713, -0.019235868, 0.00261624204, 0.0117628425, 0.0478984043, 0.00880505424, 0.030711811, 0.0348650105, 0.0111207357, 0.0129172681, 0.0154378768, -0.0195227657, -0.0222004857, 0.0191675592, -0.0434719697, -0.0191675592, 0.0196184, -0.00957011711, -0.00356573961, 0.00212441571, -0.0552211478, 0.00496949349, -0.0083337212, -0.0255613, 0.0165171623, 0.00537251774, 0.015615481, -0.00287240138, -0.00319687, -0.0233207569, -0.0183341857, 0.0118448138, 0.0240175109, -0.0114691127, -0.0362038687, -0.0328430571, 0.0113120014, 0.0117833354, 0.0222278107, 0.00735006901, 0.0102737024, 0.0377613194, -0.0120634027, 0.00836787559, -0.0136481756, -0.00252914778, -0.00911244564, -0.0416139588, 0.0290723909, 0.0100687742, 0.00538618, 0.0279521197, 0.00583360484, -0.018867, 0.0179243311, -0.0116672097, -0.0272690281, 0.00114844821, 0.048882056, 0.0243180711, -0.00638690917, 0.00240960671, -0.00594973052, 0.0163532197, 0.0332529135, -0.0237579364, 0.0304112509, -0.0144678866, 0.0123776253, 0.00791703537, -0.0279794447, 0.0381711759, 0.0441277362, 0.0046894257, -0.015888717, 0.0320779942, -0.0213261284, 0.00993898697, -0.0228425935, 0.0353841595, -0.0177877136, 0.00317296176, -0.00429323269, -0.0292909797, 0.0158750564, 0.0189489685, -0.0398379192, -0.00394827127, 0.0354934558, -0.0365044326, 0.0158340707, -0.0226376653, 0.016161954, 0.0538276397, 0.0281433854, -0.00899632, 0.0201238878, 0.00197584322, 0.00535885571, -0.0122000212, 0.0344824791, 0.00743204, 0.0113939727, -0.0294549223, -0.0134022627, -0.0251924284, 0.00612050341, -0.0157521, -0.0556856506, -0.00985018536, -0.0388542674, 0.00208855351, 0.0302473083, 0.0242770854, -0.00801266823, 0.0129377609, -0.00492850784, 0.0180746112, -0.0323239081, 0.0142629584, -0.00597022334, 0.00271016709, 0.0200692397, 0.000687361229, 0.0311216675, -0.027241705, -0.0295915417, 0.000844045426, 0.0205064192, -0.00547839701, 0.0346737429, 0.0271460712, -0.000904242916, -0.0379799083, -0.000422022713, 0.00704267761, -0.021367114, -0.00092815113, 0.0103829969, -0.0207386706, -0.00723394332, 0.00475090416, 0.0121180499, -0.020028254, 0.0224600621, -0.0319960229, 0.0431167595, 0.0409035422, -0.000674126321, -0.00479872059, -0.00194510422, 0.00343424454, 0.000303335488, 0.0142902825, 0.00379116, -0.0161346309, -0.058800552, -0.0274329707, 0.0182248913, 0.0208343025, -0.0201375484, 0.0119609395, -0.0130948713, 0.0404936858, 0.0243044104, -0.00930371135, 0.0190992486, -0.0334441811, 0.0111958766, 0.00348547637, 0.00351450779, 0.0215857048, -0.00545790419, -0.0237306133, 0.0248918682, 0.0118857985, 0.00340179773, 0.022036545, -0.000356061646, 0.0120838955, -0.00499681709, -0.0258891825, -0.0295368936, -0.0240858197, 0.0268181879, 0.0345098041, -0.0147274612, -0.0151646398, 0.0162302628, -0.0302473083, 0.0530352555, 0.00168382155, 0.0232661106, -0.00935152825, 0.00884604, -0.0255886223, 0.0160936452, -0.0140443696, -0.0298921019, -0.0258481968, 0.00786921848, 0.0090851225, -0.00424200064, 0.0155198481, 0.00502755633, 0.0110524269, -0.0110729197, -0.00477139698, -0.00780774048, 0.0155335097, -0.00734323775, 0.0357120447, -0.00151731784, 0.0107313739, -0.0398925655, 0.0243727192, 0.00206806068, 0.00955645554, 0.000587885967, -0.0107996827, -0.0328977071, 0.0183888339, -0.0147957709, 0.0292636566, -0.00407464337, 0.0579808392, -0.0111002428, -0.0153968912, -0.00344619853, -0.0197003707, 0.0126440311, -0.00643814122, -0.0130812097, 0.00115357141, 0.0249328539, 0.0115989, -0.00829956681, 0.0102190552, -0.0246186312, 0.00391070126, -0.0189489685, -0.00694362912, 0.0201238878, -0.0143859154, -0.0215173941, 0.026148757, 0.0360672511, 0.00705633918, 0.00684799626, -0.0294822454, 0.00857963413, 0.0094335, 0.0232387856, -0.00743204, -0.0342638902, 0.0147411227, -0.00382189918, -0.00758232, 0.0371602, 0.0132997995, 0.00834738277, 0.0143585913, 0.0321326442, -0.0297281593, -0.00889385678, -0.0165171623, 0.00586775923, 0.00841569249, -0.00790337287, -0.00396193285, -0.0295095704, 0.00263161142, -0.0253153853, 0.0642106384, -0.00888702553, 0.00812879391, -0.026599599, -0.0241268054, 0.0111139053, 0.0338540338, -0.000380823738, 0.00600437773, -0.00606244057, -0.0109089771, -0.00173932279, -0.0180336256, -0.0181565825, 0.0157247763, 0.00309269852, -0.00307391351, 0.00823808834, -0.0345644504, 0.0176101085, -0.00336422748, 0.00835421402, -0.0190036166, -0.0129650841, 0.000485422177, -0.00186142547, 0.000951205438, -0.0181839056, -0.017077297, -0.0361765474, 0.0294549223, 0.00624687551, 0.0210119076, -0.0083337212, 0.00954962429, -0.0114076342, -0.0404390395, -0.0250284877, -0.00482946, -0.00824492, -0.0262580533, -0.0209982451, 0.0132997995, 0.026845511, 0.0183478482, -0.000554158294, -0.0203424767, 0.0275286026, -0.0127055096, 0.00991849415, -0.0304112509, -0.0148504181, 0.0353295133, -0.000725358201, 0.0393734165, 0.00870259106, 0.0280067679, -0.0266132597, 0.0444556214, 0.0187167171, 0.00542716496, -0.00480213622, -0.00103744585, 0.0262034051, 0.000946936139, 0.00527688488, -0.00957011711, 0.00518466765, -0.00610684138, 0.0081971027, 0.0379799083, -0.00092132017, -0.0446742103, 0.00141741568, -0.00567307835, 0.00645521842, 0.0105469385, 0.0378159657, 0.0166401193, 0.0101644071, -0.00468601054, -0.00382189918, -0.029127039, 0.015642805, 0.0222551338, 0.00745253265, 0.00597022334, 0.0194681194, 0.0125210742, 0.009221741, -0.00834055245, -0.0351928957, -0.00235154387, -0.0127874799, -0.0401384793, -0.0284439474, -0.0255613, -0.00244376133, 0.00448449841, 0.0412587523, 0.00635958556, -0.0131836738, -0.0107313739, -0.0232251249, 0.00477139698, -0.00213466212, -0.00751401065, -0.0248235594, -0.00563550834, -0.00872308388, -0.0107723596, 0.0366137251, 0.0178696848, -0.00133544463, 0.0580354892, 0.0204107855, -0.0349196568, -0.00397217926, -0.0178696848, -0.0606039129, 0.0401384793, 0.0463682786, -0.0160663221, 0.00892118, -0.00703584636, -0.0200555772, 0.009344697, -0.0385810286, 0.0464502499, 0.0158340707, -0.0060658562, 0.0131563498, 0.035247542, 0.0201375484, 0.0172822252, -0.0121863596, 0.0300833676, 0.00737056136, -0.0231978, 0.00589166768, 0.0114827752, 0.0104991226, 0.0449201241, 0.0175691228, -0.0282253567, 0.00376383634, 0.0104513057, 0.0217086598, 0.0393734165, 0.018689394, 0.0092080785, -0.0109499628, 0.00343766, -0.00819027144, -0.0406576283, -0.00762330554, 0.0231158305, 0.00179653172, 0.0203288142, 0.0437998511, -0.0374880843, -0.00154720317, -0.00484312139, -0.0285532419, -0.000917904719, -0.0227606222, 0.00729542132, 0.0195910763, 0.0117013641, 0.0231158305, -0.00119199534, -0.0268864967, 0.0128557896, -0.0102190552, 0.00125432748, -6.55875e-05, -0.0274056476, -0.0280067679, 0.000144196427, -0.00153951836, -0.0150826694, -0.0108543299, -0.0108406683, 0.00441618916, -0.0626258627, -0.0105196154, -0.00660549849, 0.0200692397, -0.0338813588, 0.0258208737, 0.0427615531, 0.00410538213, -0.0118653066, -0.0100072967, 0.0194681194, 0.00686507346, -0.00955645554, -0.00237545208, -0.00708366279, 0.0360945761, -0.0059907157, 0.0298374537, 0.0225010477, 0.0113120014, 0.0223371051, 0.0302473083, -0.00504121836, 0.0160936452, -0.00933786668, 0.0426249355, 0.0181292593, -0.0209982451, 0.0345371254, 0.0213124678, -0.000889727206, -0.00141741568, 0.00382873, -0.0142083112, 0.0315315202, -0.0190172791, 0.00195535063, -0.0371055529, -0.000362465624, -0.0243453961, -0.0046894257, 0.0132314898, 0.0364224613, 0.044564914, -0.0141126784, -0.0114827752, -0.00576529559, 0.00150963315, 0.00765062915, -0.0183751713, -0.0217769705, 0.0165991336, -0.00146523211, -0.0139419055, -0.0186074227, -0.014700138, -0.0401931256, 0.0140853552, 0.0155471712, -0.0138462726, 0.0196320619, -0.0392914452, 0.028853802, 0.0403024219, -0.0063732476, -0.00241985312, 0.0188260134, -0.0138599342, 0.00422492344, 0.0130607169, 0.00699144555, 0.0229382254, -0.00134056783, 0.0160253365, 0.0137438085, 0.0182385538, -0.029400276, -0.0180882737, -0.00129872852, 0.0135047268, -0.0083337212, 0.0273646619, 0.00784189533, -0.00504804915, -0.00654060487, -0.00502072554, 0.024167791, 0.00782140251, -0.0032259014, -0.0186074227, 0.00268113567, 0.0159433652, 0.0184981283, 0.0106152482, 0.0101029295, 0.0293183047, 0.00380140636, 0.0153559055, 0.00101097603, -0.00850449409, 0.00580969639, 0.00166845194, -0.022282457, -0.0342365652, -0.0238672309, 0.0154652009, 0.0189899541, 0.00261282641, 0.016435191, -0.0458764508, -0.00251377816, -0.0264629796, 0.00558769191, 0.000932420429, -0.0204654336, 0.00867526699, 0.0327064395, -0.0089006871, 0.0137028238, -0.000604109373, 0.0240311734, -0.0608225, 0.0190036166, -0.00759598194, -0.0125757214, 0.0194271337, 0.028580565, 0.00308416, -0.00181873213, 0.0132588139, 0.0376247, -0.00523931487, -0.00719295768, 0.00765746, -0.00058831292, -0.00791703537, 0.00762330554, -0.00538959494, 0.0122273453, 0.00627761474, -0.0178150367, -0.00118772604, 0.0107518667, -0.0024523, -0.0241131447, 0.0249055307, -0.00208172249, -0.0271050856, -0.0548386164, -0.0306298397, -0.0289084483, -0.0329250284, 0.0172958877, -0.00144900871, 0.0133476155, -0.0120087555, -0.00829956681, -0.0253700335, -0.00537251774, -0.0201648735, -0.0152602727, -0.013805287, 0.00492850784, 0.0125005813, -0.011551084, 0.0059907157, -0.0157794226, -0.024167791, -0.0090851225, 0.0129445912, 0.000477737398, -0.0107928524, 0.00901681278, -0.0195364282, -0.0366410501, -0.000636129349, 0.0362585187, -0.0038765464, -0.00685141189, -0.00141485408, -0.00496949349, -0.0130265625, 0.0258891825, 0.00379799097, -0.000999875716, -0.0113188326, -0.0288264789, -0.018416157, 0.00760281272, -0.00455963844, -0.0163395572, 0.0172002539, 0.00340009, 0.0297281593, -0.00110233959, -0.00937885139, -0.000724931248, 0.00548864342, -0.00931737386, -0.00893484242, -0.023375405, -0.0250967965, 0.0108543299, -0.00107245427, -0.0121590355, 0.00380823738, -0.0271597337, -0.0134022627, 0.0609317981, -0.00218589418, -0.0211348627, -0.0300560426, 0.002237126, -0.0345098041, 0.000389362394, 0.0377613194, 0.000116232353, -0.0338813588, 0.0332802385, 0.00431714067, 0.000140780976, 0.0304932222, -0.00260941102, -0.023375405, 0.00457671564, -0.00221834099, 0.0175418, -0.0339633301, -0.000185075216, 0.000414551381, -0.0191265736, -0.0126850167, 0.00866160542, -0.0153012583, 0.0131905042, -0.00946765393, 0.00218589418, 0.0104444753, 0.00909878407, -0.00724077411, 0.0311489906, -0.00451182202, 0.00273919851, 0.0301653389, 0.0323512331, -0.0113803111, 0.0139692295, 0.00745936343, -0.000127439329, 0.00893484242, 0.0151373167, -0.00513685122, 0.0133134611, 0.0247415882, -0.0167494137, -0.000969136599, -0.00990483258, -0.00707000121, -0.00903047528, 0.00264356565, -0.0269957911, -0.00507878838, 0.0155335097, -0.00274944492, -0.0196047369, -0.0176784191, 0.020301491, -0.0371602, -0.00308586773, -0.00285532419, -0.0271870568, 0.0244137049, 0.00228835782, -0.00793069694, -0.0329796784, 0.0320779942, -0.0109363012, 0.0228699166, 0.00958378, 0.0253700335, 0.0238125827, 0.000486276054, -0.0232114624, 0.00747985626, -0.00931737386, 0.00751401065, 0.0108611612, -0.0130197313, 0.00337447389, -0.015888717, -0.0267088935, 0.013880427, -0.00777358562, 0.016011674, -0.0156291425, -0.0203698, 0.00272724428, 0.0224464, -0.0235393476, 0.0073842234, -0.0319960229, 0.0339360051, 0.0127738183, -0.0155608337, -0.0103283497, 0.00293046422, -0.00228323461, -0.0107655283, -0.0353021882, 0.0351382457, 0.0246322937, 0.0118584754, -0.0107382042, -0.007015354, 0.0228972398, 0.00811513141, 0.0171182826, 0.0162439253, 0.00207147608, 0.0175281372, 0.0100960983, 0.00191948819, -0.010212224, 0.0243180711, 0.0182248913, 0.00913293846, 0.0116740409, -0.020574728, 0.00203902926, -9.23241387e-05, 0.0369962566, 0.0341272727, 0.0220638681, 0.00424541626, -0.0217496455, 0.00892801117, 0.0351928957, -0.015615481, 0.00258208741, 0.00774626201, 0.00916709285, 0.00823125709, -0.0216130279, 0.0167494137, -0.00762330554, -0.00590191409, 0.0135320509, -0.000418180309, 0.000489264552, -0.00127823569, -0.00841569249, -0.0139828911, 0.0182932, 5.55012157e-05, -0.000457244634, 0.000484141376, -0.00324810203, -0.00400974927, -0.00591557566, -0.0298101306, 0.0191948824, -0.00233788206, 0.0172139164, 0.00522906845, 0.0173232108, 0.00683433423, 0.0273100138, 0.0141673256, 0.0243317336, 0.00313709956, 0.00328054884, 0.0067079626, 0.00528030051, 0.0155608337, -0.0269957911, 0.000252957456, 0.0049455855, 0.0130607169, 0.00707000121, 0.00466893334, 0.0033539813, -0.00944716111, 0.0191129111, 0.0312036369, -0.00184605585, -0.026845511, 0.0150826694, 4.35737929e-05, 0.0126235383, 0.0226649884, 0.000196175461, 0.00046791794, -0.0471060164, -0.0191538967, -0.014549857, 0.0012850666, 0.00337447389, 0.0106015867, -0.00133800623, 0.0255339742, -0.00237203669, 0.0186484084, 0.0142219737, 0.00449132919, -0.020574728, -0.0359033085, -0.0056047691, -0.0113324942, -6.0517672e-05, 0.0180336256, -0.012172698, 0.0103966584, -0.00926955696, 0.0188533366, -0.0152875967, -0.0201238878, 0.012814804, 0.0111207357, 0.0228152685, -0.0137847941, 0.00158989639, 0.0110182725, 0.0227196366, -0.00199975143, 0.00983652286, -0.000241003363, 0.00708366279, -0.00807414576, 0.00958378, 0.0112915095, 0.00190241088, 0.0144405626, 0.0148640797, 0.0133476155, 0.0114827752, -0.00202195207, 0.00866843574, 0.0200692397, -0.0385537073, 0.00295778783, 0.015738437, 0.00388337742, 0.0136686685, -0.00269309, 0.00303122029, -0.00842252281, 0.00552962907, -0.00662599131, 0.0145771811, 0.0233617425, 0.00911927689, 0.00976138283, 0.000689068926, -0.00016404879, 0.0416412838, -0.00973406, -0.011202707, 0.0038594692, 0.01695434, -0.0064176484, 0.0126508623, -0.0137301469, -0.0045186528, 0.0173778571, -0.00232934346, -0.0233070962, -0.00206293748, -0.011230031, 0.00388337742, 0.0112095382, -0.0152602727, -0.00929688103, -0.0247552507, -0.00164198212, -0.0391548276, 0.00087222294, -0.00703584636, -0.029372951, -0.0403570682, 0.0218042936, 0.013880427, 0.00898265839, 0.00617515063, 0.01680406, -0.00442302, 0.00512318918, -0.0116877025, 0.00350084598, -0.0157521, -0.0379799083, 0.00490118423, -0.0122683309, -0.0123571325, 0.0167357512, -0.00946765393, 0.0118174898, 0.00575163355, 0.00683433423, 0.00163088192, 0.0064620492, 0.023621317, 0.00594289927, -0.0334168561, 0.0169953257, 0.0109158084, 7.02837497e-05, 0.00699486118, 0.00836104527, -0.01100461, 0.0123093156, -0.0151509782, -0.0110729197, -0.0194271337, -0.0249328539, 0.00786238816, 0.0124869198, 0.0243317336, -0.0229792111, -0.0191538967, -0.0298647769, 0.0101165911, -0.02200922, -0.000784274889, -0.00603511697, -0.00574821839, -0.00361014064, 0.00110404729, -0.00896899682, -0.00364771066, -0.0259301681, 0.00963842683, -0.0232934337, 0.00936519, 0.00780774048, 0.00792386569, 0.0130129009, 0.00434788, 0.0186757334, -0.00636641635, -0.000505061063, -0.0301380139, 0.00517100561, 0.0132929683, 0.0162166022, -0.00325493282, 0.000326389854, 0.00299023488, -0.00284166238, -0.0219955593, 0.0436359085, -0.0158340707, -0.0241404679, 0.00616148906, 0.000771466934, -0.0216266885, -0.00804682262, -0.0155881569, -0.000969990506, 0.00775992405, -0.0148504181, -0.0175281372, 0.00139521516, -0.00869576, 0.0200829022, 0.00611367263, 0.00829273555, 0.0148640797, 0.00617515063, 0.0365590788, 0.00293558743, -0.00228835782, 0.0132451523, -0.00653718924, -0.00880505424, -0.00350426137, 0.0107723596, 0.0218316168, 0.0284439474, -0.00302951247, -0.0198233277, 0.0271460712, 0.0057584648, 0.0243727192, 0.049920354, 0.0301106907, -0.00183068623, 0.0231704768, 0.00132775982, -0.0293183047, 0.00625029067, -0.009221741, -0.00380140636, -0.0132383211, -0.00308074453, -0.011551084, 0.00023011658, 0.000768905331, 0.0336354449, 0.0182112306, -0.00882554706, 0.00595997693, 0.0459037758, 0.00955645554, -0.00548864342, -0.0145635195, 0.00741154701, -0.0282800049, -0.00422150781, 0.0269821305, 0.00198438205, 0.0296188649, 0.00530420849, 0.0639920458, -0.00820393395, 0.000475602719, -0.0102190552, -0.00103403034, -0.0175554622, -0.0133954324, -0.0162575878, -0.0178013742, -0.00237716, -0.0078897113, 0.0229655504, 0.00481921341, 0.0442097075, -0.00702901557, -0.000961451849, -0.00230714283, -0.019755017, -0.00785555691, 0.0104308128, -0.0105810938, 0.00696753757, 0.0225693565, -0.00902364403, -0.0122615, 0.000677114818, -0.0171592683, -0.0119131226, -0.018416157, -0.000455963833, 0.024441028, 0.00650303485, -0.0242770854, -0.015916042, -0.0056218463, 0.0208343025, -0.00461428566, 0.0012927514, -0.00379116, 0.00742520904, -0.00699144555, -0.00326347165, 0.0114486199, 0.0172822252, -0.00688556628, -0.00723394332, 0.012541567, -0.0030192663, 0.0146454899, 0.0305751935, 0.0221458394, 0.00406098133, -0.0184571426, 0.00325151742, -0.0124117797, -0.00645180279, -0.000861976587, 0.0101097599, -0.00632543117, 0.00291338703, 0.00680701062, 0.0102941953, -0.0132724755, -0.00328908744, 0.0118789682, 0.00473382697, -0.00259916461, -0.0362038687, -0.00911927689, -0.0127874799, 0.0224054139, -0.0101439143, -0.000183687676, 0.00228323461, -0.0175008141, -0.00237716, 0.0320506729, 0.00428640144, -0.00355890882, -0.00170004496, -0.00661916053, 0.0679266602, 0.0242770854, 0.0120907268, -0.00434446428, 0.0105059538, 0.0153285824, 0.00998680387, 0.00441277353, 0.00598730054, 0.0137506397, 0.0120429099, -0.00165820553, 0.0238672309, -0.0262034051, -0.00460403925, 0.0136413453, 0.000174508634, -0.00553304423, -0.00831322838, 0.00122529606, 0.0239628628, -0.0191812199, 0.00845667813, -0.0185664371, 0.0240721591, 0.00400974927, -0.0229382254, -0.00969990529, 0.0153149199, 0.00697778352, 0.00683433423, 0.00687190425, -0.000185715602, 0.0133749396, 0.0197686795, 0.0032088242, 0.00436154194, 0.0157930851, -0.0247689113, -0.00926955696, -0.00503438711, 0.00234300527, 0.00881871674, -0.0094813155, -0.00189216458, 0.00493192347, 0.0104444753, -0.00584385125, 0.00503438711, -0.00538959494, -0.00308074453, 0.0029236332, 0.0036750345, 0.0318594053, 0.0176510941, -0.00998680387, 0.00958378, -0.0107518667, 0.00841569249, 0.0126372, 0.00966575, 0.00136533, 0.00717929564, 0.00113051711, -0.0167904, 0.0143859154, -0.013559374, -0.0208343025, 0.0117423497, 0.0108884852, 0.00520857563, -0.0204107855, -0.00843618531, -0.00768478401, 0.00773260044, -0.0092080785, 0.00227128062, 0.0152602727, -0.00694362912, -0.0142629584, 0.0186484084, -0.0027255367, -0.0114964368, 0.00521199126, -0.00993898697, -0.0160936452, -0.000887165603, 0.0123981182, -0.00633909274, 0.00958378, 0.0119062914, -0.0129650841, -0.000603255525, -0.0124459341, 0.00983652286, -0.0106289098, -0.0207796562, -0.0187030565, -0.000613075, 0.0100824367, -0.00010241042, 0.00132434443, 0.00348718418, -0.011626224, 0.00786921848, 9.54727657e-05, 0.0107040498, -0.015888717, -0.0192222055, -0.0169133563, -0.0407396, -0.0218179543, 0.00347523, 0.000733043, -0.0126440311, -0.00333348848, 0.0412860736, 0.0124664269, 0.0147547852, -0.00545448856, -0.0275695883, -0.0153285824, 0.0200692397, -0.00620247424, 0.0160389971, 0.00907146, -0.0355207771, -0.0128421281, 0.00492850784, 0.0223917533, -0.00478505855, 0.0114486199, -0.0124459341, -0.00213637, 0.00113820191, -0.00149084802, 0.00792386569, -0.00215515494, 0.000471760344, 0.0101712383, 0.0237032883, 0.0270777624, -0.0258481968, -0.0214081, 0.00301072747, -0.00726809772, 0.00151646405, 0.00107330817, -0.00767795276, 0.00282629277, 0.0135662053, 0.000170025844, -0.00472016493, 0.00268967426, -0.0123776253, 0.0051334356, -0.00327030243, 0.00870942138, -0.0107177114, 0.0138257798, -0.0059907157, 0.00918758567, 0.00717929564, 0.00625370629, 0.0116193928, -0.00205269107, 0.0151919639, 0.0087299142, -0.00351109239, -0.000410282082, -0.0283893, 0.00428981707, -0.020847965, -0.00905779842, -0.0198779739, 0.011352987, 0.0184024964, 0.0130812097, 0.014426901, -0.0126030454, -0.0177057423, 0.00958378, -0.0115442527, 0.0157657601, 0.0254246797, 0.0131426882, 0.0183478482, -0.0269957911, -0.00259574922, 0.00726126693, 0.0178013742, 0.0289084483, -0.00291167921, 0.0110592581, -0.0087777311, 0.0027426139, 0.0147684468, 0.0202195197, 0.00306708273, -0.000126478728, -0.0166947655, 0.0145771811, -0.0136618381, -0.0256842561, 0.00900998246, -0.012541567, -0.00590532925, -0.00922857132, -0.00855914131, 0.00430689426, -0.0187303796, -0.0075208419, 0.0235120226, 0.0195500907, 0.00542716496, 0.0381711759, 0.0122683309, -0.0043649571, -0.0054510734, -0.000175682697, -0.000150173481, -0.010560601, -0.00593606848, 0.00712464843, -0.016558148, 0.0186074227, -0.000321693602, 0.0059292377, -0.00651328126, -0.0266405847, -0.0108133443, 0.0117355185, 0.0287991539, 0.0127943112, -0.015916042, -0.00939934421, -0.00265551964, -0.00210392312, 0.00531103928, -0.0322419368, 0.00196559704, 0.0021056307, -0.0250967965, -0.00711098686, -0.0188396741, -0.00246083853, 0.00765746, 0.00957011711, -0.0135115581, -2.07062239e-05, -0.00662940694, -0.00895533431, 0.0193178393, 0.0100346198, -0.000145583967, 0.00297144963, -0.0238262452, 0.00909878407, -0.00189216458, -0.0162439253, -0.00157794228, 2.38681914e-05, 0.00369552709, -0.021913588, 0.0159297027, -0.0158067457, -0.0106015867, 0.00964525715, -0.0266269222, 0.00247108494, 0.00812879391, -0.00144047, 0.0425702855, -0.00154293387, -0.0269138198, 0.00615124265, -0.031258285, -0.00853181817, 0.00513002, -0.00283995457, -0.00265893526, 0.00885970145, -0.00552621344, 0.00202878285, 0.00094266684, -0.00252231676, 0.00516417483, -0.00397901051, 0.0215583798, 0.0133271227, 0.0226649884, -0.00392094767, 0.00184776355, 0.019235868, 0.00750034908, 0.0128352968, -0.0179926399, -0.0049626627, 0.0094335, -0.00723394332, 0.00332665746, -0.030711811, 0.00651669689, 0.0225420333, 0.0218316168, 0.00414295215, 0.0396193303, 0.0059736385, 0.0192905143, 0.0283893, -0.0133749396, 0.00940617546, 0.0117218569, 0.0302199852, -0.00398925645, -0.00224908, -0.0332529135, -0.0237306133, -0.0219955593, 0.00362380245, 0.015219287, -0.000686080428, -0.0249191932, 0.0115989, -0.0150280213, -0.0214764085, -0.0210119076, 0.0119746011, -0.00146010891, 0.00197584322, -0.00290314062, -0.0122751612, 0.00117321033, 0.00713147921, 0.00255305599, 0.00514368201, -0.0240448341, 0.00191948819, 0.00667722337, 0.00628786068, -0.00146267051, -0.00404048851, 0.00652352767, -0.00894167274, 0.00335227349, -0.0103556728, -0.0229382254, 0.00262478064, 0.0122615, -0.0199736077, 0.0164215285, -0.00141997728, 0.00273066, -0.00759598194, 0.0237169508, -0.00739105418, 0.0259438306, -0.0011117321, 0.000412416732, -0.00989117101, -0.0122683309, 0.00134227553, -0.000530250079, -0.00392094767, 0.00110404729, 0.0116740409, 0.0104786297, 0.00350426137, 0.00892118, 0.0164215285, 0.0116467169, 0.00647571124, -0.00694362912, -0.00483287498, 0.0212304965, 0.00376725174, -0.015369568, 0.0182385538, 0.0343185365, -0.000820991059, 0.0136891613, -0.0190446023, -0.0120838955, 0.0111480597, -0.015916042, 0.0161892772, -0.00483629061, -0.00868209824, -0.00366820348, 0.0119267842, -0.00931737386, -0.0156018184, 0.00675577903, -0.0213124678, -0.0146318283, -0.026599599, -0.0158477314, -0.0302199852, -0.00185630226, 0.007015354, -0.0086069582, 0.0117218569, 0.00229518884, -0.00596339209, 0.0227332991, 0.00304317451, 0.0353568383, -0.0164215285, -0.0102327168, 0.021913588, 0.013484234, 0.00773943122, -0.000146224353, -0.00470308773, 0.0117628425, -0.0129719153, -0.0155744953, 0.00754133472, -0.00203219848, 0.00221663318, 0.0011296632, 0.00565941632, 0.00689581269, 0.0105401082, 0.0132383211, -0.0340453, -0.00361014064, 0.00881188549, -0.00690264348, 0.0187303796, -0.000328524504, 0.00122444227, 0.0134705724, 0.00106050016, -0.00382189918, -0.00200999784, 0.0120087555, -0.0281160623, -0.0143859154, -0.0116125625, 0.0168860313, 0.00157623459, -0.0113734799, 0.0353295133, 0.0130607169, 0.0155608337, 0.0138940895, 0.0128694512, 0.0115032671, 0.0011364941, 0.00362038705, 0.0184298195, 0.00182897854, 0.00672162417, -0.0115237599, -0.0147411227, -0.0159297027, 0.00930371135, 0.00508561917, 0.0283619761, -0.00523248408, 0.010806514, -0.00726126693, -0.00969990529, 0.00227128062, 0.000759085873, 0.0286078881, -0.0180882737, -0.00368528068, -0.023648642, -0.00868209824, 0.000961451849, 0.0260258019, -0.00783506408, -0.00121590355, -0.00326176384, 0.00794435851, -0.00200487464, 0.00986384694, 0.00125518139, -0.00520174485, -0.015738437, 0.00428981707, -0.00995948, 0.0114212967, 6.28658e-05, -0.00498315552, -0.0183068626, -0.0155198481, 0.0108953156, -0.00462453207, -0.00194681191, 0.0199189596, 0.00450840639, -0.0142219737, 0.00593265332, -0.0140443696, -0.010485461, -0.00165905943, -0.00863428134, 0.00451523764, 0.00629127631, 0.00178799301, -0.00113478641, -0.0100619439, -0.00368186529, -0.00810830109, -0.00173761498, -0.0200419165, 0.00240960671, -0.00769844558, -0.000709134794, 0.00651328126, 0.00127567409, 0.0137506397, 0.0132041667, -0.00144303159, -0.00960427243, -0.0103215184, 0.0152466111, -0.00810147, -0.0249738395, -0.00730908336, 0.0230475198, -0.0221731625, 0.00325493282, 0.000607524882, -0.00238911388, 0.0128626199, -0.00132605212, -0.0175281372, 0.0231568161, -0.00823808834, 0.0122888228, 0.00167784444, -0.00822442677, -0.0087777311, 0.0301653389, 0.0249055307, -0.00306195952, 0.0105264457, 0.0202741679, -0.0147138, -0.018170245, -0.00671479339, 0.0165444855, 0.00106733106, -0.000481579773, -0.00270504388, 0.012889944, 0.000569100957, -0.00330274925, -0.0108133443, 0.0120702339, 0.0247825738, -0.00315759238, 0.00844301563, -0.00439569633, 0.0228425935, 0.00950864, 0.0090851225, -0.00151134084, -0.0167220905, 0.0224327371, 0.0277198683, -0.00107843138, 0.00203902926, 0.000657049, 0.00619222783, 0.0232934337, 0.0162439253, -0.00298340386, 0.00932420418, 0.0257389024, -0.0110319341, -0.00466210209, -0.00520174485, -0.0112436926, 0.0162575878, -2.24473069e-06, -0.00533836335, -0.00970673561, -0.00550230499, -0.0210802164, -0.0198643114, -0.0134432483, 0.0128967753, -0.000479018199, -0.013880427, 0.000499510963, 0.0111275669, -0.0118653066, -0.00894850399, 0.00152329495, -0.00319174677, -0.00162746641, 0.00308416, 0.00857280288, 0.00837470684, 0.0178423598, -0.00107160036, -0.0140580311, 0.00404731929, 0.0117013641, 0.0137164854, -0.00183922495, 0.0128557896, -0.00469284132, 0.0115920696, -0.0162439253, -0.0152875967, -0.00483970623, -0.00536910212, 0.0240038484, -0.0220911913, -0.00931737386, 0.0109363012, -0.00658500567, 0.0006395448, -0.000546900439, 0.0237989221, 0.0027255367, 0.0087299142, -0.0161346309, 0.00266235066, 0.00808097702, -0.00489093782, -0.00619222783, 0.0187440421, -0.0238535684, 0.00283824676, 0.0115784081, -0.0228972398, 0.0005592815, 0.00178970082, 0.000620332838, -0.0180199649, 0.00947448425, 0.00246083853, 0.000169598905, 0.00896216556, 0.00404390413, -0.00573114119, 0.0205474049, 0.0156018184, -0.000697180687, 0.00856597256, 0.00774626201, -0.000780432485, 0.00180677802, -0.0106630642, 0.00533836335, 0.0085932957, -0.00667722337, -0.0160663221, 0.00969990529, 0.0106972195, -0.00412929058, -0.00539642619, 0.018962631, 0.001921196, -0.00639032479, 0.0375427306, 0.0313675813, 0.00118772604, 0.022282457, 0.0177740511, -0.0155335097, -0.00989800133, -0.00976138283, -0.0309030768, -0.0108201755, 0.0131358569, 0.015888717, -0.0222004857, -0.0129172681, 0.00441618916, -0.00252231676, 0.00250523956, -0.014030708, 0.0011253939, 0.00483287498, 0.0180472881, -0.0125962142, -1.40220618e-05, 0.00577212637, 0.00780090922, -0.0161756165, 0.0199189596, 0.00603511697, -0.00537593337, 0.0295915417, -0.00831322838, 0.00829273555, -0.00236349786, -0.00432738708, 0.00441277353, 0.013088041, 0.0131700113, -0.00425224705, -0.00250865496, -0.00357940164, 0.00514026638, -0.00576529559, -0.012616707, 0.0113120014, 0.0176784191, -0.0130470553, 0.00581652764, 0.00301414309, -0.0141673256, -0.0125142438, 0.0211348627, 0.00419418421, -0.0115237599, -0.00737739261, 0.0150143597, 0.000249542, 0.019509105, 0.0277198683, 0.0218589399, 0.00301755848, -0.00456305407, 0.0222414713, 0.00926272571, -0.0164488535, 0.00334202708, -0.00410538213, 0.0125279054, -0.00804682262, -0.0029048482, 0.00840886123, -0.00802633, -0.0114691127, -0.0133544467, -0.0111822141, -0.00579603482, 0.00536910212, -0.0215857048, 0.0189899541, 0.0177740511, -0.00739105418, -0.0064005712, 4.4107459e-05, 0.0237442739, -0.0179789793, 0.012616707, -0.018867, -0.0092080785, -0.00291851023, 0.0190582648, -0.00266235066, 0.0201512109, -0.00381165277, -0.0204107855, -0.024167791, -0.00279213814, -0.00250182417, -0.00158221158, -0.0107860211, -0.000151134082, 0.00154122605, 0.00509586558, 0.00675577903, 0.0202058591, 0.0184298195, -0.0119746011, -0.00187679497, 0.0169270169, 0.0153149199, 0.0103966584, 0.0133544467, 0.00909878407, 0.0136891613, -0.00850449409, 0.00760964351, 0.00970673561, -0.00929005, -0.0272007193, 0.018962631, -0.0132929683, -0.0124800885, -0.00300389668, 0.0125074126, 0.00141143869, 0.021394439, 0.00225249561, -0.00128677441, -0.0117628425, 0.00326859462, -0.0309577249, 0.00283312355, 0.0016061198, -0.0030414667, -0.0116125625, -0.0140580311, 0.00750034908, -0.0136618381, -0.0161346309, -0.00129787461, -0.0152875967, 0.00208855351, -0.0116740409, 0.00118516444, 0.0173095483, -0.00434788, 0.0112368613, 0.00928321853, 0.00633226195, 0.00803316105, 0.0287445076, 0.00698119914, 0.000530250079, 0.00197072, -0.00632543117, -0.00742520904, -0.000155616872, -0.00758915115, -0.0109089771, -0.00644838763, -0.00321223959, -0.00595314568, 0.0208069794, -0.00309952954, -0.00282458495, 0.00689922832, -0.00472358055, 0.013163181, 0.00294071063, -0.0128421281, -0.00714514125, 0.0256705936, -0.00670454698, 0.0246596169, 0.00435471069, -0.00451523764, 0.00331470347, 0.00911927689, -0.0115032671, 0.0109704556, 0.00422492344, -0.00208172249, 0.0113939727, -0.0264903046, 0.010287364, 0.0100004654, -0.0143449297, -0.0158067457, -0.01695434, 0.00101097603, -0.00629127631, -0.00255647139, -0.0101234214, -0.00307903672, 0.0097887069, -0.00619564345, -0.0221458394, 0.0115100984, -0.00954279397, -0.0085932957, 7.93560685e-05, 0.000869661395, -0.00165222853, 0.000452975306, 0.0139214126, 0.0117355185, 0.00558427628, -0.00331982668, -0.0203151535, 0.0140853552, -0.0163532197, 0.00707000121, -0.00495583192, -0.01695434, -0.0260258019, 0.0167357512, 0.00847717, 0.00283312355, 0.0210802164, -0.00256501, -0.00444009714, -0.00585751282, -0.000648937305, -0.00531103928, 0.0150143597, 0.00741837779, -0.0137369782, -0.0189489685, -0.00492167706, 0.00534519413, -0.0102941953, -0.00894167274, -0.00662599131, -0.00197755103, 0.0175827853, -0.00257696421, 0.0089006871, 0.0227059741, 0.00642106403, 0.00983652286, 0.00547839701, -0.0229109023, -0.0116535481, -0.0275832508, -0.00583360484, 0.0139487367, -0.00590532925, 0.0295642167, -0.00763696758, 0.0120155867, -0.0277062077, -0.00216540135, 0.00130129012, -7.7007935e-05, 0.00969990529, 0.00628786068, 0.00759598194, 0.000657049, -0.00367161888, -0.00766429119, -0.0148367556, 0.0218862649, 0.0139009198, -0.00754133472, 0.000944374537, 0.0109841181, 0.0047645662, -0.0123229781, -0.0117081953, -0.00835421402, 0.0111753838, 0.00250353175, 0.0072749285, 0.00232934346, -0.00776675483, -0.0182658769, -0.00389703922, -0.000807756151, 0.0131563498, -0.0228835791, 0.00898265839, 0.00684116548, 0.0184844658, 0.0123639638, 0.00572772557, 0.00284849317, 0.00954962429, -0.0166264568, 0.00648937281, -0.0121522052, -0.0340726227, -0.0109226396, -0.00730908336, -0.00847034, -0.0289084483, 0.0152875967, 0.010212224, -0.000357982848, 0.0097887069, -0.0100687742, -0.011749181, 0.00321223959, -0.00109977799, -0.0104717985, 0.018689394, -0.00495241629, -0.00372285093, -0.013409094, 0.00315246917, -0.000473895, 0.00866160542, 0.0110182725, 0.0014302237, -0.00140033837, -0.00559452269, -0.0101644071, -0.00478505855, -0.00677968701, 0.0109021468, -0.0035247542, 0.00522906845, 0.00523589924, -0.0260941107, 0.0132041667, -0.0115169296, 0.00673528621, -0.00728175975, -0.0134227555, 0.0085932957, 0.0165444855, -0.00577212637, -0.0258345362, -0.0221321769, 0.00103232265, -0.00986384694, -0.0213534534, -0.00841569249, -0.000993044814, -0.00700852275, 0.0147411227, 0.0261214338, 0.0039687641, 0.0109021468, -0.0255749598, -0.0085932957, -0.00732957618, -0.00342058274, -0.00106135407, -0.0137301469, 0.00244205352, 0.00541008776, 0.0148914037, 0.0035520778, -0.00284849317, -0.0278155021, 0.0314768739, 0.0207659937, -0.00130812102, 0.0203698, 0.00677285623, 0.0177603886, -0.0107518667, 0.00669430057, -0.00834055245, -0.0222687963, -0.00900998246, -0.0166401193, -0.00151219463, -0.0209982451, -0.02067036, -0.00810830109, 0.0115305912, 0.00883237831, 0.00126286619, 0.0039960877, -0.00848400127, 0.00677285623, 0.00524614565, 0.0047645662, -0.00411562854, -0.00945399143, 0.0122751612, -0.00980236847, 0.00110746268, -0.0022507878, -0.0133954324, 0.0111890454, -0.0181975681, -0.0144678866, -0.0238125827, -0.000167037317, -0.0150006982, 0.0289357733, -0.0153968912, -0.0212851427, 0.017350534, 0.000747131766, 0.0140990168, 0.0106425714, 0.00586434407, 0.009221741, -0.011899461, -0.0156974513, 0.0059736385, -0.00741154701, 0.00133117533, 0.00620930549, -0.0261624195, 0.0242087767, 0.0175418, -0.012022417, 0.0144542241, 0.0142629584, 0.017077297, 0.0043820343, 0.00174359209, 0.000434190297, 0.03634049, -0.00239423709, -0.00885287113, 0.0241541304, -0.02067036, -0.0175144766, -0.00916026253, 0.0105537698, -0.00100756052, 0.00829273555, 0.00855914131, 0.0106357411, -0.0106425714, 0.000965721149, 0.00757548911, -0.00225420319, -0.00464160927, 0.00928321853, 0.00127311249, 0.011899461, -0.00103061495, 0.00452889921, -0.014823094, 0.0083337212, -0.00101866084, -8.35186584e-05, -0.00826541148, 0.0150553454, -0.00238740607, 0.0257662255, 0.0243590567, -0.00378774456, -0.00549889, 0.013088041, -0.0143176066, 0.00525639206, 0.00267259707, -0.0136140212, 0.0187030565, 0.0286625363, -0.0054510734, -0.00768478401, 0.00157111138, -0.014030708, -0.0044571748, -0.0184844658, -0.00767795276, 0.00277506071, 0.0104786297, 0.0372694954, 0.0053144549, 0.00326347165, 0.00390045461, -0.00252231676, -0.00931737386, -0.000419247663, 0.0197413564, -0.0234983619, -0.00619222783, 0.0103898281, 0.000906804518, 0.00257696421, -0.0275012795, 0.0273919851, -0.0140443696, 0.00904413685, 0.0215857048, 0.0100414511, 0.0101370839, 0.00282800035, -0.00198096642, -0.0312309619, -0.00182214763, 0.0223234426, -0.00391753204, 0.0124800885, -0.0200555772, -0.0160799827, -0.0242634248, 0.00427957065, 0.0103625041, -0.026326362, -0.00537251774, -0.0064620492, 0.0122546684, 0.0130333938, -0.00468601054, -0.0131836738, 0.00665673055, -0.00558769191, -0.015096331, 0.0133886011, -0.00827907398, 3.02321532e-05, -0.0122068524, -0.00892118, -0.0387996212, -0.0147138, -0.00855914131, -0.00289972499, -0.0227196366, -0.00108867767, -0.0172822252, 0.016284911, -0.00209538429, 0.00317808497, 0.0401384793, -0.0102532096, 0.00758915115, -0.00684458064, -0.00888702553, -0.0321872905, -0.0150006982, 0.0109158084, 0.0146318283, -0.0302746333, -0.00950864, -0.00823808834, -0.00703584636, -0.0166674424, 0.000613928831, 0.0105059538, 0.0043205563, -0.0248782076, -0.00790337287, 0.00262136525, -0.0213397909, 0.0225966796, -0.0217496455, -0.0196593851, 0.0171729308, 0.0147957709, -0.00528713129, 0.0149323884, -0.0234847, -0.0123844557, -0.0190582648, -0.00140033837, -0.00601462414, -0.0262853764, -0.00431714067, -0.00314905355, 0.0107450355, -0.0160389971, -0.00133715244, -0.0103693353, -0.0134910652, -0.0129582528, -0.0123093156, 0.0154515384, -0.00101439143, 0.00866843574, -0.0120770652, -0.0224327371, -0.0158613939, 0.0147547852, 0.00562867709, -0.00465185568, -0.0227742847, 0.0171182826, -0.0143176066, -0.000914489268, 0.00123298087, -0.0188806597, -0.0108338371, -0.00383214559, 0.0147684468, 0.00737056136, 0.00276139891, -0.0092080785, 0.00489435345, -0.00311319134, -0.00194168871, 0.0287991539, 5.23259077e-05, -0.00976821408, 0.0118584754, 0.0243180711, -0.0118106585, 0.00838153716, -0.0120838955, 0.0035247542, 0.000330232229, 0.00391070126, -0.00587459048, 0.0050241407, -0.0114212967, 0.0193315, 0.00382189918, -0.0179653168, -0.000834652921, -0.0158613939, -0.0178150367, -0.0245093368, -0.00746619422, -0.017077297, -0.00210904633, -0.0302473083, 0.00547839701, -0.000696326781, 0.00545790419, 0.00578920403, 0.00523931487, 0.0117901657, 0.0106903883, -0.0244956762, 0.0033932589, -0.00353158521, -0.0130607169, 0.0412314273, 0.00189387228, 0.0104922913, -0.00151134084, 0.0109636253, -0.00737739261, 0.0107040498, 0.00534519413, 0.0190855879, -0.00438886555, -0.00970673561, -0.00206464529, 0.000287752453, 0.000419888063, -0.0159570258, 0.0164215285, -0.0112710167, -0.0302473083, -0.00366478809, -0.0281433854, -0.0101029295, 0.00439228071, -0.00590874488, 0.0167904, 0.00840886123, -0.00552962907, -0.0262990389, -0.0308757536, 0.0226786509, -0.0155744953, -0.00729542132, -0.0118174898, -0.0299467482, 0.022036545, 0.0229792111, -0.0063186, 0.00666014617, 0.0126645239, -0.0136140212, 0.00670113135, -0.0105264457, -0.00549547421, -0.00358281704, -0.00419418421, 0.00791020412, -0.0186074227, -0.013163181, 0.0252744, 0.0035247542, 0.0133544467, -0.0143176066, 0.00847717, 0.0045186528, -0.0155608337, 0.0181839056, 0.0336081199, 0.00534177851, -0.0107791899, -0.0159706883, 0.0179653168, -0.0196320619, -0.0128694512, -0.00177945441, -0.00954279397, -0.0186620709, -0.00441277353, -0.00303805131, 0.00982969254, 0.0106357411, -0.0209572595, 0.000549889, 0.0231704768, -0.0136618381, -0.0117765041, -0.00808780827, 0.0117560113, 0.00342741353, 0.00029906616, -0.0185117908, 0.00254793279, -0.00441960478, -0.0271050856, 0.00851815566, -0.00425566267, 0.0218042936, -0.00345815276, -0.0081629483, -0.0238808934, 0.0200692397, -0.00507537276, -0.00916709285, 0.0107382042, -0.00377408275, 0.0138531039, 0.016708428, 0.00811513141, 0.0129172681, -0.00560818426, 0.00531787053, 0.00898949, 0.0245913081, -0.00935152825, -0.0107996827, 0.00158050389, 0.0124254413, 0.0110387653, 0.00568674, 0.00710415561, 0.0151099926, 0.000709988642, -0.00320199318, 0.00374675915, -0.00401658053, 0.000184328077, -0.000211971957, 0.0169953257, -0.00434446428, -0.00213466212, 0.0169133563, 0.0065884213, 0.00977504533, -0.00328737986, -0.0159706883, -0.0121112196, 0.000628444541, -0.0116603784, -4.96042121e-05, 0.0138257798, -0.00382531458, -0.00713147921, -0.00198950525, 0.00410879776, 0.00566966273, 0.00324297883, 0.00837470684, -0.0075208419, 0.00168382155, 0.00354183139, -0.0091739241, 0.0187440421, -0.0105332769, 0.00566966273, 0.00136874535, -0.0154652009, -0.00485336781, -0.00686507346, -0.0197413564, 0.0162575878, 0.0139077511, 0.00824492, -0.024441028, -0.00598388491, 0.0129992384, 0.00428298628, -0.000698461488, -0.0107586971, -0.027788179, -0.0172139164, 0.0130402241, 0.0218726024, -0.00678310264, 0.00651669689, -0.0143312681, 0.0217223223, 0.0153285824, 0.024837222, -0.00739788543, 0.0203834623, -0.0105947554, 0.00663965335, 0.00331811886, 0.0154105527, -0.00928321853, 0.0029014328, -0.00212441571, 0.00496949349, 0.00575163355, 0.00362038705, 0.00536910212, 0.0135525428, 0.000133309659, 0.0217496455, 0.0119950939, 0.002267865, -0.00393802486, -0.0134500796, -0.00695387553, -0.000590020616, 0.00886653271, 0.0163532197, -0.0240994822, 0.000148252293, 0.00341375172, 0.0157247763, -0.013757471, 0.0194271337, -0.0222961195, -0.0186757334, 0.0258481968, -0.00245571532, -0.00102634553, -0.00445375917, 0.00889385678, 0.00106733106]
|
29 Jan, 2021
|
Fabric.js Itext cornerStyle Property
29 Jan, 2021
Fabric.js is a JavaScript HTML5 canvas library that is used to work with canvas. The canvas Itext is one of the class of fabric.js that is used to create Itext instances. The canvas Itext means the Itext is movable and can be stretched according to requirement.In this article we will be using cornerStyle property is used to style the corners in a canvas Itext.
Approach:
First import the fabric.js library.
After importing the library, create a canvas block in the body tag which will contain the Itext .
After this, initialize an instance of Canvas and Itext class provided by Fabric.JS and and use the cornerStyle property to style the corners. After this render the Itext on the canvas.
Syntax:
fabric.Itext(Itext, {
cornerStyle : string
});
Parameters: This function takes a single parameter as mentioned above and described below:
cornerStyle : This parameter takes a string value.
Example: This example uses FabricJS to set the cornerStyle property of the canvas Itext as shown in the below example:
HTML
<!DOCTYPE html>
<html>
<head>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;width: 400px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Itext cornerStyle Property
</b>
</div>
<div style="text-align: center;">
<canvas id="canvas" width="400" height="200"
style="border:1px solid green;">
</canvas>
</div>
<script>
var canvas = new fabric.Canvas("canvas");
var geek = new fabric.IText('GeeksforGeeks', {
cornerStyle : 'circle'
});
console.log(geek.willDrawShadow())
canvas.add(geek);
canvas.centerObject(geek);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js Itext cornerStyle Property
|
https://www.geeksforgeeks.org/fabric-js-itext-cornerstyle-property?ref=asr5
|
CSS
|
Fabric.js Itext cornerStyle Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Fabric.js Itext cornerStyle Property, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.00660446333, 0.0078510344, -0.0163371786, 0.0400794633, 0.0329716429, 0.0316744, -0.0333770327, 0.0141075393, -0.00396943465, -0.0264854189, 0.0352418236, -0.0198775772, 0.0151750641, -0.0456738323, -0.0128643457, 0.0151615506, -0.0284853373, -0.00271948497, -0.0323500484, -0.0176479369, -0.000600482512, -0.014404824, -0.0404848531, 0.00460454402, -0.00553018227, 0.0355931595, 0.0294852965, 0.00466873078, -0.0456197821, 0.0165804122, 0.00356404553, 0.000698451535, 0.00716862967, -0.0465386622, -0.0139588965, -0.0341337584, -0.00257590972, 0.0726997703, -0.0381876491, -0.0216072369, 0.0202694535, -0.0224855803, 0.0175263211, 0.0311879311, -0.00568558136, 0.0151750641, -0.00682742754, -0.00731727248, -0.0250530429, -0.0627542287, -0.00593894953, -0.01420213, 0.0140805133, 0.0199721679, 0.0246881936, 0.0332959555, -0.00708079571, 0.0406470075, -0.00487480359, -0.0113981888, 0.0196343437, -0.0708620101, -0.0495115183, -0.0111211734, -0.0345391482, 0.0134656727, 0.01024283, 0.0263097491, -0.00353364134, 0.00111228623, -0.0254854579, 0.00769563578, 0.0332689285, -0.0155264009, 0.00130822428, -0.026944859, 0.0431063697, 0.0132021699, -0.0394578688, 0.0579976626, 0.00631393446, -0.0203910694, -0.00765509671, 0.0123778796, -0.0189046431, -0.0163642056, 0.0240125451, -0.0384849347, 0.0319987088, 0.0315392688, -0.0175803714, 0.0159453023, 0.00184620928, -0.0377552323, -0.0226207096, 0.0148372399, 0.0198370386, -0.0132156834, -0.0281069744, -0.024134161, 0.0217558797, 0.0467008203, -0.00634433888, -0.044673875, 0.00776995672, -0.0377822593, 0.0129859624, -0.00956718158, 0.0263773147, -0.0159993544, 0.0278907679, -0.0243773945, 0.00589165417, 0.042836111, -0.0494034141, 0.0253503285, -0.0104117421, -0.0407010615, 0.0250530429, 0.00399983861, -0.0175668597, -0.0168912113, 0.019283006, 0.036701221, -0.0245530643, 0.0314311646, -0.0363498852, 0.0123846354, 0.0259449, 0.0147967, -0.0231071766, -0.003780253, 0.0332959555, 0.0056180167, 0.0389984287, 0.0327824615, -0.00412483374, 0.023066638, -0.00712809106, -0.0215531848, -0.0090536885, -0.0247422457, 0.0100536486, 0.0417280458, -0.00454035727, -0.0136953937, 0.0291069336, 0.00702674361, 0.00174992939, 0.0373228192, -0.0660513937, -0.00372957927, 0.0306744389, -0.00674297148, 0.046944052, -0.028350208, -0.0282691307, 0.0156750437, 0.0414037369, -0.0035809367, 0.0401875675, 0.000356193399, 0.00185972231, 0.0202424265, -0.0171074178, -0.00675986242, 0.00032853405, -0.00985095371, -0.0681594163, 0.0232828446, -0.0194721874, 0.00311811757, 0.0235395916, -0.0239179544, -0.058646284, -0.0342418626, 0.000756726251, -0.0301339198, 0.00623623515, -0.039565973, -0.0628623292, 0.0271340404, 0.0190668, 0.0556193776, -0.0108036185, 0.0126616517, 0.0353769511, 0.00964826, 0.00966852903, -0.0139859226, -0.0167155415, 0.0476737544, 0.0486737117, 0.00331067736, 0.0160939451, -0.00960772, 0.0335662141, 0.0374579504, -0.0221477561, -0.0198775772, 0.0117427697, -0.0331337973, -0.00814156327, -0.0392416604, 0.0563761033, -0.00279718451, -0.0242557786, -0.0515114367, 0.0326743573, 0.00817534607, -0.00542207854, 0.00594570627, 0.0382687263, 0.0140399747, 0.00364850159, -0.00810778141, -0.009182062, -0.00776995672, -0.000405811326, -0.0257557184, 0.0388632976, 0.0231477153, -0.0189046431, -0.0341607854, -0.0468359478, 0.00371944462, 0.011249546, 0.0149048045, -0.00960096437, -0.0325662531, 0.0176344234, -0.00511465874, 0.00189857208, 0.007560506, 0.0436468869, 0.010675245, -0.0166885164, -0.00264347438, 0.0255665369, 0.0191749018, 0.0170398541, -0.0187830254, -0.0454846509, -0.00670918869, 0.028350208, 0.0437549911, -0.00439847121, 0.00249145366, -0.00154132303, -0.00706052594, -0.0133102741, -0.0249989927, 0.0123643661, 0.0353769511, -0.0175533462, -0.00634771679, -0.017701989, -0.0352147967, 0.0441874079, 0.0516195409, 0.0441874079, 0.0338094458, -4.99610323e-05, 0.0257422049, -0.0069152615, -0.00945907831, 0.00992527511, -0.0510519966, -0.00895909779, -0.0275664553, 0.0348094068, -0.0452954695, 0.0407821387, -0.024134161, -0.0265664961, 0.0377011821, -0.0258367956, -0.000625819375, 0.0121143768, -0.0213099513, -0.0183100719, 0.0164452828, 0.039511919, 0.0324311256, -0.0303501282, -0.023499053, 0.0113035981, 0.033944577, -0.0212018471, -0.0392146334, 0.000315865647, -0.00951312948, 0.0262016468, -0.00557072135, 0.0284853373, -0.0193775967, 0.0116076404, -0.0420253314, -0.00310291536, -0.0273367353, -0.00120518787, -0.0249179136, -0.0118035777, -0.0377822593, 0.0187424868, 0.0407821387, 0.0329446159, 0.0178236049, 0.0139859226, 0.000689161418, -0.0030775785, -0.0139048444, -0.0337283686, -0.0120873507, 0.0173101127, -0.0210396927, 0.0532681234, -0.0106482189, -0.00344411796, 0.0173776783, -0.0333770327, -0.0248908885, 0.013600803, 0.0290528815, 0.0499439314, -0.0129859624, -0.0199856814, -0.0176479369, 0.0143102333, 0.0143372593, -0.0401605442, 0.00785779115, 0.0049896636, 0.0142696947, 0.0164993349, 0.0109725306, -0.0121549154, 0.000289684249, -0.0214856192, 0.0218639839, 0.0355120823, 0.0328094885, -0.0322419442, -0.0177695528, 0.0350256152, -0.0621056035, -0.0025032775, 0.0118103344, 0.0289447792, 0.00470926939, 0.000972933718, 0.02553951, 0.00644568587, -0.024390908, -0.00658081565, 0.00377687463, 0.00522614038, -0.0365931205, -0.0268502682, 0.0235125646, 0.0223639626, 0.0085874917, 0.0281340014, 0.0122157233, 0.016729055, -0.0199316293, -0.0202694535, 0.0309717245, -0.00305055268, 0.00320933014, -0.0335662141, -0.0407821387, -0.0197559595, 0.0117022311, 0.000905368885, -0.0254989713, 0.0106279496, -0.00813480746, -0.0351877697, 0.0115468316, -0.0214585941, 0.016553387, 0.0134386476, 0.0072564641, 0.0202154014, 0.0347823799, -0.0429171883, -0.0198910888, 0.0195262395, 0.00379714416, -0.041349683, 0.0437279679, 0.0145804929, -0.00714836037, 0.00997932721, -0.0204180963, -0.0017566859, -0.0246881936, 0.0202964786, -0.0510249697, -0.00764158368, 0.0194316488, 0.0139588965, -0.0357823409, 0.00851317, -0.0213775169, -0.0259449, -0.000527850352, 0.000605549896, -0.0300798677, 0.0163101535, -0.0112157641, 0.0342688896, -0.0220396519, 0.034917511, 0.0169993136, 0.04005244, 0.0615110323, -0.011046852, 0.0126751643, 0.0694566593, -0.0129927192, -0.0472413376, 0.00291035557, -0.000973778311, -0.0386200659, -0.026742164, -0.0113981888, 0.00137241092, 0.00173641648, -0.0815102234, 0.00381403533, -0.00942529552, -0.0284853373, 0.0309176724, 0.00612813141, 0.0389173478, 0.0219180342, 0.0345661752, 0.0304852575, -0.0131278485, 0.00881045591, 0.0245936029, -0.0140940258, -0.0219991133, 0.0282150786, -0.0236476958, -0.0106009236, 0.0235260781, 0.0136345848, 0.0013800119, -0.0129927192, -0.0590786971, -0.00698620453, 0.00529708387, -0.023242306, 0.0289447792, 0.00054854207, 0.0306474119, -0.0151345246, -0.014891291, -0.0276069939, -0.0237693116, 0.00429374585, 0.00528019248, -0.00355053251, -0.0210667178, -0.00477683451, 0.0126954336, 0.0122292368, 0.014864265, -0.0028647494, 0.00735105481, 0.0460521951, 0.0046079224, 0.000418479758, 0.000225075375, 0.00369241857, -0.00585449347, -0.0374038965, 0.0467818975, 0.00393903, 0.00987798, 0.0248098094, -0.00837128423, -0.0175938848, 0.023445, -0.0197019074, -0.0247557592, 0.0301879719, 0.0365931205, 0.0221612677, -0.0187830254, -0.0192559808, -0.00610110536, 0.0084793875, 0.0140670007, -0.0407821387, 0.0313230604, -0.0159453023, 0.0017347273, 0.0129724499, -0.0184316896, 0.0453765467, 0.0513222553, 0.00321777561, -0.0202154014, 0.0315662958, -0.0129656931, 0.00332081201, -0.0289988313, 0.0216748, -0.018364124, -0.00652338564, -0.00403024303, -0.0319446586, 0.0156615302, 0.00178202277, -0.0048950729, -0.00967528578, 0.0135602644, -0.013344056, 0.00434779748, -0.0233909488, 0.0127765117, 0.0590246469, 0.00681053614, -0.0179722477, 0.00795238186, 0.00542207854, -0.00379376602, -0.00290528825, 0.0137291765, -0.000615684607, 0.0201748628, -0.00361471903, -0.0145264408, -0.0189451817, -0.00094506325, -0.015121012, -0.0435928367, 0.000183480777, -0.0459170677, -0.00447617099, 0.0154318102, 0.0328635387, -0.0179857612, 0.0108306445, -0.0177290142, 0.0107360538, -0.0385660119, 0.0198370386, -0.0128981285, 0.0123981489, 0.0201748628, 0.00241206493, -0.0109860431, -0.00508425431, -0.0324851759, 3.43630563e-05, 0.0248638615, -0.0018529658, 0.0352147967, 0.0248503499, 0.0114589976, -0.0378092863, 0.0308906455, -0.00276002381, -0.0202289131, -0.0149183171, 0.0146885971, -0.02421524, 0.00114775775, 0.0255800486, 0.0220261384, -0.00906044524, 0.0239449795, -0.034944538, 0.0467818975, 0.0252827648, 0.00330561, -0.00213673804, -0.000787975, 0.00759428833, 0.00696593523, 0.017701989, -0.0132697355, -0.00760104461, -0.0572949871, -0.0334040597, 0.0317284502, 0.0348904841, -0.0245936029, 0.0042295591, -0.0202694535, 0.0444846936, 0.0186478961, 0.00242726691, 0.0269043203, -0.0139994351, 0.018391151, 0.0445117168, 0.00399983861, 0.0325662531, -0.0103509342, -0.0093644876, 0.0342688896, -0.000698029296, 0.00737808086, 0.0267286524, -0.008607761, 0.00706052594, 0.00735781156, -0.00789157394, -0.0300258156, -0.0108644264, 0.0275124032, 0.0266746, -0.0239720065, -0.0158236865, 0.0341878086, -0.0117968218, 0.0481061675, 0.00860100426, 0.0181614291, -0.00776995672, -0.00514844107, -0.0231882539, -0.000592881523, -0.0276745595, -0.0229315069, -0.0141210519, -0.00716862967, 0.0240801107, 0.0105536282, 0.0194181353, -0.0127900243, 0.00539167458, -0.0117089869, 0.00303872884, 0.00833750144, 0.0322149172, 0.010560385, 0.0325662531, -0.00217389874, 0.0119116819, -0.028809648, 0.0134454034, 0.00577003742, 0.00566193368, -0.0172695741, 0.0133778388, -0.0304312054, 0.00874289, -0.0206478164, 0.0427280068, -0.0122427493, 0.048457507, 0.0165398736, -0.0176749621, 0.00976312, -0.0205667373, 0.00264854194, -0.0133643262, -0.00579030719, 0.0131481187, 0.0160128679, 0.0185668189, -0.010215804, -0.00670581078, -0.0228909682, -0.0143372593, -0.00396605628, 0.0148237264, 0.0103847161, -0.00202356698, -0.0127562424, 0.0262421854, 0.0326473303, -0.0142832082, 0.00302521582, -0.0214721076, 0.00706728268, 0.00846587494, 0.0282691307, -0.00453697937, -0.0358904451, 0.0154182967, 0.00639839051, 0.0046281917, 0.0369985066, 0.0232287925, 0.0235260781, 0.0092361141, 0.0331878513, -0.015323706, 0.00628690841, -0.039079506, -0.00016711741, 0.00142139534, -0.0168101322, -0.0233774353, -0.0052193841, 0.0195532646, -0.0194046237, 0.0420793854, -0.00830372, 0.00672945846, -0.0142156426, -0.0198235251, 0.00870235171, 0.0287015457, 0.00944556482, 0.0103644468, -0.00191377418, 0.000679026649, 0.0115941269, -0.0153372195, -0.00174992939, 0.0202694535, 0.0210802313, -0.0107630799, -0.00409780769, -0.0330527201, 0.0126616517, 0.0156615302, -0.0100063533, -0.00239348458, -0.00478359079, -0.00211309036, -0.00374984881, 0.00354715413, -0.0167155415, 0.00128964393, -0.0281340014, 0.0305663347, 0.0152561413, 0.00505385036, -0.0128846159, -0.00667878473, 0.00532410946, -0.0392957143, -0.0289718043, 0.0114725102, -0.00239179539, -0.0295393486, -0.0114252148, 0.0214856192, 0.0259178728, 0.0123576093, -0.00937124342, -0.0285664164, 0.0243503693, -0.0179317091, 0.0220261384, -0.0214721076, -0.0101887779, 0.00931719225, 0.0151074985, 0.022093704, -0.0106211929, 0.0334581099, -0.0336472914, 0.0494304374, 0.0150939859, 0.0129792066, 0.000346269808, -0.0145669803, 0.0134251341, 0.0236612074, -0.000892700511, -0.0148507524, 0.00357080204, 0.00142561819, -0.00102360733, -0.0028563037, -0.00469575636, -0.0328094885, -0.00787806, -0.0176344234, 0.0086483, 0.0222693719, 0.0312960334, 0.0170128271, 0.00967528578, -0.00731727248, 0.00323804514, -0.0311879311, -0.00195262395, 0.00829696283, -0.000383852748, -3.8321934e-05, 0.0244990122, 0.0157696344, 0.00694566593, 0.00454035727, -0.0368633792, -0.00778346974, -0.014891291, -0.0199181158, -0.0111414427, -0.0298366342, 0.0194451623, -0.0048950729, 0.018593844, 0.00371944462, -0.017472269, -0.0162290744, -0.0070064743, -0.00847263169, 0.000489845115, 0.0095334, -0.0189046431, 0.00331912283, -0.0103239082, -0.000224019677, 0.024620628, 0.012654895, 0.00172459264, 0.0333229788, -0.00359444972, -0.00226004398, -0.0119589772, 0.000321777567, -0.0434847325, 0.0513222553, 0.0510249697, 0.01233734, 0.00337148574, -0.0189857204, -0.0223639626, 0.00286137103, -0.0350256152, 0.036214754, 0.00353026297, 0.00606056629, -0.00389511324, 0.0275529437, 0.015580453, 0.015323706, -0.0108982092, 0.0165668987, -0.0171884969, -0.0259989519, -0.00378700951, 0.0243098307, -0.00677675381, 0.0491061285, 0.0200667586, -0.0114117023, 0.0164858215, -0.00449981866, 0.0254854579, 0.0229585338, 0.0237963367, 0.0252287127, -0.0327284113, 0.00143406377, -0.00852668285, -0.0441063307, 0.00834425818, 0.00851992704, -0.00644568587, 0.0300798677, 0.0167831071, -0.0388632976, -0.011046852, 0.00808751211, -0.0204180963, 0.0252287127, -0.00408429466, -0.0110603645, 0.0184316896, 0.0242692921, 0.00885775127, 0.0159858409, 0.0048950729, 0.00690850522, -0.00401673, -0.0127021903, 0.00374647044, -0.0414037369, -0.0264448803, -0.00941178296, 0.00587138487, -0.00457751798, -0.0203235038, -0.0141345654, 0.00665513705, -0.0425658524, -0.00114269042, 0.00751996692, 0.0239449795, -0.0355661325, 0.0124927396, 0.0445927978, 0.0018377637, -0.0123440968, -0.0109725306, 0.0284042601, 0.00226511131, -0.0211883355, 0.0138170104, -0.00819561537, 0.0312149581, -0.0177155025, 0.0193775967, 0.00380727882, 0.00290022092, 0.0220261384, 0.0238774158, 0.00324986898, 0.00793211255, -0.0244854987, 0.0342418626, 0.0139048444, -0.0174992941, 0.0137899844, 0.0115468316, 0.000872431032, -0.0152426288, 0.0192154404, 0.00893882848, 0.0259719249, -0.00641190354, -0.0255124848, -0.0321608633, -0.00234618923, -0.0110603645, -0.00466197403, 0.0129386671, 0.030214997, 0.0276745595, -0.000813311781, -0.000906213478, -0.00918881875, -0.0230531245, 0.0150939859, -0.0203370173, -0.0237557981, 0.0256881528, 0.0166614894, -0.00889829, -0.0382957533, -0.0126886778, -0.0495655686, 0.0219045226, 0.0132427095, -0.0245800894, 0.0274853781, -0.0211342834, 0.0346202254, 0.0399173088, -0.0180398133, 0.00633082585, 0.0161885358, -0.0131075792, -0.0027025938, 0.00236139121, 0.0224720668, 0.0160263814, -0.0212559, 0.00187323522, 0.00769563578, 0.0338364728, -0.0254449192, -0.0130737973, 0.00436468888, 0.0111009041, -0.00583422417, 0.00891855918, -0.00465521775, -0.0173371378, -0.00893882848, -0.00309447, 0.00401335163, 0.0249449406, -0.00266205473, -0.0218910091, -0.0171479564, 0.0319987088, 0.00731727248, -0.00913476665, 0.0118914125, 0.0299177133, 0.0237422865, 0.0254314076, 0.0115198055, -0.0206207894, 0.0336202644, 0.023066638, -0.0150804725, -0.0419712812, -0.00580044184, 0.026282724, 0.00631055608, 0.00642541656, 0.0313230604, -0.0419442542, -0.0122968014, -0.0211072564, 0.0143507728, -0.00277860416, -0.0229585338, 0.0025995574, 0.0341337584, -0.0151885767, 0.0220396519, 0.00151514157, 0.0447549522, -0.0340256542, 0.0192289539, -0.0119995158, -0.0136345848, 0.0121143768, 0.0231342018, 0.000592459226, -0.00949961692, -0.00177357707, 0.0352418236, -0.00814832, 0.00534100085, -0.00482750824, -0.00708755199, -0.0140399747, 0.00332587934, -0.0093104355, 0.0037430923, 0.0175938848, -0.0212964378, -0.00532410946, -0.00140197051, 0.0151345246, -0.00630042143, 0.00442549726, -0.0168912113, -0.0250260178, -0.0353229, -0.0201343223, -0.0254854579, -0.0180938654, 0.012195454, 0.00810102466, 0.00208099722, -0.0154858623, 0.00615177909, -0.0216342621, -0.0155534269, -0.0122900447, -0.00263840705, -0.00791184325, -0.000375829433, 0.00812805071, -0.00269752624, 0.0206748415, -0.011276572, -0.0198100116, -0.0161750242, 0.0264448803, 0.00368904043, -0.00632744748, 0.000458174094, -0.021147795, -0.0508357882, -0.0189181566, 0.0397551544, 0.00683756219, 0.00253874902, -0.00317216944, 0.0175398327, -0.00413834676, 0.0317825, 0.0138778184, -0.00445927959, 0.00523627549, -0.0156209916, -0.00939151272, 0.00373633578, -0.0129724499, -0.0138778184, 0.0176209118, 0.0164047442, 0.0208775364, -0.00861451775, 0.000707319472, 0.00685445312, 0.022066677, 0.00336979656, -0.00849290099, -0.0249989927, -0.0217693932, 0.00636123, -0.0124657135, -0.0201748628, -0.00305393082, -0.0382146761, -0.00574301183, 0.0417010225, -0.00906044524, -0.0173506513, -0.0517816953, -0.0140534872, -0.0374849737, 0.00169165479, 0.027174579, -0.00293062511, -0.0178506318, 0.0352418236, 0.0109590171, -0.00221950514, 0.0223774761, 0.0126954336, -0.00531735318, 0.00122461282, 0.0147696743, 0.0237963367, -0.0278096888, -0.015148038, 0.00859424844, -0.0157966595, -0.0192559808, -0.000780796225, -0.0290528815, 0.00779698277, -0.0242828038, 0.0229585338, 0.0034390504, 0.0033731747, -0.000554876286, 0.036782302, 0.00241375412, -0.00144166488, 0.0159993544, 0.0254854579, -0.0137562016, 0.0213910285, 0.011621153, -0.021147795, 0.01035769, 0.0199721679, -0.0168371592, 0.000442972, 0.0163642056, -0.0218504705, -0.0145264408, -0.0141480779, 0.00151683076, -0.00789157394, 0.00330561, -0.0224315282, 0.00404375605, 0.011648179, -0.00614840072, -0.0023039612, -0.0192424674, 0.0199451409, -0.0236341823, 0.00328196213, -0.0143507728, -0.0321608633, 0.0197019074, 0.0254449192, -0.00229213736, -0.0410253741, 0.0431604199, -0.0166750029, 0.0254584327, 0.00542545691, 0.0128846159, 0.0259989519, 0.00354039785, -0.0412686057, 0.00450319657, -0.0108374, 0.0126616517, -0.00427009817, -0.00644568587, 0.00669567613, -0.00895909779, -0.0245800894, 0.0103239082, 0.000973778311, 0.0196613688, -0.00834425818, -0.0150534473, 0.00781049579, 0.0202694535, -0.0208099708, 0.00163760292, -0.024647655, 0.0148507524, 0.00954015553, -0.0112968413, -0.0100739179, -0.00240530842, 0.00536464853, -0.00753348, -0.0342959128, 0.0153101934, 0.0305122826, 0.0153642455, 0.00574976811, -0.0188370775, 0.0225261189, -0.00712133432, 0.00411469908, 0.0125467917, -0.00149487215, 0.0235260781, -0.0109455045, 0.0118170911, -0.00268739159, 0.0193100329, 0.0129251545, 0.00398632558, -0.00159790856, -0.0104860635, -0.0157020688, -0.000763060467, 0.0247557592, 0.0338635, -0.00684094, 0.0179046839, -0.0118306037, -0.00147460273, 0.0221477561, -0.0296474528, 0.00162662356, 0.00872262102, 0.0154318102, -0.00086271856, -0.0266881119, 0.0250800699, -0.00340020075, -0.0107968617, -0.000699718425, -0.0032937862, 0.00738483714, -0.000430303597, -0.00907395873, -0.0152831674, 0.0128102945, 0.000718298717, -0.0106009236, 0.0055977474, -0.00806724187, 0.0106482189, 0.0032481798, -0.018756, 0.000160466501, 0.016039893, 0.00607070094, 0.0185668189, 0.00320257363, 0.0100333793, 0.0143913114, 0.0143642854, 0.0218639839, 0.00903341919, 0.00808751211, 0.00184452021, 0.00872262102, 0.0039052479, -0.0188776162, -0.0177155025, 0.029755557, 0.000361471903, -0.00285123638, 0.0244854987, -0.00109286129, -0.00317385839, 0.016729055, 0.0331608243, 0.00582071114, -0.0376741551, 0.0149588566, -0.00676999707, 0.0286474936, 0.0181614291, -0.0104928203, 0.0105333589, -0.0435658097, -0.0163101535, -0.00452346634, -0.00211815792, -0.00544572622, 0.0131548746, -0.0156750437, 0.0255800486, 0.00899288058, 0.0170939043, 0.0196613688, 0.00155230227, -0.0163642056, -0.0315392688, -0.0135940462, 0.00406064698, -0.00361471903, 0.0211883355, -0.00560788205, 0.0117495265, 0.00482413, 0.0103712035, -0.018107377, -0.0363228582, 0.0161615107, -0.0055065346, 0.0252287127, -0.00530384, -0.0045167096, 0.00854695216, 0.0108509138, -0.00388497836, 0.0200667586, -0.00274482183, 0.0189722087, -0.0114792669, 0.00480386, 0.0149588566, 0.0154993748, 0.0274178125, 0.00567206834, 0.00387822208, 0.00368566206, 0.00181918335, 0.0169452634, 0.0130873099, -0.0426199026, 0.0171209313, 0.0272286311, 0.00113171106, 0.00769563578, -0.0152831674, -0.00312994141, -0.0273367353, -0.00935773086, 0.0046079224, 0.00395592162, 0.031593319, 0.011046852, 0.0113238674, -0.0135399941, -0.000191504107, 0.0294312462, -0.00562139507, -0.0113846762, 0.00686121, 0.00567544671, -0.000554031692, 0.00184620928, -0.0126008429, -0.000912125397, 0.0149858817, -0.0147156231, -0.0183506105, 0.00512479339, 0.00207930803, -0.0119454646, 0.00617542677, -0.0140399747, -0.00806724187, -0.00870910846, 0.00100840523, -0.0195262395, -0.00382754835, -0.00425320677, -0.0101549961, -0.0284312852, 0.0197829865, 0.0333229788, 0.0161885358, 0.0118711432, -0.00668891938, 0.00542883528, 0.00315021072, -0.0273502488, 0.00797265116, -0.0235260781, -0.0293771941, 0.0210937448, -0.00672608, -0.015350732, 0.021174822, -0.0141210519, 0.0233504102, -0.00739159388, -0.010472551, 0.000522360671, 0.00884423777, 0.018364124, -0.000908747141, -0.0194586739, 0.017701989, 0.00244584726, 0.00237490423, 0.00473291706, 0.0123913921, -0.0164317694, -0.000718721, -0.00958745088, -0.00749294087, -0.0250395313, -0.0150939859, -0.00296778581, 0.00699971756, 0.0318095274, -0.0326203071, -0.000440438307, -0.00722943805, 0.00914828, -0.0374309234, -0.0108711831, -0.0261881333, -0.0101414826, 0.00349985878, 0.00273806532, 0.00752672367, -0.00528357085, -0.0351607427, 0.00440522796, -0.0228774566, -0.000706474879, -0.0036755274, 0.0209856406, 0.0102630993, 0.00550315622, 0.0154993748, -0.0073105162, -0.0017347273, -0.0369714834, 0.0100401361, 0.00312656304, 0.026539471, -0.00434441958, 0.00452684425, 0.00475994311, -0.00308940234, -0.00267387857, 0.0515925139, -0.0106820017, -0.00968879834, 0.0124994963, 0.00664162403, -0.019769473, 0.00129217759, -0.0289177522, 0.00952664297, 0.026025977, -0.0232693311, 0.00246442761, 0.00277860416, 0.00388835673, 0.036728248, -0.0140399747, 0.0111954948, 0.0185533054, 0.00476332149, 0.0118711432, 0.00308433501, 0.0101820221, 0.0222693719, -0.0154182967, -0.00341709191, 0.00148304831, 0.00876991637, 0.00131329161, 0.0287555978, -0.00818885863, -0.0119589772, 0.0178100932, 0.0035809367, 0.0211207699, 0.045646809, 0.0271070153, 0.0147696743, 0.033944577, -0.0139859226, -0.0378903635, 0.007560506, -0.00391876092, -0.000680715777, -0.0139724091, -0.00843209215, -0.00176850974, 0.00853344, -0.00318399328, 0.0262016468, 0.00997932721, -0.0184452012, 0.00107343646, 0.0425658524, 0.0198100116, -0.00178540102, -0.0207559206, 0.00549977832, -0.017445242, -0.0140534872, 0.0286745187, 0.0187695138, 0.0270935018, 0.0109995566, 0.0513492823, -0.0113238674, 0.00657743728, -0.0201072972, -0.00663824566, 0.00754023623, -0.00916854944, -0.00427685445, -0.0250800699, -0.0263502896, 0.00146446796, 0.024620628, -0.00052953948, 0.0354039781, 0.00433766283, -0.0138778184, -0.00190363941, -0.00013396841, -0.0092901662, 0.00883072522, -0.00257759867, 0.00434779748, 0.0189181566, -0.0212559, -0.015323706, 0.0249989927, 0.0101887779, -0.0138102537, -0.021404542, -0.00599300163, 0.0188911296, 0.00749969762, -0.0268097296, 0.00353364134, -0.0117495265, 0.00305393082, -0.00978338905, 0.0108711831, 0.00388835673, -0.00352688483, -0.00544234831, -0.0160128679, 0.0142426686, 0.00532410946, -0.00321270828, 0.000714920519, 0.00512817176, 0.00155314687, 0.0114184581, 0.0198640637, 0.0118576298, 0.00381403533, -0.0209991522, 0.00216038595, -0.00265529822, -0.00669229776, -0.0042295591, 0.0107630799, 0.00496263755, 0.00856722239, 0.0212018471, 0.00646933354, -0.0138913319, -0.00802670326, 0.0162831265, -0.0116549358, 0.0162425879, -0.0483223759, -0.00390186976, 0.00250496645, 0.0167155415, 0.0058308458, 0.00419577677, 0.00865505636, -0.011249546, -0.00203370187, 0.0307555161, 0.0103171514, -0.00747267157, -0.00386470906, -0.0066450024, 0.0427009799, 0.019539753, 0.0244990122, 0.00147713639, 0.00309109152, 0.0266881119, 0.0206478164, -0.00194080011, 0.0143102333, 0.022580171, 0.0150939859, 9.76523152e-05, 0.00631055608, -0.0207964592, 0.00493899, 0.0169993136, 0.00937124342, -0.011736013, 0.00933746155, -0.0015286546, 0.0262962375, -0.0246881936, -0.00766185299, -0.00585787185, 0.0173776783, 0.0131008234, -0.0160263814, -0.00656054635, 0.0210532043, 0.0149048045, 0.0140940258, 0.0140399747, -0.0136751244, 0.00177695532, 0.0115941269, 0.00745240226, -0.00178540102, 0.0229585338, -0.0286745187, 0.00562815135, -0.00446265796, -0.00573287671, 0.00235463469, 0.0007786848, 0.000967021799, -0.00802670326, 0.0172966, -0.00996581465, 0.000675648451, 0.0100063533, 0.0125535475, -0.00848614424, 0.0125400349, 0.0121549154, 0.014891291, 0.000942529528, 0.0188370775, -0.0192559808, -0.001771888, 0.0150399338, 0.0107225403, 0.0107968617, -3.89817469e-05, 0.00354039785, -0.0361607037, 0.0257016663, -0.00650649425, -0.00983744115, 0.00663486775, 0.0224045012, 0.0146210324, -0.0156209916, -0.00995230116, -0.0250530429, 0.0177560411, -0.00807399862, -0.00146024511, 0.0172695741, 0.000343313848, -0.0166344643, 0.00950637367, 0.004591031, -0.0153912716, 0.016039893, -0.0137629583, -0.0132967606, 0.00770914834, 0.0206478164, 0.00653014192, 0.0176884755, 0.0176749621, -0.015607479, -0.0150939859, -0.015580453, 0.0126143564, -0.00387822208, -0.0132156834, -0.0059592193, 0.00654703332, -0.00482750824, -0.00791184325, -0.0160128679, 0.00408091629, -0.00172036979, 0.0129589364, -0.000226975637, 0.00417550746, -0.0305393096, -0.0310798269, -0.0212964378, -0.0365120396, -0.0223099105, 0.0092023313, 0.00147713639, -0.00170432311, -0.0182560198, 0.0340526812, 0.00822264142, 0.0210667178, 0.00420591142, -0.0337283686, -0.00924287084, 0.0228774566, -0.00573963346, 0.020512687, 0.013229196, -0.034458071, -0.00816183258, 0.00682404917, 0.0240125451, -0.00667540636, 0.00447954889, -0.00134538498, -0.0118306037, -0.00301677012, -0.000625397079, -0.000660446356, 0.00135720882, 0.00248976448, 0.0119319512, 0.0280258972, 0.0165128484, -0.0254719462, -0.00929692201, 0.00966852903, -0.0114589976, 0.0079186, -0.00248300796, -0.0174587555, -0.00376674, 0.0101482393, -0.00584435882, 0.00484777754, 0.0130737973, -0.0196478572, 0.00133609481, -0.00200329768, -0.0011004624, -0.0011139753, 0.0252152, -0.00299143349, 0.00939826947, 0.0109792873, -0.00145348872, 0.0136480983, -0.0121143768, -0.00644568587, -0.00640176889, -0.0035809367, 0.0039626779, -0.0360796265, 0.0105806543, -0.0288637, -0.0118441172, -0.00574976811, -0.00454711402, 0.0172560606, 0.00575990276, 0.0227423254, -0.015607479, -0.00579706347, 0.00822264142, 0.00877667312, 0.000459440926, 0.00244246912, 0.019283006, 0.01420213, -0.0274853781, -0.00158524013, 0.010100944, 0.0136345848, 0.0291609857, -0.00646257726, 0.000631309, -0.0154588362, -0.000117816191, -0.00506736338, 0.0168641843, 0.0140264612, 0.00579706347, -0.026742164, 0.0121616721, -0.0174317285, -0.0213369764, 0.0103779603, -0.0035809367, -0.00180567044, -0.00690512685, -0.0112968413, 0.00490182918, -0.0104320114, -0.00248300796, 0.0190938246, 0.0354310051, 0.000624974782, 0.045160342, 0.0150804725, -0.0112630595, 0.00068451633, 0.00310798269, 0.0084996568, -0.00643555121, -0.012195454, -0.0180533268, -0.0176614504, 0.00383768301, -0.0100941872, 0.0188370775, 0.00415523769, -0.0248368364, 0.000422069133, -0.00808751211, 0.0133305434, 0.0166209508, -0.00776995672, -0.0203910694, 0.0049153422, 0.00144335395, 0.000815423205, -0.0299987905, 0.00233098702, -0.0136616109, -0.0162831265, -0.00354377599, -0.0194181353, -0.00609772699, 0.0217558797, 0.000113382252, -0.00453697937, -1.50437345e-05, 0.0114589976, 0.00549302157, 0.000524894393, 0.015323706, 0.00105823437, 0.00504033733, -0.00768887904, -0.000994892325, 0.00379714416, -0.0211883355, -0.0070064743, 0.000842026842, -0.00669229776, -0.0272691697, 0.0159858409, -0.0161750242, -0.00538154, 0.0156480167, -0.0174047034, -0.00532073155, 0.0183235854, 0.00680715777, 0.0252692513, 0.010702271, -0.0193775967, 0.00250496645, -0.0279988702, 0.0113035981, 0.0100604054, 0.0106414631, -0.0100604054, -0.00178033358, -0.0205937643, 0.00674634939, 0.00414510304, -0.00172881538, 0.00578017207, 0.0163642056, 0.0123643661, 0.00868208241, 0.0144588761, -0.0120468112, 0.000570500619, 0.00934421737, -0.0010709028, 0.0215666983, -0.0149453431, -0.00170770136, 0.00908071455, -0.0176749621, -0.00342722656, -0.0122765321, 0.0028782622, 0.0123981489, 0.0152696548, 0.00634433888, 0.0287826229, 0.00915503595, 0.00933070481, 0.0128305638, -0.00535789225, 0.0143507728, 0.0216072369, 0.0340256542, 0.000543052447, 0.00256070751, -0.0304041784, -0.0219585747, -0.01629664, -0.00781725254, -0.000594992889, -0.00054558611, -0.00872262102, 0.00948610436, -0.0188911296, -0.0194586739, -0.0122562628, 0.000813311781, 0.00164773758, 0.0132900048, 0.0101752654, -0.00393227395, 0.0143507728, 0.00508087594, -0.00308771338, 0.0141345654, -0.01210762, -0.0101549961, 0.00611461839, 0.00999959651, -0.0145264408, -0.00278704986, 0.00774968741, -0.0174317285, -8.49839053e-05, -0.0278367158, -0.0234585125, -0.00425320677, 0.0165804122, -0.0143777989, 0.00277860416, -0.00804021582, 0.00445927959, 0.00219416828, 0.0144318501, -0.00970231183, 0.0210126657, 0.0110265827, 0.012796781, -0.000701829791, -0.00610786164, 0.00295765093, -0.00662473263, 0.0122630186, -0.00359107135, 0.0251881741, 0.00545923924, -0.0102495868, 0.00631055608, 0.0102022914, 0.012769755, -0.0142696947, -0.0109184785, -0.0188776162, 0.0149993952, 0.00822939817, -0.00903341919, 0.0340797082, 0.029755557, 0.00186985708, 0.00655716797, -0.0209721271, -0.00146024511, 0.0078307651, -0.00712133432, 0.0150939859, -0.000276593579, -0.00631731283, -0.00216714223, 0.026512444, -0.0167560801, -0.0162831265, -0.00747267157, -0.0252152, -0.0149588566, -0.0194316488, -0.00787806, -0.0248638615, 0.00690850522, -0.00201849965, -0.0168236457, -0.0175938848, 0.0165668987, -0.00402686466, 0.0143102333, 0.0114725102, 0.0397011, -0.00906720199, -0.0186749231, 0.0165668987, 0.0186073575, 0.0118576298, 0.00148473738, -0.0115941269, 0.0138778184, -0.00701323058, 0.0109049659, -0.00318230409, -0.00716862967, -0.00219585747, -0.000208184167, -0.00880369917, -0.00396943465, 0.0102630993, 0.0213640034, -0.0265529826, -0.0128575899, 0.0267151389, 0.000766016426, 0.0204721466, -0.00184620928, -0.00741186319, 0.0167560801, 0.00473967381, -0.00493561197, 0.0059592193, 0.0213504899, -0.0328635387, -0.030701464, -0.0175668597, 0.00910098385, -0.00049364561, -0.0072564641, 0.0337824225, -0.00486804685, 0.0278367158, 0.0123981489, 0.00889829, 0.0111076599, 0.00261138123, 0.00117731735, 0.00489845127, -0.00254550553, 0.0101414826, -0.00331574469, -0.0107360538, -0.0221747812, 0.0116279097, 0.00456738332, 0.0284853373, -0.010215804, 0.0092158448, -0.00545586087, -0.00524303177, -0.00516195409, -0.00103712035, 0.0296204276, -0.00954015553, 0.000771506049, -0.00922260061, -0.00751996692, -0.00465521775, 0.0227693524, -0.00593219325, -0.00917530525, -0.00152189808, -0.0079186, 0.012195454, 0.013945384, 0.0125738168, 0.00471264776, -0.0058308458, 0.00772266136, -0.0143372593, 0.0198100116, -0.00908747129, -0.0026654331, -0.0133035174, -0.0244179349, 0.0106820017, -0.00523289712, -0.00217896607, 0.0193640832, -0.00181749428, -0.0105941677, 0.0184452012, 0.00332587934, -0.0247827843, 0.00825642422, -0.00224822015, 0.0069321529, 0.000292429089, -0.00973609369, 0.00103543117, -0.0151615506, -0.00720916875, -0.00423631584, -0.00820237212, -0.0155939655, 0.00874289, -0.00605381, 0.00678013219, 0.0108103752, 0.00628690841, -0.00854019634, 0.0105198463, 0.00955366902, -0.00518560177, -0.02398552, 0.0148507524, 0.000817956869, -0.0167020299, -0.00640852517, 0.0217558797, -0.0247017071, 0.000951819704, -0.00287319487, 0.00767536601, 0.00151007425, -0.00218741177, -0.0178641453, 0.0210396927, -0.0015430121, 0.00713484734, 0.0110806338, 9.79822198e-06, -0.00393903, 0.027174579, 0.0261881333, -0.00598624488, 0.0158642251, 0.0141886165, -0.0137291765, -0.00718889944, -0.00271103927, 0.0312690102, 0.00437482353, -0.0047667, -0.00612475304, 0.0167831071, 0.00455049193, -0.00844560564, -0.013168388, 0.0085537089, 0.000730544853, 0.00141548342, -0.00183607463, -0.00679026684, 0.0182560198, 0.00646933354, 0.00844560564, 0.00318230409, -0.0126143564, 0.0110063124, 0.0348094068, -0.00571936416, -0.00385795254, 0.00593219325, 0.016985802, 0.00478696916, 0.00305224187, -0.00275157811, 0.0317284502, 0.0351337194, 0.00233943271, -0.00062961987, -0.0144183375, -0.0168506727, 0.0122359926, 0.0132089267, 0.00264854194, -0.00870235171, 0.00408429466, -0.0374038965, -0.0184452012, -0.00105485611, 0.00738483714, -0.00912801, -0.0152561413, 0.00274482183, 0.00505385036, 0.0104117421, -0.0198640637, -0.0128778592, -0.00691864, 0.0112225199, 0.00669567613, 0.00799292047, -0.00139268034, 0.0296204276, -0.00510790199, -0.0101617519, 0.0065335203, 0.0170398541, 0.00877667312, -0.0109860431, 0.00963474624, 0.00517208874, 0.0159723293, -0.0282691307, -0.0126278689, -0.000686627696, -0.00359444972, 0.0284583122, -0.0227963775, -0.0141345654, 0.00243402342, 0.00356742367, 0.0167560801, 0.00970906764, 0.022553144, 0.00926989596, -0.00281576486, -0.018593844, 0.000275115599, 0.0107968617, -0.00781725254, -0.00862127356, 0.0167020299, -0.00358769321, 0.01210762, 0.0162696149, -0.0234314874, -0.00209113187, -0.000537140528, -0.00243402342, -0.0207694322, 0.0084996568, 0.0111481994, -0.00551329134, 0.00785779115, 0.0069321529, -0.00962799, 0.00110552972, 0.0175668597, 0.00820237212, -0.00904017594, 0.0125130089, 0.00238166074, -0.00297116395, -0.00804021582, 0.00496601593, 0.0126278689, 0.00920908805, -0.00687134452, 0.0128913717, 0.0254178941, -0.0114454841, -0.0160534065, 0.0143777989, 0.0027482, -0.00961447693, 0.0319446586, 0.0370795839, -0.0247017071, 0.0193235446, 0.013945384, -0.00685107522, -0.0100198658, -0.00767536601, -0.0203505307, -0.0130602838, 0.0097766323, 0.0169317499, -0.0240801107, -0.00686796615, 0.000513915089, 0.00874289, 0.00539843086, -0.0112427901, 0.00726322038, 0.0143372593, 0.00952664297, -0.0175668597, -1.74190609e-05, -0.0163371786, 0.0116954744, -0.0188100524, 0.0167966206, 0.00584435882, -0.00606056629, 0.0329716429, -0.00940502621, 0.0154318102, -0.0162561014, -0.0102833686, 0.0129048852, 0.00507074129, 0.0180398133, -0.00259617902, 0.0153642455, -0.00525316643, 0.00810778141, -0.012911641, -0.00395254325, 0.00656730263, 0.00273130881, -0.0145669803, 0.0144723896, -0.00450319657, -0.0137494458, -0.000627508503, 0.027201606, 0.0158777386, -0.0160939451, -0.00966852903, 0.0168506727, -0.0161885358, 0.0181884561, 0.0273097102, 0.0181749426, -0.00288839708, -0.00286981673, 0.0189992338, 0.00812805071, -0.0125603043, 0.00675986242, -0.00447617099, 0.00760104461, -0.00498628523, -0.00486804685, 0.00429374585, 0.0022076813, -0.0016908102, 0.0099185193, -0.0194992144, -0.0115265623, 0.00325831445, -0.0337824225, 4.62396893e-05, 0.0165398736, 0.00266205473, 0.00116127077, 0.00288164057, 0.0334581099, -0.0177830663, 0.0173371378, -0.0254449192, -0.00891180243, -0.00532748783, 0.0169722885, -0.00552004762, 0.028350208, -0.0086618131, -0.00842533633, -0.0255935621, -0.00435117586, 0.00907395873, 0.00496263755, -0.00933070481, -0.00359782786, -0.00950637367, 0.000789241807, 0.00810102466, 0.0271070153, 0.0228639431, -0.000727166596, -0.00326844933, 0.00759428833, 0.0127427289, 0.00304548535, 0.0158372, 0.0122495061, 0.00811453722, -0.0105806543, 0.00899288058, 0.00374647044, -0.00310967187, -0.0108846966, 0.0120603247, -0.0101347268, 0.00613150932, -0.0108036185, 0.00686121, -0.00380390068, 0.0116008837, 8.9404648e-07, -0.00131835905, -0.0130467713, -0.00345425261, -0.02553951, 0.00474980846, 0.0109928, 6.4556094e-05, -0.0111076599, -0.024647655, 0.00490520755, -0.0184992533, -0.00589503255, 0.000146742386, -0.0209315885, 0.00062666391, -0.0125265215, 0.0070064743, 0.00392889557, -0.0069152615, 0.0168641843, 0.0079591386, -0.000836959516, -0.00182762905, 0.0404308029, 0.00877667312, 0.00080613303, 0.00516871037, 0.000135551963, -0.00530384, -0.00885099452, 0.0129724499, -0.00127782009, -0.00557072135, 0.0126346257, -0.00503358059, 0.0393767916, -0.00168405368, -0.00976312, 0.00510114571, -0.0125130089, 0.00143068552, 0.0137224197, -0.0115198055, -0.0143507728, 0.0187424868, 0.00154723495, 0.0294042192, -0.00630042143, -0.00158101728, 0.0110671213, 0.0132967606, -0.00398294767, 0.0141615914, 0.0107360538, 0.00972933695, 0.00863478705, -0.0283772331, 0.0214450806, 0.00581733277, -0.00746591529, -0.00262489403, -0.00783752184, 0.00611124, -0.021431569, -0.00328702969, 0.0152020892, -0.00204721466, -9.88135798e-05, 0.00924287084, -0.0109522613, 0.0181884561, -0.00846587494, 0.00993203185, -0.00356742367, -0.00766185299, -0.00668554101, 0.00337824202, 0.0098644672, 0.00199147384, 0.00433090655, -0.00405726861, -0.00701998733, 0.0181479175, -0.00889829, 0.00413496839, -0.00575314648, -0.015810173, -0.0199721679, 0.0020455257, 0.0128305638, -0.00198640628, 0.0145669803, 0.006155157, -0.0068949922, -0.00172036979, -0.00492547685, -0.0142426686, 0.0194316488, 0.0120468112, -0.00606394466, -0.00906720199, -4.37324e-05, 0.0105130896, -0.000592881523, -0.0171344448, 0.00464170473, 0.0190532859, 0.0127427289, 0.00303028314, 0.00663824566, 0.0214721076, 0.00627677375, 0.00571260741, 0.00185972231, -0.0202829652, 0.00248469715, -0.0205937643, 0.00270766113, 0.00524641, -0.013168388, 0.0205667373, -0.00917530525, 0.0171074178, -0.0266746, 0.00544572622, 0.00132764911, 0.000141569457, 0.00253705983, 0.00500317663, 0.0106482189, 0.0169993136, -0.0125738168, 0.00724295108, -0.0232558195, 0.0284583122, 0.0200802721, -0.0178641453, 0.0091077406, 0.0102968821, 0.0178236049, -0.000500402122, -0.011736013, 0.0021705206, 0.0115873702, -0.00701323058, -0.00438833656, 0.00235463469, -0.0192424674, -0.0219180342, 0.00787806, -0.00504033733, 0.00283096684, -0.0157561209, 0.0228234045, 0.00785779115, 0.0293501671, 0.00555045204, 0.0113373809, -0.000255268416, 0.00709430827, -0.0255259983, 0.0137291765, -0.0125873303, -0.014404824, -0.015580453, -0.00267725694, -0.0092563834, -0.0124386875, 0.0192019287, 0.00540518761, 0.0025032775, -0.00766185299, -0.00414172467, -0.0122292368, 0.0129792066, -0.0033731747, -0.0137089062, 0.0132494653, -0.0084050661, -0.00580044184, -0.0251476336, -0.00130315695, 0.0112157641, 0.00881721172, 0.0131143359, 0.016039893, 0.00241037575, -0.00604367536, 0.00109286129, -0.00424307212, -9.7546741e-05, 0.00774293113, -0.00211646874, 0.00321608642, 0.0106820017, -0.0208234843, 0.00839155354, -0.0143777989, 0.0112292767, -0.00416875072, -0.0152966809, 0.00147375814, 0.0165939257, 0.0117833083, -0.0318095274, -0.0234044623, 0.00648284657, -0.0109455045, -0.0310528018, -0.0145940064, -0.0115400748, 0.00526667945, 0.00206241687, 0.0225396324, 0.0135332383, 0.00570585113, -0.0199856814, -0.012681921, -0.015121012, -0.00610110536, 0.00413159, 0.00178033358, -0.00939826947, 0.000744057819, 0.0127021903, -0.000341624749, 0.00165196043, -0.0237152595, 0.0111144166, 0.00939151272, 0.00221105944, 0.0326743573, -0.0153912716, 0.00995230116, -0.0120603247, 0.00152781, -0.00714160409, -0.0122022107, -0.00879018568, -0.00472616078, 0.00217389874, -0.017701989, -0.0183370989, 0.00637474284, 0.0157966595, 0.00591530185, 0.00754699297, -0.00439509284, 0.000794731488, 0.00521262782, -0.00403699931, 0.0152426288, -0.00381065719, -0.0122697754, 0.0193100329, 0.00108103745, 0.0137629583, 0.00117647287, -0.0256746411, 0.000436215516, -0.0202829652, -0.0185803324, -0.0252422243, -0.015607479, -0.00519573642, 0.0250530429, -0.00806048606, -0.0129454238, 0.0104995761, -0.00117731735, 0.0143237468, 0.0152831674, 0.00823615398, -0.00373971416, -0.00599300163, -0.0180533268, -0.00216545328, -0.00199654116, 0.0137089062, 0.0118373604, -0.0149453431, 0.0272286311, 0.0206343029, -0.0059423279, 0.0119116819, 0.0102022914, 0.0242828038, 0.00215700758, -0.0069152615, 0.00964150298, 0.0422415398, -0.0134116216, -0.00531735318, 0.0170939043, -0.0274718646, -0.00959420763, -0.00883748103, 0.012594087, -0.00715511665, 0.00388835673, 0.0100739179, 0.030728491, -0.00573287671, -0.0052193841, 0.00566869043, -0.00731727248, -0.00224653096, 0.0150399338, -0.00124150398, 0.0059592193, -0.0136480983, 0.00634433888, -0.00839155354, -0.00114437949, -0.00285123638, -0.000736879068, 0.0036552581, 0.0114657534, 0.00251003401, 0.0231071766, 0.0271880925, -0.0208775364, -0.00172205898, 0.0129048852, -0.0190127473, 0.00606732303, -0.000857228937, -0.0103712035, 0.0202289131, 0.0197289344, -0.0122968014, -0.0229585338, 0.0095334, -0.0205937643, -0.000798532, -0.00804021582, 0.00396943465, 0.000303197245, 0.0132427095, 0.0377552323, 0.0140534872, 0.00499979826, 0.00721592503, 0.00685107522, -0.00879694242, -0.00318230409, 0.0181884561, -0.0286474936, -0.00449981866, 0.0129386671, -0.00824291073, 0.00974285, -0.019769473, 0.0159453023, -0.00218403363, -0.00121109979, 0.0197154209, -0.00716862967, 4.2993408e-05, 0.00762807066, 0.0084050661, -0.0346472524, -0.00569233811, 0.00810778141, 0.00389173487, 0.00289008603, 0.00412145536, -0.00924287084, -0.0105333589, -0.000660868594, 0.00112833292, -0.0304582305, -0.019107338, -0.0048410208, 0.0200937837, 0.00136903266, -0.00607745769, -0.0142561821, 0.00576665951, 0.000661290891, -0.00876316056, 0.0165668987, -0.0034187811, -0.00239179539, -0.0231882539, -0.00772941811, -0.034404017, -0.00310967187, -0.0159993544, -0.00751321064, -0.0212423857, -0.008607761, -0.0188776162, 0.0170533657, -0.00324142328, 0.00623961305, 0.0294582713, -0.0158642251, 0.0165263601, -0.0146750836, -0.00580719812, -0.0330797471, -0.00879018568, 0.00159959763, 0.0169317499, -0.0170128271, -0.0173101127, -0.00960096437, -0.00801994652, -0.02025594, -0.00409105141, 0.00673621474, -0.00402010791, -0.0222963989, -0.00791184325, -0.00293569244, -0.0244314466, 0.00851317, -0.00826318, -0.0118778991, 0.00984419789, 0.0143642854, -0.0063578519, 0.0137629583, -0.0177425276, -0.00417212909, -0.0261205677, 0.00591192394, -0.0248098094, -0.0268502682, -0.00533424411, -0.0109860431, 0.00203539082, -0.00697944826, -0.0171344448, -0.00837128423, -0.00657743728, -0.0100468919, -0.0143102333, 0.010817131, -0.00602002768, 0.00676661916, -0.0209045615, -0.0230396111, -0.00941178296, 0.0234179739, -0.00110637431, -0.00366201438, -0.0152696548, 0.0124049047, -0.0155939655, 0.0159182772, 0.0046113003, -0.00599638, -0.0124724703, -0.00594908418, -0.00995230116, 0.0158372, -0.00477683451, -0.00184283103, 0.0119251944, -0.00344242877, -0.00951988623, 0.0195262395, -0.00521600572, 0.00237321504, 0.018134404, 0.036241781, -0.0121751847, -0.00130315695, -0.013715663, 0.0117833083, 0.00121109979, 0.00623285677, 0.0159317907, -0.0055065346, -0.0118711432, 0.0107428096, 0.0111009041, -0.0166614894, 0.00348296762, -0.0152696548, -0.0109928, -0.028836675, -0.0158912502, -0.0142426686, 0.00428023282, -0.0317825, 0.010215804, -0.0161885358, 0.00124994956, 0.002761713, 0.00412821211, 0.0112360334, 0.0103036389, -0.00829020608, 0.013371082, -0.00612813141, -0.0170128271, 0.0345121212, -0.00209282106, 0.0211883355, -0.0036383667, 0.00618218305, -0.00746591529, 0.019769473, 8.64091e-05, 0.00186985708, -0.00417212909, -0.00524303177, 0.000499979826, -0.00946583413, 0.00197796081, -0.00748618459, 0.0105941677, -0.0149723692, -0.0257827435, 0.00664838031, -0.0177695528, -0.00591530185, 0.013830523, 0.00028503919, 0.015148038, 0.0255935621, -0.000240910886, -0.0245530643, -0.0132156834, 0.0194857, -0.0225396324, -0.0058308458, -0.0115400748, -0.0142832082, 0.0190938246, 0.0238233637, -0.0203235038, 0.00212322525, 0.00194586744, -0.00960772, -0.00183100719, -0.00640176889, -0.000660868594, -0.0287015457, 0.0125603043, -0.0018158051, -0.0241071358, -0.0120468112, 0.024647655, 0.0180668384, 0.00638487749, -0.012594087, 0.00581395486, 0.00224146363, -0.0124049047, 0.0197424479, 0.0248503499, 0.0104117421, -0.00310629373, -0.0332148783, 0.0101212133, -0.0181884561, -0.0140805133, -0.0114792669, -0.0169993136, -0.0149588566, -0.00517884502, 0.00501668965, 0.0284042601, -0.00261138123, -0.0136210723, -0.00100924983, 0.015810173, -0.0200127065, -0.0154723488, -0.0213504899, 0.0189316683, 0.00386133068, 0.00557409972, -0.022809891, -0.00374984881, -0.00291711208, -0.015810173, 0.00396943465, -0.00134538498, 0.021661289, 0.00822264142, -0.0182289947, -0.0134048648, 0.0136210723, 0.00197458244, 0.006628111, 0.0101887779, 0.00224146363, 0.00366539275, 0.0150534473, 0.0179857612, 0.0266340617, -0.0123508535, -0.00448968401, 0.00335459434, 0.0105130896, -0.000423969381, -0.0224180147, 0.000496601569, 0.0066078417, 0.0169993136, 0.00901990663, 0.00590854557, 0.015148038, 0.00539505249, 0.00728349, 0.00668554101, 0.0024661168, -0.00445590122, -0.00441198424, 0.00945907831, -0.0182289947, -0.0024661168, 0.0124454442, -0.0052193841, 0.0125738168, 0.0126886778, -0.0157561209, -0.0212153606, -0.00147882546, -0.0135467509, -0.000257168693, 0.028809648, -0.00195093488, -0.000430092448, -0.0314581916, 0.00724970782, 0.00495588128, 0.000896923302, 0.00834425818, -0.00629028678, 0.00132764911, 0.014891291, -0.0110198259, 0.015350732, -0.00901990663, 0.0234314874, 0.00838479679, -0.00997257, -0.00380727882, -0.02002622, -0.0180668384, 0.0158236865, 0.00339851156, -0.00633758213, -0.0117225, -0.00770914834, 0.0109792873, 0.00924962666, 0.00175837509, -0.0069152615, -0.0191343632, -0.0157966595, 0.0059423279, 0.0327284113, 0.00914828, 0.0144588761, -0.0120468112, 0.0175533462, 0.0117022311, 0.0322419442, -0.00231578504, 0.0181884561, -0.0157561209, 0.013229196, 0.00552680437, 0.0258097704, -0.0135940462, -0.00228875899, -0.0138102537, 0.000688316824, 0.00645582052, -0.0114387283, -0.00230227201, 0.0131278485, -0.00122630189, 0.0159858409, 0.014661571, 0.0143777989, -0.0049153422, -0.00677337544, -0.011763039, 0.00741186319, -0.0112900855, 0.0104860635, -0.011506293, -0.00512141502, -0.00838479679, 0.0161074586, -0.020918075, 0.00605718838, -0.0254719462, -0.0194316488, 0.0214721076, -0.00531059643, 0.0111752246, -0.0167020299, -0.00833074469, -0.00071069767]
|
29 Jan, 2021
|
Fabric.js Group cornerStyle Property
29 Jan, 2021
In this article, we are going to see how to set the cornerStyle of a Group of the canvas using Fabric.js. The Group in Fabric.js is movable and can be stretched according to requirements. Further, the Group can be customized when it comes to initial stroke color, height, width, fill color, or stroke width.
To make it possible we are going to use a JavaScript HTML5 canvas library called Fabric.js. After importing the library, we will create a canvas block in the body tag that will contain the Group. After this, we will initialize instances of Canvas and Group provided by Fabric.js and set the style of controlling corners of the canvas Group using the cornerStyle property.
Syntax:
fabric.Group([canvas1, canvas2], {
cornerStyle :String
});
Parameters: This property accepts a single parameter as mentioned above and described below:
cornerStyle: It specifies the style of controlling corners of the object. It contains a string value.
Below example illustrate the use of Fabric.js Group cornerStyle property in JavaScript:
Example:
HTML
<!DOCTYPE html>
<html>
<head>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;width: 400px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Group cornerStyle Property
</b>
</div>
<div style="text-align: center;">
<canvas id="canvas" width="500" height="300"
style="border:1px solid green;">
</canvas>
</div>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a circle instance
var circle = new fabric.Circle({
radius: 100,
fill: 'lightgreen',
scaleY: 0.6,
originX: 'center',
originY: 'center'
});
// Initiate a text instance
var text = new fabric.Text('GeeksforGeeks', {
fontSize: 25,
originX: 'center',
originY: 'center'
});
// Initiate a Group instance
var group = new fabric.Group([ circle, text ], {
stroke: 'red',
cornerStyle: "circle"
});
// Render the Group in canvas
canvas.add(group);
// Center the Group in canvas
canvas.centerObject(group);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js Group cornerStyle Property
|
https://www.geeksforgeeks.org/fabric-js-group-cornerstyle-property?ref=asr4
|
CSS
|
Fabric.js Group cornerStyle Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, Fabric.js Group cornerStyle Property, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0215413105, 0.0281114094, -0.0112553341, 0.0358124264, 0.0270343442, 0.0392321125, -0.0215682369, 0.0258361083, -0.00921564177, -0.0342506841, 0.0242339745, -0.0113697732, 0.0182562601, -0.0370510519, 0.000829256314, 0.0211104844, -0.0350046307, 0.00153986714, -0.0259572789, -0.0243416801, 0.0224702787, -0.0519145578, -0.0394205973, 0.0184312835, -0.00472899061, 0.0393936709, 0.0262130816, 0.0235608071, -0.046259962, 0.0152539406, 0.00587673858, -0.0202084407, -0.0191852301, -0.0259303525, -0.0212047268, -0.0131132724, -0.00519347517, 0.0644085184, -0.0298885684, -0.00544591248, 0.0017653777, -0.00333385426, 0.00398514234, 0.0391244031, 0.0124401068, 0.000534325489, -0.0106696803, 0.0207604375, -0.0186466966, -0.0469600558, 0.00435201777, -0.00414670212, 0.0325543061, 0.00778853, -0.0134161972, 0.0149173569, 0.000886896159, 0.0344391689, -0.0076606283, -0.0105148517, -0.00227866671, -0.0863806531, -0.0480909757, -0.0234396383, -0.0341429785, 0.0212585814, -0.00399187393, 0.0287037957, -0.0063647842, -0.00785584655, -0.00224669138, 0.00411641, 0.0334428847, 0.0111947497, -0.00888579059, -0.0180004574, 0.0433518849, 0.0308040734, -0.0543110296, 0.0359201357, -0.00664414791, -0.0140018519, -0.0177177284, 0.0143115083, -0.00140355097, -0.0281114094, 0.0197776146, -0.0406592228, 0.000864176778, 0.0178792868, -0.00658692885, 0.0191044491, 0.0314503126, -0.0325812325, -0.0156174498, 0.00623015082, 0.0137258535, -0.018538991, -0.0157251563, -0.0291076954, -0.00440587103, 0.0413054638, 0.0174349975, -0.0308579262, 0.00539879082, -0.0273978543, 0.0344122425, 0.00785584655, 0.0203296114, -0.0121775717, 0.0345199481, -0.0269266386, 0.0276267305, 0.0498681329, -0.0470946878, 0.0405245908, -0.0161829088, -0.0408207811, 0.0332005434, 0.0166675895, 0.0115447957, -0.013335417, -0.00578249525, 0.0257014763, -0.0342237577, 0.0423017479, -0.0217297971, 0.0206796583, 0.0220529158, 0.0129449815, -0.0480640493, -0.017125342, 0.0213932134, -0.0124064479, 0.0316926539, 0.00689995103, -0.0027633463, 0.00673165964, -0.0076404335, -0.0194275696, 0.00356441364, -0.00987534411, 0.0159809589, 0.0317734331, -0.0168291479, -0.0105552422, 0.0383435339, 0.0194141064, -0.0224837419, 0.0325273797, -0.0467984974, -0.00250249449, 0.0166945159, -0.00881847367, 0.0419517, -0.0292692557, -0.029430816, 0.00528435269, 0.0262938626, -0.0250283089, 0.0487102866, 0.0158463269, -0.0027818582, 0.0314233862, -0.0315580182, 0.00625371141, 0.0150923803, -0.0102455858, -0.0685013682, 0.0190102067, 0.0040188008, 0.0123862531, 0.0215682369, 0.00881847367, -0.031477239, -0.028865356, -0.00751926377, -0.0374549516, 0.0267516151, -0.0305886604, -0.0507567115, 0.0119958175, 0.0272901468, 0.0574614443, -0.00407265406, 0.00717594894, 0.0325543061, 0.00781545695, 0.00821262412, -0.0106427539, 0.0106023634, 0.0273440015, 0.0601541102, 0.00782218855, 0.0142576545, -0.0159001797, 0.0291076954, 0.0214874577, -0.0308040734, -0.00994939264, 0.0110062631, -0.0265092757, 0.0142845809, -0.0463407449, 0.0372933932, -0.00359134027, -0.0375357345, -0.0548764877, 0.0246782638, -0.0193333253, -0.00192525459, 0.00410967786, 0.018538991, 0.00981476, 0.00228539831, -0.0143518979, -0.00545937568, -0.0274382439, 4.77001195e-05, -0.018108163, 0.00227025221, 0.0239647068, -0.00207839976, -0.0182697233, -0.0482794605, 0.0237358306, -0.00161307387, 0.0294038877, -0.0254995264, -0.0605310835, -0.011706356, 0.00856267102, -0.0257149395, 0.00541225402, 0.0405784436, 0.00467177154, -0.0226991549, -0.00322109903, 0.0198718589, 0.013369076, 0.00715575414, 0.00879154727, -0.0551996082, -0.0148904305, 0.0287576485, 0.0508644171, 0.00661385525, 0.00894637499, -0.0149577474, -0.0192390829, -0.025607232, -0.015563597, 0.00706151081, 0.00542908348, -0.0182024073, -0.00181081635, -0.0334428847, -0.0302386135, 0.0580538325, 0.0417901427, 0.0355970152, 0.0439712, -0.0266035181, 0.0206123404, -0.00661385525, -0.0200199559, 0.00147086754, -0.0234261751, -0.00215917965, -0.0164387114, -0.00584308058, -0.0564920865, 0.016909929, -0.0249609929, -0.0465561561, 0.0434595942, -0.0278421436, -0.0163175426, 0.0375357345, 0.0129584447, -0.0101715373, 0.0140691679, 0.0327697173, 0.034735363, -0.0416016541, -0.0157655459, 0.0140153151, 0.0135037089, -0.0250687, -0.0189025, -0.012520887, -0.0281114094, 0.0246109478, -0.00328336679, 0.017044561, -0.0224702787, 0.026953565, -0.0245705564, -0.0183908939, -0.0168830026, -0.00355768204, -0.0527223572, -0.0183505043, -0.039043624, 0.018889036, 0.0305078812, 0.0218240395, 0.00214571645, -0.00508913444, 0.0104340725, 0.01606174, -0.0241128039, -0.0325543061, -0.00429479871, -0.00489391619, -0.00983495452, 0.0626313612, 0.0181889441, 0.00659366045, 0.00903388672, -0.0315310918, -0.0175023153, 0.00902042352, 0.0366740823, 0.0400399119, 0.00974744279, -0.0337390788, -0.0275998041, -0.00291480846, 0.0178119708, -0.0249475297, 0.00417362899, -9.73461065e-05, 0.0200468823, 0.0137325851, 0.0172734372, -0.023695441, -0.0154289631, -0.0232242253, 0.0104879253, 0.014432678, 0.0185928438, -0.025539916, -0.00525742583, 0.0583769493, -0.0367548615, -0.004863624, -0.0104206093, 0.0494911596, 0.00350046298, 0.000953371287, 0.0269939546, -0.00221303315, -0.0350854099, 0.00039927155, -0.0235338807, 0.0211643372, -0.0310194865, -0.0289192088, -0.00234093447, 0.0282729696, -0.00699419435, 0.018606307, 0.00210027769, 0.00787604135, -0.0181889441, -0.0226318389, 0.0174888521, -0.00605512783, 0.00207503396, -0.0246378742, -0.0390705504, -0.0198853221, -0.0239916351, -0.0214201398, -0.0193198621, 0.0163983218, -0.0275055598, -0.0400668383, -0.0027818582, -0.0190640595, 0.0266439077, 0.00252773822, 0.0119756218, 0.0345468745, 0.0525877252, -0.0147557976, -0.00176032889, 0.0313695334, -0.00210700929, -0.028084483, 0.0445097312, 0.0315310918, 0.0105552422, -0.00492084306, -0.0125747398, -0.00803087, -0.0164925661, 0.00231400784, -0.0294038877, -0.00463811355, 1.83674383e-05, -0.0238300748, -0.0424094535, -0.0106023634, -0.0388012864, -0.022281792, 0.00794335827, 0.0183235761, -0.00937720202, 0.0211912636, -0.00387407, 0.0141095584, -0.0248263609, 0.0562766716, 0.0285691619, 0.0300770551, 0.0652163178, 0.0113024563, 0.00341800018, 0.0814800039, -0.020585414, -0.0443212464, 0.00463811355, -0.0216086265, -0.0204777084, -0.0156443771, -0.0167752951, 0.00156511087, 0.0040087034, -0.0822878, 0.012554545, -0.00904061832, -0.0344391689, 0.0227395464, 0.0105148517, 0.0177715812, 0.0218375027, 0.0293500349, 0.0334428847, -0.00508240284, -0.00167618319, 0.01938718, -0.0242474377, -0.0291076954, 0.0317465067, -0.0391782597, -0.0140960952, 0.0193333253, 0.0314503126, -0.0240050983, -0.000355726137, -0.0641931072, -0.00447655329, 0.00799721107, -0.012271815, 0.0417362899, 0.0122314254, 0.021083558, 0.00630083308, -0.0120900599, -0.0343853161, -0.0178792868, 0.030561734, 0.0164252482, 0.00119823543, -0.0145807741, -0.0182697233, 0.00840111077, 0.00575556885, -0.0059911767, 0.020370001, 0.0117198192, 0.0244493876, -0.00136063667, 0.000391067326, 0.0116861612, -0.0184312835, 0.00262198132, -0.0203296114, 0.0268323943, 0.00767409196, -0.00782892, 0.0249475297, -0.0175157785, -0.0353546739, 0.0229280312, -0.0222010128, -0.0224837419, 0.00799047947, 0.0347084366, 0.0380742662, -0.0131603945, 0.0125141544, 0.00710863248, 0.0348430686, 0.0107437288, -0.0348161422, 0.044563584, -0.0148635041, 0.000604166416, -0.00816550292, -0.00977436919, 0.0317195803, 0.0402014703, 0.000870908436, -0.0325004533, 0.0193333253, -0.0260784496, 0.0210431665, -0.0434865206, 0.0146346278, -0.03395449, -0.0122246938, -0.00706151081, -0.0376972929, 0.00326822069, 0.0122516202, -0.0198987853, -0.0167618319, 0.00251595769, -0.0175157785, -0.00858286582, -0.020450782, 0.0174888521, 0.0547418557, 0.0179466046, -0.00656673359, 0.0133556128, 0.0108514354, 0.00381011935, -0.0118409889, 0.0168964658, 0.0204777084, 0.0243955329, -0.0286230166, -0.0328774229, -0.0383973867, 0.00112923584, -0.0185120627, -0.0497873537, -0.0103465607, -0.0516452901, 0.00295014982, 0.0120631335, 0.0458829924, -0.00303597841, 0.0154828168, -0.017259974, 0.00671146438, -0.0356239416, 0.00520357257, -0.012487228, -0.00798374787, 0.0272632204, -0.0105889, 0.00599790877, -0.00333048846, -0.0259303525, -0.0031975382, 0.0440250523, -0.00567815453, 0.0226991549, 0.0180947, 0.00287778443, -0.039824497, -0.0113563091, 0.0198314693, -0.00979456492, 0.0185659174, 0.0300232, -0.0416555069, -0.000905408175, 0.0123862531, 0.0310464129, -0.0140960952, 0.0368625671, -0.0398514234, 0.0160752032, 0.0364048146, -0.00890598539, -0.0192660093, 0.0119285006, 0.011639039, -0.00664414791, 0.00426450605, -0.00605176203, -0.0256610867, -0.0680166855, -0.0313156806, 0.015280867, 0.0261592288, -0.0185255259, -0.000320174557, -0.0251090899, 0.0311810467, 0.0333621055, -0.0044563585, 0.0236550514, -0.0269266386, 0.030831, 0.0129584447, 0.0166945159, 0.0128103476, -0.0167349055, -0.00950510334, 0.0329312794, -0.00405919086, 0.0215547737, 0.00332207396, 0.0044731875, -0.00224332558, 0.0239512436, -0.0245840196, -0.0115313325, -0.00304102711, 0.027020881, 0.0233050045, -0.0240320247, -0.0127968844, 0.0261323024, -0.0250821635, 0.0416555069, 0.0184043571, 0.0176908, -0.0110601168, 0.00702785235, -0.013268101, 0.010225391, -0.0213258974, -0.0273574647, -0.00178220682, -0.0216220897, 0.0177311916, 0.0020228636, 0.00209691189, -0.0036048037, 0.0164521765, -0.00614937069, 0.0199526381, -0.0134700509, 0.0072096074, 0.0103398291, 0.0250821635, -0.00619649235, 0.00547620514, -0.0256880131, 0.00788950454, -0.00674512284, -0.00269098091, -0.00311507541, -0.00509923184, -0.0136450734, 0.0147288712, -0.0204777084, 0.0217971131, -0.0213124342, 0.0508105643, 0.0114303576, -1.75259811e-05, -0.00685619516, -0.0210700948, 0.0110870432, 0.00192188879, -0.0215547737, 0.0161425192, 0.0128642013, 0.0212720446, -0.00294173509, 0.00461791828, -0.0255668424, -0.00260851812, 0.000981980818, 0.00949837174, 0.00322614773, -0.00754619, -0.0108850934, 0.0251225531, 0.0306425132, -0.00195049832, -0.00615273695, -0.0326350853, 0.00686965836, 0.0216086265, -0.00428133551, -0.00539879082, -0.025324503, 0.0127766896, 0.00861652382, 0.00395485, 0.0211912636, 0.014648091, 0.0122920098, 0.00856940262, 0.0084684277, -0.0202488322, 0.0100840256, -0.0109793367, -0.00131772237, 0.00652971, -0.016196372, -0.00349036534, -0.00322783063, 0.0253783558, -0.0273978543, 0.0550111197, -0.0149712106, 0.00896657072, -0.0206527319, -0.0036014379, 0.0102186594, 0.0344660953, -0.00900022872, 0.0212855078, -0.00653644139, -0.00643210066, 0.00337929302, -0.00943778642, 0.00189664506, 0.00672492757, 0.00413323892, 0.00182932848, 0.0105956318, -0.0368894935, 0.0130796144, 0.000472057611, 0.00249744556, -0.0208816081, -0.00289461366, -0.0028508578, -0.000281677872, -0.024408998, -0.00623015082, -0.00814530812, -0.0382358246, 0.0153347198, 0.0173811447, -0.00149695273, -0.0169503186, 0.00359134027, -0.00127733243, -0.0261996184, -0.00567142293, -0.00182091387, -0.00751253171, -0.0266977604, -0.031342607, -0.00215749675, 0.0278152172, 0.024624411, -0.0136046838, -0.0245167036, 0.0349507742, -0.00344492681, 0.0232646149, -0.0174619239, -0.0107437288, 0.0312618278, -0.00526752369, 0.0332005434, 0.000658861187, 0.0292692557, -0.042732574, 0.0384512395, 0.0255264528, 0.0188082568, -0.0202757586, -0.0197102986, 0.012204499, 0.00599790877, 0.00856940262, -0.0147019438, -0.00767409196, 0.0032042698, -0.0063715158, 0.0314503126, 0.0104946569, -0.0211239476, -0.00879154727, 0.00939739682, -0.00351729197, 0.0232915413, 0.0406592228, 0.0216894075, 0.0170714892, -0.0147288712, 0.0192256197, -0.0439173467, -0.00507567124, 0.0232780781, -0.00369568099, 0.00450684596, 0.00155669625, 0.0113159195, 0.00608542, -0.0104340725, -0.0341429785, 0.00303597841, -0.0147288712, -0.0395821556, -0.0118005993, -0.0164252482, 0.0108177764, -0.017758118, 0.034089122, -0.00655327039, -0.0123122055, -0.0122852782, -0.0265227389, 0.013120004, -0.0197237618, -0.00178893853, -0.0195622016, 0.00177547522, 0.00107622403, -0.00418036059, 0.0288384296, 0.0103667555, 0.00735097192, 0.0154828168, -0.00449338276, -0.0154424263, 0.0067855129, -0.0120765967, -0.0515645109, 0.0516452901, 0.0250417739, -0.00862325542, 0.00307131954, -0.0121169873, -0.00749233691, -0.0040423614, -0.0499489121, 0.0374549516, -0.00195723, -0.000213940555, 0.0186870862, 0.0399860553, 0.0110399211, 0.0277613644, -0.00760004343, 0.0331466906, 0.00830686744, -0.0226453021, -0.00105013885, 0.0118544521, 0.0157520827, 0.0732943043, 0.0207065847, -0.0174484607, 0.00079770165, -0.00876462087, -0.00609551743, 0.0344391689, 0.0342506841, 0.0150250634, -0.0212855078, 0.0160886664, -0.011389968, -0.030777147, -0.000899517967, 0.00612244429, 0.00321605033, 0.0269804914, 0.0337660052, -0.0268997103, 0.000737537455, 0.00837418437, -0.0198718589, 0.0233723223, -0.0140691679, -0.0092493, 0.0141768744, 0.036566373, 0.00829340424, -0.0106764119, -0.0119083058, -0.00109557761, -0.0278421436, -0.0183101129, 0.0113091879, -0.0369972, -0.0428133532, 0.00150873314, -0.0040457272, 0.00606522523, -0.00385387498, -0.0231972989, 0.00641527167, -0.0489526279, -0.0108783618, -0.017758118, 0.00937720202, -0.0382089, 0.0214066766, 0.0613927357, 0.00927622709, -0.00428133551, -0.00588010438, 0.0271555148, 0.00262534712, -0.0109928, 0.012588203, -0.0220259894, 0.0383435339, -0.023628125, 0.0276536569, 0.0209219977, -0.00647922233, 0.0270747337, 0.0217836499, 0.00536849862, 0.00616956595, -0.00500835478, 0.0382089, 0.0161425192, -0.01245357, 0.0335505903, 0.0166810527, 0.0145134581, -0.0105956318, -0.0172061212, -0.00399187393, 0.0278959963, -0.0260515213, -0.00641527167, -0.033819858, -0.0155905234, -0.0208546817, 0.00466840575, 0.00997631904, 0.0258495715, 0.0266169813, -0.00154491584, 0.0238704644, -0.0131334672, -0.00832033064, 0.0117332824, -0.0310733393, -0.0181754809, 0.0298347138, -0.0120765967, 0.0129719079, -0.0141230216, -0.0213932134, -0.0458560623, -0.00436548097, 0.00860979222, -0.00540215662, 0.0189025, -0.0310733393, 0.0141364848, 0.028999988, -0.00317566027, -0.0152539406, 0.0144192148, -0.018889036, 0.0160213485, 0.00735097192, 0.0203430746, 0.0176773369, -0.0106023634, -0.00255129882, 0.0161694456, 0.0343314633, -0.014149948, -0.0134161972, 0.0146077005, 0.0309925601, 0.00145908713, 0.0132815642, 0.00328000099, -0.00172330486, -0.0048501608, -0.017044561, 0.0156982299, -0.00624361401, -0.0105687054, -0.0163579322, -0.0120227439, 0.0309656337, 0.0128911277, 0.0147288712, -0.0115649905, 0.0358932093, 0.017044561, 0.013369076, 0.0166541263, -0.0235473439, 0.0205450244, -0.00422075065, -0.0156847667, -0.0275728777, 0.00693360902, 0.00365529116, 0.00192525459, 0.0240724143, 0.0154693536, -0.0441058315, 0.00140270952, -0.00941086, -0.00613590749, -0.00880501047, -0.0267112255, -0.00133118569, 0.023062665, -0.00695380429, 0.0106696803, 0.00424767705, 0.0397167914, -0.062038973, 0.00706824241, 0.0124603016, -0.00457416242, 0.00961281, 0.0174753871, 0.000194271488, -0.00171825604, -0.0129315173, 0.0304001737, -0.0103734871, 0.0109591419, -0.00330692763, 0.0115044061, -0.0104206093, 0.0068057077, -0.0177311916, 0.00815877132, 0.00589356804, -0.0192390829, -0.0113361143, 0.0148365777, -0.0152539406, -0.0272766836, 0.0106494855, 0.00927622709, -0.0323658176, -0.0308579262, -0.018740939, -0.0238704644, -0.0152270133, 0.023776222, 0.0143788243, 0.0023560808, -0.0195622016, 0.00105013885, -0.019454496, -0.00226856931, -0.0130728828, -0.0103465607, -0.00536176655, 0.0163983218, -0.00620659, 0.00146666029, 0.0174484607, -0.00085996947, -0.0355970152, -0.0132209789, 0.00905408151, 0.0126016662, -0.00851554889, 0.00958588347, -0.0108447038, -0.0541763939, -0.00853574462, 0.0201007351, -0.000401795929, -8.29624423e-06, 0.0116592338, 0.00792316347, -0.0154558904, 0.0188486464, 0.00716921734, 0.00394475227, 0.00854920782, -0.0123593267, 0.00749906851, 0.00891944859, -0.00890598539, -0.0168830026, 0.0242743641, -0.0107773868, 0.0299693476, -0.00528098689, 0.000997968484, -0.00867037755, 0.0249475297, -0.0181485545, -0.011955427, -0.0278421436, -0.0233723223, 0.00140859978, 0.00330356183, -0.0183235761, -0.00132108817, -0.0250148457, -0.0113832364, 0.0505682267, 0.00575893465, -0.0108447038, -0.033038985, -0.00787604135, -0.0433788151, 0.00963300467, 0.037805, -0.00831359904, -0.0306694396, 0.022847252, -2.87147341e-05, 0.0063984422, 0.00431835931, 0.0133960024, -0.0193333253, 0.00174686557, 0.00283066276, 0.0309925601, -0.0113697732, -0.0124468384, 0.0103129018, -0.0109591419, -0.0270881969, 0.00621668762, -0.0167618319, 0.00904735, -0.0206392687, -0.00140186807, 0.0076269703, -0.00504537858, -0.0234934911, 0.0318003595, -0.00529781589, 0.00602146937, 0.00865691435, 0.00448328536, -0.00535166916, -0.000629410148, 0.00412314152, -0.00731058232, 0.00745194685, 0.0262938626, -0.0201007351, 0.0156309139, 0.0288384296, -0.0215278473, 2.21014052e-05, -0.006384979, -0.0230492018, -0.0167214423, 0.00573200779, -0.0286230166, -0.0215143841, 0.0110264579, -0.00669800118, -0.00854247622, -0.0175023153, 0.0173272919, -0.0369164199, -0.0245840196, -0.00669126958, -0.0278690699, 0.00539205922, 0.00587000698, -0.00159119605, -0.0528300628, 0.0420055538, -0.0129449815, 0.00564449653, -0.014715408, 0.024408998, 0.037805, 0.00732404552, -0.0306155868, 0.00048678313, -0.0119083058, 0.0131940525, 0.000402427017, -0.0166271981, 0.00634122314, -0.00770101836, -0.0311271939, 0.011672697, -0.00321436743, 0.0202757586, -0.0116457706, -0.0116861612, 0.00406592246, 0.0397706442, -0.0281383358, 0.0153077934, -0.0374011, 0.0256476216, 0.00943778642, -0.0173407551, -0.000822945382, -0.00508240284, -0.0109658735, -0.00316219707, -0.0414131694, 0.0258226451, 0.0266169813, 0.0131267356, -0.00794335827, -0.0116457706, 0.0254726, -0.00738463039, 0.00702785235, 0.0148904305, -0.0165598821, 0.0129449815, -0.0106966067, 0.0216490161, -0.00388080161, 0.0181889441, 0.00718268054, -0.00990227144, 0.00159035448, -0.0241128039, -0.00562766707, -0.00660712365, 0.0265092757, 0.0233184677, -0.00311339251, 0.0128574697, -0.023062665, 0.00906754564, 0.0146750174, -0.0197776146, -0.00949837174, 0.0139210718, 0.00295351562, 0.00978783239, -0.0130392248, 0.0229818858, -0.00703458395, -0.000128111889, 0.00299053965, 0.0132142473, 0.00114606507, -0.0115246009, -0.0195083488, -0.0159944221, 0.0159405693, -0.0139614614, -0.00144898973, 0.0137258535, -0.0024419094, 0.00645902706, 0.000330692768, -0.0233184677, 0.0199930277, -0.000115279669, 0.0164656397, 0.024408998, 0.019669909, 0.0196833722, 0.0318272859, 0.0171118788, 0.00777506642, 0.0212855078, 0.00310329511, 0.00117046724, 0.0166271981, 0.0161155928, -0.0237089042, -0.0123324, -0.00135558797, 0.00854247622, 0.0067888787, -0.00120749138, -0.00868384074, -0.0132344421, 0.0107773868, 0.0385589451, -0.00980129652, -0.0261457656, 0.00368221779, 0.011888111, -0.00127901533, 0.0288922824, -0.0118746469, 0.00127312506, -0.030561734, -0.0146615542, 0.004049093, -0.00659702625, -0.00580605632, 0.00866364595, -0.00166187843, 0.0129045909, -0.0028441262, 0.0136450734, 0.0153347198, -0.00779526168, -0.0234396383, -0.0235204175, -0.00801067427, -0.0250821635, -0.00152219646, 0.0028458091, -0.00550313154, 0.00817223452, -0.0068090735, 0.0137123903, -0.0208142903, -0.00109810196, 0.0382358246, -0.0108312396, 0.0239647068, -0.00821262412, 0.00429816451, 0.0208008271, 0.0202084407, -0.0129517131, 0.013651805, -0.00241498277, 0.0185793806, 0.00917525217, -0.00647922233, 0.00858286582, 0.0146211646, 0.00582625112, 0.0135777574, -0.00666097691, 0.000928969, 0.00263039581, 0.0214201398, 0.0198987853, -0.0166406613, 0.00757984864, 0.0308848526, 0.0128843961, 0.00770101836, -0.016977245, 0.00366538856, -0.0270612705, -0.000928127556, 0.0125074228, 0.0059945425, 0.0257014763, 0.0162098352, -0.00414670212, -0.024624411, -0.000113281203, 0.0229414962, -0.00706824241, -0.00823955145, 0.00700092595, 0.0135104405, -0.00322278193, 0.0014220631, -0.013867218, -0.00356441364, 0.0335236639, -0.000668117194, -0.0148635041, 0.0115447957, -0.00609888323, -0.0154155, 0.0163713954, -0.00112418714, -0.0139076086, -0.01606174, 0.000473319815, -0.0277613644, 0.00781545695, 0.00701438915, -0.0142711177, -0.038128119, 0.0210027769, 0.0147961872, 0.00909447204, 0.0148231145, 0.00494440366, 0.0161829088, -0.00262703, -0.00995612424, -0.00283402856, -0.0240050983, -0.0500027649, 0.0261188392, -0.00926276296, -0.0120025491, 0.00892618, -0.0258091819, 0.00825974625, -0.0111274328, -0.000867542636, 0.00715575414, 0.00727019226, 0.0113697732, -0.00589020178, -0.0320696272, 0.0166406613, 0.00780199328, -0.00522713363, 0.000664751395, 0.00393128907, -0.0135508301, -0.00155669625, -0.0112284077, -0.0186601598, -0.014432678, -0.0164925661, 0.00434865197, 0.00731058232, 0.035516236, -0.028299896, -0.00585990958, -0.00305449055, -0.00253278692, -0.0335236639, -0.0131267356, -0.0253110398, 0.00945125, -0.000830097764, 0.00790296774, 0.00707497401, -0.0206796583, -0.0316657275, 0.0152674038, -0.0372664668, -0.00187476713, -0.0114640156, 0.00133623439, 0.00565795973, 0.000824628281, 0.008064528, 0.00411641, 0.00566805713, -0.0272093676, -0.0110062631, 0.0270074178, 0.0203296114, 0.00123441801, 0.00107538258, -0.0023543979, -0.00109389471, -0.0270343442, 0.0405784436, -0.0188351832, -0.00253951852, 0.00501172058, 0.0189294256, -0.0124401068, -0.0230895914, -0.00942432322, -0.00248061656, 0.0166945159, -0.0285960902, -0.0266035181, -0.00866364595, 0.00623351661, 0.0271824412, 0.00468523474, 0.00434528617, 0.0153347198, 0.0119621586, 0.0258226451, -0.00382021675, 0.00577912945, 0.0147557976, -0.00650278293, -0.00144141656, -0.00174181687, 0.00685619516, -0.00344324391, 0.0180543102, -0.0143653611, -0.0121641085, 0.0278421436, 0.00470206421, 0.0143249715, 0.0379665606, 0.026240008, 0.0067989761, 0.0308848526, 0.00135895377, -0.0351123363, -0.00696053589, -0.0214201398, -0.0148231145, -0.00191179127, -0.0185659174, -0.0165329557, 0.0170580242, 0.0104946569, 0.0376703665, 0.022779936, -0.0111745549, 0.00378319272, 0.0286499429, 0.0284345299, -0.00298717385, -0.0213797502, 0.0251764059, -0.0295385215, -0.00158867158, 0.0337660052, -0.00348363374, 0.0327966437, 0.00328504969, 0.051995337, 0.00173171936, -0.00507567124, -0.0129719079, -0.00755292177, -0.00291817426, -0.0084482329, -0.00914832484, -0.0218105763, -0.0139749246, -0.0228741784, 0.0211104844, 0.00514635351, 0.0332813226, 0.00858959742, -0.0122112306, -0.00703458395, -0.0139210718, 0.0040524588, 0.00628400408, -0.0166541263, 0.00526079163, 0.0115717221, -0.0106764119, -0.0116592338, 0.0113293827, -0.00288619893, -0.0160213485, -0.0233723223, -0.0157386195, 0.0186466966, -0.0175696313, -0.0250956267, -0.00863671862, -0.0109726051, 0.0125478134, -0.00782218855, 0.00571181299, 0.0104071451, -0.00332712266, -0.00191010837, -0.0200334191, 0.022281792, 0.0031857579, -0.0159809589, -0.00705477921, 0.0116794296, -0.00138167315, 0.0180543102, 0.0282729696, 0.0227530096, 0.00269098091, -0.0231838357, -0.00342473178, -0.00440587103, 0.00118897937, -0.00377982669, 0.00405919086, 0.0101109529, 0.0166541263, 0.00158783013, 0.0132411737, -0.00472899061, -0.000730385073, 0.0123256687, -0.00850881729, 0.00893291179, -0.044563584, -0.00992919784, -0.00894637499, 0.0260245949, 0.00478957547, -0.00928969, 0.0023476663, -0.00794335827, -0.00406255666, 0.0131873209, 0.00961954147, -0.00304607581, -0.00258664018, -0.000544422946, 0.0551457554, 0.00383368, 0.0139749246, 0.00480640493, 0.0145134581, 0.0184986, 0.00837418437, 0.0110399211, 0.000490990409, 0.0137460483, 0.00625034561, 0.0080443332, 0.00459435768, -0.0250821635, -0.00669463538, 0.0284076035, 0.00974744279, -0.00926949549, -0.00108379719, -0.007249997, 0.0141903386, -0.0101378793, 0.00669800118, -0.00838764757, 0.0218375027, 0.0209354609, -0.0123593267, -0.00142627035, 0.0142980451, 0.00865691435, 0.00730385026, 0.000756891, -0.0084616961, -0.00453377282, 0.0212720446, 0.0135440985, -0.0234531015, 0.0126083978, -0.00938393362, -0.00495786732, -0.0148635041, 0.00440250523, 0.00743175205, -0.00553679, -0.00156847667, -0.000291565, 0.00345334131, -0.00868384074, -0.00548630254, 0.00282729696, -0.00221471605, 0.0148365777, -0.00559064327, 0.0300770551, 0.0201007351, -0.00102405366, 0.0104879253, -0.00824628305, 0.00973398, 0.0242070481, 0.0177985076, 0.00541898562, 0.00520693837, -0.0023459834, -0.00463474775, 0.0130324923, -0.00978110079, -0.0194275696, 0.000219410023, 0.0130930776, 0.0137056587, -0.0150385275, 0.00586327538, -0.0184178203, 0.00891271699, -0.00458762608, -0.00225510588, 0.0243551433, -0.00258327438, -0.00289629656, 0.00224164268, 0.00266742, 0.00838091597, 0.0109456787, -0.00979456492, -0.00871749874, -0.000372976, 0.0183235761, 0.00704131555, 0.0205988772, 0.00524732843, -0.00406928826, 0.000585654343, -0.00220966712, -0.000153460802, -0.0103802187, -0.0173542183, -0.0120564019, 0.010609095, 0.0134363919, -0.00745194685, -0.00507230544, 0.00828667264, -0.00613927329, 0.00985514931, 0.00573874, 0.00728365546, -0.0248936769, -0.0169233922, -0.0174619239, -0.0350046307, -0.0211239476, 0.0017636948, 0.00366202276, -0.0118342573, -0.0136450734, 0.0302386135, -0.00450011436, 0.0117938677, -0.00626044348, -0.0191448387, -0.0155366696, 0.0108110448, -0.00237122714, 0.0269131735, 0.00439913943, -0.0390974768, -0.00823955145, 0.00636815, 0.0286230166, -0.0048568924, 0.00190842547, -0.00366202276, 0.00508240284, 0.00571181299, -0.00135390495, 0.0209489241, -0.0072298022, 0.00695380429, 0.0154828168, 0.0185255259, 0.0259303525, -0.029215401, -0.00205483893, 0.0114505524, -0.00313863624, 0.0133960024, 0.00449674856, -0.00755965337, 0.00740482518, 0.0142307281, -0.00664414791, 0.0130594196, 0.0120833283, -0.0111543601, 0.0159809589, -1.86040979e-05, 0.00429816451, -0.0159405693, 0.0226318389, -0.00105602911, 0.0199795645, 0.00422075065, 0.016277153, 0.00137578289, -0.00731058232, 0.00629410148, -0.0080241384, -0.00676195184, -0.00439240783, -0.0181350913, 0.00941086, -0.0389628448, -0.0140018519, -0.00516991457, 0.00393128907, 0.0227260832, 0.0158463269, 0.0228337888, -0.0100907572, -0.014149948, 0.0067956103, -0.00183606008, 0.00848189089, 0.00911466684, 0.019737225, 0.0171118788, -0.0150385275, 0.00708843721, 0.0132075157, 0.00889925379, 0.0383166037, -0.0146346278, -0.00751253171, -0.0175561681, 0.00797028467, 0.0080577964, 0.0181350913, 0.000528014556, 0.00438231044, -0.0101311477, 0.00261693262, -0.0107302647, -0.0218105763, 0.00523049943, -0.00616283435, -0.00897330232, 0.00961281, 0.0027801753, 0.00126386911, -0.0119621586, 0.00358460867, 0.0119823534, 0.0134094656, 0.0110870432, 0.0289461352, 0.0203565378, -0.00501508638, -0.00572864199, 0.00877808407, 0.013369076, -0.0184178203, 0.000348153, -0.00408611726, -0.0205719508, 0.0114842113, 0.00714229047, 0.0187947936, -0.00488045299, -0.02397817, -0.00649941713, -0.0126285935, 0.0218913574, 0.00636815, -0.00493094046, -0.00548630254, -0.00511269551, 0.00704131555, 0.0257284027, -0.033038985, 0.00269434671, -0.00392455747, -0.0245167036, 0.0109052882, -0.0212720446, 0.00327663519, 0.0107773868, 0.0146346278, -0.0114707481, -1.9932022e-05, 0.00822608825, 0.00963300467, 0.00337929302, 0.00768082356, -0.000456490641, 0.00756638544, -0.0227260832, 0.00419382378, -0.00301241758, -0.0190775227, -0.00624361401, -0.00250249449, -0.00421401858, -0.0171522684, 0.0137460483, -0.0123189371, -0.00939739682, -0.00786257815, -0.0219048206, -0.0080577964, 0.00790296774, 0.00520020677, 0.0264150314, -0.00125966175, -0.0339814164, 0.00307300244, -0.039824497, -0.00660712365, 0.0112351393, 0.0156982299, -0.00175528019, 0.000170395127, -0.00268424931, -0.00372260762, -0.00488718459, -0.00312180701, 0.00337761012, 0.0036014379, 0.0202084407, 0.00985514931, 0.00964646786, -0.00834725797, -0.00495113572, 0.0061662, 0.00817223452, 0.0185524542, -0.00301073468, -0.0153481839, 0.0110399211, -0.0154289631, -0.0138402916, -0.0305886604, 0.00274315127, 0.0159674957, 0.0231030546, -0.00186635263, 0.0271151233, 0.00758658024, 0.0144461412, 0.020450782, -0.00900022872, 0.0106898751, 0.0059676161, 0.0121506453, -0.00559737487, -0.00832033064, -0.0201276615, -0.0184178203, -0.0101648057, -0.00272800494, 0.0202084407, 0.00842130557, -0.0128978593, 0.0241262671, -0.00907427724, -0.0277882908, -0.0136585366, 0.0115178693, -0.0080510648, 0.0115111377, 0.000360143778, -0.0122516202, 0.00474582, 0.00753945857, -0.0136787323, 0.0119688902, -0.00247556786, 0.00666770851, 0.00188991334, 0.00394475227, 0.00269434671, 0.00755965337, -0.00339780515, -0.00273978547, -0.00438231044, -0.0185120627, -0.0158732533, -0.0147288712, 0.0238839276, -0.0325004533, 0.0104811937, 0.00368558359, 0.00749233691, -0.0187813304, 0.0191717669, -0.0160886664, 0.01606174, 0.0159136429, 0.00321941613, -0.00518001197, -0.00450684596, 0.0024469581, -0.00585990958, -0.00355431624, 0.00578249525, 0.00474245427, 0.00359134027, -0.00397841074, 0.0103061702, 0.00542908348, 0.0147961872, -0.00667107431, -0.000228034958, -0.0110062631, 0.01549628, -0.00281551667, -0.017259974, 0.0185928438, 0.0227530096, -0.0109120198, 0.00689321943, -0.0235338807, -0.000670641544, 0.0076471651, -0.00437894464, 0.00834725797, -0.00140607532, -0.0137460483, -0.00252773822, 0.0358393565, -0.0120564019, -0.023910854, -0.0123795215, -0.0329851322, -0.0183101129, -0.0254860632, -0.0143922875, -0.0335505903, 0.00672829337, 0.017125342, -0.0307502206, 0.00584308058, 0.00900022872, -0.00985514931, 0.00782218855, 0.00636815, 0.0238839276, -0.00869730394, -0.00493430626, 0.0108312396, 0.00298549095, 0.0179196782, -0.00367212016, -0.0023611295, 0.0235608071, -0.0137729757, -0.00996958744, 0.00625707721, 0.0080241384, 0.00136147812, 0.00417699479, -0.00778179849, 0.00339275645, 0.000464905228, 0.0104879253, -0.0302386135, -0.00716248574, 0.0108716302, 0.00797701627, 0.0163713954, -0.0114034312, 0.00352402381, 0.0261323024, 0.010757192, 0.00588010438, 0.00914159324, 0.0048602582, -0.00930988509, -0.0128507381, -0.0307502206, 0.00593059184, 0.00997631904, -0.0103061702, 0.0187274758, 0.00190842547, 0.00094579818, 0.0108177764, 0.00795682147, 0.0175696313, -0.007249997, -7.95440201e-07, 0.00273137074, -0.00346680451, 0.0103532923, -0.00581615372, -0.0130459564, -0.0249609929, 0.00604839623, -0.00491747726, 0.0226318389, 0.00273137074, 0.0126016662, -0.00529445, -0.00862325542, -0.0143249715, 0.0153481839, 0.0139614614, -0.0114774797, 0.000216885659, -0.011955427, 0.00611571269, 0.0054964, 0.0174888521, -0.01549628, -0.00291985739, -0.00527762109, 0.000904566725, 0.0152674038, 0.0040255324, 0.00186971843, -0.00264049345, -0.0196968354, 0.00731058232, -0.02397817, 0.0243147537, -0.000120118049, -0.0100369044, -0.00541898562, -0.0182966497, 0.00391109427, -0.00248398236, 0.000988712534, 0.0177177284, 0.00587337278, -0.0115851862, 0.0125949346, 0.00459772348, -0.00255129882, 0.00948490854, 0.00310666091, 0.00315546547, -0.00107454113, 0.000183648081, -0.00914832484, -0.0080443332, -0.0134498551, -0.0146211646, -0.00407265406, -0.031342607, 0.0105148517, -0.00266068848, 0.00694707269, 0.00672829337, 0.000662647712, 0.00860306062, 0.0261996184, 0.0186197702, -0.0144865308, -0.00970032159, 0.0148231145, 0.00332880556, -0.0255129896, -0.00558391167, 0.0151058435, -0.0252706502, 0.000147465413, -0.00357787707, 0.00493094046, 0.0162636898, 0.000837670872, -0.0223491099, 0.0179331414, -0.00551659474, 0.0196160562, -0.00287610153, -0.0127901528, -0.0192256197, 0.0326889381, 0.0155770602, -0.0152270133, 0.0164925661, 0.0330928378, -0.0193063989, -0.0101850005, -0.00603829836, 0.00572191039, -0.00509250024, -0.00217096019, -0.00183269428, 0.0170580242, -0.000432509114, -0.0055603506, -0.0193602517, 0.00460108928, 0.00712209567, 6.73691829e-05, 0.0131401988, -0.00701438915, 0.0331197642, -0.00373270526, 0.0114438208, -0.0011729917, -0.0212047268, 0.00863671862, 0.0164521765, -0.00684946356, -0.00706824241, 0.0101176845, 0.0220798422, 0.0178792868, 0.0233453941, 0.00272800494, 5.66406e-05, 0.0346815102, -0.00331702526, -0.00782892, -0.0160078853, -0.0190775227, 0.0197910778, 0.00206830236, 0.00521030463, -0.0113024563, -0.00115868694, -0.0224433523, -0.00568152079, -0.0040524588, 0.00582288532, 0.00538196182, -0.00540215662, -0.00161391532, 0.00841457397, 0.000662647712, -0.0186870862, 0.0023476663, -0.00531127909, 0.0152539406, 0.00419382378, 0.00887905899, 0.00215244805, 0.0309656337, -0.0143653611, -0.0107504604, 0.0133960024, 0.0150654539, 0.0213932134, -0.000588599476, 0.00238132454, -0.0218105763, 0.00669800118, -0.029780861, -0.00731731392, -0.00179735303, 0.0158194, 0.0333082527, -0.0168156847, -0.0167349055, 0.00900696, -0.0140018519, 0.0227260832, -0.00670136698, 0.0128170792, 0.00498479372, 0.00403563, -0.00867710914, 0.000551575329, 0.0252437238, 0.00240993407, -0.0104475357, 0.0165194925, -0.0162098352, 0.0108043132, 0.0109187514, -0.0186870862, 0.0136046838, 0.00461455248, 0.00187476713, -0.0323388912, 0.0150116, 0.00571517879, -0.00996285584, 0.00391109427, 0.00209522899, 0.00131099066, 0.0110197263, 0.0109524103, -0.0132546378, -0.00156763522, -0.00130762486, 0.0101648057, -0.0127497632, -0.00558054587, 0.00488045299, 0.01882172, -0.00628400408, -0.00466504, 0.0114976745, 0.0101311477, -0.0238166116, -0.0174888521, 0.0240724143, -0.00875115767, -0.0115178693, 0.0345738046, 0.0424094535, -0.00891271699, 0.0115784546, 0.00434865197, -0.00418036059, -0.000709348591, -0.00152808672, -0.0142845809, -0.0173676815, 0.0218375027, 0.0189563539, -0.0300232, -0.00991573464, 0.00690668263, 0.0040120692, 0.00889925379, -0.00953876134, 0.00534830336, -0.0040221666, 0.00827994104, -0.0208816081, -1.33121193e-05, -0.0134161972, 0.0150519907, -0.0143788243, 0.0209623873, 0.0105283158, 0.00776160322, 0.0313695334, 0.00223995978, -0.00508240284, -0.0135440985, 0.0024469581, 0.0101446109, 0.0109793367, 0.0136383418, -0.0168695394, -0.0059777135, -0.0123593267, 0.00984168611, -0.016344469, -0.0107302647, 0.00210869242, 0.00772794522, -0.00811838172, 0.0134969773, 0.000966834603, -0.00600800617, -0.0189159624, 0.0266304445, 0.00965993106, -0.0143922875, -0.0175830945, -0.0142845809, -0.0106360223, 0.025391819, 0.0243551433, 0.0192794725, -0.00464821095, -0.0114168944, 0.0132546378, 0.0141230216, -0.00589356804, 0.0048535266, -0.00619649235, 0.00880501047, -0.0012621861, 0.00592049444, -0.0044462611, 0.00675858604, 0.00532474276, -0.022281792, -0.0168291479, -0.0134296604, -0.00160129345, -0.0208816081, 0.0219856, 0.0245167036, -0.000403478829, 0.00580942212, -0.0040255324, 0.0302386135, -0.0267246887, 0.00668453798, -0.0147423344, -0.0155770602, -0.011605381, -0.0048434292, 0.00469533261, 0.0229011048, -0.0128776645, -0.0269401018, -0.0188755728, 0.00573537406, -0.0032042698, 0.0155232064, 0.0040087034, 0.00199425407, 0.00841457397, -0.0152135501, 0.0116525022, 0.0219452102, 0.0335236639, 0.000953371287, -0.00888579059, 0.00359134027, 0.0261323024, -0.00196059584, -0.00324970856, 0.00560747227, 0.00247893366, -0.0165733453, 0.0111812865, 0.0127632264, -0.0020194978, -0.0255264528, 0.0200199559, -0.00630083308, 0.00431499351, -0.00708170561, 0.00795682147, 0.00999651384, 0.0240050983, -0.00902042352, 0.000277470594, -0.0152674038, -0.00947817694, -0.029215401, 0.00115700392, 0.0112284077, -0.0027482, -0.00486699, -0.0201007351, 0.0118409889, -0.0101176845, -0.00955222454, -0.0116928928, -0.0191852301, 0.00219452102, -0.0173811447, 6.90521e-05, 0.00504537858, -0.00702112075, 0.0104475357, 0.017044561, -0.000779189577, 0.0048568924, 0.0257014763, -0.000905408175, -0.0188621096, -0.00839437917, 0.00388753321, -0.000944115222, 0.00154070859, -0.00524732843, -0.00978110079, -0.022066379, 0.00877808407, -0.00857613422, 0.0332543962, -0.0105889, 0.000248440308, 0.00424431125, -0.00719614374, 0.00791643187, -0.0135912206, -0.0175157785, -0.0191179123, 0.0303732473, 0.00480977073, 0.0292692557, 0.00128911273, 0.00392792327, 0.00716248574, 0.0134565867, -0.0220125262, 0.00732404552, 0.00658356305, 0.00965319946, -0.00275829737, -0.0298077874, 0.00615610275, 0.00266405428, -0.00998305064, -0.00709516928, -0.0198853221, -0.000891103409, -0.00986861251, 0.00700092595, -0.00116878434, -0.000454807741, -0.00766736, 0.00624024821, -0.0116928928, 0.004015435, -0.00912813, 0.00672492757, 0.000568825228, 0.00233925157, -0.00927622709, 0.0106225582, 0.0227126181, 0.000152724519, 0.0103398291, 0.00308983168, -0.0138537548, 0.00271790754, -0.013618147, 0.0020127662, -0.0109524103, -0.0146884806, -0.00947817694, 0.010891825, 0.0205988772, 0.00988207571, 0.021298971, 0.000797280925, -0.0135575617, -0.00473572221, -0.020235369, -0.00334731769, 0.0190102067, 0.0150385275, -0.0172061212, -0.0126151294, 0.00351392617, 0.00955895614, -0.00436884677, 0.000119802498, 0.00959261507, 0.00534830336, 0.0118275257, -0.00193535211, -0.00389763084, 0.0164791029, -0.000277680956, -0.0012520887, -0.00644892966, -0.017825434, 0.00154659874, -0.0258765, -0.0115515273, -0.00272127334, -0.00902042352, 0.00858959742, -0.00735770399, 0.0134498551, -0.0371049084, 0.00418036059, 0.0023661782, -0.0122112306, 0.00407938566, -0.00490064826, -0.00149190403, 0.00173003646, 0.00553342421, -0.00922910497, -0.0140018519, 0.0245705564, 0.014648091, 0.00210364349, 0.00733077712, 0.0137460483, 0.00328841573, -0.0027482, -0.00911466684, -0.00578922732, 0.017973531, 0.011740014, -0.00427460391, 0.00539205922, -0.0110937748, -0.0197237618, -0.00253783562, 0.0146750174, 0.0105889, -0.010225391, 0.00440250523, 0.0113495775, 0.0223087203, 0.0237358306, 0.0063917106, 0.0063816132, 0.00626717508, -0.00672829337, 0.0104475357, -0.0273709279, -0.0220933054, -0.0225645229, -0.0129315173, 0.00010029121, -0.000417994, 0.00292658899, 0.00879827887, 0.0013530635, -0.00057850196, 8.0937687e-05, -0.0113159195, -0.00213730196, 0.0118207941, -0.00482659973, 0.0168426111, -0.00833379477, -0.00190505967, -0.0180273838, -0.00748560531, 0.00384377758, 0.006384979, 0.00941086, 0.00379329012, 0.00399187393, -0.00398850814, -0.00937046949, -0.0119419638, 0.0102523174, 0.00848862249, -0.000532221806, 0.000686629268, -0.0136921955, -0.0163713954, 0.00934354309, -0.0294577423, 0.0161694456, -1.90511219e-05, 0.00179903593, 0.00813857652, 0.0152270133, 0.00572191039, -0.0241801199, -0.00612917589, 0.00959261507, -0.00920217857, -0.0260380581, -0.000412314141, 0.00415343372, -0.00480640493, 0.0100638308, 0.010077294, 0.0120092807, 0.000783396885, -0.0158732533, -0.00813857652, -0.0118679153, -0.000884371751, 0.0163175426, -0.0140826311, -0.00671483, -0.00374616846, 0.0115178693, 0.0133286854, 0.00537523, -0.0180812366, 0.0268054679, -0.00498479372, 0.000865018228, 0.0190371331, 0.00094663963, 0.0189294256, -0.0287037957, 0.000748055638, -0.0123929847, -0.0233723223, -0.0178119708, -0.00569835, -0.00130594196, -0.0190505963, -0.0210566316, 0.00515308511, 0.0107639236, 0.00734424032, 0.00296361302, -0.00154155, -0.00490738, 0.0149577474, -0.000163768651, 0.00696053589, 0.00990227144, -0.0161694456, -0.00183606008, -0.00819242932, 0.00411641, 0.00259673758, -0.0161559824, 0.0131401988, -0.0327966437, -0.0142307281, -0.021298971, -0.00713555887, -0.00952529814, 0.0268458575, 0.0015987691, -0.0247725062, 0.00710863248, -0.00493094046, 0.0171657316, 0.00129247864, 0.00536849862, 0.00611234689, -0.0143922875, -0.0158597901, 0.00602146937, -0.0048602582, 0.0023577637, 0.00434865197, -0.0156847667, 0.0113765048, 0.0189159624, -0.0182427969, 0.00999651384, 0.0084684277, 0.00436211517, -0.00250586029, 0.00389089924, -0.00505547645, 0.0283268224, -0.002864321, 0.00160802517, 0.0144596044, -0.0171657316, -0.0106562171, -0.00343314628, 0.0160078853, 0.00248734816, 0.0207469743, 0.00376636349, 0.0208816081, -0.0151327709, -0.00786931, 0.00533820596, -0.00438904203, 0.00451021176, -0.00382021675, 0.00862998702, 0.0165733453, -0.0244493876, 0.0102994386, -0.0028575894, 0.012419912, -0.00377982669, -0.0138537548, -0.0109187514, 0.0134835141, -0.0103869503, 0.0235742722, 0.0199661013, -0.00194713252, -0.0131738577, 0.0149577474, -0.0103802187, 0.00807126, -0.00181418227, -0.0128574697, 0.0118679153, 0.0310194865, -0.0125478134, -0.021298971, -0.00873769354, -0.0110870432, -0.00840111077, -0.0217701867, 0.000949164, -0.00139850227, 0.00964646786, 0.0426248685, 0.00641527167, 0.00101648062, 0.00935027469, 0.00387407, -0.00199257117, -0.0111207012, 0.0304001737, -0.0278690699, -0.000247598859, 0.0202892218, 0.000462380849, 0.0164925661, -0.017259974, 0.0227664728, -0.00497469632, 3.26064765e-05, 0.00708170561, 0.00256476225, 0.00928295869, -0.00918198377, -0.00490064826, -0.0315580182, -0.00246042153, 0.00296361302, -0.00958588347, 0.0277882908, -0.0102321226, -0.0213797502, -0.0223760363, -0.0031823921, 0.00555025321, -0.00877135247, 0.0110533852, 0.00475255167, 0.0261996184, 0.00538196182, -0.00538532762, -0.00519684097, 0.00420055538, -0.00770775, -0.0080241384, 0.00510596391, -0.0151327709, -0.00346007291, -0.0253514294, -0.00839437917, -0.0384512395, -0.0185120627, -0.00749906851, -0.00410631206, -0.0122650834, -0.0206392687, -0.0218375027, 0.0116188442, -0.0199391749, 0.0168022215, 0.0207873639, -0.0135912206, 0.00496123312, 0.000295561913, -0.0123795215, -0.0344660953, 0.000562935, 0.00663068471, 0.00380002172, -0.032392744, -0.0135440985, -0.00996958744, -0.00670136698, -0.00254793302, -0.0152404774, -0.0048501608, -0.00160381792, -0.0353816, 0.00187308423, 0.00799721107, -0.0291346218, 0.0292692557, -0.0306963678, 0.00157604972, 0.0122852782, 0.0225241333, -0.00968685839, 0.0145403845, -0.0209354609, -0.00178725563, -0.0306963678, 0.00890598539, -0.0145807741, -0.0308848526, -0.00493767206, -0.0185928438, -0.0120227439, -0.0123458635, -0.00916178804, -0.0063984422, 0.000924761698, -0.00749906851, -0.00770101836, 0.011107238, -0.00272968784, 0.0130594196, -0.0131738577, -0.0183101129, -0.0236550514, 0.00760004343, -0.00430489611, -0.00180240185, -0.0281383358, 0.021433603, -0.0182293337, 0.0109793367, -0.00841457397, -0.0116525022, 0.00011065165, 0.00850881729, 0.0146615542, 0.00700092595, 0.0103398291, -0.0225375965, -0.0103398291, -0.00456406502, -0.00584644638, 0.0197102986, -0.0013858804, -0.00251259189, 0.0197237618, 0.00727692386, -0.0189294256, -0.0148231145, -0.0170176346, -0.00951856654, -0.00630083308, 0.00301241758, 0.00579259312, -0.00645229546, -0.0114438208, 0.0164656397, 0.00633449154, -0.0122112306, 0.006384979, -0.0116255758, -0.0376703665, -0.0147557976, 0.00507567124, -0.00708170561, 0.00668453798, -0.0259168893, 0.00931661669, -0.0135373669, 0.00760677503, -0.00769428676, 0.0036081695, 0.00948490854, -0.00527762109, -0.034869995, 0.0135373669, -0.00141448993, -0.00188654754, 0.0333890319, -0.00431162771, 0.0121439137, 0.00197742507, 0.000804012583, -0.00246547023, 0.0207200479, -0.00276166317, 0.0264150314, -0.00295351562, 0.00143636786, -0.00784238335, 0.00474918587, 0.00121001573, -0.00958588347, 0.0101715373, -0.0243955329, -0.0132209789, 0.00160297635, -0.034735363, -0.0080779912, 0.00564786233, 0.000212468, 0.00375626585, 0.017125342, 0.00998978224, -0.025391819, -0.0105081201, 0.0189159624, -0.0105687054, -0.00711536407, -0.00733077712, -0.00987534411, 0.0229818858, 0.0165060293, -0.0162367634, 0.00418036059, 0.004049093, -0.00945125, 0.00233252, 0.00797701627, -0.0112351393, -0.00615946855, -0.00409621466, -0.00109389471, -0.017758118, -0.0084616961, 0.0337929316, 0.00634795474, 0.00658692885, -0.00934354309, 0.0133556128, -0.00542571768, -0.0104408041, 0.0211778, 0.0466369353, 0.00706151081, -0.0120698651, -0.0233050045, 0.0175427049, -0.0115380641, -0.0121237189, -0.0040120692, -0.014715408, -0.00970032159, 0.00303261261, 0.00812511332, 0.00986188091, -0.000623099215, -0.0312887542, -0.00713555887, 0.0130594196, -0.0208142903, -0.017125342, -0.014930821, 0.0183505043, 0.00371924182, -0.000622257765, -0.0293500349, 9.72409252e-05, -0.0088588642, -0.0107437288, 0.00850881729, -0.00979456492, 0.0253648926, 0.00126723491, -0.00027620839, -0.0244897772, 0.0182831865, -0.00186130381, -0.00554352161, 0.0126757147, -0.00281046773, 0.0178119708, 0.0124603016, -0.00172330486, 0.00941086, -0.011140896, -7.58889437e-05, 0.0173946079, 0.00547620514, -0.00380675332, -0.0187813304, 0.00138335605, 0.0163310058, 0.0129382499, 0.0102657806, 0.00438904203, 0.0304271, 0.0140691679, -0.00180576765, -0.00370577862, -0.00392455747, 0.00944451801, 0.00454050442, 0.0129517131, 0.00725672906, -0.000381390593, 0.00959261507, 0.0128305433, 0.00753272697, 0.00122768641, -0.0211104844, -0.0146615542, 0.00385387498, 0.000186803547, -0.00364182773, 0.0331466906, -0.00573200779, -0.00292658899, -0.0067956103, -0.008064528, 0.017825434, 0.00778853, 0.0120698651, -0.0107168015, 0.00793662667, 0.00461791828, -0.00344660971, 0.0110533852, -0.0216220897, -0.00174854859, -0.00616956595, -0.0202892218, 0.00140523387, -0.00427123811, -0.0259572789, 0.0117669404, 0.00189664506, -0.00473908847, -0.0151596973, -0.0107235331, 0.00565795973, 1.19644728e-05, -0.00290134526, -0.00373943686, -0.0161694456, -0.0120900599, 0.0063816132, 0.00147844071, -0.00374280266, 0.016277153, -0.0170580242, 0.0141095584, 0.0143115083, 0.031611871, -0.0149442842, 0.0230088122, -0.0196968354, 0.0145673109, 0.00273641967, 0.00940412842, -0.0139614614, -0.00215244805, -0.0131401988, 0.00433855457, 0.00399860553, -0.00437557884, 0.0149038937, 0.0151596973, 0.0076606283, 0.0152135501, 0.0118409889, 0.0154424263, 0.000295982638, -0.00988880731, -0.0100570992, 0.00382021675, -3.4210505e-05, 0.00943105482, -0.0196295194, -0.0180004574, -0.00103330973, 0.0113697732, -0.00687639, 0.00824628305, -0.0210027769, -0.0218778923, 0.0165464189, 0.00468186894, -0.00968685839, -0.0076404335, 0.0153077934, 0.0011763575]
|
01 Feb, 2021
|
Fabric js Path cornerStyle Property
01 Feb, 2021
In this article, we are going to see how to set the cornerStyle of a Path Canvas using Fabric.js. The Path in Fabric.js is movable and can be stretched according to requirement. Further, the Path can be customized when it comes to initial stroke color, height, width, fill color, or stroke width.
Approach: To make it possible we are going to use a JavaScript library called Fabric.js. After importing the library, we will create a canvas block in the body tag that will contain the Path. After this, we will initialize instances of Canvas and Path provided by Fabric.js and set the style of controlling corners of canvas Path using cornerStyle property.
Syntax:
fabric.Path('path', {
cornerStyle: String
});
Parameters: This function accepts a single parameter as mentioned above and described below:
cornerStyle: It specifies the style of the controlling corners.
Below examples illustrate the use of Fabric.js Path cornerStyle property:
Example:
HTML
<!DOCTYPE html>
<html>
<head>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;width: 400px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Path cornerStyle Property
</b>
</div>
<div style="text-align: center;">
<canvas id="canvas" width="400" height="200"
style="border:1px solid green;">
</canvas>
</div>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
var geek = new fabric.Path('M 0 0 L 100 100 L 0 100 z', {
fill: 'green',
cornerStyle: 'circle'
});
canvas.add(geek);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric js Path cornerStyle Property
|
https://www.geeksforgeeks.org/fabric-js-path-cornerstyle-property?ref=asr3
|
CSS
|
Fabric js Path cornerStyle Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, Fabric js Path cornerStyle Property, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.00375035591, 0.00920003746, -0.0122852884, 0.0411738232, 0.0285263844, 0.0362708494, -0.014876063, 0.0224255268, -0.0204058364, -0.0550470054, 0.0282199476, 0.0069853426, 0.0025002372, -0.0498375967, 0.0130165555, 0.0136294272, -0.0319528915, -0.000152891414, -0.00233657262, -0.0162550248, 0.00566557935, -0.0125986887, -0.0471911058, 0.0218265839, -0.000558461761, 0.0467175245, 0.0226344597, 0.0136154983, -0.0322871879, 0.0170907583, 0.012912089, 0.011400803, 0.0123897549, -0.0274677873, -0.00894931704, -0.0255734567, 0.000530168705, 0.058222793, -0.0264091901, -0.0122643951, 0.0152800009, -0.000109635665, 0.0103839934, 0.0250720177, 0.00361454906, 0.0104188155, -0.00422393857, 0.014583556, -0.0232751891, -0.0472189635, -0.00397321815, -0.0311728735, 0.0265345518, -0.00545664597, 0.0180379227, 0.0123827904, 0.0191522352, 0.047636833, -0.011937066, 0.00504574319, 0.00935325492, -0.0659115463, -0.0274817161, -0.00493083, -0.0303649977, 0.00593719305, 0.00337253441, 0.0559384562, -0.0223837402, -0.0150849968, -0.0280110147, 0.000782194664, 0.0269384887, -0.0251555908, 0.0025629173, -0.0189433023, 0.0456867851, 0.0152242854, -0.0276070759, 0.0330393463, 0.00357972691, -0.023971634, -0.00474975444, 0.0308664385, -0.00695400219, -0.0366887189, 0.030030705, -0.0437367409, 0.0226901751, 0.0270220619, -0.023289118, 0.0100218421, 0.0273563564, -0.0293621179, -0.0144999828, 0.0157117974, 0.016923612, -0.0178150609, -0.0231359, -0.0102307759, 0.00402196916, 0.0480268411, -0.00320364651, -0.0293064024, 0.0234284066, -0.0398366489, 0.0103979222, 0.0241944958, 0.0225091, -0.0141865825, 0.0285124555, -0.026813129, 0.0140890805, 0.0486954264, -0.037385162, 0.0314793102, -0.0129817333, -0.0437924564, 0.0440153182, -0.0105163185, 0.0170629, -0.00965272635, 0.00661970908, 0.0273702852, -0.0255455989, 0.0373015888, -0.0364101417, 0.000106262261, 0.0037468737, 0.0254341681, -0.0320643224, -0.0423159935, 0.023289118, -0.0123897549, 0.0352679715, 0.00053234509, -0.0201969016, 0.013935863, -0.00159834104, -0.0117559899, 0.00307306321, -0.0414524, 0.00579442177, 0.0216455087, -0.00816929899, -0.0118813505, 0.0387780517, 0.00320538762, -0.0239994917, 0.0454082079, -0.0694773421, 0.00316534215, 0.0403938033, -0.0136503205, 0.0633486286, -0.0390009135, -0.0248352252, 0.0170071851, 0.0440988913, -0.0332343504, 0.0510911979, 0.0166728906, 0.00154697825, 0.0252670217, -0.030922154, -0.0100427354, -0.00641077524, -0.0140751516, -0.057331346, 0.0193472393, -0.0115191992, 0.00590237044, 0.0320086069, -0.000117307442, -0.0407281, -0.039223779, 0.0143746231, -0.0239855628, 0.0123061817, -0.0111640124, -0.0568299033, -0.00183339126, 0.019862609, 0.0531805344, -0.00317753, 0.0192218795, 0.0190268755, -0.00100113952, -0.00888663717, -0.0425667129, -0.00449555181, 0.0429845788, 0.0386387631, 0.00357276248, 0.0146392724, -0.00495172339, 0.0246402211, 0.0172161181, -0.0219798014, 0.0159207303, 0.00330463098, -0.0307550076, 0.0103004202, -0.0273563564, 0.0318414606, -0.00612523314, -0.012765835, -0.0613985844, 0.0262699015, -0.0016845261, 0.00648390222, 0.0199322533, 0.0277742222, 0.000490558392, -0.00716641825, -0.00351878791, -0.0134553155, 0.00843394827, 0.0103839934, -0.0392794944, 0.0219798014, 0.0332343504, -0.0206008404, -0.0195840318, -0.0563841797, -0.013058342, 0.017021114, 0.0329000577, -0.00869859662, -0.0391959213, -0.00152782607, -0.00764696533, 0.00484377425, 0.00690525118, 0.0238044877, 0.0173832644, -0.0311450157, 0.00229130383, 0.024069136, 0.01770363, 0.00691569783, -0.0148064187, -0.0272449255, -0.00414384715, 0.0248073675, 0.0128424438, -0.00828073, -0.00598246185, -0.0111431181, -0.0204197653, -0.00660229754, -0.00983380247, 0.011352052, 0.0306435768, -0.0376915969, -0.0343765207, -0.0408395305, -0.0563006066, 0.0655215383, 0.0444053262, 0.0440153182, 0.0337636508, 0.00634113094, 0.0368280075, 0.00529646361, -0.0267992, -0.0103839934, -0.0336243585, -0.021715153, -0.0120415324, 0.0118325986, -0.0413131118, 0.0422324203, -0.0259356089, -0.0235259086, 0.0211162101, -0.0171325449, 0.00901199691, 0.0334014967, -0.00209804019, -0.0175086241, 0.00753553398, 0.0300028473, 0.0237766299, -0.0452689193, -0.0115818791, -0.00497261668, 0.013713, -0.0353794023, -0.026325617, -0.0284567382, -0.0128563726, 0.0167982504, -0.0157396551, 0.0254898835, -0.019472599, 0.0194308124, -0.0248073675, -0.0252948795, -0.00907467678, -0.0377473123, -0.0293064024, -0.031702172, -0.0293899756, 0.0116584878, 0.0324821919, 0.0283453073, -0.00256639952, 0.0064247041, 0.0145974858, 0.0279553, -0.0185532924, -0.0145556983, -0.0107391803, 0.00441197865, -0.0217290819, 0.0622900315, 0.00588147715, -0.0302814245, 0.00648738444, -0.0438760296, -0.0279274415, -0.000587190094, 0.0291949715, 0.0512862019, -0.00731267175, -0.0231080428, -0.0417588353, -0.0177175589, -0.00940200593, -0.0176757723, -0.00511538796, 0.00435974495, 0.018692581, 0.00390357361, -0.00129103474, -0.00971540622, -0.0178429186, -0.0330950618, 0.0209072754, 0.0217987262, 0.0363822803, -0.0288885348, -0.0036006202, 0.0319807492, -0.0444889, -0.00583620835, -0.00486118533, 0.0232473314, 0.0351008251, 0.000941071194, 0.0403659455, -0.00335686444, -0.0237487722, 0.000959352881, -0.0224951711, 0.0194865279, -0.0334014967, -0.027983157, 0.0157675128, 0.0286099575, 0.00649086665, 0.0239577051, 0.0239437763, 0.0273006409, -0.0377473123, -0.0139706852, 0.0163664557, -0.00496565225, 0.00727784913, -0.0289163925, -0.0432353, -0.00611826871, -0.0171046872, -0.0128076216, -0.0229130369, 0.0254202392, -0.00946468674, -0.0358808413, 0.00186124898, -0.0418424085, 0.0341536589, -0.00281886081, 0.0130444132, 0.0308942962, 0.050979767, -0.0196536761, -0.0171464738, 0.0225091, 0.00419259816, -0.0392794944, 0.0388337672, 0.0293064024, -0.0116027724, 0.00936021935, -0.0305600017, -0.0054078945, -0.0205590539, -0.0101472028, -0.0449067689, -0.00924878847, 0.00651872437, -0.0167564638, -0.0329000577, 0.00848269928, -0.00596853299, -0.0264091901, -0.0183582883, 0.00433536945, -0.0236094818, 0.0124942213, -0.00269524171, 0.0315350257, -0.0173275489, 0.0484725647, 0.0432910174, 0.0285821, 0.0602285564, -0.0220633745, 0.00843394827, 0.074658893, -0.0282060187, -0.0386109054, -0.0128703015, -0.0168121792, -0.0102168471, -0.0142562278, -0.0137965735, 0.00360758463, 0.0105720339, -0.105748191, 0.00205973582, 0.00815537, -0.0172857624, 0.000983728445, -0.0100705931, 0.0335965, 0.0216872953, 0.0387780517, 0.0302535668, -0.00108297181, -0.00353794, 0.0375523083, -0.0184557904, -0.0206008404, 0.0215201471, -0.0465225205, -0.0125429733, 0.00865681, 0.011790812, -0.00770268077, 0.00450948067, -0.0430402942, -0.00456867879, -0.0130444132, -0.030532144, 0.021812655, 0.0106416782, 0.0354908332, -0.0104884608, -0.00100984517, -0.0281363744, -0.00786286313, 0.00311136758, 0.0129469112, -0.0283731651, -0.00667542452, 0.008510557, 0.021227641, 0.0119927814, 0.0402823724, -0.00418911595, 0.0166450329, 0.0336800776, 0.0136154983, -0.00852448586, -0.0240830649, -0.00538003678, 0.00720820483, -0.0254620258, 0.0200715419, 0.0121042123, 0.0171743315, 0.0263116881, -0.0198208224, -0.042065274, 0.0179404207, -0.00920700189, -0.0272588544, 0.0129190534, 0.0437646, 0.0135876406, -0.0219240859, -0.00347003667, -0.00732660061, 0.0164221711, 0.0149874948, -0.0184279326, 0.0453246348, -0.0224394556, -0.015363575, 0.00144860544, 0.0110038295, 0.0265763383, 0.0453524925, 0.0162689537, -0.0102725625, 0.0427338593, -0.0139637208, 0.0103352424, -0.0156282242, 0.0093950415, -0.0241109226, 0.00864288118, 0.00640381081, -0.0156142944, 0.00682864245, 0.00895628147, -0.0253923815, 0.00351182348, 0.0102586336, -0.0226901751, -0.00821108557, -0.0287492462, 0.00945075788, 0.061064288, 0.0040080403, -0.0199461821, 0.00360410241, -0.014242298, 0.00212763925, 0.000564555638, 0.0318971761, 0.0178847052, 0.00732660061, -0.0261306129, -0.0303928554, -0.0109272208, 0.0139637208, -0.0230244696, -0.0488904342, -0.00747981854, -0.0256570298, -0.0056551327, 0.00302779418, 0.0379423201, -0.0175225548, 0.00336731109, -0.0116306301, 0.0124872569, -0.032677196, 0.0141726537, -0.0096875485, -0.0183722172, 0.0291113965, 0.0178289898, 0.0114774117, -0.0138174668, -0.0323429033, 0.000749984116, 0.0309778694, -0.00567254378, 0.0241387803, 0.0286378153, 0.00207540579, -0.0475254022, 0.0145278405, 0.00628889771, -0.0351565406, 0.0161435939, 0.0173275489, -0.0279413704, 0.0120693902, 0.0155167924, 0.0116375946, -0.0329836309, 0.0355465487, -0.0215480048, 0.025239164, 0.0354908332, 0.000842263049, -0.0133856712, 0.0125986887, 0.00240969937, -0.0172300469, 0.0101750605, -0.0169514697, -0.0158928726, -0.051648356, -0.0293899756, 0.00963879749, 0.0390009135, -0.0154053615, 0.0153357172, -0.0133438846, 0.0345715247, 0.0191104487, -0.00618443079, 0.0273563564, -0.0188040119, 0.0212554988, 0.0133647779, -0.00736142276, 0.00961094, -0.00637247087, -0.0337079354, 0.0297799837, 0.00764000043, -0.0073474939, 0.0112266922, 0.00503877876, 0.000406985, -0.000842263049, -0.025239164, -0.0327050537, -0.0179682784, 0.0203779787, 0.0239437763, -0.0234144777, -0.0173693355, 0.016338598, -0.0207819156, 0.0328443423, -0.0127519062, 0.00466966303, -0.00352227013, 0.00446072966, -0.0143189076, 0.0157396551, -0.0222305208, -0.0195701011, -0.0156421531, 0.00495172339, -5.96330938e-05, -0.00796036515, 0.019765107, -0.0109829362, 0.0175086241, -0.0170768294, 0.000786982768, -0.00585013721, 0.00913039315, 0.00153217884, 0.0241109226, -0.00379562471, 0.00914432202, -0.0340979435, -0.00132585701, -0.00239751162, 0.00901199691, -0.0105023896, -0.00323498668, -0.0296685528, 0.0168400388, 0.00642818632, 0.0204894096, -0.00926968176, 0.037385162, -0.0064003286, -0.0132603114, 0.0145278405, -0.0245705768, 0.00764000043, -0.0112336567, -0.0268549155, -0.00141813594, 0.0225926731, 0.00437715603, -0.0119161727, -0.00509449467, -0.0123688616, 0.00173763, -0.019765107, 0.0147507032, 0.00745892478, 0.00518851448, -0.0148899918, 0.02465415, 0.0395023562, -0.00338646327, 0.0104397088, -0.0272727832, -0.00153653161, 0.00842698384, 0.0198208224, -0.00984773133, -0.0276627913, -0.00312877866, -0.0059476397, 0.00194830459, 0.0237627011, 0.0144303385, 0.00368419359, 0.00962486863, 0.0254202392, -0.00626452174, 0.00361106684, -0.021812655, -0.0026464907, -0.000668151828, -0.0162550248, -0.00159834104, -0.0192358084, 0.00963879749, -0.0087403832, 0.0401152261, -0.0144721251, 0.0118813505, -0.0167982504, -0.0134762088, 0.0256291721, 0.0258520357, -0.00904681906, 0.0102377404, 0.000284454232, 0.00450251624, -0.00796036515, -0.00723606255, -0.00257858727, 0.0219101571, 0.0291392542, 0.00843394827, 0.0165753886, -0.0428174324, 0.00634461315, 0.00140246598, 0.00245322729, -0.018107567, 0.00609389273, -0.00773053849, 0.0134831732, -0.0128911957, -0.00577004626, -0.00477413, -0.0280528013, 0.0314514525, 0.0141099738, 0.00563075719, -0.0142005114, 0.00127971754, -0.0127031552, -0.0350451097, -0.0229548234, -0.012180821, -0.00505967205, -0.0173136201, -0.0228573214, 0.0154889347, 0.0357972682, 0.015461077, 0.004109025, -0.0145974858, 0.0438481718, -0.0222583786, 0.0188179407, -0.0278577972, -0.032677196, 0.0216594376, 0.0125429733, 0.0384716168, 0.00262907962, 0.050478328, -0.0313121639, 0.0507569052, 0.0158928726, 0.0126752974, -0.0114425896, -0.00614264421, 0.020350121, 0.0107322158, 0.0105929272, -0.00849662814, 0.00569691928, 0.000682516, -0.00961094, 0.0267016981, -0.00914432202, -0.0348779596, -0.0131419152, -0.00611130428, -0.0104954252, 0.00738231605, 0.0331229195, 0.0221887343, 6.14286182e-05, -0.018790083, 0.00293203304, -0.0285821, -0.00744499592, 0.0273842141, 0.0148203475, 0.0179125629, 0.0240552071, 0.012912089, -0.00631675543, -0.00965969078, -0.0319807492, 0.00832251646, -0.0155307213, -0.0216872953, -0.019862609, -0.0243059266, 0.0107322158, 0.0112266922, 0.0321200378, -0.00795340072, -0.0326493382, -0.0175225548, -0.0256013144, 0.00780714722, -0.000667281274, 0.0159764457, -0.0402545147, -0.00607648166, -0.00702712918, 0.00402893359, 0.0469125286, 0.0124106482, -0.00966665521, 0.0341536589, 0.000687739346, -0.015851086, 0.00979201589, -0.013935863, -0.0534312539, 0.0468289554, 0.0346550979, 0.00569691928, 0.000625929853, 0.00775143178, -0.00993130449, 0.0115191992, -0.0493361577, 0.0368001498, 0.0110386517, 0.0120763546, 0.0232334025, 0.0478875525, 0.00452340953, 0.00282582524, -0.007633036, 0.0171046872, 0.0110734738, -0.0264649075, -0.00257336395, 0.0254063103, 0.00411250722, 0.0626800433, 0.0368001498, -0.00211196928, 0.0163107403, -0.00375732034, 0.0146671301, 0.0316186, 0.024751652, 0.0193611681, -0.0068390891, -0.00316708325, -0.0149317784, -0.049113296, 0.00737535162, -0.000949776731, 0.000163664547, 0.0151267834, 0.0369672962, -0.0302814245, 0.0187761541, 0.0117629543, -0.0242641401, 0.00502485, -0.0226901751, -0.0105163185, 0.0122643951, 0.0239855628, 0.0361037031, 0.00758428499, -0.00910253543, -0.00697837817, 0.000563249807, -0.00604514172, 0.0113241943, -0.0357972682, -0.0294735488, 0.00516413897, -0.021353, -0.00958308205, -0.0143467654, -0.0136363916, -0.00232612598, -0.044628188, -0.00460001873, -0.011595808, 0.0196954627, -0.0243477132, 0.0197093915, 0.0539048351, 0.00142161816, -0.0159068014, -0.0181911401, 0.0207122713, 0.00612523314, -0.00761910714, -0.00600335514, -0.0111500826, 0.015753584, -0.0379423201, 0.0340143703, -0.00309743872, -0.00876824185, 0.00668238895, 0.0341258, -0.0137478225, 0.0133926356, 0.0077792895, 0.0376915969, 0.0263674036, -0.0199043956, 0.0234423354, 0.0194168836, -0.00900503248, -0.00829465874, -0.00620532408, 0.00331159565, 0.0132881692, -0.0024549684, -0.0101472028, -0.0284845959, -0.0148342764, -0.0147646321, 0.0119649237, 0.016533602, 0.0313400216, 0.032370761, -0.00442242529, 0.00876127742, -0.0255316701, -0.0133160269, -0.00844787713, -0.0278020799, -0.0171464738, 0.0216733664, 0.00923486, -0.0146253435, -0.0202526171, -0.00965272635, -0.0707588047, 0.00540441228, 0.0144024808, -0.0163525268, 0.0245148614, -0.0121181412, 0.0214226451, 0.0379144624, -0.00741017377, 0.00113346404, 0.0128633371, -0.00341780344, 0.00521289, 0.00624711066, 0.00998702, 0.0330672041, 0.00312877866, 0.000341040373, 0.00480198767, 0.0291949715, -0.0337636508, -0.00973629951, 0.00361803127, 0.0297242682, -0.00648390222, 0.0218683705, 0.00230349158, 0.00255072955, 0.00409857836, -0.00605558837, 0.00238358276, 0.0134553155, -0.00494824117, -0.0271752812, 0.00136242039, 0.0250163, 0.0263813324, 0.00805090275, 0.00905378349, 0.0241527092, 0.00113172294, 0.0160460901, -0.00101855071, -0.005846655, 0.0264091901, 0.00604165951, -0.0138662178, -0.0288328193, -0.0178011321, 0.014778561, -0.000537568412, 0.0074937474, 0.0260331109, -0.0212554988, -0.00787679199, -0.00687042903, 0.00701668253, -0.011839563, -0.0332343504, 0.019277595, 0.0258798935, -0.00241840491, 0.00938111264, 0.00514324568, 0.0251555908, -0.0739903077, 0.0176757723, -0.0149596371, 0.00275095738, 0.00796733, 0.0355465487, -0.0213251431, -0.00502833212, 0.00851752143, 0.037078727, 0.00885877945, -0.000115783965, -0.0144999828, -0.00146775763, -0.00738928048, 0.0105511406, -0.00278055621, 0.0204058364, 0.00277359178, -0.0136294272, -0.00290417532, 0.00584317278, 0.00826680101, -0.0241387803, 0.0129956622, -0.00517458562, -0.0192358084, -0.0365494303, -0.0317578875, -0.0153217884, -0.00350137684, 0.0067172111, 0.00434929831, 0.00530342804, -0.0135110309, 0.00212589814, -0.015558579, -0.00584317278, -0.0161575228, -8.61306471e-05, -0.00432144059, 0.00871252548, 0.0185393635, -0.0251973774, 0.00663363794, -0.00157222443, -0.0271474235, -0.0106486427, 0.00198835018, 0.00709329126, -0.0146949878, -0.00812751241, -0.0212137122, -0.0363265648, -0.0127240485, 0.0374965928, -0.00876824185, 0.00321409316, 0.00368767581, 0.0109829362, -0.00898413919, 0.0290278234, 0.0213251431, 0.00294944411, -0.000392185553, -0.0185811501, -0.00195526914, 0.00590933487, -0.00312703755, -0.0206147693, 0.00963183306, -0.0160600189, 0.0182607863, -0.00306784, -0.00607648166, -0.0097780861, 0.0196954627, -0.0153217884, -0.00687739346, -0.0132742403, -0.0263395458, 0.0214087162, -0.00920700189, -0.0176757723, -0.00125360081, -0.0325379074, -0.00581879728, 0.0551584363, -0.0048542209, -0.024556648, -0.035713695, -0.000979375676, -0.0383880436, 0.00404634513, 0.0329279155, -0.00347003667, -0.0345993824, 0.0183443595, 0.00724302698, -0.00104814954, 0.0356301218, 0.00646300893, -0.0222444497, -0.00734052947, 0.00454082061, 0.0307550076, -0.0268270578, -0.00245845062, 0.00707588, -0.010377029, -0.0177175589, 0.0129956622, -0.0177314878, 0.0187065098, -0.0150571391, 0.0148342764, 0.00758428499, 0.00840609, -0.0107252514, 0.0442938954, 0.00567602599, 0.00108819513, 0.0285542421, 0.00491341902, -0.0107113225, 0.00314270775, 0.0159346592, 0.00496217, 0.0200018976, 0.0197093915, -0.0285542421, 0.00672765775, 0.0107391803, -0.0293342602, -0.000407420273, -0.0264788363, -0.0161853805, -0.0107043581, 0.00475323666, -0.0262420438, 0.00638291752, 0.0138453245, 0.00376776699, -0.00215375586, -0.00927664619, 0.0379423201, -0.0216594376, -0.0105372118, -0.00187169574, -0.0296964105, 0.00796733, 0.0285542421, -0.0108297188, -0.0361037031, 0.037078727, 0.00534173241, 0.0221330188, 0.0159764457, 0.0152242854, 0.0378030315, 0.000233309038, -0.0481939875, 0.00493431231, -0.0175364837, 0.0255316701, 0.0123688616, -0.0143606942, 0.00212589814, -0.0042552785, -0.0337357931, 0.00263604405, -0.00355883338, 0.00747285411, -0.014583556, -0.0155307213, -0.00252983603, 0.0195004568, -0.0286099575, 0.0154471481, -0.0259077512, 0.018595079, 0.00526164146, -0.0129329823, -0.00767482305, 0.0144024808, 0.00105337298, -0.00805090275, -0.0300028473, 0.0233587623, 0.0229130369, 0.0135110309, -0.0110734738, -0.0173971932, 0.0162550248, 0.00399411144, 0.0140681872, 0.0108645409, -0.00706195133, 0.01125455, 0.00166363281, 0.0196676049, -0.0087961, 0.0202386882, 0.0206844136, -0.00789768528, -0.000552803162, -0.0171325449, -0.00373642705, -0.00977112167, 0.0108227544, 0.0161018055, 0.00316011882, 0.0121181412, -0.0279413704, 0.0202386882, 0.0170907583, -0.0225648154, 0.00958308205, 0.0133647779, 0.0109550785, 0.01390104, -0.00927664619, 0.0139149697, -0.0083085876, 0.00352575234, 0.00848966371, -0.00869163219, 0.00676596211, -0.00437367382, -0.0215480048, 0.0013354331, 0.0128563726, 0.000518851448, -0.00228085718, 0.0150014237, 0.00848966371, -0.00498306332, -0.00276140403, -0.0366608612, 0.0214226451, 0.000943682855, -0.00665453123, 0.00187517796, 0.0149457082, 0.0155725079, 0.0258938223, 0.00495172339, 0.0234701931, 0.0100079132, 0.011547057, 0.00387223368, 0.00651176, 0.0144721251, -0.014242298, 0.00396625372, 0.00662319129, 0.00371205132, -0.00331507786, -0.00123270752, -0.000159747055, -0.00448510516, 0.0017036784, 0.0327050537, 0.0108018601, -0.0390287712, 0.0305042863, -0.00127362367, 0.00493779453, 0.0269663464, -0.0310614426, -0.00457216101, -0.0461325124, -0.00513279904, -0.0187065098, -0.0139428275, 0.00251242495, 0.01042578, -0.0149596371, 0.0228294637, 0.00457216101, 0.00906074792, 0.00680078473, -0.00720820483, -0.013935863, -0.0449624844, -0.00890753, -0.00581183285, 0.00422393857, 0.0113450876, -0.0120136747, -0.00303998194, -0.00748678297, 0.0124315415, -0.0134065645, -0.0188179407, 0.014583556, 0.00927664619, 0.0342093743, -0.00267783063, -0.00514324568, 0.00468707411, 0.0106277494, 0.00372249796, 0.012327075, -0.0110456161, 0.0241944958, 0.0154471481, 0.00627496885, 0.0127379773, 0.00252635381, 0.0180657804, 0.00766785862, 0.0146253435, 0.0066998, 0.0116097368, 0.00876824185, 0.00642122189, -0.0342929475, 0.0201829728, 0.0175922, -0.00722909812, 0.0019500457, -0.000503181422, 0.00277185068, -0.0185811501, 0.00316186, 0.0105720339, 0.00626103953, 0.0248630829, 0.0135667473, 0.00515717454, -0.00381303579, -0.000132324538, 0.025336666, -0.00566906156, -0.00973629951, 0.00818322785, 0.0150989257, -0.0169514697, 0.00430402951, -0.00831555203, -0.0065256888, 0.0202944055, -0.00602076622, -0.0260191821, 0.00414732937, -0.00614612643, 0.0140751516, 0.0134413866, -0.0115052704, -0.00770268077, -0.0227598194, 0.00335164112, -0.0268409867, 0.00128407031, -0.0014607932, -0.0196815338, -0.0278299395, 0.0260888264, 0.0233309045, 0.00691918, 0.011888315, 0.00724302698, 0.00652917102, -0.0037085691, -0.0307271499, 0.00873341877, -0.00502485, -0.0184975769, 0.00673810439, -0.0202108305, -0.0107113225, 0.0112336567, -0.0318693183, 0.0151546411, -0.00403589848, -0.00854537915, 0.00611478649, 0.0106068561, 0.0145974858, -0.00617050193, -0.0123061817, 0.0390287712, 0.00235572481, 0.00348570687, 0.0100705931, 0.0151128545, -0.017606128, 0.0234284066, -0.0136085339, -0.0234980509, -0.0362708494, -0.00709329126, -0.0023087149, 0.00593022862, 0.0121181412, -0.0435695946, -0.0103491712, -0.0101820249, 0.0171046872, -0.032677196, -0.00724999141, -0.014193547, 0.00123009586, -0.00358320912, 0.00112998183, -0.00167930278, 0.00109167735, -0.0301142782, 0.00225474034, -0.0175922, 0.0145974858, -0.00402893359, 0.0125638666, 0.00492734788, 0.00931146834, -0.00564816827, -0.0055785235, 0.0110943671, -0.0383601859, 0.0156421531, 0.0182607863, 0.0198347513, -0.00129712862, -0.00484029204, 0.00791857857, -0.00935325492, -0.0172718335, 0.045101773, -0.00894931704, -0.00724302698, -0.000457912538, 0.00129016419, -0.0198904667, -0.00164709217, -0.0113102654, 0.00456171436, 0.0125638666, -0.0224951711, -0.00981987361, 0.011108296, 0.000737361, 0.025824178, 0.00577701069, 0.00626800442, 0.0239994917, 0.00899110362, 0.0343765207, 0.00813447684, -0.00151389709, 0.0175086241, -0.00900503248, -0.00040241456, -0.0137617514, 0.00963879749, -0.0018229445, 0.0348779596, -0.00481591653, -0.0176200569, 0.018887585, 0.00861502346, 0.027983157, 0.0412573963, 0.0257823914, 0.00488556083, 0.025336666, -0.00727784913, -0.0371065848, 0.0010150685, -0.0109690074, 0.0025385418, -0.0187482964, -0.00907467678, -0.00244278042, 0.0110386517, -0.00148690993, 0.0268967021, 0.00948558, -0.0307828654, 0.000196310415, 0.0232473314, 0.0181354247, 0.000581531494, -0.0325936228, 0.0214505028, -0.0238602031, 0.00372598018, 0.021227641, 0.00645952672, 0.0081484057, 0.00313922553, 0.0674158707, -0.00213286257, -0.00656051096, 0.00076696, -0.0165196732, -0.00404982734, -0.00384785817, -0.00903985463, -0.0403938033, -0.0179961361, 0.00480547, 0.022704104, 0.00294422079, 0.0296964105, 0.00295989076, -0.00676596211, 0.000300777145, -0.00582227949, -0.0065465821, 0.00868466776, -0.019765107, 0.0149735659, 0.0329557732, -0.0115540214, -0.0126892263, -0.000782194664, -0.00216942583, -0.0186229367, -0.0233309045, -0.0264649075, 0.0249187984, 0.00013624203, -0.0328722, -0.0153496461, -0.00206147693, 0.013009591, 0.00486466754, 0.00725695584, -0.00202491367, 0.00891449489, 0.000154306079, -0.0127797639, 0.0128285149, 0.0152521431, -0.0106347138, 0.00127971754, 0.0114356251, 0.0151964277, 0.0201272573, 0.0263674036, 0.0213808585, 0.00458957208, -0.013302098, -0.00399759365, -0.00936718378, -0.00943682808, -0.00135197362, 0.0220355168, -0.0029459619, 0.0151824988, -0.00244278042, 0.0126544042, -0.0189433023, 0.0016732089, 0.00334119448, -0.00906771235, 0.0137338936, -0.0541276969, -0.00386526925, -0.00136764371, 0.0190825909, -0.000544097566, -0.00574915251, 0.00498306332, -0.020057613, -0.00321583427, 0.0238462742, -0.00577004626, -0.00704802247, -0.00516413897, -0.00773750292, 0.0532083921, 0.015266072, 0.00754946284, 0.00861502346, 0.0261584707, 0.0261166841, 0.0114216963, 0.00611478649, 0.00489600794, 0.0160321612, 0.00415081158, 0.000975022849, 0.00897717476, -0.0178847052, -0.00899110362, 0.0150153525, 0.0127519062, 0.0125151146, 0.0081484057, 0.00450948067, 0.0205729827, -0.0164221711, 0.0146949878, -0.00296163186, 0.011547057, 0.00224255258, -0.0202108305, -0.0156003656, 0.0242502112, 0.0238044877, -0.00154262548, 0.00933932606, -0.0225926731, -0.00518503226, 0.0260191821, 0.0129538756, -0.00465225196, 0.0126126176, -0.0160600189, -3.32171585e-05, -0.00820412114, -0.00297904317, 0.00709329126, 0.0111222249, -0.0098407669, -0.00908860564, 0.00990344677, -0.0131488796, -0.00225125812, -0.00240273494, 0.000859674183, 0.00428661844, -0.00260296278, 0.0231637582, 0.0229130369, -0.0122922529, 0.0153357172, -0.00921396632, 0.000502310868, -3.21289626e-05, 0.00310962647, 0.00273528742, -0.000979375676, 0.0133160269, -0.0092557529, 0.0101750605, -0.0114077674, -0.00919307303, 0.0026691251, 0.015363575, 0.0160739478, -0.00635157758, -0.00444331858, -0.0167843215, 0.00572129479, -0.0101054152, 0.0105511406, 0.0234005488, 0.00631327322, -0.00980594475, 0.0125151146, -0.000467488659, 0.000140268356, 0.00469055632, -0.00781411212, -0.00954826, 0.0158928726, 0.0241527092, 0.0036006202, 0.015948588, 0.0177175589, -0.00959701091, -0.00878913514, -0.00665453123, 0.0191104487, -0.0142144402, -0.0254063103, -0.00465921639, -0.00216072029, 0.00104727899, -0.00772357406, -0.00582576171, 0.002200766, -0.000244843919, 0.00456171436, 0.00581879728, 0.00601031957, -0.0251138043, -0.0274120718, -0.0125986887, -0.0314514525, -0.015363575, 0.0011856975, 0.0156003656, -0.0199461821, -0.0034317323, 0.0340700857, 0.0191104487, 0.00803000946, -0.0069331089, -0.021227641, -0.0181911401, 0.0197372492, 0.00137809035, 0.0250023715, 0.00922789518, -0.0263674036, -0.0103073847, 0.00662667351, 0.0254341681, -0.000763042481, 0.0189850889, 0.00503877876, -0.00829465874, 0.000726479106, -0.00346307224, -0.00122487254, -0.00841305405, 0.00940897, 0.0216455087, 0.0301699936, 0.0381373242, -0.0164500289, -0.0131628085, 0.00227563386, -0.00940897, 0.0111152604, -0.00438412093, -0.029250687, 0.00120572024, 0.0211858544, 0.00062636513, 0.0138522889, 0.0130374487, -0.0226066019, 0.00204232475, -0.00382348266, 0.0112266922, -0.000154306079, 0.0161435939, -0.00326110329, 0.00468707411, 0.005554148, 0.00877520628, 0.0135737117, -0.0107809668, 0.0160460901, 0.0138592534, -0.00917914417, 0.00363544235, -0.0182050709, 0.00697837817, -0.0207122713, -0.00862895232, -0.0125360088, -0.00126840034, 0.025141662, 0.012912089, 0.0153217884, 0.000605471781, -0.0164778866, 0.0158093, -0.0029860076, 0.00404982734, 0.0107043581, 0.006139162, 0.00563772162, -0.0313121639, 0.00921396632, 0.00897717476, 0.0126892263, 0.0258102491, -0.00286587072, -0.00842698384, -0.0121459989, 0.0016314222, 0.015948588, 0.0083782319, -0.00607299944, 0.0124315415, -0.0159625169, 0.0127310129, -0.0253505949, -0.014778561, 0.00566557935, 0.0179404207, -0.0107252514, -0.0107113225, -0.00379562471, 0.00383392931, -0.000682080747, -0.00537655456, 0.0187065098, 0.0309500117, 0.000864897505, 0.0357972682, 0.0214505028, -0.000672504597, 0.000639423495, 0.00629586214, -0.00120397913, 0.000722561614, -0.00641425746, 0.00378169585, -0.00886574388, 0.0160878766, -0.00850359257, 0.00629238, -0.00617398415, -0.0273145698, -0.013009591, 0.0115679502, 0.0258520357, 0.00473582558, -0.0126126176, -0.00387571589, -0.00201794924, -0.00497958111, 0.0056551327, -0.0321200378, 0.00130757526, -0.00484725647, -0.0241109226, 0.000348004804, 0.00121442578, 0.00112998183, 0.0166450329, 0.00636202423, -0.0186786521, -2.45115971e-05, -0.00157396554, 0.00025442004, 0.00444331858, 0.0170350429, -0.0116375946, -0.00793947186, -0.010474531, 0.00815537, 0.00290417532, -0.0142631922, -0.0100148777, -0.0100497, -0.00107861904, -0.0184697192, 0.025740603, -0.000839216111, -0.015753584, 0.0139149697, -0.00796733, -0.0100636287, 0.0116793811, 0.00262211519, 0.0211719256, -0.000796123582, -0.0244034305, -0.00412643608, -0.0342372321, -7.63913e-05, 0.00513976347, 0.000588495925, -0.000262255024, -0.00254202401, -0.0107043581, -0.00761910714, -0.00381303579, 0.00325762108, 0.00229826826, 0.011888315, 0.0115331281, 0.0169653986, 0.0281642321, -0.00441197865, -0.00595112192, 0.0109481141, -0.0112475855, 0.011547057, -0.0144164097, -0.00056847313, 0.0123061817, -0.00199879683, -0.00526164146, -0.0199740399, 0.00208062911, 0.0169514697, 0.0286378153, 0.0173414778, 0.0324264765, 0.0108436476, 0.0160460901, 0.0221748054, -0.00341432123, -0.000445724756, 0.0203222632, 0.0291113965, -0.00241144048, -0.00314270775, -0.033373639, -0.0182050709, -0.0245148614, 0.00314793107, 0.0173832644, -0.00161052891, -0.0238880608, 0.0137896091, -0.0107043581, -0.0190686621, -0.0166450329, 0.012083319, 0.000260731555, 0.0171604026, 0.00812054798, -0.0129886977, 0.0109759718, 0.0127310129, -0.00281886081, 0.00942289922, -0.00255247066, 0.00314270775, 0.00699230703, 0.01042578, 0.00255595287, -0.00215027365, 0.0150292814, -0.00878913514, 0.00392794935, -0.0189850889, -0.0277881511, -0.00419956259, 0.0199322533, -0.020642627, 0.0116375946, -0.00490645459, -0.000259861, -0.00378517807, 0.014876063, -0.00532432133, 0.0262559727, 0.01390104, 0.0113241943, -0.0120276036, -0.00466618082, 0.00937414821, -0.00803697389, -3.32715681e-05, -0.00213460368, 0.0145974858, 0.0180379227, 0.00134587975, 0.01213207, 0.00618443079, -0.00496217, -0.00286761182, -0.00704454025, -0.015461077, 0.0105998917, -0.00333074783, -0.0231498294, 0.0256988164, 0.0273702852, 0.00681123137, 0.0103561357, -0.0136642493, 0.00218161358, 0.0110734738, -0.0133160269, 0.00600683736, -0.00279796752, 0.0014190065, -0.00498306332, 0.0323150456, -0.0122017153, -0.0111500826, 0.000482288102, -0.0257823914, -0.0128772659, -0.0324264765, -0.0140403295, -0.00959701091, -0.012083319, 0.00503529655, -0.0128494082, -0.00378866028, 0.0137338936, -0.00659185089, 0.0170071851, 0.00395928929, 0.0413131118, -0.00862895232, -0.0122713596, 0.0157396551, 0.0207401291, 0.00457564322, 0.00157918886, -0.00761910714, 0.00372946239, -0.0175922, -0.00493431231, 0.0139080044, -0.0143606942, 0.000668587105, -0.00704454025, -0.00185254344, -0.00848269928, -0.00318275322, 0.0116236657, -0.040421661, -0.000310788542, 0.0209908504, 0.000976764, 0.0129538756, -0.00334293558, -0.00188736571, 0.0173554067, 0.000191522355, 0.000102235936, -0.00293377414, 0.0137199648, -0.031507168, -0.0263116881, -0.00968058407, 0.00897021, -0.00101245684, -0.00498654554, 0.0239019897, 0.00407420285, 0.0147924898, 0.015071068, 0.0194308124, 0.0131210219, -0.0154192904, 0.00587799493, 0.0235119797, -0.00766089419, 0.0126126176, -0.0146671301, 0.00359017355, -0.0211162101, 0.0126335109, -0.00481591653, 0.0134901376, -0.00673810439, 0.0106207849, -0.00835733861, -0.0175225548, -0.000737796305, 0.0115400925, 0.0218962282, -0.0158789437, 0.00123183697, -0.0151824988, -0.0135528175, -0.00330811343, 0.0257963203, -0.00673114, -0.000578919833, -0.00446421187, 0.00881002843, 0.00210674596, 0.0115679502, 0.005724777, -0.0102864914, -0.0198904667, 0.00464180531, -0.0229269657, 0.0104118511, -0.00361803127, 0.0079951873, -0.0173554067, -0.0175643414, 0.0058710305, -0.00134326809, -0.00526164146, 0.0139428275, -0.000887096685, -0.0237905588, 0.00660229754, -0.00372249796, -0.00523378327, 0.00167146779, 0.00455823215, 0.00779321836, 0.00397670036, 6.76381296e-06, 0.00301908865, -0.0206704848, -0.00513279904, -0.00897717476, 0.00759124942, -0.0257545318, 0.00469752075, -0.00421697414, 0.0154889347, -0.000844004157, -0.00782107655, -0.00596156856, 0.0214365739, 0.00127188256, -0.00809965469, -0.0136921071, 0.00995219778, -0.001388537, -0.0296128374, 0.0104606021, 0.011790812, -0.0156003656, 0.00332552451, -0.003069581, -0.00392794935, 0.00259599835, -0.00248979055, -0.0210604947, 0.0142353335, -0.0102864914, 0.00677640876, 0.00560289947, -0.00837126747, -0.0163525268, 0.0354629755, 0.0239159185, -0.0164918154, 0.0151267834, 0.016533602, -0.0119161727, -0.00766089419, -0.00875431206, 0.00988255348, -0.00592674641, -0.00342825, -0.0107043581, 0.00630282657, -0.00493083, -0.00745892478, -0.0083085876, 0.00926271733, 0.0113450876, 0.00170019618, 0.0121111767, -0.00754946284, 0.0319807492, 0.017606128, 0.00505967205, 4.58130162e-05, -0.0158928726, 0.0137687158, 0.0149178496, -0.00597201521, -0.00227737497, 0.00653265323, 0.00364937144, 0.00551584363, 0.00857323688, 0.0110734738, 0.0151407123, 0.0388894826, -0.016241096, -0.00571781257, 0.00121094356, -0.0155167924, 0.0159207303, 0.00317404768, 0.00321757537, -0.00488904305, -0.000711679633, -0.0245984346, -0.0113799097, -0.0101959538, 0.017118616, 0.000260078639, -0.0126404753, 0.00818322785, 0.00714552496, -0.00712811388, -0.00687739346, 0.00773053849, -0.000869685609, 0.00190651789, 0.00145731098, 0.00548450369, 0.007925543, 0.0263813324, -0.0196258184, -0.00496913446, 0.00622969959, 0.0245984346, 0.0242641401, -0.00410554279, 0.00809965469, -0.00424483186, 0.00563772162, -0.0357972682, -0.00525815925, -0.0014190065, -0.0104536377, 0.0266320538, -0.0261306129, -0.0048542209, 0.00862895232, -0.00548798591, 0.0179682784, 0.00249327277, 0.0143467654, 0.00304694637, 0.00412991829, -0.016241096, 0.00301734754, 0.0149457082, -0.00658836868, 0.000958482327, 0.0279970858, -0.0116863456, 0.0142353335, -0.00073561992, -0.0211162101, 0.00248804945, -0.00473234337, 0.00470448518, -0.024751652, 0.00321235205, 0.00468359189, 0.0171046872, 0.00492038345, -0.0172161181, -0.0111222249, 0.0150849968, 0.021032637, 0.00547405705, -0.00161314057, 0.00148342771, 0.00187691906, 0.00103247957, -0.00338820438, -0.000756948546, 0.0143049788, 0.00455823215, -0.0184140038, 0.00456519658, -0.00131541037, -0.0186507944, 0.0013110576, 0.0131697729, -0.0010507612, -0.012912089, 0.0373573042, 0.0472189635, -0.00825287215, 0.0242084246, 0.0169932563, -0.015753584, -0.00152608496, -0.00458260765, -0.0265763383, -0.0164778866, 0.00828073, 0.00820412114, -0.0351008251, -0.0139706852, -0.00389660918, 0.0203083344, 0.00793250743, -0.00711070234, 0.0155167924, 0.00107165461, 0.0209212042, -0.0125917243, -1.24802382e-05, -0.0130722709, 0.012717084, -0.00780714722, 0.0162968114, 0.0143885519, -0.00993826892, 0.0293899756, -0.00581879728, -0.00254376512, -0.00673462218, -0.000615918485, 0.00992434, 0.0134413866, 0.013935863, -0.0138174668, -0.00764000043, -0.0119092083, 0.00446072966, -0.0138940755, -0.00528253475, 0.0200854708, 0.0129469112, -0.00448858738, 0.0115818791, 0.0083782319, -0.0143885519, -0.0167286061, 0.0225369576, 0.00838519633, -0.0106486427, -0.0211440679, 0.0116515234, -0.0134901376, 0.0117142033, 0.0385830477, 0.0247655809, -0.00804393832, 0.0143189076, 0.0210604947, 0.00913039315, -0.0163803846, -0.00138070202, 0.00369115802, 0.0130374487, -0.00766785862, 0.00178028725, 0.00502833212, 0.00435974495, -0.00191696465, -0.022216592, -0.00679033808, 0.00809965469, 0.00907467678, -0.0285542421, 0.00219206046, 0.0118186697, -0.00339691015, -0.00580486841, -0.000950647285, 0.0375523083, -0.0230523273, 0.00927664619, -0.0223837402, -0.011547057, -0.00303998194, 0.00421349192, -0.000907990034, 0.0196118895, -0.0112266922, -0.0169793274, -0.0126892263, 0.00422393857, 0.00809269, 0.00738231605, 0.00692614447, 0.00713856053, -0.00810661912, -0.00892842375, 0.00703409361, 0.0096179042, 0.0237627011, -0.00676596211, -0.0024166638, 0.0121181412, 0.0094786156, -0.0051467279, 0.00267260731, 0.0149178496, 0.0072708847, -0.0077792895, 0.00440849643, 0.0104048867, -0.00592326373, -0.0182050709, 0.0179404207, -0.00727784913, -0.0131001286, -0.00453037396, 0.011595808, 0.00773750292, 0.0331786349, 0.000574567064, 0.00429706508, -0.0179125629, 0.00563075719, -0.0220773034, 0.00438412093, 0.0151964277, -0.00566906156, -0.011888315, -0.0218405128, 0.0093253972, -0.0205033384, -0.00686694682, -0.00738928048, -0.0127449417, 0.00752856955, -0.000187713667, 0.0170071851, 0.0133160269, -0.00220424822, 0.0195283145, 0.0046626986, 0.011644559, -0.0078558987, 0.0167286061, 0.00643863296, -0.000287501171, 0.00474627223, 0.0129678044, -0.0127936928, -0.00619835965, 3.12039956e-05, -0.0069087334, -0.0103004202, -0.00780714722, -0.0112197278, 0.0322871879, -0.00285716518, 0.00781411212, -0.00263604405, -0.00534173241, 0.0131837018, 0.019960111, -0.0153914327, -0.0163107403, 0.0189990178, -0.00311136758, 0.0203640498, 0.00121877855, -0.00606951723, 0.00549146812, 0.0106834648, -0.00747981854, 0.00842001941, 0.0086707389, 0.00137286703, 0.0100566642, -0.0206983425, 0.0175364837, -0.00202491367, -0.013594605, -0.00358669134, -0.0138662178, -0.00923486, 0.00433188723, -0.00838519633, -0.00043418986, 0.00358669134, -0.00465225196, 0.00933932606, -0.0188040119, 0.0138035379, -0.0163107403, 0.00309743872, -0.00662319129, -0.00488904305, 0.00357972691, 0.00357624469, 0.00822501443, -0.00089319062, 0.0037468737, -0.00562379276, -0.0225230288, 0.00854537915, -0.00757732056, 0.00590237044, 0.000458347815, -0.022801606, -0.0168261081, 0.0181911401, 0.0167007484, 0.00386178703, 0.0201969016, 0.0123967193, 0.0145139117, -0.00318971765, -0.0125290435, -0.00086837972, 0.0234701931, 0.0145696271, 0.00127710588, -0.00539048342, -0.00680426694, -0.000160508789, 0.00299645425, -0.0143885519, 0.00761214271, 0.0130374487, 0.00730570732, -0.00626103953, 0.00583620835, 0.0305042863, -0.00214505033, 0.0103143491, -0.00603817729, -0.0248491541, 0.00602773065, -0.029445691, -0.0047079674, 0.00111518241, -0.00897021, 0.0125638666, -0.00775143178, 0.0184279326, -0.024556648, -0.0010925479, 0.00433536945, -0.0122713596, -0.00986862462, 0.0106556071, 0.0153078595, 0.00343347341, -0.0104606021, -0.000534521474, -0.0197929647, 0.0299471319, 0.0103839934, -0.00468359189, 0.0122086797, 0.00635854201, 0.00563772162, -0.0122643951, -0.00105250243, -0.00270568859, 0.00607299944, -0.0154332193, -0.00439456757, -0.00102551514, 0.00822501443, -0.0146810589, 0.00892145932, -0.00357624469, 0.00138157257, -0.0239019897, 0.0143746231, 0.0019918324, 0.0103004202, 0.0106834648, 0.0130235199, 0.00215027365, 0.000481852825, -0.0101054152, 0.0159903746, -0.014486054, -0.0171743315, -0.00467662746, -0.0166032463, -0.0186647233, -0.0284149516, 0.0118743861, 0.0131697729, 0.00672069332, -0.0031165909, -0.00981987361, -0.00876824185, 0.00250197831, -0.00125969469, -0.0055785235, 0.0153217884, -0.0142005114, -0.000626800407, -0.013253347, -0.0083085876, 0.00920003746, 0.00377473142, 0.0102447048, 0.0126474397, -0.00906771235, 0.00386178703, -0.00732660061, -0.00704105804, -0.00222862372, 0.0104536377, 0.00866377447, 0.00557504129, -0.000600683736, -0.0234980509, 0.0131906662, 0.00195178681, 0.00503877876, -0.000271613506, -0.0177732743, 0.00952040218, 0.0141656892, 0.00170716061, -0.026325617, -0.00322976336, 0.00694007333, -0.0167703927, -0.020057613, -0.0105859628, 0.00422045635, 0.00744499592, 0.00625059288, 0.0252530929, 0.0179264918, 0.00270394725, -0.0296406951, -0.00754946284, -0.00144338212, -0.00199009129, -0.00131889258, -0.0125220791, -0.0125290435, 0.0193054527, 0.0136572849, 0.00441894308, 0.00589888822, -0.0262559727, 0.019960111, 0.0112893721, 0.00747981854, 0.029445691, 0.00066510489, 0.0301978514, -0.0118047409, 0.0117211677, -0.0178289898, -0.0158650149, -0.00587799493, -0.0128006572, 0.00258206949, -0.0232751891, -0.0188736562, -0.00523030106, 0.0107391803, 0.0134204933, 0.0106765, 0.00547057483, 0.00327329105, 0.0109550785, -0.003069581, 0.00240795827, -0.00333945337, -0.022801606, 0.00646300893, -0.00494127674, 0.00185776677, 0.0132951336, -0.0253088083, 0.0178847052, -0.0301421359, -0.0192358084, -0.0177175589, -0.0257684626, -0.0143049788, 0.0256988164, -0.00440501422, -0.0101123797, 0.0134762088, -0.00259773945, 0.0191383064, 0.00838519633, 0.0102029182, 0.00146688707, -0.0189990178, -0.0156142944, -0.000763477758, 0.00196049246, -0.013713, 0.0051711034, -0.0281642321, 0.0293064024, 0.0174111221, 0.000143641766, 0.00946468674, -0.000841827772, 0.0130374487, -0.00136416149, -0.000682080747, 0.0154889347, 0.0326493382, -0.00526512368, -0.00396625372, 0.0199183244, -0.013935863, -0.0191522352, -0.0134622799, 0.01516857, -0.00803697389, 0.00706543354, 0.0127240485, 0.0224951711, -0.0124315415, 0.00899110362, 0.00224429369, -0.00341954455, 0.010815789, 0.00590237044, -0.00307132211, 0.00570388371, 0.00887967274, 0.0121251056, -0.00619487744, -0.00419259816, -0.00326110329, -0.00672069332, 0.00271613523, 0.0274677873, -0.00853145, 0.00922093075, 0.0288049616, -0.0179264918, -0.00869859662, 0.0189015158, -0.0119718881, 0.00106904295, 0.00359365577, -0.00388268032, 0.00430402951, 0.0220633745, -0.00166711502, -0.0130931642, -0.00265519624, -0.0295014065, -0.0145974858, -0.0130165555, -0.00155394268, 0.00602424843, 0.0031165909, 0.0289442502, 0.0070097181, 0.0130931642, 0.00340213347, 0.00368419359, -0.0110665094, 0.0104188155, 0.024556648, -0.0276627913, -0.00512931682, 0.014486054, 0.00604514172, 0.00252809492, -0.0224673133, 0.0256988164, -0.00363892457, 0.0044711763, 0.013594605, 0.0101820249, 0.00190477679, 0.00179334567, 0.00541137718, -0.0347665288, -0.00691918, 0.00743106706, -0.0012919053, 0.0129538756, -0.0223001651, -0.0172300469, -0.0316464566, 0.00302082975, -0.00680426694, -0.00998702, -0.00355186895, -0.00367374695, 0.0245009325, 0.0091861086, -0.0144721251, -0.0117490254, -0.00457216101, -0.0135458531, -0.00839216076, 0.0143328365, -0.00318275322, 0.0071315961, -0.0160878766, -0.00859413, -0.0339586549, -0.00990344677, -0.0133647779, -0.00255421177, -0.0125429733, -0.00375383813, -0.0136921071, 0.0143885519, -0.00752856955, 0.00389660918, 0.00995219778, -0.00952736661, 0.00412643608, -0.0110874027, -0.00605210615, -0.0425667129, -0.0154192904, 0.00576656405, 0.0161993094, -0.0224394556, -0.0150292814, -0.0154750058, -0.00557155907, -0.00633416651, -0.000691656838, 0.000253114209, -0.00358669134, -0.0254620258, 0.00632372, -0.00881002843, -0.0242780689, 0.0310335848, -0.0172718335, -0.00770268077, 0.00812054798, 0.0265206229, -0.00175591174, 0.00930450391, -0.0238880608, -0.00636550644, -0.0181911401, -0.000109526845, -0.00175591174, -0.0379701778, -0.00141639484, -0.0110874027, -0.00429706508, -0.00965969078, 0.00221469486, -0.0111361537, -0.00502485, -0.0235259086, -0.0164361, 0.0125011858, 0.00587451272, 0.014583556, -0.0108227544, -0.0239855628, -0.015753584, 0.00963183306, 4.87783473e-05, 0.00460001873, -0.0224673133, 0.0128354793, -0.0265624095, 0.00172196, 0.00222165929, -0.0155307213, -0.0018664723, -0.00294247968, 0.00617050193, -0.00240273494, -0.00686694682, -0.0149596371, 0.00550191477, -0.0135876406, -0.0171325449, 0.0330950618, -0.00970844179, -0.0156003656, 0.0138313957, 0.0226623174, -0.0017811578, -0.0058710305, -0.0166589618, -0.00588844158, 0.000240273497, 0.00784197, 0.00391750271, 0.00295989076, -0.000257684616, 0.0255873855, -0.00910253543, -0.0134831732, -0.000634635449, -0.0162550248, -0.0187622253, -0.0138662178, -0.0183582883, -0.0213251431, 0.0198765378, -0.0270499196, 0.00867770333, -0.00748678297, 0.01213207, 0.00384785817, 0.00554021914, 0.0149039207, -0.000171281921, -0.017425051, 0.00678337365, 0.00509449467, -0.00442590751, 0.0371623, 0.00346133113, 0.0265484806, -0.0121947508, -0.00712114898, -0.0153496461, 0.0110525806, 0.00114913413, 0.0111431181, -0.00272309966, -0.0039627715, 0.00160878769, -0.00976415724, -0.00199531461, -0.0234005488, 0.0122086797, -0.00890056603, -0.0184975769, -0.00887967274, -0.0347108133, -0.00780714722, -0.00174285343, -0.00458609, 0.00950647332, 0.0168678965, -0.0119022438, -0.0225648154, -0.0241944958, 0.0139706852, -0.0125777954, 0.0038548226, -0.0139637208, -0.0173275489, 0.015948588, 0.0180657804, -0.0268688444, -0.00174198288, 0.00933932606, -0.0148482053, 0.000499699207, 9.17892612e-05, -0.00752160512, -0.00954129547, -0.00240273494, 0.00112388795, -0.0278856549, -0.0181493536, 0.0223698113, 0.0123340394, 0.00926271733, -0.00401152251, 0.0157675128, -0.00277533289, -0.0134274578, 0.0219380148, 0.0320086069, 0.0172996912, -0.0164082423, -0.0212554988, 0.0093253972, -0.0157953706, -0.00546012819, -0.00803697389, -0.0089632459, -0.0192636661, 0.00660577975, 0.005724777, 0.0168678965, -0.00750071183, -0.0185393635, 0.00556459464, 0.0168957543, -0.00612523314, -0.0181911401, -0.00956915319, 0.0135597819, 0.00975719281, -0.00486118533, -0.0235398374, 0.000164426296, -0.00839216076, -0.0110525806, 0.00470100297, -0.00371205132, 0.0222862363, 0.00121529633, -0.0119022438, -0.0259495378, 0.0235259086, 0.00501440326, 0.000570214295, 0.0122852884, -0.00245322729, 0.00909557, 0.0157396551, 0.0109899007, 0.0248212963, -0.00736142276, -0.00724302698, 0.0127240485, 0.0225091, -0.00248630834, -0.00349963573, 0.00357624469, 0.00954826, 0.00856627245, 0.0103073847, -0.00163664552, 0.0273284987, 0.0185393635, -0.00868466776, 0.000798299967, 0.00113955804, 0.012034568, 0.0022234004, 0.0226344597, -0.00897717476, -0.00253331847, 0.0146253435, 0.00328025548, 0.0104188155, -0.00696096709, -0.00386875146, -0.0121111767, 0.00263778516, -0.00568647264, -0.000527557044, 0.0296964105, -0.000984599, -0.0138871111, 0.00135806762, 0.013058342, 0.00675203325, 0.0103631, 0.00843394827, -0.0111291893, -0.00385830482, -0.000907990034, -0.00355012785, -0.00673462218, -0.0156003656, 0.00937414821, 0.00764696533, -0.0130165555, 0.00234353705, -0.0102516692, -0.0247237943, 0.0163525268, 0.00920700189, -0.0121947508, -0.0104536377, -0.00521289, 0.00784197, 0.0226483885, -0.00495868782, -0.00582924392, -0.0249745138, -0.0115888435, 0.012668333, 0.0178707764, -0.0017280539, 0.0107531091, -0.0134413866, 0.024166638, 0.019375097, 0.0312843062, -0.000448336417, 0.0163246691, -0.0255734567, 0.00871949, 0.00204754807, 0.0200158264, -0.0135597819, -0.00346133113, -0.00539396564, -0.000129712862, 0.00466618082, -0.0166589618, -0.000925401167, 0.00412643608, -0.00172108947, 0.0366330035, 0.00529646361, -0.00137460814, 0.00128668197, -0.0166868195, -0.0123410039, 0.00283453078, -0.00562727498, 0.0174946953, -0.033568643, -0.00486466754, -0.00979898, 0.00938111264, -0.0213251431, 0.0160321612, -0.0406445265, -0.0191383064, 0.0253088083, -0.00922789518, 0.0054078945, 0.000678598532, 0.00941593479, -0.00443983637]
|
02 Feb, 2021
|
Fabric.js | Triangle cornerStyle Property
02 Feb, 2021
In this article, we are going to see how to set the style of controlling corners of the canvas triangle using FabricJS. The canvas triangle means the triangle is movable and can be stretched according to requirements. Further, the triangle can be customized when it comes to initial stroke color, height, width, fill color, or stroke width.
To make this possible we are going to use a JavaScript library called FabricJS. After importing the library, we will create a canvas block in the body tag which will contain the triangle. After this, we will initialize instances of Canvas and triangle provided by FabricJS and set a corner style of controlling corners of the canvas triangle using cornerStyle property and render the triangle on the Canvas as given in the below example.
Syntax:
fabric.Triangle({
width: number,
height: number,
cornerStyle: rect | circle
});
Parameters: This function accepts three parameters as mentioned above and described below:
width: It specifies the width of triangle.
height: It specifies the height of triangle.
cornerStyle: This parameter defines the style of the controlling corners two possible values are available rect and circle.
Example: This example uses FabricJS to set a style of controlling corners of the canvas-like triangle as given below. You have to click on the object to see the style of controlling corners.
HTML
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Triangle cornerStyle Property
</title>
<!-- Adding the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;width: 600px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Triangle cornerStyle Property
</b>
</div>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a triangle instance
var triangle = new fabric.Triangle({
width: 150,
height: 100,
fill: '',
stroke: 'green',
strokeWidth: 3,
cornerColor: 'blue',
cornerStyle: 'circle'
});
// Render the triangle in canvas
canvas.add(triangle);
canvas.centerObject(triangle);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js | Triangle cornerStyle Property
|
https://www.geeksforgeeks.org/fabric-js-triangle-cornerstyle-property?ref=asr2
|
CSS
|
Fabric.js | Triangle cornerStyle Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Fabric.js | Triangle cornerStyle Property, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.00540889334, -0.00978942867, -0.0122868679, 0.0251613688, 0.0442594364, 0.0506432652, -0.00271947123, 0.0201397799, -0.00524862949, -0.0302096698, 0.0143970046, -0.0146373995, 0.00721185748, -0.0651738197, -0.00685126474, 0.014597334, -0.0406000875, -0.00654075388, -0.0103036072, -0.00855406467, -0.00569937052, -0.0260695294, -0.0322663859, -0.00886123627, 0.021595506, 0.0383563973, 0.0205270834, 0.00843386631, -0.0294617731, -0.00561590027, 0.00103586982, 0.0123469671, 0.00284133828, -0.0422294326, -0.00416351203, -0.0234118272, -0.00589636108, 0.0669901446, -0.0233450495, 0.00185137731, -0.000958242163, -0.0126741715, 0.0111116031, 0.0246538687, 0.00723856827, 0.0095089674, -0.00344900414, -0.0134688113, 9.35783362e-07, -0.055825118, -0.0123469671, -0.0101767322, 0.0466099679, 0.0103837391, 0.00984285, 0.0268441364, 0.00376619236, 0.0415616669, -0.0155722704, 0.00242899358, 0.0293282196, -0.0651738197, -0.0401192978, 0.00649734959, -0.0286337454, 0.0160397049, 0.0145038469, 0.0394782424, -0.023905972, -0.00133803324, -0.0242131446, 0.00127042213, 0.0194987264, -0.0283132177, 0.000195842833, -0.0115122618, 0.0483995788, 0.0228909701, -0.0444998331, 0.0439923294, -0.0199260954, 0.0170279965, -0.0120331179, 0.0324533582, -0.0236655772, -0.00940880273, 0.0302363802, -0.0455415435, 0.00463762507, 0.0201531351, -0.0132551268, 8.87396527e-05, 0.0228642598, -0.0600453913, -0.0258157793, -0.00573943648, 0.0192583296, -0.0245069601, -0.0354716554, 0.00982281659, 0.0180563536, 0.042763643, 0.00433045346, -0.0182433277, 0.00846725516, -0.0428972, 0.0294617731, 0.005335439, 0.00956238899, -0.0166540481, 0.0228375494, -0.0151582556, 0.0137025295, 0.0341628343, -0.0614877641, 0.0233450495, 0.00523527432, -0.0384365283, 0.0457552299, -0.0197391212, -0.00236388668, -0.0164136533, 0.0138895037, 0.0357387587, -0.0378221869, 0.0351778381, -0.0239193272, 0.0165739171, 0.0195922125, 0.00717179151, -0.00747896312, -0.0378488973, 0.00186473259, -0.0102234762, 0.0149445711, 0.0345367827, 0.00179962558, 0.00260595139, -0.000876441, 0.00652072113, -0.0068045212, -0.0263099242, 0.0013730909, 0.0229310356, 0.0127075603, -0.0133686466, 0.0247607101, -0.00684458716, -0.010497259, 0.0367270522, -0.0715309456, 0.00677113282, 0.0283666402, -3.71704882e-05, 0.0420424566, -0.030396644, -0.0285001919, 0.00738547649, 0.0370742902, -0.0367270522, 0.0528335348, 0.0116324592, -0.0145572675, 0.0371811315, -0.0353381, 0.00258091022, -0.00126040564, 0.0156123359, -0.0482927337, 0.028259797, -0.00200329372, 0.00928192772, 0.0120665058, 0.0101299891, -0.0330142826, -0.0393179804, 0.00208509481, -0.0298090111, 0.038676925, -0.0271112416, -0.0506699756, 0.0130881863, 0.0102768969, 0.0635711849, 0.0028980982, 0.00515848119, 0.0306904595, 0.00306003122, -0.0185772106, -0.034910731, -0.0105106141, 0.0294350628, 0.0450340435, 0.0032470054, 0.00701820571, -0.012460487, 0.0151716117, 0.0107710427, -0.00628366461, 0.00817343872, 0.0261496603, -0.0271646641, -0.0120998947, -0.034136124, 0.0363798141, -0.0207274128, -0.011398741, -0.064960137, 0.0260561742, 0.00896140095, -0.00365601107, 0.0195120815, 0.0190179348, -0.00174453494, 0.0021785819, -0.00327204657, -0.0181765519, -0.00790633261, -0.00352913584, 1.17184863e-05, 0.0174420103, 0.025348343, -0.0226238649, -0.0210612956, -0.0650135577, -0.00576614728, 0.00565930502, 0.0193384625, -0.0354449451, -0.0313582234, 0.0163068119, 0.00135639682, 0.00740550924, 0.00208175601, 0.0359257348, 0.012760981, -0.0130147319, -0.0167876016, 0.0131482845, 0.0248541981, -0.000234969659, -0.0123603223, -0.0355517864, -0.00864755176, 0.0339491516, 0.00798646454, -0.0100765675, 0.0258825552, -0.00295819715, -0.0178026035, -0.0266571622, -0.0106174573, 0.0347237587, 0.0135022, -0.0188443158, 0.0021769125, -0.0348573104, -0.0413479842, 0.0702488348, 0.0306637492, 0.0575880185, 0.0272180848, -0.0013772645, 0.0347771794, -0.00500823418, -0.0138761476, 0.00921515096, -0.0471441783, -0.00797310937, -0.0337621756, 0.0109446617, -0.025789069, 0.0302363802, -0.0332813859, -0.0104638711, 0.0301829595, -0.00662756339, -0.00808662921, 0.0362195522, -0.012587362, 0.00814005, 0.0218091905, 0.038757056, 0.0221030079, -0.0226505753, -0.0194987264, 0.0179762226, 0.0178560242, -0.0303432234, -0.0252147913, -0.0238792617, -0.0271513071, 0.00755909504, -0.0258692, 0.0348306, -0.0174687207, 0.0147041762, -0.0351244174, -0.0182833951, -0.0098695606, -0.0390775837, -0.021168137, -0.00980946142, -0.027832428, 0.0140230563, 0.034750469, 0.0434848294, 0.00483461563, -0.0173618793, 0.0299959853, -0.00535213295, -0.0274584796, -0.0362195522, -0.0232649185, 0.012807725, -0.0113386428, 0.0746293664, 0.0219293889, -0.0106642, 0.0136557855, -0.0415883772, -0.010036502, 0.0156657565, 0.0458887815, 0.0532609038, -0.0146507546, -0.0136424303, -0.0483995788, -0.0213284, -0.000722855155, -0.0258692, -0.00164520496, -0.00876774918, 0.00545563642, 0.0107243, 0.0168410223, -0.00735208811, -0.0171481948, -0.0280728228, 0.0219561, 0.0196857, 0.0376619212, -0.003221964, -0.00895472337, 0.0496816859, -0.0568935424, -0.0175221432, 0.00767929293, 0.037742056, 0.0370742902, 0.000860581582, 0.0339491516, 0.0189378038, -0.00830699131, 0.0260828845, -0.0185505, 0.0193117522, -0.0286337454, -0.0276988745, 0.0160797704, 0.0149445711, 0.0240395255, 0.00264434773, 0.0264434777, 0.0369140245, -0.0252014361, -0.00942215789, 0.00039711126, 0.00245904317, 0.00670769531, -0.0318924375, -0.0440190397, -0.019805897, -0.0296754576, -0.0225704424, -0.0190446451, 0.0177224725, -0.0235988, -0.0322396755, 0.00692471862, -0.0377687663, 0.0336286239, 0.0104505159, 0.0158660859, 0.038757056, 0.0485598408, -0.0129012121, -0.0153452298, 0.0190179348, -0.0137158846, -0.0356052071, 0.0248675533, 0.039691925, -0.0137826614, 0.00839380082, -0.0259092655, -0.0100832451, -0.0291412473, 0.0164804291, -0.0539019555, -0.00430708146, 0.027912559, 0.000728280749, -0.0184169468, 0.0173485242, -0.0237991288, -0.0353113897, -0.00460757548, 0.0292747989, -0.0439389087, 0.0138093717, 0.000236847744, 0.00434714742, -0.00289642881, 0.0297288802, 0.0185371451, 0.0121733481, 0.0597782843, -0.0205671489, -0.0185371451, 0.0723856837, -0.0214886647, -0.0446868055, -0.012380355, -0.0126474611, -0.00287472643, -0.0203668196, -0.0084004784, 0.0122334473, -0.00246905955, -0.109139442, 0.00576614728, -0.00636379654, -0.0126207508, 0.0154387169, -0.014770953, 0.0415082462, 0.0130214095, 0.0297823, 0.0230913, -0.00229877955, 0.0140364114, 0.0399056114, -0.0166540481, -0.00844722241, 0.0323999375, -0.0412411392, -0.0325067788, 0.0145439124, 0.00610336848, -0.0130080543, 0.0187241193, -0.0635711849, -0.000544228125, -0.0166807584, -0.0179762226, 0.0301829595, 0.00159595732, 0.0224903114, -0.0143970046, -0.0172550362, -0.0167876016, -0.015024703, 0.0110247936, 0.00918844063, -0.0031551877, -0.0125339413, -0.0139028588, -0.00109346455, 0.00712504797, 0.0208876766, 0.0129813431, 0.0141566088, 0.0294617731, 0.0151315453, 0.00295485836, -0.00872768275, -0.0218893234, 0.0126407836, -0.0243867617, 0.0445265435, 0.0062469379, 0.0289275609, 0.0167876016, -0.00588300591, -0.0213150457, 0.0155054936, -0.0114254523, -0.0179094467, 0.00681787636, 0.047544837, 0.0257623568, -0.00916840788, 0.0188176055, -0.0142768072, 0.021088006, 0.00500489539, -0.0210212283, 0.0439122, -0.0252415016, 0.0115122618, 0.0228642598, -0.00547566963, 0.0339224413, 0.0286604557, 0.0200195815, -0.0187641848, 0.0284200609, -0.0410808772, 0.00123035628, -0.0325334892, 0.0112985764, -0.0157458894, -0.00366936647, -0.0130547974, -0.025188081, 0.0203935299, 0.0177892484, -0.0186306313, -0.00371611, 0.0231180098, -0.0396385044, -0.0080398852, -0.027912559, 0.00822685938, 0.0407603495, 0.0181631967, -0.00727863377, -0.00390642276, -0.010497259, -0.00824021455, -0.00705827167, 0.0336019136, 0.0205805041, 0.0166406929, -0.0213684663, -0.0187508296, -0.0118661765, -0.0024239854, -0.0232916288, -0.0372345522, -0.0339224413, -0.0485865511, 0.00313682412, 0.00548234722, 0.025188081, -0.00356252398, 0.018871028, -0.00156674266, 0.0103837391, -0.0288741402, 0.0227707718, -0.0035558464, -0.00585629558, 0.0334950723, 0.00911498629, 0.0156791117, -0.0273516364, -0.0322396755, -0.010116633, 0.019725766, -0.00957574416, 0.01766905, 0.0265770312, -0.0164537188, -0.0367804728, -0.00292313937, 0.0103102848, -0.0217958353, 0.00607665768, 0.00865422934, -0.0328273065, -0.0203935299, 0.0131816724, 0.00569269294, -0.0154787833, 0.019124778, -0.0306103285, 0.0332012549, 0.0420424566, -0.00538218254, -0.0132017061, 0.0105172917, 0.00731202215, -0.00430040387, 0.0100431796, -0.00225036661, -0.0206072144, -0.0543026142, -0.0298624318, 0.00256421603, 0.0266438071, -0.0269109122, 0.00268942188, -0.0292747989, 0.0361661315, 0.020994518, -0.0169612207, 0.0277255848, -0.028259797, 0.0114254523, 0.00856742, 0.0230111666, 0.00711837038, -0.0147041762, -0.0227307063, 0.0175354984, 0.0207808334, 0.00466767466, 0.0228909701, -0.00958242174, 0.00222699484, 0.00196322799, -0.0221430734, -0.0251079481, -0.0130748302, 0.0266170967, 0.0375283696, -0.0229711011, -0.020914387, 0.0306103285, -0.034403231, 0.0419623256, 0.00379624171, 0.00860080775, -0.0208075438, -0.00958242174, -0.0073320549, 0.0059130555, -0.0144103598, -0.0280194022, -0.019472016, -0.00636713533, 0.0116792023, -0.0069313962, 0.0211147163, 0.0104304831, 0.0201798454, -0.0147175314, -0.00166607264, 0.00254752184, 0.00687129749, 0.00852735341, 0.0278591383, -0.00253082789, 0.00362596172, -0.0365400761, 0.0212749802, 0.00888794661, 0.00116024096, -0.0199394505, 0.0113252876, -0.0260561742, 0.014169964, -0.00731202215, 0.0256688707, -0.0110448264, 0.0518452413, -0.00648065517, -0.0159595739, 0.00566264382, -0.0245069601, 0.00160764321, -0.0222632717, -0.00282464409, 0.00412344653, 0.0323732272, 0.00942883547, -0.00392979477, 0.00261095958, -0.0149445711, -0.00830699131, -0.00785958953, -0.0023321677, 0.0160397049, -0.0117726894, -0.0231180098, 0.0412945636, 0.0311445408, 0.00935538206, 0.00973600801, -0.0268040709, 0.0141298985, 0.0103503512, 0.00341895455, -0.0078729447, -0.0304500647, 0.00665093539, 0.0047811945, 0.00990294851, 0.0377153419, 0.0203401092, 0.00430708146, -0.011305254, 0.0272447951, -0.0122401249, 0.00917508546, -0.0260161087, -0.00344566535, 0.00812001713, -0.0171348397, -0.0105640357, -0.00988291577, 0.0128678232, -0.00739883166, 0.0623959228, -0.0148377288, 0.00973600801, -0.0292747989, -0.0262030829, 0.0362462625, 0.0159729291, -0.00531874504, 0.00174119615, 0.00417352887, -0.0180296432, 0.0112184454, -0.0184303019, 0.000390016241, 0.00251747249, 0.00570938736, -0.00745893037, 0.0338423103, -0.0281262435, 0.000425491249, -0.000861416338, -0.0121800257, -0.00942883547, -0.00889462419, -0.00402662065, 0.0135489432, -0.00321528642, -0.01903129, -0.00993633736, -0.0225170217, 0.023986103, 0.0157726, 0.00779949035, -0.0170012861, -0.00908827595, -0.0120998947, -0.0329074375, -0.0340025723, -0.00870765, -0.0253750533, 0.00536882738, -0.0184837244, 0.0175755639, 0.0154654281, 0.025268212, 0.00448737806, -0.0191381332, 0.0175622087, -0.0107309772, 0.0253082775, -0.0312780924, -0.0188443158, 0.0332012549, -0.000681537203, 0.0416150875, 0.0027461818, 0.0330677032, -0.0342963897, 0.0478386544, 0.00972265191, 0.00781284552, -0.00265436433, -0.00221864786, 0.0254017655, 0.007084982, 0.00895472337, 0.00832034647, 0.0174687207, -0.00658749742, -0.00439389097, 0.0033889052, 0.00645728363, -0.0461558886, -0.0212749802, -0.00160513911, -0.00916173, 0.0141432537, 0.0318924375, 0.00348573108, 0.0116925575, -0.00149662734, -0.0054255873, -0.0233183391, 0.000805908407, 0.0207407679, 0.0375817902, -0.00249076192, 0.0306904595, 0.0055157356, 0.00640052371, -0.0092886053, -0.0324266478, -0.00374615937, -0.0113453204, -0.02748519, -0.0227440614, -0.017068062, 0.00961581, 0.0130347647, 0.0288474299, -0.0124471318, -0.00401326502, -0.00613675639, -0.0250545274, 0.00662756339, 0.0176022742, -0.0106975883, -0.0341895483, 0.000434881687, 0.0224101786, 0.000491224346, 0.0406535082, 0.0200329367, 0.00168026262, 0.0415082462, 0.021515375, -0.0105039366, -0.00352579704, -0.0133219035, -0.0610603951, 0.034055993, 0.0340025723, 0.001616825, 0.00264434773, -0.0132951932, -0.016814312, 0.00023622172, -0.0257490017, 0.0334683619, 0.0140230563, 0.00469438499, 0.00890130177, 0.0341895483, -0.00296320533, 0.0207541231, -0.0120331179, 0.0165338516, 0.00205003726, -0.0250678826, 7.13673362e-05, 0.0227440614, 0.0103369961, 0.0436985157, 0.0365400761, -0.0040199426, 0.00949561223, 0.0237857737, 0.00962248724, 0.0203935299, 0.0258024242, 0.00969594158, -0.0145839788, 0.00328874053, -0.00958242174, -0.028179666, -0.00465765782, 0.00716511393, -0.00472109579, 0.0174553655, 0.0490139201, -0.0316520408, 0.0107309772, -0.00790633261, -0.0199260954, 0.0201397799, -0.0318123065, 0.000741636031, 0.0258959103, 0.0110448264, 0.0222632717, -0.00262765354, -0.0170413516, 0.00513844844, 0.00495815184, 0.00466099661, 0.0155856255, -0.0395583734, -0.0218359027, 0.00154587498, -0.0111516686, -0.00433713105, -0.0263633449, -0.0208476111, 0.00478787208, -0.0473578647, -0.00260428176, -0.00369941583, 0.00924186222, -0.0242532101, 0.0349908657, 0.0529403761, -0.00890797935, 0.00171615498, -0.0200462919, 0.0233183391, 0.0108912401, -0.0232515633, 0.00659751426, -0.0111316359, 0.0284200609, -0.00908159837, 0.0380358696, 0.0348573104, -0.0152784539, 0.0286604557, 0.021435244, -0.0159195084, 0.0122668352, -0.0122000594, 0.0233316943, 0.0110047599, -0.0392378457, 0.0371544212, 0.0143168727, 0.00493811909, -0.0144637804, 0.00610670727, -0.0124805197, 0.0328005962, -0.0071116928, -0.0121466378, -0.0354182348, -0.00807327405, -0.0250545274, 0.00319358404, -0.00451408839, 0.0356052071, 0.038249556, -0.0132150613, 0.00481124362, -0.0103303185, -0.00152166851, 0.0126674939, -0.0246939342, -0.0329875723, 0.0191781987, 0.010971372, -0.00229877955, -0.00145155331, -0.0181765519, -0.0641054, 0.0111650238, 0.0321061201, -0.0113920635, 0.0263366345, -0.00694475183, 0.0267773606, 0.0198860299, -0.00390308397, -0.0121466378, -0.000353915239, -0.00922182854, -0.0106909107, 0.0183368158, 0.00457752636, 0.0258024242, -0.0016093126, -0.00540889334, 0.00793304294, 0.0215020198, -0.0108378194, -0.00785958953, -0.0129880216, 0.00988291577, 0.00316854287, 0.0152383875, 0.0109313065, 0.00745893037, 0.00399991, -0.00238725846, 0.0188576709, 0.0265369639, -0.0108979177, -0.0134754889, 0.00559252826, 0.0354983658, 0.0135956872, 0.0113853859, -0.00134304154, 0.0204736628, 0.00651404355, 0.00651404355, -0.00401326502, -0.0185104348, 0.0141833201, -0.00223534205, -0.0170146413, -0.0366736315, 0.00142985093, 0.0071116928, 0.0181364864, 0.0124671645, 0.0307171717, -0.0279659815, -0.0161198378, -0.0187508296, 0.0137826614, -0.0186573416, -0.0288207196, 0.00812001713, 0.0196055677, -0.0166674033, 0.00564928818, 0.0055524623, 0.0285536144, -0.0581222288, 0.0200596489, -0.0242799204, -0.0178293139, 0.0218091905, 0.0228642598, -0.0093420269, -0.00608333526, -0.000515430816, 0.0325334892, -0.00111600151, -0.00589636108, -0.0103102848, -0.015024703, -0.00499487901, 0.00601989776, -0.00474780612, 0.0124137439, 0.0182700381, -0.0132751595, -0.005358811, 0.0168410223, 0.00757245, -0.0215020198, 0.0174153, -0.00635378, -0.0153986514, -0.038944032, -0.0114321299, -0.014089833, -0.013061475, 0.01716155, -0.00499487901, -0.000979109784, -0.0094689019, -0.00468770741, -0.0150380582, -0.0110381488, -0.0268174261, -0.00274117361, -0.00805991888, 0.00171949377, 0.0226372201, -0.00745225279, 0.023304984, -0.0124471318, -0.0317321718, -0.0192583296, 0.0101099554, 0.000699900731, -0.00699817296, -0.00213016896, -0.00928192772, -0.0286337454, -0.0191114228, 0.0367003419, 0.00342563237, -0.0118795317, 0.00532208383, -0.00190646783, -0.0130815078, 0.0234652478, 0.0104104495, -0.00667764572, -0.0101700546, -0.01225348, -0.00775274681, 0.0166807584, 0.00626697065, -0.0143569382, 0.0163201671, -0.00940880273, 0.0337621756, -0.000452410517, -0.00942883547, 0.00805991888, 0.0222365614, 0.00592307188, -0.00560254464, -0.0183902364, -0.0234518927, 0.00203167368, -0.0159996394, -0.0012186704, 0.000556331361, -0.0293282196, -0.0133753242, 0.0588701256, -0.0080398852, -0.0228375494, -0.0324800685, -0.0134354234, -0.046529837, -0.00592307188, 0.0383563973, -0.0014540574, -0.0349908657, 0.00544562, 0.00914169755, -0.00468436861, 0.0230111666, 0.00359257357, -0.0383831076, 0.00254418305, -0.00743889762, 0.0268708467, -0.0332279652, -0.00288808183, 0.00181131146, -0.0115857152, -0.0117593342, 0.0143970046, -0.034055993, 0.0215020198, -0.0022687302, 0.00683123153, 0.00368606043, 0.0021785819, -0.00433045346, 0.0293015093, 0.00709833764, 0.0123870326, 0.0195387919, 0.0291679576, -0.0208208989, 0.012807725, 0.0150113478, -0.00502826739, 0.00908159837, 0.0213951766, -0.0354983658, 0.00812001713, 0.0173885897, -0.0160931256, 0.00651070476, -0.0283132177, -0.00450073322, -0.0089280121, -0.00269276067, -0.0222499166, -0.019552147, -0.0116792023, 0.00620019436, -0.00621354952, -0.0187908951, 0.0357387587, -0.0441793054, -0.00361260632, -0.00301662646, -0.0251079481, 0.0111383134, -0.00192149263, -0.00140147097, -0.0152250323, 0.0456751, -0.0124471318, 0.0235053133, 0.00329374871, 0.0284734815, 0.0177491829, -0.000175809895, -0.0316520408, 0.0169612207, -0.00587632833, 0.0150380582, -0.00335384766, 0.00110348093, 0.021168137, -0.0104772262, -0.0338156, 0.000474530214, -0.0137025295, 0.00893469, -0.0135890096, -0.010243509, -0.00502826739, 0.0323999375, -0.0150914798, 0.00255419943, -0.0200997144, 0.0354716554, -0.000515013409, -0.0268441364, -0.00550238, 0.00174453494, 0.00152667682, 0.00186473259, -0.0359524451, 0.021688994, 0.0260962397, 0.026550319, -0.00417352887, -0.013315226, 0.0256020948, 0.00987623818, 0.0178560242, 0.00494479667, -0.00994301494, 0.00948225707, 0.00366936647, 0.0178693794, -0.00771268085, 0.0169745758, 0.0111049246, -0.0130481198, -0.00537884375, -0.0279926918, 0.00206172327, 0.0060666413, 0.0169478655, 0.022116363, 0.00175789022, 0.00174453494, -0.0124204215, -0.000363305677, 0.0220495872, -0.0146240443, 0.00631705299, 0.0105172917, 0.0127743362, 0.00152166851, -0.0140230563, 0.00496149063, -0.0152383875, 0.00165188266, -0.00219360669, -0.00816008355, 0.00319692283, -0.0121533154, 0.0010575722, 0.00467769103, 0.00681787636, -0.0116925575, -0.00542892609, 0.00104755571, 0.00537216617, 0.00663757976, -0.00233383733, -0.0330677032, 0.0186840538, 0.00509504369, 0.0148911504, 0.0147843082, 0.0123603223, 0.0144370701, 0.0310644079, 0.00568267656, 0.0129746655, -0.00224702782, -0.00597315421, 0.00194820319, -0.00713172555, 0.0212349147, -0.0073320549, -0.00554244593, 0.00373948156, 0.00136223971, -0.000607248396, -0.00428037113, -0.00369273825, -0.0132484492, 0.0303165112, 0.0219961647, 0.00765925972, -0.0461024679, 0.00998308, -0.00190980674, 0.00847393274, 0.0413212739, -0.00870097242, -0.00865422934, -0.0579085462, -0.0124204215, -0.0114721954, 0.000706161, 0.0131616397, 0.0128745008, -0.0142233856, 0.01877754, 0.00402328139, 0.0233717598, 0.00799982, 0.00713172555, -0.0125339413, -0.0315184891, -0.00536215, -0.0067143729, 0.00504162256, 0.00553910714, -0.00558251189, 0.0134487785, 0.000273157464, 0.0129479552, -0.0218492579, -0.0220629424, 0.0225837976, 0.00146240438, 0.0165338516, -0.0117326239, 0.00457418757, -0.00212849956, 0.0102301538, 0.00705827167, 0.0125806844, 0.0103837391, 0.0287138764, 0.00823353697, 0.000929862203, 0.0068913307, 0.0062870034, 0.017335169, 0.00593308825, -0.0025909266, 0.017241681, -0.00989627093, 0.0142768072, 0.0258424897, -0.034563493, 0.0119262757, 0.0184703693, -0.0139429243, 0.0139696347, -0.00594644342, -0.000809664547, -0.00954903383, 0.00204836787, -0.00278958655, 0.00929528289, 0.0171081293, 0.0169211552, 0.0193251073, 0.013235094, -0.00012770998, 0.0062870034, -0.00741218682, -0.0202065557, 0.00793304294, 0.0148243736, -0.00909495354, -0.00438387459, -0.00671771169, -0.000251037738, 0.0164270084, 0.00288641243, -0.0104438383, 0.0130414423, -0.0171214845, 0.017335169, 0.00993633736, -0.0251213033, -0.00457084877, -0.0337354653, -0.000856408093, -0.0170146413, -0.00466099661, 0.000455749338, -0.0142768072, -0.0275119, 0.0306637492, 0.0248541981, 0.0262698587, -0.0074455752, 0.00115773687, -0.00028713877, -0.00473778974, -0.0153185194, 0.0036326393, -0.0269910451, -0.0359791555, 0.00651738234, -0.00886123627, -0.0143035175, 0.00811334, -0.0169345103, 0.0206606369, -0.00291813118, -0.00460423669, -0.00455415435, 0.0108645298, 0.0029114536, -0.000178418355, -0.0176156294, 0.0297555905, 0.0069313962, -0.00572942, -0.0117459791, 0.00321361702, -0.00783287827, 0.00775274681, -0.0184837244, -0.00458086515, -0.0311712511, -0.0305034854, 0.00998975802, 0.0205270834, 0.0272180848, -0.0226238649, -4.55175468e-05, -0.0183101054, 0.00405333098, -0.0301028267, 0.000881449261, -0.0163468774, -0.00197491376, -0.0215821508, -0.00157508976, -0.00751902908, -0.00200496311, -0.0218893234, 0.0115055833, -0.010670878, 0.00389640639, -0.00915505271, 0.00543894246, 0.00822685938, 0.00257089362, 0.0132083837, -0.000628533424, 0.0086208405, -0.0210345834, 0.00270611607, 0.0149178607, 0.0148243736, -0.00558251189, -0.00368272164, 0.010717622, 0.00621354952, -0.0135489432, 0.0419623256, -0.00601322, -0.00454413798, 0.00992966, 0.0111516686, -0.0223701131, -0.0030650394, -0.0152383875, -0.0119129205, 0.0121132499, -0.0169078, -0.0271379519, 0.00975604076, -0.00598317059, 0.0164670739, 0.00530538941, 0.0064038625, 0.0300761163, 0.00626697065, 0.0284734815, 0.00479788845, 0.0173218139, 0.0108912401, -0.0133753242, -0.0141432537, -0.000264810398, 0.016814312, 0.0146240443, 0.0402795598, -0.00478453329, -0.00837376807, 0.0318924375, 0.0106241349, 0.0286337454, 0.0359791555, 0.0273249261, -0.0113453204, 0.0222499166, -0.0138360821, -0.0160129946, -0.00191648433, -0.015625691, 0.0104772262, -0.0196456332, -0.00870765, -0.00852067582, -0.00329041, -0.00701152813, 0.034242969, 0.008580775, -0.033895731, -0.00375283696, 0.0255086068, 0.0173218139, -0.000214310698, -0.0181899071, 0.00389306759, -0.0186706986, -0.00259593478, 0.0317321718, 0.00773939164, 0.0285536144, 0.00219861488, 0.0622890815, -0.00990294851, 0.00930196047, -0.00436384138, -0.00497150747, -0.0189912245, -0.0107309772, -0.0191514883, -0.0339491516, -0.0127876913, -0.0117927222, 0.0326403342, 0.00452410523, 0.0438854881, 0.0153585859, 0.00750567392, 0.00124204217, 8.28967095e-05, -0.0172283258, 0.00828028098, -0.00356586277, -0.000253541861, 0.0244802497, -0.0164136533, -0.00667430693, 0.0180563536, -0.0122601576, -0.00586297316, -0.0108244643, -0.00974936318, 0.0145839788, -0.0101700546, -0.0336019136, -0.00993633736, 0.0130280871, 0.0135222329, 0.00619351631, -0.00230545714, 0.000105277257, 0.00520856353, -0.00487802038, -0.00273783482, 0.0106241349, 0.0121132499, -0.0253349878, -5.31864061e-05, 0.0165739171, 0.000878110412, 0.00280628074, 0.0268040709, 0.012507231, 0.00310844416, -0.0165338516, -0.00227373838, -0.0110515039, -0.0151716117, -0.00206506206, 0.0169745758, -0.00994969252, 0.0121132499, 0.00580955204, -0.00221697846, -0.00864087325, -0.00445398968, 0.0132083837, 0.0121867033, 0.0249743946, -0.0350442864, -0.0064673, -0.00523527432, 0.0151716117, 0.00760583859, 0.0068913307, 0.00357254059, -0.0314383581, 0.00914169755, 0.0155722704, -0.00514178723, 0.00202833489, -0.0024356714, -0.0122267697, 0.0545964316, 0.0137025295, 0.0219160337, 0.00133385975, 0.00817343872, 0.0238659065, 0.00619017752, 0.00457752636, 0.00427703233, 0.0220629424, 0.00746560795, 0.000621855783, 0.0235053133, -0.0131482845, -0.00797978695, 0.0133352587, 0.00760583859, -0.00360259, -0.00846057758, 0.00949561223, 0.0131282518, -0.0126741715, 0.00325702177, -0.00362262293, 0.0250144619, 0.0117593342, -0.0265636742, -0.013742595, 0.0223968234, 0.0196990557, -0.00148661085, 0.0013739256, -0.0100698899, 0.00167608913, 0.00980946142, 0.0178827364, 0.00160847791, 0.0168543775, -0.0114321299, -0.00946222432, -0.000715342816, -0.00310677476, 0.0125139086, 0.000130944463, -0.00152834621, 0.0122134145, -0.000136683069, -0.0137826614, 0.00661086943, -0.00430708146, 0.0037094322, 0.012634106, 0.00510839885, 0.0273382813, 0.00986288302, -0.00759248342, 0.0144771365, -0.0289008506, 0.00908159837, 0.00135556213, 0.0186706986, 0.00617682235, -0.00773271406, 0.0187374745, -0.0155989807, 0.0142367408, -0.0118862092, -0.0181364864, 0.0128544681, 0.00750567392, 0.0116391368, -0.0156390462, -0.00792636536, -0.0181097761, 0.0210078731, -0.00942215789, -0.00785291195, 0.0262431484, -0.00113102631, -0.0130948639, 0.0136624631, 0.000453662564, -0.00510839885, 0.00469772378, 0.00384966284, -0.0317855924, 0.00906156562, 0.0199528057, -0.00212849956, 0.00715843635, 0.019725766, -0.0099096261, -0.000390016241, -0.0101500219, 0.00454747677, -0.0168677326, -0.0194853712, -0.00783955585, 0.00295151956, 0.0193518177, 0.00355918519, -0.00365934987, 0.00376619236, -0.00247239834, 0.00810666196, -0.00285135466, 0.00441058492, -0.0180429984, -0.0262565035, -0.0241463669, -0.0301829595, -0.0176556949, 0.00139896676, 0.00316520408, -0.00549570238, -0.0188309606, 0.0321328305, 0.00478453329, 0.00776610197, -0.00301662646, -0.0307438821, -0.0150380582, 0.0264835432, -0.0183768813, 0.0235320237, 0.00762587134, -0.028179666, -0.0109580169, 0.00629702024, 0.0298891421, -0.00757912779, 0.0105039366, 0.00278123957, -0.0121867033, 0.000161306889, -0.00302330405, 0.00705827167, -0.0105306478, 0.00295819715, 0.00973600801, 0.0317588821, 0.0169345103, -0.0233717598, -0.0128277577, 0.00270945486, -0.00348239229, 0.00338389701, -0.00290477602, -0.0231180098, 0.00074205338, 0.0197791867, 0.00497818505, -0.00664091855, 0.00739883166, -0.0115389721, 0.00102668803, -0.00340559939, 0.0106308125, -0.0129346, 0.017588919, -0.00505163893, 0.0012871162, 0.010497259, 0.0078729447, 0.0035692018, -0.00454747677, 0.0116391368, 0.0105707133, -0.0122468024, -0.0107910754, -0.0245203152, 0.0183368158, -0.024079591, -0.0120531507, -0.0104104495, 0.0110581815, 0.0199661609, 0.015198322, 0.0229043253, -0.000694057788, -0.0130414423, 0.00902817678, 0.00438721338, 0.00727863377, 0.0144504253, 0.0122868679, 0.0129078897, -0.0326403342, -0.0025124643, -0.00162183319, 0.0185505, 0.0308507234, -0.00450741081, 0.0104505159, -0.0125673292, -0.00797310937, 0.0158794411, 0.00959577691, 0.0106174573, 0.000234760984, -0.0122735128, 0.00573609769, -0.0202065557, -0.0233316943, 0.0119663412, -0.00661420822, -0.00580621324, -0.0252147913, -0.00589636108, 0.0141165433, -0.0063137142, -0.000974101597, 0.0182299726, 0.0201397799, 0.0109646944, 0.0347237587, 0.0121332826, -0.00027482686, 0.00365934987, 0.00602323655, 8.40444336e-05, -0.00635044137, -0.00740550924, 0.00416351203, -0.0176423397, 0.011952986, -0.000244568771, 0.0101500219, -0.000239143192, -0.0200596489, -0.00614677276, 0.00620019436, 0.0137025295, 0.00941548, -0.0148377288, -0.00151248684, 0.00949561223, -0.00476783933, 0.00779281277, -0.0342696793, 0.00582624599, 0.00450407201, -0.0354716554, 0.00375283696, -0.0165338516, 0.00576614728, 0.0142233856, -0.00400658743, -0.0227173511, -2.19371104e-05, 0.00589302229, 0.00800649729, 0.00669767894, 0.0211547818, -0.0057327589, 0.00339224399, -0.00773271406, 0.0163335223, 0.000336177734, -0.0245603807, 0.0123937102, -0.00189979025, 0.000720351061, -0.0136891743, 0.0114454851, -0.0169345103, -0.00622690469, 0.0148777952, -0.0183635261, -0.0107710427, 0.0171481948, 0.000441976677, 0.0301028267, 0.00578284124, -0.0225170217, 0.00804656278, -0.0287405886, -0.00616680598, -0.00819347147, 0.0061567896, -0.00139729737, -0.00204002089, -0.0111249583, -0.00156841206, 0.0101366667, -0.00388638978, -0.00047619961, 0.00582958478, 0.0172951035, 0.00990294851, 0.0228375494, 0.0042903875, 0.00777277956, 0.0163068119, -0.0061968551, 0.00886791386, -0.00608667405, 0.00134220684, 0.000782536634, -0.00540221529, 0.00258591841, -0.0209410973, -0.00361594511, 0.0168276671, 0.0220629424, 0.00864755176, 0.0367270522, 0.0084004784, 0.0138895037, 0.0203401092, -0.0113653531, 0.00938209239, 0.01361572, 0.0332813859, -0.000205128934, -0.0188443158, -0.0317588821, -0.0165338516, -0.00449739443, 0.0158393756, 0.0162667446, -0.00704491651, -0.00629034219, 0.00706494926, -0.00868761726, -0.0101566995, -0.00777945761, 0.009529, 0.00148828037, -0.00340726878, 0.00287806545, -0.0149579262, 0.00884788111, 0.00731202215, -0.0108645298, 0.00998308, -0.0112384781, 0.00456083193, 0.000508335768, 0.0101900874, 0.0126541387, -0.00406668615, -0.00163518847, -0.013535588, -0.000999142765, -0.0209544525, -0.0279926918, 0.0053321, 0.0115189394, -0.0179094467, 0.00802653, -0.00182132795, -0.00246238196, -0.00172116316, 0.0152918091, -0.0068045212, 0.0189778693, 0.004353825, 0.0110648591, -0.0210345834, -0.00379290292, 0.00731869973, -0.00399323227, -0.00410675211, 0.00547900843, 0.0183368158, 0.013488845, -0.00239226664, -0.00784623343, 0.00705159409, 0.0148777952, -0.0172951035, 0.00799982, -0.00583960116, 0.019204909, -0.00564928818, -0.0211414266, 0.0266438071, 0.0292747989, -0.00199995493, 0.0124871973, -0.0224769562, 0.0100097908, 0.00473111216, -0.00559252826, 0.0269242674, -0.00815340597, -0.00109096034, 0.00972265191, 0.013916214, -0.0110114375, -0.0210078731, -0.00438721338, -0.0272314399, -0.0226238649, -0.0113386428, -0.0288207196, -0.0230645891, -1.12815696e-05, 0.0294350628, -0.00425366033, 0.00847393274, 0.000872267468, -0.0156123359, 0.0213818215, -0.00290978421, 0.0427903533, -0.0130414423, -0.0122468024, 0.0231714305, 0.0135556208, 0.00463094749, 0.000509170466, 0.00672105048, 0.00952232257, -0.0136891743, -0.00203000428, -0.00383630744, -0.00312847714, -0.00879445951, 0.00138143799, -0.00240395241, -0.00534545537, 0.004844632, 0.0133018708, -0.0273516364, -0.00264601712, 0.0137158846, -0.00737212086, 0.0139829908, -0.001296298, -0.00172784086, 0.0217557698, -0.0047645, -0.00224869722, 0.000212954299, 0.0102835745, -0.027912559, -0.0202866886, -0.0192449745, 0.0187241193, -0.00412010727, 0.000858912186, 0.0285803247, 0.00970929675, 0.00071367342, 0.0105239702, 0.0128344353, 0.0222766269, 0.0138627924, 0.00957574416, 0.0170413516, -0.00391977793, 0.023224853, -0.0018613938, -0.00069656194, -0.010370384, 0.00435716379, 0.0103169624, 0.0240395255, 0.00299158529, 0.0140764778, -0.000919845712, -0.00870765, -0.00262431474, 0.00889462419, 0.0238525514, -0.0177358277, 0.00116608385, -0.0116257817, -0.00957574416, 0.0126674939, 0.0189645141, -0.00639718492, -0.000799648114, -0.00866090693, -0.00161265151, 0.0143970046, 0.00968258642, -0.00447736168, -0.00120698451, -0.012367, 0.00167692383, -0.0141566088, 0.0160797704, -0.0161198378, 0.0048713428, -0.0265369639, -0.00824021455, 0.0100031132, 0.00186473259, 0.00121366209, 0.0237189978, 0.000152229462, -0.0177224725, 0.00281128893, -0.00606998, -0.0186706986, 0.00179461727, -0.000434047, 0.00439055217, 0.00730534457, 0.0020216573, -0.00636379654, -0.010670878, -0.0146641098, -0.00445065089, 0.00763254939, -0.021515375, 0.0222632717, -0.00372946518, 0.0101032779, 0.0100966, 0.00204169028, 0.0169478655, 0.0163068119, 0.00863419566, -0.00431042025, -0.0140097011, 0.0261630155, -0.0160397049, -0.0371811315, 0.00503160618, 0.0113319652, -0.00475782249, -0.00849396549, 0.00916173, 0.000532542239, 0.0104839038, -0.00204502908, -0.0203267541, 0.0125940405, -0.00140898325, 0.00424364395, 0.0146240443, -0.0155054936, -0.00441392371, 0.0393179804, 0.0295686163, -0.0129412776, 0.0237189978, 0.0168543775, -0.00297989952, -0.0081801163, -0.00745225279, 0.0153185194, 0.00902149919, -2.84060789e-05, 0.000198346956, 0.00231046556, -0.00696478458, -0.00527867908, -0.0187641848, 0.00479788845, 0.0196723454, -0.000401910802, 0.0118461438, -0.0137826614, 0.0190980677, 0.0172817465, 0.00875439402, 5.65513146e-05, -0.0148110185, 0.00828695856, 0.0203267541, -0.00629034219, 0.00183301372, 0.0052686627, 0.0121332826, 0.0155188488, 0.0263099242, 0.0001111202, 0.0154921385, 0.0320259891, 0.00670769531, -0.00574611407, -0.0118728541, -0.0223434027, 0.0105506806, -0.00153752801, -0.00430040387, 0.0044706841, 0.00534545537, -0.021769125, -0.00222866423, -0.000665677828, 0.0181498416, -0.0075390623, -0.00747228554, 0.00465765782, -0.00350576406, -0.000668181921, -0.00785958953, 0.00259593478, 0.00941548, 0.00272614881, 0.00718514714, 0.00490139192, -0.00968258642, 0.023224853, -0.00779281277, -0.0129880216, 0.0162533894, 0.00656412588, 0.0170947742, -0.00293816417, 0.00656078709, -0.00604994735, 0.0120998947, -0.0276187435, -0.00342229358, 0.0112184454, -0.00737879844, 0.0276454538, -0.0237590633, 0.000416100811, 0.00771935843, -0.00666429056, 0.0177491829, 0.0183501709, 0.0150514133, -0.00236555608, 0.00583626237, -0.0039798771, 0.00403329823, 0.0104638711, -0.0024356714, -0.00124955445, 0.0224502459, -0.0196857, 0.0116124265, 0.000788379577, -0.0204736628, 0.00664425781, -0.00452410523, 0.00469772378, -0.0395316631, 0.00761919376, 0.0146774659, 0.00285803247, 0.0108912401, 0.00439722976, -0.00960913207, 0.00443395693, 0.0180697087, -0.00455415435, 0.00958909933, 0.00413346291, -0.00422027195, -0.00812001713, -0.0093420269, 0.0209678076, 0.0128210802, -0.000879779865, -0.00940880273, 0.0107243, 0.00542892609, -0.00668432331, -0.00377954752, 0.0270044, -0.00222866423, -0.00650736596, 0.0433512777, 0.0444464125, 0.00328373234, 0.0151849668, 0.0179762226, -0.0255086068, 0.00239894423, -0.00865422934, -0.0204603076, -0.00779949035, 0.0178560242, 0.02399946, -0.0337354653, -0.023385115, 0.00587298954, 0.0109646944, 0.0123937102, 0.0170012861, 0.0183101054, 0.00594978221, 0.0233450495, -0.0226639304, -1.11054987e-05, 0.000578451087, 0.00442727935, -0.0260695294, 0.023131365, 0.0109847272, -0.00745893037, 0.0363263935, -0.00666095177, -0.00425032154, -0.0095089674, -0.0117459791, 0.0122735128, 0.00523527432, 0.021769125, 0.00640052371, 0.00355918519, -0.0126541387, 0.00841383357, -0.0101032779, -0.0183234606, -0.00590303913, 0.0122334473, -0.0179628674, 0.00288140425, -0.0022687302, -0.0171749052, -0.0167475361, 0.0272581503, -0.00638382928, -0.0017862703, -0.0105172917, 0.00196823617, -0.0031451711, 0.017588919, 0.028259797, 0.0384365283, -0.006958107, -0.00366602745, 0.0161465481, 0.00682789274, -0.014517202, 0.0148644401, 0.0031435017, 0.0206472818, -0.00541223213, 0.000870598073, 0.00463428628, -0.00447736168, 0.00372612639, -0.0132284164, -0.0228375494, 0.00471441774, 0.00408004178, -0.0274584796, 0.0246939342, 0.0178560242, -0.00971597433, -0.00709833764, 0.0024991089, 0.0448737815, -0.0287672989, 0.00180296437, -0.030904144, -0.0174019448, 0.00282798312, 0.0155989807, -0.00232048193, 0.00809998438, -0.00818679389, -0.016734181, -0.0128010474, -0.00919511821, 0.000439055206, 0.00620687194, -0.0134621337, 0.013408713, -0.00283966889, -0.00815340597, 0.0180296432, 0.0273783486, 0.0158927962, -0.00890797935, -0.00175789022, 0.0123536447, 0.0105306478, 0.0071116928, 0.00240896083, -0.00704491651, 0.00702488329, -0.000424239173, 0.00922850613, 0.0106842332, 0.00437385822, -0.0141298985, 0.0138227269, -0.00793304294, 0.00136724801, -0.00263933954, -0.00194152549, -0.00149662734, 0.0297555905, -0.00546231447, -0.00496149063, -0.0168410223, 0.00415683445, -0.0264968984, 0.004353825, 0.00297656073, -0.00640052371, -0.00414347928, -0.0122267697, 0.00166690734, -0.0205537938, -0.00503828377, 0.0120932162, -0.0123135792, 0.00701152813, -0.000216606131, 0.00885455869, 0.0143035175, -0.00462427, 0.0293816421, 0.003221964, 0.00396318268, -0.00450073322, 0.0186706986, 0.0017779232, -0.00443395693, 0.00755909504, -0.00164687436, -0.00389974518, -0.0170947742, 0.00504162256, -0.00618016114, -0.00494479667, 0.00901482161, -0.00576948607, 0.0301028267, 0.00935538206, -0.0132284164, 0.00303665944, -0.000833453669, 0.0154654281, -0.00436050259, -0.0136357527, -0.0179628674, 0.0200997144, -0.011652492, 0.019805897, 0.00146991678, -0.0121199274, 0.00884788111, 0.00369273825, -0.0122735128, 0.010497259, 0.00667764572, -0.00254585245, 0.0121533154, -0.0217157044, 0.0101700546, -0.0055123968, -0.019058, -0.019552147, -0.0163068119, -0.00235553947, -0.0066475966, 0.00468770741, -0.0042903875, 0.00878110435, 0.00165689085, -0.00453746039, -0.0194853712, 0.0129346, -0.0133419363, -0.00567599898, -0.00603659172, -0.00371944881, 0.00286637945, -0.00125957094, 0.0123402895, 0.00914169755, 0.00333381467, -0.00570938736, -0.0162266791, 0.0153318746, -0.00767929293, 0.00763922697, -0.0168276671, -0.0153185194, -0.0257490017, 0.0148777952, 0.0204068851, -0.00936873723, 0.0273249261, 0.00416351203, -0.000924853957, -0.0020233267, -0.00757912779, -0.00256087724, 0.0328273065, 0.016734181, -0.0118928868, -0.00228208536, -0.0100031132, 0.00459422031, -0.00717179151, -0.014169964, 0.00146156969, 0.00592974946, 0.0174954329, -0.00236555608, 0.0094689019, 0.01361572, 0.00656746468, 0.00287305703, -0.00826024823, -0.0177758932, -0.00371611, -0.0153318746, -0.00685126474, 0.0021001196, -0.00212182198, 0.0094689019, -0.0153986514, 0.0235186685, -0.0197791867, -0.0071116928, 0.0163335223, -0.00307505601, 0.00679784361, -0.00345568173, 0.0130013768, 0.00920179579, -0.0128010474, -5.30820671e-06, -0.0299959853, 0.0270444658, 0.0185371451, -0.00890130177, 0.0017011303, 0.00629702024, 0.0142768072, -0.00672105048, 0.00280628074, -0.00474446733, 0.0193251073, -0.00649067154, 0.00661754701, 0.00249243132, -0.00678448798, -0.0222499166, -0.00297155231, 0.00706494926, 0.0102969296, -0.0150914798, 0.0129746655, 0.0176423397, 0.014770953, 0.00842718873, 0.0145305572, -0.00201497972, 0.00182967493, -0.0120932162, 0.00306003122, -0.0103770616, -0.0154787833, -0.0151449, -0.00971597433, -0.0203534644, -0.0218091905, 0.0209277421, 0.00769932568, -0.00308674178, 0.00614677276, -0.0154921385, -0.00396318268, -0.00472777337, 0.0108845625, -0.00353247463, 0.0138360821, 0.00290978421, 6.48983696e-05, -0.0146908211, 0.0037227876, -0.0030032713, -0.00246905955, 0.00315184891, 0.0144103598, -0.00113686919, 0.00433379225, -0.0116057489, -0.00745893037, -0.0108778849, 0.0139295692, 0.00163101498, 0.00126624864, 0.000730784843, -0.029969275, 0.0167742465, -0.00707830442, 0.000689049601, -0.00399991, -0.014089833, -0.00181965844, 0.0193251073, 0.00304500642, -0.0285269022, -0.0111516686, 0.00391310034, -0.00772603601, -0.0312246718, -0.0127543034, 0.00115606748, -0.00109179504, 0.00552241318, 0.02612295, -0.00285803247, 0.00564594939, -0.0229844563, -0.00187808787, -0.0110715367, -0.00156089966, -0.0054890248, -0.0123202568, -0.000757495465, 0.00822685938, 0.0144904917, -0.00116942276, 0.00428704871, -0.0154387169, 0.030049406, 0.00477117812, -0.000193443047, 0.0273783486, 0.00392645597, 0.019552147, -0.0188843831, 0.00320693944, -0.019204909, -0.0140230563, -0.0161465481, -0.0116191041, -0.00415349565, -0.0227039959, -0.0162133239, 0.00583626237, 0.00499154, 0.00638382928, 0.0123536447, -0.00294818054, -0.00856074225, 0.0167876016, 0.00492476393, 0.0115723601, 0.000354332587, -0.0133219035, -0.00082594133, -0.0147308866, 0.00916840788, 0.0067143729, -0.0112050893, 0.00340393, -0.0319458582, -0.0125005534, -0.0303699337, -0.00299993251, -0.0149846375, 0.0169478655, -0.00404331461, -0.00650402717, 0.0133886803, -0.011351998, 0.0100966, 0.00964252092, 0.0159328636, 0.010797753, -0.0214085318, -0.0109980823, -0.00775274681, -0.00221197028, -0.0074455752, 0.00291646179, -0.0108979177, 0.0190980677, 0.021168137, -0.0054255873, 0.00972933, -0.00380959688, 0.0117459791, -0.00638049049, -0.00146156969, 0.00532542262, 0.0348573104, -0.00361928414, 0.00140814856, 0.0144103598, -0.0186039209, -0.0165204965, -0.0199528057, 0.00158260204, 0.00461425306, 0.00665427418, 0.0239727478, 0.0109847272, 0.000256672, 0.00347237592, 0.00506833335, -0.00603659172, 0.00109930744, -0.000626446621, 0.00325702177, 0.00558585068, 0.00248575374, 0.012427099, -0.00799314212, 0.00487468159, -0.00301161828, -0.00408004178, -0.014089833, 0.00544895884, 0.00118862092, 0.0210078731, 0.0218225457, -0.0022553748, -0.0150647694, 0.00968258642, -0.0153852962, 0.0030683782, -0.00403663702, -0.0133085484, 0.00690468587, 0.00326369936, 0.00540889334, 8.86353155e-05, -0.00388305099, -0.00228709378, -0.00568935415, -0.0157859549, 0.000457001384, 0.0103503512, -7.96100576e-05, 0.0375016592, 0.00898811128, 0.0120264404, 0.00652739871, 0.0072652786, -0.00687129749, 0.00443729572, 0.0132417716, -0.0236121565, -0.00484129321, 0.00112935679, 0.019472016, 0.00209678081, -0.0215420853, 0.0199528057, -0.00864087325, 0.00930863805, 0.015452072, 0.000735793088, 0.00727863377, -0.0130214095, -0.00076292106, -0.0262832139, 0.00944886915, 0.0148243736, -0.00853403099, 0.00196489738, -0.0220896527, -0.0222098492, -0.0201531351, 0.00386301801, -0.00790633261, -0.0403062701, -0.0107777203, -0.00828028098, 0.0289275609, 0.00648733275, -0.005335439, -0.0100565348, -0.0153585859, -0.0196589902, -0.0143035175, 0.0108111082, -0.0169478655, -0.00411676848, -0.021862613, -0.006958107, -0.0346436277, -0.0164670739, -0.0162667446, -0.00579285761, -0.00377954752, 0.000987456879, -0.0202866886, 0.00958242174, 0.00217023492, 0.00248074532, 0.0413746946, -0.00436718, 0.0116925575, -0.0189378038, -0.0109446617, -0.0248274878, -0.0147442417, 0.0181631967, 0.0116458144, -0.025789069, -0.0110381488, -0.0114454851, -0.0109513393, -0.0187241193, -0.00860748533, 0.00454747677, 0.00805991888, -0.0318657272, 0.00300494069, -0.00193651731, -0.0276454538, 0.0336286239, -0.0142233856, -0.00530538941, 0.00581289083, -0.000796726614, -0.00150580914, 0.0124805197, -0.0125272637, -0.0215554405, -0.0174420103, -0.00361928414, -0.00701152813, -0.0270845313, 0.0002833826, -0.00707830442, -0.00439722976, -0.00454413798, -0.00972933, -0.00636045774, -0.0142768072, -0.00383964647, -0.0179495122, 0.00299158529, -0.00313181593, 0.0213016905, -0.00834705774, -0.00847393274, -0.0188042503, 0.0216622837, 0.00203000428, -0.00295151956, -0.0171749052, 0.0103102848, -0.0276454538, -0.00755241746, -0.00519186957, -0.0237056427, -0.00856742, -0.00534879416, -0.00134971912, -0.00352913584, 0.000824271934, -0.0195387919, 0.00392311672, -0.00185304671, -0.0117459791, 0.0190446451, -0.0033889052, -0.00998975802, 0.0121199274, 0.0221831389, -0.00265937252, -0.00203835149, -0.0252815671, -0.00284300768, 0.00874771643, -0.00787962228, 0.000304041576, 0.0151449, 0.00313682412, 0.0211814921, -0.000310510542, -0.0152250323, 0.0101032779, -0.0205537938, -0.0171348397, -0.0298891421, -0.012300224, -0.0196589902, 0.00106341508, -0.0250545274, 0.00920179579, -0.0229978114, 0.00496816868, 0.00319191464, 0.00900146645, 0.0134020355, -0.000806325756, -0.00879445951, 0.00792636536, 0.00228375476, -0.0293549318, 0.0380358696, 0.00114438159, 0.0146908211, -0.00747228554, 0.00537884375, -0.0194319487, -5.30298967e-05, -0.00201497972, 0.00596647663, -0.00404331461, -0.00296821352, -0.00568267656, -0.00973600801, 0.000578868436, -0.0173218139, 0.0107109435, -0.00132300856, -0.0202866886, 0.00868761726, -0.0283933505, -0.00956906658, -0.0109847272, 0.00541557092, 0.00906824321, 0.0109446617, -0.00106925808, -0.0253349878, -0.0342963897, 0.0195788573, -0.00685126474, -0.0216756389, -0.00512843207, -0.0292747989, 0.0215020198, 0.0266304519, -0.0262030829, 0.00243734079, 0.010544003, -0.00879445951, 0.000164541372, -0.00310844416, -0.0130748302, -0.00434714742, -0.00881449226, 0.00540221529, -0.0310911182, -0.0098695606, 0.0174820777, 0.00428037113, -0.00123286038, -0.0174820777, 0.00902149919, 0.00133552914, -0.00994969252, 0.0229310356, 0.0318657272, 0.0108778849, -0.014343583, -0.027832428, 0.0137693053, -0.0201130696, -0.0103169624, -0.0128144026, -0.025775712, -0.0160931256, -0.0052686627, -0.00249410071, 0.00814005, 0.00627364824, -0.00581289083, -0.00279626413, 0.0208075438, -0.00623692106, -0.0136758182, -0.0207140576, -0.00481124362, 0.0108311418, -0.00794639811, -0.0163869429, 0.00619351631, -0.00404999219, -0.0148377288, -0.00367270526, -0.0076659373, 0.0315452, -0.00209177262, -0.000334090961, -0.0164403636, 0.0147843082, -0.0036459947, 0.00976271834, 0.00992966, -0.000994134578, 0.0236388668, 0.0111049246, -0.00246405136, 0.0208876766, -0.00892133452, 0.000350576418, 0.0100431796, 0.0181498416, -0.0119262757, -0.0104371607, 0.00627030944, 0.0182700381, 0.0120731834, 0.007084982, 0.00540889334, 0.0109246289, 0.0132618044, -0.00969594158, 0.00329875713, 0.00723189, 0.00699149538, 0.00958242174, 0.0147575969, -0.00481124362, -0.000156402981, 0.0225570872, 0.00148160267, 0.00968258642, 0.00569603173, -0.0114054186, -0.0127876913, -0.00775274681, -0.0135155553, -0.000498736685, 0.0257490017, 0.00753238471, -0.00985620543, -0.00830031373, 0.0223701131, 0.0191514883, 0.00127125683, 0.00958242174, -0.015024703, -0.00245737378, 0.00478453329, -0.00652072113, 0.0130681526, -0.0161599033, 0.0166139826, 0.000982448692, -0.0151582556, 0.0126674939, -0.00814005, -0.0216756389, 0.0260027535, -0.0042903875, -0.00271279365, -0.0211814921, -0.0117593342, -0.0100164684, 0.00436384138, -0.00893469, -0.00767929293, -0.0242398549, -0.014517202, 0.0135289105, 0.0231847856, -0.0143569382, -0.00290644541, -0.0105773909, 0.0267239381, -0.00539219892, 0.0284200609, -0.0116458144, 0.0220495872, -0.0169078, 0.00449405564, 0.000459922856, 0.00906824321, -0.0202332661, 0.00318022887, -0.00537884375, 0.0133753242, 0.00109262986, -0.0033872358, 0.00814005, 0.00664425781, -0.00883452501, 0.0222098492, 0.00627030944, 0.00213183835, -0.0118528213, -0.01225348, -0.016734181, 0.00464430265, -0.00469772378, 0.0101032779, -0.0114254523, 0.00112518331, 0.00335217826, 0.0138895037, -0.0256555155, 0.0262431484, -0.0285001919, -0.0147575969, 0.0271646641, 0.0110782143, -0.001931509, -0.00160013093, 0.00274785119, -0.00490473071]
|
17 Feb, 2021
|
Fabric.js | Rect cornerStyle Property
17 Feb, 2021
In this article, we are going to see how to set the style of controlling corners of the canvas rectangle using FabricJS. The canvas rectangle means rectangle is movable and can be stretched according to requirement. Further, the rectangle can be customized when it comes to initial stroke color, height, width, fill color, or stroke width.Approach: To make it possible, we are going to use a JavaScript library called FabricJS. After importing the library, we will create a canvas block in the body tag which will contain the rectangle. After this, we will initialize instances of Canvas and Rectangle provided by FabricJS and set the style of controlling corners of canvas rectangle using cornerStyle property and render the Rectangle on the Canvas as given in the below example.Syntax:
fabric.Rect({
width: number,
height: number,
cornerStyle: string
});
Parameters: This function accepts three parameters as mentioned above and described below:
width: It specifies the width of rectangle.
height: It specifies the height of rectangle.
cornerStyle: It specifies the style of the controlling corners. The accepted values of this parameter are circle and rect.
Example: This example uses FabricJS to set the style of controlling corners of the canvas-like rectangle as given below. You have to click on the object to see the style of controlling corners.
html
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Rect cornerStyle Property
</title>
<!-- Adding the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a Rect instance
var rectangle = new fabric.Rect({
width: 200,
height: 100,
fill: '',
stroke: 'green',
strokeWidth: 3,
cornerStyle: 'circle'
});
// Render the Rect in canvas
canvas.add(rectangle);
canvas.centerObject(rectangle);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStyle Property/Fabric.js | Rect cornerStyle Property
|
https://www.geeksforgeeks.org/fabric-js-rect-cornerstyle-property?ref=asr1
|
CSS
|
Fabric.js | Rect cornerStyle Property
|
How to make a Post request from frontend in react-native ?, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js ActiveSelection cornerStyle Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, Fabric.js | Rect cornerStyle Property, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0012188151, -0.00961922389, -0.0130467638, 0.0271300804, 0.0312348362, 0.0228871182, -0.00662358198, 0.0243659373, -0.0085757589, -0.0390297249, 0.0296592731, -0.00876233913, 0.0109805651, -0.0626355186, -0.00907330494, 0.0208416525, -0.0394167043, 0.00336189102, -0.0284983329, -0.0121622374, -5.03160736e-05, -0.0386427455, -0.0356021859, 0.0142629873, 0.00240998878, 0.0408817, 0.0135926818, 0.00149177446, -0.0248773042, 0.0113537246, 0.000620636914, 0.00632298132, -0.0155759556, -0.0339436978, -0.00753229437, -0.0150507689, -0.000225018666, 0.0739685148, -0.0124248313, -0.00666849921, 0.0075115636, -0.00417040335, 0.00989563856, 0.0325616263, 0.00455392851, 0.0199433044, -0.0153271826, -0.00687581, -0.0121760583, -0.068495512, -0.0137308892, -0.00993019063, 0.0322852097, 0.0162669923, 0.0082233306, 0.0164190196, -0.00257065473, 0.0423190556, -0.0190587789, -0.00445718365, 0.0231635328, -0.0615298636, -0.0252919253, -0.000557147956, -0.0624696724, 0.00796073675, 0.0123971896, 0.018547412, -0.0208140109, 0.00183124596, -0.0259000361, 0.0110220276, 0.0146914292, -0.00511366781, -0.004198045, 0.0212562736, 0.0251260772, 0.00146758812, -0.0515789427, 0.0576047786, -0.00169908523, 0.0049927365, -0.0331973806, 0.033667285, -0.0265496112, -0.0188238267, 0.0268674884, -0.0416556634, 0.0202750023, 0.015631238, -0.0150093064, 0.0217123572, 0.0241033435, -0.0414068885, -0.00974361, -0.00145981403, 0.0300462544, -0.0158938318, -0.0277796555, 0.00614676718, 0.0140418559, 0.0501415879, 0.00190553232, -0.0249187648, 0.0300738961, -0.0545365773, 0.0299633294, -0.0102480669, 0.00112034241, -0.019639248, 0.0320087969, -0.0169718489, 0.00313903205, 0.0233293828, -0.0524081849, 0.0308202151, 0.000662962848, -0.04295481, 0.0413516052, -0.00603274582, -0.00431897631, -0.0201091543, 0.0268674884, 0.0284430496, -0.0443092398, 0.0314006843, -0.00932207797, 0.0186441559, 0.0170824155, 0.0252642836, -0.0193628352, -0.0285536163, 0.0115886768, -0.0132886264, 0.0274341367, 0.0412410423, -0.0153548243, 0.00816113781, 0.00386634748, 0.00238407496, -0.0141040487, -0.0334461518, 0.00613640156, 0.0195563249, -0.00290235202, -0.00952247903, 0.0244765021, -0.00257065473, -0.00201782561, 0.0381728411, -0.0703751296, 0.00429133466, 0.0340266228, 0.0051102126, 0.0673898533, -0.0329486057, -0.0411581174, 0.0157418046, 0.0572178, -0.0279593244, 0.0475709327, 0.0112638902, -0.00325132534, 0.0260935277, -0.041102834, 0.00326514617, 0.007311163, 0.00236161612, -0.052131772, 0.0229562223, -0.00156087801, 0.0038594373, 0.0187685434, 0.00469559105, -0.0410751924, -0.0414898135, 0.00589108374, -0.0379793495, 0.0314006843, -0.0475156493, -0.0468246117, 0.00908712577, 0.0233155619, 0.0702092797, -0.0069863759, 0.00200918783, 0.0187270809, -0.00539353769, -0.0140764071, -0.0233570244, -0.00264321337, 0.0411304757, 0.0338607728, 0.0194595791, -0.00168008171, -0.00902493298, 0.0177734513, 0.0131227775, -0.0210627839, 0.0161426049, 0.0148019958, -0.0304608755, -0.0137516204, -0.0428995267, 0.0328103974, -0.0150093064, -0.00744937034, -0.0571625158, 0.022555422, 0.00116525975, 0.018892929, 0.0198603813, 0.0259967819, 0.00531752361, 0.000455220084, -0.00709694158, -0.0209660381, -0.018547412, -0.0160873234, -0.0284706913, 0.0203441065, 0.0186717976, -0.0317323841, -0.0334185101, -0.0488977209, -0.00715222489, 0.00830625556, 0.0218367446, -0.0132195223, -0.0328380391, 0.00579433842, -0.00734571461, -0.00950174779, -0.00915623, 0.0266878176, 0.00245317863, -0.00557666225, -0.0038732579, 0.0173311885, 0.0155483149, -0.00235988852, -0.00146758812, -0.0436458476, -0.000863363384, 0.0402183086, 0.0243797563, -0.019805098, 0.00546264136, 0.00344827073, -0.0214635842, -0.0296039917, -0.0101236803, 0.0157556254, 0.0105659431, -0.0230806097, -0.0191555228, -0.0214635842, -0.047626216, 0.0624696724, 0.0473774411, 0.0465205573, 0.0223481115, -0.000284188631, 0.0244765021, -0.0112638902, -0.013032943, -0.00581506966, -0.0474327244, -0.0142629873, -0.016806, 0.0141386008, -0.0445856564, 0.0279455036, -0.0252504628, -0.0258032922, 0.0379517078, -0.0146085052, -0.00794691592, 0.0278487597, -0.00918387156, -0.00621241564, 0.00981271453, 0.0304885171, 0.0202611815, -0.0272544678, -0.00875542872, 0.00480961194, 0.0185197704, -0.0248082, -0.0182848182, -0.0228041951, -0.0295210667, 0.0137930829, -0.0106626889, 0.0451108441, -0.0284983329, 0.0166539717, -0.0401630253, -0.0180084035, -0.00805748254, -0.00795382634, -0.0373159535, -0.00734571461, -0.037177749, 0.0374818034, 0.0264943279, 0.0375647284, -0.0042809695, -0.00882453192, 0.0174555741, 0.00892818812, -0.0151889762, -0.0240065977, -0.0154653899, 0.0115886768, -0.011360635, 0.0708726719, 0.016543407, -0.0297698397, 0.016543407, -0.0376200117, -0.0121138645, 0.00417731376, 0.0305438, 0.0567202531, -0.0206067, -0.0100407563, -0.0267569218, -0.010068397, 0.0213806592, -0.0377305783, 0.00368667813, 0.00537280645, 0.00163775578, 0.0142629873, -0.000785189914, 0.00582889048, -0.00687235501, -0.0261626299, 0.0196116082, 0.021145707, 0.0442539603, -0.0243244749, -0.0028781658, 0.0450555608, -0.0480961204, 0.00340162567, -0.00462994259, 0.0305714421, 0.033612, 0.000958812714, 0.0187270809, 0.007815619, -0.00593945617, 0.0106557785, -0.0143873738, 0.00823715143, -0.0331697389, -0.0245732479, 0.000598610088, 0.0229285806, 0.0086310422, 0.00149004685, 0.00251709926, 0.0477644205, -0.0315665342, -0.0168198217, 0.0208692942, 0.00109356479, 0.00897656, -0.0271024406, -0.0425678305, -0.0110634901, -0.017123878, -0.00502383336, -0.0140556768, 0.0291064456, -0.0289682373, -0.0504456423, 0.00807130244, -0.0363208614, 0.0371224657, -0.00418076897, 0.00568031752, 0.0206343401, 0.0349664316, -0.0209383965, -0.0217123572, 0.0293552186, -0.00488217082, -0.0462441444, 0.0401630253, 0.0343583189, -0.00694836909, 0.0167645384, -0.00841682125, -0.00217330875, -0.0166954342, 0.0112984423, -0.0569966659, -0.012369548, 0.0135995923, 0.00177941821, -0.0150093064, -0.00104691985, -0.0297698397, -0.0207310859, -0.000782166608, 0.0215603299, -0.0301015377, 0.0239374936, -0.00756684644, 0.0205652378, -0.00274514128, 0.0345518105, 0.0240757018, 0.0329762474, 0.0569966659, -0.0180084035, 0.0138760069, 0.0615851469, -0.0293552186, -0.0360720903, -0.00735953543, -0.00103050773, -0.0072766114, -0.0199018419, -0.00527260639, 0.00113243563, 0.000288939511, -0.12051671, 0.00948101655, -0.00928061642, -0.0165019445, 0.0413239636, 0.00749774277, 0.0395825543, 0.00653029233, 0.0214635842, 0.0273650344, 0.0125561282, 0.008693235, 0.0287747476, -0.0368184075, -0.00245663361, 0.0426507555, -0.0375094451, -0.0167507175, 0.0148849199, -0.000127517778, 0.00404256163, -0.00993019063, -0.0600925088, 0.00689654145, -0.0143044498, -0.0312348362, 0.0341095477, 0.00540735805, 0.00829243474, -0.00659248559, -0.00720750773, -0.0352981277, -0.0106350472, 0.0149125615, 0.0239651352, -0.00782252941, -0.0207172651, -0.0239374936, 0.000345734064, -0.00974361, -0.00904566422, 0.0157556254, -0.00692418264, 0.025209, -0.0046333978, 0.00314594223, -0.00582889048, -0.0141662424, 0.00313384924, -0.0288023893, 0.0451108441, 0.00176214229, -0.00131210499, 0.0180775076, 0.00285570719, -0.0149816647, 0.0386151038, -0.0100753075, -0.0076635913, -0.0116508706, 0.0551723316, 0.023978956, -0.00832698587, 0.00717295567, -0.00445718365, 0.0137516204, 0.0176076032, -0.0184092037, 0.0372053906, -0.00361757446, 0.019722173, 0.0147190709, -0.0104622878, 0.0276138075, 0.0417662263, 0.00749774277, -0.0137999933, 0.031262476, -0.0398313254, 0.00301119033, -0.0150507689, 0.0308754984, -0.0353810526, 0.00843755249, -0.0220025927, -0.0423190556, 0.00145549502, 0.013910559, -0.0148158157, -0.00518622668, 0.0182848182, -0.0316494592, 0.00242553698, -0.0264666863, 0.0127150659, 0.0398866087, 0.017884016, -0.00410821, 0.00897656, 0.00888672564, -0.0133369984, -0.00197290839, 0.0390297249, 0.013578861, 0.00685162377, -0.0265772529, -0.00734571461, -0.0112086069, 0.00201264303, -0.0292999353, -0.0474050827, -0.0141316904, -0.0227627326, 5.22866067e-05, 0.0105244815, 0.0316218175, -0.0112155173, 0.00984726567, -0.00651647151, 0.0184092037, -0.025236642, 0.0255821608, -0.0160596818, 0.00952247903, 0.0320364386, 0.00838918, 0.0134268338, -0.0252642836, -0.0322299302, -0.0153410034, 0.0202473607, -0.0181189701, 0.0253057461, 0.0317323841, -0.0046714046, -0.0411304757, 0.00914240908, 0.00806439202, -0.032506343, -0.008403, 0.0213668402, -0.0159905776, 0.00556629663, 0.0118858228, 0.0121967886, -0.0268122051, 0.0218643863, -0.0370395407, 0.0457189567, 0.0389191583, -0.00168440072, -0.0138483653, 0.00991637, 0.000219619949, -0.00315458025, 0.00666158879, -0.00671341689, -0.0217814613, -0.0530715808, -0.024904944, 0.00410475489, 0.0192246269, -0.0320917219, 0.0141109591, -0.0276829097, 0.0420979261, 0.0226798076, -0.0153686451, 0.0221546199, -0.0325339846, 0.0184506662, 0.0151613345, 0.017621424, 0.017040953, -0.00697255507, -0.0208831131, 0.025153717, 0.0214635842, 0.0137101579, 0.0232741, 0.00334807043, 0.00157556252, -0.00561466906, -0.021477405, -0.0257065464, -0.029244652, 0.0350217149, 0.0355745442, -0.0256650839, -0.0209107548, 0.0310689881, -0.0453043319, 0.0494505502, -0.00305956276, 0.0111602349, -0.0122244302, -0.0129776597, -0.019970946, 0.00849974528, -0.0172344428, -0.0356851108, -0.0225968845, 0.00719368691, 0.00716604525, 0.0129776597, 0.000234736362, 0.00526224077, 0.0167368967, -0.00296109, -0.0129638389, -0.00104951125, 0.0203302857, 0.0138138141, 0.0331973806, -0.00112293381, 0.00310966303, -0.0434247144, 0.0275308825, 0.00261038914, -0.00217330875, -0.0156174181, 0.0143182697, -0.0307925735, 0.0126736043, -0.00146240531, 0.0244488604, -0.0116716018, 0.0498651713, -0.00174313877, -0.0201367941, -0.00533479964, -0.0122589823, -0.001227453, -0.0100545771, -0.01107731, -0.00235816115, 0.0245732479, 0.0211318862, 0.0035363778, 0.0211871695, -0.0190449581, -0.00343445, -0.0118028987, -0.00897656, 0.0204546712, -0.0152304377, -0.0158247296, 0.0207310859, 0.0401353836, 0.000502728857, 0.00262939278, -0.0263975821, 0.00971596874, 0.00895582885, 0.00816113781, -0.000230633334, -0.0418491513, 0.0178563762, 0.00423259661, -0.00501346774, 0.0276276283, 0.0118927332, 0.0113537246, 0.00391472, 0.0191969853, -0.00345345354, 0.00596709782, -0.031760022, 7.3530573e-05, 0.00142267079, -0.01374471, -0.0118996436, -0.0131849712, 0.00415658299, -0.0220855176, 0.0635753274, -0.010151322, 0.00597746298, -0.0215603299, -0.0203302857, 0.0227627326, 0.0204546712, -0.0101444116, 0.00354501582, 0.0125768585, -0.022057876, 0.00625042245, -0.0259414986, -0.005787428, 0.0125630386, 0.00452283211, -0.00901111215, 0.00572869, -0.0372883119, 0.019805098, -0.000852997822, -0.0106903296, -0.0200400501, -0.00943955407, -0.00608802913, 0.00425332785, 0.0117614362, -0.0372053906, -0.0113813663, -0.0307925735, 0.0153133627, 0.013958931, 0.0152304377, -0.0183401015, 0.00863795262, -0.0161702465, -0.0413239636, -0.0212839153, -0.00895582885, -0.0132195223, -0.0124041, -0.0228318367, 0.0217676405, 0.0356021859, 0.0157279838, -0.00109529239, -0.00950174779, 0.0195010416, -0.00518277148, 0.00978507288, -0.0193351936, -0.0070727556, 0.0302397441, -0.00620896043, 0.0351875648, 0.00851356611, 0.0328656808, -0.0295487083, 0.0365696363, 0.0126736043, 0.00963304471, -0.012701245, 0.000417429052, 0.0220302343, 0.0205652378, 0.00470250146, 0.000987318, 0.0139243798, -0.0148019958, 0.0038767131, 0.0219887719, -0.00928752683, -0.0527122431, -0.0075461152, 0.00921151228, -0.0165019445, 0.0190587789, 0.038283404, 0.0086794151, 0.00474050827, 0.00769123295, -0.0105244815, -0.0271853637, 0.00999238342, 0.0156174181, 0.0184368454, 0.00220267801, 0.021228632, 0.00515513029, 0.01069724, -0.0179531202, -0.0342201144, -0.0039941892, -0.0135373995, -0.0299356878, -0.0236196183, -0.0171791594, 0.0045504733, 0.00834771711, 0.0243382957, -0.000869841839, 0.0068689, -0.00570104877, -0.026660176, 0.0136686964, -0.00242899219, -0.00370740914, -0.017884016, -0.0138967382, -0.00831316598, -0.028415408, 0.0508049801, 0.00850665569, 0.0036555815, 0.0544260107, 0.00773269497, -0.0115195736, -0.00735262502, -0.0210904256, -0.0548129901, 0.0338607728, 0.0304332338, -0.00317876646, -0.0017776906, 0.00126459624, -0.0304055922, 0.0113813663, -0.035436336, 0.0287194643, 0.0201782566, -0.00565613154, 0.00835462753, 0.0254301317, 0.0154930316, 0.0226107053, -0.0119134644, 0.0298804045, -0.0119480155, -0.0312901177, -0.00282633817, 0.0109529234, 0.0131849712, 0.0663947612, 0.0252919253, -0.0341924727, 0.0081058545, -0.000356099597, 0.00644736784, 0.02556834, 0.0302121025, 0.00187443569, -0.00153237279, 0.00521041313, -0.0194595791, -0.028747106, -0.00861722138, 0.0110704, -0.00378687843, 0.0101098595, 0.0351046398, -0.0412410423, -0.00113157183, 0.0097367, -0.0316218175, 0.00723514892, -0.0191140622, -0.00177941821, 0.0194319375, 0.000941536797, 0.0113882767, 0.00761521887, -0.0119203748, 0.0203441065, -0.0064300918, 0.00606038747, 0.00799528882, -0.0476815, -0.0362932198, -0.00961922389, 0.0126390522, -0.0116923321, -0.0175937824, -0.0111533245, 0.00939809252, -0.0388085917, -0.012701245, -0.00816113781, 0.0178149138, -0.0364590697, 0.0227765534, 0.0397760421, -0.00239616795, -0.00176041469, -0.0178563762, 0.0192937311, 0.0111878766, -0.0147190709, 0.00717986608, -0.0197912771, 0.0385321788, 0.00195217726, 0.0306267254, 0.0157003421, 0.00685853418, 0.0317876637, 0.0307096485, -0.0179531202, 0.0140556768, -0.0198189188, 0.028664181, 0.0218367446, -0.0203164648, 0.0259967819, 0.0261349883, 0.00312002841, -0.0139174694, -0.0025551063, -0.0106212264, 0.0295210667, -0.0251398962, -0.0112569798, -0.0286918227, 0.00175004918, -0.0108078066, -0.00208865688, 0.0106903296, 0.0343583189, 0.0425125472, -0.0211042464, -0.0173588302, -0.00474396348, 0.00788472313, 0.00380069902, -0.0241862666, -0.0238960311, 0.0185335912, 0.0162808131, -0.00744246, -0.0106626889, -0.0056699519, -0.0459677279, -0.00499964692, 0.0234952308, -0.013081315, 0.00607075309, -0.0190864205, 0.0344965272, 0.0256236233, -0.00432588672, -0.00613640156, 0.0126874251, -0.0110565796, 0.00797455758, 0.00456429413, 0.00180187693, 0.022306649, -0.00966759678, 0.00594291138, 0.0130882254, 0.0185888745, -0.0210766047, -0.00202128082, -0.00116094085, 0.00948101655, -0.00747010112, 0.0196668897, 0.0146637885, 0.00300082471, 0.00336880144, -0.0102273356, 0.022555422, 0.00943955407, -0.00486143958, -0.016806, 0.00506529538, 0.0218229238, 0.00674105808, 0.00998547301, 0.00703474833, 0.0265081488, 0.0133231776, 0.0214635842, 0.000866386632, -0.0175246783, 0.00923915394, 0.0151613345, -0.0154792108, -0.0322022885, -0.0100476667, 0.00843064208, 0.0236057974, 0.00230806088, 0.0139727518, -0.0227765534, -0.0170685947, -0.0275861658, 0.0217952821, -0.0068378034, -0.02556834, 0.0155206732, 0.0265496112, -0.0111740557, 0.0138414549, 0.00170426804, 0.0323957764, -0.0738579482, 0.0144702978, -0.010234246, -0.0139865726, 0.0246285293, 0.0408817, 0.00773269497, 0.00612258073, 0.0043984456, 0.0331697389, -0.00746319117, -0.00443990761, 0.00799528882, 0.00824406184, -0.0112708006, 0.00157210731, -0.00757375685, 0.00876925, 0.00498582609, -0.014456477, 0.000806784781, 0.00207483629, -0.00313903205, -0.0140971383, 0.002214771, 0.0045159217, -0.0307096485, -0.0543707274, -0.0192108061, -0.0210351422, -0.0240757018, 0.017372651, -0.00347763975, 0.00995092094, -0.0165572278, -0.00207310868, -0.00404256163, -0.0135166682, -0.0207449067, -0.0105175711, -0.0124732032, 0.00805748254, 0.00792618562, -0.00777415745, 0.0309860632, -0.00684471335, -0.0296316314, -0.015036948, 0.021809103, 0.00507220579, -0.0128532732, -0.00305265235, -0.00842373166, -0.0349111483, -0.0154653899, 0.0448067859, -0.00124213763, -0.00798837841, 0.0049581849, -0.00621932605, 0.00266739982, 0.0237716455, 0.0120585822, -0.00794000551, -0.00307856617, -0.0219334885, -0.0136756068, 0.0109874755, -0.00291790045, -0.0150645887, 0.0164051987, 0.00482343277, 0.0315388925, 0.0048372536, -0.0181880724, -0.00362102967, 0.021145707, -0.00246354402, -0.0113053527, -0.0212700944, -0.0257894713, 0.00831316598, -0.00798837841, -0.0097367, 0.00237716455, -0.037094824, -0.0117268842, 0.0705962554, 0.00429479, -0.0143182697, -0.036597278, -0.000358475023, -0.042291414, 0.000839177112, 0.025236642, 0.000268640317, -0.028995879, 0.0136825172, -0.00302155572, -0.0012093134, 0.025236642, 0.00351046398, -0.0283601265, 0.000675487914, -0.00623314641, 0.016128784, -0.0319535136, -0.00490290206, 0.00466103898, -0.0274203159, -0.0123280855, 0.0128187211, -0.0219473094, 0.000814127037, -0.0172482636, 0.00481997756, 0.0156865213, 0.011111862, 0.00125250313, 0.0338054895, -0.000998547301, 0.00416003773, 0.0244488604, 0.043452356, -0.0157418046, 0.0155759556, 0.01278417, -0.00465412904, 0.0161426049, 0.0225830637, -0.0248911232, -2.19727917e-05, 0.017621424, -0.0220855176, -0.00568377273, -0.022057876, -0.00404256163, -0.00716604525, 0.0082717035, -0.0299909711, -2.66021943e-05, 0.0235366933, 0.00582198, -0.00714531448, -0.0195010416, 0.0154239284, -0.0359062403, -0.0100407563, 0.000594291138, -0.0253472086, 0.0208554734, 0.00829243474, -0.0145117603, -0.0259967819, 0.0360720903, -0.00742172869, 0.0263699424, -0.00481652236, 0.0195286833, 0.0296316314, 0.00312866643, -0.0301015377, 0.00889363606, -0.00195908756, 0.0152995419, 0.0176767055, -0.00468177, 0.00961922389, -0.0171100572, -0.0397760421, 0.0132678952, -0.00144512951, 0.0175246783, -0.0141178695, -0.0121484166, -0.00244972343, 0.0271853637, -0.0403012298, 0.00537971687, -0.0265357904, 0.0390020832, 0.00918387156, -0.0248358417, -0.00583234569, 0.00134752062, 0.000891436706, -0.00847901404, -0.042871885, 0.0217952821, 0.0242415499, 0.0156727, -0.00266048941, -0.0192246269, 0.0248634834, 0.015285721, 0.019141702, 0.0146637885, 0.000775256252, 0.0210213214, 0.0016576231, 0.0212562736, -0.00932207797, 0.0214635842, 0.0119203748, 0.00304919714, -0.00816113781, -0.0168198217, -0.00323404954, 0.00480961194, 0.0339713395, 0.0352428481, 0.0164743029, 0.00315630785, -0.0163222756, 0.00172931806, 0.0234952308, -0.019376656, 0.00136479654, 0.00673069246, 0.0184921287, 0.00623660162, -0.0181189701, 0.0156035973, -0.00925297476, 0.00325996336, 0.00554556539, 0.00168526452, 0.000298225321, -0.00882453192, -0.0043120659, -0.0124593824, 0.0124317417, -0.0139520206, -0.00180878723, -0.00136652414, -0.000950174755, 0.00415312778, -0.00260693417, -0.0326445512, 0.00508257141, 0.00147881743, 0.00295072468, 0.010614316, 0.0152304377, 0.0145255812, 0.0160596818, 0.00680325134, 0.0184092037, 0.00406329287, -0.00179496652, 0.00172413536, -0.00485107396, 0.022057876, -0.00656829914, 0.00328069436, 0.00384216127, 0.00758757768, -0.000447445927, 0.00449173525, 0.00206447067, -0.0222237241, 0.0244765021, 0.0280975327, 0.0111464141, -0.0399971753, 0.0113399038, -0.00742172869, 0.0164328404, 0.0348005816, -0.0100822179, -0.0040771137, -0.0587104373, -0.0207725484, -0.0172620844, -0.00776033662, 0.0131987911, 0.0126252314, -0.00370395393, 0.0288300309, 0.00966068637, 0.00972287916, 0.0104346471, 0.00212666392, -0.0130744046, -0.031842947, -0.00842373166, -0.0147467125, -0.00489253644, 0.0194872208, -0.00512057822, 0.00207656389, -0.00807130244, 0.0344965272, -0.0137861725, -0.0199294835, 0.0257203672, 0.00135702232, 0.0264390446, -0.0192937311, 0.00721441815, 0.0122451615, 0.0235366933, -0.00107801647, 0.00790545437, 0.00325823575, 0.0143873738, 0.00219231239, 0.00142526219, 0.00638171937, 0.0057183248, 0.0234675892, 0.0131089566, -0.000848246913, 0.0148434574, 0.00114712014, 0.0143873738, 0.0230391473, -0.0163499173, 0.00521041313, 0.0195977874, -0.0126528731, 0.0124939345, -0.00990945939, 0.00212666392, -0.00119549257, -0.00203510164, -0.000335800403, 0.0302121025, 0.0146776093, 0.00913549867, 0.0221684407, 0.012452472, -0.000157210743, 0.027240647, -0.00814731698, -0.00851356611, 0.0136065027, 0.016626332, -0.00683089299, -0.0100200251, -0.0176767055, -0.000326082722, 0.0185888745, -0.00351219159, -0.0153410034, 0.00967450719, -0.0138690965, 0.00743554952, 0.0059878286, -0.0190587789, -0.0191140622, -0.0355745442, 0.00115921325, -0.0253333878, 0.00809894409, -0.00308374898, -0.0258862153, -0.0334185101, 0.0200815126, 0.0194457583, 0.0249187648, 0.0122106094, 0.0161149651, -0.00189862202, -0.00620550523, -0.00210766052, 0.00104951125, -0.0274617784, -0.0300738961, 0.00706239, -0.00778106786, 0.000365817279, 0.017123878, -0.0212009903, 0.00931516755, 0.00234088511, -0.00928061642, 0.00400109962, 0.0241448041, 0.00618131878, 0.00968832802, -0.0193075519, 0.0163775571, 0.00618822919, -0.00958467182, -0.0121760583, 0.00782944, -0.0113537246, 0.00674796849, -0.0134682953, -0.00151596067, -0.0270886198, -0.0239098519, 0.0066339476, 0.0122935344, 0.0133093577, -0.0288300309, -0.00745628076, -0.0195425041, -0.00413930696, -0.0362103, -0.0145532228, -0.00584271131, -0.00526915118, 0.000405551866, -0.00432243152, -0.00840991084, -0.00912858825, -0.0199571252, 0.00483379839, -0.00930134766, -0.00305956276, 0.00582198, 0.0105452128, 0.0137378, 0.0047888807, 0.0113537246, -0.00437080394, -0.00441917637, -0.0172620844, 0.0124041, 0.0132540744, 0.0248634834, 0.00039389063, -0.000153647576, 0.0076290397, -0.00124818413, -0.0230529681, 0.0464099906, -0.0165986903, -0.00767050171, 0.00652338192, 0.00452974252, -0.0242415499, -0.00429133466, -0.0173588302, -0.00322886673, 0.0211595278, -0.0206896234, -0.0178010929, 0.000785621756, -0.017372651, 0.0174141116, 0.00149954855, 0.011954926, 0.0217676405, 0.00830625556, 0.0223204698, 0.0124939345, 0.0134337442, 0.0103586325, -0.00901802257, -0.00986799691, -0.00956394058, 0.0205375962, 0.00307511119, 0.0323128514, -0.0111671453, 0.000329106, 0.0302397441, 0.0127081554, 0.0352152064, 0.0466864072, 0.0284430496, 0.00628151931, 0.0206896234, -0.0101305908, -0.0320087969, 0.00147708983, -0.00933589879, 0.00620550523, -0.0179945827, 0.00676869974, -0.00756684644, 0.00743554952, -0.00273132068, 0.036597278, 0.0182433557, -0.0123419063, -0.00366249192, 0.0382557623, 0.00630225, -0.0061916844, -0.0167368967, 0.00433625234, -0.0160458609, -0.00245836121, 0.022555422, 0.00452974252, 0.0344412439, 0.00318913208, 0.0581576079, 0.00693454826, 0.0082233306, -0.00854120776, -0.00749774277, -0.0224172138, -0.0213253777, -0.00885217357, -0.0270747989, -0.00786399189, -0.0155621357, 0.0283048432, 0.00086120388, 0.0531821474, 0.00206101546, -0.010648868, -0.003990734, -0.0152995419, -0.0178287346, 0.00329797016, -0.0179393, 0.0143182697, 0.0176628847, -0.0158247296, -0.000497546047, 0.0072766114, -0.00097954378, -0.0104070054, -0.0162531715, -0.00870705582, 0.0248773042, 0.00611221511, -0.0153824659, -0.00669614086, 0.0140556768, 0.0162255298, -0.00541081326, 0.00315976306, 0.00173450087, 0.00135529472, -7.99010595e-05, -0.00780179864, 0.0119687468, 0.0209936798, -0.0179393, 0.000108946173, 0.0108976411, -0.00797455758, 0.00847210363, 0.0238545705, 0.0188791081, 0.00785017107, -0.0219196677, -4.88584192e-05, -0.00977125205, -0.00502037816, -0.0100614876, 0.00901802257, -0.00496509532, 0.00895582885, 0.00713840406, -0.00446063885, -0.0124455616, 4.47553903e-05, 0.0105659431, -0.00218540197, 0.00950174779, -0.0421532094, -0.00735262502, -0.0057839728, 0.0165295862, -0.00110306649, 0.00471977703, 0.011574856, -0.0110496692, -0.000803329574, 0.0269227698, 0.00961922389, 0.00220613298, 0.0028764382, -0.00755993603, 0.0610876, 0.0178149138, 0.0170271322, 0.00372468517, 0.00702783838, 0.0202611815, 0.0077465158, 0.00368322292, 0.00709694158, 0.0185059495, 0.00433970755, 0.0020955673, 0.0426231138, -0.0267016385, -0.00308374898, 0.0202888232, 0.00966759678, -0.00954321, -0.0020972949, 0.000192518361, 0.0253057461, -0.019805098, 0.00858958, -0.00688617583, 0.0261349883, -0.00178114581, -0.0291617271, -0.00724896975, 0.0169856697, 0.0214635842, 0.0147190709, 0.00432934193, -0.00424641743, 0.00704856915, 0.021643253, 0.00941882376, -0.000195001776, 0.0103793638, -0.0146361468, -0.0161011443, -0.0048372536, 0.00670305127, 0.00581852486, 0.0020955673, -0.00584962126, 0.0100545771, 0.00419459, -0.0123488167, 0.00707621081, -0.00322022871, -0.00377651281, 0.00955012068, 0.00227005384, 0.0278349388, 0.00926679559, -0.00571486959, 0.0141386008, -0.0038767131, 0.00632643653, 0.0023201541, 0.0121000437, 0.0108907307, -0.00112207, 0.00883144233, -0.0265496112, 0.0121622374, -0.00612603594, -0.0249464065, 0.00843064208, 0.00460575614, 0.0157279838, -0.0202611815, -0.00872778706, -0.0115195736, 0.0141316904, -0.013910559, 0.00472668745, 0.0102757085, -0.007311163, -0.0102549773, 0.00681361696, 0.00352946739, -0.0131089566, 0.00373159559, -0.0055352, -0.0258585755, 0.00639554, 0.0221269801, 4.64289951e-05, 0.0130191222, 0.0194042958, -0.0120793125, -0.00914240908, -0.0144426562, 0.0115955872, -0.0139036486, -0.013330088, -0.0127150659, -0.0072766114, 0.017123878, 0.0089834705, -0.00691381702, 0.0147328917, -0.0115057528, 0.0146361468, 0.00524150953, 0.00456774933, -0.0286918227, -0.0211318862, -0.0223204698, -0.03375021, -0.0208692942, 0.0129292877, 0.000638344674, -0.0205652378, -0.00964686554, 0.0346070938, 0.0124455616, 0.00853429735, -0.00892818812, -0.018796185, -0.0230944306, 0.0146914292, 0.00203164644, 0.025319567, 0.0087968912, -0.028664181, -0.0109321931, 0.00284879678, 0.0232049953, 0.000608543749, 0.00349318795, -0.000223938914, 0.0019815464, 0.000329537899, -0.00389398891, 0.0155759556, -0.00258447533, -0.00701747276, 0.0137032475, 0.0259967819, 0.0318982303, -0.0242830124, -0.0205652378, 0.0126321418, -0.0141524216, -0.000369056535, -0.00626424327, -0.0169165656, 0.00565613154, 0.0266878176, 0.00236161612, -0.00722132809, 0.0149816647, -0.0114642903, 0.00341199129, 0.00375232659, 0.00693800347, -0.00887981523, 0.0150231272, -0.00884526316, 0.00436389353, 0.0061916844, 0.00541081326, 0.00662703719, -0.0124455616, 0.0110496692, 0.00264666858, -0.00224241242, -0.00653374707, -0.0359615237, 0.0231220722, -0.020219719, -0.0197636355, -0.00940500293, 0.000830539153, 0.0219611302, -8.4058076e-05, 0.0243382957, -0.0124939345, -0.0217952821, 0.0159767568, 0.00239098514, 0.00742172869, 0.0095777614, 0.0111049516, 0.0226107053, -0.0265219696, 0.0013190154, 0.0119341956, 0.0164190196, 0.0385598205, -0.00238753017, 0.00994401053, -0.00807821285, 0.00437425915, 0.0116646914, 0.00221131579, -0.000187335594, 0.00489253644, -0.012535397, 0.00435698312, -0.0163360965, -0.0282219183, 0.0138207236, -0.017137697, -0.00874160789, -0.0139243798, -0.00564576592, 0.00479579112, -0.00732498383, -0.00109183718, 0.0163222756, 0.0241309833, 0.0121691478, 0.0264666863, 0.0111878766, 0.000406847568, -0.00483379839, 0.00470250146, 0.00279005873, -0.0123833688, -0.00959849264, 0.00372468517, -0.0165295862, -0.00369704375, 0.00530024758, 0.0068343482, -0.00173968368, -0.0151613345, 0.00546609657, 0.0072766114, 0.00871396624, 0.016294634, -0.0134061025, -0.00366594712, 0.00505492976, -0.00117303396, -0.00328760478, -0.0294657834, -0.00543499971, -0.000926852284, -0.0340819061, -0.00890054647, -0.0123419063, -0.00825788267, 0.0121484166, 0.00094844721, -0.0192246269, -2.09065438e-05, 0.00294381427, -0.0077465158, 0.0105659431, 0.0235781558, -0.00515513029, -0.00157124351, -0.0105866743, 0.0152580794, -0.00468177, -0.0252504628, 0.00929443724, -0.00312348362, -8.2263e-06, -0.0208416525, 0.01069724, -0.0135373995, -0.00678252, 0.00589108374, -0.0260244235, -0.0134475641, 0.00867250469, 0.00843064208, 0.0326721929, -0.000281381304, -0.0276967306, 0.00174400257, -0.022555422, -0.000664690451, 0.0079192752, -0.00137084303, 0.00259829615, 0.00870705582, -0.00981962401, 0.000465153746, 0.000442263176, 0.0012179513, 0.00914240908, 0.00285570719, 0.0184921287, 0.0110496692, 0.0133784609, -0.00472668745, 0.00223377463, 0.0170271322, -0.00201437064, 0.0178563762, -0.0118650915, -0.00457811495, 0.0114090079, -0.00107888028, -0.00261384435, -0.0318153054, 0.00908021536, 0.0182571765, 0.0237992872, 0.000336448255, 0.031925872, 0.0153133627, 0.0076290397, 0.018892929, -0.00787781272, -0.00405292725, 0.00629533967, 0.0284706913, -0.000531666, -0.0107663441, -0.0256650839, -0.0237440038, -0.0126874251, -0.00156692462, 0.0169165656, -0.0109114619, -0.00932207797, 0.0140280351, -0.0147467125, -0.00549373776, -0.0193075519, 0.0150507689, -0.00602583587, 0.00640590582, -0.00171204214, -0.00528988196, 0.00447791442, 0.00141144148, 0.00210247771, 0.00981962401, -0.0076290397, 0.00383525086, 0.0010002749, 0.00858266931, -0.00439153519, -0.00396309281, 0.00324441493, -0.00574251078, 0.00162652647, -0.0107732546, -0.0305161588, 0.0028591624, 0.0107939858, -0.0244903229, 0.0191278812, -0.000875024591, 0.000444854551, -0.00537280645, 0.0169027448, -0.0125008449, 0.0076635913, 0.0100614876, 0.0135097578, -0.00315112504, 0.00017178728, 0.00718677649, 0.00522423349, -0.0104968399, 0.00200573262, 0.0150645887, 0.0101029491, -0.00352773978, 0.00211802591, 0.00448828, 0.0158938318, -0.0138690965, 0.0047543291, -0.00819568895, 0.0182433557, 0.00787090231, -0.0195839666, 0.0225001387, 0.0360997319, -0.00923915394, 0.0118305394, -0.021145707, 0.000282029156, 0.00608802913, -0.0152027961, 0.0269780532, -0.00541772367, -0.0121967886, 0.00540735805, 0.0270471573, -0.00971596874, -0.0151475137, -7.07232357e-06, -0.0208140109, -0.0124110105, -0.0228318367, -0.0286365394, -0.0164881237, 0.000605952344, 0.00821642, -0.00207829149, 0.0122658927, 0.00424641743, -0.00717295567, 0.0182295348, 0.00635407772, 0.0259553194, -0.018049866, -0.00838226918, 0.0176905263, 0.0145808635, 0.00825097226, -0.00134492922, 0.00371431955, 0.00491672242, -0.0108423578, -0.0204546712, 0.00445718365, -0.0166677926, -0.00330488058, 0.00329106, 0.00582543528, -0.00173881988, 0.0134475641, 0.0152580794, -0.038863875, 0.00160665915, 0.0213530194, -0.00780179864, 0.0209245756, -0.0127150659, -0.00123522722, 0.0297421981, -0.00592563534, -0.00226832624, 0.00396654801, 0.00508257141, -0.0346070938, -0.0202750023, -0.0303503107, 0.0119272852, -0.00107456127, -0.0143320905, 0.0404670797, 0.000224154865, 0.0144841187, 0.0131918807, 0.0173588302, 0.0141178695, -0.00272786547, 0.0103309909, 0.00790545437, 0.00410821, 0.00963304471, -0.00903184339, -0.0192522686, -0.0213806592, 0.00980580412, 0.00456083892, 0.02540249, 0.00125595834, 0.00984726567, -0.00142007938, -0.0107110608, -0.00203337404, 0.00868632551, 0.0335290767, -0.016543407, 0.00361066405, -0.018298639, -0.00361757446, 0.0129292877, 0.0237854663, -0.00432934193, 0.0148296366, -0.00999929383, 0.00651992671, 0.0033307944, 0.00758757768, -0.00799528882, -0.00500655733, -0.0139865726, -0.0069552795, -0.0149816647, 0.0141524216, -0.0128394524, 0.0106419576, -0.019141702, -0.0140694967, 0.0129154669, -0.00877616, -0.00505147455, 0.0313730426, 0.00139416556, -0.0138552757, 0.00323404954, -0.00335152564, -0.0160043985, 0.00777415745, -0.0101720532, 0.00215085014, -0.00441572117, -0.00667886483, -0.00517240586, -0.0086310422, -0.0111533245, -0.000950174755, 0.000906985, -0.0229285806, -0.000837881409, -0.00958467182, -0.00068714912, 0.00856884848, 0.00306474557, 0.00497200526, 0.0122244302, 0.0133991921, -0.0110634901, -0.017718168, 0.024407398, -0.0116301393, -0.026908949, 0.00372468517, 0.0159214735, -0.0161702465, 0.00105037505, 0.00198672898, 0.0082717035, 0.00405638246, -0.0048718052, -0.0136272339, 0.0153824659, -0.00793309603, 0.0210627839, 0.00469904626, -0.0164743029, -0.0126045, 0.0282219183, 0.0255268775, -0.00789163355, 0.0215326883, 0.00742172869, -0.00409438927, -0.0100960387, -0.00770505378, 0.0194734, 0.00113416312, -0.00649919547, -0.013032943, 0.0145255812, 0.00618477399, -0.0018796185, -0.023978956, 0.0119203748, 0.0185750537, -0.00802984089, 0.00128619117, -0.00902493298, 0.0218782052, 0.00952247903, 0.0146085052, 0.00034832544, -0.0237440038, 0.00983344484, 0.0142629873, -0.0102480669, 0.00929443724, 0.00638517458, 0.0126390522, 0.0152166169, 0.0206896234, -0.00902493298, 0.0154792108, 0.0266878176, -0.0102757085, -0.00757375685, -0.00645427825, -0.0134890266, 0.0171929803, -0.00230460567, -0.003990734, -0.00303364894, -0.00684816856, -0.0250016898, -0.00154273829, 4.87571924e-06, 0.00862413179, -0.00753229437, -0.0103862742, -0.00322541152, 0.00112034241, -0.00258102012, -0.0160182193, 0.00440190081, -0.00215603295, 0.000644391286, 0.00550755858, 0.00937736128, 0.000318092614, 0.0239513144, -0.0096261343, -0.0214635842, 0.0139796622, 0.00729734218, 0.013115867, -0.00236334372, 0.00670305127, 0.00356574683, -0.000772664847, -0.0207725484, -0.0111947861, -0.00429824507, -0.00213875715, 0.0239513144, -0.0228041951, -0.0133024473, 0.0105521232, 0.000662962848, 0.0168889239, 0.00413930696, 0.0115886768, -0.00201782561, 0.00401837565, -0.0114781111, 0.00878998078, 0.00917696115, -0.00764977094, 0.00275205169, 0.0154377492, -0.0172897261, 0.0137723517, 0.00977816246, -0.0289405957, 0.00536935125, -0.000928579888, 0.00137775345, -0.0344136022, 0.00735262502, -0.0037730576, 0.0134890266, 0.0199571252, 4.3729633e-06, -0.00990945939, 0.00268294802, 0.0105037503, -0.00653720228, 0.00582543528, 0.00571486959, 0.00167230761, -0.0119687468, -0.011574856, 0.0107594337, 0.00663740281, 0.000792100269, -0.0183124598, 0.00209211209, 0.0125492178, -0.00730425259, -0.0147467125, 0.0171929803, -0.000333209027, 0.00357956742, 0.0380069911, 0.0359891653, -0.00114798394, 0.0230253264, 0.0108423578, -0.0184230246, -0.00229769526, -0.0064266366, -0.0344136022, -0.0148987407, 0.00469559105, 0.0177043471, -0.0259829611, -0.0241448041, 0.00450210087, -0.00151077786, 0.00361411925, 0.00134665682, 0.00464030821, 0.00379033363, 0.0187547226, -0.021477405, -1.37397428e-05, -0.000958812714, 0.0155897764, -0.0138138141, 0.0136272339, -0.00146499672, -0.00705893477, 0.033667285, -0.00482343277, -0.00345863611, -0.0117821675, -0.00129051006, 0.00599473901, 0.000983862788, 0.0192384478, -0.00283670356, 0.0127081554, -0.0079192752, 0.00165503169, -0.0223757531, -0.0068689, 0.000652597286, 0.0205790587, -0.0235228725, 0.00446754927, -0.00246354402, -0.0159905776, -0.0123488167, 0.0282910224, 0.0127565283, -0.0130398534, -0.00726279058, 0.00847210363, -0.00697601028, 0.0254992358, 0.023813108, 0.0288576726, -0.00889363606, 0.000394538481, 0.0200124085, 0.0115472153, -0.0183953829, 0.0049581849, -0.00016260946, 0.019722173, -0.0104968399, -0.00593600096, 0.00439499039, 0.00597400777, 0.00268122042, -0.0158385504, -0.0218643863, -0.00507911621, 0.00984035525, -0.0189620331, 0.0197498146, 0.0192384478, -0.00920460187, -0.00520004751, 0.00842373166, 0.0364037864, -0.0224448554, 0.00597746298, -0.0230944306, -0.0131780608, -0.00529679237, 0.0151475137, 0.00956394058, 0.0181742515, -0.0155621357, -0.00717295567, -0.0150507689, -0.00360720907, 0.00798837841, 0.0107248817, -0.00596018741, 0.0169165656, -0.0015461935, -0.00473705307, 0.0160596818, 0.0209245756, 0.018547412, -0.00299045909, -0.000412462221, 0.0148434574, 0.0137654413, 0.00789854396, 0.00299736951, -0.00287298299, 0.0120585822, 0.00656138873, 0.00823024102, 0.00844446197, -0.00972287916, -0.0172482636, 0.00941191334, -0.0164051987, 0.00624351203, -0.00856884848, 0.0140764071, -0.00276587252, 0.0270747989, -0.00685853418, 0.000841768458, -0.0218505654, 0.00282115536, -0.0250569731, 0.00914931949, 0.0135581307, -0.0079192752, -0.00884526316, -0.020302644, -0.00016282541, -0.0135235786, -0.00480270153, -0.00329797016, -0.012155327, 0.00383179565, -0.00508602662, -0.000135507886, 0.0151198721, 0.00216121576, 0.00991637, 0.00799528882, -0.00313557684, 0.0155621357, 0.0267569218, 0.00424296223, -0.00577015243, 0.00639208499, 0.000241214831, -0.00130605837, -0.00995092094, 0.0162808131, -0.0129431076, -0.00656484393, 0.0123902792, -0.00435698312, 0.0248220209, -0.00453319727, -0.00539008249, 0.0125906793, 0.00031593311, 0.0146361468, 0.00466449419, -0.012950018, -0.00949483737, 0.0203579273, -0.0109805651, 0.0227903742, 0.000621500658, -0.00592563534, 0.0219058469, 0.00103309914, -0.0179531202, 0.0105797639, 0.0106281368, -0.00183124596, 0.0053106132, -0.0202888232, 0.0141938832, 0.00903184339, -0.0204546712, -0.0119341956, -0.0204823129, -0.00311830081, 0.00432588672, 0.000168548053, -0.00136393274, 0.00560775865, 0.00213357434, -0.00970214792, -0.0315388925, 0.00625387765, -0.0191969853, -0.00207829149, 0.0093911821, -0.00907330494, 0.00664776843, 0.00562503468, 0.0102204252, 0.0196254291, -0.00304055936, -0.0124662928, -0.0154101076, 0.0223619323, -0.0130951358, 0.00589108374, -0.0195010416, -0.0122589823, -0.0169303864, 0.00928061642, 0.0111187724, -0.0128601836, 0.0239651352, -0.00356920203, -0.00948792696, -0.00389744411, 0.000796419219, -0.000669441302, 0.0275447033, 0.0132609848, -0.0206758026, -0.003551926, -0.00937736128, 0.00990254898, -0.00149350194, -0.00987490732, -0.0027555069, -0.0016584869, 0.0068689, 0.00568031752, 0.0115817664, 0.0089143673, 0.00645427825, 0.0112362485, -0.00467486, -0.0154792108, -0.00252400967, -0.0106350472, 0.00474396348, 0.0106350472, -0.00574942119, 0.0222237241, -0.0190449581, 0.0114297392, -0.0152304377, -0.0107663441, 0.00157729012, -0.00552829, 0.0124939345, -0.00159802125, 0.00802293047, 0.00858266931, -0.00185543217, 0.00119981158, -0.0212562736, 0.0281389933, 0.0185059495, -0.00726970099, -0.00615022238, 0.00649228506, 0.00807821285, 0.000776551955, -0.00550410338, -0.00370049896, 0.008693235, -0.00189862202, 0.00500310212, 0.00657520955, -0.00501346774, -0.0287747476, 0.00201264303, 0.00646118866, 0.0107732546, -0.0168889239, 0.0167092551, 0.0134475641, 0.0238683913, 0.0146085052, 0.00145722262, 0.00837535877, 0.00705893477, -0.00884526316, 0.0124110105, -0.0145255812, -0.025209, -0.0136410547, -0.00697255507, -0.00911476742, -0.0257756505, 0.0113882767, 0.00585307647, -0.0032150459, -0.00237543695, -0.0133231776, -0.0155483149, 0.00164034718, 0.00587380771, -0.000831834855, 0.0210351422, -0.00157556252, -0.00120499439, -0.0208416525, 0.00294554187, -0.00729043176, 0.00977125205, -0.00312693883, 0.0128394524, 0.00747010112, -0.00405292725, -0.00384561648, -0.000710471591, -0.00188134611, 0.00698292069, -0.00129914808, -0.00334116, 0.00255165109, -0.0192522686, 0.0134890266, -0.00711076241, 8.72973105e-05, -0.000741568219, -0.00900420174, 0.00787090231, 0.0170547739, 0.00585307647, -0.0194872208, -0.0185335912, 0.00640936056, -0.0130053014, -0.0292999353, -0.0125492178, 0.0073940875, -0.00664776843, -0.001101339, 0.0171515178, 0.00117908057, 0.0123833688, -0.0156450588, -0.00641972618, -0.00957085099, -0.00386634748, 0.000546782394, -0.00988872815, 0.00141057768, 0.00502037816, 0.00948101655, 0.00469904626, 0.000759707938, -0.0199156627, 0.0217952821, 0.00876233913, 0.00404601684, 0.0263008382, 0.000248125172, 0.01069724, -0.0106004952, 0.00362102967, -0.0136894267, -0.0112293381, -0.0200953335, -0.0156450588, 0.00087459269, -0.0223757531, -0.0181189701, 0.00723514892, 0.00947410613, 0.0152304377, 0.0143320905, 0.00836153794, -0.00917005073, 0.013330088, 0.00790545437, 0.00797455758, -0.00131556019, -0.0137585308, 0.0025395581, -0.00950174779, 0.0046679494, 0.00391817512, -0.010863089, 0.00650956109, -0.0270333365, -0.0169856697, -0.0183539223, -0.00518622668, -0.00778797781, 0.0227489118, 0.000878479797, -0.0123557271, 0.0178149138, -0.00960540306, 0.00388362352, 0.0168198217, 0.00743554952, -0.00141403289, -0.00966759678, -0.00604311144, 0.0114573799, -0.0120309405, -0.00893509854, 0.000471200299, -0.020896934, 0.0154101076, 0.0181742515, -0.00970214792, 0.0129776597, -0.00065043784, 0.0167783592, 0.00108751818, 0.00391126471, -0.00224932283, 0.0229147598, -0.00211802591, -0.00611912552, 0.0170962363, -0.0218920261, -0.0163499173, -0.0118720019, 0.00551101379, 0.000289155461, 0.00905948505, 0.0116439601, 0.00977816246, -0.00948101655, 0.0114573799, 0.00520350272, -0.00329106, -0.000579174724, 0.00984035525, -0.00217676396, 0.0104761086, -9.46395667e-05, 0.0188514683, -0.00993710104, 0.0132886264, -0.000508775411, 0.0014287174, -0.00660630595, 0.00984035525, 0.00116353226, 0.0171929803, 0.0105797639, -0.00673414767, -0.00813349616, 0.0142215248, -0.0133922817, 0.00405292725, -0.00700365193, -0.00787090231, 0.0184368454, 0.0089834705, -0.00172413536, 0.00218194677, -0.00127150666, -0.0038732579, -0.000896619458, -0.0208278317, -0.00329969777, 0.00281251734, 0.0216017924, 0.0326998346, 0.00672723725, 0.00705547957, 0.0016602145, 0.0085757589, 0.00143217249, -0.00240653357, 0.0191831645, -0.0309307799, -0.00713840406, 0.011574856, 0.00352946739, 0.00966759678, -0.028166635, 0.014871099, -0.0122106094, 0.013032943, 0.0108147161, 0.00191071513, 0.00139243796, -0.0035381054, 0.00085602107, -0.021145707, -0.000376182841, 0.0203855671, -0.0101927835, 0.00534171, -0.0220164135, -0.0192384478, -0.0163084548, 0.0053106132, -0.00467486, -0.0411581174, 0.0018882564, -0.00852738693, 0.0168889239, 0.00495127449, -0.00258620293, -0.015036948, 0.000199644681, -0.0114712007, -0.0124041, 0.0207725484, -0.0145946844, -6.31110379e-05, -0.0175523199, -0.00787090231, -0.0374265201, -0.012369548, -0.00643700222, -0.00442608679, -0.016460482, -0.00887290481, -0.00560430344, 0.00873469748, 0.00138639135, 0.00518277148, 0.0398866087, -0.00553865498, 0.00278314832, -0.00760139804, -0.0132886264, -0.0266739968, -0.0174002908, 0.0124662928, 0.01679218, -0.0209936798, -0.00994401053, -0.0154101076, -0.011526484, -0.0132609848, -0.00823024102, 0.0170547739, 0.0111187724, -0.0315112509, -0.00170081283, 0.00197463599, -0.0304608755, 0.0392232165, -0.0204132088, -0.0144011946, 0.0161149651, 0.014207704, -0.0115955872, 0.0129638389, -0.0228733, -0.0113951871, -0.0196116082, 0.00098472659, -0.00688617583, -0.0162393507, -0.00154187449, 0.000194245964, -0.00699328631, -0.0158109087, 0.00289716921, -0.00865177345, -0.00191935303, -0.00513439905, -0.0163084548, 0.0058358009, 0.00161529717, 0.00689999666, -0.0105659431, -0.0136963371, -0.0240895227, 0.0210075, 0.00737335626, -0.00124818413, -0.0203717481, 0.00994401053, -0.0157279838, -0.00540044811, -0.00849974528, -0.0260935277, -0.0126874251, -0.00315285265, 0.0133231776, 0.00337398425, 0.00694491388, -0.0130467638, -0.00259138574, -0.0042809695, -0.0134475641, 0.0250984356, -0.00686198939, -0.00113502692, 0.0120032988, 0.0239513144, -0.0135166682, 0.0132748056, -0.0140349455, 0.00227005384, -0.0129776597, -0.00451246649, 0.00743554952, 0.0135926818, -5.5876757e-05, 0.0154239284, -0.00366594712, -0.0265219696, 0.00481652236, -0.0248220209, -0.0172206219, -0.0171100572, -0.00404256163, -0.0266463552, 0.0127565283, -0.0300462544, 0.00471632229, -0.0132955369, 0.000452628708, -0.000473359803, 0.00634025736, 0.00856884848, 0.0181327891, -0.0204132088, 0.00371086434, -0.00523805432, -0.0141040487, 0.0389468, 0.000143390018, 0.0134268338, -0.00386289228, 0.00852738693, -0.0103448117, 0.0109805651, 0.00435698312, 0.00818186905, 0.00375232659, -0.0076290397, 0.000474655506, -0.0101720532, -0.00503419852, -0.0125077553, 0.0134682953, -0.00877616, -0.0290511623, -0.00459884573, -0.0379793495, -0.011657781, 0.00404947205, 0.0052795168, 0.0167092551, 0.0051931371, -0.00388707872, -0.0295210667, -0.0299356878, 0.035353411, -0.0203855671, -0.0143182697, -0.0117683467, -0.0201229751, 0.0137516204, 0.0132195223, -0.0247114543, -0.000109162123, 0.00955012068, -0.0163360965, -0.00118512707, -0.00534171, -0.0116716018, -0.00140798627, 0.00290235202, 0.00362794, -0.0313730426, -0.00758066727, 0.0206619818, -0.00123781862, 0.0163499173, -0.0111878766, 0.0123557271, 0.00474741869, -0.00769814337, 0.0197912771, 0.0242968332, 0.0144426562, -0.0146085052, -0.0117890779, 0.0140418559, -0.018547412, -0.0156727, -0.00908712577, -0.0257065464, -0.0190864205, -0.00620550523, -0.00168785593, 0.0140694967, 0.0111049516, -0.015036948, -0.00266739982, 0.0190173164, -0.0127496179, -0.0209245756, -0.0177458096, 0.0102204252, 0.00392854074, -0.0016645334, -0.0269365907, 0.0026397584, -0.00478197029, -0.021145707, -0.00132247049, -0.00522077829, 0.019141702, -0.00776033662, -0.00232706452, -0.0202611815, 0.017469395, 5.42301459e-05, -0.00247218204, 0.00848592445, 0.00125163933, 0.00721441815, 0.0125768585, 0.00489253644, 0.0155621357, -0.0058392561, -0.00128014456, 0.0163222756, 0.0118720019, -0.0119272852, -0.00522423349, 0.000150624299, 0.00937045086, 0.0217952821, 0.00333770481, 0.0119480155, 0.02080019, 0.0110980412, -0.00992328, 0.00638863, -0.00597055256, 0.00523459911, 0.00594291138, 0.00370740914, -0.00744937034, -0.000220591712, 0.0203855671, 0.00878307, 0.00792618562, 0.00328069436, -0.021477405, -0.0239098519, -0.0106765097, -0.0184921287, 0.00443645241, 0.0168612842, 0.000118771844, -0.0119480155, -0.0113744559, 0.0105728535, 0.00743554952, -0.00301291794, 0.011989478, -0.00936354, -0.00369704375, 0.0116439601, -0.0059878286, 0.0165019445, -0.0149540231, 0.0137585308, 0.00281770015, -0.0115472153, 0.00589799415, -0.0059878286, -0.0135166682, 0.0109805651, 0.00128791877, 0.00664085802, -0.0197636355, -0.012203699, 0.00494436407, 0.0171653386, -0.00672723725, -0.00619513961, -0.018215714, -0.0106626889, 0.00623660162, 0.00752538443, -0.00837535877, 0.00864486303, -0.00811967533, 0.0261211693, 0.00398382358, 0.0259691402, -0.00591181451, 0.0168198217, -0.0056699519, 0.00279524154, 0.00561121386, 0.00546264136, -0.0183953829, -0.0033307944, 0.00129310146, 0.00649228506, 0.00465412904, 0.00447445922, 0.0137861725, 0.00852738693, -0.00204892224, 0.0140833175, 0.00568377273, 0.000434704969, -0.00340508088, -0.0153548243, -0.0123557271, -0.00200400501, 0.00282633817, 0.00666849921, -0.00940500293, 0.0053451648, -7.56900627e-05, 0.0213806592, -0.0174555741, 0.0159352943, -0.0291064456, -0.0163775571, 0.0141040487, 0.00230287807, -0.00577360764, -0.00244972343, 0.00602929108, 0.00232188171]
|
16 May, 2024
|
Fabric.js ActiveSelection cornerStrokeColor Property
16 May, 2024
Fabric.js is a JavaScript library that is used to work with canvas. The canvas ActiveSelection is one of the class of Fabric.js that is used to create ActiveSelection instances. The canvas ActiveSelection means the ActiveSelection is movable and can be stretched according to requirement. In this article we will be using cornerStrokeColor property to set the color of the corners of the canvas ActiveSelection.
Approach: First import the Fabric.js library. After importing the library, create a canvas block in the body tag that will contain the ActiveSelection. After this, initialize an instance of Canvas and ActiveSelection class provided by Fabric.js and use the cornerStrokeColor property to set the color of the corners.
Syntax:
fabric.ActiveSelection(ActiveSelection, {
cornerStrokeColor: string
});
Parameters: This function takes a single parameter as mentioned above and described below:
cornerStrokeColor: This parameter takes a string value that specifies the color of the corners.
Example: This example uses Fabric.js to set the cornerStrokeColor property of the canvas ActiveSelection.
HTML
<!DOCTYPE html>
<html>
<head>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center; width: 400px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | ActiveSelection cornerStrokeColor Property
</b>
</div>
<div style="text-align: center;">
<canvas id="canvas" width="500" height="500"
style="border:1px solid green;">
</canvas>
</div>
<img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20200327230544/g4gicon.png"
width="100" height="100"
id="my-image" style="display: none;">
<script>
var canvas = new fabric.Canvas("canvas");
// Getting the image
var img = document.getElementById('my-image');
// Creating the image instance
var geek = new fabric.Image(img, {
});
canvas.add(geek);
var geek = new fabric.IText('GeeksforGeeks', {
});
canvas.add(geek);
canvas.centerObject(geek);
var gfg = new fabric.ActiveSelection(
canvas.getObjects(), {
cornerStrokeColor: 'red',
transparentCorners: false
});
canvas.setActiveObject(gfg);
canvas.requestRenderAll();
canvas.centerObject(gfg);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property
|
https://www.geeksforgeeks.org/fabric-js-activeselection-cornerstrokecolor-property?ref=asr9
|
CSS
|
Fabric.js ActiveSelection cornerStrokeColor Property
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.00957402, 0.0060816789, -0.0154489875, 0.0347856097, 0.0456071533, 0.0262560267, 0.00107345078, 0.00251680706, -0.0109738586, -0.0231082048, -0.00513153, 0.00380784902, 0.031942416, -0.03321895, 0.00533824181, 0.00602365471, -0.0308689643, -0.0285044704, -0.028388422, -0.0163918845, 0.00607805233, 0.00433006836, -0.0447948128, 0.00390939182, -0.00743437232, 0.0472028218, 0.0194961876, 0.0329578407, -0.0360911563, 0.0308689643, 0.00241526426, 0.00255307229, 0.017102683, -0.0440404937, -0.00622674, -0.0460423343, -0.0199168641, 0.0764180943, 0.00226657698, 0.0211788937, 0.0204245783, 0.00241707754, 0.0114888251, 0.0202940218, -0.0220347531, 0.0292732939, 0.00301182736, 0.00328200334, -0.00631015, -0.0416905098, 0.00295380293, 0.0166529939, 0.00377521035, 0.0127726141, 0.0420676656, 0.00206349161, -0.00314782187, 0.0450269096, -0.0164789204, -0.00990766101, 0.0335961096, -0.0746193379, -0.0346405469, 0.00132730743, 0.00691577932, 0.00041750347, 0.00332552148, -0.015826147, -0.0293168109, 0.0188144017, -0.0388763249, 0.0179585423, 0.0132295555, -0.0128814094, -0.0100527219, 0.0146729117, 0.0434602499, 0.00817418285, -0.052686125, 0.0546009317, 0.000543525151, 0.00603816099, -0.028591508, 0.0351627655, -0.0231662281, -0.0372806564, 0.0369034968, -0.0371646062, 0.0215270407, 0.0130772423, -0.0218461752, 0.0299115609, 0.0284609515, -0.0286785439, -0.0269668251, 0.00829748437, 0.0218026564, -0.0207001939, -0.0420676656, 0.0130482297, -0.00543253124, 0.0264446065, 0.011829718, -0.019960383, 0.038586203, -0.0233693141, -0.00188579201, 0.00755042071, 0.0234418437, -0.0230356734, 0.0230066627, -0.0313621722, 0.0186113156, 0.0401528627, -0.0418355688, 0.0400078, -0.0112639805, -0.0148687446, 0.0270248484, 0.00217047404, 0.00318952696, -0.0136139672, -0.0170446578, 0.00771724107, -0.0360041186, 0.0445917249, -0.0277356487, 0.01128574, 0.0208742656, 0.0178860109, -0.0131207602, 0.0056972676, 0.00584595511, 0.0380349718, 0.0360621437, 0.0135341836, -0.00494657736, 0.0247764047, -0.0328127816, 0.00272895861, -0.0232242532, -0.0366714, 0.0133020859, 0.0633626059, 0.0047471188, 0.0180745907, 0.0219041985, -0.00603816099, 0.00189848477, 0.0258063376, -0.0487404689, -0.0051605422, 0.0232967827, -0.0090445485, 0.0365843624, -0.0409071781, -0.025037514, 0.0186693408, 0.0328998156, -0.0142522352, 0.0271408986, -0.0214400031, 0.000557577936, 0.0272424407, -0.017842494, -0.00279423594, -0.00330194924, -0.00312968926, -0.0800736248, 0.0390794128, -0.000779249123, 0.00202903966, 0.0301436596, 0.0113727758, -0.0431991406, -0.0191045236, 0.0119675258, -0.0305788424, 0.0192785971, -0.0149122626, -0.0454620905, 0.0362362191, 0.00152585958, 0.0508583598, -0.00743437232, 0.0157391094, 0.0245588142, 0.0221653078, -0.0172187313, -0.00691940589, 0.000173619788, 0.0176829267, 0.0790291876, 0.0189159438, 0.0232387595, 0.0109158345, 0.00444974378, -0.0063137766, -0.00445337035, -0.0139258485, 0.0176684204, -0.0374257155, -0.00871816091, -0.013403629, 0.00837726798, -0.00751415547, -0.0225424673, -0.0500460155, 0.0411392786, 0.0190174859, -0.00359751075, 0.0136719914, 0.0322905593, -0.00880519766, 0.00236267969, 0.0204390828, -0.0055304477, 0.00971182901, -0.0155070126, -0.0131352665, 0.0124969985, 0.0367004126, -0.0231517218, -0.00999469776, -0.0694551691, 0.00150954025, -0.00203447929, -0.00484866137, 0.0198008157, -0.0429670438, -0.0111551844, -0.00551594142, 0.0128596509, 0.0134181352, 0.0159276891, 0.00507713202, -0.00987864845, 0.00138170528, -0.00665466953, 0.0105821937, 0.0198443346, -0.00894300546, -0.018828908, -0.0183066875, 0.044997897, 0.0178279877, -0.0210483391, 0.00170083926, 0.0311590862, 0.0206711814, -0.0222958624, -0.0172332376, -0.00462381681, 0.020453589, -0.0236884486, -0.0110971602, -0.0124317212, -0.044301603, 0.0521058813, 0.0355399251, 0.0586916469, 0.0289541595, -0.0173782986, 0.0248199236, -0.0293603297, -0.0219622236, 0.0247038752, -0.0541947596, -0.0150138056, -0.00722403359, 0.00657851249, -0.0364973284, 0.0170736704, -0.0390794128, -0.0342343785, 0.027256947, -0.0297084767, -0.00769548165, 0.0378899127, -0.00801461563, -0.0290411953, 0.0215705596, 0.0269668251, 0.0506552719, -0.00107889064, -0.0147599485, -0.0085731, 0.0361491814, -0.0231227111, -0.0299115609, -0.0314201936, -0.0181036033, 0.0250230078, -0.0268797874, 0.0259078797, -0.00673445314, 0.00937093515, -0.0300566219, -0.00879794452, -0.0157681219, -0.00761569804, -0.037657816, -0.0292442814, -0.0165804625, 0.0211063642, 0.0456071533, 0.0109303407, 0.00433006836, 0.0207582172, -0.00200728048, 0.0156810861, -0.0256467704, -0.0229631439, -0.0273875017, -0.00417412817, -0.00972633436, 0.044997897, 0.00439534569, -0.0158116408, -0.00394203048, -0.0197718032, -0.0126130469, 0.00382598164, 0.019467175, 0.038151022, -0.00975534692, -0.0385571942, -0.0107997851, -0.00535637466, -0.00276159728, -0.050713297, 0.00349234161, 0.00131008145, 0.0212514251, 0.0066873082, -0.0167110171, -0.0123591907, -0.00161380274, -0.0200909376, 0.027648611, 0.00598738948, 0.00541077228, -0.0152023844, -0.0198298283, 0.0166239813, -0.0552391969, 0.020206986, 0.00400005467, 0.0414003879, 0.02631405, 0.00137354562, 0.0144698266, -0.00499372231, -0.0124317212, 0.0372226313, 0.012518757, -0.000896204496, -0.0227165408, -0.0440985188, -0.0192931015, 0.00692303246, 0.0142377289, 0.0334220342, 0.0134108821, 0.0576472096, -0.0194381624, -0.0161452796, 0.0203375407, 0.00948698446, -0.00983513054, 0.00244065, -0.0195687171, -0.0381800346, -0.0188434143, -0.0259804111, -0.0139766196, -0.00170627912, 0.000555764651, -0.031942416, 0.00127290958, -0.0242106672, 0.0436053127, -0.00579881, 0.0357139967, 0.0325806811, 0.0442435816, -0.0283594094, -0.016754536, 0.00389851211, 0.00663291058, -0.0427349471, -0.00376433088, 0.0496398471, -0.00154761865, 0.0174653344, -0.0296794642, 0.00871090777, -0.0110463891, 0.0237899907, -0.039630644, -0.0315072313, -0.00249323458, -0.00452952739, -0.0202650111, 0.00630289689, -0.0101325056, -0.031101061, -0.00710435864, 0.0158986766, -0.0266186781, -0.00451864768, -0.000971001515, 0.0157100968, -0.0183502063, 0.0239785705, 0.0428800061, 0.0441275313, 0.0263575688, -0.00339261233, -0.0119602727, 0.0829748437, -0.0115033314, -0.025182575, 0.0155795431, 0.000623308646, -0.036961522, -0.0217881501, -0.00283231447, 0.00668005552, -0.00264373515, -0.0880809873, -0.00562836369, 0.00335634709, -0.0281273127, 0.0140854148, 0.000723944628, 0.0197427906, 0.000681786332, 0.0233403016, 0.0077535063, 0.0251970813, -0.0129466867, 0.0146439, -0.0398917533, -0.0311590862, 0.0332479626, -0.0461003594, -0.0272134282, 0.0265316423, 0.0253711548, -0.0359460972, -0.0142377289, -0.0300276112, -0.0205696393, -0.0196557548, -0.0382090472, 0.0228616018, -3.21287262e-05, 0.00855859462, 0.0158986766, -0.0379479378, -0.00239894493, -0.00566100236, -0.00869640242, 0.0267927516, -0.00300457422, -0.0200329125, 0.00137354562, -0.00292479084, 0.0282868799, 0.00810165238, -0.000127948268, 0.0392534845, 0.0467386283, 0.0226295032, 0.0207292046, -0.0184082314, -0.0180455782, 0.0234708562, -0.0275035501, 0.0355979502, -0.0171462, -0.0153619517, 0.0174653344, 0.0157536156, -0.0306948908, 0.0147599485, -0.0123156719, -0.0155360242, -0.00962479226, 0.0682946816, 0.0459553, -0.0185823031, -0.000120015247, -0.00400005467, 0.0109303407, 0.0160292313, -0.0550361127, 0.0362942405, -0.0208742656, 0.0160292313, 0.0451139472, 0.0223393813, 0.0223829, 0.0579083189, -0.0117644407, -0.044214569, 0.00677071838, 0.00267637405, -0.0127871204, -0.0324356221, 0.0199313704, -0.0322905593, 0.00407983828, 0.00506987935, -0.0178569984, 0.0261980016, 0.028635025, -0.0255597346, -0.0210773516, 0.0133673642, -0.0255597346, -0.000659573881, -0.0164208952, 0.0176394079, 0.0479281284, 0.00106982433, -0.0133963758, 0.00209431699, -0.00271263928, 0.0100962399, -0.00398917543, 0.0169141032, 0.0281853359, 0.0218316689, -0.011728175, -0.0286060125, -0.036178194, 0.00755767385, -0.00834100321, -0.0316232815, 0.00146964844, -0.0314492062, 0.00172078516, -0.030752914, 0.0208162423, -0.00755042071, 0.0103138313, -0.0241816547, 0.0115976203, -0.0139911259, 0.0269813314, 0.015521518, -0.00400368124, 0.0188579187, -0.0129684461, -0.0109738586, -0.0299985986, -0.0364102907, 0.000235044019, 0.0209032781, -0.000555764651, 0.0406460688, 0.0321164876, -0.00401456095, -0.0556163564, -0.0132223032, -0.00529109687, -0.039630644, -0.00800736248, 0.0083990274, -0.0368454717, -0.00140709092, 0.0201054439, 0.00728568481, -0.0109520992, 0.0327837691, -0.00921136793, 0.0134979188, 0.0215995703, -0.0217881501, -0.026865283, 0.0141361868, 0.00381147559, -0.00935642887, 0.0203810595, -0.025284119, -0.0143827898, -0.0574151129, -0.0374257155, 0.0185097735, 0.00669456134, -0.0129539398, -5.22162663e-05, -0.0182486642, 0.0583144911, 0.0256032515, -0.0249504782, 0.00188760518, -0.00772449374, 0.0237899907, 0.0231807344, 0.00908081327, 0.0109811118, -0.0127943726, -0.0457232036, 0.00366097502, 0.0396596566, -0.00447875587, -0.00423577894, 0.016014725, -0.000669093512, 0.00960303284, -0.00510977069, -0.0140709095, -0.0069701774, 0.0311590862, 0.0304918047, -0.00536725391, -0.0331029035, 0.000738904055, -0.0193076078, 0.0521639064, 0.00615420938, 0.0273875017, -0.00722403359, -0.0179875549, -0.0347565971, -0.00267637405, -0.0252986252, -0.0280692875, -0.0155650368, -0.00712611759, 0.0224699359, -0.00558847189, 0.0175378658, 0.00638993364, 0.0263865814, -0.0268072579, -0.000956495409, 0.0110608954, 0.0107272547, 0.00852232892, 0.0561385751, -0.00313512911, 0.0104443859, -0.0281418189, 0.0101470109, 0.0131715313, -0.0116774039, -0.0445337035, 0.0112204617, -0.020453589, -0.00167817355, -0.00241163769, 0.000752503518, 0.0197572969, 0.0428509973, -0.00652774144, -0.0171752125, 0.00402181409, -0.0245588142, 0.00393477734, -0.00174798409, -0.00337085314, 0.0237174612, 0.0280257687, 0.0172912609, 0.0178279877, 0.0164063908, -0.0110318828, 0.00221580546, -0.00431918865, -0.00855859462, 0.00921136793, -0.00467096176, -0.0313621722, 0.0437503718, 0.0163193531, -0.00121941837, -0.00979161169, -0.04464975, 0.0169141032, 0.00492844451, 0.00334728067, -0.0185242798, -0.0296359453, 0.0127000837, -0.0139331017, 0.00795659143, 0.0152459024, 0.0218606815, 0.0237174612, -0.00335272052, 0.014984793, 0.0157100968, -0.0111551844, -0.0333930254, -0.00381872873, -0.0168850906, 0.0180165656, -0.0174943469, -0.0245588142, 0.0287075564, -0.031594269, 0.0327257439, -0.0125332633, 0.0227310453, -0.0208597593, -0.019960383, 0.0216430891, 0.0416614972, -0.00889223441, 0.026517136, 0.00748514337, 0.00274165138, 0.0144480672, -0.0150138056, 0.00224481779, 0.00254400587, 0.0124824923, 0.00786955468, 0.017001139, -0.0413423628, 0.00985688902, 0.0147526953, 0.015129854, -0.0139548602, 0.0211063642, -0.000631921634, 0.0357720219, 0.00101814629, 0.00592211215, -0.0039964281, -0.0469417125, 0.0215995703, 0.0113437641, 0.0104081212, 0.00110336964, -0.00905905478, 0.00485228794, -0.0300276112, -0.00415962189, 0.00690127304, 0.00105531816, -0.00768822851, -0.00794208515, 0.00280511542, 0.00238081231, -0.000929296541, 0.00677797152, -0.0204245783, 0.0711378753, -0.0200184062, 0.0120545626, -0.0149122626, -0.0208597593, 0.0301436596, 0.0111841969, 0.0329868533, -0.00223756465, 0.0364393033, -0.0426769219, 0.0382670723, 0.023311289, 0.0174508281, -0.0134761594, -0.0298535377, 0.0252551064, -0.019220572, -0.000825940631, -0.0100672282, 0.0153474454, 0.0117644407, -0.000998200499, 0.00625575194, 0.01128574, -0.0387892909, -0.00178515597, -0.0148107195, -0.00885596871, 0.0445046909, 0.0215995703, -0.00560297817, 0.0109666055, 0.00389851211, -0.000727571198, -0.00457667187, 0.0099656852, 0.0309850127, 0.00584958168, 0.0140418969, -0.00192931027, 0.0336251222, -0.0190464985, -0.0374837406, -0.0331029035, 0.00136357266, -0.00767372269, -0.0352498032, -0.0543398187, -0.0381800346, 0.00531648286, -0.0116919102, 0.0572990626, -0.0312171094, -0.0365553498, -0.00382960821, -0.0146946711, -0.00246603554, 0.00735096214, -0.014636647, -0.0181471203, 0.0168705843, 0.00186947256, -0.00112784863, 0.0150138056, 0.0167400297, -0.0200039, 0.00627388479, -0.0210048202, 0.00467458833, 0.00220855256, -0.0160292313, -0.0499879941, 0.0515546501, 0.00444249064, 0.0177989751, 0.00502636097, 0.0281128064, -0.0210628454, -0.00224300451, -0.0403559469, 0.0623181723, -0.00931291096, 0.0176394079, 0.0119457664, 0.0246023312, 0.015623061, 0.0233403016, 0.00584958168, 0.0181761328, -0.00789856724, -0.0111841969, 0.0189159438, 0.0281563252, -0.0239205454, 0.0356269628, 0.0248054173, 0.0033835459, 0.0144118024, 0.0090082828, 0.00852958206, 0.0199748892, 0.00649510277, 0.0214980282, 0.00296468264, 0.00210157013, -0.00629927032, -0.0486534312, -0.00540351914, 0.00418138085, 0.0147744548, 0.0160437375, 0.0314201936, -0.0152894212, -0.0091823563, 0.0141797047, -0.0212369189, 0.0105749406, -0.0231372174, -0.00749239651, 0.0284174345, -0.00137535878, 0.00112331554, -0.00887047499, -0.0281563252, -0.0221943203, -0.0118514774, -0.00502636097, 0.0224699359, -0.0277646594, -0.0181326158, -0.00642619887, -0.012272154, -0.0023409205, -0.00984238368, -0.0113727758, -0.00568276132, -0.0327547565, -0.0244862828, -0.0111479312, 0.0318263657, -0.0452299938, 0.0292442814, 0.0498429313, -0.000638268073, 0.0022720166, -0.0203955658, 0.0206856877, 0.00430105627, 0.00246422226, 0.0109158345, -0.00152041973, 0.0237464719, -0.00634278869, 0.00685412856, 0.00431918865, 0.00831199065, 0.0128596509, 0.0327547565, 0.00658213906, 0.0188434143, -0.0024225174, 0.0324066095, 0.0301436596, -0.0209032781, 0.0269088, 0.0211498812, -0.000127154955, -0.00663653715, -0.0118514774, 0.00810165238, 0.0212514251, -0.0181181096, 0.00133818702, -0.0112929922, -0.00353223342, -0.004707227, 0.00449326215, 0.00763745746, 0.0336831473, 0.0402108878, 0.0100962399, -0.0152023844, -0.0142377289, -0.0144625735, 0.0257918313, -0.0304337814, -0.0152604086, 0.0256322641, 0.0321455, -0.000659573881, -0.0345245, 0.00401093438, -0.0482472628, 0.0115250899, -0.00295017636, -0.00213964866, 0.0164063908, 0.00971908122, 0.0295779221, 0.0406460688, -0.0233693141, 0.00120219239, 0.00207618438, -0.0239205454, -0.00405807933, 0.0150138056, 0.0214254986, 0.0157536156, -0.00815242343, -0.0106039532, 0.00689039379, 0.0332479626, -0.0153474454, -0.0130990008, 0.00351772737, 0.00166366738, 0.00752140861, 0.00934192352, 0.0140346438, -4.85614109e-05, 0.0310430359, 0.00921136793, -0.000290801807, 0.0103138313, -0.00555220665, -0.0171171892, -0.00813791715, 0.0214690156, 0.0058060633, -0.00196920196, 0.0175668765, 0.0294328611, 0.0174218155, 0.0110754007, -0.0113945352, -0.0322325379, 0.0364683159, 0.0288816299, -0.0189884752, -0.019220572, 0.0140056321, -0.0229631439, -0.00855134148, 0.0306368656, 0.0263720751, -0.0360331312, 0.000666373584, -0.00120944541, 0.00306985178, -0.0157536156, 0.0115178367, -0.0136357266, 0.0610996597, -0.0045440332, 0.0153184328, -0.0066582961, 0.00950149, -0.0367004126, 0.0201054439, 0.0195977297, 0.00630652346, 0.0230791923, 0.0255742408, -0.00493932422, 0.0097335875, -0.00697380351, 0.0119385133, 0.0179440361, 0.00169449288, 0.0104588922, -0.0172042251, -0.00407621171, -0.0002432037, 0.0141289337, 0.00974084064, -0.00679973047, -0.00392027153, -0.000702185498, 0.0110463891, 0.00599101605, -0.0192785971, -0.0031079303, -0.00686863437, -0.0166239813, -0.0277066361, -0.0204826016, -0.00984238368, 0.0110318828, 0.000532645558, 0.00588947348, -0.0138460649, -0.0125260102, -0.00103718555, -0.0227310453, -0.00585320825, -0.00343431719, -0.0263720751, -0.0023209746, 0.00290847151, 0.00578430435, 0.0119385133, -0.000491847168, -0.0106692305, -0.00511702383, -0.00880519766, 0.0196702611, 0.00184408692, -0.0218026564, 0.00316776778, -0.0187998954, -0.0476670191, -0.010741761, 0.0390504, 0.00620498089, 0.00637905393, 0.0147599485, 0.0227890704, -7.18221554e-06, 0.0196702611, 0.00200002734, -0.0125260102, 0.00892124698, -0.00653862115, -0.00466008205, 0.00243883673, -0.0167255234, -0.0103210844, 0.0272859596, 0.00879069138, 0.0341473408, 0.00324936467, -0.0107127493, -0.00768822851, 0.00753591489, -0.0174363218, -0.0119820321, -0.00103446573, -0.00312243635, 0.0355399251, -0.00596200395, -0.0112422211, 0.00106891769, -0.0205116142, -0.0443306156, 0.072588481, 0.0094942376, -0.0188869312, -0.0203520469, -0.0197572969, -0.0429670438, -0.0104879048, 0.0129829524, 0.00398192229, -0.0309850127, 0.032870803, 0.0106039532, 0.0192640908, 0.037454728, 0.0068613817, 0.00233185431, 0.0163483657, -0.000250456738, 0.0200619251, -0.0355689377, -0.0249504782, 0.0239205454, -0.0170881767, -0.0210918579, -0.00182323449, -0.0219767299, -0.00522581954, -0.0133963758, 0.0292152688, 0.0113655226, 0.0180020593, 0.00559209846, 0.0387022533, 0.00565374922, 0.0109520992, 0.0100672282, -0.000453088724, -0.00974084064, 0.0172767546, -0.00558484532, -0.012221382, 0.023412833, -0.0114598125, -0.0155360242, 0.0012357377, -0.00422489922, -0.0130264703, -0.000928389898, -0.0212804377, 0.00817418285, -0.0122068767, 0.0106184594, -0.0162468236, 0.0030879844, 0.0200764313, 0.00615420938, -0.00235542678, -0.0212224126, 0.0240220875, -0.0471157879, -0.00579518359, -0.0118804891, -0.0296214391, -0.0220347531, 0.0401818752, -0.00847155787, -0.0255742408, 0.0176394079, -0.0122286351, 0.0164789204, 0.0182486642, 0.0121125868, 0.0408781655, -0.0110536423, -0.0421837159, -0.0104661454, 0.00313875568, 0.00896476489, 0.00786955468, -0.00212695566, 0.0347565971, 0.00401093438, -0.000631921634, 0.0151878782, -0.00422127265, 0.0118224649, -0.00975534692, -0.0264881235, 0.00305715878, 0.0290557016, -0.0286930501, -0.000322533888, -0.045694191, 0.0162033048, 0.00222124532, -0.0174218155, 0.0168270674, 0.0124172149, -0.0024714754, -0.00967556331, -0.0322035253, 0.0140201375, 0.0286060125, 0.0207872298, -0.0299695861, -0.0166384876, 0.00695929769, 0.00366822793, 0.0224119127, 0.00158751046, -0.00728568481, 0.00650960859, -0.0175378658, 0.00328019, -0.00270357286, 0.0266041718, 0.0255742408, -0.00270719943, -0.00738360081, -0.0157826282, -0.00292297755, 0.00346695608, 0.0192640908, 0.0269668251, -0.00324392482, -0.00707172, -0.00962479226, -0.0115395961, 0.0221798141, 0.00485228794, 0.0105531821, 0.00907356, -0.00303358654, 0.0116048735, -0.0117716938, 0.00944346562, 0.00378246349, 0.00506987935, 0.00457667187, 0.00213783537, 0.00124843058, -0.00414874218, -0.00619047461, -0.00221217913, 0.0326967314, -0.00135450636, -0.0232532658, -0.0147599485, -0.0029864416, 0.00724216644, 0.00529109687, -0.0333640128, 0.0038223553, 0.0134253884, 0.0099656852, 0.0260674469, 0.0196267422, -0.0341183282, 0.00144970254, 0.00543978438, 0.0380929969, 0.0131280134, 0.0273729954, -0.00990040787, 0.00168089336, 0.00423940551, -0.00213783537, 0.00377158402, 0.0164789204, -0.00397466915, 0.00908081327, -0.010545929, 0.00977710634, -0.0310430359, 0.0160872564, 0.00915334374, 0.022426419, -0.0307819266, 0.0109085813, -0.0109230876, 0.0140201375, -0.00774625316, -0.000823220704, 0.0261109658, -0.040413972, -0.0125405164, -0.0108723156, 0.0173928048, 0.00487767346, 0.00270175957, -0.0331029035, 0.0217736438, -0.00270357286, 0.0126855774, 0.00694479141, 0.0116701508, -0.0210918579, -0.0505972505, -0.00740173319, 0.0112059563, -0.00530560315, 0.0129249282, -0.00650598202, 0.0171897188, -0.0183066875, 0.0125912875, -0.0131135071, -0.0115178367, 0.00298825488, -0.0101179993, 0.00683962228, -0.0183357, -0.00876893289, 0.0141506931, 0.00703182817, -0.00482327538, 0.00355217932, -0.018683847, 0.00685775513, -0.000387811306, -0.0103065781, 0.011089907, -0.00665104296, 0.00924763363, 0.00620498089, -0.00816693, 0.0118007055, 0.010205036, 0.00169449288, 0.0189304501, -0.0200909376, 0.0017815294, 0.0175233595, -0.00790582, 0.00680698361, -0.00562473712, -0.000679519726, -0.0116121266, -0.0115033314, -0.0129902055, 0.000398237549, 0.0164354015, 0.0125985406, 0.0296504516, 0.0153474454, -7.43437195e-05, 0.0247618984, -0.0135631962, -0.0127508547, 0.0127871204, 0.0202359986, -0.00473261252, 0.0172477439, -0.00979886483, 0.00521131372, 0.0212804377, -0.00946522504, -0.0245298017, -0.00596925663, -0.0192060657, -0.0136864977, 0.00373894512, 0.002649175, -0.0164934266, -0.034002278, 0.00272533204, -0.0221653078, -0.01000195, 0.00493569765, -0.0152894212, -0.0225134548, 0.026662197, 0.0201924797, 0.00298100198, -0.00971182901, -0.00794933829, 0.00681786332, 0.00617234223, -0.0253856611, -0.00481239613, -0.0140056321, 0.00390576525, 0.0378609, -0.00756492699, -0.00856584683, 0.0211063642, -0.00134272012, 0.00977710634, 0.0107852798, 0.0116991634, -0.00330557581, -0.00351228751, 0.0148687446, -0.0191480406, -0.0239930768, 0.00306622521, -0.00496108364, -0.000108172382, -0.010299325, 0.0183066875, 0.00119403272, -0.000827753858, -0.0123809492, -0.0108287977, -0.0204680953, -0.0142087173, 0.00448238244, 0.00455128634, 0.014687418, -0.0225279611, -0.00805088133, -0.0206856877, -0.01488325, -0.021585064, 0.00135631964, -0.0277501531, 0.0189884752, 0.0208887719, 0.0135341836, -0.00363377598, -0.0277066361, -0.0241671484, -0.0397466905, 0.00352498027, 0.0262415204, 0.000460795069, 0.0138388118, 0.00417412817, 0.000840446679, -0.0101252524, 0.011974779, 0.00134816, -0.0241091251, 0.0196847674, 0.0133165922, 0.0168705843, 0.00633553555, -0.00272533204, -0.000209431702, 0.00183683389, -0.0215270407, 0.0362652317, -0.0083990274, -0.0146076344, 0.00514241, -0.00373169221, -0.0107490141, -0.0162613299, -0.0254726969, -0.00877618603, 0.00207255781, -0.0195687171, -0.0268072579, 0.0100599751, -0.00666917581, 0.029519897, -0.00895025861, 0.0179440361, 0.0152459024, 0.00819594227, 0.0146729117, 0.00351591408, 0.00605629338, 0.00416324846, -0.00459117815, -0.0081234118, -0.00563924341, 0.00496108364, 0.0175668765, 0.0323775969, -0.0177119374, -0.00248235487, -0.0116483914, 0.0132803274, 0.00515328906, 0.0317683406, 0.0295344032, 0.0149992993, 0.0177844688, -0.00152676622, -0.035133753, -0.0152749149, -0.00834100321, 0.0117209218, -0.0213239547, -0.0131352665, -0.00191661739, -0.0129321814, 0.00431193598, 0.021541547, 0.0184082314, -0.0218171626, -0.00162014912, 0.0331609249, -0.017697433, 1.70701569e-05, -0.010698243, 0.0244282596, 0.00632102974, 0.0068613817, 0.0149412751, 0.00124117744, 0.00529109687, 0.00424665865, 0.0501330532, 0.00549418246, -0.00355217932, 0.00564649608, 0.00874717347, 0.00285770022, 0.00185859308, -0.00736546796, -0.0354528874, -0.0311880969, 0.0264446065, 0.0302016828, 0.013011964, 0.0204390828, 0.00391664496, -0.0103646023, 0.0108795688, -0.013751775, -0.0188869312, -0.0115395961, -0.00378971663, -0.0166239813, 0.0109666055, -0.0207727235, -0.0120473094, 0.00500097498, 0.0114090415, -0.00607442623, -0.0204245783, -0.019467175, 0.00929115154, 0.00395653676, -0.0099294195, 0.011931261, 0.00219042, 0.00181688799, -0.0077825184, -0.0107490141, -0.00903004222, 0.00207074452, -0.00197282853, -0.00120944541, 0.00749239651, 0.00756492699, -0.00330738886, -0.00338717247, 0.0127871204, -0.00697743, -0.000286495313, 0.00227564317, 0.0128814094, 0.0163338594, -0.0189449564, -0.00242614397, 0.00499734888, -0.00245152949, -0.00337810605, -0.0090082828, 0.00381872873, 0.00125296367, 0.0131860375, 0.0127436016, 0.007985604, -0.0128669031, 0.00519680744, 0.00406533247, 0.0055304477, -0.044301603, -0.00124843058, 0.00153220596, 0.0127726141, -0.00293204375, -0.00783329, 0.000676346535, -0.0047471188, -0.00373894512, 0.0215270407, -0.00737634767, -0.0133963758, 0.0137300156, -0.0103283376, 0.0448238254, 0.0068650078, 0.013207797, 0.00209431699, 0.00684324885, 0.0224989485, 0.0187998954, 0.00855134148, 0.0133963758, 0.0296214391, 0.0134253884, 0.00475799805, 0.0164354015, -0.000903910841, -0.00398192229, 0.00755042071, 0.0120400563, -0.00794208515, 0.00111424923, 0.0168415736, 0.00125205703, -0.0289541595, 0.0199168641, 0.0105967, 0.0202650111, 0.0105894469, -0.00515328906, -0.013062736, 0.0187418703, 0.0212224126, -0.00334184105, -0.00196920196, -0.0190029796, -0.0019764551, 0.0041995137, 0.00943621248, 0.00712249102, 0.0123156719, -0.0191625468, 0.0053273621, 0.00787680782, -0.00581694301, 0.00411973, 0.022281358, 0.000940176076, -0.00440985197, 0.0197572969, -0.0117644407, -0.00958127342, -0.00656763325, 0.0032946961, 0.00215052813, 0.000865379057, 0.0156955924, 0.0235143751, -0.00731832348, 0.0252696127, -0.0178134814, 0.0173202734, 0.00118315313, 0.0276341047, 0.00202541309, -0.000135654627, 0.0123374313, -0.0215560533, 0.0171752125, 0.00152495294, -0.0186983533, 0.00216140761, 0.0161742922, 0.00731832348, 0.00350866094, -0.000940176076, -0.0195977297, 0.0140709095, -0.00473261252, -0.00953050237, 0.00719864806, 0.0145278508, -0.0141651984, 0.00465282891, 0.00363014941, -0.00332914805, 0.0107127493, -0.0224699359, -0.00879794452, 0.000645521097, 0.0186113156, -0.00401456095, 0.0173782986, 0.0167835485, -0.00237174612, 0.00583144883, -0.0284609515, -0.0219767299, -0.0133963758, -0.0113655226, -0.00806538668, -0.015623061, 0.0118804891, 0.00622311328, -0.00800736248, 0.0141434399, -0.00578067778, 0.0114960782, 0.02059865, 5.1677951e-05, -0.00876168, -0.0279387329, -0.0246168375, -0.031101061, -0.0182196517, 0.0136719914, -0.00456216605, -0.0198733453, -0.010299325, 0.0192495845, 0.00767372269, 0.0150428172, 0.00193475, -0.0163338594, -0.0138388118, 0.0354528874, -0.00277429, 0.0208452549, 0.0132005438, -0.0337991938, -0.0088124508, -0.010792532, 0.0127145899, -0.00615058281, 0.012467986, 0.00214327499, -0.0125767821, -0.005396266, -0.00728568481, 0.00879794452, -0.0100527219, -0.00482327538, 0.0269668251, 0.0173782986, 0.0214835219, -0.0354819, -0.00821770076, 0.00543615781, 0.00217047404, 0.00929840468, 0.00285588694, 0.00829748437, -0.00570814731, 0.015869664, -0.00636092154, 0.00554858, 0.0093201641, -0.015478, 0.00777526526, -0.0124244681, -0.010154264, 0.00510977069, 0.0117354281, -0.025530722, -0.00402544066, 0.00187309913, 0.00386224687, 0.018480761, -0.02059865, 0.00243702345, -0.00120944541, -0.0135777025, -0.000166593396, -0.0212369189, 0.00147690147, 0.000905270805, 0.000816421, -0.0135777025, 0.00650598202, 0.0051605422, 0.00405082619, 0.0201489609, 0.00903004222, -0.00714787701, 0.0213964861, -0.000415690185, 0.00439897226, -0.0129539398, 0.00886322185, 0.00541802542, -0.0357430093, 0.00705358712, 0.00609255861, 0.000559844484, 0.0308689643, -0.0171462, -0.0193801392, 0.00105985138, 0.00186765939, 0.0130482297, -0.00710798521, 0.00381510216, 0.0229486376, -0.0184372421, 0.00927664619, -0.0197427906, -0.0205116142, 0.00489580585, 0.0121053336, 0.00552319456, -0.00113419502, 0.00574441254, 0.0208162423, -0.0152313961, -0.015971208, 0.0178715046, 0.020801736, 0.00553770037, 0.0344954878, 0.00342525099, -0.0140709095, -0.00655312696, 0.0111044133, 0.00196013576, -0.00083138037, -0.00102086621, -0.0167110171, -0.00650598202, -0.00552319456, 0.000212491577, 0.000339986524, 0.00620135432, -0.0337411687, -0.0035213537, -0.0061759688, 0.0207437109, 0.0180165656, -0.010299325, 0.0140999211, -0.0014886877, 0.0110826539, 0.0101905297, -0.0219041985, 9.53095587e-05, -0.0111841969, -0.0303757563, 0.00273621152, -0.0207727235, 0.00133274717, 0.0116774039, -0.00514241, -0.0165224392, -1.22820138e-05, -0.00989315473, 0.0169431157, 0.00740173319, 0.00215778127, -0.00897927117, 0.0194526687, -0.00116774044, -0.00832649693, -0.00136357266, -0.0145205976, 0.00468909414, 0.0105386758, -0.00516416878, -0.0164934266, 0.0209613033, -0.0106112063, -0.00541802542, 0.0106112063, -0.0243702345, 0.000194925611, -0.00813066494, 0.0090082828, 0.030752914, 0.000308254443, -0.0140128843, 0.00681786332, -0.015478, -0.00315507501, 0.0085368352, 0.0212514251, -0.0091460906, -0.0102485539, -0.00132277422, 0.00859485939, 0.0116628977, 0.00886322185, 0.00848606415, 0.0174363218, 0.00126656319, -0.00942170713, 0.00354492618, 0.00314963516, -0.0166675, 0.0208162423, -0.00537450705, 0.0228616018, -0.0105096633, 0.0022321248, 0.00349778146, -0.007739, -0.000298734842, -0.006012775, 0.00558847189, 0.00769548165, -0.00529109687, 0.000778795802, 0.0338862315, 0.00648422306, 0.0121706109, 0.0263430625, -0.019960383, -0.000104432533, 0.0118152117, 0.0265461486, -0.00400730781, 0.00361020374, -0.0234998688, -0.0057371594, -0.00405445276, -0.00442073168, 0.00395291, 0.000824127346, 0.00648059649, 0.0185532924, -0.0105604352, 2.95221635e-05, -0.0207582172, -0.00126656319, 0.00920411572, 0.00157753751, -0.00917510316, 0.0104733985, 0.00508438516, 0.00263466896, -0.00633916212, 0.0119095016, -0.0159857124, 0.00411973, -0.00537450705, 0.0066582961, 0.00804362819, -0.00801461563, 0.00619047461, -0.0091460906, 0.00202541309, -0.00474349223, -0.0261980016, -0.0136502329, 0.0194816813, -0.0349886939, 0.00910257269, 0.0072748051, -0.00129557529, -0.00814517, 0.0153329391, 0.0103718555, 0.018480761, 0.0167110171, -0.00913158525, -0.000732104352, -0.00221580546, 0.016754536, -0.00342706428, -0.00286313985, 0.00150772696, 0.00765921641, 0.00825396646, -0.00206349161, 0.0156375673, -0.00482690195, 0.00757943327, -0.00306622521, -0.00731469691, -0.0296649579, 0.0085731, 0.00754316803, -0.00907356, 0.0337411687, 0.0090445485, -0.006012775, 0.0229631439, -0.0235724, -0.00614333, 0.00364465569, -0.0062158606, 0.023311289, -0.0067272, -0.00118949951, 0.00478701, 0.0202214923, -0.0184082314, -0.0188434143, -0.0025802711, -0.0295344032, -0.0073727211, -0.0151878782, -0.00897927117, -0.0088487165, 0.00277429, 0.0029864416, -0.0152023844, -0.00159113691, 0.0140781626, 0.0109448461, 0.0116628977, 0.0112567274, 0.0246748626, 0.00348690175, -0.0119167548, 0.0124389734, 0.0076447106, -0.0201199502, -0.00402181409, 0.00678885123, 0.0217011143, 0.00605266681, -0.0118224649, 0.0106329657, -0.00965380389, -0.00244608964, -0.00322397891, 0.00767372269, 0.00352316699, 0.0108142914, 0.0256177578, -0.00482690195, -0.00517867459, 0.0147309359, -0.0015575916, 0.0170881767, -0.00818868913, 0.00192931027, 0.0109738586, 0.000387811306, -0.00922587421, -0.0158116408, 0.0136357266, -0.0164354015, -0.0144553203, -0.0218171626, 0.00445337035, -0.000449915504, -0.010154264, 0.0411682874, -0.00137082569, 0.0164499078, 0.0122866603, 0.0237899907, 0.0162033048, -0.00379334297, 0.00586771406, 0.00116411387, 0.00199277443, 0.0094942376, -0.01404915, -0.0100744804, -0.00554858, 0.0136429798, -0.0166529939, 0.00650960859, 0.00905905478, 0.015869664, -0.00765196327, -0.0142304758, -0.0164499078, 0.0206421688, 0.00940720085, -0.00781153049, -0.00870365556, -0.00370267988, 0.00947973132, 0.0238915328, 0.00578793045, -0.00109521, -0.00473986566, -0.00818143599, 0.00615420938, -0.00687951408, -0.00898652431, -0.0124607328, -0.00978435855, -0.00727843167, 0.0276631173, -0.0190029796, 0.000844979833, -0.00988590159, 0.0206131563, -0.0106909899, -0.0137590282, 0.00450776797, -0.00958127342, 0.00442073168, 0.0102703134, -0.00685412856, -0.0242251735, 0.00551956799, 0.0144480672, -0.00140618428, 0.00847881101, 0.00408709142, -0.00794933829, 0.0116556445, 0.00117590011, 0.00866739, -0.0202359986, -0.00172350509, -0.0122358883, 0.0114453062, -0.0295344032, 0.0158841703, 0.00587859377, 0.0127363484, 0.0211353768, 0.0124752391, 0.00278154318, 0.014295754, -0.015826147, 0.00318771368, -0.00327112363, 0.00903004222, 0.00431556255, -0.027402008, 0.0165224392, 0.0123156719, -0.0229921564, -0.00219767285, -0.00745613128, -0.0112639805, 0.00383686135, -0.00887047499, -0.0187853891, 0.00565374922, 0.0097626, 0.0191190299, 0.00201453362, -0.0226004906, -0.0264301, 0.0234853625, 0.0152168907, -0.0112567274, 0.0274745375, 0.0165804625, -0.0135777025, -0.00986414216, -0.0102703134, 0.0172477439, -0.00172713154, -0.00234273379, -0.0276776236, 0.0287655797, 0.00626300508, 0.00782603677, -0.0260674469, 0.00206349161, 0.0190464985, 0.0100382157, -0.00751415547, -0.00504812, 0.00148324785, -0.0145423571, 0.0111914501, 0.0148542384, -0.00861661881, -0.00495020393, 0.0124897454, -0.00810165238, -0.00148052804, 0.00174163771, 0.0125260102, 0.0161452796, 0.0198878516, -0.0091460906, 0.000933829695, 0.0436923504, -0.00387675315, 0.00989315473, -0.0194816813, -0.0250665266, -0.000154467212, 0.0243847407, -0.000992760644, 0.00394928362, -0.0067562121, -0.0222668517, 0.00194744288, 0.000526299176, 0.0160872564, -0.000780609087, 0.00333277462, -0.0133238453, 0.000550324854, 0.00721315434, -0.00284500723, 0.00570089417, -0.00543253124, 0.00156212482, -0.00316958106, 0.00765196327, 0.00658213906, 0.00492119184, -0.0044751293, 0.00868914928, 0.0094942376, 0.0185968094, 0.00723854, -0.0183647126, 0.0140854148, -0.00490305899, 0.00517504849, -0.0279242266, -0.00971908122, -0.00220129942, -0.000635094824, 0.00807264, -0.0226875283, -0.00645883754, -0.006012775, -0.00287401956, 0.0172042251, 0.016362872, 0.00136538595, -0.00703545474, 0.0153039265, 0.00757218, 0.00439171912, 0.0167255234, -0.00906630792, -0.00920411572, 0.0171171892, -0.00879069138, 0.0245152954, 0.0259368923, -0.0178134814, 0.0032946961, 0.00784779619, 0.0016264955, -0.0113945352, -0.00239169202, -0.00911707897, 0.00870365556, 0.0175378658, -0.0174508281, -0.0135704493, 0.00969732273, 0.0321164876, 0.0212369189, -0.0123011656, -0.00872541405, 0.0167110171, 0.00389851211, -0.00452590082, 0.00572990626, -0.00164009503, 0.0173347797, -0.00596563052, -0.00934192352, 0.0118224649, -0.0112204617, -0.00569364103, 0.0126130469, 0.00383323478, 0.000752503518, 0.0239350516, 0.0198298283, -0.00946522504, 0.0249359719, 0.0199023578, 0.00230284198, 0.00640443945, -0.00657851249, -0.0142377289, -0.00939994771, 0.0102920718, 0.0146511532, -0.0220492594, -0.00965380389, -0.00591123244, 0.00430468284, -0.00746338442, 0.0208887719, 0.00167182705, 0.020801736, 0.000463741628, 0.00329832267, -2.09658356e-05, -0.0291427393, 0.0024914213, -0.0157536156, 0.0191770531, -0.00751415547, -0.00637180079, 0.0189884752, 0.0012248581, 0.00864563, -0.00186765939, -0.00913158525, 0.00119493937, 0.00657126, 0.0141361868, -0.0102122892, 0.00315144844, -0.0102920718, -0.00704996055, 0.0011668338, -0.0100454688, 0.0102848196, 0.010350097, -0.00805088133, 0.0222233329, 0.00701006874, -0.0170156453, -0.0253566485, 0.0139911259, 0.00969007, -0.0176394079, -0.00770998793, 0.00926214, -0.0055304477, 0.0195832234, 0.0306658782, 0.0261399783, -0.00537450705, 0.00807264, 9.50262329e-05, 0.0117571875, -0.00817418285, 0.00249686115, -0.0127943726, 0.0133818695, 0.00115051446, -0.0148977563, -0.00367729436, -0.00837726798, -0.00315870158, -0.0171607062, -0.0153909633, 0.00467821443, -0.000982787693, -0.0113002453, 0.0137590282, 0.0179295298, 0.000850872952, -0.0119675258, 0.0266476907, 0.0271699093, -0.0194526687, 0.00494295079, -0.0110681485, -0.0249359719, -0.00568638789, 0.0200474188, -0.0116628977, 0.0138533181, -0.0165224392, -0.0140854148, -0.00250955392, 0.00174979737, -0.00222849846, -0.00533098867, 0.0115250899, 0.00371718616, -0.00664379029, -0.00705721369, 0.0145278508, 0.0147817079, 0.00487404689, -0.000457848539, -0.00123664434, 0.00875442661, 0.00771724107, -0.00197101524, 0.00586408749, 0.0119892852, 0.00318952696, -0.0202505048, 0.0111551844, 0.0103646023, 0.00369905354, -0.00590760587, 0.0226149969, -0.0187418703, -0.0041705016, -0.00380059611, 0.0175378658, -0.00727117853, 0.020946797, -0.0130990008, -0.0121851172, -0.008674643, 0.00237718574, -0.0137880407, 0.000310974341, 0.0166965127, -0.00568276132, -0.0140056321, -0.017102683, -0.00331645529, -0.000226317701, -0.000370132, 0.000631015, -0.018872425, 5.94409794e-05, -0.000479154347, 0.015129854, 0.00530197658, -0.0156810861, 0.0042684176, 0.0164789204, -0.00842078682, 0.0139185954, 0.0192785971, 0.0118877422, -0.0127726141, 0.00395653676, 0.00273258518, 0.00381510216, -0.00561748398, -0.00215052813, 0.00209069042, -0.00473261252, -0.00762295118, -0.00842803903, 0.0255017094, -0.00520768715, 0.00835550856, -0.00858760625, -0.00212695566, 0.0116919102, 0.00876168, -0.0147672016, -0.0203520469, 0.0381220095, 0.00997293834, 0.0135269305, -0.0120182969, -0.00213239552, -0.00854408834, 0.0113945352, 0.0073727211, 0.014092668, 0.0216721017, 0.000621948682, -0.00021793136, -0.0300856344, 0.0124897454, 0.00317320763, -0.0190319922, 0.00752866175, -0.0118079586, 0.00748514337, -0.0110826539, 0.00110064971, -0.0242106672, 0.00674533285, -0.00656400668, 0.00309705059, -0.024399247, 0.0123446845, -0.0138243055, -0.00744887814, 0.00769548165, -0.00186947256, 0.0123954555, 0.00066184043, 0.0120182969, -0.00289215217, 0.0128233852, -0.00332914805, -0.015623061, 0.00579518359, -0.00558847189, -0.000394837698, -0.000730291067, -0.0143972961, -0.0256467704, 0.000542618509, 0.00880519766, 0.00285588694, 0.0166965127, 0.00881970394, -0.0158841703, 0.00354673946, -0.014687418, -0.00587859377, 0.0107490141, 0.00231372169, 0.00300094788, -0.00542165199, -0.0079928562, -0.000621948682, 0.00640443945, 0.00376433088, 0.00541439885, 0.0124172149, 0.0185242798, 0.000549871533, -0.00458755158, 0.0100164562, -0.00542165199, 0.00481239613, 0.000375345116, -0.00445699692, 0.00104081212, -0.022673022, -0.0022031127, 0.0111769438, -0.0470867753, 0.0144553203, -0.0166675, 0.0302597079, -0.0195687171, -0.00555946, 0.0085005695, -0.00430468284, 0.00988590159, 0.0184227359, 0.0141579453, 0.00813791715, -0.0121053336, -0.00244608964, -0.0318263657, 0.028736569, 0.0144118024, 0.00414511561, 0.0196412485, 0.00755042071, 0.00651686173, 0.0181906391, -0.00879794452, -0.00995843206, 0.0142232236, 0.0116774039, 0.0104443859, -0.00529109687, 0.00492481841, -0.0208307486, -0.0142304758, 0.0017570504, -0.00291572441, -0.00223575137, 0.0204245783, -0.00494295079, -0.00185405987, 0.0110754007, 0.0182341579, 0.0022230586, 0.0154634938, -0.00921862107, 0.0361491814, -0.0200764313, -0.00720227463, -0.0133093391, -0.0119022485, -0.00413786294, -0.0268362705, 0.0108795688, 0.000587043411, -0.00889948756, -0.000631468312, 0.00584595511, -0.000463061646, 0.00757218, -0.0104443859, -0.00129738858, 0.016754536, 0.000783328956, -0.00282506132, -0.0252986252, -0.00229377579, 0.00729293795, 0.00246966211, 0.00513878325, -0.00343431719, -0.0115468493, 0.00613245042, -0.00303902617, -0.0173057672, 0.00488855317, 0.0068613817, -0.00135087979, -0.000970094872, -0.00114598125, -0.0126348063, 0.0121706109, -0.0185097735, 0.00476162462, 0.00869640242, -0.00908806641, 0.0148687446, 0.0146729117, 0.0167835485, -0.0289976783, -0.0117136696, -0.0041995137, 0.00373169221, -0.0144480672, -0.0203520469, -0.00130826817, 0.00335453381, 0.00645883754, 0.016014725, 0.00397829572, -0.00400730781, -0.00668368209, 0.00471085357, -0.0117499344, 0.00402906723, 0.0116556445, -0.000964655133, -0.0062158606, 0.00638993364, -0.000651414215, 0.0048813, -0.0153619517, -0.0228035767, 0.0282143485, -0.0166239813, 0.00548330275, 0.0194816813, -0.00455491291, 0.0123374313, -0.00069039932, 0.0189884752, -0.011829718, 0.00351954065, -0.0259078797, -0.00534186838, -0.0033835459, -0.0163193531, -0.0203665532, 0.00230284198, -0.00339805195, 0.000767009624, 0.00203266623, -0.000277655665, -0.00558121875, 0.00937818829, 0.00926214, 0.00671269419, -0.0112639805, -0.00716963597, 0.00120309903, -0.0119022485, 0.0144263087, -0.00248054182, -0.00762295118, 0.00524032582, -0.0149557805, -0.0149557805, -0.0294618718, -0.0182776749, -0.00805088133, 0.0102920718, -0.00800010934, -0.00273621152, 0.0156375673, 0.00739810709, 0.00204717228, 0.00990766101, 0.00873992, -0.0137227634, -0.0135269305, -0.00536725391, -0.00800010934, -0.00211244961, 0.00541439885, 0.00357937813, -0.0200039, 0.0190900173, -0.00194381631, 0.011140679, -0.00300457422, 0.0186258219, 0.000294201687, 0.0061759688, 0.00939269457, 0.0024914213, 0.0260384344, -0.0227165408, -0.0113437641, 0.00505899964, -0.0176829267, -0.00932741724, -0.0109303407, 0.00720227463, -0.00414511561, 0.0134761594, 0.0145496102, 0.0253276359, 0.00444249064, 0.0180310719, 0.00393115077, 0.00757943327, 0.0123011656, -0.0030879844, -0.000592483208, 0.0174508281, 0.0127871204, 0.0117136696, -0.0040617059, -0.0147381891, -0.00472535938, -0.0173057672, -0.00627025822, 0.0164789204, 0.00295561622, 0.016609475, 0.0218171626, -0.0147309359, -0.010792532, 0.0131787844, -0.0343214124, 0.00897201803, 0.00982787739, -0.0138243055, 0.0138315586, 0.0225714799, -0.0211498812, -0.000357212528, -0.0199313704, -0.00663653715, -0.0177119374, -0.0179295298, -0.0128378915, 0.0024424633, 0.00712249102, 0.0250230078, 0.00351228751, 0.0209758095, 0.00588584691, 0.00239713164, -0.0023409205, 0.0104371328, 0.045694191, -0.0256467704, -0.00298825488, 0.0151878782, 0.0216285829, 0.0111189196, -0.0202359986, 0.0185387861, 0.00236993283, -0.00248960801, 0.000655494048, 0.00961753912, 0.0149412751, 0.0127000837, 0.00726392539, -0.0345535092, -0.00423215237, 0.00452590082, 0.00341255823, -0.00654950039, 0.00442073168, -0.0114888251, -0.0179585423, -0.00526208477, -0.00349234161, -0.0143537782, 0.0105967, -0.00475437148, 0.00718414225, 0.00705358712, 0.00118768623, -0.00320403301, 0.0111914501, -0.000176566333, -0.00133818702, 0.0155360242, -0.00112694199, 0.00121851172, 0.00215596799, -0.0078550484, -0.0415744595, -0.0114235478, -0.0161307734, 0.00431918865, -0.0229776502, 0.00627388479, -0.0203665532, 0.014984793, -0.00463469652, 0.0113074984, 0.0185387861, -0.00620860746, -0.0100744804, -0.0214109924, -0.0130917476, -0.0365843624, -0.00158569717, 0.0178715046, 0.0173928048, -0.039978791, -0.0285479892, -0.00340530509, -0.0124897454, -0.0150428172, -0.0181036033, 0.0138533181, -0.0151878782, -0.0339442566, 0.00654950039, 0.0210483391, -0.0203230344, 0.0248054173, -0.0175088532, 0.00172531826, -0.0112567274, 0.00537088048, -0.00292116427, -0.00395653676, -0.017001139, -0.0109158345, -0.00612882385, -0.00370449317, -0.0230791923, -0.0422997624, -0.0173057672, -0.00735458871, -0.00383686135, -0.00471810624, -0.0177264437, 0.00175977033, -0.0214835219, 0.0165369455, 2.47765183e-05, -0.00570814731, -0.0172912609, -0.00935642887, -0.015376457, -0.021933211, -0.00788406096, 0.00913883746, 0.00257845782, -0.00514966249, -0.0156375673, 0.0051605422, -0.0141289337, 0.018683847, 0.0024914213, -0.0088487165, 0.0102267945, 0.000153447254, -0.0149702867, 0.00492119184, -0.0045041414, -0.0155795431, 0.00165460107, 0.0118514774, -0.0151733719, 0.0151733719, -0.00277973, -0.00469272071, 0.00055531133, 0.0140201375, 0.0127290953, -0.00364828203, -0.00324211153, 0.000325933739, 0.00894300546, -0.0119167548, -0.00178334268, -0.00329832267, -0.0167255234, 0.0107054962, 0.0063536684, -0.00142794347, -0.0247473922, -0.0127073368, -0.00818868913, -0.0266476907, -0.00178787578, -0.0213674735, 0.0094579719, -0.0137372687, -0.00110427628, -0.00203266623, 0.016754536, 0.00403632, 0.0639428496, 0.0140273906, -0.00146602187, -0.0247764047, 0.00655312696, 0.0038695, -0.0153184328, 0.0319714248, -0.00185859308, 0.0232387595, 0.00915334374, -0.000590669923, -0.0127871204, 0.011931261, -0.0107490141, 0.00464557577, 0.00600189576, -0.0103718555, 0.013555943, -0.00585320825, -0.00144244952, -0.0269088, 0.0182486642, -0.014984793, -0.0141434399, -8.75465321e-06, -0.038586203, -0.0141724516, -0.00439534569, 0.0158841703, -0.000728024461, 0.00152585958, -0.00618684804, -0.0126275532, -0.0143102594, 0.0260819532, -0.013998379, 0.00892124698, 0.00831199065, -0.0252260938, 0.0204971079, 0.018480761, -0.0172187313, 0.00403269334, 0.00508801173, -0.0185532924, -0.0116701508, -0.00796384457, 0.00289940508, -0.00916785, -0.0115395961, -0.00492481841, -0.0160292313, -0.0131352665, 0.0203230344, 0.00159567012, 0.0196412485, -4.76547793e-05, 0.00346151623, -0.00361564336, -0.0213239547, 0.00939269457, 0.00699556293, 0.0207582172, 0.00142703683, -0.0213529672, 0.00291935098, -0.0153619517, -0.0147309359, -0.00489943242, -0.0140564032, -0.0190900173, -0.0049538305, 0.0130844945, 0.019075511, -0.00643345155, -0.0135631962, 0.00640443945, 0.018089097, -0.0164644141, -0.0158406515, 0.00889223441, 0.0268507767, 0.00990040787, -0.00961753912, -0.00991491415, -0.00304809259, -0.0129684461, -0.0176394079, 0.0107490141, -0.00969007, 0.0346405469, 0.0092838984, -0.0165369455, -0.0310140252, 0.025037514, 0.00517867459, 0.0115033314, 0.00944346562, 0.00777526526, 0.0115903672, 0.00418500742, 0.00924038049, -0.00747789023, -0.00707534654, 0.0166675, 0.0125912875, 0.0120400563, 0.0116048735, 0.00530560315, -0.00262016291, 0.013998379, 0.015623061, 0.00250774063, 0.00923312735, 0.030114647, 0.000213964857, -0.00442435825, 0.00746338442, 0.00158025743, 0.0119095016, 0.00184771349, -0.0109520992, -0.0187128577, -0.0120400563, 0.0114380531, 0.0101397587, 0.00359025784, 0.00692303246, -0.0215125345, -0.00382598164, -0.0259513985, -0.00543615781, -0.000812341168, 0.0291427393, 0.000145174243, -0.0107490141, -0.000281962159, 0.010792532, 0.00757943327, -0.00021951797, 0.00837726798, -0.00720952777, 0.0176103953, 0.0092838984, -0.0123156719, 0.0116121266, -0.0126348063, 0.00612882385, 0.00868189614, -0.012127093, 0.00305715878, -0.00902278908, -0.00322216563, -0.00291391113, -0.0015884171, -0.0120980805, -0.0176394079, -0.00330013596, -0.00829023123, 0.00435182778, -0.00326205743, -0.00249867444, -0.0214690156, 0.00119312608, -0.00330738886, 0.00208162423, -0.0168415736, 0.00842078682, -0.0096320454, 0.0174363218, 0.000465101562, 0.0278516971, 0.00207618438, 0.010698243, -0.0101832766, 0.00311699649, -0.00889948756, 0.0136139672, -0.0168125611, -0.0123882024, -0.022281358, -0.0100237094, 0.0426479094, -0.00438446645, -0.00214146171, 0.00714062387, 0.00681786332, 0.0189159438, -0.0019148041, -0.00692665903, -0.012322925, -0.00529109687, -0.00576979807, 0.003992802, -0.00147690147, 0.00114960782, -0.0169141032, -0.000770182814, 0.00337810605, 0.0114380531, -0.0234273393, 0.00256213848, -0.0228470955, -0.00903729536, 0.0456361659, -0.0204390828, 0.00331282872, -0.00921136793, -0.00406533247, -0.00630652346]
|
20 Jan, 2021
|
Fabric.js Textbox cornerStrokeColor Property
20 Jan, 2021
In this article, we are going to see how to set the stroke color of controlling corners of canvas Textbox using Fabric.js. The Textbox in Fabric.js is movable and can be stretched according to requirements. Further, the Textbox can be customized when it comes to initial stroke color, fill color, stroke width, or radius.
To make it possible, we are going to use a JavaScript library called Fabric.js. After importing the library using CDN, we will create a canvas block in the body tag that will contain our Textbox. After this, we will initialize instances of Canvas and Textbox provided by Fabric.js, set the stroke color of controlling corners using cornerStrokeColor property, and make the corner visible using transparentCorner property. The Textbox is then rendered on the Canvas as given in the below example.
Syntax:
fabric.Textbox('text', {
cornerStrokeColor: string
});
Parameters: This property accepts a single parameter as mentioned above and described below:
cornerStrokeColor: It specifies the stroke color of the controlling corners.
Example: This example uses Fabric.js to set stroke color of controlling corners of the Textbox as given below. You have to click on the object to see the stroke color of the controlling corners.
HTML
<html>
<head>
<!-- Adding the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<h1 style="color: green;">
GeeksforGeeks
</h1>
<h3>
Fabric.js | Textbox cornerStrokeColor Property
</h3>
<canvas id="canvas" width="600" height="300"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Create a new Textbox instance
var text = new fabric.Textbox(
'A Computer Science Portal', {
width: 500,
cornerStrokeColor: 'green',
transparentCorners: false
});
// Render the Textbox in canvas
canvas.add(text);
canvas.centerObject(text);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js Textbox cornerStrokeColor Property
|
https://www.geeksforgeeks.org/fabric-js-textbox-cornerstrokecolor-property?ref=asr10
|
CSS
|
Fabric.js Textbox cornerStrokeColor Property
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Fabric.js Textbox cornerStrokeColor Property, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0327177681, 0.0157040525, -0.0139538655, 0.0499100722, 0.0543867387, -0.00789369736, -0.00544105517, 0.00445285486, -0.0389327146, -0.0406471826, 0.00502434419, 0.00430998253, -0.0100903595, -0.0411710478, 0.0478622355, -0.0100784535, -0.0268361885, -0.0180019159, -0.0140610198, 0.0123941759, 0.00352418446, -0.0144777307, -0.0334083177, 0.00930456165, -0.027907731, 0.03355119, 0.0182519425, 0.0273838658, -0.0114476467, 0.015025408, 0.00778654264, 0.00317295664, -0.00502434419, -0.0503863133, -0.0163588841, -0.0187639017, -0.0111380899, 0.0707694367, -0.0105189765, -0.0225381125, 0.00215796777, -0.00102540676, -0.00747698592, 0.0161564816, -0.0114536, 0.0106916139, -0.00528032379, 0.00822706614, 0.00202551321, -0.0419330336, 0.0026401619, -0.0329320766, 0.0277172346, 0.00641139643, 0.0225143, 0.0121322433, -0.000439406867, 0.0315033533, -0.0129061351, -0.00728053646, 0.0171208698, -0.0535295047, -0.0233120043, -0.0263361353, -0.0301698763, -0.009882004, -0.00726267742, 0.00223982171, -0.0107868621, 0.0285744686, -0.0217761267, 0.02686, 0.0158707369, -0.0102034668, 0.00515233399, 0.005369619, 0.0466716327, -0.0011407464, -0.029598387, 0.0540057458, -0.00781630818, 0.00865568314, -0.00462846877, 0.0286220927, -0.0245026071, -0.0157516766, 0.0368610658, -0.0298841316, -0.00705432193, 0.0233358163, -0.0242525805, 0.0192996729, 0.0222285558, -0.0367420055, -0.0309556741, -0.00797108654, -0.00345274829, -0.0158350188, -0.0242763925, 0.0130490074, 0.0281220395, 0.0305984933, 0.00722695934, -0.0050273207, 0.0247645397, -0.0420759059, 0.0242168624, 0.0085128108, 0.0224666763, -0.00810205285, 0.0264790077, -0.0220975894, -0.00901881699, 0.0410758, -0.00839375053, 0.0440523066, -0.00841161, -0.0233120043, 0.0258598942, -0.0151563743, 0.00299734273, -0.00944743399, 0.00190942932, 0.0287173409, -0.0172161181, 0.00887594465, -0.0423854627, 0.00237822928, 0.0221452136, 0.0175613929, -0.00398256676, 0.00780440168, 0.00995939318, 0.0191448946, 0.0357895233, 0.027455302, -0.0143943885, 0.0182162244, -0.0121024782, 0.0163707901, -0.0168470312, -0.0210260469, -0.0133347521, 0.0326463319, -0.0118703106, 0.0158231128, 0.0307889897, -0.00139821426, -0.00190347631, 0.0274076778, -0.0467430688, -0.0181805063, 0.027479114, 0.0022368452, 0.0440761186, -0.028336348, -0.00518209906, -0.00578633, 0.043814186, -0.0214070398, 0.00320272171, -0.0122989276, 0.0101022655, 0.0253598411, -0.0154064009, -0.0195854176, 0.0140491137, 6.55180384e-06, -0.0483861, 0.0233358163, -0.00296608941, 0.0167398769, 0.0228952933, 0.00566131668, -0.0614827313, -0.0192520488, 0.00950696412, -0.0342893638, 0.0119060287, -0.00337833562, -0.0454572178, 0.0138348052, 0.0256217737, 0.0357419, -0.0131442556, 0.00538450154, 0.0164184142, 0.0155135551, -0.00415520417, -0.0269314367, -0.00591729628, 0.0330273248, 0.045100037, 0.00434867712, 0.00327118137, 0.00145179138, -0.00328904041, 0.00110279594, -0.00453619706, -0.00889380369, 0.023621561, -0.0132633159, -0.0225976426, -0.0340988673, 0.0155492732, 0.00723886536, -0.0114119286, -0.0544819869, 0.0378849842, 0.0211689193, -0.0254312772, 0.0466716327, 0.00619113492, -0.00347358384, -0.0228000451, 0.0114536, -0.0148349116, -0.0094950581, -0.0222404618, -0.0293602664, 0.0285506565, 0.035241846, -0.0410519876, 0.00107303087, -0.0380040444, -0.0175137687, 0.00620899396, 0.0236572791, 0.00573870586, -0.0327892043, 0.000416711, 0.00117497623, 0.00640544342, 0.00585478963, 0.0528627671, 0.0196330417, 0.000223238036, -0.00522079365, 0.000309556752, -0.0062209, 0.0166922528, -0.00613755779, -0.0165374745, -0.0304318089, 0.0226214547, 0.0262647, 0.00262676761, -0.0242644865, 0.0173351783, -0.00912001822, -0.0324796475, -0.0311937947, 0.00903072301, 0.0105785066, -0.0121203372, -0.0195139814, -0.0298126955, -0.0651974156, 0.0427188314, 0.0131204436, 0.0364562608, -0.000398107833, 0.0150492201, 0.0114178816, -0.0235501248, -0.00344084227, 0.0101379836, -0.0378373601, -0.015430213, -0.00458977418, 0.00386945927, -0.0572918095, 0.0263599474, -0.04038525, -0.0172994602, 0.0362181403, -0.0179066677, -0.00632805424, 0.0260503907, -0.00937004481, -0.0384802856, 0.028336348, 0.0329320766, 0.0307175536, 0.00115190831, -0.0373611189, -0.0133347521, 0.0327415802, -0.0237287153, -0.0300031919, -0.0213951338, -0.0221333075, 0.0179542918, -0.0366705693, 0.0295507628, -0.0204902757, 0.0136085907, -0.0262885112, 0.00789369736, -0.0150611261, 0.00766748236, -0.0219666231, -0.052386526, -0.0333845057, 0.0281934757, 0.0460763313, 0.0365038849, 0.00822111312, 0.000635856355, 0.0246692915, 0.0199306924, -0.0157159586, -0.0309318621, -0.0061851819, 0.00479217665, 0.0051106629, 0.047005, 0.0167398769, -0.00104698644, 0.00989986304, -0.0228357632, -0.0106618488, 0.0112333382, 0.0187996197, 0.0369801261, -0.0134657184, 0.00263867364, -0.0211570133, 0.0260503907, 0.0135609666, -0.0372658707, 0.013322846, 0.0061851819, 0.00276815169, 0.0120489011, 0.0133823762, 0.0029214418, -0.0131085375, -0.0387184061, 0.0394327678, 0.0296698231, 0.0248836, -0.0355275907, -0.0260503907, 0.0419330336, -0.0501005687, 0.0136204967, 0.0187043715, 0.0196449477, 0.0488147177, 0.000854257552, 0.017620923, -0.00469692843, 0.0152516225, 0.00586371915, -0.00292888307, -0.00443201931, -0.0539104976, -0.060435, 0.0173828024, 0.0200973768, 0.00608398067, 0.0491004623, 0.00529223, 0.05372, -0.0359562077, -0.00906048808, 0.0329797, 0.00378016406, -0.018478157, -0.000247980264, -0.0374563672, -0.0172994602, 0.00645306753, 0.0127632627, -0.0260980148, -0.00788774434, -0.00725077139, -0.0325034596, 0.0134180943, -0.0610064901, 0.0402423777, 0.00525353523, 0.00892952178, 0.0147039453, 0.0391232111, -0.0300746281, -0.00619708793, 0.0213117916, 0.010757097, -0.062768586, 0.0333368815, 0.0277648587, -0.0221690256, 0.029193582, -0.0159778912, -0.0153825888, 0.00482491823, 0.0294317026, -0.0501958169, -0.0118107805, -0.0234548766, -0.000281652, -0.0371706225, 0.000545444957, -0.026193263, -0.0325034596, -0.000811842328, 0.0121560553, -0.0210736711, -0.0218594689, 0.0212284494, 0.0391946472, -0.0332892574, 0.0394089557, 0.0152873406, 0.0295031387, 0.0374087431, -0.00891761575, 0.000554746541, 0.0774368122, -0.0285268445, -0.0325748958, -0.0010960988, 0.0245740432, -0.0442904271, -0.0239073057, -0.00976889674, -0.000386573869, -0.0235382188, -0.101915605, 0.00378314056, 0.00434867712, -0.0312652327, 0.0429807641, 0.0110130766, 0.0431474485, -0.00133570761, 0.0177518893, 0.0395518281, 0.0136800269, -0.00426533492, 0.0422664024, -0.0129656652, -0.0051999581, 0.0399090089, -0.0134419063, -0.00697693275, 0.0302651245, 0.0190496463, -0.000496332592, -0.00194812391, -0.0539581217, -0.00732220756, -0.0425759591, -0.0396708883, 0.0311461706, 0.0124894241, 0.0373134948, -0.00740554975, -0.0133942822, -0.0189901162, -0.0078103547, 0.0213713218, 0.0203950275, -0.00764962332, -0.0173589904, -0.00704241591, -0.00402423786, -0.00209992588, 4.09851083e-07, 0.0102808559, 0.00289762975, 0.0625304654, 0.0187996197, 0.0161445756, -0.00068943348, -0.00551249133, 0.0200616587, -0.0369325019, 0.0361467041, -0.0344560482, -0.0345512964, 0.0142038921, 0.00330987596, -0.0135014364, -0.00857829396, -0.00937599782, 0.010739238, -0.0163112599, 0.0651974156, 0.0230143536, -0.00796513353, -0.016775595, 0.00162963767, 0.0177280772, -0.0158588309, -0.0350751616, 0.0288602132, -0.0322177149, 0.0104951644, 0.0371944346, 0.0280267913, 0.0159540791, 0.0389327146, 0.00522079365, -0.0138943354, 0.0153230587, -0.041242484, -0.00111321372, -0.0247407276, 0.0196806658, -0.0189424921, 0.00748293893, -0.0270981211, -0.0289792735, 0.0407186188, 0.00142649107, -0.0090843, -0.0198949743, -0.00736983167, -0.0257170219, -0.0167875011, -0.0250979085, 0.00857234094, 0.042099718, 0.000730360451, -0.0294793267, 0.022323804, -0.00562262209, -0.0106142247, -0.00999511126, 0.0114774117, -0.000928670226, 0.0219309051, -0.02320485, -0.000414478622, -0.0251931567, 0.00675071822, -0.0183471907, -0.0532913841, -0.00392303662, -0.0198235381, 0.00219666236, -0.0188591499, 0.00757223414, 0.000346763089, 0.0148349116, -0.0237525273, 0.0195616055, -0.0437427498, 0.0376230516, 0.0039974493, 0.0221928377, 0.0186686534, -0.00230679312, -0.00993558113, -0.0346703567, -0.0374563672, 0.00256872573, 0.0298841316, 0.0256217737, 0.0143467644, 0.0304079968, 0.00115116418, -0.0394803919, -0.00392303662, 0.00289762975, -0.0358609594, -0.0045540561, 0.0195377935, -0.0383136, 0.0211689193, 0.0308128018, -0.0117572034, 0.0106201777, 0.0285744686, -0.0311699826, 0.00950101111, 0.0127156386, 0.00100085058, -0.0157159586, 0.00447666692, 0.0125727663, -0.00848304573, 0.0225857366, -0.0220380593, -0.0105130235, -0.0639115646, -0.0302651245, 0.000843839778, 0.0182876606, -0.0119477, -0.0122751156, -0.0380992927, 0.0231096018, 0.0255027134, -0.00247198925, 0.00595301436, -0.0116381431, 0.0275267381, 0.0325034596, -0.00334559404, 0.0329558887, -0.0130847255, -0.0337416865, 0.00928670261, 0.0101975137, 0.0140610198, 0.0185138751, -0.00469990494, -0.0143586705, 0.0136085907, -0.00592324929, -0.00876879, -0.0216094423, 0.0479574837, 0.0375516154, 0.00790560339, -0.0225143, -0.00697693275, -0.0165017564, 0.0232762862, -0.0130728194, 0.0389803387, 0.000205937089, -0.0250502843, -0.0445761718, 0.00506601529, -0.0260742027, -0.0266456921, 0.0106678018, -0.0048546833, 0.0197878201, -0.00629828917, 0.0226333607, 0.00269522727, 0.0247169156, -0.0297412593, -0.0122632096, 0.0275505502, 0.0307651777, 0.0132514099, 0.0384802856, 0.00740554975, 0.00424747588, -0.0277410466, 0.00927479658, 0.00232762867, 0.00136621681, -0.0433379449, 0.0165374745, -0.0202759672, 0.00399447279, 0.00505113276, 0.0281458516, -0.00113925815, 0.055815462, 0.00417306321, -0.0272171814, 0.0204545576, -0.0259551425, -0.00682215439, -0.0212760735, -0.0107035199, 0.0246454794, 0.0362895764, 0.0255503375, -0.00484873028, 0.00471181097, -0.0150492201, 0.0204783697, -0.000282024062, -0.0129894773, 0.00469395192, -0.00901881699, -0.0268361885, 0.0403376259, 0.0135252485, 0.00269225077, 0.00563452812, -0.0343131758, 4.19036405e-05, -0.000640321115, 0.013322846, 0.00159838435, -0.0269552488, 0.0151444683, -0.0092390785, -0.00567322271, 0.0171804, -0.00290953577, 0.00924503151, -0.00150090375, 0.0155730853, 0.0225023944, 0.00486956583, -0.0466001965, -0.00331582897, -0.0046850224, 0.002899118, -0.0026208146, -0.0258122701, 0.00852471683, -0.0231334139, 0.0402661897, -0.0163946021, 0.00389922434, -0.00861996505, -0.0184067208, 0.0112988213, 0.0220261533, 0.00186627, 0.00350930193, -0.0204307456, -0.00634591328, 0.0233477224, -0.0100248763, 0.0107690031, 0.0212403554, -0.00214755, 0.00564643415, 0.0127632627, -0.0363610126, 0.00935813878, 0.00739959674, -0.00869735423, 0.0189782102, 0.0243121106, -0.00255384319, 0.0198354442, -4.35546717e-05, -0.0166446287, -0.0131561616, -0.0208712686, 0.0222047437, 0.0100367824, 0.0216213483, -0.0116917202, -0.00478027062, -0.0254074652, -0.0150730321, -0.0237049032, -0.0161445756, -0.0166327227, 0.00447964342, -0.000978526776, 0.016335072, 0.00586967217, 0.00984628592, 0.0113345394, -0.0185853112, 0.0452429093, -0.012870417, 0.0129180411, 0.00745317386, -0.0277886707, 0.00801275764, 0.0111142779, 0.0265504438, -0.0105546946, 0.0376944877, -0.0357419, 0.0530532636, 0.00273838663, 0.0186924655, -0.0136562148, -0.00609291, 0.0132514099, 0.0158707369, -0.0102332318, -0.0191687066, 0.0120667601, 0.0216689724, -0.00177846302, 0.000409269735, 0.0116202841, -0.0119179348, -0.0216808785, 0.00936409179, -0.00433379458, 0.0263123233, 0.0263123233, 0.0112988213, -0.00363133871, 0.00896524, -0.0147515694, -0.02686, 0.00597682642, 0.0347417928, 0.00415818067, 0.0199783165, 0.0228238571, 0.0239430238, -0.00211183191, -0.0160850454, -0.00514340447, 0.0102094198, 0.017204212, -0.0187043715, -0.0409091152, -0.0177280772, 0.0386945941, -0.00750675099, 0.040813867, -0.0188710559, -0.0432665087, 0.010316574, -0.00870926, -0.0153230587, -0.0128227929, -0.00236781151, -0.00180822809, 0.00295567163, 0.00570596429, -0.00732220756, 0.00950101111, 0.0101141715, 0.00593813183, 0.0184305329, -0.0156326164, -0.00124045939, 0.00700074481, 0.00250770734, -0.0614827313, 0.0605778731, 0.0254074652, 0.00600659149, 0.0184305329, 0.0217046905, -0.0325272717, 0.0136800269, -0.0332416333, 0.0259313304, -0.000923461339, 0.00782226119, 0.0267647523, 0.0146206031, 0.00512554543, -0.00172339764, -0.0122513035, 0.0158469249, -0.0119357938, -0.00974508468, 0.0005480494, 0.0223118979, -0.0095784, 0.0417901613, 0.0234072525, -0.0250979085, 0.0271695573, 0.0362895764, 0.0262170751, 0.0400042571, 0.0209665168, 0.0191329885, -0.00616732286, 0.012882323, 0.00931646768, -0.0440761186, -0.00628638314, -0.00650664466, -0.00964983646, 0.0286220927, 0.0291221458, -0.0499576963, 0.00773296552, 0.0119715119, -0.0280506033, 0.0140967378, -0.0165970046, -0.00747698592, 0.0316938497, -0.006715, 0.0108047212, -0.00480705919, -0.00856638793, 0.0209069867, -0.0130966315, 0.0103880102, 0.01331094, -0.0166803468, -0.0212284494, 0.00445285486, -0.00125087716, 0.0127513567, -0.0177042652, -0.0276934225, -0.00739364373, -0.0359800197, -0.0188472439, -0.00430998253, 0.0184424389, -0.0424569, 0.0221333075, 0.0565774478, 0.0200973768, -0.000843095651, 0.0129299471, 0.00793536846, 0.0102094198, -0.00491719, 0.00934028, -0.0138824293, 0.0149301598, -0.0147277573, 0.00266695046, 0.00765557634, 0.0153111527, 0.0295745749, 0.0282172877, 0.011173808, 0.0112273851, 0.0100367824, 0.03181291, 0.0202878732, 0.00539938407, 0.028741153, 0.00945934, 0.00163261418, -0.00216094428, 0.00075677695, -0.00273838663, 0.0306461174, -0.0229072, -0.0076377173, -0.0113166803, -0.0140491137, -0.0126799205, 0.00137365807, 0.0154778371, 0.0248597879, 0.0191925187, 0.000384341489, 0.000366854511, -0.0123941759, -0.034813229, 0.0115428949, -0.0231215078, -0.0254550893, 0.047243122, 0.0118464986, 0.00567619922, -0.00522377, -0.0114000225, -0.0324082114, -0.0135966847, -0.0101439366, -0.0169899035, 0.0310985465, 0.0198592562, 0.0254789013, 0.0353132822, -0.0285030324, -0.00509578036, 0.000141105047, 0.00150983327, -0.00380099961, 0.00848304573, 0.00440225424, 0.0195020754, -0.00809014682, 0.00711980509, 0.00629233615, 0.0281220395, -0.0317414738, -0.0217642207, -0.00655426877, 0.00146369741, -0.00467609288, -0.00390220084, 0.0206688661, 0.00972722564, 0.0271219332, 0.00784607325, -0.000457265909, 0.0265028197, -0.00789369736, -0.0198116321, -0.0337416865, 0.0256455857, 0.00929860864, 0.00202997797, 0.0276457984, 0.0246692915, 0.022347616, 0.0115726599, 0.00308366143, -0.0239192117, 0.033122573, 0.0058399071, -0.00837589148, -0.019347297, -0.000402200531, 0.00383076468, 0.0106916139, 0.0201092828, 0.00742936181, -0.0265028197, -0.0138228992, 0.0106558958, 0.00140119076, -0.00862591807, 0.0080961, 0.00218475633, 0.0395518281, -0.0108880633, 0.00301669, -0.00653045671, 0.03181291, -0.0428378917, 0.0128227929, 0.0107928151, -0.00540236058, 0.0129299471, 0.0348608531, 0.00479515316, 0.00603040354, -0.0157397706, 0.0315747894, 0.0151920924, 0.00631614821, 0.00684001343, -0.00521781715, -0.00456893863, 0.00290655927, -0.0131323496, 0.0284077842, -0.00779844867, -0.020204531, -0.00460168, -0.00138109934, -0.00510471, -0.0175852049, -0.00763176428, -0.00801871065, -0.00698288577, -0.0392898954, -0.0160374213, -0.00884022657, -0.00200914242, -0.00929265562, -0.0158350188, -0.00580418902, -0.0112988213, 0.00578037696, -0.0199545044, -0.00241394737, -0.00458084466, 0.00468799891, -0.00321462774, 0.0160850454, 0.00415222766, -0.00649473863, 0.0106142247, -0.0134895304, -0.0128108868, -0.0114357406, 0.00114000228, -0.00264165015, -0.0208712686, 0.000379318633, -0.0130490074, -0.0364562608, -0.0223595221, 0.0224547703, 0.0174066145, -0.00220261537, -0.00173381541, 0.0155016491, 0.00333666452, 0.020180719, 0.00475645857, -0.00620304095, 0.0217642207, -0.0156683344, 0.0103344331, 0.007084087, -0.0175494868, -0.00253300765, 0.0263123233, 0.00466418685, 0.0377183, -0.0125251422, -0.00703646289, -0.00282024057, 0.0119536528, -0.0212879796, 0.00394387217, -0.00975699071, -0.0169184674, 0.0141086439, -0.00203593099, -0.00315212109, 0.0251693446, -0.0157635827, -0.0239430238, 0.0386469699, -0.0141324559, 0.00150760089, -0.0265266318, -0.0176804531, -0.043361757, -0.00486956583, 0.0188353378, 0.00972127263, -0.0269076247, 0.0110607008, 0.0185734052, 0.00466121035, 0.029193582, -0.0110726068, 0.0054559377, 0.00801871065, -0.00158499007, 0.0409805514, -0.0225500185, -0.0140372077, 0.0248597879, -0.00654831575, -0.0200616587, -0.0102391848, -0.029598387, -0.0164422262, -0.0136085907, 0.0191210825, 0.0216927845, 0.0140848318, 0.0110368887, 0.0355514027, 0.00459572719, 0.00604230957, 0.00602147402, 0.0172994602, -0.0243716408, 0.00172042113, 0.0119655589, -0.00773891853, 0.0105606476, 0.00676857727, -0.0241216142, -0.00487551885, -0.00065297127, -0.000214122483, 0.00244520069, -0.0185615, -0.00505410926, -0.0219428111, 0.0164422262, -0.0452667214, 0.0147277573, 0.0278362948, -0.00329499342, -0.00516424, -0.0144420126, 0.0138586173, -0.0316462256, -0.0113643045, -0.00347656035, -0.0290030856, -0.00105666008, 0.0285982806, -0.00733411359, -0.011614331, 0.0230500717, -0.00177548651, 0.0231453199, 0.00971532, 0.0325034596, 0.0369325019, -0.0139657715, -0.058815781, -0.0135014364, 0.00719124125, 0.0300746281, 0.00539640756, 0.00120399718, 0.0288364012, -0.00395280169, -0.0053279479, -0.0114119286, -0.00783416722, 0.035670463, -0.0220023412, -0.014608697, -0.0048963544, 0.0247407276, -0.024454983, 0.000497820845, -0.0360752679, 0.0281458516, 0.00653640972, -0.0199306924, 0.00542914914, 0.00328011089, -0.00852471683, -0.0127989808, -0.0175018627, 0.0247407276, 0.0301460642, 0.02320485, -0.00802466366, -0.022347616, 0.00285893516, -0.00160136085, -0.00719719427, 0.025740834, 0.00385160022, 0.0125489542, -0.0262170751, -0.00797108654, -0.0123108337, 0.016335072, 0.011608378, -0.0118464986, 0.00445583137, -0.025764646, -0.0226095486, 0.00253747241, 0.0163946021, 0.0112154791, -0.0101260776, -0.00406590896, 0.00469395192, 0.00474752905, 0.0172756482, -0.0099236751, 0.00378314056, 0.0100486884, 0.00948315207, 0.0106916139, -0.0113523984, 0.0345512964, 0.00650069164, -0.00527139427, -0.00971532, -0.0132752219, 0.0163707901, 0.0106856609, -0.00650069164, 0.000705432205, 0.0105725536, 0.00369682186, -0.0222166497, 0.0030077605, -0.00728053646, 0.00437844219, -0.00961411837, -0.0130966315, 0.00311937951, 0.0052416292, 0.0251931567, 0.0199068803, 0.00976294372, -0.00719124125, -0.00311045, 0.00220112712, 0.0188472439, 0.0104356343, -0.00472967, -0.0187281836, 0.0122632096, 0.0113762105, -0.0289554615, -0.0167041589, 0.026598068, -0.00163707894, -0.00209992588, -0.00953672919, 0.00573572936, -0.0241335202, 0.00870926, 0.0125013301, 0.021895187, -0.033098761, 0.0200378466, -0.0101617957, 0.0112273851, 0.0158112068, -0.0325272717, 0.00763176428, -0.0447666682, -0.00869735423, -0.0226928908, -0.000654459524, 0.00244073593, 0.0181447882, -0.00981652085, 0.0212165434, 0.0119655589, 0.0130490074, 0.00398256676, -0.0135252485, -0.0121084312, -0.0367896296, -0.00184096966, 0.0134538123, -0.000166405356, 0.0157993, -0.00517019304, 0.0123941759, -0.0153944949, 0.0255265255, 0.00370872789, -0.0139300535, 0.0333130695, -0.00178292778, 0.0227881391, -0.0176804531, -0.0010626131, 0.00910811219, 0.0130132893, -0.0130490074, 0.000997874071, -0.00877474342, 0.0165612865, 0.0133704701, -0.0203950275, 0.026169451, 0.0034973959, 0.00102912739, -0.0056255986, 0.0128346989, 0.009882004, 0.0113583514, 0.00687573152, 0.0127156386, -0.0226333607, 0.0125251422, 0.0211689193, -0.0139657715, 0.0123465518, 0.0105070705, 0.009882004, -0.0175137687, -0.00980461482, -0.00552737387, -0.00829254929, 0.0433379449, 0.00823301915, 0.0110726068, 0.00376528152, -3.02068966e-05, 0.00407483848, 0.00195258867, -0.015037314, 0.0063101952, 0.00437546568, 0.00259104953, -0.00164452021, -0.011578613, -0.000843839778, 0.0123584578, -0.00699479179, -0.0248597879, 0.000820771849, -0.0192877669, -0.00502434419, 0.00527734729, -0.0125965783, 0.00139300537, -0.032265339, -0.000569629075, -0.0254789013, -0.00532199489, -0.00776273059, -0.0265266318, -0.0225857366, 0.0169660915, 0.0240739901, 0.010310621, 0.0023201874, 0.00190794107, 0.00837589148, -0.01343, -0.03609908, 0.00749484496, -0.0282172877, -0.0121620083, 0.0214189459, -0.0166803468, -0.00719719427, 0.0199425984, -0.0255027134, 0.0316700377, -0.0329797, 0.000452429085, -0.00152248342, 0.00316998013, -0.000533538929, -0.0125370482, -0.00839375053, -0.000914531818, 0.0040004258, 0.0177518893, -0.00661379891, 0.0207522083, -0.00743531482, -0.000811842328, -0.0146325091, 0.00792346243, -0.0343608, -0.00431593554, -0.00527437078, 0.0140372077, 0.0353847183, -0.0318605341, -0.0109178284, -0.0197878201, -0.00845328066, -0.0187400896, -0.0248121638, -0.0206450541, 0.000905602297, -0.00577442395, 0.000493728148, 0.0108821103, -0.00741150277, -0.0350989737, -0.0233239103, -0.000620601757, 0.0230381656, 0.0124775181, 0.022347616, 0.0026848095, 0.000213564388, 0.00968555454, -0.00759009318, 0.00597385, -0.0154897431, 0.0105130235, 0.0210855771, 0.0206688661, -0.00156117801, -0.00900691096, 0.00158647832, 0.0121203372, -0.0236929972, 0.0430283882, -0.00512852194, -0.00596194388, 0.0217761267, -0.000871372467, -0.00110651657, 0.00258360826, -0.0157754887, -0.00530413585, -0.000845328032, -0.0154183069, -0.0280506033, -0.00760795223, 0.00236334675, 0.0207164902, 0.00353906699, 0.00794132147, 0.0276696105, -0.00539343106, 0.0231691319, -0.00211927318, 0.0213356037, 0.00748293893, -0.00177102175, -0.012465612, -0.0317414738, -0.00517614605, 0.0231334139, 0.00989986304, -0.0113404924, -0.00260146731, 0.0147158513, 0.0162398238, 0.000194403125, 0.0259551425, 0.0233239103, 0.00917359535, 0.0225143, -0.0121560553, -0.0390755869, 0.00813777093, -0.0140491137, 0.0111440429, -0.025764646, -0.0047713411, -0.0146325091, -0.0159421731, 0.000860210566, 0.0300984401, 0.0288602132, -0.00730434852, -0.0145253548, 0.0230500717, -0.0104058692, -0.00725077139, -0.0237882454, 0.00484575378, 0.0101856077, 0.00486658933, 0.0137038389, -0.00744722085, 0.0149658779, 0.00152545993, 0.0448857285, -0.0112214321, 0.023192944, 0.0042980765, -0.00561369257, 6.23671294e-05, -0.0147872875, -0.00281726406, -0.0325272717, -0.0207641143, 0.00353906699, 0.0414329804, 0.0100963125, 0.0202997793, 0.003327735, -0.0100248763, 0.0138228992, -0.0134538123, -0.01331094, 0.0146682272, -0.00535771297, -0.00563155161, 0.0186567474, -0.00530115934, 0.00531901838, 0.027883919, 0.0213475097, -0.00688763754, -0.0148349116, -0.0337178744, 0.00678643631, -0.0140967378, -0.00545891421, -0.00347953686, 0.00159838435, 0.0209784228, 0.00281131105, -0.00361347967, -0.00235590548, 0.00850090478, -0.00513745146, -0.0110249827, 0.0245978553, 0.0127751688, -0.0186805595, 0.0060958867, 0.0107749561, -0.00305687287, 0.00326225185, 0.0135847786, 0.0132752219, 0.0159302671, -0.0239787418, 0.000927926099, 0.00417901622, -0.00589646073, -0.000757521077, 0.0114357406, -0.00205527828, 0.00767938839, -0.000640321115, 0.003004784, -0.00530413585, -0.0113107273, 0.00469097542, -0.00106782198, 0.00960221235, -0.0458382107, 0.00160433736, 0.00369086885, 0.0177876074, 0.00952482317, 0.0108225802, -0.000271048193, -0.0144182006, -0.00344084227, 0.0338369347, -0.00390517735, -0.00932837371, 0.0135014364, -9.13880722e-05, 0.0243240166, 0.00411650958, 0.00825087819, 0.00221898616, 0.00167875, 0.0380040444, 0.0187877137, 0.00098447979, 0.0105606476, 0.024050178, 0.0131561616, -0.00340214767, 0.031408105, -0.0248836, -0.0108166272, 0.0137990871, 0.0039141071, -0.00778058963, 0.0106499428, 0.0165255684, 0.000732220768, -0.00756628113, 0.00268183299, -0.00439630123, 0.0075960462, -0.00158945483, -0.00233209343, -0.011185714, 0.0204664636, 0.0156921465, 0.00291400054, 0.00843542162, -0.00359859713, 0.00151653041, 0.00482491823, 0.00766152935, -0.00557499798, 0.0162398238, -0.0225381125, 0.0068697785, -0.00529223, -0.012031042, 0.0127751688, 0.0233358163, 0.00632805424, 4.29733227e-05, 0.00191538234, -0.0139895836, -0.0010544277, -0.00201063068, -0.0100784535, 0.0180138219, -0.00901881699, 0.0174423326, 0.0310032982, -0.0113345394, 0.0384564735, -0.0243002046, 0.00337238261, 0.00426831143, 0.0222761799, 0.0148944417, -0.00428021746, 0.0217404086, -0.0104594463, 0.0157754887, 0.00176209223, -0.00829254929, 0.0148587236, 0.00842946861, 0.0206688661, 0.00463739829, -0.000681248086, -0.0170732457, 0.0199187864, 0.00194663566, 0.0085902, 0.0227167029, 0.012013183, 0.00739959674, 0.0129180411, 0.00368789234, 0.00121962384, -0.000953226408, -0.0228833873, -0.00678643631, -0.000232911683, 0.0360038318, -0.0083401734, 0.0168113131, 0.00486658933, -0.00804252271, -0.0115548009, -0.0159778912, -0.000355506578, -0.029598387, -0.0140729258, -0.00926884357, -0.00380695262, 0.0164184142, 0.000823748356, -0.00563155161, 0.00571787031, -0.00374444597, 0.00443797233, -0.0058845547, -0.00762581127, -0.0092390785, -0.0293840785, -0.0212641675, -0.0244311709, -0.0175613929, 0.00632805424, -0.00138184347, -0.0135966847, -0.0200378466, 0.0309318621, -0.00162368466, 0.00756628113, -0.00068385253, -0.0322177149, -0.0134657184, 0.0387898423, -0.00495290803, 0.0281696636, 0.00404805, -0.0295745749, -0.00686382549, -0.00109237817, 0.0147872875, -0.0153706828, 0.00414329814, 0.0170732457, -0.0263837595, -0.00416711, -0.0157397706, 0.0169303734, -0.00630424218, -0.0186091233, 0.0260027666, 0.0341703035, 0.0377183, -0.0175971109, -0.00760199921, -0.00128436286, -0.00188264076, 0.0041700867, -0.00574465888, -0.0119834179, -0.00662570493, 0.0223833341, 0.000609439856, 0.012453706, -0.00249728956, -0.010316574, 0.0188234318, -0.00910215918, -0.00122111209, 0.00638163136, 0.0111380899, -0.00655426877, -0.00463739829, 0.01032848, 0.0105725536, 0.00355692604, -0.0223714281, 0.01418008, -0.00319081568, 0.00123227399, 0.00291251228, -0.0418854095, 0.0016415437, -0.0106320838, -0.0218475629, -0.00116158195, 0.0085128108, 0.00492314296, 0.00505708577, 0.0264075715, -5.08796693e-05, -0.0172637422, 0.0233120043, 0.00215350301, -0.00263420888, 0.00753651606, 0.0203712154, 0.00497076707, -0.0352894701, 0.000924949592, 0.00613755779, -0.0104415873, 0.0461953916, -0.00483682426, 0.00211034366, -0.00494993152, 0.00275624567, 0.0139895836, -0.0137752751, 0.00921526644, 0.0246931035, -0.0149539718, 0.00685787247, -0.0260027666, -0.0197401959, 0.00826873723, -0.00158945483, 0.00197640085, -0.00354799652, 0.00417306321, 0.0143943885, -0.00567322271, -0.0036283622, 0.0106797079, 0.0272409935, -0.00465228083, 0.0311461706, 0.00770320045, -0.0105666006, 0.00941766892, 0.0239906479, 0.00196449482, -0.0152635286, -0.00633400725, 0.0035003724, -0.0150968442, 0.00151429803, -0.00424747588, -0.00577442395, 0.00232465216, -0.0115488479, 0.0152992466, -0.005798236, -0.00487551885, 0.0136562148, -0.0199664105, 0.00917359535, 0.000336903409, -0.00475645857, 0.0121381963, -0.0313366689, -0.00181269285, -0.00198979513, -0.0279791672, -0.00729244249, -0.0108285332, 0.0123108337, 0.0082985023, -0.00788179133, 0.00926289055, -1.61149965e-05, 0.00960221235, 0.00228893408, -0.00450940849, 0.0119893709, -0.0163946021, 0.0191329885, 0.0107094729, -0.0181447882, 0.000341554201, -0.0136800269, -0.00134761364, 0.00632210122, -0.00493504899, -0.0263123233, 0.0105606476, -0.0164065082, -0.0217761267, 0.00203146623, -0.0219309051, -0.0088104615, -0.00906048808, 0.00488742488, 0.0426473953, -0.000995641691, -0.00829254929, 0.00314914458, -0.0109833116, 0.00296906591, 0.00185287569, 0.0200735647, -0.0119477, 0.00582502456, -0.00214457349, 0.00273392187, -0.000492239895, 0.0137633691, 0.00747698592, 0.0111023718, -0.00294971862, 0.00858424697, 0.00775082456, -0.00494695501, -0.0109118754, 0.0246931035, -0.000681992213, 0.0103641981, -0.00569703477, 0.00720314728, 0.00770915346, -0.0101320306, -0.0153468708, -0.0142753283, 0.0125489542, 0.00694716768, -0.00432784157, -3.2811342e-05, 0.0287173409, 0.00482491823, 0.0126322964, 0.0204069335, -0.00735197263, 0.00777463662, 0.00680429535, 0.033122573, 0.000725523627, -0.00203146623, -0.0284554083, -0.00248240703, -0.00982247386, -0.0115607539, 0.0115667069, -0.0105130235, 0.0104773054, 0.0211927313, 0.00131115143, -0.00231423439, -0.0280267913, 0.00166237925, -0.0049826731, -0.00319379219, -0.000800680427, -0.00663165795, 0.0126799205, 0.0094117159, 8.90161682e-05, 0.0128227929, -0.0178471375, -0.00265653268, 0.000419687509, 0.0163707901, 0.00503029721, -0.000536887499, 1.09293624e-05, -0.00889975671, -0.000229749145, -0.0116917202, -0.0157040525, -0.00261188508, 0.0178471375, -0.0308366138, 0.00150462438, -0.00713766413, -0.00165047322, -0.00794132147, 0.0127751688, -0.00284405262, 0.0238477755, 0.0176685471, 0.0097093666, 0.00361943268, 0.0015775488, 0.00601849752, -0.0111916671, -0.00910215918, -0.00994748715, 0.0122036794, -0.00770320045, 0.0111976201, -0.000105852036, 0.0233000983, 0.0105070705, -0.0119000757, -0.00533390092, -0.0196806658, 0.007512704, 0.00128064223, -0.0183948148, 0.032265339, 0.0194425453, -0.00801275764, 0.0134657184, -0.0210855771, -0.00680429535, -0.00887594465, -0.0180257279, 0.0149777839, 0.000210401849, 0.00293185958, 0.0169303734, 0.027907731, -0.010727332, -0.0256217737, 0.00350632542, -0.0157873947, -0.0245978553, -0.0131442556, -0.0101439366, -0.0305746812, 0.00337535911, 0.0125965783, 0.00065520365, 0.00740554975, 0.00610183971, 0.0183829088, 0.0155016491, 0.0043427241, 0.0288840253, -0.00139449362, -0.00783416722, 0.0253836531, 0.00850685779, -0.000575582089, -0.00359562063, -0.0102451378, 0.0294793267, -0.0075960462, -0.00914978329, -0.000810354075, -0.015894549, 0.0105904127, 0.0118524516, -0.00298692496, -0.0127870748, 0.00594110833, 0.0022145214, -0.00747698592, -0.00761985825, 0.0297412593, -0.00828064326, 0.00564941065, -0.0100903595, -0.00601552101, 0.0245502312, -0.0041700867, -0.00852471683, -0.0127989808, 0.0090664411, -0.0328368284, -0.0319795944, -0.0316224135, 0.00082970137, -0.00679834234, -0.00904262904, 0.0315509774, -0.00230232836, 0.0157993, 0.0229429174, 0.0166684408, 0.0144777307, 0.0119477, 0.012465612, 0.000748963619, -0.0119000757, 0.0182638485, -0.0230024476, -0.00367598631, -0.0144658247, 0.0162636358, -0.0109833116, 0.00916764233, 0.00125385367, 0.0131561616, -0.00944743399, -0.00744722085, -0.00786393229, 0.028764965, 0.0202997793, 0.000948761648, -0.00367598631, -0.0111142779, 0.00761390524, 0.00288870023, 0.0117452973, 0.00475943508, 0.00464335131, -0.00335452356, 0.00385160022, -0.00860210601, -0.00150536851, -0.000820027723, 0.000224354226, -0.00209843763, 0.0212641675, -0.0200973768, -0.00211480842, -0.00573870586, 0.0217404086, -0.0107035199, 0.00739364373, 0.0102272788, 0.00430105301, -0.0170256216, 0.0232286621, -0.000921973085, -0.00917954836, 0.00563155161, 0.0112690562, -0.0133704701, 0.0138586173, 0.0156207094, -0.0156445224, -0.00462846877, -0.00133570761, 0.00741745578, -0.0255979616, 4.62288772e-05, -0.0074234088, 0.010727332, -0.0290268976, 0.0226095486, 0.0128466049, 0.0165493805, 0.0174542386, -0.000351041817, 0.00318486267, 0.0312414188, -0.00563452812, 0.00267736823, -0.0152873406, 0.0100844065, -0.00500350865, -0.0271933693, 0.0135014364, 0.0138348052, -0.0216689724, -0.00662570493, 0.0011600937, 0.00913192425, 0.0169660915, -0.0224071462, -0.0170613397, 0.0266695041, 0.00214755, 0.0282649118, 0.00954268221, -0.0217642207, -0.0190258343, 0.0207522083, 0.00233507, -0.00218029157, 0.0106380368, 0.0137871811, -0.0168708432, -0.00886403862, -0.000810354075, 0.0202640612, 0.00139077299, -0.0157993, -0.0113047743, 0.0187281836, 0.0126918266, -0.004083768, -0.00799489859, 0.00162070815, 0.0105487416, 0.00892952178, -0.00209694938, 0.000799936301, 0.00853067, -0.0155968973, 0.00479812967, 0.0120786661, -0.0107868621, 0.00867949519, 0.0122513035, -0.0167875011, 0.00036127356, -0.00173381541, 0.015025408, 0.0312652327, 0.0126680145, 0.0180733521, 0.0135966847, 0.0348370411, -0.00656022178, -0.00539045455, -0.00619708793, -0.0185376871, 0.0100963125, 0.0179185737, -0.000163614881, 0.00661379891, -0.00843542162, -0.0186329354, -0.0121917734, -0.0152159045, 0.0168470312, -0.0134180943, 0.0114416936, -0.00289316499, 0.0161326695, 0.00681620138, -0.0181447882, 0.00727458345, -0.00344977179, 0.0124298939, 0.0141205499, 0.0100070173, -0.00527139427, 0.0173113663, -0.00997725222, -0.00791750941, 0.00541724311, 0.0143824825, 0.0030271078, -0.00937004481, 0.017204212, 0.0122632096, 0.0131799737, -0.0365753211, -0.00974508468, -0.00235590548, -0.00973317865, 0.00646497356, -0.030455621, -0.0170732457, 0.000813330582, 0.00864973, 0.0107809091, 0.0325510837, -0.00313723856, -0.00991772208, 0.02686, 0.0076377173, -0.000101294259, 0.00873902533, -0.00334261754, 0.00862591807, 0.00452726753, -0.00188710552, 0.0157040525, 0.00894738082, -0.0222523678, 0.00260295556, 0.00658998685, 0.00051605195, -0.0157873947, -0.00149792724, -0.00496183755, 0.0101975137, 0.000705432205, -0.0153825888, -0.0155849913, 0.00617922889, 0.0125489542, 0.0237287153, -0.0121917734, -0.00554820942, -0.0056702462, 0.00192282361, 0.00184096966, -0.00440523075, -0.00779249566, 0.00491421344, -0.0062209, 0.00527437078, 0.0134419063, -0.00995939318, -0.0164898504, 0.0118107805, -0.0131918797, -0.00976294372, 0.0307175536, 0.0337416865, -0.00629233615, 0.0224547703, 0.00257319049, -0.00657212781, -0.00237971754, -0.00435760664, -0.0217285026, -0.0134538123, 0.0171684939, 0.0180019159, -0.0229667295, 0.00100754772, 0.00305389636, 0.00358669111, -0.00780440168, 0.00343488925, -0.0088521326, 0.00395280169, 0.00604826258, -0.0192996729, -1.54755126e-05, -0.0040420969, 0.0186448414, -0.0109416405, 0.00401828485, 0.00190198806, -0.00845923368, 0.0257884581, -0.00481896522, 0.0238239635, -0.0104653994, -0.00431891205, 0.00743531482, 0.00756628113, 0.0170018096, -0.00942957494, -0.00289614149, -0.000301371358, 0.00186031696, -0.00747103291, -0.00401233183, 0.0144658247, 0.00445880787, -0.0091974074, -0.00223833346, -0.0117691094, -0.0289078373, -0.0113285864, 0.0169899035, 0.0118881697, -0.0129061351, -0.0120905722, 0.00386945927, -0.0129061351, 0.021478476, 0.0146801332, 0.0259789545, -0.00273689837, 0.0121381963, 0.0120012769, 0.0207998324, -0.0145134488, -0.00186329347, -0.0234191585, 0.00664951699, 0.00380695262, -0.0186567474, 0.0106499428, -0.0118405456, -4.79031623e-05, -0.00215647952, -0.0100784535, 0.0135847786, 0.0170375276, -0.0154778371, 0.0105487416, 0.0298841316, -0.00138482, -0.00718528824, 0.0164660383, 0.012453706, -0.0289078373, 0.0226452667, -0.00719719427, -0.0159778912, -0.0112392912, 0.00587264867, -0.00253003114, 0.0206450541, -0.0165374745, -0.00935218576, -0.00360157364, -0.0116917202, 0.000994897564, -0.00120399718, -0.0090843, 0.0012240886, -0.00672690617, -0.0129775712, -0.00116902322, 0.00916168932, 0.00735792564, 0.00632210122, -0.00775082456, 0.00702455686, 0.00779844867, -0.0026431384, -0.0094950581, 0.00322355726, 0.00674476521, -0.00190794107, -0.00515233399, 0.00701860385, -0.000485542725, -0.00330094644, 0.00237227627, -0.0255503375, 0.00884022657, -0.00165493798, 0.0121739144, -0.0203235913, 0.027479114, -0.00275475741, 0.00500053214, -0.0116857672, -0.00126650382, -0.0298365075, -0.000462102733, 0.029622199, -0.0193711091, -0.0260742027, -0.0161088575, 0.00934623275, 0.00343488925, 0.0038396942, -0.00116530259, -0.00650664466, 0.00183501665, -0.0138943354, 0.00393196614, 0.00682215439, -0.0208950806, 0.0104594463, 0.00668523507, -0.0038396942, 0.00566429319, 0.0225500185, 0.0139538655, -0.0106678018, -0.00945934, 0.0144658247, 0.00311937951, -0.0245502312, 0.00717933523, -0.0122274915, 0.00469097542, 0.00461060973, -0.017192306, 0.00813777093, 0.00688763754, 0.0127751688, 0.00657808082, -0.00548867928, 0.00697097974, 0.000714733789, -0.0104475403, -0.0119000757, 0.0277172346, -0.00556606846, 0.023181038, -0.00213266746, -0.0103403861, -0.00549165579, 0.00564345764, 0.0162398238, 0.00485766, 0.0163588841, 0.00575954141, -0.00659594, -0.0275505502, 0.0223714281, -0.00435463, -0.0250740964, -0.000838630891, -0.0120667601, 0.000172637418, 0.00483980076, -0.00548272626, -0.00414925115, -0.000230493271, -0.0208831746, 0.0177637953, -0.0140491137, 0.0043427241, -0.0157278646, 0.0031997452, -0.0073400666, 0.00467311637, 0.0111261839, 0.00155968976, 0.00513745146, -0.00642925547, 0.00127096858, -0.010727332, 0.00564048113, 0.022752421, -0.0111142779, -0.00221600966, 0.00260444381, -0.0222523678, -0.0345036723, 0.0131085375, 0.0206807721, 0.00954863522, 0.0193830151, -0.00635781931, -0.00901286397, 0.00650069164, -0.0018335284, -0.00486361282, 0.0424092747, 0.00926289055, 0.000770171231, 0.00229042233, -0.00877474342, 0.00155373674, 0.000423780206, -0.0182876606, 0.00494993152, 0.00847114, 0.0259313304, -0.00836398546, 0.00782821421, 0.00762581127, 0.00288870023, 0.000501169416, -0.0192758609, -0.00142202631, 0.00012119965, -0.00557202147, 0.00168767956, 0.00358669111, -0.0220618714, 0.00667332904, -0.0170375276, 0.0220618714, -0.00558095099, -0.0173589904, 0.00280238152, -0.00261188508, -0.000273466605, 0.0133823762, 0.00584288361, 0.00650069164, 0.0066971411, 0.00660189288, -0.0258598942, 0.0368848778, 0.0143467644, -0.000414478622, 0.00358073809, -0.00135728728, 0.00739959674, 0.0172637422, -0.00162517291, -0.00975699071, 0.0123941759, -0.00983438, 0.0155016491, 0.00857829396, -0.0169541854, -0.0202521551, -0.00955458824, 0.00093462324, -0.00670309411, -0.0143348584, 0.0170256216, -0.00209099636, 0.00225172774, 0.0218237508, 0.0116262371, 0.0217642207, 0.0165850986, 0.0031967687, 0.0192044247, -0.019323485, 0.00387541228, -0.0104415873, -0.0195497, -0.000459126226, -0.0149301598, -0.00229637534, 0.0155135551, -0.00825683121, -0.00532199489, 0.00263420888, -0.00323546329, 0.00271159806, 0.00308663794, 0.00138333172, 0.0262170751, -0.00407781499, -0.00487849535, -0.0185257811, -0.0139895836, 0.0236691851, 0.0138705233, -0.00534283044, 0.0221571196, 0.000488891324, 0.024062084, 0.00150164787, -0.018466251, 0.0149539718, 0.0101856077, -0.000282024062, 0.00739959674, -0.0140848318, -0.0125370482, 0.0138824293, -0.00792346243, 0.031408105, 0.00343191274, -0.0194068272, 0.00444094883, -0.000573349709, 0.00895333383, -0.0380040444, -0.00857234094, 0.00143690885, -0.00499457913, -0.0170613397, -0.0190139282, 0.00152397167, 0.000471032254, 0.010316574, 0.00870926, 0.00889975671, 0.00464335131, -0.0111142779, 0.000441639248, -0.00914978329, 0.00149048597, 0.0119417468, -0.0219547171, -0.0194663573, 0.00127171271, 0.00728053646, -0.00503327372, -0.0043843952, -0.0296698231, 0.0212165434, -0.0146920392, 0.0108702043, 0.0258598942, -0.00718528824, 0.00976294372, 0.00113553752, 0.0085128108, -0.00636972534, -0.00659594, -0.0139062414, -0.00869140122, 0.00638758438, -0.0147158513, -0.0182281304, -0.00244073593, -0.00384862372, 0.000702083635, 0.00320867472, 0.00593515532, -0.0195139814, 0.0120489011, 0.0143467644, -0.00258063176, -0.00641734945, 0.00840565655, -0.00810205285, -0.0277172346, 0.0204069335, 0.0155373672, -0.0142634222, 0.0188710559, -0.0215261, -0.0191329885, -0.0503863133, -0.0276934225, -0.0191568, 0.017204212, -0.000896672776, -0.00427724095, 0.0212998856, 0.00186627, -0.00259104953, 0.0314557292, 0.00242734165, 0.00950696412, -0.0170613397, -0.0203831214, -0.0127156386, -0.00528627681, 0.0109654525, 0.00371765741, 0.00317593315, 0.0158469249, 0.00959625933, 0.00232316391, 0.00760199921, 0.0130966315, 0.0131085375, 0.01418008, -0.00875093136, -0.00265802094, 0.0172875542, 0.00394684868, -0.0142157981, 0.00608100416, -0.00945934, -0.009882004, -0.014144362, 0.0117333913, -0.0165255684, 0.0133823762, 0.0224785823, 0.00629828917, 0.00728053646, 0.0101677487, 0.0154064009, -0.00729244249, 0.000478845584, 0.00580716552, -0.00269522727, 0.00518507557, 0.00982842688, 0.0157993, -0.011149996, -0.0101856077, -0.00252258987, -0.0165970046, -0.0142753283, 0.0103344331, 0.0109952176, 0.010733285, 0.0245740432, -0.0106678018, -0.0115667069, 0.0139181474, -0.0262170751, 0.00544700818, 0.0123465518, -0.00873902533, 0.0124894241, 0.0325034596, -0.0122036794, -0.00381588214, -0.00730434852, -0.0238715876, -0.0104177753, -0.0158112068, 0.0121858204, -0.0114119286, 0.00209992588, 0.0226690788, 0.0147396633, 0.0135847786, 0.0158588309, -0.0010626131, -0.00415520417, 0.0213832278, 0.0368610658, -0.0150849381, -0.0003116031, 0.0119536528, -0.00852471683, 0.00415222766, -0.030884238, 0.0121858204, -0.00486063631, 0.0152039984, 0.0265266318, 0.00603040354, 0.0113464454, -0.0123941759, 0.00290358276, -0.0349322893, 0.00179781031, 0.0086378241, -0.00530413585, 0.000937599747, -0.0173470844, -0.00602147402, -0.0186091233, -0.0126442024, -0.00543510215, -0.0323129632, 0.000168451705, -0.00202848972, 0.0328844525, 7.70636325e-05, -0.00163261418, -0.0229786355, 0.00152992469, -0.0137633691, -0.00811395887, 0.0177518893, -0.0157993, -0.00525055872, -0.0111261839, -0.00509578036, -0.0427426435, -0.0135133425, -0.00696502673, 0.00277410471, -0.00621494697, 0.00303306081, -0.0161326695, 0.0162993539, -0.00160731387, 0.0210736711, 0.0280744154, -0.00408674451, 0.00113032863, -0.0176923592, -0.0090664411, -0.0306461174, 0.00486956583, -0.00997129921, 0.0336702503, -0.0168589372, -0.0164065082, -0.00642330246, -0.024478795, -0.00367896282, -0.022764327, 0.0136324028, -0.0127156386, -0.0467668809, 0.0121679613, 0.0187758077, -0.0265266318, 0.0223595221, -0.0233120043, 1.55336475e-05, -0.00681620138, 0.0111083249, -0.00901286397, 0.0205259938, -0.0105189765, -0.0146206031, -0.0182043184, 0.00582800107, -0.0293840785, -0.0250264723, -0.00411650958, -0.0202997793, 0.00760795223, -0.00641734945, -0.0130132893, -0.0136443088, -0.00611374574, -0.0110785598, -0.0178471375, -0.0164303202, -0.00508387433, 0.00479217665, -0.0249550361, -0.0137157449, 0.00071585, 0.0164660383, -0.00667332904, 0.0037146809, -0.022776233, -0.00176209223, -0.00702455686, 0.0142277041, -0.00423854636, -0.00977485, -0.0036253857, 0.0153230587, -0.00500350865, 0.0119953239, -0.00879855547, -0.00966174249, 5.69257e-05, 0.0127870748, -0.0133466581, 0.00273243361, -0.00405400293, -0.00512256892, 0.0198473502, 0.0259789545, -0.00599766197, -0.00193472963, -0.00617327588, 0.0172875542, 0.000492984, 0.00192133535, 0.00131859269, -0.00868544821, -0.0181924123, 0.00815563, -0.0151920924, -0.0101617957, -0.00154778373, -0.0149301598, -0.00892952178, -0.0109416405, 0.00556309195, -0.0225262064, 0.000852769299, -0.0187162776, -0.000444243691, -0.0088104615, 0.0157516766, -0.00246008323, 0.00806633476, 0.00711980509, 0.00367598631, -0.0188710559, 0.0187519956, 0.0107809091, -0.0176447351, 0.0259313304, -0.00116604671, 0.0246931035, -0.014584885, -2.73234059e-06, -0.00501839118, 0.0120012769, -0.0121441493, -0.00158796657, -0.0182757545, -0.0051969816, 0.0165136624, -0.0107987681, 0.00636972534, -0.0215261, 0.0178828556, -0.0140133956, -0.0088104615, -0.00269671553, -0.0324796475, -0.0131323496, 0.00122111209, 0.0132633159, 0.00301520177, 0.00706622796, -0.00897714589, -0.0367420055, -0.00873307232, 0.0200973768, -0.0441475548, -0.00230084, 0.00912001822, -0.032241527, 0.0157397706, 0.0140729258, -0.0083818445, 0.00661975192, -5.24144307e-05, -0.0123584578, 0.000300069136, -0.00886403862, 0.00188710552, -0.0173589904, 0.00075789314, -0.0114357406, -0.0127037326, -0.0151087502, 0.0361943282, 0.000699479191, 0.0162041057, -0.00789369736, 0.00348251336, 0.00813181791, -0.015918361, 0.0241216142, 0.00416115718, 0.00345870131, 0.00606016861, -0.0254312772, 0.0174066145, -0.0161564816, -0.0123822698, -0.00649473863, -0.0131799737, -0.0177042652, -0.00179929857, 0.00942362193, 0.02916977, -0.00204634876, -0.0153944949, -0.0125489542, 0.0251217205, 0.0152159045, -0.0268838126, -0.0112452442, 0.0239787418, 0.003327735, -0.00480110617, -0.00983438, -0.000719570613, -0.0102570439, -0.0148349116, 0.00969746057, -0.0175971109, 0.02320485, 0.000531678612, -0.0165731926, -0.0357657112, 0.0260265786, 0.00216243253, 0.00662570493, 0.00471776398, -0.0157397706, 0.00710194604, -0.00642330246, 0.0170613397, 0.00288870023, -0.00860210601, -0.00100308296, 0.0110607008, 0.0032860639, 0.0126799205, -0.000716222043, -0.00792346243, 0.00316998013, 0.009453387, -0.0207045842, 0.0141324559, 0.0227047969, -0.00339321815, 0.0063994904, -0.00145253551, -0.0022785163, -0.00305687287, 0.00255086669, 0.00134538126, -0.0147872875, -0.000697246811, 0.0300746281, -0.00316700363, 0.00703051, 0.00315807411, -0.0311223585, -0.0215975363, -0.0046850224, -0.00583395408, 0.00570894079, 0.0425759591, 0.0143824825, 0.00425938191, -0.0150492201, 0.0103403861, -0.00647092657, -0.00325332233, 0.0118286395, -0.015454025, 0.0127870748, 0.00716147618, -0.0117214853, 0.0147515694, -0.0140253017, 0.0148349116, 0.0105427885, -0.015454025, -0.00577144744, -0.0153706828, -0.0228476692, 0.00932242069, 0.010316574, -0.00623875903, -0.00280982279, -0.0143467644, -0.00676262425, 0.0108106742, -0.0080961, -0.000843839778, -0.0158826429, -0.0226452667, 0.0130609134, 0.0166089106, 0.00153438945, 0.00530413585, -0.0174066145, 0.015894549, 0.0118584046, 0.0307889897, 0.00491123693, 0.010751144, -0.0190496463, 0.00347060733, 0.00167577353, 0.0177757014, -0.0169779975, -0.000235702159, -0.0162755419, 4.69730039e-05, 0.00133570761, 0.00713171111, 0.00261188508, -0.00489040138, 0.0222761799, 0.0102272788, 0.0065245037, 0.00892952178, -0.0085128108, 0.00232762867, -0.0149896899, 0.00395280169, 0.0032414163, 0.00646497356, -0.0269790608, 0.0116262371, -0.00450345548, 0.00884618, -0.0435998775, 0.0100367824, -0.0277648587, -0.00870926, 0.0234548766, -0.0253836531, 0.00308961445, -0.0208236445, -0.0126084844, -0.0161445756]
|
31 Aug, 2020
|
Fabric.js Polygon cornerStrokeColor Property
31 Aug, 2020
In this article, we are going to see how to set the color of controlling corners of the canvas of polygon using FabricJS. The canvas polygon means the polygon is movable and can be stretched according to requirement. Further, the polygon can be customized when it comes to initial stroke color, shape, fill color, or stroke width.
To make this possible we are going to use a JavaScript library called FabricJS. After importing the library, we will create a canvas block in the body tag which will contain the polygon. After this, we will initialize instances of Canvas and polygon provided by FabricJS and set the color of controlling corners of the canvas polygon using cornerStrokeColor property and render the polygon on the Canvas as given in the below example.
Syntax:
fabric.Polygon([
{ x: pixel, y: pixel },
{ x: pixel, y: pixel },
{ x: pixel, y: pixel },
{ x: pixel, y: pixel },
{ x: pixel, y: pixel }],
{
cornerStrokeColor: string
}
)
Parameters: This property accepts a single parameter as mentioned above and described below:
cornerStrokeColor: It is a string that specifies the color that would be used for the controlling corners.
Note: The dimension pixels are a must for creating a polygon.
Below example illustrate the Polygon cornerStrokeColor Property in JavaScript:
Example:
HTML
<!DOCTYPE html>
<html>
<head>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;
width: 600px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Polygon cornerStrokeColor Property
</b>
</div>
<canvas id="canvas" width="600" height="300"
style="border:1px solid #000000;">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a polygon instance
var polygon = new fabric.Polygon([
{ x: 295, y: 10 },
{ x: 235, y: 198 },
{ x: 385, y: 78 },
{ x: 205, y: 78 },
{ x: 355, y: 198 }], {
transparentCorners: false,
// Set the corner stroke
// color to red
cornerStrokeColor: 'red'
});
// Render the polygon in canvas
canvas.add(polygon);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js Polygon cornerStrokeColor Property
|
https://www.geeksforgeeks.org/fabric-js-polygon-cornerstrokecolor-property?ref=asr9
|
CSS
|
Fabric.js Polygon cornerStrokeColor Property
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, Fabric.js Polygon cornerStrokeColor Property, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.011927926, -0.0158131644, -0.0130910231, 0.0379862376, 0.046028927, 0.0127816889, -0.0128188087, 0.00976258703, -0.022259688, -0.0319727808, -0.001106643, -0.00164565793, 0.000976722687, -0.0535519347, 0.0286567193, -0.00117933657, -0.0313293673, -0.0140066519, -0.0175578091, 0.00168123131, -0.0142664928, -0.0115443515, -0.0338782817, 0.00773954159, 0.0165555663, 0.0336803049, 0.0403124318, 0.0288299471, -0.0211955793, 0.0283845048, 0.0273451414, 0.000547521515, 0.00705281971, -0.0363282077, -0.013066276, -0.0256871115, 0.00359136984, 0.0648859367, 0.00599799, -0.0163699649, -0.0188817587, 0.0102080284, 0.00296651479, 0.0185971707, 0.00577526912, 0.0131900096, -0.00418529147, 0.00961410627, 0.0157018043, -0.0328141712, 0.0011081897, -0.0211460851, 0.0227051303, -0.00149949745, 0.0188075192, 0.00723842, -0.00187611184, 0.0356353, -0.013462224, -0.0125589678, -0.00554017536, -0.0718645155, -0.0414507799, -0.0034985696, -0.0240909457, 0.00340886274, -0.00404918473, 0.00962648, -0.0305622183, 0.00317686214, -0.015627563, 0.0220988337, 0.0187951457, -0.019809762, 0.00412342465, 0.00614028377, 0.0504585914, -0.0085190637, -0.0333338529, 0.0597386174, -0.0355858058, -0.00115304324, -0.0143407332, 0.0298198164, -0.0285329856, -0.0191663466, 0.0532549731, -0.0385306664, 0.0113216313, 0.024820976, -0.0102884555, 0.00572886923, 0.0290031731, -0.0575114116, -0.0280875452, -0.0203665625, 0.00561441574, -0.0246724952, -0.0143531067, 0.0083829565, -0.00382027728, 0.0280875452, 0.0134251034, 0.0189931188, 0.0459299386, -0.0305622183, 0.0142788664, 0.00840151682, -0.00453483919, -0.00239115325, 0.014118012, -0.0259345789, 0.00068401522, 0.0397185087, -0.00994818751, 0.030883925, 0.0151078822, -0.0246848688, 0.0319480337, -0.0119588599, -0.000108170301, -0.00689196587, 0.0048163333, 0.0127940616, -0.0215544067, 0.0124785416, -0.0255633779, 0.0202552024, 0.012410488, 0.00293712807, -0.0246477481, -0.0288052, 0.00171680469, 0.00359755661, 0.0303642433, 0.024536388, -0.01098755, 0.00237878, -0.00524321431, 0.0145882005, -0.0127940616, -0.0240909457, 0.0202428289, 0.0346949212, 0.0113773113, 0.00597014977, 0.0171247404, -0.0143407332, -0.0070218863, 0.030116776, -0.037342824, 0.0216286462, 0.0511267558, -0.0118660592, 0.0370953567, -0.0277163424, -0.00602273643, 0.00414817128, 0.0419704616, -0.0563730635, 0.0309334192, 0.00930477213, 0.0178795159, 0.0351898558, -0.0158379097, -0.0212698188, -0.00180341827, 0.00452555902, -0.0509287789, 0.0196489077, -0.00245302, -0.00689815218, 0.0334328376, -0.0118908063, -0.0487263203, -0.0245735087, -0.000455881265, -0.0281865317, 0.0092429053, -0.0165431928, -0.0431088135, 0.0193890668, 0.022544276, 0.0488748029, -0.00855618343, 0.0251426827, 0.0301662702, 0.00603201659, -0.00787564833, -0.0214430466, -0.012979663, 0.0156523101, 0.0542448424, 0.00222875271, 0.0035480631, 0.0029989949, 0.0108266966, -0.00575670926, -0.0116804587, -0.0106596565, 0.0363777019, -0.0146624409, -0.0197478943, -0.0421436913, 0.0221854486, -0.0136478245, -0.00129843026, -0.0548387654, 0.0599365905, 0.00938519929, -0.00411105156, 0.0243012942, 0.022717502, 0.000224653952, -0.0168277808, 0.00669399183, -0.0101090409, 0.00261696731, -0.00843245, -0.0164070856, 0.0328884125, 0.0260583125, -0.047736451, -0.00393473078, -0.0512752347, -0.0143654794, 0.0181022361, 0.0100842947, -0.00865517091, -0.0412775539, 0.00363777, -0.0176073015, 0.00150181749, -0.00326347561, 0.0321212634, 0.0359322578, -0.0185229313, 0.000555254868, 0.0146995606, 0.00438635889, -0.00325728906, -0.0117546991, -0.0146624409, -0.0238434784, 0.0387533866, 0.00790039543, -0.0191416, -0.00848813, 0.0211584587, 0.0169515144, -0.0446431115, -0.0340515077, -0.00264480733, 0.00590828294, -0.0267264731, -0.0135983313, -0.0191910937, -0.0551852174, 0.0459299386, 0.0133013697, 0.052463077, 0.0359075144, -0.0168277808, 0.00705900602, -0.0183497034, -0.00851287693, 0.00811692886, -0.0342247337, -0.00214523263, -0.0126827015, 0.00911917165, -0.041896224, 0.0352146029, -0.0363777019, -0.0151821217, 0.0430098251, -0.012695075, -0.0105730426, 0.0219256077, -0.0157018043, -0.0358332731, 0.0129301688, 0.0152192423, 0.0107957628, 0.0196117871, -0.0128559293, -0.0119341128, 0.0269739404, -0.0376397856, -0.0481818914, -0.0147614274, -0.0363282077, 0.0246724952, -0.0308096856, 0.00339648942, -0.00389451743, 0.0175454356, -0.0250065755, -6.23985e-05, 0.00689815218, -0.0459299386, -0.0405846462, -0.0368973836, 0.00663831178, 0.0015002708, 0.0190549865, 0.0468455702, 0.0048163333, 0.0139942784, 0.0176320486, 0.0108081363, -0.00820973, -0.0317253135, -0.0173845813, 0.00931714568, -0.00367179676, 0.0601840578, 0.0022473128, -0.0131900096, 0.00803031586, -0.0359075144, -0.0106905894, 0.00715180626, 0.0274193827, 0.0306364577, -0.0214677919, -0.00408939784, -0.0241280664, -0.0242270529, 0.0103008281, -0.0416982472, -0.00200139219, -0.0165803116, 0.0123733673, 0.00356971659, 0.0272709019, -0.00424097152, -0.00987394713, -0.0321955, 0.0318243019, 0.00388833066, 0.0165060721, -0.0042811851, -0.0123300608, 0.0378130116, -0.0455834866, 0.0168030336, 0.0135117173, 0.0406341404, 0.0516711846, 0.000801948889, 0.0297208279, -0.0112845115, 0.00438635889, 0.0144768404, -0.00734359352, 0.0207006447, -0.0386049077, -0.0535024405, -0.0118660592, 0.0152687356, 0.0265037529, 0.0465981029, -0.00517206779, 0.0339525193, -0.0150212683, -0.0147366803, 0.015256362, 0.00366251683, -0.00302528846, -0.0267759673, -0.0457319655, -0.0293991212, -0.0271471683, -0.0185476784, -0.0205521639, -0.00155517762, 0.00718892645, -0.0340762548, 0.00148789748, -0.0461526625, 0.0453112721, -0.000115226983, 0.00618049689, 0.0529085211, 0.0525620654, -0.011358751, 0.00926146563, 0.0369963683, -0.0322944894, -0.0322944894, 0.0140190255, 0.0406093933, -0.0282607712, 0.0125032878, -0.0254643895, -0.0116742719, -0.0158131644, 0.0150460145, -0.0406093933, -0.0247467346, -0.00951512, -0.00340576936, -0.0225071553, 0.0278648231, -0.00996056106, -0.0227546226, -0.0169143938, -0.00734359352, -0.00939138606, -0.0165308192, 0.0224205423, 0.0126270214, -0.0112164579, 0.0334080905, 0.0207006447, -0.00153661764, 0.0659253, -0.00908205193, 0.011501045, 0.0555316731, -0.0220864601, -0.0333091058, -0.0129672894, -0.000285360788, -0.040708378, -0.00710231299, -0.0214801654, -0.00884695817, 0.0171866082, -0.113834985, -0.0110617904, -3.47517635e-05, -0.00882839784, 0.00610316359, -0.00552780181, 0.0172979683, 0.0188817587, 0.043925453, 0.0259345789, 0.0116062183, -0.00302374177, 0.0292506404, -0.0306859519, -0.00884077139, 0.0327399299, -0.0432572924, -0.014971775, 0.0341999866, 0.0134993438, -0.0154790832, 0.00346454279, -0.0598871, -0.0188693851, -0.0262562856, -0.0135612106, 0.0287804529, 0.00749207381, 0.0299682952, 0.00585569628, -0.0311066452, -0.0248704683, -0.0255138837, 0.0188941322, 0.00955223944, 0.0168277808, -0.0028164878, -0.0150955087, -0.00208027242, -0.000716108654, -0.00212821923, 0.0163328443, 0.00895831827, 0.0276915971, 0.012552781, 0.00155672431, -0.0064527113, -0.0179661289, 0.0152811091, -0.0464248732, 0.0282607712, -0.0270976741, -0.0191910937, 0.0234599058, -0.0108576296, -0.014971775, 0.0027314208, -0.0424901433, 0.00117778988, 0.000733122055, 0.04739, 0.0167287923, -0.024338413, -0.0101585351, -0.0109442435, 0.0315025933, 0.00313355541, -0.0356105529, 0.0516216904, -0.017706288, 0.011074164, 0.0255633779, 0.00716418, 0.0227917433, 0.0267512202, 0.00142216391, -0.0155285764, 0.0207748841, -0.0228659827, -0.0106782159, -0.0413765423, 0.0260830596, -0.010133788, 0.0192777067, -0.00903874543, -0.0298940558, 0.0271224212, 0.0143778529, -0.0324429683, -0.00690433895, 0.00177093828, -0.0319975279, 0.0054968684, -0.00786946155, 0.00229525962, 0.050186377, -0.00424097152, -0.0374913029, 0.00235094, -0.011129844, -0.00736215385, -0.007857088, 0.00176165823, 0.0154048428, 0.0137096914, -0.0147985471, -0.00400587777, -0.0156894308, 0.0174217019, 0.00210965914, -0.0544428155, 0.00573196262, -0.0329131559, 0.00672492525, -0.00577526912, 0.0104926154, -0.00177557825, 0.0172732212, -0.0184363183, 0.00171371142, -0.0478849337, 0.0197973885, -0.00349238305, 0.000258874061, 0.0165926851, -0.00743020698, 0.0188198928, -0.0269244481, -0.0229154769, -0.012893049, 0.02766685, 0.00873559713, 0.0132395029, 0.0195375476, -0.0106967762, -0.0340267606, -0.0197231472, 0.00290310127, -0.0164318327, -0.00647127116, 0.00697857933, -0.0402629375, -0.00394710433, 0.0351403654, -0.00762818102, -0.00388833066, 0.00252107368, -0.017990876, 0.0133137433, 0.0222844351, -0.0215296596, -0.0190302394, 0.00898925122, 0.0231010765, -0.00835202262, 0.0127445683, -0.00824066252, 0.00582476286, -0.0551357269, -0.0364766866, -0.0203418154, 0.0213811789, -0.0255881231, 0.000453561253, -0.0398174971, 0.0208738707, 0.0276173558, -0.0340267606, -0.0158874039, -0.0159245245, 0.00474827969, 0.0302900039, 0.00805506203, -0.0137715582, -0.00613100361, -0.0386791453, 0.0125651546, 0.0217647534, 0.0204036832, 0.00749207381, 0.00207872572, -0.0124847274, 0.00260768714, -0.0204408038, -0.0176691692, -0.018188851, 0.0322697423, 0.0311561394, -0.00837677, -0.0292258933, -0.0028335012, -0.0191416, 0.0435295068, -0.00444822572, 0.0165803116, -0.0145634534, -0.0348186567, -0.0359570049, 0.0112535777, -0.0455339924, -0.0294733606, 0.000504988071, -0.0209109914, 0.00769623462, -0.0126827015, 0.0279390644, -0.00970690697, 0.0532549731, -0.0284587462, -0.00678679207, -0.0152439885, 0.0115876589, 0.0102513349, 0.028433999, 0.00612791, 0.0184734371, -0.0318985432, 0.00889645144, 0.0111422176, -0.00229371293, -0.0360559933, 0.00936663896, -0.0156151894, 0.0162091106, 0.00872322451, 0.0127074486, 0.00416363822, 0.0470435433, -0.0265532471, -0.02766685, 0.0228412356, -0.0324924625, -0.00867991708, -0.0209233649, -0.00298971497, 0.013920038, 0.0444203876, 0.0184858106, 0.0110617904, 0.00892738439, -0.0305127241, 0.000503054704, -0.00451318594, 0.00989869423, 0.00589281647, 0.00140901725, -0.0446678549, 0.0477117039, 0.00988632068, 0.0129920356, -0.00952130649, -0.0298940558, -0.0145758269, -0.0071332464, -0.0204160567, -0.00360065, -0.0194633063, -0.00309024844, -3.51625968e-05, -0.0170752481, 0.0196612813, -0.0160977505, -0.0098368274, 0.0041450779, 0.0137096914, 0.0149470279, 0.0120454729, -0.0336803049, -0.0040306244, -0.00832109, 0.0020338723, -0.00290310127, -0.0176939163, 0.0316510759, -5.88701623e-05, 0.0482808799, -0.0183373298, 0.0127445683, -0.0121073397, -0.0263800193, 0.0314036086, 0.0128806755, -0.00914391875, 0.00827778317, -0.0116495257, -0.012497101, 0.0124537945, -0.024820976, 0.0177805293, 0.0054535619, 0.0223834217, 0.00265099388, 0.0195128, 0.00133013702, -0.00468022609, 0.00924909208, 0.00184363173, -0.0160358846, 0.0127816889, -0.000744722085, 0.038852375, 0.0116680851, -0.0116309654, -0.00333771599, -0.0334575847, 0.0343484692, 0.00699095288, 0.0134869702, -0.0101585351, -0.0133384904, -0.0228412356, -0.0292506404, -0.0161101241, -0.00763436779, -0.00354187656, -0.00618049689, -0.00235403306, 0.00614956347, 0.0127816889, 0.0123795541, 0.00803031586, -0.0114824846, 0.0367736481, -0.0211337116, 0.0231010765, -0.00566081563, -0.0288794395, 0.0155285764, 0.0143778529, 0.0395700298, 0.00326347561, 0.0245116409, -0.0222844351, 0.0559276231, 0.0235341452, 0.0145634534, -0.0134127308, -0.00993581396, 0.0256128702, -0.00291856797, -0.00977496058, -0.00515350746, -0.00843863655, 0.0306612048, -0.00846338365, 0.00121568341, 0.0136107039, -0.0218142476, -0.00323254219, 0.0127445683, -0.000762508775, 0.034298975, 0.0336555615, 0.00978114735, -0.00964504, 0.0133013697, -0.0191168524, -0.00923053175, 0.00733122043, 0.00694764592, 0.0175083149, 0.0201190952, 0.0208986178, 0.0180156231, -0.00824684929, -0.0194756798, -0.0218266211, 0.0186590385, -0.00787564833, -0.0409805924, -0.0445688702, -0.0368726365, 0.015714176, 0.0113340048, 0.0361549817, -0.0255881231, -0.0304632317, 0.00274998089, -0.0207748841, 0.00607532356, 0.0117485123, -0.038431678, -0.0181764774, 0.00681772549, 0.00655788463, -0.0191539731, 0.0120207267, 0.0239672121, -0.0206511505, 0.0193766933, -0.0102018416, -0.0387533866, 0.0202428289, 0.00169515132, -0.0571649596, 0.0452370308, 0.0271719154, 0.00798700843, 0.00104090956, 0.0309829116, -0.0154048428, 0.00152965751, -0.0528095327, 0.0544428155, 1.34729535e-05, 0.00980589353, 0.0257118586, 0.0423664115, 0.0011081897, 0.0120764067, 0.0111545911, 0.0303642433, -0.00756012741, -0.0125775281, 0.0244621467, 0.0321460105, -0.00794370193, 0.0650344193, 0.0310324058, 0.00813548919, 0.0111112837, 0.0212203246, -0.00798082165, 0.0400154702, 0.0125837149, 0.0114268046, -0.00866135769, 0.00108266971, -0.00796226226, -0.03979275, -0.00195189868, 0.00567628257, -0.00689196587, 0.0173474606, 0.0393473096, -0.0185847972, 0.0126146479, -0.00121800334, -0.0384811722, 0.00135565712, -0.0201562159, -0.0103008281, 0.0317995548, -0.000417601143, 0.0124290474, -0.012039287, -0.0201190952, -0.0108081363, 0.0142293731, 0.0148851611, 0.031428352, -0.0370211154, 0.00650220457, -0.0128806755, -0.00435851887, 0.00743020698, -0.0191663466, -0.0118351262, 0.00450081239, -0.0377882645, -0.0138705447, -0.000110200308, -0.00046593463, -0.0179661289, 0.0210842174, 0.0576104, 0.000538628141, 0.00141133729, -0.00778284809, 0.0121444603, 0.0120949671, -0.000702575257, 0.0129301688, 0.00592993619, 0.0309581663, -0.00729410024, 0.0253406558, 0.0269739404, 0.00141288387, 0.0137220649, 0.0343732163, -0.0197973885, 0.0260088183, -0.00921815913, 0.021034725, 0.0233361702, -0.0168401524, 0.0254643895, 0.0101399748, 0.00703425938, -0.00314747542, 0.0116557125, -0.0103255752, 0.0203789361, -0.0183125846, -0.0122929411, -0.0275183693, -0.00653313799, -0.00411723787, 0.00824684929, 0.00464001298, 0.0320965163, 0.0410300866, -0.00222411286, -0.00731266, -0.010474056, -0.0175206885, -0.00218853937, -0.0200943481, -0.0183991976, 0.0316263288, -0.00355734327, -0.00634135073, -0.0217647534, -5.57284875e-05, -0.0517701693, 0.0183868241, 0.00327894231, -0.016308099, 0.0271966625, 0.00332843582, 0.0164442062, 0.039965976, -0.00485345349, -0.00423169183, -0.0102080284, -0.0102575216, -0.00481324, 0.0275926087, 0.0096574137, 0.0266274866, -0.0150336418, 0.00871085096, 0.00223339279, 0.0308344327, -0.0154667096, -0.017533062, -0.00432139868, -0.00818498246, 0.00822210312, 0.0342742279, 0.00889026467, 0.00223648618, 0.0201933365, 0.0157760438, 0.0002271673, 0.00444203895, -0.0281865317, -0.0183249582, -0.00555873523, 0.0331111327, 0.0125589678, 0.000712628651, 0.0234351587, 0.0442719087, 0.00866135769, -0.00235557975, -0.00384811731, -0.0159368981, 0.0197478943, -0.005237028, -0.0218389928, -0.0252664164, -0.0125837149, -0.00130848365, 0.00150413753, 0.0148356678, 0.0303642433, -0.0283845048, -0.0107710166, 0.00197200547, 0.00720748678, -0.00602892321, -0.00996056106, 0.00472972, 0.0374170616, -0.0136107039, 0.000165397127, -0.0134374769, 0.0133261168, -0.0503596067, 0.00876034424, 0.011272138, -0.0287309587, 0.0219132341, 0.0240414534, -0.00832109, 0.0178423952, -0.00398113113, 0.0281370375, 0.00666924519, 0.00223339279, 0.0077457279, -0.00983064063, -0.00752300723, 0.00468641287, -0.00275771436, 0.0250065755, 0.0142293731, -0.0156151894, -0.00722604664, 0.00347382296, 0.00446987897, -0.0143902265, -0.0156399366, -0.0177186616, -0.0251303092, -0.0275678635, -0.0105668558, -0.0126332082, 0.00633516395, -0.004995747, 0.00174619153, -0.00475137308, -0.0163452178, -0.00918103848, -0.0219751, -0.0225071553, -0.0214801654, -0.00391307753, -0.015714176, -0.00944087934, 0.0170133803, 0.00351712969, 0.0113401916, -0.015342976, -0.0146376938, -0.00414817128, -0.00689196587, 0.0114886714, -0.00698476611, -0.014687187, -0.0296713356, -0.0261572991, -0.0140808923, 0.0216533933, 0.00962029304, 0.0028350479, 0.00372129027, 0.0251921769, -0.00726316683, 0.0106472829, 0.00877271779, 0.00536385505, 0.0158379097, -0.00642796466, 0.00822828896, 0.0118103791, 0.00273606088, 0.00130616361, 0.0182259697, 0.00824066252, 0.0322449952, 0.00380171719, 0.000771788822, -0.00305622187, 0.0125218481, -0.0097254673, 0.00169824471, -0.000320160878, -0.0222225673, 0.0185847972, 0.00219472614, -0.0102637084, 0.0124476077, -0.0244621467, -0.0242146794, 0.0557791404, -0.0194756798, -0.0229525976, -0.0203789361, -0.00300363498, -0.0345959365, -0.00112829648, 0.0222720616, 0.00242208666, -0.0362292193, 0.0140932659, -0.00174000475, 0.0119341128, 0.0522651039, 0.00421622489, -0.00167968462, 0.00191477861, -0.00784471538, 0.0285577327, -0.0242889207, -0.00472353306, 0.0185229313, -0.0172361, -0.0194756798, 0.0153553495, -0.0392235741, -0.0196241606, -0.0150088947, 0.0292011481, 0.0110246707, 0.0132271303, 0.00518753426, 0.0406836309, 0.0114453649, 0.00831490289, 7.44818753e-05, 0.00854381, -0.0263057798, 0.00280256779, -0.0019348854, -0.0122372601, 0.00720748678, 0.0110556036, -0.0131405164, -0.00689815218, -0.00393782416, -0.029349627, 0.00728791347, -0.00949037261, -0.00422859844, -0.0174588207, -0.00092954922, -0.0168401524, 0.00234939321, 0.0238434784, -0.000729642, 0.00253654039, -0.0187827721, 0.0188322645, -0.0297950692, -0.0137839317, -0.00598561671, -0.0390503481, -0.00919341203, 0.0289289337, 0.00141520391, -0.0183497034, 0.0255881231, -0.0033500893, 0.0109504303, 0.0168401524, 0.0280875452, 0.0299188029, -0.0112164579, -0.0617678501, -0.00158997776, -0.0137096914, 0.0262315385, -0.014489213, 0.00223648618, 0.0218266211, -0.0112535777, -0.00343670277, 0.0125280349, -0.00446987897, 0.022173075, -0.00936663896, -0.0108143231, -0.0120021664, 0.0222101938, -0.0162957255, 0.00801175553, -0.0385801606, 0.0307849385, 0.0152687356, -0.015998764, 0.00233237981, -0.00887789112, 0.00514732068, -0.0126703279, -0.0164318327, 0.0184486918, 0.0269491952, 0.0208862443, -0.00871703774, -0.0199582409, 0.0131528899, -0.00428737188, 0.0219627265, 0.014773801, -0.0229525976, 0.00329131586, -0.00635991106, -0.0107338959, -0.0153182289, 0.0137591846, 0.0209233649, -0.0236083847, 0.00547212176, -0.0219132341, 0.0051009208, -0.022717502, 0.0123609938, 0.0135240909, -0.0139942784, -0.0158874039, -0.00886551756, -0.000220787275, 0.0262067933, 0.00309334183, 0.0062021506, 0.0120516596, 0.00263862056, 0.0149470279, -0.0128683019, 0.000822055619, -0.00940994639, -0.0134003572, -0.0122991269, -0.000751682092, 0.00513185421, -0.0143159861, -0.0155162029, 0.00529889483, 0.0222844351, -0.00380790397, -0.0115257921, -0.00687959231, -0.000787642202, 0.0154667096, 0.00721986, -0.00414198497, 0.00790039543, 0.000893202494, 0.0164442062, 0.017990876, 0.0275678635, -0.0074611404, 0.0159245245, 0.0134993438, 0.0186219178, 0.0091562923, 0.00759106083, -0.00454721274, 0.000552548212, 0.00831490289, -0.0160111375, 0.00490604, 0.00865517091, 0.00618049689, 0.0143654794, -0.00715180626, 0.00222101947, -0.0179290101, 0.0174217019, 0.0285577327, 0.0201438423, -0.0439007096, 0.0212326981, 0.00676823221, -0.00823447574, 0.0204160567, -0.0190921053, 0.0115072317, -0.0306859519, -0.0118227527, -0.0155904433, 0.00309952861, 0.0143036125, 0.0062021506, -0.0212574452, 0.0190178659, 0.00394091755, 0.0148727875, 0.00736215385, 0.000201067218, -0.0333091058, -0.0413023, -0.0137715582, 0.0156894308, 0.0092429053, 0.00954605266, -0.0154667096, 0.0185353048, -0.0251550563, 0.00650839135, -0.008426263, -0.00655169832, 0.00909442548, -0.00254582032, 0.00628257729, -0.0141303856, -0.00673111202, 0.00801175553, 0.0206387769, -0.0091995988, -0.000858402345, 0.0113216313, 0.0118536865, 0.00371510349, -0.00968216, 0.0240662, -0.00615884364, 0.00607223, 0.000444281235, -0.00493388, 0.0168896466, 0.00083056232, 0.00295259478, 0.023026837, -0.0169762596, -0.00384193053, 0.0251550563, -0.0174959414, 0.0122125139, -0.0017833116, 0.0158626568, -0.0242023077, 0.00469878642, 0.00132859033, 0.00362230325, 0.0297703221, 0.0329626501, 0.0141427591, 0.0142912399, -4.00684439e-05, 0.00124429679, -0.0100966683, -0.00618668366, 0.00090325583, 0.0063135107, -0.00747970073, 0.00172144477, -0.00192715204, -0.0125589678, 0.0164442062, -0.0242146794, -0.0167040452, 0.00408630446, -0.0199458692, -0.00793751515, -0.000945789274, -0.0100286147, -0.0177929029, -0.030883925, 0.00140051055, -0.0217895, 0.0100471741, -0.00960173365, -0.00855618343, -0.0405846462, 0.0328884125, 0.028978426, 0.0233856644, -0.0038852375, 0.00786327478, 0.00633516395, -0.00362230325, -0.018188851, 0.00635991106, -0.0215544067, -0.0169762596, 0.0210099779, -0.0261572991, -0.0109442435, 0.0187827721, -0.0222720616, 0.0268254615, -0.0116495257, 0.00486582657, -0.00198283209, 0.00371510349, 0.00222411286, -0.00546902837, -0.0140066519, 0.0100224279, 0.0135612106, 0.0112102712, -0.00679916563, 0.0137591846, 0.00711468654, -0.00655169832, -0.00826541, -0.007857088, -0.0305374712, -0.0148480413, -0.00452246564, 0.0266274866, 0.0287062135, -0.0293001346, -0.00725079328, -0.00592065649, -0.00182971172, -0.0142912399, -0.014773801, -0.0370953567, -0.0244868938, 0.00153120421, -0.00294486154, 0.00340576936, -0.019982988, -0.0268007144, -0.00257520704, 0.00109890965, 0.0052463077, -0.0123424344, 0.0131900096, 0.0119712334, 0.00283968775, 0.0107153365, 0.00892119762, 0.0231258236, -0.0134498505, 0.016085377, 0.0161843654, -0.00364395673, 0.008908825, -0.00263862056, -0.00441419892, -0.00259222044, -0.0194509346, 0.0329626501, -0.00209573912, 0.00303920847, 0.00459670601, 0.0137839317, -0.00902637187, -0.00810455531, -0.0318985432, -0.0282112788, 0.00880983751, -0.00620524399, -0.0282360241, 0.00688577909, -0.0217647534, 0.0212450717, 0.0144768404, 0.000382414379, 0.0207748841, -0.00888407789, 0.0229031034, 0.00422550505, 0.0145387072, -0.00593302958, -0.00451937271, 0.00293248822, -0.0185105577, 0.0189065058, -4.11076144e-05, 0.0366004221, 0.00503286719, -0.00455649244, 0.0114268046, 0.00230763294, 0.0160358846, 0.0097254673, 0.0103565082, -0.00808599591, 0.0257118586, 0.00910061225, -0.0117485123, -0.000622535066, -0.0119774202, -0.00344598293, -0.0131405164, -0.00192405866, -0.0110494168, -0.0091995988, -0.00041528116, 0.032591451, 0.0252787899, -0.0233609173, -0.00641559111, 0.015998764, 0.00343360938, -0.00558657525, -0.0208491236, 0.0186466649, -0.000231807309, 0.0112412041, 0.0121259, -0.00698476611, 0.0195870399, 0.00388833066, 0.0640940443, -0.00571649568, -0.00301291491, 0.00736215385, 0.00457195938, -0.0151078822, 0.00242363336, -0.0204779226, -0.0428613462, -0.0290774144, 0.00796226226, 0.0167535394, 0.0116742719, 0.0195746683, 0.0113649378, -0.00806124881, 0.0187332779, -0.000377194374, -0.0149099082, 0.0061681238, -0.00929239858, -0.00817879569, 0.0200448558, -0.0108638164, -0.00822210312, -0.00377697055, -0.00249478, -0.00497100037, -0.0230020899, -0.0268254615, -0.00965122692, -0.0100719212, -0.00837058295, -0.0131157693, -0.000605908339, 0.0244002808, 0.0108638164, 0.00534838811, -0.0112164579, -0.00562369544, -0.0120640332, 0.00566390902, 0.0103070149, 0.0017833116, -0.02311345, -0.0071332464, 0.0111174705, -0.0139695322, -0.00958317332, 0.0206882711, 0.0117361387, 0.00672492525, -0.0145387072, 0.00136416382, -0.0125156613, -0.00737452693, -0.00129533687, 0.0103379488, -0.000389954424, -0.00233237981, -0.000372941024, 0.000341814273, 0.00763436779, -0.0108576296, 0.000921815867, -0.00213904586, 0.0184981842, -0.0390256, -0.00693527237, -0.000930322567, 0.0121011538, 0.011414432, 0.0158007909, -0.00749826059, -0.0154914558, -0.0102884555, 0.0319480337, -0.0190797336, 0.0124785416, 0.0120269135, -0.00839533, 0.0267264731, -0.000545588147, 0.0204408038, -0.000924135908, 0.00952130649, 0.0286567193, 0.0306612048, -0.000536694832, 0.00506998738, 0.0307354443, 0.00848194305, 0.00866135769, 0.0162833519, -0.0189931188, 0.00563606899, 0.0144026, -0.00271595409, 0.00547212176, 0.000795762171, 0.01554095, 0.0110494168, -0.00119635, 0.0223710481, 0.00119944336, 0.016765913, 0.00786946155, 0.000464387937, -0.00880365074, 0.0117175793, 0.013462224, -0.0112845115, -0.00195963215, -0.0101647219, -0.00760343438, -0.00480086682, 0.0204036832, 0.0129549159, 0.0234227851, -0.0142541192, -0.0159492716, -0.014600574, -0.000610161689, -0.00205861893, 0.0273946356, 0.0130291563, -0.00678679207, 0.0136478245, -0.0145263337, 0.00290928804, -0.0104926154, 0.00254272693, -0.00279328763, -0.00617431058, 0.0225566495, 0.0203665625, -0.0128311822, 0.0119093666, -0.0199087486, 0.0186466649, 0.00274688751, 0.0320717692, -0.00580929592, -0.0114391781, 0.0393968038, -0.0255386308, 0.00212512584, -0.0101770945, -0.0175701827, 0.00954605266, 0.00331296911, 0.00834583677, 0.00208027242, 0.00427809171, -0.0212450717, 0.0204779226, -0.0074178339, -0.0115381656, 0.0203294437, 0.00930477213, -0.00207563234, 0.00618049689, 0.000439641211, -0.00586497644, 0.00279638101, -0.0161101241, -0.00796226226, 0.0123548079, 0.0174093284, 3.10300857e-05, 0.0155533226, 0.00994200073, 0.00749207381, -0.000296767481, -0.00373366359, -0.00960791949, -0.0177310351, -0.0188570116, -0.0192653332, 0.0121197132, 0.0231753178, 0.0131900096, -0.00680535194, 0.00687340554, -0.00464310637, -0.00875415746, 0.00264016725, -0.0106967762, -0.0141922524, -0.0335813202, -0.0217523798, -0.0270729288, -0.00125744345, -0.00689196587, -0.00206016563, -0.004995747, -0.0084943166, 0.0351156183, 0.000825148949, 0.0145758269, -0.00548449531, -0.0159492716, -0.0113896849, 0.0330368914, -0.00650839135, 0.0238805991, 0.00346144964, -0.0306859519, -0.00955842622, 0.00328512909, 0.0269986875, -0.00773954159, 0.0097564, 0.0112968842, -0.029572349, -0.00452555902, 0.00279328763, 0.00782615505, -0.0151078822, -0.000417987816, 0.0218389928, 0.035412576, 0.0340762548, -0.0356105529, -0.0123362476, -0.0172732212, -0.00854381, 0.0104988022, -0.00534529472, -0.0238311067, -0.00888407789, 0.023682626, 0.00375222368, 0.00543190818, -0.00315984874, -0.00903255865, 0.00340576936, -0.0141798789, -0.00727554, 0.00135797705, 0.0184734371, -0.00670636538, -0.00241126, 0.008908825, -0.000352834322, 0.00930477213, -0.0264047664, 0.00904493127, 0.0145882005, -0.0101770945, -0.00635991106, -0.0215667803, 0.0118846195, -0.0154790832, -0.0174711943, -0.00565772224, 0.000218080604, 0.00414198497, 0.00785090216, 0.0187085308, 0.021888487, -0.0062454571, 0.0138210515, -0.0079251416, -0.000620215, 0.0215544067, 0.0220988337, 0.0150707616, -0.0426633731, -0.0044636922, 0.00984920096, 0.00389142404, 0.0283845048, 0.00140437717, -0.0013007503, -0.000247660675, -0.00715799304, 0.0280875452, 0.00687959231, 0.0111422176, 0.0294238683, -0.00923053175, 0.00778284809, -0.0259345789, -0.0269739404, -0.0111731505, -7.06635255e-05, -0.000216533925, -0.00865517091, 0.00359755661, 0.018671412, -0.00601964351, -0.00389761082, 0.015912151, 0.0143654794, 0.00894594472, 0.0331606232, 0.0144149736, -0.00642177789, 0.0140932659, 0.0186342914, 0.0109813632, -0.00612791, -0.000771015475, -0.0111360308, -0.00279328763, 0.00575361587, 0.00905730482, 0.0109937368, -0.00644033775, -0.0202180818, -0.00577836251, -0.00189157855, 0.000487588026, 0.00892738439, -0.0219751, 0.0125775281, 0.0075972476, 0.0077457279, 0.037689276, -0.0106844027, 0.0102946414, -0.0146376938, -0.0296465885, 0.00211429922, -0.0155904433, 0.0011592299, 0.0132766236, -0.00999768078, -0.0263305269, -2.22092276e-05, -0.00348928967, 0.00292475475, 0.00764055457, -0.00438326551, -0.0124043012, 0.0112288315, 0.00038840773, -0.00261387392, -0.010362695, -0.0134003572, -0.00802412909, -0.00451627932, -0.00193024531, -0.0102946414, 0.0145882005, -0.00949655939, -0.0054875887, 0.0102018416, -0.0222968087, -0.0200448558, 0.00337792933, 0.00842007622, 0.0425891317, 0.000515814754, -0.0115134185, 0.0116557125, -0.0311313923, -0.00945325289, -0.00366251683, 0.000777975481, -0.0160235111, -0.00666924519, -0.0159368981, 0.00151960424, -0.00588972308, 0.00890263822, -0.00356971659, 0.00192096527, -0.0037986238, 0.00404918473, 0.0100224279, 5.52209849e-06, -0.00833965, 0.0129549159, -0.0189807452, 0.00863661058, -0.00248704688, 0.000154183756, -0.00717655336, 9.22685867e-05, -0.00301136822, -0.0103193885, -0.00531745469, -0.000525481475, 0.000153120418, 0.0144149736, 0.0395947769, 0.00127755024, 0.0219627265, 0.0219132341, -0.00477921311, 0.000423787831, 0.00211120583, 0.0330121443, -0.00158301776, -0.0227298755, -0.0385306664, -0.000914082513, -0.0111978976, -0.0121877668, 0.00830871612, -0.00563916238, -0.00443275878, 0.0154914558, -0.00594230974, -0.000722682, -0.0263305269, 0.00152269751, -0.00107261632, -0.00731266, -0.00162245787, -0.0210099779, -0.0113340048, 0.0153800957, -0.00267419405, 0.00404299796, -0.0249447096, 0.00805506203, 0.00634135073, 0.00663212501, 0.0179290101, -0.0132766236, 0.00115304324, -0.0213935524, -0.00702807261, 0.00449153222, -0.0206387769, 0.00018105717, 0.0305127241, -0.0220864601, 0.00366561022, 0.00212667254, -0.00874797069, -0.00153739087, -0.00103781617, 0.00133013702, 0.0166793, 0.0129920356, -0.0054875887, -0.00494006695, -0.0091748517, 0.0107400827, -0.0228659827, -0.0161224976, -0.00530198775, -0.00115536316, 0.0116062183, 0.0137839317, -0.00168896466, 0.0126084611, 0.0130291563, -0.0220369678, -0.00347691635, -0.0192900803, 0.012893049, 0.00134792377, -0.0208614971, 0.0256376173, 0.00981208, 0.00629495084, 0.0117052058, -0.0170257539, 0.00296496809, 0.00155440427, -0.00945944, 0.0121568339, -0.00230608648, 0.00281030103, 0.0123795541, 0.00253963377, -0.0172484741, -0.0195746683, 0.00909442548, -0.0271471683, -0.018275464, -0.00893975794, -0.017533062, -0.017990876, 3.14892532e-05, 0.0240538269, -0.00575052248, 0.0132766236, 0.00790658221, 0.0103379488, 0.0223091822, 0.00554636214, 0.0332596116, 0.000539788161, -0.0114329914, 0.0232371837, 0.00327584916, -0.00918103848, -0.000436161208, -0.00186373852, 0.0126084611, 0.00592993619, -0.00718892645, 0.00496481359, -0.0184610635, 0.0132023832, 0.000769855455, -0.00356043642, 0.00214677933, 0.0023679533, 0.0196612813, -0.0203418154, -0.0173227154, 0.0131776361, 0.00867991708, 0.00946562644, -0.015825538, -0.00522156106, 0.0258355923, 0.00644033775, 0.00207563234, -0.000945789274, 0.00812311564, -0.0164318327, -0.0195004269, -0.0282112788, 0.00295723486, -0.0124352342, -0.0126703279, 0.021034725, -0.00489985337, 0.00977496058, 0.0284092519, 0.0211708322, 0.0102822687, 0.0103193885, 0.00658881804, 0.0063846577, -0.0220740885, 0.00067666854, -0.0188198928, -0.0137468111, -0.0194138139, 0.0147490539, 0.00365942344, 0.00913773198, -0.00225504627, 0.0174835678, -0.00671255169, -0.0149099082, -0.0124414209, 0.00853762403, 0.0178918894, -0.00473281322, -0.00809836946, -0.00572886923, 0.00563916238, 0.015714176, 0.00660737837, -0.00819735602, -0.0156399366, -0.0133137433, 0.0221112072, -0.00440491876, -0.00517206779, -0.00781996828, -0.0171247404, 0.00269894069, 0.0115443515, -0.0149594015, -0.000675895193, -0.0229897164, 0.0221978221, -0.0180403702, 0.00699095288, 0.0044636922, -0.000651148439, -0.0179537572, 0.0065207649, -0.0123981144, -0.0156646837, -0.0057814559, 0.00539169507, -0.00114453654, 0.00341504952, 0.00282886112, -0.00247622025, 0.00557729555, 0.00432139868, 0.00461835926, -0.0162957255, -0.00136803044, -0.0126703279, 0.00981826708, -0.0306117106, 0.021121338, 0.00563916238, 0.0186219178, 0.00806743558, 0.017050501, 0.0205026697, 0.0230020899, -0.00989250746, 0.000197103873, -0.0113216313, 0.022259688, -0.00593921635, -0.0317995548, 0.00911917165, 0.0102327745, -0.0192900803, -0.0126084611, -0.000697161944, 0.0037831571, 0.00667543197, -0.0194138139, -0.0226803832, 0.0205026697, -0.00635991106, 0.0340515077, 0.00306395511, -0.0323687308, -0.018188851, 0.0364766866, 0.0164070856, 0.00018811386, 0.021121338, 0.00699713919, -0.0122125139, -0.0111484043, -0.0152068688, 0.0153058553, 0.00981208, -0.00449462561, -0.0118908063, 0.00383883738, 0.00856237, -0.00167504465, -0.0114886714, 0.00222565955, 0.0261820462, 0.0058154827, -0.00418529147, -0.0119464863, 0.0123857409, 0.0131281428, 0.00898306444, 0.00487510674, -0.0177929029, 0.00707756635, -0.0101214144, -0.0119155534, 0.00252416707, 0.00276699429, 0.0139571587, 0.0139447851, 0.0141551327, 0.00705281971, 0.0141427591, 0.0319480337, -0.0127321947, -0.0130415298, -0.00552161504, -0.0270976741, -0.00608460326, 0.0064960178, 0.00708375312, 0.00996056106, -0.0119959796, -0.0250436962, -0.00115690986, -0.00460907957, 0.0313541144, -0.002049339, -0.00483798655, 0.00272523426, -0.00614337716, -0.00609388342, -0.00958317332, 0.0162586048, 0.00319851539, 0.00274224766, 0.0119402995, 0.00787564833, 0.00637847092, -0.000951976, -0.0117485123, -0.0062794839, 0.0136725707, 0.0127816889, 0.0039873179, -0.00486273365, 0.0194756798, -0.00238651317, 0.0246724952, -0.0446678549, -0.0157389231, -0.00133091037, -0.00837058295, 0.0203789361, -0.0341752395, -0.00485345349, 0.0075972476, -0.00903255865, 0.00197509886, 0.0236207582, -0.00312272855, -0.00665687164, 0.0180156231, 0.0189683717, 0.0112906983, 0.0328636654, -0.00547830854, 0.00279019447, 0.00952130649, -0.00949655939, 0.0123981144, 0.0195622947, -0.0190797336, 0.00253035361, 0.0132766236, 0.00335318269, -0.0252292957, 0.00596705638, -0.00187765853, 0.00895831827, 0.0124723548, -0.0161101241, -0.0116433389, 0.0142293731, 0.0309829116, 0.0121877668, -0.00315675535, -0.0126022752, 0.00874178391, 0.0110122971, -0.00380790397, 0.00476993341, 0.00129688357, 0.00587425614, -0.00719511323, 0.00537004136, 0.00891501084, -0.00122109673, -0.00296496809, 0.00814167596, -0.0156399366, -0.00313819526, 0.0267017279, 0.0376397856, 0.00145619072, 0.0228659827, 0.0156894308, -0.0108205099, 0.0128064351, -0.00504833413, -0.0219132341, -0.0214801654, 0.0225195289, 0.0191910937, -0.0375407971, -0.0137591846, 0.00466166623, 0.021121338, 0.00323254219, 0.013462224, 0.0207872577, 0.00125048344, 0.0108143231, -0.0165308192, -1.25062843e-05, -0.0116309654, 0.0124352342, -0.00717655336, 0.0222720616, 0.00771479448, -0.0110556036, 0.0374170616, -0.00579382945, -0.00257056719, -0.00294176815, -0.0182259697, 0.00809836946, 0.0012326967, 0.0124352342, -0.0150212683, 0.00317995553, -0.0105235493, 0.0016332845, 0.00428737188, -0.00861805, 0.00463691959, -0.00222565955, -0.0230020899, 0.00317067537, -0.0110184839, -0.0317748077, -0.0207130164, 0.0193890668, 0.0193519462, -0.00321398233, -0.00043422787, -0.00253035361, -0.0124723548, 0.0189683717, 0.0200819746, 0.0402629375, -0.0193519462, -0.000919495884, 0.0267017279, 0.00604748353, -0.00875415746, 0.0152439885, -0.0027484342, 0.0265532471, 0.0014182973, -0.0125094745, -0.00803031586, -0.0193890668, 0.00259531382, -0.00504214736, -0.0160482582, 0.0237321183, 0.0141551327, -0.0120454729, 0.00987394713, 0.0273946356, 0.000483334676, -0.00460598618, 0.0246106274, 0.0244126543, -0.0254396442, 0.00561441574, -0.00132085697, -0.0139819058, -0.0100781079, 0.0231258236, 0.0057381494, -0.00380481058, -0.0126703279, -0.0338782817, 0.00144381728, -0.00758487452, 0.000965896, -0.00410795817, -0.013548837, 0.0112350173, -0.00409558462, -0.0131405164, 0.0153058553, 0.00829015579, 0.00481942669, -0.00816023629, -0.00485036, 0.0103998156, 0.011841313, -0.0134869702, 0.0056329756, 0.00937282573, 0.00784471538, -0.00570102921, 0.0106596565, 0.00241744658, -0.000358441, -0.010276082, 0.0136849442, -0.0132271303, -0.00346144964, -0.00552780181, 0.0225071553, -0.00295878155, 0.0356847905, -0.00257520704, -0.00283040782, -0.0228907298, -0.00360993, -0.0228907298, 0.000637228426, 0.0142293731, 0.0028350479, -0.0130786495, -0.00778284809, 0.00903874543, -0.0100286147, 0.00861186348, 0.000918722537, -0.00587116275, -0.00168896466, -0.0125156613, 0.0090634916, -0.0024994202, -0.00365633, 0.0183991976, 0.00760343438, 0.011841313, 0.0132023832, 0.0109689906, 0.0184734371, -0.00284896791, -0.00378625048, 0.0104988022, -0.00747970073, -0.00870466419, -0.014860414, -0.0117856329, 0.00262160716, -0.000686335203, -0.00718273968, 0.0143902265, 0.00264016725, 0.0010347229, -0.000892429147, -0.0168649, 0.0179537572, -0.00564534916, -0.0113340048, -0.010845257, 0.0407578722, -0.00970072, 0.0258850846, -0.0090201851, -0.010702963, 0.00247312686, 0.0011661899, 0.0049276934, 0.0134745976, 0.0196612813, 0.00707756635, 0.0019812854, -0.0346206836, 0.0228907298, -0.00442347908, -0.011327818, -0.0105977897, -0.011129844, -0.000202227224, 0.00939757284, -0.0136973178, -0.00853143726, 0.00100533606, -0.00777666131, 0.0105668558, -0.0161967389, 0.0149470279, -0.0192777067, -0.00655788463, 0.00307632843, -0.000975176052, 0.0169143938, -0.00405846443, 0.0173350871, 0.0119217392, 0.00756012741, -0.00100069609, -0.0170999933, 0.0103070149, -0.016765913, 0.0146995606, -0.00639703078, -0.0152934827, -0.0123176873, 0.0210718457, 0.00410795817, -0.00900781155, 0.0139695322, -0.00269275415, -0.0106349094, 0.00645889807, -0.0316015817, -0.0117299529, 0.0326656885, 0.018758025, 0.00312736863, -0.0097440267, -0.0108266966, -0.0117546991, -0.0098801339, -0.0193519462, 0.00705900602, -0.0135612106, 0.0166545529, -0.0110246707, -0.00856855698, 0.00540716155, -0.00155053765, 0.0020508857, -0.0217400063, -0.0180032495, 0.00476065325, -0.0158131644, 0.00242672674, -0.00133013702, -0.0203418154, 0.00215451256, -0.00676204544, 0.0244374014, -0.0235712659, -0.0116000324, 0.0220493414, -0.00584332272, 0.00201221881, 0.0135364644, 0.0064527113, -0.00572886923, -0.0111855241, 0.00168587128, -0.013833425, 0.029745575, 0.00677441852, -0.00179568492, 0.00612791, 0.0110061103, 0.000407934451, 0.0290526673, 0.015998764, -0.005564922, 0.0245735087, -0.0120021664, 0.0147119341, -0.0126208346, 0.00372438366, -0.0211708322, -0.00956461299, 0.00212203246, -0.0022658729, -0.0221978221, 0.0196860284, 0.00408630446, 0.0114020584, 0.0170876198, 0.0202799495, 0.00241899327, 0.00874178391, -0.00568556227, 0.0187332779, -0.0112164579, -0.0193519462, -0.0113834981, -0.00900162477, -0.0127816889, -0.0333338529, 0.0132271303, 0.0263057798, -0.00580310915, 0.0133756101, 0.00514422776, 0.00611244375, 0.0070651928, 0.00104941626, 0.00800556876, 0.0230763312, -0.00486273365, -0.00741164712, -0.0216781404, 0.00672492525, 0.0097564, 0.00456886599, -0.010474056, 0.00145773741, -0.0133137433, 0.0169267673, -0.00459670601, -0.0107710166, 0.00117933657, 0.00960791949, 0.00684247212, -0.00259222044, -0.0115505382, -0.0239424668, 0.0116557125, -0.00900781155, 0.00989869423, 0.00275771436, -0.00813548919, 0.0125837149, 0.0157512967, 0.0039625708, -0.0268502068, -0.00142989727, -0.00305158179, -0.00544118835, -0.0207253899, -0.0324677154, -0.00251024682, 5.48101525e-05, 0.0111793373, 0.0277163424, 0.00982445385, 0.000195363871, -0.0202180818, -0.00528652128, -0.00723223342, 0.00472353306, -0.00338720926, -0.0109689906, -0.00501430733, -0.000301020831, 0.00577526912, 0.0190797336, 0.00687959231, -0.0154790832, 0.0220617149, -0.00654551154, 0.00318304868, 0.0256128702, -0.00704663293, 0.00986776, -0.00311035523, 0.00408630446, -0.021319313, -0.00769004785, -0.0183744505, -0.0167040452, 0.00600108318, -0.0135859577, -0.0139324116, -8.01368878e-05, -0.0105854161, -0.00435233209, 0.0075539411, 0.00518444087, -0.0160235111, 0.0133508639, 0.0103132017, 0.0011507232, 0.0169886332, -0.00989869423, -0.00713943318, -0.0219256077, 0.0129177961, 0.0100162411, -0.0232124366, 0.0174959414, -0.0183991976, -0.0113773113, -0.0306364577, -0.0235712659, -0.0173474606, 0.0192653332, -0.00288144802, 0.00960173365, 0.0263552722, -0.0131157693, -0.0054875887, 0.0184486918, 0.00827778317, -0.0038512107, -0.0146624409, -0.0105235493, -0.00361302332, -0.00532364147, 0.00514732068, 0.0139324116, -0.0126332082, 0.0219132341, 0.0144273462, 0.0122310733, -0.00154435099, 0.00942231901, 0.0102698952, 0.00431830529, 0.00184053846, 0.00107416301, 0.0356353, -0.0128311822, -0.0107091498, 0.0233485438, -0.00773335481, -0.00351094315, -0.00585878966, 0.00418838486, -0.00905730482, 0.00116000324, 0.0133508639, 0.00251024682, 0.0147490539, 0.0186837856, -0.0131157693, 0.00130693696, -0.00718273968, -0.00402753102, 0.000554481521, 0.012695075, 0.0105173625, 0.00886551756, -0.00986776, -0.0157636702, 0.000464387937, -0.0175949279, -0.00229371293, 0.0290031731, 0.00674967188, 0.0250189491, 0.0243755337, 0.000283620786, -0.0132147567, 0.0166669264, -0.0268749539, 0.0131900096, -0.00397185097, -0.0155285764, 0.000483721349, 0.0221854486, -0.011074164, -0.0110370442, -0.00639703078, 0.00257984712, -0.00794370193, -0.00850669, 0.00464001298, 0.0130539024, 0.00296651479, 0.0150831351, 0.0137096914, -0.000622535066, 0.0232495572, 0.0015157375, -0.00450081239, 0.0188075192, 0.0183002111, -0.0139571587, -0.0115938457, 0.00707137957, 0.0103812553, 0.022717502, -0.0293991212, 0.0200324822, -0.011841313, 0.0126208346, 0.00226741959, 0.00697857933, 0.0242270529, -0.0106844027, -0.00671255169, -0.0317995548, 0.0104121892, 0.0183991976, 0.00575670926, 0.00263243401, -0.0263305269, -0.0106163491, -0.0189559981, 0.0102637084, -0.0184115712, -0.00418219808, -0.000282847439, -0.00103085616, 0.0195870399, 0.000607068359, -0.00237259315, -0.000562214875, -0.00479777344, -0.00265563396, -0.00889026467, 0.000808135548, -0.00833346322, 0.00334699592, -0.00908205193, -0.00358518329, -0.0527600385, -0.0182135962, 0.000214793923, -0.002049339, -0.00451627932, -0.00749826059, -0.00580929592, 0.0120269135, -0.00986157358, 0.00583713595, 0.0275183693, -0.00859330408, 0.00244683353, -0.0146995606, -0.00947799906, -0.0262067933, -0.00465547945, 0.00445131911, 0.0161348712, -0.0290279202, -0.00912535843, -0.000398654433, -0.0117237661, -0.00759106083, -0.0144273462, 0.0144273462, -0.0153306024, -0.0419457145, 0.0121444603, 0.0288546924, -0.0346206836, 0.0340515077, -0.0154667096, 0.0112597644, 0.0116371522, 0.000777588808, 0.00575980265, 0.00294331484, -0.00362849, -0.00185909844, -0.00144845736, 0.00745495409, -0.0253282841, -0.0308096856, 0.0061681238, -0.0104926154, -0.0039532911, -0.0105482955, 0.00444822572, -0.00991106778, -0.00137885718, 0.0096574137, -0.0152192423, -0.00677441852, -0.000475601322, 0.000515041407, -0.0164070856, -0.00310416869, -0.0156770572, 0.00628876407, -0.0134745976, 0.00399350422, -0.0208120048, -0.00279019447, -0.0271719154, 0.00358827668, -0.00378934387, -0.0208491236, 0.0104678692, 0.00447297236, -0.0108205099, 0.00789420865, -0.0104802419, -0.0233856644, -0.00376769039, -0.00190549856, -0.0131281428, 0.0179290101, -0.0105730426, -0.0142169995, 0.0150336418, 0.0175578091, 0.00904493127, -0.0105297361, -0.0167906601, -0.000535534811, 0.00529580144, -0.00235712645, -0.00292939483, 0.00876034424, 0.0126332082, 0.0166050587, 0.000260807399, -0.0221235808, -0.00793751515, -0.00757868774, -0.00448225252, -0.0327399299, 0.0053855083, -0.0146253202, 0.0103750685, -0.00932333246, 0.0103070149, -0.0173722077, 0.0105544822, -0.00938519929, 0.00918103848, 0.0251303092, -0.00960173365, -0.0149470279, 0.00535148149, 0.00348928967, 0.00387286395, 0.0291021597, -0.00538860168, 0.0182383433, -0.00814786274, 0.00388214411, -0.0165803116, 0.0097564, -0.0143159861, 0.00120563, -0.00932333246, -0.00415435806, 0.0179290101, -0.0140932659, -0.0031010753, -0.02083675, 0.0150955087, -0.0158007909, -0.00740546035, -0.00625164388, -0.0430098251, -0.00222565955, -0.00340576936, 0.00797463581, 0.00315211527, 0.00306086172, -0.00566700241, -0.0292258933, -0.0307849385, 0.0172484741, -0.0204531774, -0.00211739261, 0.0121135265, -0.0310819, 0.010758643, 0.0173350871, -0.0147119341, 0.00321088894, 0.00856855698, -0.0173845813, 0.0112164579, 0.000171680469, -0.00850669, -0.00583094964, -0.00642177789, 0.00374913029, -0.0203294437, -0.00981826708, 0.0291516539, 0.00892738439, -0.00237259315, -0.0182259697, 0.00143840397, -0.00443275878, -0.0225937683, 0.0168896466, 0.022346301, 0.00773954159, 0.00793751515, -0.0263800193, 0.0286319721, -0.0121382736, -0.0103998156, 0.00109890965, -0.00132317701, -0.0117423255, -0.00577217573, 0.0195622947, 0.0171989817, 0.00153661764, -0.0109937368, -0.0025148869, 0.0384564251, 0.00530508114, -0.0228412356, -0.0109751774, 0.00893975794, 0.0180774909, -0.00121723, -0.0145263337, 0.00104400283, -0.00628567068, -0.0141056394, 0.00495553389, -0.0111174705, 0.0336308144, 0.00369345024, -0.0131157693, -0.0318985432, 0.0235960111, 0.00746732717, 0.021207951, 0.00554636214, 0.000372747687, 0.00786946155, -0.00147629739, 0.0156894308, 0.0102204019, -0.015998764, -0.00170597807, 0.0105297361, 0.00350475637, -0.00214368594, 0.00977496058, 0.0062361774, 0.0108081363, 0.00705900602, -0.0110927243, 0.0105297361, 0.0274193827, 0.00512876082, -0.000581161585, 0.00222256617, 0.00484726671, 0.00582166947, 0.0133013697, 0.00566390902, -0.0258603375, -0.0154172163, 0.0233732909, -0.00410795817, 0.0121444603, -0.01098755, -0.0107277101, -0.0154172163, -0.00971928053, -0.0140561452, 0.00304384832, 0.0313788615, 0.00715180626, -0.0256871115, -0.0161472447, 0.0146500673, -0.00410486478, 0.00177557825, 0.0104307486, -0.0165679399, 0.00964504, -0.00871085096, -0.0130415298, 0.00197973871, -0.0215296596, 0.0150460145, 0.00108962972, -0.0111917108, 0.0272709019, -0.0129549159, -0.0241404399, 0.02311345, 0.0176320486, -0.00683009904, -0.0140190255, -0.00338720926, 0.00605985662, 0.00588044291, -0.0126270214, -0.00512566743, -0.0359570049, -0.0120887803, 0.00479468, 0.0229278505, -0.00818498246, 0.00830252934, -0.0089768786, 0.0266027395, 0.0193643197, 0.0279885568, -0.00700332597, 0.0149346543, -0.0220864601, 0.00476684, -0.0173845813, 0.0264047664, -0.0137963044, -0.00868610386, -0.0144397197, -0.00513185421, -0.00487510674, -0.00319232885, 0.00797463581, -0.000220787275, 0.00457195938, 0.0109194964, 0.00700332597, 0.0113092577, 0.000314167526, 0.00626401743, -0.0139942784, 0.0134745976, -0.00400278438, -0.00153816422, -0.022259688, -0.00158224441, 0.00223648618, 0.00938519929, -0.0295476019, 0.0109256832, -0.0146129467, -0.0290526673, 0.0208738707, -0.0113896849, 0.0129549159, -0.00447606575, -0.00414198497, -0.0206264034]
|
20 Jan, 2021
|
Fabric.js Polyline cornerStrokeColor Property
20 Jan, 2021
In this article, we are going to see how to change the color of the controlling corners of a canvas Polyline using cornerStrokeColor Property in FabricJS. The canvas means the Polyline is movable and can be stretched according to requirement. Further, the circle can be customized when it comes to initial stroke color, fill color, stroke width, or radius.
To make it possible, we are going to use a JavaScript library called FabricJS. After importing the library using CDN, we will create a canvas block in the body tag which will contain our Polyline. After this, we will initialize instances of Canvas and Circle provided by FabricJS and change the color of controlling corners of the Polyline using cornerStrokeColor property and render the Polyline on the Canvas as given in the example below.
Syntax:
var polyline = new fabric.Polyline(Points, {
cornerStrokeColor: string,
});
Parameters: This property accepts a single parameter as mentioned above and described below:
cornerStrokeColor: It specifies the stroke color name of the controlling corners.
The below example illustrates the cornerStrokeColor property in Fabric.js:
Example:
HTML
<!DOCTYPE html>
<html>
<head>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;width: 600px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Polyline cornerStrokeColor Property
</b>
</div>
<canvas id="canvas"
width="600"
height="200"
style="border:1px solid #000000;">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a polyline instance
var polyline = new fabric.Polyline([
{ x: 200,
y: 10 },
{x: 250,
y: 50
}, {
x: 250,
y: 180
}, {
x: 150,
y: 180
}, {
x: 150,
y: 50
}, {
x: 200,
y: 10 }], {
cornerStrokeColor: 'red',
transparentCorners: false
});
// Render the polyline in canvas
canvas.add(polyline);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js Polygon cornerStrokeColor Property/Fabric.js Polyline cornerStrokeColor Property
|
https://www.geeksforgeeks.org/fabric-js-polyline-cornerstrokecolor-property/?ref=next_article
|
CSS
|
Fabric.js Polyline cornerStrokeColor Property
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, Fabric.js Polygon cornerStrokeColor Property, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, Fabric.js Polyline cornerStrokeColor Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.00229219231, -0.00828289706, -0.0153382299, 0.0406235307, 0.0472549126, 0.0287528541, -0.0372825302, 0.0140220784, -0.0322710276, -0.0407753959, -0.0160975493, -0.00350551959, 0.0017606694, -0.0450022668, 0.0171479397, 0.0187678188, -0.0352576822, -0.0101305721, -0.01679359, -0.00398642104, -0.00368269393, -0.0126616331, -0.0329797268, 0.0100546405, -0.00239976239, 0.0390795842, 0.0288034752, 0.031005498, -0.0367510058, 0.0241083577, 0.0128388079, 0.0109721497, 0.00283637038, -0.0368775614, -0.00381873851, -0.0355361, 0.00644155033, 0.0287528541, -0.0056537576, 0.00137547357, -0.0156546123, 0.00543545373, 0.0187804736, 0.0173630789, 0.00497353496, -0.00851069298, -0.00584675139, 0.0209571868, 0.0153002646, -0.060036771, -0.00232224865, -0.009295322, 0.00509059662, -0.00643838663, 0.0313851573, 0.00532155577, -0.00228586467, 0.0461665541, -0.0137436623, -0.0100166742, -0.0135411769, -0.0578094348, -0.0430533513, -0.0141106658, -0.0139461467, 0.000163629142, -0.00263704918, 0.00337896659, -0.0172871482, 0.00446099509, -0.0218430571, 0.0170973185, 0.0193626173, -0.00625804858, -0.000484065444, 0.0135158664, 0.0471030474, -0.00571070658, -0.041281607, 0.0462424867, -0.0298412107, -0.0097066192, -0.0113771195, 0.0178692918, -0.0142625291, -0.0269304905, 0.0650988892, -0.0365991443, 0.0166037604, 0.0251334365, -0.0130602755, 0.0144397039, 0.0365991443, -0.0442935713, -0.0261205509, -0.0159583408, -0.00666301837, -0.0171732493, -0.0247917436, 0.00327456021, -0.0102887638, 0.0422434099, 0.0189956129, 0.0171226282, 0.0415347144, -0.0530004203, 0.00756154489, 0.00493240543, -0.0166417267, -0.000150677239, 0.0226150304, -0.0356373414, -0.00964967068, 0.0388771, -0.0108835632, 0.0198308639, -0.0158191323, -0.0403198041, 0.0577081926, -0.0115226554, 0.0105355419, -0.0260446183, -0.0066566905, 0.00661872467, -0.0046919547, 0.00868153945, -0.0226783082, -0.0110417539, 0.0209065657, 0.00136835489, -0.0253738873, -0.0331315883, 0.00605872739, 0.00282529695, 0.0400920063, 0.0142245637, -0.0175402537, 0.00240609, -0.000602313434, 0.0165278297, -0.0161481705, -0.0335112475, 0.0104849208, 0.0289047174, 0.00864990149, 0.0119149704, 0.0218557119, 0.000556042476, -0.00351501117, 0.0332581438, -0.0533547699, 0.0210710838, 0.0370041132, -0.00532155577, 0.0463943519, -0.0241083577, -0.0190715455, 0.0117631061, 0.0221088193, -0.0562401786, 0.012889429, 0.0205142498, 0.0115036732, 0.0443695, -0.0218177475, -0.0407753959, 0.0146548441, 0.0110480813, -0.0602392554, 0.0205142498, -0.00108914729, 0.00153208291, 0.0466221459, -0.0203623865, -0.0443441905, -0.0279176049, -0.00978887919, -0.0381684, 0.00808674, -0.0270823538, -0.0414840914, 0.00369218551, 0.00826391485, 0.0614035428, -0.00331252627, 0.0103140743, 0.0262471046, 0.00367003866, -0.0122376801, -0.0391555168, -0.0172112156, 0.0264242776, 0.0590749681, 0.00470144581, 0.00946616847, 0.0024234911, -0.00396743836, 0.000427907507, 0.00184609275, 0.0048944396, 0.024715811, -0.00861826353, -0.0417118855, -0.0392314456, 0.011712485, -0.0225644093, -0.00781465136, -0.0283731949, 0.064187713, -0.0158064775, -0.0125667183, 0.0299677644, 0.0169834197, 0.0061947722, -0.00191253307, 0.00705533288, -0.0011342318, 0.0133260367, -0.00750459637, -0.0276644975, 0.0238425955, 0.0360676199, -0.0430533513, 0.000961803249, -0.0723377243, -0.010586163, 0.0170593522, 0.0202991106, -0.00277151191, -0.0435595624, 0.00401489576, -0.0114910174, -0.00370484078, 0.00792222098, 0.0132121388, 0.0382949561, -0.0188057832, -0.00833984651, 0.00210869033, -0.000941238366, 0.00631499756, -0.010668423, -0.00446099509, -0.0293856189, 0.0125350803, -0.0135538327, -0.0185779892, -0.00607138267, 0.0198561735, 0.00283637038, -0.0293349978, -0.018476747, 0.00673895, -0.00423636334, -0.039535176, 0.000900899584, -0.0278922934, -0.0446985401, 0.0315370224, 0.0122629907, 0.0401932523, 0.0343465, -0.00535003049, 0.0170593522, -0.0121554211, -0.00911182, 0.0168568678, -0.0181350522, -0.0115226554, 0.00723883463, 0.00887769647, -0.039813593, 0.0470777377, -0.0106304567, -0.0159709956, 0.0314104669, -0.0244373959, -0.031005498, 0.021400122, -0.0130982408, -0.0347008482, 0.013933491, 0.0211976375, 0.00316066248, -0.00401173206, -0.0196663439, -0.0075742, 0.00908650924, -0.0317141972, -0.0529497974, -0.0306764599, -0.0248676762, 0.0225011334, -0.0384215079, 0.00207863399, 0.00823860429, 0.00453376304, -0.0254371651, 0.0177300833, 0.0106557673, -0.0356626511, -0.0472549126, -0.0218304023, -0.00807408523, 0.0171985608, 0.0199574176, 0.0421168581, -0.00351501117, 0.0298159, -0.00231275707, 0.00321128382, -0.0077450471, -0.0121427653, -0.0186412651, 0.00413195742, -0.00729578361, 0.0607454665, 0.00723883463, -0.0199447609, 0.0109341843, -0.0265002102, 0.000826549658, 0.0104912482, 0.0273607709, 0.0408007056, -0.0311573632, -0.00234914105, -0.0235641785, -0.00725781778, 0.019489171, -0.0290818922, -0.00344540691, 0.000178261849, 0.0269304905, -0.00169897475, 0.00782730617, -0.0207420457, -0.0239185281, -0.0307523925, 0.0204636287, 0.0126806162, 0.0153255751, 0.00531206466, -0.00900425, 0.0345236734, -0.0544684343, -0.00608720211, 0.0206787698, 0.0508996397, 0.0542659499, 0.000880334701, 0.0379659161, -0.0149585707, -0.00244405586, 0.011092375, -0.021678539, -0.0123072844, -0.038649302, -0.038649302, -0.0101242447, 0.0224505123, 0.0188564062, 0.0181856733, 0.00932063255, 0.0557339638, -0.015616647, -0.0185653325, 0.0204762835, 0.0120288683, -0.0029502681, -0.0106620947, -0.0379912257, -0.0265002102, -0.00876379944, -0.0179199129, -0.01757822, 0.0056537576, 0.00687815854, -0.042699, 0.00338213053, -0.039813593, 0.0478876755, 0.00318755512, 0.00368269393, 0.0208053216, 0.0510768145, -0.0150724687, 0.00616629748, 0.0272595286, -0.0249182973, -0.0208432879, 0.0167303141, 0.072388351, -0.021058429, 0.0212862231, -0.0227542389, -0.0172491819, 0.00105513609, 0.0231338982, -0.0549240261, -0.0213748105, -0.0264748987, -0.013591798, -0.028423816, 0.0185526777, -0.011288533, -0.0256902706, -0.00488494802, -0.00588471722, -0.00834617391, -0.0124528203, 0.0197169669, 0.0193879288, -0.015274954, 0.0495581776, 0.0354095437, 0.0152243329, 0.0463437289, -0.0125983562, 0.0131741734, 0.0799815282, -0.000905645313, -0.0411044322, -0.000888244249, -0.00250258669, -0.0230326559, -0.0138828699, -0.00547974743, 0.0178439803, 0.00450845249, -0.0971927494, -0.00419839751, 0.0160469282, 0.00595748518, 0.0102824355, 0.00177490665, 0.0241842885, 0.0141106658, 0.0372825302, 0.0341946371, 0.00193942559, -0.00721352408, 0.0395857953, -0.0265761409, -0.0097066192, 0.0182742607, -0.0344477408, -0.0153382299, 0.0265761409, 0.00983317196, -0.0127438931, 0.00476472266, -0.0466221459, -0.0235262122, -0.0239944588, -0.0112822047, 0.0197928976, 0.0121744042, 0.024323497, -0.0104026608, -0.0180970877, -0.0134146241, -0.0195524469, 0.00706166029, 0.0082449317, -0.0137183508, -0.00509376032, -0.00895995647, 0.0109341843, 0.0022447349, -0.00701736705, 0.0049450607, 0.00628652284, 0.0250828154, 0.00621691905, 0.0113581363, -0.0022763731, 0.00151942763, 0.0139081804, -0.0427243114, 0.0331062786, -0.0242475662, -0.00199953839, 0.0201219358, 0.00383455749, -0.00210236269, -0.00843476132, -0.016515173, -0.0023001018, 0.00405918946, 0.053304147, 0.0176414959, -0.0211470164, -0.0146674989, -0.0163000338, 0.0429774188, 0.00813736115, -0.0252346788, 0.0411803648, -0.0227542389, 0.00837781187, 0.0195777584, 0.00808674, 0.0240577366, 0.0268798694, 0.00359094306, -0.0100989342, 0.0271329749, -0.00829555281, -0.0103520397, -0.0163886212, 0.031612955, -0.00828289706, 0.0293856189, 0.00992175937, -0.0138322487, 0.0384215079, 0.00249942276, -0.0338909067, -0.00368585763, 0.013705696, -0.0318407491, 0.00627386756, -0.0240703914, -0.00651748246, 0.0551771335, 0.0157558545, -0.0321697854, 0.0167809352, -0.0117694344, 0.00276202033, 0.00870685, 0.00623590173, 0.0255130958, 0.00634663552, -0.018312227, -0.012187059, -0.00490393071, 0.0145156356, 0.00294235861, -0.0550758913, 0.0133893136, -0.0268292483, 0.0077893408, -0.0186792314, 0.0205269065, -0.00609352952, 0.0144650145, -0.0157052334, 0.00721352408, -0.0502668731, 0.0199194513, 0.00637827395, -0.00301196263, 0.0101052616, 0.00281264167, 0.0166543815, -0.0352576822, -0.0267026946, 0.00675160531, 0.0169834197, 0.00907385442, 0.0255384073, 0.00889668, -0.00503364764, -0.0352829918, -0.0119782463, -0.00851702, -0.0260193087, -0.0206408035, -0.00158033124, -0.0258294791, 0.00968130864, 0.0419143736, -0.0024946772, -0.00999769103, 0.0115036732, -0.00335681974, -0.00340427714, 0.0323469602, -0.0302968, -0.0300690066, 0.00913080294, 0.0191981, -0.0153002646, 0.0106620947, -0.0144017376, 0.0129843438, -0.0446226075, -0.0335112475, -0.0174769778, 0.0138449045, -0.0102824355, -0.00181761826, -0.0365232117, 0.0435089394, 0.0348527133, -0.0262217931, -0.0163506549, -0.0117757618, 0.0187931284, 0.0398389027, -0.0038978341, -0.000748640392, -0.00265761418, -0.0476598814, 0.0239564925, 0.0260446183, 0.0114150858, 0.00417308696, -0.00129954168, -0.000666776439, 0.00645737, -0.0214127768, -0.0144776693, -0.0177300833, 0.0493050702, 0.029714657, 0.00288066384, -0.0385986827, -0.0260699298, -0.0200586598, 0.0522917211, -0.00547025586, 0.0253485776, -0.023146553, -0.0121237831, -0.0376621895, 0.0141233206, -0.0215519853, -0.0229061022, -0.0101052616, -0.0152622983, 0.00407817215, -0.0158697534, 0.0191727877, -0.00864990149, 0.0346755385, -0.0361941755, 0.00690979697, -0.0145156356, -0.0111556519, 0.00369851314, 0.0371053554, 0.0148952948, 0.0243361518, -0.0447744727, 0.0216279179, 0.0189323369, 0.00993441511, -0.0251967125, 0.00438189972, -0.026171172, 0.0167809352, -0.0116238985, 0.00746030267, 0.00778301293, 0.0390036516, -0.0233363826, -0.0282972641, 0.0264242776, -0.0201092809, 0.00014672245, -0.00181445444, -0.00832719076, 0.0281200893, 0.0454325452, 0.0417118855, 0.00822594855, -0.00768809812, -0.0226403419, 0.019210754, -0.00283795223, 0.0067452779, 0.0248297099, 0.00157874939, -0.0375103243, 0.0382696427, 0.0268039368, 0.0158697534, -0.0129527049, -0.0398642123, -0.0112126, -0.0165784508, -0.000971294707, -0.00346122612, -0.0198055524, 0.00841577817, 0.00124496571, -0.00725781778, 0.0157305449, -0.0177427381, -0.0238172859, -0.00935859885, 0.0361941755, 0.0126679605, 0.0139081804, -0.0422687195, -0.00196315418, 0.00342326, -0.0012528752, 0.000159674368, -0.0306764599, 0.018312227, -0.0162367579, 0.0532029048, -0.0172871482, 0.0198561735, 0.00335681974, -0.0259054098, 0.0149332602, 0.019324651, -0.00141660322, 0.0148826391, -0.00242981873, -0.0077450471, 0.0255890284, -0.0261205509, 0.0208812542, 0.00766911497, 0.0136930402, -0.00139366556, 0.0272089075, -0.0203750413, -0.0165657941, -0.00205806899, 0.00479952479, -0.0240577366, 0.0113897752, -0.00233806763, 0.0251081269, -0.0139461467, -0.0033030347, -0.0100103468, -0.0352070592, 0.0231338982, 0.010503904, 0.0109531665, -0.00186032988, -0.00247253035, -0.0032271028, -0.0332075208, -0.0054038153, -0.00708697131, -0.00558731752, -0.00605872739, -0.00319388276, 0.00797284208, 0.0217671264, -0.000641070306, -0.00102903449, -0.0100672953, 0.0385480598, -0.013591798, 0.0105988188, -0.00279682246, -0.02296938, -0.00407500844, 0.0149585707, 0.0444707423, -0.00912447553, 0.0462931059, -0.0183248818, 0.0400160775, 0.0364219695, 0.0107316989, -0.0236527659, -0.0033030347, 0.0141865974, -0.00623273803, -0.0175149422, -0.0103457123, -0.00161750626, 0.0213495, -0.00763114914, 0.00324608595, 0.0211343598, -0.0231212433, -0.00361941732, 0.000370563153, -0.00183343736, 0.0214760527, 0.0383455753, 0.00830820855, -0.00202959473, 0.0200206935, -0.0032271028, -0.0137563171, 0.00921939, 0.00664403522, 0.0216658823, 0.0524942093, 0.0037712811, 0.025778858, 0.0214380883, -0.0245006718, -0.0236021448, 0.0165531393, -0.0128577901, -0.0367256962, -0.0561389364, -0.0477611236, 0.0189070273, -0.0036478918, 0.032676, -0.0216405727, -0.0384215079, -0.00026833202, -0.018426124, -0.00279207691, -0.000450449792, -0.0296134148, -0.0179325677, 0.00279682246, 0.00843476132, -0.0168568678, 0.0173377693, 0.0156799238, -0.0275885668, 0.024488017, -0.0272342172, -0.0249562617, 0.0223239586, -0.0191095117, -0.0614035428, 0.0485204421, 0.0196410343, -0.00441037398, 0.00980786141, 0.0171605945, -0.0224631671, 0.00936492626, -0.0447491594, 0.0577081926, -0.0134525895, 0.013427279, 0.0381937139, 0.0521398596, -0.00454325462, 0.00142451283, 0.00387885119, 0.0156039922, -0.0178692918, -0.00553986, 0.0270064212, 0.0450022668, -0.00695409, 0.049431622, 0.0201092809, 0.00302303606, 0.0134905558, 0.0149712265, -0.000567906827, 0.0456856526, 0.0281960201, 0.0150598139, 0.000552483194, 0.0112948604, -0.00214191037, -0.0403198041, 0.00992175937, 0.0152876088, -0.0161481705, 0.00807408523, 0.0419649929, -0.0297905896, 0.00901057757, 0.00923204515, -0.0277404301, 0.0124464929, -0.0147434305, -0.000203078103, 0.02943624, -0.000781465147, 0.013933491, -0.0321444757, -0.00761216646, -0.0162367579, 0.000255676714, 0.0226783082, 0.0331822112, -0.0298412107, -0.01471812, -0.0146421883, -0.0212862231, 0.00506212236, -0.0217165034, -0.00319388276, -0.00296925101, -0.0362701043, -0.0158191323, 0.00338529423, 0.0137563171, -0.0337137356, 0.0271329749, 0.0452806838, 0.00235863263, -0.00416359538, -0.00506845, 0.0172871482, 0.00784628931, -0.00394845521, 0.00234597735, 0.000277230283, 0.0330556594, -0.0173504241, 0.0352070592, 0.0162494127, 0.0224884786, 0.0166164171, 0.0328278616, -0.016338, 0.0156546123, -0.00154948398, 0.035384234, 0.0225137882, -0.00426167436, 0.0326253772, 0.00798549782, -0.00751092378, -0.00216722116, 0.00221467856, 0.00445466768, 0.0194258932, -0.0293603092, 0.00427116547, -0.0254118536, -0.0112632215, -0.012497114, 0.0114340689, 0.00110892113, 0.0301955584, 0.0266520735, -0.00079847069, 0.0117631061, -0.00949147902, -0.0337390453, 0.00204857765, -0.0375356376, -0.0117314681, 0.0259686876, 0.00124575663, -0.00360359834, -0.0213874672, 0.0166670382, -0.0636308789, 0.00787792727, 0.00697940122, -0.00493556913, 0.0186918862, -3.06990041e-05, 0.0140094236, 0.0322457179, -0.0253865421, 0.0077007534, -0.00267501525, -0.0101558827, -0.0114467237, 0.0102634532, 0.0109215286, 0.0338149779, -0.00114609615, 0.00956108328, 0.00969396438, 0.0144776693, -0.0228681378, -0.0167809352, 0.000927792105, -0.00829555281, -0.0153002646, 0.0380924679, 0.0160975493, 0.00365421944, 0.0187678188, 0.0128577901, -3.03035249e-05, 8.88837458e-05, -0.0181603637, -0.00571703445, -0.0121617485, 0.00768177025, 0.0298412107, -0.000316580379, 0.0228554811, 0.0343211889, -0.00628652284, 0.0114150858, -0.0051475456, 0.00870685, 0.0204130076, -0.00220518699, -0.0214633979, -0.035434857, 0.0210963935, 0.0117441239, 0.00389150647, 0.019324651, 0.0208053216, -0.0290565807, -0.0150977792, 0.00781465136, -0.00735273259, -0.0125920288, -0.0153508857, 0.0104785934, 0.0390289612, -0.0107506821, 0.00114767801, -0.0126363225, 0.0270064212, -0.0552783757, 0.00381873851, -0.00202484895, -0.0184134692, 0.0179831889, 0.0149332602, -0.00817532744, 0.000247371674, 0.0077007534, 0.0211723261, 0.00804244634, 0.0115732765, 0.0122250253, -0.0172744915, -8.07764445e-05, -0.00541647058, -0.00953577273, 0.0392314456, 0.00911814719, -0.0176541507, -0.0121427653, 0.00708064344, -0.00241241767, -0.017856637, -0.00604923628, -0.0140853552, -0.0100356573, -0.0183501933, -0.0164898634, -0.028702233, 0.017692117, -0.0078336345, -0.00140315702, -0.00507477764, -0.00461918674, 0.00405286159, -0.0148573285, -0.00236654212, -0.0133766579, 0.0111113582, -0.011092375, -0.000399828568, 0.0198561735, -0.00404020632, 0.00962436, -0.0192993414, -0.0176794622, 0.000699996599, -0.0151737118, -0.00430280389, -0.00383772142, -0.0101052616, -0.00908018183, -0.0144776693, -0.0199194513, 0.0210710838, -0.00911182, 0.00177965232, -0.00802346412, 0.0252853, -0.0129843438, 0.0206787698, 0.00839046761, 0.00192518835, 0.00837148447, -0.00597646786, 0.00330619863, 0.0118580209, -0.0119402809, -0.0139081804, 0.0133513473, -0.0100356573, 0.0239438377, 0.0040845, 0.00066559, -0.0152116772, 0.0088334037, -0.00919408, -0.00387568725, -0.00478370534, -0.0216026064, 0.022577066, 0.00717555825, -0.0143637722, 0.0165025182, -0.0314610898, -0.024994228, 0.0517095774, -0.0144523587, -0.0302208699, -0.00974458549, -0.00942820311, -0.0296640359, 0.00713759242, 0.0120351957, 0.00412246585, -0.024260221, 0.0211470164, 0.000787397265, -0.00183343736, 0.0493556932, -0.000858978892, 0.0023001018, 0.00684019271, -0.0167556237, 0.0389024094, -0.0182995722, -0.0228428263, 0.019603068, 0.016338, -0.0170720071, 0.0151230898, -0.0317901261, -0.0150345033, -0.0134525895, 0.0349539556, 0.0134019684, 0.0106937336, -0.0056505939, 0.0422434099, 0.00963068753, -0.00154157437, 0.0184008144, 0.00918142404, -0.0205269065, 0.0067452779, -0.0112126, -0.00653646514, 0.0154900942, 0.0168062467, -0.0161355138, 0.00564743, -0.00488178432, -0.0298918318, 0.0221720953, -0.0220202319, -0.01803381, -0.0134652453, -0.0082512591, -0.011680847, -0.00246778456, 0.0227415841, 0.00927001145, -0.00251049618, -0.0145029798, 0.0339415297, -0.0318154395, -0.0164772086, -0.00992175937, -0.0271076653, -0.00677058846, 0.0283478852, 0.005489239, -0.0115036732, 0.0323975831, 0.00634347182, 0.004606531, 0.0282719526, 0.0361435525, 0.032802552, -0.0173630789, -0.0548734032, -0.0138069382, -0.0203244202, 0.0211976375, 0.0118263829, -0.0104659377, 0.0212988798, -0.0229187589, -0.00385670434, 0.0164772086, 0.00403704261, 0.0242096, -0.0109152012, -0.0197549313, -0.00558415381, 0.0161608253, -0.0157432, 0.0100546405, -0.0378899835, 0.0263230354, 0.0143004954, -0.0217038486, -0.00408766372, 0.00522664143, 0.000614968769, -0.00104168989, -0.0218936782, 0.0202991106, 0.0117251407, 0.00886504166, -0.012775531, -0.0312586054, 0.0132501051, 0.0014869984, 0.0303980447, 0.0121554211, -0.0215646401, 0.000135352442, -0.00411297427, -0.0061061848, -0.0082892254, 0.0138195939, 0.0118200555, -0.00486912904, 0.013591798, -0.0168189015, -0.00930164941, -0.0182616059, 0.00527409837, 0.0165657941, -0.0221467856, -0.0133893136, -0.00704267761, 0.00187456713, 0.0242981873, 0.00252473354, 0.028702233, 0.0188310947, 0.000366608379, 0.00548291113, -0.0117820892, 0.01471812, 0.00167050038, -0.0191348214, 0.00286326278, 0.00112790416, 0.0111872898, -0.01803381, -0.0145789124, -0.000136044531, 0.0193879288, 0.00394212781, -0.0101432269, -0.0180591214, 0.00794120412, -0.00264970469, 0.00396427466, -0.0155533701, 0.0182362944, -0.00264337705, 0.0167176593, 0.00547341956, 0.0136930402, -0.0104596103, 0.00586257037, 0.00921939, 0.0236274563, 0.000473783, -0.00422687223, 0.00305942, 0.00762482174, 0.01148469, 0.0023001018, -0.00099185959, 0.0104659377, 0.00114688708, 0.0119466083, -0.00856131408, -0.000970503723, -0.00901057757, 0.0108202863, 0.0196410343, 0.0139081804, -0.0390542746, 0.0209192205, 0.00740968157, -0.0126995994, 0.0125224246, -0.0204256624, 0.014604223, -0.0303980447, -0.0162494127, -0.0282213315, 0.00211027218, 0.01757822, 0.019147478, -0.0222859923, 0.0135791432, 0.00438506342, 0.00840945076, 0.010111589, 0.0119023146, -0.0208432879, -0.0396111049, -0.0087511437, 0.00733374944, 0.019324651, 0.026677385, -0.0157685112, 0.0143131502, -0.023311073, 0.00683386484, -0.0145662567, 0.00231275707, 0.00358777912, -0.00288066384, 0.00168315566, -0.0135411769, -0.0112442393, 0.0197549313, 0.0225011334, -0.00204066793, 0.0117820892, 0.000828131568, 0.0184008144, -4.31812878e-05, -0.0161861349, 0.00853600353, -0.00056672038, 0.00994074252, -0.00336947502, -0.0107316989, 0.00193626177, 0.00573601713, 0.00396111049, 0.00809306744, -0.0248550195, -0.0064510419, 0.0217797812, -0.0214633979, 0.0123072844, -0.0102001764, -2.22580129e-05, -0.0259433761, 0.0104596103, -0.00889035221, 0.0074919411, 0.0219822656, 0.0251967125, 0.0275379457, -0.0091624409, -5.62073546e-05, 0.000591240067, -0.00799182523, -0.0161355138, 0.00800448097, 0.0120351957, 0.00354981329, 0.00911814719, 0.00423003593, -0.0182362944, 0.0231845193, -0.012889429, -0.0307523925, 0.0136044538, -0.0278922934, -0.00701736705, 0.00441986555, -0.0151990224, -0.0147940526, -0.027411392, 0.00424901862, -0.0184134692, -0.0120605063, -0.00948515162, -0.01757822, -0.0242349096, 0.0421927869, 0.0295121726, 0.0221214741, -0.000841577828, 0.0038503767, 0.00784628931, -0.00440404611, -0.0343971215, 0.00653646514, -0.018590644, -0.00785894506, 0.014490325, -0.0144143933, -0.0018634937, 0.0146548441, -0.0118643492, 0.0312586054, 0.00337580265, 0.0153761962, -0.00305783818, 0.0110417539, -0.000580957625, -0.00320812, -0.0159963071, 0.00362890889, 0.0178313255, 0.00266236, 0.0116745196, 0.0170466974, 0.000244010109, -0.00908018183, -0.00267817895, -0.0257282369, -0.0255130958, -0.0111683076, -0.0064035845, 0.0215519853, 0.0288034752, -0.0462171771, -0.00167208223, -0.00897261128, 0.00792854931, -0.0111872898, -0.00597963203, -0.0319419913, -0.00788425561, 0.00334416446, -0.000277823507, 0.00365738338, -0.0136424191, -0.0149206053, -0.011712485, 0.00176541507, 0.00827024225, 0.00858029723, 0.0175908748, 0.00997870881, -0.00411930215, 0.000938074547, 0.0033947858, 0.0124718035, -0.0136930402, 0.0146421883, 0.00713759242, 0.00950413477, 2.13434687e-05, -0.0126173394, -0.0138195939, -0.0104912482, -0.0204889402, 0.0417372, -0.0154141625, 0.00457172934, -0.00618844433, -0.00421105279, -0.00992175937, -0.00188564055, -0.0234123152, -0.0117441239, -0.00329987099, -0.00174643216, -0.0207040794, -0.00454325462, -0.0201345906, 0.031334538, 0.0141359763, 0.00618211692, 0.0227162726, -0.012693271, 0.0195271373, 0.00935859885, 0.0152243329, -0.00966865383, -0.00311636901, 0.00501782866, -0.0103330566, 0.00822594855, -0.00173377688, 0.0233237278, 0.00778301293, -0.00843476132, 0.000911972951, 0.0112632215, 0.0186032988, -0.00062169187, 0.0247031562, 0.00419207, 0.0267280061, 0.0104406271, -0.0226656515, 0.0131108966, -0.00274620135, -0.00631816126, -0.00482799904, -0.0105545251, -0.013705696, -0.011598588, 0.00232857629, 0.0322963409, 0.0227289293, -0.0274367016, -0.00346755376, 0.0186539199, -0.0114720343, -0.00120146305, -0.0260446183, 0.0159583408, -0.0136930402, 0.000385393592, 0.0107506821, -0.00370484078, 0.0142878396, 0.0091624409, 0.0659088343, -0.00904221553, 0.0026765971, -0.00239818031, 0.00327456021, 2.26411321e-05, -0.00672629476, -0.0177174285, -0.027689809, -0.0191095117, -0.00675160531, 0.0209951513, 0.00767544284, 0.0215519853, -0.00551138539, -0.00560946437, 0.0124528203, -0.0229820348, -0.032751929, -0.00370167685, -0.00559364492, -0.0199321061, 0.029993074, -0.0126553057, -0.0221088193, -0.00734007731, 0.00515703717, 0.00616629748, -0.0179452226, -0.0185653325, -0.01148469, -0.00839046761, -0.0247411225, -0.0214127768, 0.0144523587, 0.0185653325, 0.0104026608, 0.0027003258, -0.0163000338, 0.00353399408, 0.00673895, -0.000379263685, 0.0147940526, 0.00632132497, -0.00465715257, -0.00517602, 0.0169707648, 0.00603658054, -0.00321919331, 0.014604223, 0.0136930402, 0.0107949758, -0.00355614093, 0.00192202453, -0.00752357906, -0.0105292145, 0.00767544284, 0.00680855429, -0.00624855701, -0.00235863263, 0.00334416446, 0.00920040719, -0.00946616847, -0.00894097332, -0.00501466496, 0.00511907088, -0.00187931291, -0.032853175, -0.00394212781, -0.0021292551, 0.0254624747, 0.00405286159, 0.00468246313, -0.000226411328, -0.0142625291, -0.00740968157, 0.0262471046, -0.0216405727, -0.00147829787, 0.0205648709, 1.24822836e-05, 0.0287781656, 0.00225106254, 0.0187931284, 0.000349602808, 0.0139461467, 0.0268798694, 0.0190335792, -0.000817058142, 0.00660606939, 0.00639092922, 0.0124021992, -0.00551138539, 0.0240830462, -0.0198435187, -0.00904221553, 0.0207673572, -0.00310213189, 0.00411297427, -0.000817849126, 0.0107570095, 0.0109152012, -0.00483432692, 0.0184387807, 0.0069920565, 0.0163000338, -0.00205332343, -0.00415726798, -0.0194638595, 0.00540697947, 0.0119276252, -0.010358368, -0.00441670185, -0.00837781187, -0.00911814719, -0.00613782322, 0.00453692721, -0.00125366624, 0.014768742, -0.0178692918, -0.00905487128, -0.0145915672, 0.0130096544, -0.00324924965, 0.0257155802, 0.00926368404, -0.0125350803, 0.0195271373, -0.0129020838, -0.00819431059, -0.0120415231, 0.00122835557, -0.00534053892, -0.0110860476, 0.0231085885, 0.0283985063, -0.013364003, 0.0102128312, -0.0152876088, 0.0022004412, 0.00394212781, 0.0318407491, -0.0134905558, -0.00026991393, 0.0230706222, -0.0224505123, 0.000561579189, -0.0148193631, -0.0201978683, 0.00673895, 0.0193119962, 0.0145029798, 0.00292179361, 0.00361308968, -0.0107316989, 0.00739069842, -0.0051064156, -0.00586573407, 0.0253232662, 0.0176414959, -0.00419207, 0.00513172662, 0.00461918674, -0.00588788092, 0.00895995647, -0.00936492626, -0.00750459637, 0.00818165485, 0.0209065657, 0.0114467237, 0.023867907, 0.00671363948, -0.00801080838, 0.00153841055, -0.00797917, -0.00462551415, -0.0241463222, -0.0270064212, -0.00759318331, 0.000427512045, 0.00416992325, 0.0115606217, -0.00204857765, 0.0064004208, -0.00296608731, -0.00989012141, 0.0102697806, -0.00213716482, -0.0086625563, -0.0372319072, -0.0144776693, -0.0311067402, -0.00472675683, 0.00100926065, 0.00292021176, -0.0169454534, -0.000427512045, 0.0303980447, 0.00200428395, 0.0187298525, 0.000131990877, -0.0269558, 0.00102666172, 0.0349286422, 0.00622957433, 0.0215013642, 0.00066005328, -0.0365485214, -0.0103520397, -0.0018998778, 0.00897261128, 0.00594483, 0.00731476676, 0.0117251407, -0.0298159, 0.00601759786, -0.0037269874, 0.00159140467, -0.0211343598, -0.00236654212, 0.0279176049, 0.0382696427, 0.0302461796, -0.0344983637, -0.00789058302, 0.00107332808, -0.00976356864, 0.00809306744, 0.00836515706, -0.0209571868, -0.00802979153, 0.0334859379, 0.0048533096, 0.00554935168, -0.0037269874, 0.000655307551, 0.00118406198, -0.00880176481, -2.93148296e-05, 0.00763114914, 0.0135664875, -0.00362574495, 0.00799182523, -0.00225422624, -0.000679036253, 0.009295322, -0.0233237278, 0.0194512047, 0.0179199129, -0.0107633378, -0.0173251126, -0.0201219358, 0.000902481494, -0.0107949758, -0.0105418693, -0.00989644881, 0.0104912482, 0.00286959065, 0.0104785934, 0.015781166, 0.013313381, -0.0181477088, 0.00909283664, -0.013984113, 0.00884605851, 0.019767588, 0.0176161844, 0.0268798694, -0.0317901261, 0.0051475456, 0.0158191323, -0.000154038804, 0.0152622983, 0.00249151327, -0.0108076306, -0.00226688152, -0.0126299951, 0.0244627055, 0.0223113038, -0.00313060614, 0.0288034752, -0.00353715802, 0.00591951935, -0.0267533157, -0.0145409461, 0.00292179361, 0.0143890828, -0.00347071746, 0.000878752791, 0.00312744244, 0.0112758772, -0.00936492626, -0.0167050026, 0.0041034827, 0.0193752721, -0.000889035233, 0.0356373414, 0.0127565479, 0.0104406271, 0.000667567365, -0.00211501797, 0.00458122045, -0.00805510208, 0.00169581093, -0.00851702, -0.0145915672, 0.0130223092, 0.0029265394, 0.0132880704, -0.0104279714, -0.0106304567, 0.000860560802, 0.0025532078, 0.00164360786, 0.0111366687, -0.0097952066, 0.01695811, -0.00148620747, 0.0102634532, 0.030727081, -0.0125414077, 0.0124021992, -0.012693271, -0.0241716336, -0.00461918674, -0.0152622983, 0.00114451419, 0.0120605063, -0.0154015068, -0.0223366152, -2.05030774e-05, -0.015502749, 0.00818165485, 0.00104880845, 0.00110101153, -0.0143131502, 0.00861193519, -0.00750459637, -0.0104849208, 0.00341060478, -0.0226656515, -0.00158191321, -0.0029502681, -0.00582144037, -0.0135285221, 0.00232224865, -0.0136297643, -0.0134399347, 0.008200638, -0.00804877467, -0.0141739426, -0.00121886411, 0.00630234228, 0.0465462133, 4.29835491e-05, -0.0100546405, 0.026398968, -0.00956108328, -0.00873848889, 0.00258326414, 0.00123626518, -0.0125287529, 0.000364433246, 9.55327232e-06, -0.00987113826, -0.0158950631, 0.00936492626, 0.000167682796, 0.0064447145, -0.00118248013, 0.00731476676, 0.0046002036, 0.00497986283, -0.00031005498, 0.0162114464, -0.00497037126, 0.00894097332, -0.0121744042, -0.00678957161, 0.00045994125, 0.00288066384, -0.00483432692, -0.0120162126, -0.0100103468, 0.0135158664, 0.00591951935, 0.0113518089, 0.0350805074, -0.00174801413, 0.0156039922, 0.0224758219, 0.00201061158, 0.00166259077, 0.0014371681, 0.0279176049, -0.00232857629, -0.0104532829, -0.0340427719, -0.00876379944, -0.0114783626, -0.014768742, 0.00822594855, 0.00589420879, -0.00735273259, 0.0037712811, -0.0013762645, -0.017856637, -0.0284491275, -0.000846323557, -0.0109658223, 0.00667567365, 0.00281738746, -0.00849803723, -0.00966865383, 0.0124654761, -0.0102697806, 0.0159203745, -0.021792436, 0.00559048122, 0.00332201761, 0.00588155305, 0.0103836786, -0.0113011878, 0.0043502613, -0.0190588906, -0.00897261128, 0.00312902429, -0.0177807044, 0.00680222688, 0.028423816, -0.0347767808, -0.0012370561, -0.000634742668, -0.00812470634, -0.00974458549, 0.0120098852, 0.00236654212, 0.0245133266, 0.00941554736, -0.000595194811, 7.47701142e-06, -0.0158570986, 0.0150977792, -0.00379975559, -0.0115479659, 0.00453376304, 0.000661635189, 0.00369851314, 0.00534370262, -0.00496087968, 0.0180717763, 0.00216722116, -0.00742866425, 0.000955475552, -0.0327772424, 0.000854233105, 0.0171099734, -0.0222480278, 0.0203497317, 0.0148699842, -0.0105608525, 0.0165657941, -0.0189576484, -0.0056505939, -0.00554935168, -0.0148193631, -0.000627228583, -0.00773871923, 0.0116302259, 0.0138828699, 0.0160469282, -0.0154900942, -0.0138575593, 0.00254371646, -0.0185779892, -0.0160342716, -0.0132880704, -0.00443252083, -0.017021386, -0.00567590445, 0.00123072846, -0.00101717014, 0.00518551143, 0.00301196263, 0.0142878396, 0.0235641785, -0.00642573135, 0.0356879607, 0.00324608595, -0.0107759926, 0.0275632553, 0.00664403522, -0.00388834253, -0.00239818031, -0.00192044256, 0.0111683076, -0.00295185, -0.0253106114, 0.0138828699, -0.00518551143, 0.0159583408, -0.000695646333, 0.00501782866, 0.0106747504, 0.0025769365, 0.0216279179, -0.0304992869, -0.00788425561, 0.0131235523, 0.00222417, 0.0170340408, -0.0100356573, -0.0113707921, 0.0149079496, -0.000712651876, -0.00581194926, -0.000102132268, 0.0172871482, -0.00614098692, -0.0106367841, -0.0265255198, -0.00533421151, -0.00859928, -0.0180211551, 0.021235602, 0.00852334872, 0.00887136906, 0.0261458606, 0.0187425073, 0.00537534105, 0.00487229275, -0.00676426105, 0.0125414077, -0.024601914, -0.00234281342, -0.0170973185, 0.00699838391, -0.0239058714, 0.00727680093, -0.00462867785, 0.00890933536, -0.00290913833, 0.0211976375, -0.00944718532, -0.00931430515, -0.0148320179, 0.00353399408, 0.0196283795, -0.00699838391, -0.00420472538, -0.00768809812, -0.000596381258, 0.0176161844, 0.0118327104, -0.00239818031, -0.0227289293, -0.00325241359, 0.0216532275, -0.0133766579, 0.00572336186, -0.00273038214, 0.00316857221, 0.000393896393, 0.0217671264, -0.0198308639, 0.0140220784, -0.0103267292, 0.0191727877, -0.0149585707, 0.00205806899, 0.00599861471, -0.0203750413, -0.0149459159, -0.000136044531, -0.00221309648, -0.0117251407, 0.00163569825, 0.0054449453, -0.0115542943, 0.00776403, 0.0109468391, -0.00713126455, 0.00730211148, 0.00861826353, -0.00102033396, -0.0193752721, 0.00828289706, -0.0118580209, 0.0123452507, -0.0370041132, 0.0191095117, 0.00636245497, 0.0104279714, -0.00199637446, 0.0253106114, 0.0187931284, 0.0325494446, -0.0123895444, 0.00245196535, -0.0126173394, 0.0116935028, -0.0154647836, -0.037459705, 0.0218177475, 0.0135285221, -0.0244500507, -0.00958639383, -0.00441986555, -0.0103140743, 0.00864357408, -0.0118327104, -0.0193626173, 0.0142625291, -0.000772369094, 0.0237160418, 0.00328088808, -0.0284997486, -0.0218050908, 0.0355867185, 0.0118959872, 0.000988695771, 0.0239185281, 0.00180179917, -0.0107506821, 0.0008368321, -0.0119845746, 0.0124591487, 0.0136171086, 0.0025500441, -0.0114783626, 0.00606505526, -0.00246778456, 0.00241716346, -0.00612516794, -0.00116824289, 0.0216026064, -0.00270981737, -0.00109389296, 0.000490393082, 0.0177047718, 0.0064921719, 0.0173124578, 0.00526777096, -0.0193119962, 0.00800448097, 0.00646053348, -0.00949147902, -0.00304360106, 0.00812470634, 0.0141612869, 0.0169327985, 0.0277404301, 0.0108076306, 0.0111872898, 0.0461665541, -0.0189449918, -0.0067452779, -0.00987746567, -0.0182362944, 0.00170372054, 0.0130096544, 0.0064447145, 0.00704900501, -0.0111683076, -0.0213748105, -0.0104659377, -0.00424269121, 0.0324228927, -0.0132501051, 0.00877645425, -0.00250733248, -0.00433760602, -0.00977622345, -0.012187059, 0.0247031562, -0.00282846089, 0.00374913425, 0.00734007731, -0.00128372258, 0.0203623865, -0.00500200968, -0.0168821774, -0.0109025454, -0.0024946772, 0.0117694344, -0.00290122884, -0.00529308151, 0.0169454534, 0.00141818519, 0.0190968569, -0.0340427719, -0.0185147114, -0.010927856, -0.00682120956, 0.0126489783, -0.0310561191, -0.0116112428, 0.00966232549, -0.00230484759, 0.00481218, 0.0322457179, 0.0177807044, -0.00865622889, 0.0202611443, 0.00726414518, 0.0100230016, 0.0271076653, -0.000942820276, 0.00289331912, 0.00868786685, -0.0131235523, 0.0195271373, 0.0230073463, -0.00939656422, 0.00147513405, 0.0220075771, 0.00596064888, -0.0154268174, -0.00425218279, 0.000632369774, 0.00323975831, 0.00888402481, -0.0211849809, -0.0145662567, 0.0190209243, 0.0309295673, 0.0059037, 0.00379026402, -0.00371749606, 0.00710595399, 0.00908018183, -0.00628968701, 0.00164044404, -0.00210552639, 0.0119086429, -0.00117773435, -0.00278891297, 0.00684019271, -0.00880176481, -0.0022447349, 0.00943453051, -0.0142751848, -0.00813103374, 0.0274873246, 0.0200333484, 9.31845716e-05, 0.02898065, 0.0125603909, -0.00937125366, 0.00944718532, -0.0142878396, -0.0293349978, -0.0078716, 0.0150091927, 0.0113771195, -0.0347514674, -0.0134399347, 0.00753623433, 0.00849171, 0.00190145965, 0.0033504921, 0.0109088738, 0.00916876923, 0.0160469282, -0.021792436, -1.39158929e-05, -0.0127945142, 0.0082069654, -0.0207547, 0.0182742607, 0.00091513677, -0.0123642338, 0.0322457179, 0.000626437599, -0.00373964268, -0.00792854931, -0.0142498743, 0.0123072844, 0.00989012141, 0.0181223974, -0.0257155802, 0.00415410427, -0.00616313377, 0.00612516794, -0.00762482174, -0.00528359, 0.020893909, 0.0107063884, -0.0165657941, 0.0102444701, -0.000489206635, -0.0242855307, -0.0194385499, 0.0160089619, -0.00345173455, -0.00450528879, -0.00881442055, -1.21300609e-05, -0.00642256765, 0.0140220784, 0.0216405727, 0.0323975831, -0.0205395613, -0.00553669641, 0.0277657397, 0.01803381, -0.0200460032, 0.00744131953, -0.0109911328, 0.0128008416, -0.00555884279, -0.00378077244, -0.00805510208, -0.0105228862, 0.000848696451, -0.00187456713, -0.00536584947, 0.0260699298, 0.0140347341, -0.0120731611, -0.000998187228, 0.0243614633, -0.00457172934, -0.00507794134, 0.0166164171, 0.0305752177, -0.0225137882, 0.0175655633, 0.00356879621, -0.0132374493, -0.0119466083, 0.0129273944, 0.000572257093, -0.00463184202, -0.00262439391, -0.0213241894, 7.14332709e-05, -0.00170372054, 0.00715024769, -0.0105418693, -0.00397693, 0.0133893136, -0.0101558827, -0.0224631671, 0.00459704, 0.0227415841, 0.00730843889, -0.0040560253, -0.0164392423, 0.0123768887, 0.0196410343, -0.0100293299, -0.00861193519, 0.00707431603, 0.0103646955, -0.00598912314, 0.0107316989, 0.00203592237, -0.0012528752, -0.0109531665, 0.0198941398, -0.0141106658, -0.0048944396, -0.0116618639, 0.0192487203, -0.00688448641, 0.0332581438, -0.00809939578, -0.00121016358, -0.0204383191, -3.31707415e-05, -0.0339921489, -0.00147276116, 0.0137310065, -0.00214191037, -0.0125287529, -0.00675160531, 0.0123768887, -0.00931430515, -0.000235309592, -0.0107506821, 0.00173852255, -0.00160959666, -0.000429093954, 0.0122060422, -0.000349405076, 0.00498619024, 0.0218050908, 0.00567906816, 0.0136044538, 0.00351184723, 0.0116745196, 0.0129527049, 0.000146623584, -0.00932696, -0.00160168717, -0.0071565751, -0.00967498124, -0.0121174548, 0.00198530103, 0.00902323332, -0.00026991393, -0.00579929398, 0.0125414077, 0.000324885419, 0.00299456157, -0.00851702, -0.00993441511, 0.0192866866, 0.00561262807, -0.028423816, -0.0116302259, 0.0429267958, -0.00836515706, 0.0217544697, -0.0109974602, -0.0118770041, -0.00827657, 0.0124085275, 0.00139366556, 0.0133260367, 0.00513172662, 0.00419839751, -0.00890300702, -0.0338149779, 0.0261458606, 0.00848538242, -0.0275632553, -0.0136677297, -0.00701103918, -2.18378173e-05, 0.00766911497, -0.0083335191, -0.010358368, 0.00897261128, -0.0130602755, 0.00375862583, -0.0275632553, 0.00852334872, -0.00940922, -0.00647951663, -0.00132801617, 0.00685284799, 0.0192740299, 0.000909600116, 0.00996605307, 0.00709962659, 0.00124575663, -0.0110037886, -0.0285250582, 0.016287379, -0.0128704458, 0.00807408523, 0.00719454139, 0.00158191321, -0.0093839094, 0.0152496435, 0.00563161075, 0.00771973655, 0.00922571775, 0.00849171, -0.0027446195, -0.000228784193, -0.0225137882, -0.0112948604, 0.0187425073, 0.0116681913, 0.0157685112, -0.00479952479, -0.00823227596, -0.0216405727, -0.00228270073, -0.0153255751, 0.00735273259, -0.000142075573, 0.0122819738, -0.0207673572, -0.00089299, 0.0132754156, -0.00382190221, 0.0148446737, -0.0314357802, -0.00900425, -0.000761295727, -0.0217671264, -0.000947566, -0.00300247129, -0.020223178, 0.0130982408, -0.00780199608, 0.0301196277, -0.0339921489, -0.00260699284, 0.00902956072, 0.00260224729, 0.00316382642, 0.0169454534, 0.0123262675, -0.00308156689, -0.0064921719, 0.00696041808, -0.0214380883, 0.0243614633, 0.00255162595, 0.00789691, 0.0132247945, 0.0141359763, -0.00849803723, 0.0082069654, 0.0131108966, -0.00583409565, 0.0274620131, -0.00985848345, 0.0113518089, -0.00240925374, 0.0101369, -0.0300690066, -0.0176161844, -0.00520449458, -0.00927001145, -0.0197169669, 0.0209824964, 0.00739702629, 0.00709329871, 0.0183375385, 0.0196916554, -0.00207547, 0.00283637038, -0.005448109, 0.0275632553, -0.0186032988, -0.0132501051, -0.0159836505, -0.0170846619, -0.00352766644, -0.0314357802, 0.0242475662, 0.0227542389, -0.00591635518, 0.0193499625, 0.000457568385, 0.000652934657, 0.00281105982, -0.00671996735, 0.0040971553, 0.0285250582, -0.0107949758, -0.00985215511, -0.0232857615, 0.00524562411, 0.0151737118, 0.00697307335, -0.0104849208, 0.00398642104, -0.0111999456, 0.0210837387, -0.00414144853, -0.00827024225, -0.00556833437, -0.00175750558, 0.00115637854, -0.0049450607, -0.0117884176, -0.00959272124, 0.0127881858, -0.00373015134, 0.0141486321, -0.0107823201, -0.0111872898, 0.00736538786, 0.00432495074, -0.000432257773, -0.0223366152, -0.0109594949, -0.0104089892, -0.00613782322, -0.010358368, -0.0166417267, -0.00463816943, 0.00187773095, 0.0159456842, 0.02898065, -5.00032875e-05, 0.00014088914, -0.0207673572, -0.00367636629, -0.00433127815, 0.000404969789, 0.000714233785, -0.0197043102, 0.00587206194, 0.00156688504, 0.00253580674, 0.0206534583, -0.00690979697, -0.0194132384, 0.0182742607, -0.000805193791, 0.0105735082, 0.0252346788, -0.00613149535, 0.00576132769, -0.0149838822, 0.0112695498, -0.0111176856, -0.0103393849, -0.00228270073, -0.0185147114, -0.00169106526, -0.010896218, -0.0172744915, 0.00366371102, -0.00482799904, -0.0111999456, 0.000911972951, -0.00402122317, -0.00985215511, 0.0115036732, 0.0118580209, 0.00512539875, 0.00203434029, -0.00666934624, -0.0107633378, -0.0233237278, 0.0112632215, 0.00338529423, -0.0131235523, 0.0217418149, -0.0270570442, -0.0109594949, -0.0342958793, -0.0231845193, -0.0139967678, 0.0199953821, -0.00406551687, 0.00776403, 0.0359157585, -0.00361308968, 0.00054180529, 0.0132501051, 0.00535952207, -0.00785261672, -0.0066503631, -0.00400224049, 0.00202326686, -0.00805510208, 0.0135032106, 0.0059037, -0.0218683686, 0.0268545579, 0.0170846619, 0.00885238592, 0.015388852, 0.0255763717, 0.0122186979, 0.00571387028, -0.00241241767, 0.00533737522, 0.0170593522, -0.00822594855, -0.00822594855, 0.0182109848, -0.00135332672, -0.0019473352, -0.0142245637, 0.0102950912, -0.00694143493, 0.00799815357, 0.00944718532, 0.00582460454, 0.00851702, 0.0233743489, 0.000764064083, -0.0051918393, -0.00631499756, 0.00326190493, 0.00567274075, 0.0157432, 0.00500833709, 0.00685284799, -0.0156799238, -0.018476747, 0.00264654076, -0.0165784508, 0.00273987371, 0.0124844592, -0.00329670706, 0.0185147114, 0.0259054098, -0.00209445297, -0.0176161844, 0.0173883904, -0.0296134148, 0.00503681181, -0.00704900501, -0.0143637722, -0.0074919411, 0.0318154395, -0.0231592096, -0.0112632215, -0.00827657, -0.00651748246, -0.0113518089, -0.00653013773, 0.00630234228, 0.00206756056, -0.00143400428, 0.0225517545, 0.00207863399, 0.00856131408, 0.00909283664, -0.00498935441, -0.00660606939, 0.0180717763, 0.0315623321, -0.0232224856, -0.00581511296, 0.0186032988, 0.00592268305, 0.019046234, -0.0325494446, 0.0186918862, -0.0190968569, 0.0106494399, 0.0100546405, 0.024488017, 0.0261205509, -0.00593850203, -0.00229535601, -0.0331315883, 0.00156372122, 0.00997238047, 0.00799815357, 0.00803611893, -0.0303727333, -0.0114340689, -0.0272342172, -0.00681488216, -0.00427749334, -0.00436608028, -0.00607454684, 0.00199637446, 0.0144650145, 0.00547658326, -0.00102033396, 0.00401173206, -0.00153524673, -0.00298032444, -0.00868153945, 0.0112695498, -0.00275252899, -0.00368585763, -0.00571703445, -0.0115922596, -0.0431039706, -0.0227415841, -0.00254055252, -0.00091671868, -0.00839046761, -0.000105394967, -0.0138575593, 0.005489239, -0.0197169669, -0.00888402481, 0.018982958, -0.0110607371, -0.00189671398, -0.0130223092, -0.0100736236, -0.0339668393, 0.000147711151, 0.0111050308, 0.0153002646, -0.0197296217, -0.0013762645, -0.0103267292, -0.019046234, -0.0130349649, -0.0181856733, 0.00804877467, -0.0181223974, -0.0415853336, 0.00897894, 0.0157938208, -0.0265255198, 0.0312079843, -0.0111429961, -0.00100609683, 0.00628335914, 0.010700061, -0.00106383662, 0.0107063884, -0.00417308696, -0.00851702, -0.0136424191, 0.00888402481, -0.0118959872, -0.0256396495, -0.00312902429, 0.00213083718, 0.0027683482, -0.00120304502, -0.00797917, -0.000641465827, -0.0174516663, 0.00811837893, -0.0109405117, -0.0101369, 0.00496087968, -0.0008368321, -0.0162241012, -0.0111050308, -0.010111589, 0.0190842, -0.0128767733, -0.000252908358, -0.0233616941, -0.00236496027, -0.0108709075, -0.00278416718, -0.00335365604, -0.0134399347, 0.0052392967, 0.0120415231, -0.0120478505, 0.0100166742, -0.0103710229, -0.0156293027, -0.0104596103, 0.00418574223, -0.0210963935, 0.0177933592, -0.00943453051, -0.020501595, 0.00148778933, 0.0176668074, 0.00744131953, -0.0102824355, -0.0106241293, 0.00548291113, 0.010307746, 0.000443726662, -0.00741600897, 0.00966232549, -0.000740730844, 0.0127565479, -0.00837148447, -0.0167429689, 0.000457568385, -0.0109088738, -0.00962436, -0.0286263, -0.00114372326, -0.0203750413, 0.00781465136, -0.0153382299, 0.00885871425, -0.0122313527, 0.0182362944, -0.000220083675, 0.00718821352, 0.0342452563, -0.00705533288, -0.0263230354, 0.000668358349, 0.00317015406, -0.00340427714, 0.0307523925, -0.00576132769, 0.00867521204, 0.00314326142, -0.000936492637, -0.017135283, 0.00649849931, 0.00635929126, 0.00490709487, -0.00607454684, -0.0141359763, 0.0154015068, -0.0182616059, -0.0077450471, -0.0252220239, 0.00972560234, -0.0138449045, -0.0148952948, -0.00836515706, -0.0362701043, 0.000676267897, -0.0138069382, -0.00104327174, 0.0133766579, -0.000874798, -0.00499884551, -0.0276138764, -0.0151230898, 0.0259054098, -0.0129400501, 0.0069477628, 0.00875747111, -0.0219189897, 0.0141865974, 0.0172491819, -0.00562211964, 0.00848538242, 0.0111619793, -0.017021386, 0.00523296883, 0.00508743292, 0.00251682382, -0.0158317871, -0.0111429961, 0.00327772414, -0.0252979565, -0.0100293299, 0.0205269065, -0.00061022304, 0.0009736676, -0.0172744915, 0.00178914377, -0.0100989342, -0.009883794, 0.022070853, 0.0221594404, 0.00611884, 0.00795386, -0.0175529085, 0.0195018258, -0.0166290719, -0.00214665616, -0.00160880573, 0.00356246857, -0.0140853552, -0.0120098852, 0.0108455969, 0.0151863666, 0.00326823257, -0.0109341843, 0.00278100348, 0.0396111049, -0.00313693378, -0.0233743489, -0.00709329871, 0.0125287529, 0.0169074889, -0.00277467584, -0.0185779892, -0.000167089587, -0.0050589582, -0.019679, 0.00557782594, -0.00481850747, 0.0184387807, -0.00395794678, -0.0253738873, -0.0440657735, 0.0304739755, 0.00315433485, -0.00387885119, 0.000338727172, 0.00935227051, 0.00510008819, -0.0114277406, 0.0180717763, 0.00499251811, -0.00237919739, 0.00205806899, 0.0211976375, -0.00357512385, -0.00178123428, 0.00532155577, -0.00142134901, -0.000858187908, 0.00760583859, -0.00401805947, 0.0135411769, 0.023703387, 0.000351382478, 0.000403585611, 0.00671996735, 0.0129969986, 0.0174896326, -0.0014632697, 0.01679359, -0.0210710838, -0.00542596215, 0.0255637169, 4.81247662e-05, 0.0111429961, -0.00727047306, -0.00908018183, -0.0139588024, -0.0191348214, -0.00335365604, 0.00466664415, 0.0311067402, 0.00217513065, -0.0102571249, -0.00952944532, 0.0187171977, 0.0050589582, 0.00497353496, 0.00535952207, -0.00479003321, 0.0101558827, 0.0104343, -0.00964967068, 0.00639725709, -0.0225897208, 0.0143637722, -0.00591635518, -0.00842843391, 0.00799815357, -0.00560946437, -0.032676, 0.0160595831, 0.0128388079, -0.00911814719, -0.0195018258, 0.00438822713, 0.0159963071, 0.0106241293, -0.00184134697, -0.0146421883, -0.0248676762, -0.00937758107, 0.00668200152, 0.0229567252, -0.00335365604, 0.000836041116, -0.00359410676, 0.0393833108, 0.0187678188, 0.022298649, -0.00635296339, 0.0146421883, -0.00784628931, 0.0148826391, -0.0136930402, 0.0189576484, -0.0116049154, 0.00165626314, -0.0177807044, 0.00296292338, 0.00120541791, 0.00512539875, 0.000803611882, -0.000919091573, 0.00728312833, 0.0172238704, 0.00856131408, 0.00782097876, 0.00823860429, 0.00756787276, -0.0150851244, 0.00709329871, 0.00613465952, 0.00746663, -0.0350551978, -0.00482799904, 0.00606821897, 0.0141865974, -0.0255510621, 0.0108898906, -0.019767588, -0.0343718082, 0.0235768352, -0.0166417267, 0.00322077516, -0.0154268174, 0.0159583408, -0.0109974602]
|
20 Jan, 2021
|
Fabric.js line cornerStrokeColor Property
20 Jan, 2021
In this article, we are going to see how to set the color of controlling corners of the canvas lines using FabricJS. The canvas line means the line is movable and can be stretched according to requirement. Further, the line can be customized when it comes to initial stroke color, height, width, fill color, or stroke width.
Syntax:
fabric.line({
cornerStrokeColor : string
});
Approach: To make this possible we are going to use a JavaScript library called FabricJS. After importing the library, we will create a canvas block in the body tag which will contain the line. After this, we will initialize instances of Canvas and line provided by FabricJS and set the color of controlling corners of the canvas line using cornerStrokeColor property, and render the line on the Canvas as given below.
Parameters: This function accepts a single parameter as mentioned above and described below:
cornerStrokeColor : It specifies the color of controlling corners of the object. It contains a string value.
Example 1:
HTML
<!DOCTYPE html>
<html>
<head>
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<h1>fabric.js | line cornerStrokeColor property</h1>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000;">
</canvas>
<script>
var canvas = new fabric.Canvas("canvas");
var line = new fabric.Line([150, 10, 220, 150], {
stroke: 'green',
cornerStrokeColor: "red",
transparentCorners: false
});
canvas.add(line);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js Polygon cornerStrokeColor Property/Fabric.js Polyline cornerStrokeColor Property/Fabric.js line cornerStrokeColor Property
|
https://www.geeksforgeeks.org/fabric-js-line-cornerstrokecolor-property/?ref=next_article
|
CSS
|
Fabric.js line cornerStrokeColor Property
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, Fabric.js Polygon cornerStrokeColor Property, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, Fabric.js line cornerStrokeColor Property, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, Fabric.js Polyline cornerStrokeColor Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0154285021, 9.33240517e-05, -0.0148479985, 0.0312698074, 0.0430088863, 0.0193630289, -0.0270127784, 0.0190147255, -0.0278125834, -0.050181333, -0.0147834979, 0.00673384452, -0.0127968844, -0.0276835822, 0.0400160663, 0.0317858085, -0.0417446755, -0.00732724834, -0.00441827904, -0.00973311439, 0.0147834979, 0.00290251919, -0.0348560289, 0.0208852384, -0.00126823969, 0.0305990018, 0.0219172444, 0.0319922119, -0.0449954979, 0.00675964449, 0.0155575033, 0.000918324804, -0.00108602596, -0.0436796881, -0.0193114281, -0.0278641842, 0.00692734588, 0.0649132282, 0.00365394913, 0.00453438, -0.0174667146, -0.0147189973, -0.00829475466, 0.0143706948, 0.0128162345, 8.89904331e-05, -0.0104748691, 0.0152737014, -0.00392162614, -0.0485559218, -0.0163315088, -0.00982986484, 0.0203950349, -0.00531483535, 0.0310634058, 0.0183568206, -0.0057018376, 0.0441182926, -0.0170023125, 0.00523421, -0.00153511018, -0.062436413, -0.0369458459, -0.0200467333, -0.0268063769, -0.00398612628, 0.00585986394, -0.0133386878, -0.0268579777, 0.00792710204, -0.0271417797, 0.0176602174, 0.0214786418, -0.0162025075, -0.0154027017, 0.0204337351, 0.0368684456, 0.00691444566, -0.0654808357, 0.0510069355, 0.00315890834, -0.00513100903, -0.0336176232, 0.0228460506, -0.0209368393, -0.0311408062, 0.0531483516, -0.0362234414, 0.00823025405, 0.0206917375, -0.0128549347, 0.0193501282, 0.0272707809, -0.025116466, -0.0368942432, -0.00950091239, 0.0083850557, -0.0132870879, -0.0108102718, 0.000175662877, 0.00234297803, 0.0424928814, 0.016512109, 0.0135450894, 0.0408158712, -0.0377714485, 0.013467689, 0.0131903375, -0.00166088599, -0.0176860169, 0.0160606056, -0.0269869789, 0.0108296219, 0.0326114148, -0.012487283, 0.0449180976, -0.0191953275, -0.0339788236, 0.0462855063, -0.00850760657, 0.0166282095, -0.0245617628, 0.00121905806, 0.0178795177, -0.0188470241, 0.00806255359, -0.0227815509, -0.0116294269, 0.0255421698, 0.00807545334, -0.0226138495, -0.0288187899, 0.0273223799, 0.0305474028, 0.0437828898, 0.0099717658, -0.0312182065, 0.00218172697, -0.00243489118, 0.00824315473, -0.0239038579, -0.0415382758, -0.00123034569, 0.0492783263, -0.0111263236, 0.0221623462, 0.0350882336, 0.00649519311, -0.00348947314, 0.0270901788, -0.052477546, 0.0043537789, 0.0333338194, -0.00202370086, 0.0510069355, -0.0270901788, -0.021981746, -0.0100943167, 0.0275029819, -0.0409448706, 0.0218527447, 0.00699829636, 0.0150802, 0.0446858965, -0.0355268344, -0.0228718519, 0.0127581842, 0.00186728733, -0.0429572836, 0.0287671909, 0.00218172697, 0.00110295729, 0.0318632089, -0.00499878312, -0.0421058796, -0.0191824269, 0.0166798104, -0.0268837772, 0.0139965927, -0.0220591463, -0.0466983095, 0.00276706833, 0.00236232812, 0.0487365238, -0.0095396135, 0.00347979809, 0.0081528537, 0.018008519, -0.00433765352, -0.0340820253, -0.00416672742, 0.0143448953, 0.0475497134, 0.00850115623, 0.0097137643, 0.00430217851, 0.0151318, -5.49765355e-05, 0.00229299022, 0.000936868717, 0.0191566274, -0.0194404293, -0.0179311186, -0.0372554474, -0.00606304, -0.00817220379, 2.92267559e-05, -0.0558315702, 0.053406354, -0.0058501889, -0.00697249593, 0.0398870632, 0.0269869789, 0.00362814893, 0.00451503, 0.00931386184, -0.00860435702, 0.00810770318, -0.022123646, -0.037178047, 0.0308570042, 0.0287413895, -0.0301604, -0.0218785442, -0.0537159555, -0.0117003778, 0.00163750455, 0.0228331517, -0.000139885306, -0.0488397218, -0.00451180479, -0.00920421071, -0.00496653281, -0.00687574549, 0.0211690404, 0.0293605942, -0.00037289309, 0.000645004271, 0.0106296707, 0.00214141421, 0.0116165271, -0.0186277237, -0.0075143, -0.0161509067, 0.013467689, -0.00291864434, -0.0209884383, -0.0169120114, 0.0259162709, -0.0101652676, -0.0379520506, -0.0455115028, 0.0251680668, -0.000504715834, -0.0231556538, -0.00546318619, -0.0230524521, -0.0428798832, 0.0590823889, 0.0250003655, 0.047291711, 0.0364298411, -0.00634039193, 0.0125904828, -0.0306506027, -0.0141126933, 0.00352494838, -0.0419768766, -0.00964926369, 0.00819800422, -0.00866885763, -0.0390872583, 0.0356558375, -0.0299797989, -0.02408446, 0.0431378856, -0.0127323838, -0.022639649, 0.0205498356, -0.0258001704, -0.0396290608, 0.0137901912, 0.0225235485, 0.021981746, -0.00600498961, -0.0144738955, -0.0113262748, 0.00906876, -0.0275029819, -0.0415640734, -0.0168862119, -0.0280705858, 0.0157510042, -0.0400934666, 0.0169636123, -0.0129065355, 0.0149898995, -0.0188728254, 0.0034281977, -0.0153124016, -0.0290509928, -0.0598563962, -0.024690764, -0.0204079356, 0.0144351954, 0.0281479862, 0.0347270295, -0.00197048811, 0.0253357682, 0.0236587562, 0.0193372276, -0.02408446, -0.0252583679, -0.0199306309, 0.0044924547, -0.006804795, 0.049381528, -7.15047718e-05, -0.0101459175, 0.0113133751, -0.0286897905, -0.0123260319, -0.00921066105, 0.0156994034, 0.0351398326, -0.0169894118, -0.00938481186, -0.021697944, -0.0135966903, 0.0139191924, -0.0397322625, -0.0119454786, 0.0100427167, 0.0174538158, 0.00275416812, 0.00387002551, -0.0167830102, -0.0233878549, -0.0278641842, 0.0289477911, 0.0171958134, 0.0155446026, -0.015622003, -0.00765620079, 0.0351398326, -0.0388550572, 0.00326855923, 0.0254518688, 0.0604756, 0.0587727875, 0.000834474282, 0.0340820253, -0.00917196088, 0.00496330764, 0.0118164783, -0.0166540109, -0.00341207255, -0.0372554474, -0.0666160434, 0.0080432035, 0.0172603149, 0.0248326641, 0.0317600109, 0.00594048947, 0.0480399169, -0.0418220758, -0.0132870879, 0.0127710849, -0.0160735063, -0.0147963976, -0.00743044913, -0.0335402228, -0.0212980416, -0.0143706948, -0.0156994034, -0.0244972613, -0.000136660281, -0.0122163808, -0.0401450656, 0.00560186198, -0.0464145057, 0.0271159802, 0.00784970168, 0.0209755395, 0.0268837772, 0.0499749295, -0.0157897044, -0.00598563952, 0.0295927953, -0.0164476093, -0.0405320674, 0.0110295732, 0.0558831692, -0.0132483877, 0.0269611776, -0.0203821342, -0.00728854816, -0.0100040166, 0.0238135569, -0.045279298, -0.0335918218, -0.0286381897, -0.00616301596, -0.0364556424, 0.00792710204, -0.00376682496, -0.0181762204, -0.00630814163, -0.00635329215, -0.0200983323, -0.0115842763, -0.00995886605, 0.028199587, -0.023529755, 0.032224413, 0.028251186, 0.0235813558, 0.0381842516, -0.00497943303, 0.0229363516, 0.0652228296, -0.019221127, -0.0282769874, -0.00790130254, 0.00132225873, -0.0344432294, -0.0194146279, -0.0195178296, -0.00529548479, 0.0101330169, -0.101601072, 0.00146577216, 0.0113907754, -0.000272917416, 0.0293089934, -0.00557283685, 0.0245359614, 0.00998466648, 0.0421316773, 0.0395774618, 0.0103329681, -0.0065145432, 0.0268321782, -0.0242650602, -0.0235684551, 0.0397838615, -0.0366878435, -0.0100233667, 0.0245230626, 0.00964281335, -0.0113585247, -0.00665644417, -0.0426218808, -0.0118035777, -0.0223300476, -0.0238006581, 0.0350366309, 0.00355719845, 0.0207046364, 0.0155188022, -0.0319922119, -0.0254002679, -0.0076175, 0.0203176346, 0.0243553612, -0.0103910184, -0.0239554588, -0.0153253013, 0.00738529861, 0.00136579655, -0.000944931235, -0.00165927352, 0.00818510447, 0.0481431186, 0.00773360115, 0.0344174281, -0.00857210625, -0.00913971, 0.0305732023, -0.0440666899, 0.0195823293, -0.0256066695, -0.0110811731, 0.0108554214, 0.00560186198, -0.0131451869, 0.0102104172, -0.0296443962, -0.021607643, -0.00337659731, 0.0646552294, 0.0108102718, -0.0102491174, -0.00952671282, -0.00993951596, 0.0365072414, 0.000833668, -0.0496395268, 0.0337208249, -0.0257872697, 0.0136353904, 0.0380552523, 0.0217237435, 0.0228589512, 0.0266257767, 0.0200338326, -0.0222010463, 0.0161638074, -0.0147705972, 0.000933643663, -0.0182923209, 0.0209368393, -0.0212722402, 0.0246520638, -0.0132483877, -0.0168604124, 0.0349076316, 0.0114939762, -0.0223429482, -0.00684994552, 0.00387002551, -0.0340562239, 0.00193017523, -0.0147447977, 0.00447955448, 0.0349592306, 0.00937191211, -0.019079227, 0.0109328227, -0.0034281977, 0.00226880261, 0.00605336484, 0.0141642941, 0.0195565298, 0.0105393697, -0.0210787393, -0.0169894118, -0.0141384937, 0.0148608983, 0.00276061823, -0.0477819145, -0.0153253013, -0.0158413053, 0.00331532187, -0.00514713395, 0.00377327506, -0.00416027755, 0.0246262625, -0.00770135084, 0.00223977724, -0.0424928814, 0.0280705858, 0.00245746621, -0.00947511289, 0.0154930027, 0.0128162345, -0.00149157236, -0.0361460373, -0.0379004516, 0.0108812219, 0.0244456623, 0.0218398441, 0.0313730091, 0.03320482, -0.000735708, -0.0380036496, -0.00878495816, -0.00797225256, -0.0482979193, -0.0119067784, 0.00342174759, -0.0344432294, 0.00414092746, 0.026703177, -0.0121905804, 0.00297991978, 0.0240973588, -0.0034539979, 0.0257872697, 0.0195565298, -0.00480850693, -0.0202402342, 0.00494073285, 0.00953316316, -0.0114036752, 0.0282769874, -0.00853985641, 0.00315084588, -0.0611464046, -0.0258388706, -0.0122228311, 0.0159058049, -0.0227428507, 0.00236555305, -0.0268579777, 0.0437054895, 0.0328436159, -0.0196339302, 0.0105135692, -0.0158155039, 0.0255937688, 0.0293605942, -0.00606949, 0.0102684675, -0.0201886334, -0.0293347947, 0.0106425704, 0.0270643793, 0.00747559965, 0.00957831368, 0.0168088116, -0.0125775831, 0.00252680411, -0.0234394558, -0.0236071553, -0.0291799922, 0.0436796881, 0.0200080331, 0.00844955631, -0.0218140446, -0.0238909572, -0.00707569672, 0.0365330428, -0.00737884874, 0.0313988067, 0.00190760009, -0.0158800054, -0.0356816351, 0.0122357309, -0.041202873, -0.0372038446, -0.0175312161, -0.00757235, 0.0119196791, -0.00213012658, 0.0115842763, 0.00167378609, 0.0275029819, -0.0187567249, -0.019504929, -0.00241554086, 0.00784325227, 0.01824072, 0.0327662155, 0.0130613362, 0.00837860536, -0.0396806635, 0.0255937688, 0.0190276261, 0.0111908242, -0.0315794088, 0.00293154432, -0.0254647676, 0.0126033835, 0.0035991238, 0.0036055739, 0.011455276, 0.0423638783, -0.0179827195, -0.0346754305, 0.0177763179, -0.0118035777, -0.00071393908, -0.00793355238, -8.22884322e-05, 0.0175570156, 0.0465951078, 0.0294121951, -0.00275900564, 0.0213109404, -0.0182278212, -0.0023316904, -0.00330242189, -0.00280576851, 0.0103716683, 0.00533418544, -0.0316052102, 0.0605788, 0.0240457598, 0.0167959109, -0.00893975887, -0.0358106382, 0.00374102476, -0.0140739931, -2.85716742e-05, -0.0103845689, -0.0136224898, -0.0008933309, -0.00456985505, -0.00884300843, 0.0163186081, -0.0150543991, 0.0154285021, 0.00135450892, 0.0119841788, 0.010010466, 0.0143706948, -0.0440408923, -0.00605981518, -0.0120228799, 0.00182536209, -0.0112553248, -0.0329210162, 0.00861080736, -0.00651776791, 0.051393941, -0.0198661312, 0.0108167212, -0.0207304377, -0.014357795, 0.00286704395, 0.0208594371, -0.00720469747, -5.09200618e-05, -0.0168217104, 0.00042368719, 0.0275029819, -0.0232846532, 0.0126162833, 0.0239554588, 0.00687574549, -0.011364975, 0.0256840698, -0.0167572107, 0.0102942679, 0.00618881593, 0.0049858829, -0.0125775831, 0.0215560421, -0.000761911273, 0.0286381897, -0.00686929561, -0.0200596321, -0.00739819882, -0.0335918218, 0.0296443962, 0.0118874284, 0.016512109, 0.00543738576, 0.00415382767, -0.0347786285, -0.0221107453, -0.0109070223, -0.00857210625, -0.00637586694, 0.00202531344, -0.0217753444, 0.00526645966, 0.0219430458, 0.00511165895, 0.000252156344, -0.022123646, 0.0464145057, -0.0214141421, 0.014357795, -0.00708859693, -0.0198919307, 0.0109070223, 0.0180730186, 0.0229105521, 0.00158832304, 0.0390614569, -0.0303152, 0.0383390523, 0.0356558375, 0.0162412077, -0.0216334425, -0.0148995984, 0.0152092008, 0.00136982778, -0.0134418886, -0.0078948522, -0.00697249593, 0.0083850557, -0.000354752352, 0.0111005232, 0.0185890235, -0.0302378, -0.00911391061, 0.012255081, 0.00115455769, 0.0271675792, 0.0417704768, 0.00661774399, -0.00663064374, 0.0172732137, -0.0139191924, -0.018614823, 0.0186019223, 0.0141384937, -0.00280576851, 0.0248326641, 0.00428282842, 0.0194920283, 0.00574376294, -0.0212980416, -0.0194017291, 0.00823025405, -0.00801095273, -0.0375134498, -0.0388550572, -0.0463629067, 0.0156349037, 0.00481818197, 0.0427508838, -0.0273223799, -0.0185761228, -0.00214302656, -0.0155446026, -0.00852050632, 0.00488268211, -0.0271417797, -0.00148350978, -0.000205494332, 0.000620010367, -0.0108167212, 0.0268063769, 0.0209755395, -0.00987501536, 0.021697944, -0.0213238411, -0.0255034678, 0.0189631246, -0.0183826219, -0.0648616254, 0.0507231355, 0.0148092983, -0.00184632465, 0.013467689, 0.0131774368, -0.0230395515, 0.0172474142, -0.0496911295, 0.0399128646, 0.00843665563, 0.00455373, 0.0294895954, 0.0280447863, 0.0131064868, 0.00338627235, 0.0105974199, 0.0252970681, -0.0117584281, -0.00937191211, 0.00592436409, 0.032172814, -0.0156478044, 0.0420026779, 0.0231556538, -0.0181504209, 0.0208594371, 0.0249100644, 0.0043537789, 0.0364040397, 0.041151274, 0.0227944516, -0.00519228447, 0.0101781674, -0.00887525827, -0.0449696966, -0.00725629786, 0.00826250482, -0.00565991225, 0.0170668121, 0.0264193751, -0.042286478, -0.00270418031, 0.0154285021, -0.0176989175, 0.00892685913, -0.0206401367, -0.016086407, 0.0197242312, -0.00272030546, 0.00213980163, -0.0257098693, -0.00941061229, 0.00257034204, 0.00335724722, 0.015015699, 0.0340562239, -0.0357848369, -0.0110424729, -0.000853018137, -0.00118277653, 0.00853340607, -0.0160348061, 0.0101523669, 0.000967506377, -0.047240112, -0.0154543025, 0.00307828281, 0.0191050265, -0.0308828037, 0.0269869789, 0.062384814, 0.0115584768, -0.0015270476, -0.012861385, -0.000508747122, 0.00769490097, 0.00261710491, 0.0206401367, -0.00542126084, 0.0283801872, -0.0193501282, 0.0197887309, 0.00744334934, 0.000555509934, 0.010313618, 0.0317342095, -0.000911874755, 0.0103523182, 0.0093912622, 0.0412286744, 0.0124034323, -0.0123324813, 0.0257485695, -0.00316697103, 0.00545673631, 0.00422477815, -0.0140352929, -0.00795290247, 0.0221623462, -0.0174538158, 0.0012674334, -0.0157897044, -0.0197887309, -0.0330758169, 0.00579858851, 0.00874625798, 0.0212464407, 0.0383390523, -0.0106490208, -0.00477948179, -0.010687721, -0.0246391632, 0.00497943303, -0.0343400277, -0.00470530614, 0.0265741758, 0.015996106, -0.00916551054, -0.0229879525, 0.0157639049, -0.0462339073, 0.00510843378, -0.0148350978, -0.0156607032, 0.0160735063, 0.00712729711, 0.0291799922, 0.0353978351, -0.0259420723, 0.00552123645, 0.00734014856, -0.00772715127, 0.000511569029, 0.0159445051, -0.00294766948, 0.0381326526, -0.00389905088, 0.0126936836, 0.011739078, 0.0184471216, -0.0125840334, -0.0116358772, -0.0171958134, 0.0169894118, -0.00552446162, 0.0215818435, 0.00992016587, -0.0155962035, 0.0137901912, -0.00417962763, -0.00279770605, 0.0103329681, -0.000463596807, -0.0217237435, -0.0166153107, 0.0271159802, 0.0160348061, 0.00910101, 0.0202144329, 0.0316568092, 0.0199306309, 0.00110295729, -0.000978794, -0.00614689058, 0.0390356593, -0.000983631471, -0.0133515885, -0.0311408062, 0.00407642685, 0.00515035912, -0.00983631518, 0.0338498242, 0.0202918351, -0.0405836701, -0.00439570425, 0.00289123156, 0.00182697456, 0.0094557628, -0.00817220379, 0.00745624909, 0.0444794931, -0.015106, 0.00302668242, -0.0041506025, 0.0228589512, -0.0488655232, 0.00471820636, 0.0204724353, -0.00915906, 0.0127646346, 0.0310118049, 0.0131387366, 0.00340562244, 0.000684107654, 0.0267805774, 0.0106683709, -0.00474078115, 0.0108167212, -0.0158155039, -0.00394097622, -0.00682414509, -0.00570506277, 0.0381842516, 0.00391840097, -0.0218656454, -0.00228331517, 0.000532531645, -0.00868820772, -0.0235426556, -0.00198177551, -0.0119325789, -0.0140610933, -0.0309344046, -0.0124034323, -0.0204079356, 0.000189973915, -0.007553, -0.0027993184, -0.0104103684, -0.0173764154, 0.00284285634, -0.00683059497, -0.0255292691, -0.00188502495, -0.000157824485, -0.00378295, 0.015235, 0.0114230253, -0.00961701386, 0.0251293667, -0.00379262515, -0.0147447977, -0.0117906779, -0.0118616289, -0.00587598886, -0.0093912622, -0.00125292083, -0.00145851588, -0.0253357682, -0.022033345, 0.0280705858, 0.00389260077, 0.00148754113, -0.000608722796, 0.0129710361, -0.0130161857, 0.0329468176, 0.0113133751, -0.00308312033, -0.00482140668, -0.0058534136, -0.00231072772, 0.0132999877, 0.00175924913, -0.0107651213, 0.0243682619, -0.00486010732, 0.0301604, 0.00384100038, 7.50825275e-05, -0.00439247908, -0.00271063042, -0.0105974199, -0.0079787029, 0.00972666405, -0.0219043456, 0.0168217104, 0.00391840097, -0.0156736039, 0.0223171469, -0.0300829988, -0.0350882336, 0.0329210162, -0.0117197279, -0.0215689428, -0.0244714618, -0.00893975887, -0.0379520506, 0.00699829636, 0.00524710957, 0.0116165271, -0.0280447863, 0.00805610325, 0.0128162345, 0.00546318619, 0.0385454558, 0.00150527875, -0.00142707198, 0.00994596537, -0.0244972613, 0.0293605942, -0.0240328591, -0.0103845689, 0.0156349037, -0.00725629786, -0.00744979922, 0.00570828794, -0.0324308127, -0.00569216255, -0.0151576, 0.0315278098, 0.0157252047, 0.0268321782, 0.00301216985, 0.0245875623, 0.00450535491, 0.00503425812, 0.0228847507, 0.0151576, -0.0105135692, 0.0188599247, -0.00238006585, -0.0039796764, 0.0021785018, 0.0146802971, -0.0143061941, -0.00128194597, -0.00292348186, -0.0299539976, 0.0046085557, -0.0276835822, -0.0139062917, -0.00552446162, 0.00232362794, -0.0357074365, 0.00349269807, 0.0276835822, 0.00358299864, 0.00207207631, -0.0242392607, 0.029695997, -0.0294379946, -0.0030540952, -0.0111263236, -0.0269095786, -0.0118229277, 0.0203434341, -0.00227686507, -0.00853340607, 0.0238909572, 0.00699829636, 0.0221752468, 0.0188470241, 0.0308054034, 0.0305216014, -0.00663064374, -0.0558831692, -0.0109650725, -0.0137901912, 0.0248455647, 0.00341207255, 0.0013561215, 0.028251186, -0.0109844226, -0.0190921258, 0.00280093099, 0.00868175738, 0.0281737857, -0.0268837772, -0.020627236, -0.0170410126, 0.0221881475, -0.0296701957, 0.0167959109, -0.0343142264, 0.0191953275, 0.00855275616, -0.0112746749, -0.00261226739, -0.00395065127, -0.00346689788, -0.0150802, -0.0193501282, 0.0163573083, 0.02272995, 0.0172345135, -0.0159316044, -0.0145512959, 0.0122292805, -0.00564378733, 0.0141513934, 0.0206143372, -0.0136482902, 0.0129194353, -0.0162412077, -0.00129162101, -0.0105329193, 0.0189760253, 0.0188341253, -0.0047504562, -0.00126420835, -0.0318374112, -0.00770780118, -0.0120551297, -0.000454728, 0.031244006, -0.00348302303, -0.00796580222, -0.0168088116, -0.00131419615, 0.0271933805, -0.0163057074, 0.00968796387, 0.012790435, 0.00605014, 0.00964281335, -0.0103910184, 0.0148221981, 0.0084689064, -0.0126678841, -0.0124808326, -0.0155446026, 0.0164992083, 0.00394097622, -0.013377388, -0.00542448601, 0.0204208344, -0.00154478522, -0.0182020199, -0.0079787029, -0.00376682496, -0.00528258504, -0.00864950754, -0.0186406225, 0.00356042362, -0.00168829865, 0.0143835954, 0.0172345135, 0.0117003778, -0.0144093949, 0.0183052216, 0.000811899139, 0.0228718519, 0.0125775831, 0.00750784948, -0.0162541084, 0.00336369732, 0.000927999907, -0.00797225256, 0.00662419386, 0.0129000852, -0.00621139118, 0.00191888772, 0.00496975798, 0.00491493242, -0.0161509067, 0.0121067297, 0.0258904714, 0.0169120114, -0.0447374955, 0.0172861144, -0.0100491662, 0.00654034317, 0.00944286212, -0.0363782421, 0.0118164783, -0.0449180976, -0.0158929043, -0.0244843625, -0.0131064868, 0.000511165883, -0.00231717783, -0.024600463, 0.00656291842, 0.00100378785, 0.0094815623, 0.0144351954, 0.00334757217, -0.00984921493, -0.0335918218, -0.00536643527, 0.0122808814, 0.00848825648, 0.01674431, -0.0159703065, 0.0155059025, -0.0202273335, 0.0141126933, -0.0213625412, -0.00949446298, 0.0151576, 0.00267031766, 0.00859790668, -0.0197758302, 0.00263322983, 0.0204595346, 0.0102684675, -0.00432475377, -0.00251067919, -0.00910746, 0.00708214706, -0.00308957044, -0.0110037727, 0.0160606056, -0.0164605081, 0.00597596448, 0.000184330129, -0.00710794702, 0.00799805298, 0.00276545575, 0.00978471432, 0.0114681758, -0.0246778633, 0.00724339811, 0.01973713, -0.0251809657, 0.0144093949, -0.0103845689, 0.0135837896, -0.0280447863, 0.00363459904, -0.00514713395, 0.00570828794, 0.0298249964, 0.0150414994, 0.0175957158, 0.010403919, -9.5994772e-05, 0.0150027992, -0.0250519663, -0.0224332493, 0.00911391061, 0.0213883407, -0.0175957158, 0.0170023125, -0.00899780914, -0.0150931, 0.0235684551, -0.0166540109, -0.0222655479, 0.012255081, -0.0244198609, -0.00523098465, 0.00401192671, 0.00607271539, -0.00362814893, -0.0320696123, 0.00598886469, -0.0175183155, -0.00773360115, -0.00494073285, -0.0187180247, -0.0276061818, 0.0236329567, 0.0175699163, 0.0102620181, 0.00125533959, 0.0114939762, 0.019130826, -0.0178537183, -0.0403514653, 0.00330564682, -0.0217366442, -0.0178666189, 0.0111134239, -0.0184600223, -0.00455050496, 0.0135966903, -0.0129774855, 0.0324824154, -0.00583728869, 0.00883010868, -0.011364975, -0.0028509188, -0.00353462342, -0.00961701386, -0.0228718519, -0.00128517102, 0.019685531, 0.00686284527, 0.0093912622, 0.011951929, 0.00052930665, -0.00294283195, -0.0119390292, -0.0147576975, -0.0220720451, -0.013235488, -0.00632104184, 0.0127710849, 0.0248584636, -0.0395000614, -4.75942616e-05, -0.0193114281, -0.000157622912, -0.00695314584, -0.00999111589, -0.0208723377, -0.000807867851, -0.00707569672, -0.0057018376, 0.00243005366, -0.0197887309, -0.0255550686, -0.00551156141, 0.00486978237, 0.0315020084, -0.00535676, 0.0243295617, -0.000369869638, -0.00191566267, -0.00148109102, 0.00138514664, 0.00562121207, -0.0300055984, 0.00664354395, 0.0235813558, 0.0130677866, 0.00105458195, -0.000967506377, -0.0150931, 0.00559863681, -0.0163702089, 0.0434474871, -0.009565413, -0.0027993184, -0.000509553356, 0.00166572351, -0.0153511018, -0.000472465617, -0.0379778519, -0.00355397351, 0.0102813682, -0.0168346111, -0.0312956087, 0.0102684675, -0.0148092983, 0.0277867839, 0.0109844226, 0.00715954741, 0.019130826, -0.0134547893, 0.023194354, 0.00757235, 0.00625331653, -0.00358622381, -0.00295573194, -0.006688694, -0.0238264576, 0.0108554214, 0.00198822562, 0.0251422655, -0.00336692226, -0.00946866255, 0.00986856502, 0.0156091033, 0.0110682733, 0.0132225873, 0.0305990018, 0.00952671282, 0.0206659362, -0.00137869664, -0.0289993919, 0.00796580222, -0.0122357309, 6.17289261e-05, -0.0204208344, 0.00413125241, -0.00894620921, -0.0114294756, -0.00410222728, 0.0353204347, 0.0244069621, -0.0170797128, -0.0101330169, 0.0204595346, -0.00590178883, -0.00105941948, -0.0196339302, 0.0130355358, 0.00560831232, 0.00897201, 0.0120035298, -0.00393775105, 0.00801095273, -0.00101668795, 0.0605788, 0.00437312899, 0.0111585734, 0.00400547637, 0.000571635, 0.00282189366, -0.00703699654, -0.0065693683, -0.0306248032, -0.0190147255, -0.00459243031, 0.0151318, 0.0102104172, 0.0255034678, 0.00485688215, -0.0183568206, 0.0102362176, -0.0192082264, -0.0183181204, -0.00307344529, -0.0179182179, -0.00908166, 0.0312698074, -0.00595338922, -0.0157510042, 0.0116810277, -0.0021607643, -0.0117455274, -0.0178666189, -0.0264967754, -0.000677657605, -0.00865595695, -0.02422636, -0.00794000272, -0.0142545942, 0.0194404293, 0.0122744311, 0.0113262748, -0.0156736039, 0.00981051475, -0.01061677, 0.000403530779, 0.0133515885, 0.0146673974, -0.00963636395, 0.00221558963, 0.0141900936, -0.00119970797, 0.000919937331, 0.00927516166, 0.0147060975, -0.000707489031, -0.0299539976, 0.00112633873, -0.000946543762, -0.0104426192, 0.00955896359, 0.00106264453, -0.0101588173, 0.00479238154, 2.15799282e-05, 0.00796580222, 0.00406030193, -0.0108425217, 0.00214947667, 0.00995886605, 0.000537772314, -0.0357332379, -0.0037765, 2.81937409e-05, 0.0289219916, -0.00449890457, 0.000954606337, -0.00210916391, -0.0102233179, -0.0150543991, 0.0271159802, -0.0102297673, 0.00134564016, 0.0144480951, -0.0040312768, 0.0288445912, 0.00426992821, 0.0119583793, -0.00712084724, 0.0121647809, 0.0319664106, 0.016976513, 0.00173506152, -0.000735708, 0.0220204461, 0.00930096116, -0.000252962607, 0.0180730186, -0.0212464407, -0.0135708898, 0.0132870879, 0.00868820772, -0.00333467196, 0.0154285021, 0.0113262748, 0.00338304741, -0.0110811731, 0.0222655479, 0.00481818197, 0.0190921258, -0.00605014, -0.00830765534, -0.0261226725, 0.00930096116, 0.0165250096, -0.00698539615, -0.00250422908, -0.00193985028, -0.00924936123, 0.00729499804, 0.00300894491, -0.00649841782, 0.0187825244, -0.0323534124, -0.0075659, -0.00582761364, 0.00166894856, 0.0129581355, 0.0335144214, -0.00118035777, -0.00921066105, 0.0170539133, -0.0103007182, -0.0117519777, 0.00661774399, -0.00720469747, 0.00724984799, -0.0146673974, 0.0165508091, 0.0295411944, -0.020201534, 0.0327662155, -0.0117906779, 0.00698539615, 0.0108876722, 0.0305990018, -0.00509230886, -0.0012424395, 0.0253744684, -0.0218011439, 0.00777230132, -0.006688694, -0.0278641842, 0.0185374226, 0.0183310211, 0.0094557628, 0.00322985882, 0.00676609483, -0.0151447, 0.00477625662, -0.00561476219, 0.00737884874, 0.0288961902, 0.0168346111, 0.00254776678, 0.0048665572, 0.00359589886, 0.00668224413, -0.00134483387, -0.0085592065, -0.00133032131, 0.00384745048, 0.0271159802, 0.0136611899, 0.0250777658, 0.00199145055, -0.00116665149, -0.00941061229, -0.0124743823, -0.00860435702, -0.0247939639, -0.015622003, -0.00442472938, 0.0054760864, 0.00857855659, -0.000555106788, -0.00494395755, 0.00924291089, -0.0105845202, -0.000449487357, 0.0123518314, -0.00828830525, -0.00715309707, -0.0339530259, -0.0109392721, -0.0237361565, -0.00902361, -0.00237845327, -0.00177214923, -0.0203047339, -0.0109005719, 0.0358106382, 0.00885590818, 0.0131451869, 0.00417640246, -0.0196468309, -0.0180859193, 0.0296701957, 0.00180923694, 0.0293605942, -0.000168205021, -0.020717537, -0.00972021464, 0.000985244, 0.0186793227, -0.0120680295, 0.00339917256, 0.00657904334, -0.0156478044, 0.00202370086, -0.00939771254, 0.0143835954, -0.0164863095, -0.00456018, 0.0260323714, 0.0387260579, 0.0298765972, -0.0320696123, -0.00470208097, -0.00350882323, -0.000712326611, 0.00658871839, 0.00828830525, -0.0128484853, 0.00196565059, 0.0318890102, 0.00697894627, 0.00761105027, -0.00320405862, -0.0235684551, 0.0107973712, -0.00594048947, 0.00200435077, 0.00557928672, 0.0110424729, -0.0104297185, 0.00853985641, 0.0130548859, 0.0135321897, -0.00460210536, -0.0190276261, 0.0227815509, 0.0105071198, -0.00605336484, -0.00741754891, -0.01809882, 0.00219623954, -0.0188212246, -0.013003286, -0.00292509445, 0.00867530704, -0.000119426571, 0.00832700543, 0.00610174052, 0.0197629314, -0.0252196677, 0.0216463432, -0.00465370575, 0.0182665214, 0.0192727279, 0.0086430572, 0.0177763179, -0.0380810536, 0.0111714741, 0.0179182179, -0.00331854704, 0.0297217965, -0.00206562621, -0.00155446026, -0.00404095184, -0.00868175738, 0.0195436291, 0.0141513934, -0.00362814893, 0.0223816484, -0.0140352929, 0.0110102231, -0.0343142264, -0.0286123883, 0.0017044238, 0.00889460929, -0.00277835596, -0.00635329215, -0.00264613, 0.0167959109, 0.00210755155, -0.0081270542, 0.0133644883, 0.0273997821, 0.0035991238, 0.0286639892, 0.012203481, 0.00738529861, 0.0172474142, 0.0219430458, 0.00679189479, -0.00823025405, -0.0110166725, -0.000137869662, -0.0131838871, -0.00177537429, -0.0124098817, 0.00451503, 0.00383455027, -0.0186793227, -0.00195597555, 0.0016721735, 0.0020156384, 0.00837215502, -0.00901071, 0.0119841788, 0.00615656562, 0.00715309707, 0.0228202511, -0.0236071553, 0.00748204952, -0.00824315473, -0.024510162, -0.00892685913, -0.0110489232, 0.00728209829, 0.011971279, 0.00112633873, -0.0194146279, -2.23357929e-05, -0.000599854, 0.0123518314, 0.0132612875, 0.00183503714, -0.0187954251, 0.0142803947, -0.00533096027, -0.0117906779, -0.00788195245, -0.0146802971, -0.00392485084, -0.000304562942, 0.0041506025, -0.00686929561, 0.0081528537, -0.00884300843, -0.0130226361, 0.00242682849, -0.0203305352, -0.00474078115, -0.00697894627, 0.00337337237, 0.0532515533, 0.00625009136, -0.00800450332, -0.00444730464, -0.00946866255, 0.000360799255, 0.00290413178, 0.0118229277, -0.00346689788, -0.0035991238, -0.00819800422, -0.00683704531, -3.75160671e-05, -0.000692976464, 0.016512109, 0.00224622735, 0.00567603763, 0.0037184495, 0.0027557807, 0.0078948522, -0.000963475148, 0.0161509067, -0.0115004256, 0.0138159916, -0.0125453332, 0.00503748329, 0.00887525827, 0.00632749172, -0.00191888772, -0.0175312161, -0.0049858829, 0.0198274311, 0.0138030909, 0.0108360713, 0.0415124744, 0.00171248638, 0.0103845689, 0.0259807725, -0.0138288913, -0.00900425948, -0.00134725263, 0.0371522456, 0.00266870507, -0.0105200196, -0.0327146165, -0.012558233, -0.00651776791, -0.0152737014, 0.00690799579, -0.00200435077, 0.00429572864, 0.0141900936, -0.0109973224, 0.00150527875, -0.0282769874, 0.00679834513, -0.00158912921, -0.0075788, -0.00106586958, -0.014125593, -4.62589e-05, 0.00884300843, -0.0044924547, 0.00656291842, -0.0232072528, 0.00588566391, 0.0034281977, 0.0147576975, 0.0105522694, -0.000544222363, 0.00113601377, -0.00803030282, -0.0104684196, -0.00775295123, -0.0265225749, -0.00228976505, 0.0278125834, -0.0343916267, 0.00792065263, -0.0054470608, -0.0154156024, -0.00784325227, -0.00355719845, 0.00650809286, 0.0266773757, 0.00816575438, 0.00190598762, -0.0050697336, -0.00170603627, 0.0087075578, -0.00924291089, -0.0106425704, -0.00316697103, -0.00903006, 0.00873980764, 0.0198919307, -0.00233330298, 0.000621219748, 0.00178182428, -0.0194791295, -0.00326372148, -0.0335918218, 0.0147834979, 0.0107199708, -0.0205627363, 0.0156091033, 0.00234136544, -0.0125904828, 0.0227428507, -0.0217882432, -0.0118680783, -0.00123840815, -0.00628879154, 0.0163315088, -0.00917841, -0.00118600158, 0.012558233, 0.0145254964, -0.0130806863, -0.0102942679, 0.00962346327, -0.0217753444, -0.0226267502, -0.0217108428, -0.0126098339, -0.0166411102, 0.00485688215, 0.0209755395, -0.00412480207, 0.00647584302, 0.0131129371, 0.0167701114, 0.0170152131, -0.00234136544, 0.0308054034, -0.00278641842, -0.0121260798, 0.0203047339, 0.00769490097, -0.00473755645, -0.000236837499, 0.00252680411, 0.0165379085, -0.00373779982, -0.0225364491, 0.0126678841, -0.0107264211, 0.00647261785, -0.00393452588, 0.00525033474, 0.00234136544, -0.000827218, 0.0119132288, -0.0390872583, -0.00852695666, 0.0119841788, 0.0131838871, 0.0150027992, -0.00821735431, -0.00794645213, 0.0215689428, 0.00188179989, 0.000131520399, -0.00447633, 0.00872690789, -0.0172861144, -0.0226525497, -0.0328694172, -0.00571473781, -0.00686284527, -0.0230911523, 0.0437054895, 0.00373457465, 0.0241102595, 0.016976513, 0.0218656454, 0.014873798, -0.00842375588, 0.00627266662, 0.00918486062, -0.0138675915, 0.0105522694, -0.0296185967, -0.00548253627, -0.0169894118, 0.00943641271, -0.0139965927, 0.0101201171, -0.00281544356, 0.0150286, -0.01204223, -0.0133644883, -0.0105393697, 0.0193630289, 0.0208723377, -0.00769490097, -0.000848986849, -0.0113907754, 0.00690799579, 0.00487945741, 0.0186406225, -0.00167701114, -0.00877850782, -0.00742399925, 0.006688694, -0.0119390292, -0.00248004147, -0.00977826491, -0.00782390218, -0.0111585734, 0.019504929, -0.021143239, 0.00219785213, -0.0110940738, 0.0236329567, -0.0201499332, -0.00209465134, 0.00366684934, -0.00754655, -0.0170023125, 0.00073812675, -0.0106103206, -0.0197113305, -0.000929612375, 0.0143448953, 0.00133919, 0.00546963606, 0.00890750904, -0.0105909696, 0.00895266, 0.0042054276, 0.00698539615, -0.0152737014, -0.0113391746, -0.00495685777, 0.0146415969, -0.0324566141, 0.0115197757, 0.00240102829, 0.0140481927, 0.00215108925, 0.00333467196, 0.0113133751, 0.0226912498, -0.00973956473, 0.00377327506, -0.00364427408, 0.0108038215, 0.000854630664, -0.0171829145, 0.0153898019, 0.0111327739, -0.0209884383, 0.00201241323, -0.0123066818, -0.00294928206, 0.0107715717, -0.0184600223, -0.0245230626, 0.0121905804, -0.00965571404, 0.0160735063, 0.00201402581, -0.0271417797, -0.024136059, 0.0237877574, 0.019221127, -0.00722404756, 0.0197758302, 0.00650164299, -0.00485365698, -0.00740464916, 0.000436184142, 0.0264451746, 0.0062791165, -0.00603724, -0.0122357309, 0.00961701386, -0.00682414509, -0.00929451175, -0.0117648775, -0.00558896177, 0.0186664239, 0.00626299158, 0.00211400143, -0.00511165895, 0.00708859693, -0.00191243761, 0.00566958729, 0.000801417802, -0.00543093588, 0.0049536326, -0.0109521728, -0.0115649262, -0.00542771071, -0.00464080554, 0.0130161857, 0.0264451746, 0.0230395515, 0.0175312161, 0.00357654854, 0.0470595099, -0.0198016316, -0.00762395049, -0.00394420093, -0.0258904714, 0.00341529748, 0.0147060975, -0.00236071553, 0.00231395289, -0.0143835954, -0.0194791295, -0.00383132533, -0.0152995009, 0.017208714, -0.00436345395, 0.00106103206, 0.00294928206, -0.0059372643, -0.000545834831, -0.0135450894, 0.0125775831, 0.000848180614, 0.0092235608, 0.0059372643, 0.00537611078, 0.0180343185, 0.00608239044, -0.0235942565, -0.0111392234, 0.00989436544, 0.0130806863, 0.015235, -0.0111392234, 0.0164347086, -0.00994596537, 0.0137127908, -0.0407642685, -0.0146157965, -0.00559218694, -0.00438602921, 0.0133902887, -0.02558087, -0.015106, 0.00277996832, 0.00592758926, 0.00144400331, 0.0184342228, 0.00965571404, -0.00293315691, 0.0061081904, 0.0120615801, 0.00499555795, 0.0314762071, -0.00343464781, 0.011152124, 0.00666289404, -0.0184600223, 0.014215894, 0.0137385912, -0.0219946448, 0.00549221132, 0.00192211266, 0.00790130254, -0.0168604124, -0.00641134242, -0.00870110746, 0.00499555795, 0.00629524142, -0.0186922234, -0.0168733113, 0.00828185491, 0.0257743709, 0.011435926, -0.00883655809, -0.00935256202, 0.00981696509, 0.00710794702, -0.00902361, 0.00555671193, -0.00180278695, 0.00641456759, 0.000202874, 0.00135854026, 8.1331e-05, -0.0017108738, -0.00861725677, 0.0140481927, -0.00140852807, 0.000449890475, 0.0248326641, 0.0232330542, -0.0111779235, 0.0327146165, 0.0125517827, -0.0152737014, 0.00863015745, 0.00286865653, -0.0289477911, -0.0124292318, 0.0140868928, 0.0200338326, -0.020485336, -0.0143319946, 0.00813350361, 0.011223074, -0.0039151758, 0.00677899504, 0.00953316316, -0.000394258852, 0.018189121, -0.0114939762, -1.31772358e-05, -0.0071788975, 0.00679189479, -0.0132483877, 0.0189115256, 0.0121002803, -0.00740464916, 0.0230782535, 0.00035636485, 0.0137772914, -0.00904296, -0.006804795, 0.0117713278, 0.00230105268, 0.0206401367, -0.0214141421, 0.00603079, -0.00734659843, 0.0111972736, -0.00316052092, -0.00485043228, 0.00725629786, -0.000434974761, -0.0159574058, 0.00180601189, -0.0058211633, -0.020627236, -0.0304442011, 0.0248455647, 0.0139449919, -0.000503506453, -0.0133902887, 0.0161509067, -0.00716599729, 0.0146802971, 0.0286123883, 0.0289735924, -0.0102168676, 0.00524388487, 0.0223558471, 0.0155962035, -0.0188341253, 0.00377972494, -2.52710652e-05, 0.0102168676, -0.00195436296, -0.00829475466, -0.0117777782, -0.0147705972, 0.000679270132, 0.000540997309, -0.0125711327, 0.0255034678, 0.00715954741, -0.0141513934, 0.00786260236, 0.0336434208, -0.00250584166, -0.00223332737, 0.0203950349, 0.0127130337, -0.0220591463, 0.0119777294, -0.00508908369, -0.0209239386, -0.00783035159, 0.0167572107, 0.00256389193, 0.000465209334, -0.02123354, -0.0184858218, -0.00692089554, 0.00316697103, 0.00347657292, -0.0140094925, 0.00172054884, 0.014215894, -0.0100491662, -0.00906876, 0.00737239886, 0.00670804456, 0.00186567486, 0.00484075723, -0.0138417911, 0.0124485819, 0.00708859693, -0.00674674474, -0.0067402944, 0.00513423374, 0.015996106, -0.00792065263, 0.00663709408, 0.00523421, -0.0135579901, 0.00224622735, 0.0124550322, -0.00910101, 0.0115842763, -0.0100878663, 0.0230524521, -0.0102491174, 0.0292057935, -0.00968796387, 0.00706924684, -0.0240715593, 0.0118809789, -0.0351398326, 0.0116165271, 0.0182536207, -0.00947511289, -0.0155317029, -0.000373296207, 0.0148479985, -0.013519289, 0.00770135084, -0.00834635552, -0.00628556637, 0.00554703688, 0.00085140561, 0.00444407947, 0.00888815895, -0.00942996237, 0.0123518314, 0.0200854335, 0.00484720711, -0.00216398924, 0.0108812219, 0.0116036264, -0.00317180855, 0.0016979737, 0.0186277237, 0.00262839231, -0.00737239886, 0.00090219971, -0.020536935, 0.009565413, 0.00430862838, -0.0100556165, 0.0175054166, 0.00149802235, 0.0106554702, -0.005156809, -0.0105909696, 0.0170152131, 0.0055631618, -0.0131322872, -0.0156865045, 0.0337724239, 0.00101910671, 0.0166411102, -0.0136740906, -0.00561798736, -0.0081528537, 0.00933966134, 0.0109779723, 0.00800450332, 0.00868820772, -0.00750784948, -0.0116552273, -0.0384680554, 0.0218269452, -0.000347294495, -0.0300313979, -0.0153511018, -0.00659839343, 5.46741903e-05, 0.0113778757, -0.00637264224, -0.0117584281, 0.00869465712, -0.0229621511, 0.00111988862, -0.0243682619, 0.0106038703, -0.0301604, -0.0107199708, -0.00644681742, 0.00328629673, 0.0279415846, -0.00387002551, 0.00422800286, 8.41529e-05, 0.00213657669, -0.00654679351, -0.0183955207, 0.00609529, -0.00645649247, -0.00459565548, -0.000284205016, -0.0114101255, -0.0269095786, 0.0177505165, 0.015235, 0.00502458308, 0.0165250096, 0.00323953386, -0.00595661439, -0.00306538283, -0.0122615313, -0.00522775948, 0.0213754419, 0.00698539615, 0.00586631382, -0.00116423273, -0.00568248751, -0.00483108172, -0.00589856412, -0.0150673, 0.00634684181, 0.00410222728, 0.0140481927, -0.00959121343, -0.00182858715, 0.0110811731, 0.000141296245, 0.0154672023, -0.032224413, -0.00824315473, -0.00258001708, -0.0124937324, 0.00543093588, 0.0026541925, -0.0265483763, 0.00588243874, -0.0150673, 0.0162412077, -0.0326372162, -0.0123324813, 0.00435055373, -0.0005039096, 0.00102475053, 0.0249487646, 0.0139191924, -0.00146899722, -0.0109715229, 0.0105587197, -0.0182536207, 0.0211690404, 0.00962991361, -0.000845761853, 0.0184471216, 0.0148350978, 0.00966216344, 0.0191179272, 0.0144351954, -0.0154543025, 0.0162541084, -0.00233330298, 0.0175957158, 0.00504715834, 0.0016979737, -0.0222655479, -0.0145254964, -0.00292348186, 0.00277351844, -0.0162154064, 0.0238522571, -0.00325243408, -0.000646616798, 0.0219946448, 0.0147834979, 0.00485043228, 0.0133644883, -0.0129581355, 0.0287671909, -0.0185116231, -0.0184987225, -0.0227170493, -0.0137772914, 0.00328145921, -0.0301862, 0.00792065263, 0.00884945877, -0.0107328705, 0.0153511018, 0.0087075578, -0.00749494974, 0.00817220379, 0.00591146387, -0.000874787045, 0.022033345, -0.0195565298, -0.0007635238, -0.0269095786, -0.000330766256, 0.0125711327, 0.00662419386, -0.0076175, 0.00202208827, -0.0109844226, 0.00908811, -0.0021349641, -0.0117777782, 0.0039474261, -0.00186889991, 0.00317664607, 0.0120486794, -0.00180439942, -0.0131580867, 0.0100620668, -0.0101265665, 0.00645649247, -0.00716599729, -0.0104361689, 0.0172861144, 0.00681769522, -0.00274288072, -0.0242650602, -0.00042368719, 0.00820445456, -0.0131451869, -0.0317342095, -0.0192856267, 0.00163186074, 4.76698478e-05, 0.00632749172, 0.0240973588, -0.00572441285, 0.00574376294, -0.0142545942, -0.00113762624, -0.00698539615, -0.000799402187, 0.00730144838, -0.0123389317, -0.00833990518, 0.0031298832, 0.0149382986, 0.01660241, 0.00268160529, -0.0288187899, 0.023710357, 0.00310085807, 0.00713374699, 0.0217753444, -0.00175763667, 0.00525678461, -0.00659516873, 0.0125646833, -0.0104232691, 0.00268644281, -0.0242779609, -0.00500845816, 0.00336047215, -0.0154285021, -0.0136482902, -0.000655485608, -0.00146093464, -0.000107937434, 0.009565413, 0.00287188147, -0.00719824759, 0.00824960414, 0.00107957586, -0.000784889562, 0.0104748691, -0.00521808444, 0.003028295, -0.0291283932, 0.0156865045, 0.00287188147, -0.02572277, 0.0182923209, -0.0271159802, -0.00876560807, -0.0292057935, -0.023710357, -0.0239167586, 0.0158800054, -0.00217205193, 0.00283801882, 0.0323018134, -0.00228492753, 0.0102942679, 0.0108812219, 0.00699184602, -0.00148995989, -0.0103910184, -0.0123905316, -0.00352817331, -0.00684349518, 0.013377388, 0.00418607751, -0.0222268477, 0.0224203486, 0.0232588537, 0.00396677619, 0.00597273931, 0.0111714741, 0.0230008513, 0.00481173163, -0.00216560182, 0.0062791165, 0.0183310211, -0.0114746261, -0.0103845689, 0.0112424241, -0.0188341253, -0.00736594852, -0.0131322872, 0.015480102, -0.00467628101, 0.00697894627, 0.0221752468, 0.0151189, 0.00592758926, 0.0230782535, -0.00425380329, 0.00603079, -0.001654436, -0.00253970432, -0.00762395049, 0.00398290111, 0.010455519, 0.00893330947, -0.00430540368, -0.00647584302, 0.00795290247, -0.0125775831, -0.00224622735, 0.0143190948, -0.00321050873, 0.00878495816, 0.024690764, -0.00981696509, -0.013467689, 0.0209755395, -0.0187567249, 0.00681769522, -0.0023639407, -0.00224461476, 0.00636941707, 0.0384164527, -0.0190018248, -0.0038023002, -0.0131967869, -0.00857855659, -0.0112488745, -0.00209303875, 0.00363782397, 0.00279286853, -0.00233491533, 0.020485336, 0.00658226851, 0.015622003, 0.0118164783, -0.014499696, -0.0057018376, 0.0156736039, 0.0237877574, -0.0191437267, -0.00919131096, 0.0110037727, 0.00189631258, 0.0149769988, -0.0357590355, 0.0180601198, -0.00108280091, 0.0115520265, 0.0129000852, 0.015247901, 0.0101910671, -0.0023752281, -0.000104410065, -0.03919046, 0.00180439942, 0.0182665214, 0.0108231716, 0.00193501275, -0.0287929904, -0.00902361, -0.0240457598, -0.00145690341, -0.00327339675, -0.0181117207, -0.00131742121, 0.000865918235, 0.0181246195, 0.00683059497, 0.00160525437, -0.0131580867, 0.00277513079, -0.0080432035, -0.0109005719, 0.0156865045, -0.0133257881, 0.00299926987, 0.00813350361, -0.00845600571, -0.0409190692, -0.009797615, -0.000432152854, 0.00661774399, -0.0114036752, 0.00625654124, -0.0112424241, 0.0158542041, -0.0151189, 0.0172732137, 0.0155059025, -0.00277835596, -0.00131177739, -0.00281705614, -0.0152608007, -0.0307796039, -0.00329274684, 0.00155042903, 0.0196339302, -0.0417962782, -0.00886880886, -0.00326533406, -0.0178537183, -0.0133386878, -0.0152092008, 0.00644036755, -0.0117906779, -0.0318890102, 0.0125517827, 0.0139965927, -0.0235039555, 0.0303410012, -0.0202144329, 0.00260904222, 0.0170539133, 0.0116810277, -0.00126662711, 0.00809480343, -0.000184027784, -0.0179827195, -0.00998466648, 0.0065693683, -0.013467689, -0.0272965804, -0.00140933436, -0.00797225256, -0.00337982224, -0.00641779229, -0.0160477068, -0.00779165141, -0.0214657411, 0.00111908244, -0.0042054276, -0.0136482902, 0.00438602921, 0.00208820123, -0.0189244244, -0.0235813558, -0.0198661312, 0.0158542041, -0.00362169906, -0.000996531569, -0.0113133751, -0.00239135325, -0.0138546918, 0.00568571268, -0.00525356, -0.0129065355, -0.00476335641, 0.00602756487, -0.00835280493, 0.00228492753, -0.00588566391, -0.0236329567, -0.00694669597, 0.0067402944, -0.010848972, 0.023710357, 0.000490606355, -0.0115520265, 0.0176731162, 0.0145641966, 0.00294766948, -0.00663064374, -0.0173635148, 0.0141771939, 0.000470449973, 0.00129565236, -0.00649196794, 0.00917196088, -0.00420865277, 0.0017044238, -0.000969118904, -0.0136353904, -0.0210529398, -0.0160993058, -0.00319438358, -0.0252841674, 0.00101507548, -0.0227557514, 0.00442472938, -0.0210271385, -0.00291703176, -0.0139062917, 0.0144351954, 0.000440618547, 0.00451825466, 0.0279415846, 0.00159638561, -0.0123840822, 0.0119583793, 0.0117842276, -0.0084753558, 0.0310376044, -0.00741109904, 0.014964099, -0.00913971, -0.00155042903, -0.0138546918, 0.0068563954, 0.0145641966, 0.0113456249, -0.0110424729, -0.00835280493, 0.0116487769, -0.0115649262, 0.00592436409, -0.0232072528, 0.0163444076, -0.0163960084, -0.0188212246, -0.00182858715, -0.0332822204, -0.00794645213, -0.00799805298, 0.0100814169, 0.00551478658, -0.00378295, 0.000116503892, -0.0241489597, -0.0148866987, 0.0312182065, -0.0145125957, 0.00337659731, 0.0071143969, -0.0295411944, 0.0124679329, 0.0209110379, -0.0103716683, 0.00757235, 0.0103974687, -0.0288187899, 0.00923001114, -0.00086914323, 0.006804795, -0.00953316316, -0.00746914931, -0.000602675835, -0.0137256905, -0.00889460929, 0.0319406129, 0.0146544967, 0.00381197524, -0.00637264224, -0.00146012846, -0.000375110307, -0.0289219916, 0.014357795, 0.024510162, 0.0060243397, -0.00316052092, -0.028251186, 0.0229750518, -0.024690764, -0.0108683221, 0.00766265066, -0.000653873081, -0.0195436291, -0.0143964952, 0.0256582703, 0.0329468176, 0.00539868558, -0.0113520753, 0.00299120718, 0.0307538025, -0.00252680411, -0.021697944, -0.00762395049, 0.0165250096, 0.0106296707, 0.00206723856, -0.0178408176, 0.00733369868, -0.00774650136, -0.021697944, 0.00795290247, 0.00294444454, 0.0327146165, -0.00345077273, -0.0126614338, -0.0525291488, 0.0255421698, -0.000532531645, 0.00587276369, 9.92198e-05, -0.00649519311, 0.0136611899, 0.000626863504, 0.0103394184, 0.00884300843, -0.00242682849, -0.00444407947, 0.022497749, 0.00544061093, 0.00284930645, -0.000942512474, 0.00121422054, 0.00447955448, 0.016138006, -0.00515035912, 0.0133515885, 0.0188857242, 0.00842375588, -0.00657904334, 0.00369909941, 0.000478915666, 0.0087333573, 0.00718534738, 0.00278319349, -0.0150414994, -0.00666289404, 0.0225493498, -0.00885590818, 0.010758671, -0.00108521967, -0.0097137643, -0.0219430458, -0.00759815, -0.00933966134, -0.00070507027, 0.0350108333, 0.00508908369, -0.0139578925, -0.00622429093, 0.0179440193, -0.00150044123, 0.00848825648, 0.00448600482, -0.00942996237, 0.00728854816, 0.0143964952, -0.00654679351, 0.00928806141, -0.0105587197, 0.00705634663, 0.000849793141, -0.0156865045, 0.00753365, -0.0150286, -0.0193759277, 0.0135966903, 0.0133128883, -0.0224719495, -0.0141513934, -0.00382810039, 0.00526323495, 0.0126743335, -0.00264935498, -0.00600498961, -0.0364814401, -0.0154285021, 0.00811415352, 0.0155704031, -0.00584696373, 0.000777230132, -0.0116165271, 0.030728003, 0.0180730186, 0.0309344046, -0.00108118844, 0.0154156024, -0.0118680783, 0.0101072164, -0.00181729952, 0.0189115256, -0.015480102, -0.0140223932, -0.02123354, 0.00209787628, 0.00695314584, -0.00877205841, 0.00590823917, 0.00492783263, 0.00675964449, 0.0163315088, 0.018524522, 0.00126501464, 0.00367329922, 1.89973907e-05, -0.0133902887, 0.0125517827, 0.00982341543, -0.00824960414, -0.0380036496, 0.00735949865, 0.00230911537, 0.00975246448, -0.0286381897, -0.00101830054, -0.0387518555, -0.0191050265, 0.0315020084, -0.0235942565, -0.00106828834, -0.00697249593, -0.00400225166, -0.0125646833]
|
13 May, 2020
|
Fabric.js | Ellipse cornerStrokeColor Property
13 May, 2020
In this article, we are going to see how to set the stroke color of controlling corners of canvas ellipse using FabricJS. The canvas means ellipse is movable and can be stretched according to requirement. Further, the ellipse can be customized when it comes to initial stroke color, fill color, stroke width, or radius.
Approach: To make it possible, we are going to use a JavaScript library called FabricJS. After importing the library using CDN, we will create a canvas block in the body tag that will contain our ellipse. After this, we will initialize instances of Canvas and Ellipse provided by FabricJS and set the stroke color of controlling corners of canvas ellipse using cornerStrokeColor property and make the corner visible using transparentCorner property and render the Ellipse on the Canvas as given in the below example.
Syntax:
fabric.Ellipse({
rx: number,
ry: number,
cornerStrokeColor: string,
transparentCorner: boolean
});
Parameters: This function accepts four parameters as mentioned above and described below:
rx: It specifies the horizontal radius.
ry: It specifies the vertical radius.
cornerStrokeColor: It specifies the stroke color of the controlling corners.
transparentCorner: It specifies whether to make the controlling corners visible or not.
Example: This example uses FabricJS to set stroke color of controlling corners of the canvas-like ellipse as given below. You have to click on the object to see the stroke color of controlling corners.
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Ellipse cornerStrokeColor Property
</title>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a Ellipse instance
var ellipse = new fabric.Ellipse({
rx: 80,
ry: 40,
cornerStrokeColor: 'red',
transparentCorners: false
});
// Render the Ellipse in canvas
canvas.add(ellipse);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property
|
https://www.geeksforgeeks.org/fabric-js-ellipse-cornerstrokecolor-property?ref=asr8
|
CSS
|
Fabric.js | Ellipse cornerStrokeColor Property
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.00772237033, 0.00478177657, -0.0145042809, 0.0164911691, 0.030757023, 0.00766276382, 0.0115173263, 0.0162394959, -0.0247036386, -0.0492748171, -0.001317141, -0.00126829674, -0.0040102019, -0.0406119861, 0.0193390418, 0.0342009626, -0.0261871815, -0.0134048695, -0.0196834356, -0.0192993041, -0.0186237618, -0.0282138065, -0.02914102, 0.018994648, -0.00058323436, 0.0504934415, 0.0148884123, 0.0280548558, -0.0300947279, 0.0146367401, 0.038943, 0.00308961049, -0.00217067497, -0.0227299966, -0.0282667894, -0.0183853358, -0.00110355054, 0.04742039, 0.00679515628, 0.00643420499, 0.00499702292, -0.00599046657, 0.00552685931, 0.0117292609, -0.00184283836, 0.00236274069, -0.0142526086, -0.012749197, -0.00730512431, -0.0455924533, -0.0168620534, -0.027472036, 0.0297768246, -0.0186767448, 0.0301212184, 0.0231936034, 0.0198688786, 0.0454070084, -0.00951056927, -0.00409630034, 0.01528579, -0.0661766082, -0.0111464402, -0.00661964761, -0.0186370071, -0.00317074172, -0.00126581313, 0.0115107028, -0.0274985265, 0.0186105147, -0.0221604221, 0.0158951022, 0.0340685025, 0.00702033704, -0.0069143693, 0.0236837026, 0.00697397627, 0.0121862451, -0.0352341421, 0.048135668, -0.00499371113, -0.00804689527, -0.024067834, 0.0335121751, -0.00732499314, -0.0245446879, 0.0530631505, -0.0361083746, 0.0172329396, 0.0253129508, -0.0102457181, 0.0256970823, 0.0371680483, -0.0275780018, -0.0151400845, -0.0255646221, 0.0223061275, -0.0327439122, -0.0400821492, 0.0103119472, -0.00404331647, 0.0550500378, 0.00179647771, 0.00250016712, 0.0205576662, -0.0226240288, 0.0180144496, -0.00847076531, 0.0153387738, -0.00500364555, 0.0140804118, -0.0152195608, 0.00380489021, 0.0291940048, -0.00641102437, 0.0173521526, 0.00238592108, -0.0291675124, 0.0410888381, -0.00067719759, 0.00994106196, -0.0121862451, 0.0103649311, 0.0342009626, -0.0261739343, 0.0337241068, -0.0077687311, 0.00121282937, 0.0333002396, 0.0112391617, 0.00541758072, -0.0218955036, 0.0061262371, 0.00176667434, 0.0595536493, 0.00819260068, -0.0234320294, 0.00929201208, 0.00495728524, 0.0151798222, -0.0360553898, -0.0302536786, 0.00530167902, 0.0274455436, -0.00796742, 0.0134114921, 0.0220544543, -0.0236042272, -0.00435459567, 0.00869594514, -0.0644281507, -0.00646400824, 0.023114128, 0.000889132265, 0.0386515893, -0.0283462666, -0.0138949687, 0.000824144518, 0.0231803581, -0.0237764232, 0.0186899919, -0.00177660887, 0.0102059804, 0.012901525, -0.0301477108, -0.0219087489, 0.00109858334, 0.0177892689, -0.0683489367, 0.0315517783, -0.00641102437, 0.00314590568, 0.0134843448, -0.017259432, -0.0394463465, -0.0233393088, 0.0034604962, -0.0368766375, 0.0187297296, -0.0271011498, -0.0520829521, 0.00998742227, 0.0148884123, 0.0583350249, -0.0118352287, -0.0127558196, 0.0225180611, -0.00445725163, -0.022875702, -0.0460428111, 0.00392079167, 0.0213391744, 0.0529836752, 0.00310616801, 0.0083118137, -0.0149546424, 0.0112391617, -0.00260944595, -0.00151748559, -0.0254321638, 0.0205974039, -0.030810006, -0.0260547213, -0.0464931726, 0.0132591641, 0.00480164541, 0.0194317624, -0.0555268899, 0.047897242, 0.00228657667, 0.00158040365, 0.0419895612, 0.030518597, 0.00277833152, -0.0149413962, 0.00288264314, -0.0148751661, -0.0026789871, -0.0160010699, -0.0250745229, 0.0102258492, 0.0203854684, -0.0294324309, -0.0147824455, -0.0613021106, -0.0161600206, -0.00225346186, 0.0113053918, 0.00858335476, -0.0613550954, 0.0100470288, 0.00652692653, 0.00451023504, -0.00938473362, 0.0326909274, 0.0175773334, 0.00195874018, 0.00444731722, 0.0112192929, 0.00675541861, -0.00612954888, -0.0117027694, -0.0157493968, -0.011523949, 0.036002405, 0.0023677079, -0.0125571312, -0.0124909012, 0.0159348398, -0.0114842113, -0.0389959849, -0.0310749244, 0.0157493968, 0.00973575, -0.0363203101, 0.00952381548, -0.0210875031, -0.0621498488, 0.0508643277, 0.0312338751, 0.0713690072, 0.0236307178, 0.00595404, 0.014212871, -0.0213656668, -0.0306245629, -0.00532485917, -0.0383336879, -0.0104708988, -0.00244056061, 0.00437446451, -0.0362938158, 0.0488509461, -0.0464931726, -0.00387774268, 0.0307305306, -0.0358169638, -0.0118484739, 0.0159083474, -0.0237499326, -0.0254321638, 0.0201073047, 0.0224915706, 0.029617874, -0.00673223799, -0.0173256621, -0.0207166169, 0.00671236916, -0.0254586563, -0.026094459, -0.0220677, -0.0534340367, 0.0183985811, -0.0203987136, 0.027948888, -0.00175177271, 0.010212603, -0.0260282308, 0.00100751768, -0.0170872342, -0.0369826034, -0.0428373, -0.025140753, -0.00134280499, 0.0145042809, 0.029617874, 0.0326379426, -0.0306245629, 0.0094244713, 0.0118418513, 0.0231008828, 0.0100337835, -0.0137625095, -0.035419587, 0.0144777894, -0.00380157866, 0.0633684769, 0.00980860274, -0.0218027811, 0.0165176596, -0.00684813969, -0.0189284179, -0.00772899343, 0.0171269719, 0.0356315225, -0.00423869397, -0.00569243357, -0.0272336081, -0.0187694672, 0.0238558985, -0.040135134, -0.013378378, 0.000742185395, 0.0239088833, 0.00103732105, 0.0012889934, -0.00584807293, -0.012987623, -0.0378568359, 0.0414597243, 0.0158818569, 0.0441354, -0.00676866435, -0.016305726, 0.0302006938, -0.0362408347, 0.00813299417, 0.00231969147, 0.0517120659, 0.0394993275, 0.000910656876, 0.0103185708, -0.0189814, -0.0227167495, 0.0201205499, -0.0349162407, 0.00745082926, -0.0232068487, -0.0366911925, -0.00199516653, 0.0327704027, 0.0129346391, 0.0434466116, -0.0023130686, 0.0528247245, -0.0241738018, -0.0108682765, 0.0396317877, 0.000128112864, -0.00351679139, -0.0334591903, -0.0425723828, -0.0232598335, -0.0388900153, -0.006553418, -0.0200145822, -0.0142261162, -0.0075369277, -0.0452745482, 0.0099808, -0.0353666022, 0.0427578241, -0.00387111958, 0.017021006, 0.0411418229, 0.0376713909, -0.0262534097, -0.0184648111, 0.0155639546, -0.0265448205, -0.0597126, 0.0132392952, 0.0507318676, -0.0297238417, 0.0264388528, -0.00434466125, -0.00343069294, -0.0176965464, 0.0160540529, -0.0513146892, -0.0428637937, 0.00203987141, -0.0103384396, -0.0252202284, 0.0235247519, -0.00813299417, -0.0221869145, -0.0223061275, 0.0153387738, -0.0130339842, -0.0133717544, 0.0126895895, 0.0407974273, -0.021259699, 0.0278959051, 0.0203854684, 0.0285582, 0.0564805977, 0.00412279228, 0.00794092845, 0.0538049228, -0.0205974039, -0.036664702, -0.00491092447, 0.0171004813, -0.00330816815, -0.0331147946, -0.00895424094, -0.018570777, 0.0254851468, -0.111795552, 0.00679515628, -0.00153321505, -0.00159778888, 0.0243327525, 0.0137227718, 0.0302536786, -0.00764951808, 0.0260414761, 0.0300947279, 0.000565021241, 0.00652361475, 0.040717952, -0.0235909801, -0.0132128038, 0.0318431892, -0.0473144203, -0.0141466409, 0.0245049484, -0.000134942791, -0.00573879434, 0.00704020588, -0.0482946187, -0.0123253269, -0.00568581047, -0.04442681, 0.00222531427, 0.0130472295, 0.00133866561, -0.000397584517, -0.0305715799, -0.00704020588, -0.0039969557, 0.00463607162, 0.0330618136, -0.0177097935, 0.00164911686, -0.00867607631, 0.00756341964, 0.00963640586, -0.000834078935, 0.00991457049, 0.000435459573, 0.0538844, 0.00368898828, 0.0333532244, -0.0216305852, -0.00410954608, 0.022332618, -0.0334327, 0.0155772, -0.0230346527, -0.00955030695, 0.0202662554, 0.0122392289, -0.0107689314, 0.0257765576, -0.00741771422, -0.014808937, -0.0147427069, 0.062997587, 0.0228624549, -0.0183985811, -0.0115835555, -0.000492582622, 0.0196436979, 0.00413603801, -0.0313398428, 0.0077886, -0.0094907, 0.0151798222, 0.036664702, 0.0106166033, 0.0225710459, 0.0247963592, 0.0272865929, -0.0300417431, 0.0097291274, -0.0282667894, -0.0119941793, -0.0146234939, 0.0203457307, -0.00484469486, 0.00796079729, -0.0107093249, -0.0213391744, 0.018160155, 0.0226637665, -0.0404795259, -0.00917279813, 0.0127094593, -0.025259966, 0.0158023816, -0.0194847453, 0.00631499151, 0.0404265448, 0.031949155, -0.0156169375, 0.0297503322, -0.00671568047, -0.00397046423, -0.00157792, 0.0317372195, 0.0176303182, 0.012391557, -0.0245446879, -0.0133055253, -0.0202132724, 0.00602027, -0.0177892689, -0.0461487807, 0.0010762309, -0.00709981238, -0.00236439635, -0.000112176371, -0.00733161578, 0.00312438095, 0.00693423813, -0.0155242169, 0.0134048695, -0.0206238944, 0.0106563419, 0.00187595317, 0.000668918889, 0.0184250735, -0.00262434757, 0.0235909801, -0.0368236527, -0.0347308, 0.0185442865, 0.0333267301, 0.00591761433, 0.0174183827, 0.0177362841, -0.00390092307, -0.0267170183, -0.0160010699, 0.00993443932, -0.0365322419, -0.0227167495, 0.010689456, -0.030810006, 0.00732499314, 0.0287436433, -0.00659315614, -0.000382268918, 0.0150208715, -0.0324260071, 0.0213656668, 0.0263858698, -0.0175508428, -0.017497858, 0.0158553645, 0.00640109, -0.0251010153, 0.023167111, -0.010570243, -0.0165706445, -0.0600834861, -0.0175640881, 0.00284621678, 0.00989470072, -0.0182528757, 0.00435128435, -0.0194847453, 0.0461487807, 0.0437910073, -0.00995430816, 0.000150982771, -0.0126233604, 0.0278429203, 0.00823896099, 0.0102987019, 0.0227035042, -0.00442744838, -0.0338035859, 0.0111729326, 0.0262931492, 0.00172031368, 0.00532154785, -0.0197231732, 0.0164514314, -0.00244387193, 0.00396053, -0.00999404583, -0.0280548558, 0.0501490459, 0.0358699486, 0.00792106, -0.0177627765, -0.00302834809, -0.00502682617, 0.0434731059, 0.00327008613, 0.0321346, -0.000244842522, -0.00309788925, -0.0241738018, 0.00538777746, -0.0176700559, -0.0272601, -0.000456984184, -0.0190608762, 0.0112391617, -0.00665607397, 0.0310219415, -0.000776542, 0.0284522325, -0.0265315752, -0.010927883, 0.00619246671, 0.0239353757, 0.00398039864, 0.032373026, 0.00336943055, 0.00821909215, -0.0390489697, 0.0307040401, 0.0166501198, -0.00679515628, -0.0094840778, -0.00765614072, -0.0279753804, 0.0204516985, -0.00493079331, 0.00598715525, 0.00922578201, 0.0380687714, -0.0216438305, -0.0136830341, 0.00288595445, -0.0337241068, 0.00167643651, -0.0214186497, 0.00177660887, 0.00737797655, 0.0330618136, 0.0180144496, -0.00564938411, 0.00506656384, -0.0274455436, 0.0121796224, -0.00320551218, 0.0150871016, 0.014332084, 0.00602027, -0.0265713129, 0.0390224755, 0.0356580131, 0.0206371415, 0.0059441058, -0.0246506538, -0.00375190633, -0.0147691993, -0.00396715244, -0.00706669735, -0.0222796351, 0.0201470423, -0.0018411827, -0.023047898, 0.0327704027, -0.0158951022, 0.00294556119, -0.0137227718, 0.0235644896, 0.00507318694, 0.00228657667, -0.0311014168, -2.17315846e-05, -0.00105884566, 0.00160606764, 0.00242400309, -0.0239221286, 0.0268627219, 0.00159613322, 0.0658587068, -0.0135505749, -0.00680840202, -0.0183455963, -0.0368766375, 0.0101662427, 0.0231273733, -0.00836479757, -0.00690774666, 0.00267733121, -0.0290350541, 0.0161202829, -0.0119478181, -0.0088615194, 0.0214318968, 0.0142393624, 0.011437851, 0.0160673, -0.0380952619, -0.00172031368, 0.012749197, 0.0187827125, -0.0159348398, 0.0169547759, 0.00830519106, 0.0260679685, 0.00790119078, -0.000266367133, -0.00733161578, -0.0315252878, 0.0371150635, 0.009497324, 0.0245049484, -0.0108881453, -0.01535202, -0.0278694127, -0.0268097389, -0.0235379972, -0.00652692653, 0.000759570627, -0.0229684226, -0.00298529887, 0.000603517168, 0.0013949608, 0.00578184333, -2.83804147e-05, -0.0203324854, 0.0513411798, -0.0150871016, 0.00508312136, -0.0127624422, -0.02914102, 0.0140141817, 9.47393637e-05, 0.0404530354, 0.0077687311, 0.0277634449, -0.0132525414, 0.0378833264, 0.0225313082, 0.0169150382, -0.00319557777, 0.0052784984, 0.0158553645, 0.00491423579, -0.0114974575, -0.0215378627, 0.00598053215, -0.000317074184, -0.00918604434, 0.0198688786, 0.0171137266, -0.0339095518, 0.000128733765, 0.0153652653, -0.0012558786, 0.00360620138, 0.0322405659, 0.00226836349, -0.0130339842, 0.0216968153, -0.025154, -0.0134711, 0.00925227441, 0.00635472964, -0.00784158334, 0.00564938411, 0.00299523328, 0.0218822584, -0.00471885828, -0.0060169585, -0.00573217124, 0.00508312136, -0.0127955573, -0.0355255529, -0.0316842385, -0.0263726246, 0.0182793681, 0.00110437849, 0.0315782689, -0.0069209924, -0.0227432419, 0.00102821446, -0.0172461867, -0.014451297, -0.0023130686, -0.0240810793, -0.000264297472, 0.00245877355, 0.0147824455, -0.00419564452, 0.0280283634, 0.0136035588, -0.00553348241, 0.052612789, -0.0114510963, -0.0284787249, 0.0104576526, -0.0174713675, -0.0446917303, 0.0520829521, 0.0219882242, 0.00800715759, 0.00470892387, 0.022994915, -0.0186767448, 0.013855231, -0.0312603675, 0.0465461574, 0.00459633395, 0.00163007586, 0.0277369525, 0.0144645432, 0.00217895349, 0.00620571291, 0.00351347984, 0.0135903126, -0.00363269309, -0.0131531972, 0.0127823111, 0.0272336081, -0.000263469585, 0.0363203101, 0.0262004267, -0.0126564754, 0.0113649983, 0.0358699486, 0.00427843165, 0.045512978, 0.0293529555, 0.00811312534, 0.00299854483, -0.0051096133, -0.00198192056, -0.0432346798, -0.00508312136, 0.00516590802, -0.00574541697, 0.0105040139, 0.0384926386, -0.0237499326, 0.00578184333, 0.00713955, -0.0276574772, -0.0150341177, -0.0349957161, 0.00788794458, 0.0158951022, -0.0156566761, 0.0134446071, -0.0127028357, -0.0120537858, 0.00849725679, -0.00475528464, 0.000447463681, 0.0324260071, -0.0436320566, -0.0382807031, 0.00508312136, 0.00520233437, -0.00644745072, -0.0247566216, -0.0188754331, 0.00191734673, -0.0450361222, -0.0251672454, -0.00424531708, 0.0194317624, -0.0245314408, 0.0287966263, 0.0516855754, -0.00135687878, -0.0145837562, -0.0160673, 0.00215246179, 0.0111861778, -0.00586131914, 0.00210775668, -0.00435459567, 0.0391814262, -0.0127293281, 0.0185575318, 0.0197629109, 0.00441751396, 0.0141069032, 0.0385986082, -0.0126101142, 0.0334327, -0.0142923463, 0.0386251, 0.0055831545, -0.0145440185, 0.0384396538, 0.0229684226, 0.0215643551, -0.0218425188, 0.00627525384, -0.0122789666, 0.0261606891, -0.0252334755, -0.00791443605, -0.0267435089, 0.010689456, -0.0199748445, 0.00513279345, 0.00937148742, 0.0458573699, 0.0571693853, 0.00770912459, -0.0148751661, -0.0185442865, -0.0168355629, 0.00595404, -0.0331942737, -0.00931188092, 0.0393933617, -0.00199682219, -0.0131002134, -0.00799391139, 0.00688787783, -0.0265183281, -0.0124975238, 0.00700046774, -0.0156036923, 0.0141466409, -0.0205179285, 0.0334062055, 0.0354990624, -0.0158156268, -0.0150076253, 0.00476853084, -0.0107954238, 0.00530830165, 0.0143850679, -0.00357970945, 0.0236307178, -0.0108881453, -0.00265746238, 0.00772899343, 0.0112391617, -0.0338300765, -0.00892774947, -0.0194582548, 0.00113252609, -0.000464021083, 0.0322935507, 0.0202265177, -0.0172726773, 0.0391814262, 0.00666269707, 0.00628187694, 0.00992119312, 0.00848401058, -0.0144777894, -0.00453341566, 0.00833168253, 0.00755017344, 0.0162924789, 0.0240810793, 0.0186899919, 0.00252169184, 0.0111265713, -0.00943771657, -0.0204516985, 0.0272601, 0.000778197718, -0.0117689986, -0.0316047631, -0.01492815, 0.00652030343, 0.00655010669, 0.0275515113, 0.0262004267, -0.0268627219, -0.00396715244, 0.00300682359, -0.00222531427, 0.00441089086, -0.00719253393, -0.00177164166, 0.0551030226, -0.0138419848, 0.011404736, 0.0104245376, 0.00353997177, -0.0491688512, 0.00603020424, 0.0202132724, -0.0153387738, 0.0246109162, 0.0147691993, 0.0147956908, -0.00210278947, 0.0189814, 0.0325849578, 0.0123584419, -0.00905358512, 0.0112259155, -0.0312603675, -0.00961653702, -0.00203159265, 0.000565435155, 0.0183058586, -0.00835817493, -0.0273395758, 0.00193887134, -0.00108368171, -0.00488443254, -0.0215511099, -0.00380157866, -0.00757004227, -0.0175905805, -0.0496721938, -0.00610968, -0.0302271862, -0.0106960796, -0.00199351064, -0.0118153589, -0.000504172756, -0.0133585092, -0.000113728631, -0.00955693051, -0.0194582548, -0.021021273, 0.00128237053, 0.0133982468, -0.0018858877, 0.010603358, 0.000798066612, 0.0168753, -0.00939135626, -0.010689456, -0.00417577568, -0.00383469346, 0.00354328332, -0.00802040379, 0.000641185266, -0.0140804118, -0.0381217524, -0.00894761831, 0.0186502542, 0.0109146368, -0.0118948352, 0.00927876588, 0.000284580281, 0.00110023911, 0.0335386656, 0.0126829669, -0.00150506746, -0.000422627578, -0.00344393891, -0.0129478853, 0.0132194264, -0.00400689058, -0.00178323174, 0.0278959051, 0.00890788063, 0.0439234674, 0.000468160433, 0.0111596864, -0.00512948213, 0.00622227043, -0.00831843726, -0.00193059258, -0.0121862451, -0.0265183281, 0.00835155137, -0.00739784539, 0.00284124957, 0.0203192383, -0.0293794479, -0.0248096064, 0.0643751621, -0.00576528627, -0.0217365529, -0.0210345183, -0.0011259031, -0.0188886803, -0.00507980958, 0.00565931853, 0.0114179822, -0.0377508663, 0.0208093375, 0.00357970945, 0.0208225846, 0.035763979, 0.00869594514, -0.00768263265, 0.0162527412, -0.0176700559, 0.0349162407, -0.0495132431, -0.00904034, 0.00904696248, -0.0250745229, -0.0226770118, 0.0077819773, -0.0180144496, 0.00080800103, -0.00596397463, 0.0201205499, 0.0329823382, 0.0162394959, 0.0147029692, 0.024663901, 0.00768263265, 0.00235942914, 0.00713955, 0.0336976163, 0.00295383972, 0.00851712562, -0.0140274279, -0.0153917577, 0.0131333284, 0.00479502231, -0.00351347984, -0.00433141552, 0.00154894462, -0.0110669648, 0.00667263148, -0.0256970823, -0.00449698931, -0.0124710323, 0.0147691993, -0.0278959051, -0.00216239621, 0.00796079729, -0.00283297081, 0.000538943335, -0.0179084819, 0.0176568087, -0.0494072773, -0.0046195141, -0.010179488, -0.0352341421, 0.00177992031, 0.0135307061, -0.0089343721, -4.81716816e-05, 0.0222398974, -0.00308961049, 0.014212871, 0.0143453302, 0.0251804907, 0.0330088288, -0.013736018, -0.0416716598, 0.0034604962, -0.0126233604, 0.0250480324, 0.00188754336, -0.00208126497, 0.0128617873, -0.0131995576, -0.00677197566, 0.0119478181, 0.00898735598, 0.0210345183, -0.0196569432, -0.0184780564, -0.0154447407, 0.0239618663, -0.00116232934, 0.010212603, -0.0499900952, 0.0294324309, 0.0265978053, -0.021921996, -0.000426766928, 0.00752368197, 0.00467249798, -0.0253129508, -0.0308629908, 0.0265050828, 0.0162394959, 0.0108484076, -0.0299357753, -0.0128088035, 0.0265183281, 0.0133585092, 0.00759653421, 0.0107027022, -0.00166070706, 0.000307967595, -0.013974444, -0.0147029692, -0.0200808123, 0.0189151708, 0.00973575, 0.00288098725, 0.00703358278, -0.0230346527, 0.00185608433, 0.000374197203, 0.0283462666, 0.0230876356, -0.012901525, -0.00673555, -0.0160937905, 0.00387774268, 0.0404530354, 0.00615272904, -0.00254321634, 0.0104377838, 0.00860322453, 0.00553348241, 0.00673555, 0.00320385653, -0.00655673, -0.00424200529, -0.00206470746, -0.0147427069, 0.0215776, -0.011013981, -0.0276044942, 0.00266077393, 0.0246374086, 0.0010174521, -0.00990794692, -0.01045103, -0.00517915422, -0.00707332045, 0.00663951645, -0.0332207642, 0.0153122814, -0.00639777863, 0.0222398974, 0.0181204174, 0.01492815, -0.0123981796, 0.0119875567, 0.0104444064, 0.00579177774, -0.00410954608, 0.0141333947, -0.00748394383, 0.01528579, 0.00242234743, -0.0181866456, 0.0110669648, -0.00641102437, 0.0110669648, 0.000833665, -0.00464931736, -0.00195046153, -0.0269422, 0.0158553645, 0.0366382115, -0.00197198614, -0.0495132431, 0.0172726773, 0.0049904, 0.00208954373, -0.00664613955, -0.0173124149, 0.00280647888, -0.0424399227, -0.0216438305, -0.0183853358, 0.0120604085, 0.0191535987, -0.00168637105, -0.0154977245, 0.0229154397, 0.00168968248, 0.00308795483, 0.00212762575, 0.00596728642, -0.0174183827, -0.0301212184, 0.00729187811, 0.0101662427, 0.00608981121, 0.0257235747, -0.00380157866, 0.0158288721, -0.0333002396, 0.0135571975, 0.00251672463, -0.0151533308, 0.0235777348, -0.00763627188, 0.0145175271, -0.0139082149, -0.0032502173, 0.0130406069, 0.000762468204, 0.0185840242, -0.0086429622, -0.0145837562, 0.00157792, -0.000693341077, -0.0118484739, 0.0145042809, -0.0106497183, 0.0142658539, 0.00858335476, 0.0179879572, 0.016901793, -0.00041062347, -0.000119213269, 0.0101198815, -0.0200278293, -0.0129743768, 0.00991457049, 0.000708242704, 0.0107888, -0.00714617316, 0.016186513, -0.0247963592, 0.0033727421, 8.07690594e-05, 0.00387111958, 0.0350222103, 0.0180144496, 0.01492815, 0.00983509421, -0.000123352613, 0.0223988481, -0.0200145822, -0.0186635, 0.00328002055, 0.0163322184, -0.00650374591, 0.0245976709, -0.00127160817, -0.00606000796, 0.0156169375, -0.0077687311, -0.0187164824, 0.00311279087, -0.0273660682, 0.00533810537, 0.01457051, -0.0107755549, 0.000985165243, -0.0220147166, 0.00415259553, -0.022041209, -0.0140671656, -0.00447380915, -0.0258295406, -0.0302536786, 0.0171799567, 0.0202927478, 0.0311014168, 0.00165408407, 0.00265083951, 0.0153387738, -0.00492748152, -0.0209550429, 0.00254321634, -0.019829141, -0.0132459188, 0.0263726246, -0.0117491297, -0.00299192197, 0.00955693051, 0.00465594046, 0.0145175271, 0.0163454637, 0.0161600206, -0.00204483862, 0.00497715408, -0.00652030343, 0.00362938177, -0.0205709115, 0.00412279228, 0.0100470288, 0.00460957969, 0.00222034706, 0.00429167738, -0.00296377437, -0.00187098596, -0.0350222103, -0.0179482196, -0.0282138065, 0.00221703551, 0.00680840202, 0.0166766122, 0.0122922128, -0.0284522325, 0.00879529, -0.0329028629, -0.000197653935, -0.00758328848, -0.0127823111, -0.0283992495, -0.0124842785, -0.000446221879, -0.00220047822, -0.00403338205, -0.00939797889, -0.0243195072, -0.0121001462, 0.0127094593, 0.0278959051, -0.0108550303, 0.0296973493, 0.0162924789, 0.00433472684, 0.0103715546, -0.0104046687, 0.00308298762, -0.0136432964, 0.00951056927, 0.0157493968, 0.00341082411, 0.00101662427, -0.00582489278, -0.0121862451, 0.00902047, -0.00813961681, 0.0335386656, -0.0198688786, -0.0045532845, -0.01940527, 0.0132922791, -0.0244254731, -0.0132061811, -0.0269422, -0.00623882748, 0.00610968, -0.00721240276, -0.0244784579, -0.00311941374, -0.0256440975, 0.026756756, 0.000901550346, 0.0200013369, 0.0109477518, -0.00542420382, 0.0300417431, -0.00737135345, 0.0113318833, 0.00917279813, 0.00145373959, -0.00336280768, -0.0273925588, 0.00140655099, 0.0233393088, 0.00808001, -0.00785483, -0.00152742, 0.0246374086, 0.0051924, 0.0183191057, 0.0329293534, 0.0287701357, 0.00175508426, 0.0174846128, -0.00292072515, -0.0218425188, -0.00104642753, -0.0123981796, 0.000118799333, -0.0230611451, 0.00502351439, -0.0168753, -0.0172859244, 0.00178985472, 0.0536194779, 0.0320816152, -0.0223723557, -0.00286443, 0.00987483189, -0.0138419848, -0.00597059773, -0.018994648, 0.0037386606, -0.0177760236, 0.00178654329, 0.0317637138, -0.0236174725, 0.0168753, -0.00116646872, 0.0611961447, 0.00124180492, 0.0130273607, -0.00222365861, 0.00367574231, -0.0119610643, -0.0240148511, -0.000840287947, -0.0338300765, -0.00625207368, -0.0094112251, 0.0243459977, 0.00101000129, 0.0264256075, -0.00446387473, -0.00566263031, -0.000609312265, -0.00378833269, -0.015405003, 0.00313100405, -0.00490761269, -0.00197860901, 0.0321081057, -0.0128352949, -0.00484800618, 0.00405987399, 0.00213756016, 0.00984834, -0.00508643268, -0.0191271063, 0.0114113586, 0.00194880576, -0.01535202, -0.0159613322, 0.0083118137, 0.0109411292, -0.00201337971, -0.000681336911, -0.0104311612, 0.0110934572, -0.00913306, 0.000637873774, 0.0091794217, 0.0200410746, -0.0120206708, 0.00460295659, 0.017378645, -0.0126101142, -0.000639115577, 0.0189681556, 0.0157361515, 0.004612891, -0.0197099261, 0.00366911944, -0.00676535303, -0.002889266, 0.00449698931, 0.00583813852, -0.0159480851, -0.000248154, 0.00290251197, 0.00525862956, -0.00301344646, -0.00680177938, 0.0106695872, 0.023948621, 0.0049870885, -0.0322140753, -0.00879529, 0.000355363154, 0.0228624549, -0.00537784304, -0.00116646872, -0.00427512033, -0.01492815, -0.00869594514, 0.0267170183, -0.00162262504, -0.00833168253, -0.00842440408, -0.00904696248, 0.0426783487, -0.00125919015, 0.00908007752, -0.00772899343, 0.00474535, 0.0189019255, 0.0178554989, 0.00275183958, 0.00563613838, 0.0221604221, 0.0120140482, -0.00500695733, 0.0180276949, -0.0225842912, 0.0036095127, 0.00347705372, 0.000848566648, 0.0119213266, 0.0154579869, 0.00170872349, -0.000682578713, -0.0195112377, 0.016477922, -0.00596397463, 0.0171932019, 0.0115769329, -0.0032502173, -0.0218955036, 0.00650374591, 0.0193522871, -0.000630422961, 0.00808663294, -0.00101827993, -0.0160143152, 0.00868932251, 0.00860322453, -0.000340875442, 0.0238426533, -0.0304921046, -0.00872906, -0.00544076087, -0.000383096805, 0.00844427291, 0.0162659883, -0.00457977643, 0.00223856024, 0.02090206, -0.00958342198, 0.00446387473, -0.00891450327, 0.00786145311, 0.00658322172, -0.0141731333, 0.0164381843, 0.0293529555, -0.00439764513, 0.0202132724, -0.0168090705, 0.0172726773, 0.0161732659, 0.0193522871, 0.0113252606, -0.0077687311, 0.00737135345, -0.0158686098, 0.00690112356, -0.00027216223, -0.0185442865, 0.00663289381, 0.00423869397, 0.0119478181, -0.00706007471, 0.00141317397, -0.005523548, 0.0192728117, -0.00661633629, 0.00247201952, 0.0088747656, 0.0166633651, -0.00542751513, 0.00293231523, -0.00274852803, -0.0128816562, -0.0154844783, -0.0186237618, -0.00946420897, -0.00588118797, 0.00573548255, 0.000313348748, 0.0197894014, 0.00780184614, -0.00591099123, -0.00185442856, -0.0254719015, -0.00470561255, -0.0161467753, -0.0143850679, 0.00276839687, -0.0063712867, 0.0165309068, 0.00857010949, 0.003493611, 0.0113649983, -0.0120802773, 0.0143718217, 0.013616804, -0.00649712328, -0.00523213763, -0.0282402989, -0.00644413941, -0.0190078933, -0.00489767827, 0.00447712047, 0.0155374622, -0.0234850142, -0.0149149047, 0.0443473347, 0.0161070377, 0.0137890009, -0.00313265971, -0.0157758892, -0.00244718348, 0.0274190512, -0.00625207368, 0.0204516985, 0.011914704, -0.0260282308, -0.0159348398, -0.00847738795, 0.0171137266, 0.005957352, -0.00103318167, -0.000501689152, -0.0191403516, -0.00738459965, -0.00265249517, 0.0165176596, -0.00526856398, -0.000377094751, 0.0243989825, 0.0332207642, 0.0316047631, -0.0328498781, -0.00635804096, -0.00980860274, 0.00214749458, -0.0089343721, 0.00696735317, -0.0177362841, -0.00512617035, 0.0249685571, 0.00229154387, 0.000874230638, -0.00613286, -0.0257765576, 0.00786145311, -0.00978873391, -0.00630505709, -0.00770912459, 0.0142393624, -0.00355652906, 0.0212729443, 0.00280151167, 0.00593086, 0.00774886226, -0.0101529965, 0.0236572102, 0.0118484739, -0.00514272787, -0.00135770661, -0.0178554989, 0.017431628, -0.0234320294, -0.0215113722, -0.0103583084, 0.00794092845, 0.00177826453, -0.00173355953, 0.017431628, -0.0100404061, -0.0237764232, 0.0129611315, -0.00433803815, 0.0109212594, 0.012901525, 0.0253924262, 0.0192993041, -0.0355255529, 0.00141731324, 0.00143883785, 0.00428174296, 0.0362673253, 0.00205974025, 0.0127293281, -0.00635141786, -0.00786807574, 0.0201602876, -0.00176501868, -0.00677859876, 0.0251804907, -0.0157493968, 0.0107689314, -0.0347043052, -0.0169150382, 0.0065600411, -0.00167229725, -0.0113981133, 0.00365918502, 0.000519488356, 0.0217100605, -0.00911981519, -0.0253924262, 0.0212067161, 0.0183985811, 0.0074773212, 0.0334062055, 0.00934499595, -0.00713292696, -0.00277502, 0.0193125494, -0.00103732105, 0.000417453412, -0.0108815217, 0.00904696248, -0.00941784773, -0.0107821776, 0.00684813969, 0.00118385395, -0.00647394266, -0.0147956908, -0.0138949687, -0.000474369444, 0.00621233601, 0.0112126702, -0.0104576526, 0.0205444191, 0.00606331928, 0.0044440059, 0.0162924789, -0.025259966, 0.00408636592, 0.00202993699, -0.0265448205, -0.00724551734, -0.0261077061, 0.00282634795, 0.0171534643, -0.00197198614, -0.00996755343, -1.99723618e-05, -0.0010455997, 0.0029439053, 0.0150606092, 7.05629736e-06, -0.00960991345, 0.00880853552, -0.00787469838, -0.00174183829, -0.0111398175, -0.0166103821, 0.0101000126, -0.00217729784, 0.00424862839, -0.013855231, 0.0182661209, -0.0133916233, -0.0102457181, 0.00823233835, -0.025379179, -0.00194880576, -0.00652030343, 0.000752119813, 0.0600834861, 0.00632823771, -0.0118484739, 0.00589112239, -0.0165971369, -0.00162262504, 0.000903206063, 0.00327008613, -0.00925889704, -0.00324856164, 0.0014727806, 0.00539771188, -0.000880853564, 0.00566594163, 0.0171004813, 0.00574541697, -0.00589112239, 0.0135505749, 0.00593748316, -0.000506656361, -0.0109212594, -0.00304490561, -0.0100801438, -0.000633734395, -0.0139082149, 0.0015199692, -0.00322372536, 0.00323365978, -0.00347705372, -0.0191271063, 0.00217067497, 0.0201073047, 0.0185177941, 0.00897411, 0.0474468805, -0.00158619869, 0.0109808668, 0.025140753, -0.00819260068, -0.00113583752, -0.00208292063, 0.0262534097, -0.00982184894, -0.013497591, -0.0160540529, -0.0201337971, -0.0245314408, -0.00459302217, 0.0140539194, -0.00315749575, -0.0124909012, 0.0193522871, 0.00708656665, -0.00353666022, -0.0191535987, 0.00471554697, 0.00137757557, -0.00696735317, -0.0181204174, -0.00899397861, 4.20402685e-05, 0.0135638202, 0.00815286301, -0.0066759428, -0.0296973493, 0.0105569968, -0.000327215588, 0.0207960922, 0.0094907, -0.0152460523, -0.000239254397, -0.00382475904, 0.00170706771, -0.0165573973, -0.0270746574, 0.00316577451, 0.0233922917, -0.0305980723, -0.00152328063, -0.00880853552, -0.0127823111, -0.00321047939, 0.00298364321, 0.00161682989, 0.017140219, 0.0061394833, -0.0149678877, -0.00930525735, -0.00515266228, 0.00522882631, -0.00725876354, -0.000562951551, 0.00522220321, 0.00933837239, 0.00471885828, 0.0278959051, 0.000923902844, 0.00857673213, 0.0124909012, -0.0107093249, 0.00217398629, -0.0142658539, 0.0163322184, 0.00373534905, -0.0177097935, 0.0182396304, 0.0145042809, -0.00671899226, 0.0219617337, -0.0207298622, 0.00383138191, -0.00695410743, -0.0112656541, 0.00964302849, -0.015643429, -0.00186601875, 0.00961653702, 0.0118418513, -0.0156169375, -0.0103848, 0.00418239878, -0.00417577568, -0.0224385858, -0.0264653452, -0.0212464537, -0.0299357753, 0.0015506004, 0.0122590978, 0.00959666818, 0.00583151542, 0.00717928773, 0.0119610643, 0.016358709, 0.0074773212, 0.0304921046, -0.00591761433, -0.00904696248, 0.0183588434, 0.00245215069, -0.0200543199, 0.00381813594, 0.00440095644, 0.0130803445, 0.015405003, -0.0206238944, 0.0128352949, -0.0145572647, -0.000495894055, 0.00492417, 0.00236274069, 0.00663289381, -0.0014611904, 0.0110669648, -0.0197629109, -0.00477846526, 0.0285846926, 0.00901384745, 0.0155639546, -0.00853699446, -0.0122524742, 0.0260414761, 0.00625869632, -0.00699384511, -0.0100735212, 0.0183588434, -0.0203457307, -0.0183720887, -0.0316312537, 0.0101198815, -0.00579508953, -0.0120736547, 0.0400026739, 0.00292569236, 0.02090206, 0.0187297296, 0.0218690112, 0.0133121479, 0.00248360983, 0.00405656267, 0.00373534905, -0.0151268393, 0.00661302498, -0.0277369525, -0.00395721802, -0.00787469838, 0.0208755676, -0.00644745072, 0.0124180485, -0.00246042944, 0.0185972694, -0.0108815217, -0.00863633864, -0.00918604434, 0.0127756884, 0.0175243504, -0.0134777222, 0.00140241161, -0.00952381548, 0.00804027263, 0.0131796887, 0.00905358512, 0.00606994238, -0.0041989563, -0.00944434, 0.0125173926, -0.00913306, -0.00082331663, -0.0118021136, -0.0155639546, -0.0077886, 0.00663289381, -0.0207431093, -0.00335949613, 0.000541840855, 0.0159083474, -0.0244917031, 0.0113914898, 0.0230611451, -0.0190211385, -0.00862309337, 0.0113583747, 0.00332803698, -0.0147956908, -0.0110537186, 0.00452679256, -0.0112192929, 0.00386449671, 0.00245711789, -0.0133651318, 0.00357308658, 0.00251838029, 0.0038545623, -0.0179482196, -0.00416253, -0.00430492358, 0.00849063415, -0.0192595664, -0.00346380775, 0.0110073583, 0.0153785115, -0.00325849606, 0.00139578863, 0.0167693328, 0.0239751134, -0.0215776, 0.000537701533, -0.00808663294, 0.0191535987, 0.00244056061, -0.0370090976, 0.00839128904, 0.00804027263, -0.010927883, 0.00116646872, -0.00475528464, -0.00951719284, 0.0185575318, -0.0162130035, -0.023710195, 0.0169282835, -0.00199682219, 0.0238956362, 0.0086429622, -0.0172726773, -0.00751705887, 0.0239088833, 0.00682164822, -0.0035763979, 0.0203854684, 0.0303596444, -0.0187429748, -0.0202662554, -0.00755017344, 0.0204516985, 0.00293397089, -0.00752368197, -0.0157891344, 0.0122061139, -0.00455659581, -0.00852374826, -0.0163454637, -0.00552023668, 0.0256838351, 0.00898073241, 0.00102738652, -0.000997583265, 0.0121465074, 0.00507649826, 0.0268362314, 0.00524869515, -0.00503013749, 0.00165822345, 0.0104973903, -0.0114444736, -0.000834906823, 0.00446056295, -4.48860701e-05, 0.0373534895, 0.0158421192, 0.00960329082, -0.00435128435, 0.0381747372, -0.016186513, -0.00563944969, -0.0075435508, -0.0196834356, -0.00536128553, 0.0213126838, -0.00236936379, 0.00489436695, -0.00416253, -0.0237234402, -0.0133253941, -0.0172991697, 0.0156301837, -0.00583813852, 0.00700046774, -0.0159348398, 0.0111795552, -0.0135903126, -0.00755679654, 0.016186513, -0.00876879785, 0.00994106196, 0.00383800501, 0.00629512267, 0.00107954233, 0.00631830329, -0.00368236541, -0.0154182492, 0.00784158334, 0.00227167504, 0.00417577568, -0.00216736342, 0.0164381843, 0.00657659862, 0.0129412627, -0.0326379426, -0.00506987516, -0.0122988354, -0.00621895865, 0.0116365394, -0.01528579, -0.0126101142, 0.00265911804, 0.000676783675, 0.00255811797, 0.0126564754, -0.0027402495, -0.0143983131, 0.02914102, 0.00335287303, 0.00141896901, 0.0300947279, -0.000754189503, 0.00219551101, 0.00179647771, -0.00579508953, 0.0209815353, 0.0215378627, -0.035181161, 0.0153387738, -0.00357308658, -0.0203192383, -0.0106695872, -0.00216901908, -0.000537701533, 0.012987623, 0.0134446071, -0.011914704, -0.00978211127, 0.0118021136, 0.0108815217, 0.0173124149, -0.00560633512, -0.00768925576, -0.00380820152, 0.0173389073, -0.00539108878, 0.016477922, 0.00768263265, -0.00815948565, -0.0141466409, -0.00728525501, 0.00190741231, 0.0041989563, -0.00430161227, 0.00346380775, 0.00400689058, -0.00319061056, 0.0271541327, 0.0341744684, -0.00629181135, 0.0325319767, 0.00827207603, -0.00603682734, 0.000442082528, -0.00103566528, -0.0239088833, -0.0174713675, 0.0202662554, 0.0239883587, -0.0257103276, -0.00862309337, 0.00413603801, -0.00341082411, -0.00370223424, 0.0135903126, 0.0110272272, 0.0133386403, 0.0235777348, -0.00538446568, -1.39185631e-05, -0.00363269309, 0.0155772, -0.0179084819, 0.0123319505, 0.00124180492, -0.00338433217, 0.0380687714, -0.00957017578, 0.00191072375, -0.00605338486, -0.00432810374, 0.000180165196, 0.0125041474, 0.00404000515, -0.0107225711, -0.00920591317, 0.00109361613, 0.00016629837, 0.00336115179, 0.00154480524, 0.0110404734, 0.0128286723, -0.0119279493, 0.00561295776, -0.00382475904, -0.0180276949, -0.0301742032, 0.0185442865, 0.00898735598, 0.000403586571, -0.00449698931, -0.00238426542, -0.0120802773, 0.0190741234, 0.019166844, 0.0225710459, -0.000670160691, -0.00276342966, 0.0177892689, 0.0165971369, -0.024187047, 0.0088880118, -0.0151930684, 0.0147956908, -0.00578846643, -0.00962316, 0.00107954233, -0.022041209, 0.00122441957, 0.00356977503, -0.00325187296, 0.019286057, 0.0137757557, -0.0190211385, 0.00293397089, 0.025154, 0.00246374076, -0.0137095256, 0.0163984466, 0.0138949687, -0.029803317, 0.00978211127, 0.000157812698, -0.0141996248, -0.0147029692, 0.023167111, -0.00178654329, -0.00244552782, -0.0139611978, -0.0248096064, -0.00681502512, -0.00819260068, -0.00275349524, -0.0137095256, -0.0141598871, 0.0114842113, -0.00229154387, -0.00316743017, 0.0149546424, 0.0131796887, 0.0181469079, 0.000572885969, -0.00762964925, 0.0131598199, 0.0115040801, -0.00195874018, -0.00425525149, 0.00370554579, 0.0198688786, -0.0148619208, 0.00459302217, 0.0120604085, 0.00238260953, -0.0127160819, 0.0140804118, -0.0141731333, -0.00238592108, -0.00855024066, 0.0220279619, -0.0229021925, 0.0159348398, -0.00819260068, 0.000521558046, -0.0228492096, 0.00342406984, -0.037327, 0.0145042809, 0.0148221832, -0.00555004, -0.0265183281, -0.0135373287, 0.00576859759, -0.0124909012, -0.00322703691, -0.00872906, -0.0112192929, 0.00719253393, -0.00714617316, -0.000258295418, 0.00421551336, -0.00348367658, 0.0249420647, 0.00501689175, -0.000612623757, 0.0142526086, 0.0136300502, 0.0174448751, -0.00108202593, -0.00429498916, 0.000444980076, -0.00152493641, -0.0167295951, -0.0035763979, -0.0153917577, -0.00681502512, 0.000525283453, -0.000390961563, 0.0197894014, 0.00855686329, 0.0160937905, -0.00346711907, -0.00641433615, 0.0293794479, 0.00327174179, -0.0149546424, -0.0122392289, 0.0353401117, 0.00231969147, 0.01940527, 0.00683489395, 0.00118964911, -0.00358964386, 0.0193920247, 0.0103185708, 0.0134313609, 0.00642427057, 0.00206636335, -0.00216074055, -0.0321610905, 0.0199880917, -0.00471885828, -0.0141996248, -0.00883502793, -0.00107457512, 0.00437115319, 0.00781509187, -0.000678439392, -0.00947745517, -0.00983509421, -0.0169945136, -0.00566263031, -0.0178290065, 0.0141996248, -0.00555004, 0.00278826593, 0.00572886, 0.00151086261, 0.00570236798, 0.00659315614, 0.0017136907, 0.000235735963, 0.0127160819, 0.00259123277, -0.0142261162, 0.00665276265, -0.0102390954, 0.00779522303, -0.00189251057, -0.010960998, -0.018570777, 0.0202530101, 0.0165309068, -0.000854361744, 0.0243724901, 0.000503758842, -0.00427843165, -0.00159530528, -0.00867607631, -0.00767601, 0.0254454091, 0.0237896703, 0.00713292696, -0.0151798222, -0.00511954771, -0.00450692372, -0.00901384745, -0.0183588434, -0.0011068621, -0.000596894184, 0.0231936034, 0.00524207205, 0.00244056061, 0.0141863786, 0.00342075853, 0.0122657204, -0.00945096277, -0.00832506, -0.000404000515, -0.0136962794, 0.011523949, 0.0221869145, -0.0111265713, 0.0230876356, -0.0212464537, 0.0191933364, -0.0325054824, -0.00735810772, 0.00560964644, -0.00317405327, 0.00620902423, 0.0251142625, 0.004748662, -0.00308961049, -0.0108616529, 0.0109345056, -0.0274455436, 0.0298827924, 0.00927876588, 0.00115901791, 0.00103235373, 0.00847738795, 0.00631499151, 0.0131333284, -0.00675210683, -0.0245711785, 0.0130935907, -0.00137095258, 0.0272601, -0.00229651108, 0.00363600464, -0.0018080679, -0.0218822584, 8.49601493e-05, 0.00591761433, -0.0150606092, 0.00594079448, -0.00340751256, 0.000225180615, 0.0138817225, 0.0270216744, 7.26326471e-06, 0.0248625893, -0.00849725679, 0.0165044144, -0.0132657876, -0.0184383187, -0.0169680212, -0.0154314954, -0.00931188092, -0.0299887601, 0.0111331949, 0.0150341177, 0.00295549561, 0.0119743105, 0.00234618341, 0.00226670783, 0.00458308775, 0.006987222, 0.00906020869, 0.0192463193, -0.0198821239, -0.00766276382, -0.0325584672, 0.003583021, 0.0137757557, 0.00506987516, 0.000876714243, 0.0126233604, -0.013736018, 0.0145572647, 0.00872243755, 0.00588118797, 0.003583021, 0.00364593905, -0.00434797257, -0.00413603801, -0.00857010949, -0.018332351, 0.0193257947, -0.0136962794, 0.0104179149, -0.00697397627, -0.00851712562, 0.00869594514, 0.0128882788, -0.0130339842, -0.0223856028, -0.0182528757, -0.000758328824, -0.00817273185, -0.0192065816, -0.0254719015, 0.0202662554, -0.00931188092, 0.0147162154, 0.013974444, -0.00396053, 0.0159215946, -0.0257235747, -0.00566263031, 0.00324690575, 0.00342406984, 0.0135505749, -0.0254056714, -0.00235777348, 0.00704682851, 0.00895424094, 0.0116232932, 0.00461620279, -0.0247698668, 0.0250480324, 0.00149678881, 0.00822571572, 0.0280813482, 0.00179647771, 0.0091794217, -0.00494072773, 0.0112524079, -0.0198158938, -0.0206371415, -0.00842440408, -0.0160540529, -0.00309954491, -0.0110603422, -0.0184648111, -0.00535797421, -0.003366119, -0.00889463443, 0.00632161461, 0.00194549432, -0.0181469079, 0.019166844, 0.0131863123, 0.0141201494, 0.000603517168, -0.014212871, -0.00175839569, -0.0272071175, 0.0214848798, -0.00852374826, -0.0094112251, 0.0200543199, -0.0118418513, -0.0121928677, -0.0216835681, -0.0147029692, -0.00952381548, 0.0172991697, -0.00483476045, 0.00208623218, 0.0258692782, 0.0123650646, 0.00305649568, 0.00936486479, 0.00189747778, 0.0019752977, -0.0176038258, -0.0139479525, 0.00218226505, -0.00815948565, 0.0113053918, 0.0033727421, -0.0245976709, 0.0188621879, 0.00939797889, 0.00340088969, 0.00118385395, 0.0223988481, 0.0147029692, 0.0161997583, -0.000931353658, -0.00880853552, 0.0212464537, 0.0086827, -0.0139479525, 0.011199424, -0.00934499595, -0.0169415306, -0.0152725438, 0.0127756884, -0.0074706981, 0.0114179822, 0.0129677542, -0.00149430521, 0.0025514951, 0.0179879572, -0.0104046687, -0.00780184614, -0.00862309337, -0.00182131375, -0.00813299417, 0.0011068621, 0.0170607436, 0.0143055916, -0.022451831, -0.00415259553, -0.00480826851, -0.0183455963, -0.0100536523, 0.0188621879, 0.000632906565, 0.0150871016, 0.0231538657, -0.0107225711, -0.0113782445, 0.026875969, -0.0276839696, 0.00282634795, -0.00195377297, -0.00394728361, 0.00210444536, 0.0114179822, -0.00838466641, 0.00183787115, -0.00538115436, -0.00640771305, -0.00484800618, -0.00404993957, -0.00631168, 0.00130389514, 0.018332351, 0.0251142625, 0.00831843726, 0.00368898828, 0.013855231, -0.00220378977, -0.0077819773, 0.0114312274, 0.02914102, -0.0153917577, -0.004748662, 0.00683489395, -0.00519571174, 0.0126630981, -0.0305980723, 0.0280813482, -0.0102324719, 0.00532817096, 0.0141333947, 0.0152063146, 0.0200278293, -0.00332141411, -0.00612954888, -0.0236439649, 0.0116961459, 0.0161997583, 0.000675541873, -0.00274356082, -0.0158686098, -0.0119213266, -0.0152328061, 0.0160805453, 0.00109941128, -0.016358709, -0.0104444064, 0.00770250149, 0.0127028357, 0.0117160147, 0.000507484248, -0.0134048695, 0.00829856843, 0.00338598783, -0.0136962794, 0.0138287386, -0.00996755343, 0.00105801772, -0.00143387064, -0.0181998927, -0.0465461574, -0.0232598335, -0.01535202, 0.00894099474, -0.0118948352, -0.0122855892, -0.0205576662, 0.0259355083, -0.00585800735, 0.00842440408, 0.0265978053, -0.00903371628, -0.000468574377, -0.0107755549, -0.0158686098, -0.0296443664, -0.00987483189, 0.0015365266, 0.0222266521, -0.0317902043, -0.0105569968, -0.0163984466, -0.0201337971, -0.0176435634, -0.00556659745, 0.00675541861, -0.00770250149, -0.0341214873, 0.0147294616, 0.0255381316, -0.0205974039, 0.0224385858, -0.0170342512, -0.00289092166, 0.00936486479, 0.0228094719, -0.00117391953, 0.0011424605, -0.00480826851, -0.0105238827, -0.00657991, -0.001534043, -0.0212729443, -0.0392079204, -0.00538446568, -0.00483144866, 0.00374859502, -0.014808937, -0.00197860901, -0.0155242169, -0.00939135626, -0.00931188092, -0.0138287386, 0.00896086358, 0.0040035788, 0.00422875956, -0.00876879785, -0.0218160283, -0.00402344763, 0.0202927478, -0.00568912225, -0.0030117908, -0.00741109159, -0.00292734802, -0.00492417, -0.000376680808, 0.00336115179, -0.0201470423, -0.0124644097, 0.0178422518, 0.00583151542, 0.0115371952, 0.00189747778, -0.00962316, -0.000299481937, 0.00375521788, -0.0022120683, 0.021021273, -0.00515928539, -0.0219882242, 0.00308629894, 0.0106828334, -0.000244842522, 0.000585304049, -0.00970925856, 0.0159215946, -0.00261441316, -0.00240413425, -0.00841115788, 0.00575204, -0.00870256871, 0.0146499863, 0.005523548, -0.0193257947, -0.0175773334, -0.013464476, -0.00557322, -0.0348897502, 0.00344393891, -0.0114974575, 5.88822477e-05, -0.0260282308, 0.00622227043, -0.0088482732, 0.00989470072, -0.00800053496, 0.00773561653, 0.0145440185, 0.0128485411, -0.0156566761, 0.00913968403, 0.0148884123, -0.0139082149, 0.0379363112, -0.0193390418, 0.012272344, -0.00532817096, -0.00377839827, -0.0263858698, 0.0149943801, 0.00434466125, 0.00977548771, -0.0103450622, -0.0154712331, 0.0273130834, -0.00805351883, -0.00680177938, -0.0355255529, 0.0208490752, -0.00983509421, -0.0237499326, -0.00821909215, -0.0418835953, 0.00399364438, -0.000465676829, 0.00877542142, 0.00376846385, -0.00952381548, -0.00786807574, -0.0323995166, -0.0182926133, 0.028187314, -0.0333002396, -0.011199424, 0.00897411, -0.0340420119, 0.0181998927, 0.0202530101, 0.000197860907, 0.00460626837, 0.00843765, -0.019948354, 0.0185972694, -0.00580502395, 0.000491754734, -0.00909332279, 0.00450030062, 0.00196536328, -0.0177760236, -0.0159480851, 0.023167111, -0.0014611904, 0.00737797655, -0.0189549103, -0.00473210448, 0.00704020588, -0.0241075717, 0.00764289498, 0.0126962131, -0.000634976197, -0.0117425071, -0.0157096591, 0.0247566216, -0.0169282835, -0.0135571975, 0.00255811797, -0.00547387591, -0.0187297296, -0.00911319163, 0.0109477518, 0.0316842385, 0.00851712562, -0.0318696797, -0.0109874895, 0.023286324, -0.00789456721, -0.0198688786, -0.0120405396, 0.0238823909, 0.0119478181, 0.00132790336, -0.0102192266, 0.00682827085, -0.0115835555, -0.0215776, -0.00590767944, -0.00511954771, 0.0164911691, 0.00780846877, -0.0130803445, -0.0311808921, 0.0299092848, 0.00456321891, -0.00122276391, 0.0117491297, -0.00851050299, 0.00432479242, -0.00906020869, 0.019047631, -0.00105553411, -0.0117822448, 0.00378502114, 0.0135571975, 0.0203457307, 0.00822571572, 6.01757929e-05, -0.00962978322, 0.00193224836, 0.0268892143, 0.00250844588, 0.000931353658, 0.0205046814, 0.00573879434, -0.00122855895, -0.00403338205, 0.00391085725, 0.00545400707, 0.00829194486, -0.0133585092, -0.0205709115, -0.018451564, 0.0153785115, 0.00505662942, -0.00305152847, -0.0108881453, -0.0246903915, -0.0199616, 0.00959666818, -0.0090867, 0.0121398848, 0.0216570776, -0.00023594292, 0.00129396073, -0.00531823607, 0.0218822584, -0.0120736547, -0.00143138703, 0.0103384396, 0.0016217971, 0.0181998927, 0.0114179822, -0.0156036923, 0.0228094719, -0.00131879677, 0.0097158812, -0.0167031027, -0.00788794458, 0.00203655986, -0.0116100479, -0.0261871815, 0.0191271063, 0.0140804118, -0.00386780826, -0.00432479242, -0.0105901118, -0.00220213388, 0.00616597524, -0.0072190254, -0.0201205499, -0.0281078387, -0.00628518825, 0.0178687442, 0.0181866456, -0.00802040379, 0.00332141411, -0.000486787496, 0.014451297, 0.00758991111, 0.0443738289, -0.00437777629, 0.00646400824, -0.0108417841, 0.00947745517, 0.00264752796, 0.018451564, -0.0150076253, -0.00475859642, -0.0113053918, -0.0159878228, 0.00130969018, -0.0159745775, 0.00536790863, 0.0141333947, 0.0124909012, 0.020067567, 0.00523876073, 0.00269885594, 0.0174581204, -0.00468243239, -0.00911319163, 0.0112987682, 0.00793430489, 0.00503344927, -0.0235909801, 0.00629843445, 0.0120471632, 0.0167031027, -0.0339625366, 0.0182396304, -0.0181336626, -0.0126498519, 0.0202662554, -0.0132591641, -0.00478177657, -0.00588781061, 0.000116626172, -0.0207033716]
|
19 May, 2020
|
Fabric.js | Ellipse cornerColor Property
19 May, 2020
In this article, we are going to see how to set the color of controlling corners of canvas ellipse using FabricJS. The canvas means ellipse is movable and can be stretched according to requirement. Further, the ellipse can be customized when it comes to initial stroke color, fill color, stroke width, or radius.
To make it possible, we are going to use a JavaScript library called FabricJS. After importing the library using CDN, we will create a canvas block in the body tag which will contain our ellipse. After this, we will initialize instances of Canvas and Ellipse provided by FabricJS and set the color of controlling corners of canvas ellipse using cornerColor property and render the Ellipse on the Canvas as given in the below example.
Syntax:
fabric.Ellipse({
rx: number,
ry: number,
cornerColor: string
});
Parameters: This function accept three parameters as mentioned above and described below:
rx: This parameter defines the horizontal radius.
ry: This parameter defines the vertical radius.
cornerColor: This parameter defines the color of the controlling corners.
Program: This example uses FabricJS to set the color of controlling corners of the canvas-like ellipse as given below. You have to click on the object to see the color of controlling corners.
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Ellipse cornerColor Property
</title>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<center>
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Set color of controlling corners of
canvas-type ellipse with JavaScript.
</b>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000">
</canvas>
</center>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a Ellipse instance
var ellipse = new fabric.Ellipse({
rx: 80,
ry: 40,
cornerColor: 'red'
});
// Render the Ellipse in canvas
canvas.add(ellipse);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property
|
https://www.geeksforgeeks.org/fabric-js-ellipse-cornercolor-property/?ref=next_article
|
CSS
|
Fabric.js | Ellipse cornerColor Property
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.00939767435, 0.00191650307, -0.0126080606, 0.0205853824, 0.0276547167, 0.0203519, 0.0124459201, 0.0180041026, -0.0148910014, -0.0476563945, 0.00931336172, -0.0110450238, -0.00226996979, -0.0463333242, -0.004789636, 0.0323762521, -0.0300933123, -0.0135419909, -0.0213636588, -0.0174463391, -0.0075168428, -0.0284848772, -0.018341355, 0.023465002, -0.000516823493, 0.0482271276, 0.0209485777, 0.023439059, -0.0329988748, 0.0163567532, 0.0514699407, 0.00125983323, 0.0141775822, -0.03232437, -0.0268505, -0.0233871732, 0.000841510191, 0.0370718502, -0.000758007751, 0.00441346969, 0.0214544572, -0.010616973, 0.00506527536, 0.00845725834, -0.00467938045, 0.00533118611, 0.000868263422, -0.022673754, -0.00736767333, -0.0575404912, -0.0177187342, -0.0215452556, 0.0326616205, -0.0141386688, 0.0249177814, 0.0173425693, 0.0149428863, 0.0438169, -0.0109542254, -0.00267045735, 0.0243600179, -0.0635072663, -0.0261889659, -0.00498420512, -0.0279660262, 0.00238346821, 0.00765304081, 0.010941254, -0.00409243116, 0.00843780208, -0.0187823772, 0.0160584152, 0.0239189956, -0.00140738126, 0.00147548027, 0.00439401297, 0.0225181, 0.0124913193, -0.0340625159, 0.0349445641, -0.00837943144, -0.0091187926, -5.51278354e-05, 0.0488238074, -0.00884639658, -0.0193401426, 0.0584744215, -0.038343031, 0.00643374259, 0.0250993799, -0.0109607112, 0.0214285143, 0.0270320959, -0.0340884589, -0.01539688, -0.0296263471, 0.0213247444, -0.0287443027, -0.0511326902, 0.0233482607, -0.00289745419, 0.0471634865, 0.00367086544, -0.0155914491, 0.00211431459, -0.0174074247, 0.0143980933, -0.0243989322, 0.0299117155, 0.00298338872, 0.0244508162, -0.0164216105, 0.000617350684, 0.0326356776, -0.00883991085, 0.0147223752, 0.00939767435, -0.0359303765, 0.0466965213, 0.00110417814, 0.0137884449, -0.0228683241, 0.0289259, 0.0414042473, -0.0299376585, 0.0227904953, -0.00842483062, 0.00679045217, 0.0311828982, 0.0102213491, 0.00516580231, -0.0226348415, 0.0064726565, -0.0106558865, 0.0626771078, 0.0159287024, -0.0216879398, 0.017550109, 0.0136587322, 0.00420917245, -0.0333620682, -0.0341922306, -0.00194568839, 0.0208707508, 0.0031260727, 0.0109866532, 0.0154747078, -0.0169274881, -0.0128934281, 0.00363843725, -0.063092187, 0.00693313591, 0.0356450118, -0.00905393623, 0.0351002179, -0.0283811074, -0.00504257577, 0.00120875891, 0.0259035975, -0.021039376, 0.0383689739, -0.00734173087, 0.0140997544, 0.0224013589, -0.0225181, -0.0177317057, 0.008574, 0.017524166, -0.0727428049, 0.0329469889, -0.00786058, -0.0159287024, 0.0247491561, -0.00401784619, -0.0509251505, -0.0199368205, -0.000614513236, -0.0466965213, 0.0199108776, -0.0225959271, -0.0507176109, 0.015124484, 0.0184840392, 0.0642855391, -0.00340495468, -0.0225959271, 0.0225310717, -0.00633321563, -0.0171739422, -0.0353596434, 0.00786058, 0.0270061549, 0.0533896871, 0.00214512134, 0.00243373192, -0.0187175218, 0.0261889659, 0.0112071652, -0.0116611589, -0.0313904397, 0.0218176525, -0.0347889066, -0.0308715887, -0.0551018938, 0.0162010975, 0.0096571, 0.017277712, -0.0613799803, 0.0540123098, 0.0114536183, 0.00616134657, 0.0279919691, 0.0111487946, -0.000857724284, -0.0139830131, 0.00453345384, -0.0117454715, -0.00270450674, -0.0310272425, -0.0107855992, 0.00741955824, 0.032843221, -0.0139700426, -0.0198071077, -0.06044605, 0.000564655, 0.0052079591, 0.0167458914, 0.00277260598, -0.0601347424, -0.00177381921, -0.00329145603, 0.00819134805, -0.00513986, 0.0375647545, 0.0195606537, -0.000644509273, -0.00482855, 0.00195865962, 0.0133474218, 0.00388164818, -0.0152801387, -0.0251772068, -0.0187823772, 0.0413264185, 0.00771789718, -0.0135549624, -0.00186948222, 0.00369680789, -0.0136068473, -0.0413523614, -0.0277066026, -0.00425781449, 0.0108893691, -0.0496020801, 0.00831457507, -0.0242303051, -0.050769493, 0.0484865531, 0.0276547167, 0.0612243265, 0.0277844295, 0.0108634261, 0.00431618514, -0.0176798217, -0.0243470464, -0.00784761, -0.0405481458, -0.00725093205, -0.00574626634, 0.0172128566, -0.0293669235, 0.0514699407, -0.0489016324, -0.016706977, 0.0353337, -0.0367345959, -0.0114665898, 0.027525004, -0.0121605517, -0.00956630055, 0.0176927932, 0.0263316482, 0.0193012282, -0.00677099545, -0.0129064, -0.0260333102, 0.0160713848, -0.0246972702, -0.0221030191, -0.0144888926, -0.0358784944, 0.0179522187, -0.012672917, 0.0368124247, -0.00529875793, 0.0111682508, -0.02262187, -0.0123810638, -0.0208058935, -0.0222067889, -0.046904061, -0.0235168859, 0.000887720322, 0.00957278628, 0.0314163826, 0.0325319096, -0.0164475515, 0.00444589788, 0.0240357369, 0.0262927357, 0.00137981726, -0.0215841699, -0.0521703884, 0.00495502, -0.0168626327, 0.0639742315, 0.00528254407, -0.0252550337, 0.0172647405, -0.00223916303, -0.014553749, -0.00568465283, 0.0133344503, 0.036111977, -0.00671911053, -0.0042448435, -0.021804681, -0.00437455578, 0.0335955508, -0.0487459786, -0.0198330507, 0.000101996629, 0.0199108776, 0.00210782909, -0.0113433627, -0.00313255819, 0.0037649069, -0.0234520305, 0.0507954359, 0.0181467868, 0.0410151109, -0.0119724693, -0.0238411669, 0.0273693502, -0.0470597148, 0.00115525245, 0.00499069039, 0.0492648296, 0.0328172781, 0.000875559752, 0.0193531141, -0.018043017, -0.0206502397, 0.0126080606, -0.0271877516, -7.39766911e-05, -0.03079376, -0.0395363867, -0.00657642679, 0.0281735677, 0.015370938, 0.0431683399, -0.00338225486, 0.0422603525, -0.0173685104, -0.0101046078, 0.035074275, -0.00537658529, -0.0083210608, -0.03232437, -0.0306381062, -0.0307678189, -0.0294447504, -0.000655453769, -0.0171220582, -0.00716661895, -0.00898259412, -0.0500431024, 0.00324119255, -0.0341403447, 0.0444395207, -0.00788652338, 0.0143721513, 0.0559320524, 0.0397439264, -0.0302749109, -0.0227126684, 0.0150596276, -0.025345834, -0.0590970404, 0.00763358409, 0.0383949168, -0.0107207429, 0.0266948435, -0.0184710678, -0.00957927201, -0.0191326011, 0.0277325436, -0.0411448218, -0.040366549, 0.0127183162, -0.000752738153, -0.0253328625, 0.0288740154, -0.0205075555, -0.0237892829, -0.0282513946, 0.0325578526, -0.0173555408, -0.00501339044, 0.0209745206, 0.0267986134, -0.0272915214, 0.0330248177, 0.0287961867, 0.0198330507, 0.0683844611, 0.000164572804, 0.00328497053, 0.0589932688, -0.0191455726, -0.0372534469, -0.00454318244, 0.0125626614, -0.0151115125, -0.0319871157, 0.00210945052, -0.0150725991, 0.0332842432, -0.106468067, 0.00233969023, -0.000173997236, -0.000394407252, 0.035567183, 0.0223105587, 0.0451918542, -0.00929390453, 0.0288999584, 0.0321687125, -0.00236887555, 0.0070498772, 0.0249048099, -0.0422862917, -0.0207669809, 0.0354893543, -0.0475266799, -0.0191326011, 0.0200795028, 0.00546414126, -0.0133085083, -0.0030368953, -0.0461776704, -0.0165383518, 0.00277909148, -0.0260851942, 0.0200665332, 0.0153449951, 0.00670613907, -0.00738064433, -0.0341922306, -0.00783463847, -0.00590516394, 0.00548359845, 0.0197811648, -0.0100527229, 0.00105472526, -0.00537982816, 0.00835348852, 0.00795786548, 0.0077697821, 0.00743252924, 0.00800326467, 0.0393288471, 0.0163567532, 0.026980212, -0.00719904667, -0.00394974742, 0.0146315759, -0.0383689739, 0.0251253229, -0.0210912619, 0.00244508171, 0.0177446771, 0.0138273584, -0.0189639758, 0.0231018066, -0.0193142, -0.0132566234, -0.00780869601, 0.0626252219, 0.0246713273, -0.0218435936, -0.0108763976, 0.00452696811, 0.0134382211, -0.000110053, -0.0336214937, 0.0110774525, 0.00351521024, 0.0148910014, 0.028588647, -0.00276774168, 0.0305862203, 0.0284589343, 0.021311773, -0.0206632093, 0.00531172939, -0.0309494156, -0.021065319, -0.0191196315, 0.0111487946, -9.64737119e-05, 0.00835997425, -0.00603163382, -0.0258646831, 0.0181338154, 0.0309753586, -0.0331285857, -0.00292015402, 0.00379733508, -0.0280179121, 0.0260851942, -0.0104029467, 0.0116417017, 0.0508473217, 0.0338290334, -0.0185618661, 0.0310531855, -0.0033627979, -0.0125561757, -0.000312120828, 0.0258646831, 0.0133863362, 0.0166161787, -0.0391991362, -0.00718607567, -0.0246583577, 0.0120438104, -0.0164864659, -0.0553613193, -0.000887720322, -0.0082497187, 0.00158411462, -0.00418647286, 0.0051139174, 0.00166680629, 0.0102083785, -0.0074455007, 0.0194439124, -0.0100267809, 0.00810703449, -0.002326719, 0.00598299177, 0.021882508, -0.000870695512, 0.0315460935, -0.0335177258, -0.0344257131, 0.00786058, 0.0352039859, 0.000118768061, 0.0189380329, 0.0249566957, -0.000961494341, -0.0250474941, -0.000492097, 0.0167977754, -0.0299636, -0.0213247444, 0.0170831438, -0.0399774089, -7.2861978e-05, 0.0235558, -0.00751035707, 0.00296717463, 0.0197811648, -0.0364751704, 0.0161103, 0.02747312, -0.0164475515, -0.0115119889, 0.0179262757, 0.00492259162, -0.0163826961, 0.00908636488, -0.00562628219, -0.00034353559, -0.0546349287, -0.0197033379, -0.000863399182, 0.0177317057, -0.0169015452, -0.00128334365, -0.0171090867, 0.0517034233, 0.0425716601, -0.00478639314, -0.00448156893, -0.0244508162, 0.0174203962, 0.00305959489, 0.0151374554, 0.0145018641, -0.00913176406, -0.0338549763, 0.0074455007, 0.0241913926, 0.00438752724, 0.00452048238, -0.0148131736, 0.0178095344, -0.000726795639, 0.00522741582, -0.0140219275, -0.0245675575, 0.0406519137, 0.0232574604, 0.00406000298, -0.0123810638, -0.0105650881, -0.0146575188, 0.0333361253, 0.0120697534, 0.0405481458, -0.00363195152, -0.00387191982, -0.0275509469, -0.00636888668, -0.0121346097, -0.0252420641, 0.00253101625, -0.0234260876, 0.0179781597, 0.00987761095, 0.0303267948, 0.00257803709, 0.0350223891, -0.0178095344, -0.00506851822, -0.00310499431, 0.011855728, 0.00206729397, 0.028095739, 0.00249372399, 0.000666398264, -0.0347889066, 0.0276806597, 0.0073611876, -0.0142294671, -0.00928093307, -0.00921607669, -0.0215063412, 0.0138792433, -0.00444589788, -0.00244021742, 0.000941226725, 0.028588647, -0.0279141422, -0.0137495305, -0.000449940417, -0.0284589343, -0.000396028656, -0.0247880686, 0.004319428, 0.000366640656, 0.0398476981, 0.0194698554, -0.00327524194, 0.00814594887, -0.0271877516, 0.0165383518, -0.00610946119, 0.0173814818, 0.0190028902, 0.00248075253, -0.0275768898, 0.046904061, 0.0456069335, 0.0183672979, 0.0096571, -0.0304824505, -0.00314715086, -0.0184970107, -0.0151763689, -0.00894368067, -0.0213766284, 0.0174333677, 0.001952174, -0.0118686985, 0.0232704319, -0.00195865962, 0.000567492447, -0.014553749, 0.0235687718, -0.00994895305, 0.00743901497, -0.0346591957, -0.000990679604, 0.00543171307, -0.00408270257, -0.00361249479, -0.015617392, 0.0300673712, -0.0162659548, 0.0594602339, -0.0130620543, -0.00660236925, -0.0179911312, -0.0277325436, 0.0161362421, 0.0119205834, -0.0112590501, 0.00392380496, 0.00465343799, -0.0379020087, 0.0152412253, -0.00601866283, 0.00562628219, 0.0128869424, 0.0173425693, 0.016706977, 0.0122383796, -0.038317088, -0.00630078744, -0.000462101, 0.0271618087, -0.0190677457, 0.0115184747, 0.00883991085, 0.0184451248, 0.0132371662, -0.0101046078, -0.0104678031, -0.0240227655, 0.0349705033, 0.0128480289, 0.0108634261, -0.00963764265, -0.0159027595, -0.0103380904, -0.0336993225, -0.0221419334, -0.0105521167, -0.00327524194, -0.0348667353, -0.0082302615, -0.000210174869, 0.00867128465, 0.00689422246, 0.00515931705, -0.0104418611, 0.0536491126, -0.0152152833, 0.000113701164, -0.0152152833, -0.0178614184, 0.00465668086, -0.00406000298, 0.0326097384, 0.000548846263, 0.0407038, -0.0234520305, 0.0250864085, 0.0152023118, 0.0184710678, 0.00219862792, -0.00356385252, 0.0156692769, 0.000558169326, -0.00718607567, -0.0251253229, 0.0079902932, 0.00479612174, -0.0159546435, 0.0142164957, 0.0170442294, -0.0427532569, -0.000736929476, 0.0208448078, -0.00342116877, 0.00137738523, 0.0292372108, 0.00112525641, -0.00121200166, 0.0104742888, -0.0141127259, -0.0153320245, 0.00251155929, 0.000649373455, -0.00964412838, -0.00128415425, 0.00154682226, 0.0197422504, -0.0208188649, 0.00660561211, -0.00416701566, 0.00823674724, -0.0194568839, -0.0423122346, -0.0228164382, -0.0121994661, 0.0222975891, 0.00633321563, 0.0370977893, 0.00738064433, -0.0191974584, 0.00269964267, -0.018341355, -0.00540252775, 0.00367086544, -0.0340884589, 0.00299473875, 0.00849617273, 0.0213506874, -0.00325902808, 0.0345035382, 0.0119270692, 0.00582733657, 0.04202687, -0.00524363, -0.0346591957, 0.000576004793, -0.013490106, -0.0360600911, 0.045788534, 0.0222197603, 0.00626835926, 0.00372923608, 0.0147742601, -0.00876856875, 0.0163567532, -0.0338549763, 0.0451140255, 0.0103899753, -0.00137900666, 0.0233093463, 0.020546468, 0.00283746212, 0.00738713, -0.0176409073, 0.0153320245, -0.00184516108, -0.0179262757, 0.00873614103, 0.0363454595, 0.0121410955, 0.0395104438, 0.0187045503, -0.00347953942, 0.0160584152, 0.0281216819, -0.00246129581, 0.0358006656, 0.0228812955, 0.00283908355, -0.00628457312, -0.00266235019, 0.0021532285, -0.0417415, 0.00233482593, 0.0120438104, -0.003199036, 0.0148391165, 0.036553, -0.034296, 0.00882693939, 0.0134122781, -0.0273693502, -0.00464046653, -0.0346851386, 0.0120827248, 0.0299895424, -0.00953387283, 0.0100916373, -0.0167848039, -0.00463722367, 0.00990355387, 0.00367735093, 0.0117779, 0.0283292215, -0.0401330665, -0.0342181735, 0.00944955926, 0.00155168644, -0.00706933439, -0.0275509469, -0.031805519, -0.00517228805, -0.0522222742, -0.0188861489, -0.0100397514, 0.0146834617, -0.0276287738, 0.0328951031, 0.0462036133, -0.0053474, -0.0151374554, -0.0109282825, 0.0216749683, 0.00940416, -0.0116741303, 0.00603163382, -0.00596677745, 0.046981886, -0.0119205834, 0.0309234727, 0.0250604656, 0.011855728, 0.0154228229, 0.0294447504, 0.00331091299, 0.0365270562, -0.0118362708, 0.0449583717, 0.00599596277, -0.0162918977, 0.0465927497, 0.0309234727, 0.0178354774, -0.0175371375, 0.00710176257, -0.00745198643, 0.0236595701, -0.0322206, -0.0205334984, -0.0370718502, -0.000410621316, -0.0233223177, -0.00152898673, 0.00646941364, 0.0375647545, 0.0546349287, 0.0043291566, -0.0150466561, -0.00648562796, -0.0180689599, 0.0037584214, -0.0301192552, -0.0133863362, 0.0294188075, 0.0089501664, 0.000996354618, -0.00864534173, -0.0015946537, -0.0272915214, -0.00855454337, 0.0129777417, -0.0115184747, 0.0182765, -0.0173166264, 0.0381095484, 0.028095739, -0.00813297741, -0.0061710747, -0.00242724619, -0.0111617651, 0.00802272186, 0.0132631091, 0.00117714144, 0.0212598871, -0.00762061263, -0.0092095919, -0.00336604076, 0.0160065293, -0.0317017473, -0.00931336172, -0.0101629784, 0.00763358409, -0.00174787664, 0.0396920405, 0.0227645542, -0.00830808934, 0.037720412, 0.0160584152, 0.00455291057, 0.0185229536, 0.00164329598, -0.0123421494, -0.0103380904, 0.0179392472, 0.00660885451, 0.0179781597, 0.0174333677, 0.0170701724, -0.0023996823, 0.0120892106, -0.0095987292, -0.0104872603, 0.0231277496, -0.00130766467, -0.00982572604, -0.0297560599, -0.0232055765, 0.0129517987, 0.00879451167, 0.0266948435, 0.0326616205, -0.0297041759, -0.00169761304, 0.00429348554, -0.00959224347, -0.00253101625, -0.0121735232, -0.0119335549, 0.0575923733, -0.00997489598, 0.0132436519, 0.00579815125, 0.0113952477, -0.0623657964, -0.00275477045, 0.0196514521, -0.0149428863, 0.0345035382, 0.0201832745, 0.0161103, 0.00886585284, 0.0158249326, 0.0337512083, 0.0124199772, -0.0219862778, 0.00955981575, -0.0178873613, -0.00606406201, 0.00249534519, -0.00650184182, 0.0125172613, 0.0022375416, -0.0268505, 0.00390759064, -0.00227159122, -0.00143818802, -0.0171998851, -0.0137884449, 0.00202027312, -0.0103056626, -0.0466705784, -0.0118492423, -0.0208577793, -0.0127702011, 0.00202513719, 0.00460155308, 0.00453021098, -0.0141127259, 0.0111098802, -0.0109671969, -0.0142943235, -0.0131723098, 0.00275314902, 0.00810054876, -0.0195217393, 0.00482855, 0.00458533876, 0.0129323415, -0.0166421216, -0.0253198911, -0.0103445761, 0.00602839096, 0.00365140848, -0.00799677894, -0.00788003765, -0.0079902932, -0.0398476981, -0.00869074091, 0.0250345226, 0.01254969, -0.00177219778, -0.000364208536, 0.0079189511, 0.00152493326, 0.0272136945, 0.0116027882, 0.00644022832, 0.00119011267, -0.00967655703, -0.0188342631, 0.0104353754, -0.00190515316, -0.00023550936, 0.0314942077, 0.0135549624, 0.0369680785, -0.00292177522, 0.00600893423, -0.000401500904, 0.00942361727, -0.00954035856, -0.00518850237, -0.0139181577, -0.0245935, 0.00644995691, -0.0104159182, 0.00926147681, 0.0202740729, -0.033439897, -0.0220511351, 0.0566584431, -0.00876208302, -0.0198460203, -0.0225181, 0.00182570424, -0.0247621275, -0.00632348703, 0.00633645849, 0.00925499108, -0.0412226506, 0.0303267948, -0.006881251, 0.0195217393, 0.025073437, -0.00470532291, -0.00463722367, 0.0134252496, -0.0136976456, 0.0346851386, -0.0441282131, -0.00245805294, 0.0104613174, -0.0139441, -0.01539688, 0.00655048387, -0.0174593106, 0.00401784619, -0.0152541967, 0.0133993067, 0.0263965055, 0.0112785064, 0.00656994106, 0.030741876, -0.000195886227, -0.00171707, 0.0042351149, 0.0314682648, 0.000416701572, 0.00477666501, -0.0197811648, -0.0118946414, 0.0148780299, 0.00169923448, -0.015370938, -0.00543171307, -0.00628133072, -0.008638856, -0.000690314, -0.0263316482, -0.00669965334, -0.0130750258, 0.0119530121, -0.0222327318, 0.00474423682, 0.00793192256, -0.0154357944, -0.00194568839, -0.0158119611, 0.0215971414, -0.0433499366, -0.00331739872, -0.0107402, -0.0358266085, 0.00513986, 0.0160065293, -0.00401460379, -0.00788003765, 0.0277325436, -0.00127361517, 0.0178354774, 0.00706284866, 0.0265262183, 0.023465002, -0.0127118304, -0.03935479, -0.00501339044, -0.0108699119, 0.0323503129, -0.00449778279, -0.00220511341, 0.00837943144, -0.0136327893, -0.00472153723, 0.00632348703, -0.000475477602, 0.0201962441, -0.0168885756, -0.0149039729, -0.0119076129, 0.0210264046, -0.00570735242, 0.0111941937, -0.0409372821, 0.028095739, 0.0217787381, -0.0162010975, 0.00518201664, 0.00390110514, 0.00675802398, -0.0193790551, -0.028536763, 0.0233612321, 0.0198330507, 0.00492907735, -0.0238152258, -0.0164994374, 0.0282513946, 0.00871668383, 0.00426105736, 0.00490313442, -0.00671911053, 0.00100932585, -0.00914473552, -0.00472477963, -0.0164994374, 0.0172128566, 0.010370519, 0.00131577172, 0.0113433627, -0.0181208439, 0.00452048238, -0.00610297592, 0.0295485202, 0.0250215512, -0.0119724693, -0.0112590501, -0.0173036549, 0.00708879111, 0.0336474366, 0.00254074461, 0.0087101981, 0.0085675139, 0.00559061114, 0.00342441141, 0.00127929007, -0.00416377326, -0.00600893423, -0.00258776546, -0.00459182449, -0.0196514521, 0.0217527952, -0.0278103724, -0.0201832745, 0.000836646, 0.0129842265, -0.00244670315, -0.00959224347, -0.0085610291, -0.00540901348, -0.0048739491, 0.0076011559, -0.0220641065, 0.011978955, -0.00994895305, 0.017225828, 0.0140478695, 0.0104224039, -0.00823674724, 0.0172906835, 0.00979978405, 0.00525335874, 0.00376814976, 0.0122643225, -0.000230239792, 0.00825620443, 0.00292339665, -0.0228553526, 0.00119578757, -0.00431618514, 0.007685469, 0.0013255002, -0.0141646108, 0.00299636, -0.0200276189, 0.0183672979, 0.0384727456, -0.00811352, -0.0486162677, 0.00622620247, 0.0135030774, -0.00564898178, -0.00202675862, -0.0109671969, 0.00684233755, -0.0492907725, -0.0257738847, -0.0152282538, 0.00843131635, 0.00433564233, 0.00692665065, -0.0135938758, 0.0245156735, 0.00429672841, 3.65576598e-05, -0.00479612174, -2.25096883e-05, -0.0241654497, -0.0279141422, 0.00775681064, -0.000410013279, 0.00282611232, 0.0246064719, 0.000744631165, 0.0252290927, -0.0313385539, 0.00738064433, -0.00160032872, -0.0143980933, 0.0255144592, -0.00404703151, 0.0184580963, -0.0271877516, 0.00103770045, 0.0131333964, 0.0109866532, 0.0109996246, -0.00802272186, -0.00823674724, 0.00545441313, -0.00142927025, -0.0162918977, 0.00812000595, -0.0108763976, 0.0137106171, 0.00526308687, 0.0134252496, 0.0158768166, 0.000466965197, 0.00826269, 0.00901502278, -0.0188212916, -0.0113563342, 0.0132695949, -0.00158249319, 0.0107596563, -0.0128480289, 0.0128674852, -0.0221549049, 0.00329632033, 0.0021435, 0.0108634261, 0.0334917828, 0.0228683241, 0.00989058241, 0.00884639658, -8.57318955e-05, 0.0186526664, -0.0242951624, -0.0157211609, 0.000136400864, 0.0119724693, -0.00285529764, 0.0111617651, -0.00465668086, -0.00493231975, 0.0109023405, -0.0182765, -0.0145926625, 0.01188167, -0.0247232132, -0.00146007701, 0.0129128853, -0.0110450238, 0.00361249479, -0.0342181735, -0.00118605921, -0.0206761807, -0.00804217812, -0.0030368953, -0.0209096633, -0.0253198911, 0.0322465412, 0.0286664758, 0.0322724842, -0.00261370791, -0.00187110365, 0.00629754458, 0.000355290802, -0.0139570711, 0.00436807051, -0.0255663451, -0.0215971414, 0.0323762521, -0.0152023118, -0.00479612174, 0.00793840829, 0.00198622351, 0.0140608409, 0.012426463, 0.0118362708, 0.00375193567, 0.00687476527, -0.00866479892, 0.00171707, -0.0177706201, 0.0106753437, 0.0113822771, 0.00483503565, -0.0032784848, 0.00549981231, -0.00394974742, 0.000531821453, -0.0322984271, -0.0210912619, -0.0274990611, 0.00324281398, 0.0128480289, 0.0232444908, 0.0313644968, -0.0175760519, 0.0054479274, -0.0221938174, -0.00279530557, -0.00789949484, -0.00835997425, -0.0330507606, -0.0141386688, 0.0051139174, -0.00605433341, 0.00244994601, -0.0119140986, -0.029159382, -0.0113628199, -0.00155168644, 0.018289471, -0.0128156, 0.0200016759, 0.0208966937, -0.00346656796, 0.00902150851, 0.00175274094, 0.00500366185, -0.0155525357, 0.024775099, 0.0184451248, 0.00433888519, -0.000737334834, -0.0107402, -0.00747144315, 0.0121021811, -0.00808757823, 0.0393288471, -0.013516048, -0.00878154, -0.0104224039, 0.0117779, -0.0214025714, -0.0143332379, -0.0259554833, -0.0197681934, -0.00103040412, -0.00803569239, -0.0256312, -0.00158816809, -0.0241265353, 0.0268764421, 0.00518201664, 0.0113952477, 0.0176538788, -0.0109088263, 0.025371775, -0.0101435222, -7.75741864e-05, 0.00705636293, -0.0024726456, 0.00756224198, -0.0284329914, -0.000180280185, 0.0311050713, 0.00905393623, -0.00420917245, -0.000447913684, 0.0212339461, 0.00641752873, 0.0200405903, 0.0327135064, 0.019729279, 0.0056781671, 0.0128026297, -0.00345683959, -0.0343997702, -0.00719904667, -0.00107175, -0.00721201813, -0.0206891522, 0.000588570721, -0.0206502397, -0.00953387283, -0.00587922148, 0.0546349287, 0.0234131161, -0.0243211035, -0.00524687301, 0.0119465264, -0.00746495742, -0.0079189511, -0.0212598871, 0.000613702519, -0.0275509469, 0.004287, 0.0257609133, -0.0214674287, 0.02262187, -0.00347953942, 0.0637148097, 0.00169112743, 0.00156790053, -0.0011917341, 0.00252290932, -0.00565546751, -0.0207280666, -0.0109282825, -0.0262278784, -0.0135679338, -0.00752332807, 0.0288480725, 0.00127766863, 0.0306899901, -0.000830160338, -0.00558088254, 0.00114390266, -0.00329307746, -0.0104678031, 0.0013311751, 0.00344386837, 0.00230888347, 0.0318833478, -0.0155784776, -0.00239643943, -0.00572356675, 0.00513986, 0.0100267809, -0.00769195473, -0.0154098514, 0.0210004635, 0.00186461804, -0.0148131736, -0.00709527684, 0.00269802124, 0.014553749, 0.00276449881, 0.00255858013, -0.00933930371, 0.0115768453, -0.00657318393, 0.00412161648, 0.0044848118, 0.0177317057, -0.0193012282, -0.00419944385, 0.0131463679, -0.0081524346, -0.00566519611, 0.0138792433, 0.0233482607, 0.00276287738, -0.0155006507, 0.00477342214, -0.00836646, -0.00230077654, 0.00182894699, 0.0114471335, -0.00933930371, 0.0028698903, 0.00634294376, 0.0169015452, -0.00358655211, -0.00831457507, 0.0101694642, 0.00716013322, 0.00330280606, -0.0425976031, -0.0060867616, -0.0013927886, 0.0195087679, -0.00454642531, 0.00162383902, -0.000428862142, -0.0213896, -0.0127702011, 0.0228553526, -0.00282935519, -0.00212242175, -0.00842483062, -0.0114082191, 0.0387581103, 0.000594245619, 0.0179522187, -0.0047150515, 0.00772438291, 0.0144888926, 0.0143980933, -0.00174139102, 0.00405351724, 0.0272136945, 0.0181597583, 0.000396636664, 0.00579490839, -0.0190288313, 0.00781518128, 0.00550629804, -0.000457236747, 0.00917716324, 0.0108374842, 0.00573653774, 0.00446535461, -0.0197552219, 0.0122643225, -0.00775681064, 0.0158508737, 0.0120956963, -0.00468586618, -0.0269283261, 0.0149818, 0.0199368205, -0.0113693057, 0.00616783183, -0.00507176109, -0.0168496612, 0.0114211906, 0.00902150851, 3.26308145e-05, 0.0276028328, -0.0227256399, -0.00854157191, -0.00732875941, -0.00267532142, 0.0123162074, 0.0100592086, -0.00694610737, 0.0113628199, 0.0224791858, -0.0109088263, 0.016408639, -0.00828863215, 0.0061710747, 0.00570086669, -0.00839240197, 0.0193401426, 0.0161492135, 9.07987924e-05, 0.0240487084, -0.0217268523, 0.0160195, 0.0115249604, 0.0191844869, -0.00227483385, -0.0122318938, 0.00950793, -0.0182505567, 0.00616783183, 0.00134252501, -0.0173685104, 0.0115898168, 0.00156952196, 0.0078411242, -0.00461128121, -0.00741307251, -0.0146315759, 0.0166421216, -0.0072055324, 0.00225213426, 0.0122254081, 0.00811352, -0.0116611589, 0.00650184182, 3.03507113e-05, -0.0139830131, -0.0107466849, -0.0148910014, -0.0117908716, 0.0017511195, 0.00255858013, 0.00520147337, 0.0239838511, 0.0108374842, 0.00464046653, 0.00202027312, -0.0315979794, -0.00622620247, -0.0200146474, -0.0178873613, -0.0072768745, -0.00259749382, 0.0127766868, 0.00763358409, 0.00188245345, 0.0134252496, -0.0159027595, 0.0198200792, 0.0159805864, -0.00150304427, -0.0069655641, -0.0212339461, -0.00303527387, -0.0186526664, -0.00685530854, 0.0095273871, 0.0141516402, -0.0199108776, -0.0164994374, 0.0381873772, 0.0102343205, 0.00924202, 0.0044037411, -0.0155784776, -9.19641752e-05, 0.0272655785, -0.0120178685, 0.0196514521, 0.0155525357, -0.0354893543, -0.0120827248, -0.000282530149, 0.0241784211, -0.00169923448, -0.00197325228, -0.000673289236, -0.0190028902, 0.0019132602, 0.00309040165, 0.021610111, -0.00182570424, -0.00122659432, 0.0236465987, 0.0314423218, 0.0237763114, -0.0277066026, 0.001364414, -0.00736767333, -0.000561412133, -0.00345683959, 0.00369032216, -0.0167848039, -6.97711657e-05, 0.014826145, -0.000545603456, -0.000186968493, -0.00540252775, -0.0230888352, 0.00587273575, -0.0114082191, -0.00642725732, -0.00804866385, 0.00977384113, -0.000691124704, 0.0218435936, 0.0119140986, -0.000668425, 0.00765952654, 0.00240778923, 0.0164734945, 0.00114795612, 0.00337252649, -0.00349899614, -0.0214804, 0.0164734945, -0.0207150951, -0.0224402715, -0.00255209464, 0.011434162, 0.00256993, -0.00173328398, 0.0156044206, -0.00989706814, -0.0238152258, 0.0186007805, -0.00466965185, 0.0115055041, 0.0158508737, 0.0225959271, 0.0170053169, -0.031312611, 0.00205594394, 0.0080810925, 0.0107726278, 0.0289777853, 0.00602514809, 0.0103640333, -0.0149818, -0.0085286, 0.016460523, -0.00125172618, -0.00603487669, 0.0257609133, -0.0093587609, 0.010818027, -0.0281476248, -0.0167977754, 0.00996192452, -0.00438428437, -0.00040717583, -0.000725985, -0.00115200959, 0.0241005924, -0.0114082191, -0.0195217393, 0.0170701724, 0.0152412253, 0.0128026297, 0.0452177972, 0.0140867839, -0.00762709836, -0.00278881984, 0.0200405903, 0.00247913133, -0.00573653774, -0.00963764265, 0.0173166264, -0.014008956, -0.00435834192, 0.00305473059, 0.00346008246, -0.00838591717, -0.0223365016, -0.0163308103, 0.00220187055, 0.00978681259, 0.0196255092, -0.0138922147, 0.0111747365, 0.00353791, 0.0147872316, 0.019404998, -0.0204556696, -0.000942037441, 0.000662750099, -0.0327653922, -0.000977708376, -0.0323762521, 0.000480747171, 0.0106494008, -0.00206729397, -0.0107531706, -2.10276212e-05, 0.000552494428, 0.00847023, 0.014826145, 0.000339076738, -0.00515607418, 0.00956630055, -0.0168366898, 0.00383949163, -0.0087101981, -0.0223883875, 0.0133993067, 0.0087101981, 0.00576572306, -0.0164734945, 0.0235687718, -0.0149169443, -0.0103121484, 0.0104548316, -0.0181208439, 0.00261208671, -0.00390759064, 0.00673208153, 0.0621063709, 0.0132955369, -0.00421241531, 0.0022375416, -0.0208058935, -0.00408270257, 0.000142177116, -0.00203648722, -0.000170349071, -0.00437131291, -0.00109444966, 0.00344711123, -0.00449454, 0.00804866385, 0.0167458914, 0.005593854, -0.00533442898, 0.00968304276, 0.00908636488, -0.0080810925, -0.00155330787, 0.00155655062, -0.00524038728, 0.00308553735, -0.0172906835, -0.00356060965, -0.000912041403, 0.0017900333, -0.000149777465, -0.0112395929, 0.00251966645, 0.00828214642, 0.0170182865, 0.00898259412, 0.044750832, 0.0034503541, 0.00569113856, 0.0140997544, -0.0135679338, 0.00369032216, -0.0101046078, 0.0238152258, -0.0125626614, -0.0158379022, -0.0232704319, -0.0102537777, -0.0202740729, -0.00165626721, 0.0165513214, -0.00925499108, -0.0108893691, 0.0118297851, 0.000714635127, -0.00580139412, -0.0169145167, -0.00430321414, -0.00286826887, -0.00950793, -0.0123032359, -0.00799677894, -0.00357358088, 0.0127053447, 8.35531246e-05, 0.000932309, -0.0220381636, 0.00714716176, -0.00614837511, 0.0151374554, 0.0093587609, -0.00917716324, -0.00117633073, -0.0102083785, -0.00254236604, -0.0115573891, -0.0219473653, 0.00337576936, 0.0172128566, -0.0282513946, 0.00246615987, -0.00406973157, -0.0102408063, -0.00617431756, 0.00150304427, -0.0023105049, 0.0184191838, 0.00243211049, -0.00944307446, -0.0167199485, 0.00103202555, 0.00439401297, -0.00504906103, -0.000942848157, 0.00398866087, 0.0110904239, 0.0017624693, 0.0247232132, 0.000326916168, 0.0096700713, 0.01373656, -0.0123356637, -0.00442968355, -0.00898259412, 0.0206632093, -0.00145521271, -0.0228423811, 0.0274471771, 0.0170442294, -0.0107077714, 0.0217268523, -0.0184970107, -0.000127179112, -0.00243535335, -0.0116027882, 0.0206761807, -0.013516048, -0.000517634151, 0.00511716027, 0.0163178388, -0.0204556696, -0.0189250614, 0.00786706619, -0.00985815469, -0.0238541383, -0.0210264046, -0.0206761807, -0.0250215512, -0.000905555789, 0.0150077427, 0.00662182597, 0.0123356637, 0.00929390453, 0.00910582114, 0.0173166264, 0.012575632, 0.0339846909, -0.00866479892, -0.0102083785, 0.0217787381, 0.00548359845, -0.0194568839, 0.0108245127, 0.00465992372, 0.000541144575, 0.0173425693, -0.0200665332, 0.00665425416, -0.00987761095, -0.00222619181, 0.00699150655, -0.00245481, 0.0109088263, 0.00388489105, 0.0117454715, -0.0119594978, -0.00115038827, 0.0224662144, 0.00270288531, 0.0132955369, -0.010668858, -0.0171869136, 0.0251642354, 0.00480260747, -0.0090474505, -0.00786706619, 0.0232055765, -0.0216879398, -0.0211690888, -0.0344257131, 0.00927444734, -0.00628457312, -0.0145148346, 0.0356450118, -0.00322173559, 0.0186267234, 0.0153190531, 0.0232963748, 0.012523747, 0.00299636, 0.00132063602, 0.0129582845, -0.00191163877, 0.00708230538, -0.0259814244, -0.0071925614, -0.0119400406, 0.0182246137, 0.00417998713, 0.0118427565, -0.00446535461, 0.016706977, -0.00381030631, -0.0102667492, -0.00715364749, 0.00508148922, 0.0220381636, -0.0145407775, -0.00209485786, -0.000597893784, 0.0032103858, 0.0092095919, 0.010370519, 0.00405351724, -0.0021694426, -0.012945313, 0.0127312876, -0.00337252649, -0.00081232487, -0.00546414126, -0.0149169443, -0.0148520879, 0.0043291566, -0.021610111, -0.001571954, 0.000728011713, 0.00833403133, -0.018613752, 0.00830808934, 0.0182635281, -0.010247292, -0.0121605517, 0.0112136509, 0.00804866385, -0.0165383518, -0.00301419548, 0.0135549624, -0.0168366898, 0.00700447802, -0.00587597862, -0.00842483062, 0.00189218193, 0.0121475812, 0.000527768, -0.0189769473, 0.00252615195, -0.00526308687, 0.00639158627, -0.0157471038, 0.00318606454, 0.014826145, 0.0155525357, -0.0110515095, 0.00147548027, 0.0151763689, 0.0220251922, -0.0139181577, -0.00532145752, -0.0135419909, 0.0251772068, 0.00726390304, -0.0279141422, 0.00493231975, 0.00955981575, -0.0081589194, 0.00377139263, -0.000783544907, -0.0110839382, 0.00933930371, -0.0141516402, -0.0225181, 0.014307295, 0.00422862917, 0.0221678764, 0.00525660114, -0.0141127259, -0.0121475812, 0.0232704319, 0.0100332666, -0.00343414, 0.0200276189, 0.026954269, -0.0134252496, -0.0208707508, -0.0129842265, 0.0236076843, 0.011064481, -0.00749738561, -0.0139051862, 0.00656021247, -0.0036027662, -0.0079124663, -0.0143721513, -0.00156546838, 0.0256830864, -0.0017122057, 0.00538631389, -0.00452048238, 0.0139051862, 0.00899556559, 0.0185229536, 0.00176895503, -0.0116481874, 0.00557115441, 0.0125172613, -0.0125691462, 0.00268505, 0.0105521167, -0.000608433, 0.0376425833, 0.0158119611, 0.00776329637, -0.00549981231, 0.0368902497, -0.0155914491, -0.00331739872, -0.00596353458, -0.0244767591, -0.00477990787, 0.0166421216, 0.000112485104, 0.00400811806, -0.00803569239, -0.0283551645, -0.00551602663, -0.0135938758, 0.0148520879, -0.00725741731, 0.00951441564, -0.0130750258, 0.0146834617, -0.019677395, -0.0155395642, 0.00887233857, -0.00413458794, 0.0059894775, 0.00560682546, 0.0120567819, -0.000265910727, 0.00929390453, -0.00360600906, -0.0190936886, 0.00795786548, 0.00037778783, 0.00074341509, -0.00350223901, 0.0118297851, 0.00673856726, 0.0208448078, -0.0422603525, -0.00989706814, -0.00896313787, 0.00347629655, 0.0202092156, -0.0136457607, -0.0110385381, 0.00881396793, -0.00541874208, 0.00161897484, 0.0221678764, 0.00345359673, -0.00771789718, 0.0235687718, 0.00477017928, 0.00478315027, 0.0297041759, -0.00101500074, -0.00145764486, 0.00369680789, -0.0143202664, 0.0228294097, 0.0197422504, -0.032428138, 0.0150336856, 0.00504906103, -0.0165772643, -0.02376334, 0.00177868339, -0.0115509033, 0.00902799424, 0.010766142, -0.0140738124, -0.00846374407, 0.00714716176, 0.00684233755, 0.0105067175, -0.000980140525, -0.00656994106, -0.000890963129, 0.0166161787, -0.00334658404, 0.0133085083, 0.0117714144, -0.0028909687, -0.0067255958, -0.00146899465, 0.00537658529, 0.0048739491, -0.0111487946, 0.0126275169, -0.00323308539, -0.00398541847, 0.034451656, 0.0278103724, -0.00747144315, 0.0332842432, 0.00875559729, -0.0085675139, -0.00168139895, 0.0018792107, -0.01254969, -0.0130750258, 0.0214933697, 0.0307159331, -0.0281995088, -0.0115898168, -0.000804217823, 5.04156242e-06, 0.00354439556, 0.00461776694, 0.0178095344, 0.0120308399, 0.0195347108, -0.0113303922, -1.21478852e-05, -0.00236401125, 0.011310935, -0.0127312876, 0.023439059, 0.000119173412, 0.000307459297, 0.0423900634, -0.0132760797, 0.00189542468, -0.00590192107, -0.00212080032, 0.00217430666, 0.00797732174, 0.00823674724, -0.00139684207, -0.00130036834, -0.00204297272, 0.000338874059, 0.00151763693, -0.0074909, 0.00537982816, 0.0144240363, -0.0153060816, 0.0168496612, 0.00201378739, -0.0214025714, -0.024256248, 0.0163567532, 0.010273234, -0.00803569239, -0.00387840532, -0.00137495308, -0.0152023118, 0.0204816125, 0.0154487658, 0.0198849346, 0.00115200959, -0.00267207855, 0.0140219275, 0.0158119611, -0.0165642928, 0.0156563055, -0.0195736252, 0.0146964323, -0.00911230687, -0.00996841, -0.0013984635, -0.0212858301, 0.00650184182, 0.00402108906, -0.00958575774, 0.0160843562, 0.00955981575, -0.0154617364, 0.00444589788, 0.0138403298, 0.00669316808, -0.0179262757, 0.0176927932, 0.0187045503, -0.024009794, 0.0125107756, -0.00680342363, -0.00862588454, -0.0210004635, 0.0208058935, -0.0053474, 0.00179651892, -0.0034503541, -0.0212988015, -0.00292826095, -0.0117454715, 0.00138549227, -0.00810703449, -0.0100138094, 0.00602839096, 6.27281843e-05, 0.00148358732, 0.0112460786, 0.0179911312, 0.0213896, 0.00061572931, -0.00551602663, 0.0101954071, 0.0105780587, -0.000646536, 0.00191812438, 0.00466316659, 0.0153320245, -0.0145018641, 0.00439401297, 0.00967655703, -0.00175922655, -0.017524166, 0.0140997544, -0.0131658241, -0.00881396793, -0.00799677894, 0.0168107469, -0.0116481874, 0.0126534598, -0.00708879111, -0.00380382081, -0.0187823772, -0.00253425911, -0.0287961867, 0.00701096375, 0.0156044206, -0.00141710963, -0.0234520305, -0.0200535618, -0.000860967091, -0.00746495742, -0.00264127203, -0.00555169722, -0.0171220582, 0.00317795761, -0.00628457312, -0.00421890104, 0.00514958845, 0.000788814505, 0.0255144592, 0.00163762097, -0.00123551209, 0.0120567819, 0.0185878091, 0.0214285143, -0.00618080329, -0.00371302199, -0.00569438143, 0.0004811525, -0.0192234013, -8.26917531e-05, -0.0121800089, -0.0123875495, 0.00891125295, -0.00521444483, 0.0143851228, 0.00579490839, 0.00937821809, -0.00388489105, -0.00915770605, 0.0192104299, -0.000540739216, -0.0100462371, -0.0173036549, 0.0288221296, -0.00116579165, 0.0255144592, 0.00194893114, 0.00340819731, 0.0121216383, 0.0223365016, 0.00533118611, 0.012277293, 0.00978032686, 0.00230239797, -0.00286340457, -0.0350483321, 0.014826145, -0.00889828149, -0.0141386688, -0.00458858162, -0.00185813231, 0.00800975, 0.00583706517, 0.00671911053, -0.0145148346, -0.00074341509, -0.0179133043, 0.00398217561, -0.0217527952, 0.0110774525, -0.0061710747, 0.00555494, 0.0108569413, 0.0020705366, 0.0102408063, 0.00974789821, 0.00608351873, 0.00648887083, 0.0150596276, -0.00476693641, -0.0148131736, 0.0141256973, -0.00536037143, 0.00852211472, -0.00397569, -0.0082497187, -0.0248658974, 0.0114147048, 0.0102083785, 0.00125902251, 0.0158508737, 0.00432267087, -0.00727038877, -0.0039205621, -0.0102148633, -0.0139441, 0.0252809767, 0.0266170166, 0.00464046653, -0.0122189224, -0.00226996979, -0.00764655508, -0.00895665213, -0.00901502278, -0.00382003468, -0.00595380645, 0.0190936886, 0.0067255958, 0.00423835777, 0.00931336172, 0.0112071652, 0.0116871009, -0.00818486232, -0.0166680627, -0.000707338797, -0.0179003328, 0.0149039729, 0.018341355, -0.00594083499, 0.0162010975, -0.0174463391, 0.030171141, -0.0354115292, -0.0169534311, 0.00947550219, -0.00468262332, 0.00334334117, 0.0203129854, 0.00577220879, -0.0067255958, -0.0113563342, 0.00240130373, -0.0268764421, 0.0308715887, 0.01373656, -0.00346332532, 0.00222294894, 0.00828214642, 0.0040762173, 0.0119594978, -0.012672917, -0.0181338154, 0.0162010975, -0.00403406052, 0.0168756042, -0.001481966, -0.00710176257, -0.00244670315, -0.0221549049, -0.00077300577, 0.0117973574, -0.0148780299, 0.00888531, 0.00404378911, 0.00434212759, 0.0186915789, 0.022894267, -0.00346656796, 0.0192104299, -0.0189769473, 0.0112136509, -0.00895665213, -0.0179003328, -0.0150855705, -0.0260333102, -0.00502311857, -0.0264483895, 0.0132566234, 0.0142554101, -0.00199433044, 0.00937821809, -0.00476693641, 0.00461452408, 0.00311472267, 0.00725741731, 0.0125107756, 0.0143202664, -0.0215063412, -0.0170182865, -0.0361638591, 0.015098542, 0.00975438394, 0.00878802594, -0.00247588847, 0.0166940056, -0.014034899, 0.0230628923, 0.00580139412, 0.00867777, 0.00249534519, -0.000949333771, -0.00717310421, -0.000295096077, -0.00859994255, -0.0171090867, 0.0192363728, -0.0138403298, 0.00996192452, -0.00498744799, -0.00958575774, 0.00779572455, 0.0141775822, -0.010273234, -0.0228683241, -0.0205334984, -0.00065991265, -0.00748441461, -0.0185878091, -0.0219473653, 0.0147094037, -0.000893395219, 0.0169923455, 0.0161103, 0.00456588203, 0.0128869424, -0.0237763114, -0.00792543683, 0.0077697821, -0.00625538779, 0.0167718343, -0.0178095344, -0.00293312524, 0.0079124663, 0.0123356637, 0.0165902358, 0.00616458943, -0.0297041759, 0.0299117155, 0.00412485935, 0.0097673554, 0.0305083934, -0.00100202952, 0.014034899, -0.00926147681, 0.0028082768, -0.0135030774, -0.0288480725, -0.006398072, -0.0202740729, -0.0044750832, -0.0148131736, -0.0229980368, -0.00196028105, -0.000603974098, -0.0134382211, 0.00468910905, -0.00333361258, -0.0151763689, 0.0205334984, 0.0163697246, 0.0150466561, 0.00100527226, -0.0136198187, -0.00432267087, -0.0230628923, 0.0260981657, -0.00893719494, -0.0120308399, 0.0188083202, -0.0180819295, -0.0168756042, -0.0248529259, -0.0187175218, -0.00786706619, 0.0202351585, -0.0106883142, -0.00370329339, 0.0274471771, 0.0160195, 0.0067255958, 0.00988409668, 0.00375517854, 0.00291691115, -0.0206502397, -0.010818027, 0.00903448, 0.000957440818, 0.00961170066, 0.00847671553, -0.0291334409, 0.0177187342, 0.0231147781, 0.00589219294, -0.00411513075, 0.0187823772, 0.0128091145, 0.00557439728, 0.000725985, -0.00706284866, 0.0341144, 0.00214512134, -0.0076011559, 0.00846374407, -0.0119270692, -0.0143721513, -0.0105910301, 0.0150855705, -0.00979329832, 0.00975438394, 0.0164994374, 0.00883991085, -0.00348602491, 0.0146445474, -0.00941064581, -0.0089696236, -0.010792085, -0.00492907735, -0.00549981231, 0.0092095919, 0.00483179279, 0.0173814818, -0.0189899188, -0.0112785064, -0.00532470038, -0.0201443601, -0.00669316808, 0.0129582845, 0.000279287342, 0.013490106, 0.02613708, -0.00693962164, -0.00198298064, 0.0224532429, -0.025722, 0.00697205, -0.0087101981, -0.00197325228, 0.00174625532, 0.0149947712, -0.0112460786, -0.00742604397, -0.0125172613, -0.00817189086, -0.0065569696, -0.0104807746, 0.00158735737, -0.00637861481, 0.0107855992, 0.019158544, 0.00610946119, 0.00122254086, 0.0146834617, 0.00214187847, -0.00657642679, 0.0100592086, 0.0251901783, -0.0227515828, -0.0071925614, 0.00194244552, -0.00368383667, 0.0149947712, -0.0262019355, 0.0281476248, -0.0134382211, 0.00961170066, 0.0134771345, 0.0176019929, 0.0190028902, -0.00245967438, -0.0075298138, -0.0247880686, 0.0135679338, 0.0249048099, -0.0045691249, -0.00329632033, -0.0177187342, -0.010273234, -0.0150855705, 0.0166161787, -0.0052793012, -0.016979374, -0.00370005076, 0.00516580231, 0.0120892106, -0.000459668867, 0.00138549227, -0.019404998, 0.0126210321, 0.00214025727, -0.0106040016, 0.00805515, -0.00364816561, 0.00380382081, -0.00253425911, -0.0123421494, -0.0409632251, -0.0273434073, -0.0119140986, 0.0060024485, -0.00765952654, -0.012374578, -0.02262187, 0.0214285143, -0.0109671969, 0.00910582114, 0.0300673712, -0.012919371, 0.00190677459, -0.0169404596, -0.0140219275, -0.0272136945, -0.00878154, 0.0111098802, 0.0185618661, -0.03079376, -0.0107402, -0.0161103, -0.0188342631, -0.0136198187, -0.0107466849, 0.0100332666, -0.00252615195, -0.0347110815, 0.00271423534, 0.0263057072, -0.0242043622, 0.0228034668, -0.0131658241, 0.00137333164, 0.00278395577, 0.0293409806, -0.00411513075, -0.000434131711, -0.00190028897, -0.0164216105, -0.00170896295, 0.00359303784, -0.0160713848, -0.0372534469, -0.00711473357, -0.00668668235, 0.00183543272, -0.0158379022, 0.000194872846, -0.0110709667, -0.0101759499, -0.00876856875, -0.0227645542, 0.00789949484, -0.0079124663, 0.0101370364, -0.00959224347, -0.0116287302, -0.00381679204, 0.0148391165, -0.00337252649, -0.000847185147, -0.010766142, 0.00014106241, -0.00845077261, -0.00037535571, 0.00220997771, -0.018613752, -0.00294123217, 0.0149299148, -0.00198622351, 0.00984518323, -0.00241589639, -0.00941064581, -0.000689098, -0.00181759719, -0.00379409222, 0.0220770761, -0.00203324435, -0.028588647, -0.00245156721, 0.015098542, -0.00726390304, 0.00219214219, -0.00937821809, 0.0103899753, 0.00494529121, -0.00214025727, -0.00614513224, -0.00451724, -0.00131090754, 0.0157081913, 0.00865182746, -0.0158379022, -0.0123162074, -0.0129128853, -0.0122059518, -0.0347370207, 6.71363814e-05, -0.0210523475, -0.0072055324, -0.0277584866, 0.0133085083, -0.0149428863, 0.0134252496, -0.00819783378, 0.00604136242, 0.0142813521, 0.00796435121, -0.00890476722, 0.0103899753, 0.01240052, -0.0150466561, 0.035593126, -0.0239449386, 0.0133214798, -0.0023996823, 0.00134982134, -0.0251642354, 0.0130166551, 0.00274342066, 0.0163178388, -0.00634294376, -0.00947550219, 0.0161492135, -0.0014827766, -0.00972844195, -0.027525004, 0.0195865966, -0.0229202081, -0.0186396949, -0.00394001883, -0.0422603525, 0.00780869601, -0.00875559729, 0.0109607112, 0.00933281798, -0.00270450674, -0.00640455727, -0.0415339619, -0.0238411669, 0.0305602774, -0.0326616205, -0.0140997544, 0.0056035826, -0.0256052595, 0.019404998, 0.0214804, 0.00238995394, 0.000863399182, 0.00796435121, -0.0268505, 0.0186396949, -0.00882693939, -0.0126145463, -0.0138273584, 0.0126858875, 0.00752332807, -0.00831457507, -0.0119270692, 0.0266948435, 0.00218403526, -0.00266235019, -0.0176668502, -0.00206729397, 0.00466316659, -0.0103770047, 0.01306854, 0.0137884449, 0.000903934357, -0.00652778428, -0.0212598871, 0.0204167571, -0.0155784776, -0.0133733647, 0.000245845818, -0.0090474505, -0.0171998851, -0.00906042196, 0.00552899763, 0.0210004635, 0.000819215842, -0.0246453863, -0.0172517691, 0.0237763114, -0.00740010152, -0.0205594394, -0.00972844195, 0.0176409073, 0.0102602635, 0.00806812104, -0.0139051862, 0.00619053189, -0.0101046078, -0.0174852517, 0.00314066536, -0.00933930371, 0.0158768166, 0.00767898327, -0.0110450238, -0.0255274307, 0.0226996969, 0.00278071291, -0.000413256086, 0.0097673554, -0.0063170013, 0.00256344443, -0.0126923732, 0.0167588629, 0.00144062, -0.0169404596, 0.0031163441, 0.00970249902, 0.0159935579, 0.00762061263, -0.00262505794, -0.00400163233, 0.00994246732, 0.0198200792, 0.00378112099, -0.00412810221, 0.0255793165, 0.00362222316, -0.00345359673, -0.0017511195, 0.0048739491, 0.0031941717, 0.00963764265, -0.023490943, -0.0166550931, -0.0171869136, 0.0167718343, 0.00595380645, -0.00125740108, -0.0173295978, -0.0188472345, -0.018613752, -0.0047993646, -0.00921607669, 0.00972195622, 0.0219343938, 0.00188407488, -0.00101419, -0.0136457607, 0.0155395642, -0.0118362708, 0.00925499108, 0.0158508737, 0.000120389464, 0.0192623138, 0.00719904667, -0.018043017, 0.0181208439, -0.00540577061, 0.0121929804, -0.0210004635, -0.00806812104, 0.0118881557, -0.0110969087, -0.0331026427, 0.0271358676, 0.0109996246, 0.00259100832, -0.0100332666, -0.00693313591, 0.00619377475, 0.00533442898, 8.03103103e-05, -0.019677395, -0.0283292215, -0.00249696663, 0.0137884449, 0.0163308103, -0.0100592086, 0.00140008493, -0.0046437094, 0.0122643225, 0.0152671682, 0.0364232846, -0.0153320245, 0.00248075253, -0.00765952654, 0.0056781671, -0.00308878021, 0.0109866532, -0.0113498485, -0.00442968355, -0.0111423088, -0.00802920759, 0.0020802652, -0.0113952477, 0.00575275207, 0.014307295, 0.0160324723, 0.0155525357, 0.00618728902, 0.0076011559, 0.009430103, -0.00329956319, -0.00525011588, 0.000479936454, 0.00190353172, 0.00582409371, -0.0280179121, 0.00213052868, 0.0151115125, 0.0188991185, -0.0404962599, 0.0219862778, -0.0203000158, -0.0236465987, 0.0157730468, -0.00795138, 0.000805433898, -0.00984518323, 0.00741955824, -0.0210004635]
|
17 Jan, 2021
|
Fabric.js Textbox cornerColor Property
17 Jan, 2021
In this article, we are going to see how to change the controlling corners color of a canvas Textbox using Fabric.js. The Textbox in Fabric.js can be stretched according to requirement. Further, the Textbox can be customized when it comes to initial stroke color, fill color, stroke width, or radius.
To make it possible, we are going to use a JavaScript library called Fabric.js. After importing the library using CDN, we will create a canvas block in the body tag that will contain our Textbox. After this, we will initialize instances of Canvas and Textbox provided by Fabric.js and change the controlling corners color of the Textbox using cornerColor property and render the Textbox on the Canvas as given in the below example.
Syntax:
fabric.Textbox('text', {
cornerColor: string
});
Parameters: This function accepts a single parameter as mentioned above and described below:
cornerColor: This parameter specifies the color of the controlling corners.
Example: This example uses Fabric.js to change the controlling corners color of a canvas Textbox. Note that you have to click on the object to see the color.
HTML
<html>
<head>
<!-- Adding the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<h1 style="color: green;">
GeeksforGeeks
</h1>
<h3>
Fabric.js | Textbox cornerColor Property
</h3>
<canvas id="canvas" width="600" height="300"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Create a new Textbox instance
var text = new fabric.Textbox(
'A Computer Science Portal', {
width: 500,
cornerColor: 'green'
});
// Render the Textbox in canvas
canvas.add(text);
canvas.centerObject(text);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Textbox cornerColor Property
|
https://www.geeksforgeeks.org/fabric-js-textbox-cornercolor-property?ref=asr10
|
CSS
|
Fabric.js Textbox cornerColor Property
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, Fabric.js Textbox cornerColor Property, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0248653833, 0.0130596021, -0.015852768, 0.0490852334, 0.0433002785, -0.000831742713, -0.0100926394, 0.00954642, -0.0251136646, -0.0369939283, 0.0133078834, -0.00674084, -0.014114798, -0.0453858413, 0.0233508665, -0.00790776312, -0.0343621448, -0.015939666, -0.0142885949, 0.00945952162, 0.01021678, -0.0210170206, -0.0246667583, 0.0132209845, -0.0238846708, 0.030538613, 0.026268173, 0.0219232477, -0.00705119176, 0.0233508665, 0.0176900495, 0.000804586918, -0.00331766019, -0.0523873754, -0.0138416886, -0.0165603701, -0.0124823479, 0.0629641637, -0.0129354615, -0.0301165339, 0.0177272931, -0.000481045223, -0.00762223918, 0.0106823072, -0.0190183558, 0.00770293036, -7.45814e-05, -0.00729947304, -0.00293282396, -0.0514935628, 0.00611392967, -0.0353304446, 0.0344614573, 0.00681532454, 0.0227798186, 0.012308551, -0.00499976659, 0.0316558778, -0.0181493703, -0.0130471876, 0.0218487643, -0.0581971593, -0.0321524404, -0.0170569327, -0.0347842239, -0.00453423895, -0.00322765834, -0.000403845217, 0.00388870738, 0.0204956289, -0.0269881878, 0.0282544233, 0.00440389151, -0.0112968041, 0.00801948924, -0.00996229146, 0.0539267212, 0.000497726607, -0.0248902105, 0.0495073125, -0.00972021651, 0.00603323802, 0.0124451052, 0.0389553532, -0.0274350941, -0.0161134638, 0.0329221152, -0.0344614573, -0.0182486828, 0.0215135831, -0.0275344085, 0.0270378441, 0.0212404747, -0.0452368706, -0.0263178293, -0.0103533342, -0.00510218274, -0.0147479158, -0.0328228027, 0.0211163331, 0.0229536165, 0.0313331112, 0.00494390354, -0.0198128559, 0.0159024242, -0.0407678075, 0.0210915059, -0.00293903099, 0.0306627527, -0.00359387323, 0.0399733074, -0.0256226417, -0.0171190035, 0.0423071496, -0.015256892, 0.041239541, -0.000969849236, -0.0197011288, 0.0277826898, -0.00330524612, 0.00419905921, -0.015169994, 0.0153562045, 0.0464037955, -0.0195645746, 0.00576323224, -0.0417361036, 0.00619462086, 0.0272116419, 0.0173300412, -0.00134770246, 0.00991884246, 0.0109305885, 0.00095898693, 0.0421581827, 0.0318296775, -0.00792638399, 0.0204583872, -0.00702015683, 0.00846018922, -0.0218735915, -0.0146610169, -0.0147479158, 0.0258957502, -0.0139534147, 0.015169994, 0.0212156456, 0.00666635577, -0.00178297085, 0.0222336, -0.0418354161, -0.0134196095, 0.0339897238, 0.0018869387, 0.0493583418, -0.0271868128, -0.00312834559, 0.000227332654, 0.0483155623, -0.0101733301, 0.0178514328, -0.0178514328, 0.0108871395, 0.0311344881, -0.0178514328, -0.0204956289, 0.017702464, -0.0028800643, -0.0482162498, 0.0279068295, -0.00561426301, 0.00100476376, 0.0216253102, 0.0137299616, -0.06306348, -0.0280806273, 0.00542805204, -0.0446409956, 0.0130099459, -0.0144003211, -0.0512452833, 0.0144003211, 0.0328228027, 0.041810587, -0.00744844228, -0.00375215267, 0.027807517, 0.0129602896, -0.00334869535, -0.0159520805, -0.00561116, 0.0397498533, 0.0422574952, 0.0005334171, 0.00828639138, -0.00556771038, 0.0078519, 0.0215384122, -0.00884502474, -0.00832363404, 0.0231274124, -0.0113402531, -0.0287013296, -0.0353056155, 0.019043183, 0.0141892824, -0.00798224751, -0.0579985343, 0.0375153199, 0.0194031913, -0.0146610169, 0.0348587073, -0.000893037184, 0.000576866325, -0.0167962369, 0.00845398195, -0.0180004016, -0.0190059412, -0.0312089715, -0.0167962369, 0.0253371168, 0.0446409956, -0.0284778774, -0.0136182345, -0.0326986611, -0.00391974254, 0.00542184524, 0.0295206588, -0.00116149138, -0.0272861253, -0.00499356, -0.00760361785, 0.00764086, 0.00485390145, 0.0580481924, 0.0147479158, 0.000735145702, -0.00963331852, -0.00577564631, 0.0012786492, 0.0244929604, -0.00287851249, -0.0240584686, -0.03192899, 0.0332697071, 0.0257964376, -0.00233384524, -0.0138416886, 0.00669118389, -0.0125444178, -0.0229660291, -0.0310848318, 0.00104355777, 0.0146982586, -0.0194900893, -0.021799108, -0.0221839435, -0.0565585047, 0.0290240962, 0.0169327911, 0.0335924737, 0.00146408437, 0.0148720564, 0.00594323594, -0.01616312, -0.00228108536, 0.0119423354, -0.0333441906, -0.0153810326, 0.0010668342, 0.014201696, -0.0449389331, 0.0248405542, -0.02937169, -0.0154431034, 0.04086712, -0.0212901309, -0.00385456881, 0.0258957502, -0.00604875572, -0.0171190035, 0.0312834568, 0.0464037955, 0.0179259181, -0.00505252648, -0.0308117215, -0.0241950229, 0.0405691825, -0.0299675651, -0.031904161, -0.020408731, -0.010260229, 0.00913675595, -0.0353056155, 0.0356532112, -0.0224942956, 0.00937883, -0.0227798186, -0.00173021108, -0.016250018, 0.0255729854, -0.0334931612, -0.0484148748, -0.0306130964, 0.030935863, 0.0479431376, 0.0378629155, 0.0175286662, 0.00135701301, 0.0354794115, 0.0194900893, -0.0232391395, -0.0313082859, -0.0166720953, 0.00141287642, -0.00407181494, 0.0450134166, 0.0168707222, -0.00646773074, 0.00822432153, -0.0193907768, -0.00538460305, 0.0164734703, 0.0235494915, 0.0362242572, -0.0277330335, 0.00230591348, -0.0179755744, 0.0373911783, 0.0226929206, -0.0428782, 0.00580978487, 0.0110795572, -0.00404698681, 0.0231274124, -0.000124237689, -0.00310662109, -0.00383905112, -0.0336669572, 0.0397001952, 0.0324255526, 0.0173796974, -0.0438713245, -0.0271868128, 0.0348587073, -0.0599351302, 0.00965814665, 0.0103471279, 0.0167093389, 0.0413885117, 0.000891485426, 0.0130099459, -0.0054870192, 0.0156044858, -0.008211907, 0.0071691256, -0.0196763016, -0.0606799759, -0.0633614138, 0.0258460939, 0.0229287874, 0.00819328614, 0.0383843035, 0.00470182905, 0.0433499329, -0.038136024, -0.00538460305, 0.0302406754, 0.00184659299, -0.0141396262, -0.00669739069, -0.026069548, -0.0274350941, 0.0180873, 0.0203094184, -0.0254240148, -0.00239901897, -0.0041214712, -0.0418850742, 0.0110671436, -0.0555157214, 0.038682241, 0.00253712549, 0.0023074653, 0.0333938487, 0.0340642072, -0.032649003, -0.0184721369, 0.0165231265, 0.017590737, -0.0538274087, 0.0347842239, 0.0219232477, -0.0216128957, 0.0311344881, -0.0240708813, -0.0254985, 0.00746085634, 0.0333441906, -0.0494824834, -0.0044628582, -0.00859053619, 0.0026705768, -0.0406933203, -0.00462424103, -0.0333690196, -0.0304393, -0.00516425306, 0.0246915855, -0.0195521601, -0.0141272116, 0.0216625519, 0.0306627527, -0.0361249447, 0.0423568077, 0.011625777, 0.0246543437, 0.0450879037, -0.0119981989, 0.0127740782, 0.086799182, -0.0272364691, -0.0349331945, -0.00443492644, 0.021687381, -0.0520894378, -0.0191052537, -0.0058035776, -0.000251384918, -0.0152320638, -0.0914172158, 0.0156665556, -0.00287696067, -0.0349580199, 0.0457086079, 0.0258957502, 0.0572536923, -0.00140123814, 0.018956285, 0.0383346491, 0.0167589951, 0.00305230939, 0.0342380069, -0.023450179, -0.0181617849, 0.0425306037, -0.0157162137, -0.00827397779, 0.0224073958, 0.0167714097, -0.00860295072, -0.0105147175, -0.0629641637, -0.012308551, -0.0361746, -0.0299675651, 0.0419347286, 0.0162872598, 0.0370684117, -0.00793879759, -0.0154431034, -0.0185217932, -0.00713809, 0.014797572, 0.00953400601, -0.00361249433, -0.0266654231, -0.00571667915, -0.000986142666, -0.00841053296, 0.00204521813, 0.0113774957, -0.00467079412, 0.0422078371, 0.016423814, 0.0093912445, 0.00737395789, -0.00927951746, 0.0172059014, -0.0423816368, 0.0389553532, -0.0260943752, -0.0338655822, 0.00471113948, 0.00824294239, -0.0151824076, -0.013121672, -0.00996849872, 0.0155051732, -0.00990022067, 0.0665890723, 0.0222211853, -0.0103409206, -0.0125816604, 0.0103347134, 0.00929813832, -0.00874571223, -0.0343124904, 0.030911034, -0.0163120888, 0.00672221882, 0.0375898033, 0.0186211057, 0.0244433042, 0.0382105075, -0.000936486409, -0.00501838792, 0.0197756141, -0.0419099, -0.00861536432, -0.0315813944, 0.0187700745, -0.00660428545, 0.00955262687, -0.0207066685, -0.0361497737, 0.0396753699, 0.00552426139, -1.08623117e-05, -0.0131961564, -2.37128133e-05, -0.0312586278, 0.00312989741, -0.0184348933, 0.0182610974, 0.0527846254, 0.00454044621, -0.0241329521, 0.0301413629, -0.00224694679, -0.0221839435, -0.0114643937, 0.0116630187, -0.00148503319, 0.0274599232, -0.031904161, 0.00253091846, -0.030737238, 0.00635600369, -0.0225811936, -0.0718029812, -0.00473596761, -0.0206570122, 0.00890088826, -0.0165976118, 0.0166720953, -0.00163710548, 0.0127616636, -0.0148224, 0.0176403932, -0.0432506204, 0.0294710025, -0.0081994934, 0.0335428193, 0.0226929206, -0.00687739486, -0.0010474372, -0.0313579403, -0.0325745195, -0.0020421145, 0.0280557983, 0.0155548295, 0.0210294351, 0.0405195244, 0.000365633168, -0.0293220337, 0.013320297, 0.00350387138, -0.0262185168, -0.00898778718, 0.020805981, -0.0434244163, 0.0186583474, 0.0248777959, -0.0124140698, 0.0107692061, 0.0336669572, -0.0405195244, 0.0156541429, 0.0147106731, -0.00110019697, -0.0159148388, 0.00213987543, 0.010458854, -0.00105131662, 0.00679670321, -0.0182983391, -0.00115993968, -0.0595378801, -0.027807517, 0.0017736603, 0.0260943752, -0.0146237742, -0.00638083182, -0.0277082045, 0.0279813148, 0.0229163729, 0.00720636779, 0.00463355146, -0.0237232875, 0.0223204978, 0.0238970853, -0.00254178094, 0.0267399065, -0.0114085302, -0.0332200527, 0.0116319833, 0.00364973652, 0.0144996336, 0.0162624326, 0.00505252648, -0.0162748452, 0.0111540416, -0.0071691256, -0.0170072764, -0.023735702, 0.0345111154, 0.0249274522, 0.0034169727, -0.0255481564, -0.00571978278, -0.0229412019, 0.0235867333, -0.00991884246, 0.0444175415, 0.00208866736, -0.0276088919, -0.0497307666, -0.000754930661, -0.0260198917, -0.024790898, 0.00419905921, -0.00455286028, 0.0220970456, 0.0113216322, 0.0181617849, -0.00311438, 0.0274350941, -0.0202597622, -0.0153313763, 0.017590737, 0.0184721369, 0.0106016155, 0.0423071496, 0.00523253065, -0.00224539498, -0.0241205376, -0.00127554568, -0.00176745327, -0.00901882164, -0.041413337, 0.00909951329, -0.0204708017, 0.00244712364, 0.00573530048, 0.0211039186, -0.00498424936, 0.055615034, -0.00319041591, -0.0262433439, 0.020719083, -0.0260943752, -0.00722498866, -0.0226432644, -0.0102291936, 0.00823673513, 0.0415374786, 0.0271371566, -0.00111416285, 0.00868984871, -0.00736154336, 0.0195273329, -0.010986452, -0.0143506648, 0.0107133426, -0.0132085709, -0.0226556789, 0.044715479, 0.0210418496, -0.00144623918, 0.0042673368, -0.0405940078, -0.00269540492, 0.000718852272, 0.0113154249, 0.000886830152, -0.0261192042, 0.0208804663, -0.00711946934, 0.0121285468, 0.0250515938, 0.00513942493, 0.0119361281, -0.00306162, 0.013320297, 0.00742361415, 0.00586564792, -0.041239541, 0.00302748126, 0.00330214272, -0.00630014064, -0.00294368644, -0.0162003618, 0.0106512718, -0.0296696275, 0.0380863659, -0.0144251492, 0.0101547092, -0.002554195, -0.0137920324, 0.0138541022, 0.020805981, 0.00168055471, 0.0106264437, -0.0255233273, -0.0123768281, 0.0223949831, -0.00962090399, 0.0181866121, 0.00934158824, -0.00141597993, 0.0097388383, 0.00674704695, -0.0330710821, 0.00859053619, -0.00677808234, -0.00719395373, 0.0187080037, 0.0176031515, -0.0029933427, 0.0147727439, 0.00527597964, -0.0230156854, -0.0156665556, -0.0212280601, 0.0240088124, 0.00332386722, 0.0176031515, -0.00841673929, -0.00677187508, -0.00877054, -0.0140651418, -0.0241329521, -0.0156169, -0.018981114, -0.00847260281, -0.0037552563, 0.0128113208, 0.0142885949, 0.00739878602, 0.0092422748, -0.0144251492, 0.0438216664, -0.0219853185, 0.0141892824, 0.00637462502, -0.0174045265, 0.00156727631, 0.0101981582, 0.0207811538, -0.0147851575, 0.0352311321, -0.0464037955, 0.0434740745, -0.0105395457, 0.00506494055, 0.00138572056, -0.0188197307, 0.0169079639, 0.017218316, -0.00586875156, -0.0285771899, 0.0154679315, 0.0205328725, -0.00516115, -0.00477941707, 0.0101609165, -0.0206570122, -0.0133575397, 0.0179631598, -0.0126002813, 0.0193287078, 0.018782489, 0.0128858052, -0.00383284409, 0.00249522808, -0.00590599375, -0.0253247023, 0.000252936676, 0.0325248651, 0.00595254684, 0.0181121286, 0.023735702, 0.0208183955, -0.0154306889, -0.0167093389, -0.00739878602, 0.00963331852, 0.00950297061, -0.026293, -0.0299675651, -0.0118057812, 0.0376394615, -0.00459630927, 0.0362242572, -0.00357214874, -0.0349331945, 0.010986452, -0.00583771663, -0.00123985531, -0.00706360582, -0.0163741577, 0.00173796981, 0.00714429747, 0.00893192366, -0.0135065084, 0.0201232079, 0.00915537681, 0.00902502891, 0.0126747657, -0.00160607032, -0.00600841, -0.00722498866, 0.00152305118, -0.0576012842, 0.0469748415, 0.0291978922, 0.00247660698, 0.0150830951, 0.0138541022, -0.0277578607, 0.0156417284, -0.0308117215, 0.0226680916, 0.00233074161, 0.00450320402, 0.0228170604, 0.0249274522, 0.0145865325, -0.000124237689, -0.0307124089, 0.0224942956, -0.0117002614, -0.0148472283, -0.00838570483, 0.0230653416, 0.00367766828, 0.041611962, 0.0185838621, -0.0178514328, 0.0290489234, 0.0302655026, 0.0140278991, 0.0336917862, 0.0185714494, 0.0102850571, -0.0195025038, 0.0160265639, 0.0197880287, -0.0379870534, -0.00116381911, -0.00470493268, -0.00759120379, 0.0324007235, 0.025473671, -0.0570054092, 0.00449389359, 0.0155796576, -0.025275046, 0.0189935267, -0.0135065084, -0.00323696877, 0.0389056951, -0.00301661901, 0.00630324427, -0.0121782031, -0.00591220101, 0.0179755744, -0.00629703701, 0.0158155262, 0.00423940504, -0.0137423752, -0.0150830951, 0.00997470506, -0.00411836756, 0.0120230271, -0.0219853185, -0.0284778774, -0.00780845, -0.044318229, -0.0120354407, -0.00589357968, 0.0159272514, -0.0466520749, 0.0261936877, 0.0559129715, 0.015455517, -0.000594323617, 0.0129354615, 0.019068012, 0.00958986953, -0.011383702, 0.00680911727, -0.0146237742, 0.0250019375, -0.012594074, 0.0181866121, 0.00971401, 0.0225191228, 0.0303151589, 0.0218487643, 0.0267647356, 0.0131961564, 0.0123271719, 0.0276585482, 0.0184100661, -0.00178607437, 0.0242943354, 0.0119113, 0.00121425127, 0.00156882813, -0.00189159391, 0.00940986536, 0.0326986611, -0.0321276151, -0.0132085709, -0.0185838621, -0.0155051732, -0.0141768679, -0.000976832118, 0.017416941, 0.017503839, 0.0205080435, -0.00306782709, 0.0032431758, 0.000970625086, -0.0344118029, 0.0113402531, -0.0214763414, -0.0268143918, 0.0430023372, 0.0142761804, 0.012637523, -0.00746706314, -0.0187080037, -0.0376394615, -0.00823052879, -0.00403457275, -0.011098179, 0.0318296775, 0.0163493305, 0.0267647356, 0.0397746824, -0.0238722563, -0.000168268845, -0.0053256359, -0.00398802, 0.000229854268, 0.00246884814, 0.0101112602, 0.0155920722, -0.00174417684, 0.00982573628, 0.00333628128, 0.0325496905, -0.0343373194, -0.0193659496, 0.00955262687, -0.00139891054, -0.00619151769, -0.00230901712, 0.0249522813, 0.0157286264, 0.0304144714, 0.0180376433, -0.00245798589, 0.0287509859, -0.0173176285, -0.0174790099, -0.0288502984, 0.0274102669, 0.00746085634, 0.0033952482, 0.0234005228, 0.0166845098, 0.0171438307, 0.00884502474, 0.00539081, -0.0124513125, 0.0237853583, 0.000173990949, -0.00803190377, -0.0158403534, -0.0073491293, 0.0153313763, 0.00993746333, 0.0179507453, 0.00972021651, -0.0279316586, -0.00906227157, 0.00727464492, -0.00507425098, -0.010061604, 0.00684635947, -0.00817466527, 0.0428037122, -0.00241608848, 0.00826156326, -0.00430768216, 0.0328228027, -0.055267442, 0.00526666921, 0.0146610169, -0.00711946934, 0.014685845, 0.0499542169, 0.012836149, 0.0101919519, -0.0151824076, 0.0342380069, 0.0118864719, -0.00148813671, 0.00741740689, 0.00852225907, -0.00661049224, 0.00958366226, -0.0164362285, 0.0219853185, 0.0018528, -0.023251554, -0.00351318181, -0.00144158385, -0.00338593754, -0.0186955892, -0.0107754124, 0.00101717783, -0.00507425098, -0.0442934036, -0.0212777164, 0.000648635149, -0.00509597594, -0.00130347733, -0.00658566412, -0.00374594564, -0.0174293537, 0.0158279389, -0.0217866935, -0.00267833564, -0.00240832963, 0.0035876662, -0.00358145917, 0.00405629724, 0.00252936687, 0.00151141302, 0.00759741105, -0.0193162933, -0.0224198103, -0.0142637668, 0.0117375031, -0.00392284617, -0.0204708017, -0.0018109025, -0.0092422748, -0.032475207, -0.0182238556, 0.028204767, 0.0167341661, 0.00198625121, -0.00626289845, 0.0141768679, -0.00281954557, 0.0175410807, -0.00369939301, -0.00197073375, 0.0246295147, -0.0216625519, 0.0100802248, 0.00607979065, -0.0189190432, 0.00101795373, 0.0259454064, 0.0114333583, 0.0322021, -0.00575392134, -0.0149713689, 0.00816845801, 0.0170196909, -0.0171562452, 0.00121502706, -0.0129727032, -0.0181245431, 0.0120788906, -0.00816845801, 0.00107148942, 0.0169452056, -0.0198252704, -0.0181742, 0.0451127291, -0.0102354009, 0.00439458061, -0.0250640083, -0.0136927189, -0.0462299958, -0.00331455679, 0.020805981, 0.00998091232, -0.0331455655, 0.0144251492, 0.00713188341, -0.00250453874, 0.0191424955, -0.0258460939, 0.00678428914, 0.00442251237, 0.00297161797, 0.0418850742, -0.0149589544, -0.0010303678, 0.0152941346, -0.000868209056, -0.0139658293, -0.00953400601, -0.0367953032, -0.0118802655, -0.0222832561, 0.013916173, 0.0167962369, 0.00470803631, 0.00684635947, 0.0359014906, -0.00315162214, 0.00478562387, 0.00703257089, 0.0198873412, -0.0230405144, 0.000447294471, 0.00836708304, -0.00571667915, 0.0170569327, 0.000125498496, -0.0281551108, -0.00721257459, -0.00638703909, 0.00254178094, 0.00097528036, -0.0249150395, -0.00573530048, -0.0205452852, 0.0116443979, -0.0350573324, 0.0134816803, 0.0281054545, -0.00726843812, -0.00675325422, -0.00547460513, 0.0163865723, -0.0241329521, -0.00955262687, -0.00718774647, -0.025473671, -0.00163089845, 0.0307620652, -0.00898158, -0.0251757335, 0.024902625, -0.0128113208, 0.0201107934, 0.00867122784, 0.031904161, 0.0289992671, -0.00898778718, -0.0571543798, -0.0148720564, 0.0103905769, 0.0311593153, -0.00157503516, -0.00570116192, 0.0222460143, 0.00270471559, -0.00633738283, -0.01616312, -0.0164983, 0.0316558778, -0.0174790099, -0.0181866121, -0.00909330603, 0.0249274522, -0.0287013296, 0.00222522207, -0.0234750062, 0.0243688188, 0.00790776312, -0.0163617451, 0.00493148947, -0.00541874161, -0.00860295072, -0.0101795373, -0.021774279, 0.0193659496, 0.0288006421, 0.0144003211, -0.00453113578, -0.021687381, 0.0093912445, -0.00579426717, -0.0108436905, 0.0178266056, 0.00556460675, 0.0170196909, -0.0203094184, -0.00199245824, -0.00663532037, 0.0150210252, 0.0131837428, -0.011141628, 0.00592771871, -0.0265909377, -0.0209549498, 0.00162469142, 0.0201107934, 0.0157162137, -0.00551495049, -0.000726611062, 0.00181866123, 0.00163245026, 0.015964495, -0.00880157575, 0.0099250488, 0.00688980892, 0.00953400601, 0.0175286662, -0.0214391, 0.0306627527, 0.00713809, 0.00220194575, -0.0102354009, -0.0109367957, 0.00945952162, -0.00292661693, 0.00328662503, 0.00128563214, 0.00525735877, -0.00278075179, -0.0166845098, 0.00460872333, -0.00896916538, 0.00688980892, -0.0074112, -0.004084229, 0.00105752365, 0.00466458686, 0.0197880287, 0.0184969641, 0.0101609165, -0.00816225074, 0.00144080806, 0.00758499699, 0.0179383308, 0.0117871594, -0.00372422114, -0.00807535276, 0.00397870969, 0.00661049224, -0.0308365505, -0.00949055701, 0.0246046875, -0.00387629331, -0.00188228337, -0.0109305885, 0.00707602, -0.0150706815, 0.0117188822, 0.0103657488, 0.0233012103, -0.032649003, 0.0114147374, -0.0100367758, 0.010831276, 0.021972904, -0.0185342059, 0.00759120379, -0.0435485579, -0.0120602688, -0.0140651418, -0.00834846217, -0.0133823678, 0.0249646958, -0.00552426139, 0.0258460939, 0.0107567916, 0.0165231265, -0.00159210444, -0.0211535748, -0.0203963164, -0.0358270071, 0.00286765024, 0.00698912144, -0.000611392956, 0.016622439, -0.00116149138, 0.0165603701, -0.0115450853, 0.0212901309, 0.00464906916, -0.0116443979, 0.0321524404, 0.000263605034, 0.0223453268, -0.0232639667, 9.88761312e-05, 0.00165727839, 0.0263674855, -0.0133327115, 0.0103223, -0.00440699467, 0.0245674457, 0.00858433, -0.0179631598, 0.0235246625, 0.00760982512, 0.000645143737, -0.0113340458, 0.010260229, 0.014797572, 0.00739257876, 0.008894681, 0.0178638473, -0.0203963164, 0.0137299616, 0.0296944566, -0.0166596826, 0.0141892824, 0.00464596553, 0.00450630765, -0.00880157575, -0.00845398195, -0.00155020703, 0.00187297282, 0.0389305241, 0.00327421096, 0.00817466527, 0.00831742678, -6.91502501e-05, 0.00749809854, -0.000689368811, -0.0073429225, 0.00251695281, -0.000700619072, 0.00486321189, -0.00787672773, -0.016535541, -0.0054559838, 0.0106264437, -0.0119237145, -0.0267895628, 0.0073491293, -0.0170941744, -0.0114333583, 0.0108809322, -0.0129602896, 0.00423940504, -0.0452368706, -0.000878295454, -0.0360008031, 0.00185124821, -0.00541874161, -0.0302406754, -0.0242198501, 0.0291234087, 0.0290489234, 0.00927331, -0.00131977082, 0.000837949745, 0.00335179898, -0.011470601, -0.0282295961, 0.00846639555, -0.0342876613, -0.0145492898, 0.028006142, -0.0205949415, -0.0111105926, 0.0229287874, -0.0247288272, 0.0291234087, -0.0377139449, 0.000723119592, -0.00154477591, 0.00320593361, 0.000495011045, -0.00841053296, -0.00603013439, 0.00114519801, 0.005449777, 0.0167838223, -0.00604875572, 0.02342535, -0.00919882581, -0.00115838787, -0.0148720564, 0.0116443979, -0.0294958316, -0.00337042, 0.00332697085, 0.0224073958, 0.0532315336, -0.0178886745, -0.0143010085, -0.0115388781, -0.00659187138, -0.0231522415, -0.019043183, -0.0252378043, -0.0106947217, -0.00657945732, 0.00233850046, 0.011383702, -0.0126313167, -0.0393029451, -0.0238226, -0.00690843025, 0.0103657488, 0.0102664363, 0.0150086107, 0.0034355938, -0.00147184322, 0.0163865723, -0.00955262687, 0.00630945107, -0.0134692658, 0.0179259181, 0.0271123294, 0.0249522813, -0.00516735669, -0.0168458931, 0.00100941909, 0.0106202373, -0.0240832958, 0.0378629155, -0.00335490238, -0.0200238954, 0.0290737525, -0.00449389359, 0.000846484385, -0.000380180893, -0.0134196095, -0.0197383724, -0.00798845384, -0.0161134638, -0.0302406754, -0.00176745327, 0.00019193317, 0.0212777164, 0.00893192366, 0.00214453065, 0.0259950627, -0.00934158824, 0.00941607263, 0.000749111525, 0.0127740782, 0.0049408, -0.00473907124, -0.00298558385, -0.0325993486, -0.00217556581, 0.0257467814, 0.0122961365, -0.0174417682, 0.00421147328, 0.017416941, 0.0166969243, 0.00448458269, 0.0334931612, 0.0175783224, 0.0117685385, 0.0197756141, -0.0160017367, -0.0448892787, 0.00384215475, -0.00790776312, 0.00383284409, -0.0298185963, -0.0103967842, -0.0195397455, -0.0122216521, -6.42040177e-05, 0.0278571732, 0.0194652621, -0.00816225074, -0.0111664562, 0.0272364691, -0.0127740782, -0.0139285866, -0.0231646542, 0.00405629724, 0.00137951353, 0.0128237344, 0.0140775554, -0.00458079204, 0.0261936877, 0.00169452059, 0.0527846254, -0.0049408, 0.0141644543, 0.00320593361, -0.0128733907, 0.00165417488, -0.011185077, -0.00900640804, -0.0259454064, -0.0235619042, 0.00942227896, 0.0375401489, 0.00523873745, 0.0197383724, 0.00273575075, -0.0153810326, 0.0143258367, -0.0129478751, -0.00744223502, 0.010018155, -0.00395698473, -0.00598358177, 0.0233508665, -0.00628462294, 0.0111726634, 0.0181990266, 0.0223577395, -0.00520149525, -0.0133451251, -0.0249522813, 0.0134196095, -0.00741740689, -0.00179693662, -0.00208556373, -9.55786381e-05, 0.0268640481, 0.000156242706, -0.00275747525, 0.00117933669, 0.00687118759, -0.00863398612, -0.00903123617, 0.0224073958, 0.0118554374, -0.0221591145, -0.00115062913, 0.0164114013, -0.00398491649, -0.00194280199, 0.013233399, 0.0167714097, 0.0120602688, -0.0197632, -0.000223259296, -0.00368077168, -0.00456527434, -0.00148270547, 0.0105395457, -0.000517123612, 0.0138416886, 0.0040997467, 0.0101919519, -0.0102229863, -0.00850363821, 0.00932917371, -0.00795741938, 0.0107629988, -0.0545225963, 0.00164176081, 0.00418664515, 0.0126189021, 0.00447837589, 0.0116443979, -0.00238039787, -0.0157286264, -0.00471734675, 0.0297689401, -0.00469562225, -0.00874571223, 0.0139534147, 0.00261316169, 0.0290985797, 0.00288471952, 0.0132830553, -0.0013919276, 0.00208401191, 0.0367456488, 0.0150830951, -0.00282575283, 0.00823673513, 0.0275344085, 0.0162376035, -0.00454665301, 0.0193907768, -0.0237232875, -0.0035659417, 0.00894433726, 0.00324938283, -0.0141768679, 0.00607358385, 0.0170072764, -0.000143828642, 8.38313463e-06, -0.00475769257, -0.0103595415, 0.00619462086, 0.00232298276, -0.0118119875, -0.00234160409, 0.0281054545, 0.00900640804, -0.00420216285, 0.00936641637, -0.00134071952, -0.00206539081, 0.0071691256, 0.00574771455, -0.00254333252, 0.0194652621, -0.0199742392, 0.00490045408, -0.0127864927, -0.0126871793, 0.0179383308, 0.0178762618, 0.00219418691, 0.0118802655, 0.0026488523, -0.0138416886, 0.00601772033, -0.000356710545, -0.00562047027, 0.0179383308, -0.00276678591, 0.0157410409, 0.0210170206, -0.00622255262, 0.0387567282, -0.0229908582, -0.00199401, 0.00482596969, 0.0257467814, 0.0100988457, -0.00781465694, 0.0206694268, -0.0126064885, 0.0182610974, 0.00345731853, -0.00542494887, 0.0182238556, 0.0114581864, 0.0127864927, 0.00302282604, -0.0054559838, -0.0219232477, 0.0212653019, 0.00436044205, 0.00779603608, 0.0194031913, 0.00567012653, -0.00414940296, 0.0201728642, 0.00727464492, -0.00213832362, 0.00351938885, -0.0201356225, -0.00472045038, 0.000466303522, 0.0271371566, -0.00414319569, 0.0155175878, 0.00347283622, -0.00794500485, -0.00729947304, -0.0161010493, -0.00610461878, -0.0289496109, -0.0188197307, -0.020607356, -0.00314231147, 0.0137672042, 0.000710317574, -0.00361249433, 0.00704498496, -0.0068339454, 0.00226246426, -0.0106947217, -0.00382043, -0.00807535276, -0.0226556789, -0.0171190035, -0.0253371168, -0.0202225205, 0.0101547092, -0.000270393968, -0.013034774, -0.0137051335, 0.0279068295, -0.00195366424, 0.00291109947, 0.00431699306, -0.0271619856, -0.00940986536, 0.0380367115, -0.00987539254, 0.0263674855, 0.00414940296, -0.0331703946, -0.00749809854, 0.00590599375, 0.0184969641, -0.0218115207, 0.00685877353, 0.0146237742, -0.0187080037, -0.00349766435, -0.0113899093, 0.0156913847, -0.00505873375, -0.0153065482, 0.0227301624, 0.0315565653, 0.027832346, -0.0172555577, -0.00211039186, -0.00285678799, -0.00346352556, 0.00451251445, -0.00559874577, -0.00638083182, -0.00505873375, 0.0121471677, -6.7840956e-05, 0.00195056072, -0.00184038584, -0.00764706731, 0.0171190035, -0.0105643738, 0.000773939712, 0.00469562225, 0.00617289636, -0.00370870344, -0.00691463705, 0.0215756539, 0.00202814862, 0.00174107333, -0.00846639555, 0.00629083, -0.00816845801, 0.0100926394, -0.0004632, -0.041611962, 0.0106140301, -0.00774017256, -0.0241826084, 0.00468631135, 0.0121347532, 0.00811259449, 0.00222211867, 0.0228170604, 0.000590056297, -0.0157410409, 0.0243812334, 0.00174107333, 0.00131201209, 0.00890709553, 0.016423814, 0.00308024115, -0.0339648947, 0.000820880407, 0.00844777469, -0.00262247236, 0.0447651371, -0.000279510539, 0.00353180291, -0.0120044062, -0.00228574057, 0.00963952579, -0.0141644543, 0.014114798, 0.0249274522, -0.0109119676, 0.00485390145, -0.0242198501, -0.0187204182, 0.0142637668, -0.00641186722, 0.00510218274, -0.00520770252, -0.00330524612, 0.016423814, -0.00993746333, -0.0010854553, 0.00875812676, 0.019043183, 0.00242074369, 0.0333441906, 0.0139285866, -0.0131589146, 0.0105767874, 0.0238350146, 0.00921744667, -0.0214391, -2.13245603e-05, 0.00835466944, -0.0184721369, 0.00628772657, -0.00661669951, -0.00341076567, -0.0019459055, -0.0108623113, 0.0178762618, -0.000591608055, 0.00106062717, 0.0209177081, -0.023735702, -0.00268143904, -0.00286920206, 0.00576633541, 0.00697670737, -0.0304889567, -0.00167124416, -0.00636221096, -0.0337911, -0.00109942106, -0.0196887162, 0.0152693065, -0.000129474865, -0.00382974069, 0.00581599167, -1.67298986e-05, 0.00132209843, 0.00328972866, 0.00137020298, 0.0128237344, -0.0130844302, 0.0271868128, 0.00193814666, -0.0145244617, -0.000355740689, -0.0179383308, 0.00121735479, 0.0184224807, 0.00246419292, -0.0272861253, 0.0134196095, -0.0228170604, -0.0196142308, 0.00349766435, -0.0196638871, -0.0024812622, -0.00607048, 0.00408112537, 0.0448644497, 0.000749887433, -0.00565460883, 0.00243470958, -0.0158279389, 0.00624427712, 0.000349921611, 0.0162003618, -0.00964573212, 0.00348214665, -0.0013546854, -0.00226401608, 0.0013942552, 0.0136306491, 0.00209487439, 0.00913675595, -0.000283389934, 0.00706981309, 0.0173672847, -0.0151824076, -0.00698291464, 0.0269385315, 0.00649255887, 0.0188073162, -0.00642428128, 0.00256505725, 0.0149961971, -0.0126933865, -0.0105457529, -0.00755396159, 0.00756016886, -0.00205142517, 0.000578418083, 0.000379405, 0.0268640481, 0.00932296645, 0.0133575397, 0.012836149, -0.010303678, 0.0137299616, -0.00298713567, 0.0329717696, -0.00159210444, -0.000928727619, -0.0363980532, -0.0017333146, -0.00838570483, -0.00230591348, 0.00878295489, -0.0100367758, 0.00964573212, 0.0150210252, -0.00787052, -0.00147572265, -0.020408731, -0.00299023907, -0.00348525029, -0.00269230152, 0.00875812676, -0.00801948924, 0.0102229863, 0.0120850969, -0.00222056685, 0.018981114, -0.0182238556, -0.010061604, -0.00608289428, 0.0127864927, 0.00777741475, 0.00647393754, 0.000385224121, -0.0138292741, 0.00123442407, -0.00464906916, -0.00957124773, 0.00136089243, 0.00587806199, -0.0208183955, 0.0034324904, -0.0043232, -0.00192883611, -0.0068277386, 0.0159769077, -0.00902502891, 0.0251260772, 0.00983194355, 0.00589978695, -0.00120882, 0.00880157575, 0.00447216863, -0.0075167194, -0.00310351746, -0.0146982586, 0.0171934869, -0.0029933427, 0.00465837959, 0.00235712156, 0.020632185, 0.0100491894, -0.01151405, -0.0116319833, -0.0117499176, 0.0143630793, 0.00430147536, -0.020234935, 0.0391043201, 0.0221467018, -0.0109616239, 0.00952159148, -0.0197011288, -0.0115761207, -0.0097388383, -0.0194900893, 0.0197880287, 0.00907468516, -0.00166348543, 0.013034774, 0.0291234087, -0.011625777, -0.025386773, 0.00125692459, -0.0233632792, -0.0228667166, -0.00901261531, -0.0153065482, -0.0280557983, 0.000707214058, 0.0117250895, -0.00279006222, 0.0129354615, 0.0113464603, 0.0114581864, 0.0160389785, 0.0111602489, 0.0298930816, -0.000992349698, -0.00859053619, 0.023537077, 0.0136554772, 0.00111338694, -0.00278540701, -0.016336916, 0.0213149581, -0.00996849872, -0.00834846217, -0.00808776636, -0.0122775156, 0.0118616438, 0.00659187138, -0.00261161, -0.00511770044, 0.0114395656, 0.000843380869, -0.00402836595, -0.00305541302, 0.0243315771, -0.0167838223, 0.00903744344, -0.00713809, -0.00455596391, 0.017615566, -0.00391974254, -0.00916779, -0.0156913847, 0.0166348536, -0.0352559574, -0.0301413629, -0.0288006421, -0.00271092262, -0.00779603608, -0.0155051732, 0.0300420504, -0.00560805621, 0.0173176285, 0.0213770289, 0.0146361887, 0.0140278991, 0.0102664363, 0.00694567244, 0.00607358385, 0.00351938885, 0.0217370372, -0.0229536165, -0.010260229, -0.0136554772, 0.0155548295, -0.00323386537, 0.0171562452, -0.00103502313, 0.00952159148, -0.00115761207, -0.00389181101, -0.00411216076, 0.0197383724, 0.0259702355, -0.000749111525, 0.000334985933, -0.0099126352, 0.00353490654, 0.00510839, 0.0133327115, -0.0013717548, 0.0066539417, -0.00688980892, 0.00272023305, -0.00492217904, 0.00300265313, -0.000458156777, 0.000491519575, -0.00616979273, 0.0135561647, -0.0168707222, -0.00548391556, -0.00968918204, 0.0116568115, -0.012594074, -0.0033952482, 0.00550874369, 0.0138665168, -0.0170693472, 0.0263426565, 0.00108623109, -0.00898778718, 0.00564840203, 0.00639324635, -0.0163245015, 0.011625777, 0.0110609364, -0.0118988864, -0.00655462919, 0.0139906574, 0.00225005019, -0.0259950627, 0.0041152644, -0.00763465324, 0.00625358801, -0.0270875, 0.0288751274, 0.0183479954, 0.0121906167, 0.0108064478, -0.00330214272, 0.00210263324, 0.0284033921, -0.000733593944, 0.000769672333, -0.0194900893, 0.00378008443, -0.00353801, -0.02003631, 0.0160141513, 0.0119237145, -0.0174045265, -0.00205918378, 0.00860295072, 0.00673463289, 0.00741740689, -0.022457052, -0.0165727828, 0.0260198917, 0.00725602405, 0.0265661106, 0.00451872172, -0.0139285866, -0.0196514726, 0.0180873, 0.00339214457, -0.00198935485, 0.00972642377, 0.0118802655, -0.0120168198, -0.00641186722, -0.00414940296, 0.0203839038, 0.00271557784, -0.0164734703, -0.00906227157, 0.00937883, 0.0156913847, -0.00234936271, -0.000610229152, 0.00684635947, 0.0129602896, -0.00098303915, 0.000726223108, -0.00761603191, 0.0101919519, -0.012196824, 0.000607901486, 0.00658566412, -0.0141892824, 0.0152196502, 0.0132209845, -0.0184100661, 0.00523253065, 0.00312989741, 0.0115947416, 0.0284530483, 0.00870226324, 0.0146610169, 0.0146361887, 0.0284778774, -0.00258367835, -0.00262712757, -0.00621634582, -0.0200983789, 0.0157906972, 0.0143879075, -0.000887606, 0.00742361415, -0.016225189, -0.0289992671, -0.00566391973, -0.0156541429, 0.0212280601, -0.0136678908, 0.0054777083, -0.00582530256, 0.020607356, 0.00398181286, -0.0223949831, 0.00268143904, 0.00589978695, 0.00570736872, 0.0186335184, 0.0161507055, -0.00122976885, 0.0204583872, -0.00600530626, -0.0145120481, 0.0042952681, 0.0129727032, -0.000489967817, -0.0108685186, 0.0120044062, 0.0107567916, 0.0165603701, -0.0367208198, -0.0116009489, 0.00431078579, -0.0056235739, 0.011470601, -0.0220349748, -0.0186459329, 0.0035659417, 0.00487562595, 0.00993125606, 0.0334186777, 0.00936641637, -0.00644290261, 0.0213273726, 0.00728085218, 0.00132908137, 0.00849743094, -0.00635600369, 0.00027310953, 0.00739878602, -0.0101733301, 0.0122464802, 0.00626289845, -0.0232143104, 0.000277570856, 0.0134816803, -0.000735145702, -0.0218115207, 0.00522632338, -0.0106202373, 0.0104836822, 0.00329593569, -0.0183479954, -0.0135065084, 0.00185900705, 0.00507425098, 0.0213025436, -0.00758499699, -0.00585323386, -0.00176434976, 0.00216935878, -0.00292506535, -0.00967676751, -0.00554908952, 0.00742982095, -0.00483528, 0.00825535692, 0.0152941346, -0.0103657488, -0.0301413629, 0.0163989868, -0.0159148388, -0.0115761207, 0.0370435864, 0.0299427379, -0.0033983516, 0.0215384122, 0.00579116354, -0.0123271719, -0.00774017256, -0.000425181905, -0.0110174874, -0.0134940939, 0.0157286264, 0.0203963164, -0.0257964376, -0.00453113578, -0.0011839919, 0.00514873536, -0.00609841198, -0.00554598588, -0.00798845384, 0.00643048855, 0.00469872542, -0.0216997955, -1.52508792e-05, -0.00203280407, 0.0150210252, -0.00938503724, 0.008894681, 0.000704886392, -0.0106326509, 0.0247288272, -0.000470182917, 0.0212032311, -0.0109554166, 0.00132287433, 0.0115823271, 0.00646773074, 0.0184721369, -0.00324627943, 0.00153546536, -0.00350697478, 0.0004290613, -0.00416181702, -0.00697050057, 0.0103160925, 0.00718153967, -0.0150955096, 0.00463975873, 0.000192806023, -0.0338655822, -0.010105053, 0.0148348138, 0.0188445579, -0.0160638075, -0.00813742261, 0.00842915382, -0.0133699533, 0.022059802, 0.0107381707, 0.0212653019, 0.000841829111, 0.0120230271, 0.011625777, 0.0175783224, -0.00885743927, 0.000618375896, -0.026069548, 0.00553667545, -0.00173796981, -0.0155796576, 0.010303678, -0.0127989063, 0.00138727238, -0.00195831945, -0.0151575794, 0.00480114156, 0.0129478751, -0.01576587, 0.0138541022, 0.0152817201, -5.96457285e-05, -0.00818707887, 0.0237605311, 0.011867851, -0.0195025038, 0.0206446, -0.00682153134, -0.0107257562, -0.0101671237, 0.0108188624, -0.000715748756, 0.0255978126, -0.00469872542, -0.00476389937, -0.00749809854, -0.0108064478, 0.00176434976, 0.00767810224, -0.00839811843, -0.00605806615, -0.00524804834, -0.00724361, -0.00891330279, 0.00994367059, 0.0100864321, 0.0068277386, -0.00195521605, 0.00514252856, 0.00783327781, -0.00326490053, -0.00150908541, 0.00040151758, 0.00532873953, -0.00486941915, -0.00702636363, 0.00334559195, -0.000399965822, -0.0101671237, 0.00320593361, -0.0257964376, 0.00733671524, -0.00238194969, 0.00591840781, -0.010943003, 0.0243191626, -0.000515959808, -0.00051091658, -0.00685877353, -0.00259609241, -0.0182362683, -0.00984435808, 0.0285027046, -0.0117312958, -0.0268640481, -0.0228418894, 0.00414629932, 0.00748568447, 0.00522322, 0.00324938283, -0.0140775554, 0.00397560606, -0.013804446, -0.00612944691, 0.0127368355, -0.011383702, 0.00828639138, 0.00507735461, -0.00144391158, 0.00930434559, 0.0308862068, 0.0108685186, -0.0184100661, -0.00692084432, 0.00721878186, 0.00363732246, -0.0231274124, 0.0105767874, -0.0101795373, 0.00253091846, 0.00369318598, -0.0218984205, 0.00808156, 0.00668497663, 0.00228418899, 0.00695187924, -0.00326490053, 0.000614496472, -0.00254488434, -0.00663532037, -0.0146486023, 0.0241826084, -0.0135561647, 0.0236115623, -0.00271868147, -0.010458854, 0.011141628, 0.00742361415, 0.00642428128, 0.00452182489, 0.0154803451, 0.00698291464, -0.00325558987, -0.0302406754, 0.0205701143, -0.0020607356, -0.0221218728, 0.000197461297, -0.0138913449, 0.00477321, 0.00195987127, 0.00118709542, -0.00832363404, 0.00198780303, -0.0203466602, 0.0180376433, -0.0217370372, 0.000585013069, -0.0135313366, 0.0080256965, -0.0028831677, 0.000660661317, 0.0135685783, -0.000250027137, 0.00685256673, -0.00384525815, 0.001640209, -0.0158155262, 0.00145011861, 0.0269633606, -0.00589668332, -0.00064281607, 0.00288782315, -0.0171562452, -0.0405940078, 0.0118057812, 0.0143879075, 0.0110795572, 0.0147106731, -0.00402836595, -0.0136430627, 0.00531632546, 0.00088838191, -0.00998712, 0.0404202119, 0.0169700347, -0.00159520796, 0.00417112745, -0.0069953287, -0.000292118581, -0.000411604, -0.013432024, 0.00129183917, 0.00656704325, 0.0230156854, -0.00458699884, 0.0140775554, 0.00140511757, 0.00200952752, 0.00501528429, -0.0166348536, -0.0115016364, -0.00344490446, -0.00743602822, 0.000304338697, 0.0011459738, -0.0151079232, 0.00453423895, -0.0146361887, 0.0239839833, -0.0115078427, -0.0266157668, 0.00365284015, 0.000922520587, -0.00295765232, 0.0142141106, -0.000546994968, 0.00317024323, 0.00112580101, 0.00187917985, -0.0233756937, 0.0324007235, 0.0185962766, -0.00447837589, -0.00190555979, -0.00415871339, 0.00565771246, 0.0129727032, -0.0055584, -0.00256040203, 0.00534115359, -0.0131961564, 0.00756637566, 0.0105767874, -0.0178638473, -0.0186459329, -0.00714429747, 0.00357525214, -0.000388521614, -0.0115823271, 0.0171562452, 0.00291885831, 0.00818087254, 0.0215756539, 0.00520459889, 0.0221218728, 0.0151575794, -0.00481976289, 0.0119423354, -0.0109988665, 0.00475148531, -0.00835466944, -0.024989523, 0.0028986854, -0.0166100264, 0.0023074653, 0.0134816803, -0.0122464802, -0.0160886347, 0.00027310953, -0.00206539081, 0.00422699098, 0.00369318598, 0.00187607633, 0.0272612981, -0.00501838792, -0.0071753324, -0.0208308101, -0.00596806407, 0.017305214, 0.0187700745, -0.00861536432, 0.0189438704, -0.00290644425, 0.0276585482, 5.68816577e-05, -0.0149465408, 0.0113650812, 0.00185124821, 0.00409664307, 0.011756124, -0.00634669326, -0.0131465, 0.0144996336, -0.00469872542, 0.0336421318, 0.000983815, -0.0230156854, 0.00676566828, -0.00276523409, 0.00412767846, -0.0368201323, -0.0178141911, 0.000934158801, -0.00190090446, -0.0156913847, -0.0145244617, -0.00332076382, 0.00634979689, 0.0168458931, 0.00593082188, 0.0181742, 0.00119175075, -0.0135934064, -0.00277454476, -0.00499666343, -0.00815604441, 0.00945331436, -0.0232763812, -0.0201356225, 0.00132752967, 0.011669226, -0.00913675595, -0.00385767221, -0.0325248651, 0.0189314578, -0.00973263104, 0.0105643738, 0.0252626333, -0.0118554374, 0.0125382105, -0.0026519557, -0.000843380869, -0.00161227735, -0.013233399, -0.012109925, -0.0185590349, 0.0103657488, -0.0141644543, -0.0182238556, 0.00639324635, -0.00201728637, -0.0014508944, 0.00165727839, 0.00397560606, -0.0167589951, 0.0118802655, 0.0192293953, 0.000431388937, -0.00776500069, 0.00309420703, -0.00658566412, -0.0200983789, 0.0169452056, 0.0101547092, -0.0120354407, 0.0189190432, -0.0220970456, -0.0190555975, -0.0508480296, -0.0256971251, -0.0201852787, 0.0150582669, -0.00684635947, -0.016225189, 0.0191673245, -0.00011676985, 0.00209177076, 0.0279564857, 0.00278540701, 0.0119733708, -0.012308551, -0.0184224807, -0.00713188341, -0.00386077585, 0.0052821869, 0.00903123617, 0.00277144113, 0.0173176285, 0.0200611372, 0.00877674762, 0.00149356783, 0.00855329446, 0.0167962369, 0.00770293036, -0.00556460675, -0.00246108952, 0.0226308499, 0.00306627527, -0.00770913763, 0.00899399351, -0.0146982586, -0.0133078834, -0.0105209248, 0.0137423752, -0.0153437909, 0.00841673929, 0.0191052537, 0.0126871793, -0.00382043, 0.00703877769, 0.0157782827, -0.00277454476, -0.00422699098, 0.0074112, -0.000125789447, 0.0097388383, -0.00166658894, 0.0178266056, -0.00906227157, -0.0117375031, -0.00017108141, -0.0148348138, -0.0122278593, 0.0102850571, 0.00983194355, 0.00754154753, 0.0264171418, -0.00302282604, -0.00369939301, 0.00677187508, -0.0192293953, 0.00519218482, 0.0101422956, -0.012153375, 0.0137175471, 0.0340145528, -0.0145617044, -0.0116940541, -0.0071691256, -0.0205080435, -0.013233399, -0.0204459727, 0.0136803053, -0.0113402531, -0.00357214874, 0.0196018163, 0.0138168605, 0.00667877, 0.0137672042, -0.00628151931, -0.000641652266, 0.0170569327, 0.0397746824, -0.0215632394, -0.00225315383, 0.0117002614, -0.00305851642, 0.00344800809, -0.0302406754, 0.0173921119, -0.00212590955, 0.0215756539, 0.0265909377, 0.0039321566, 0.0106512718, -0.0107257562, 0.00577874947, -0.032847628, 0.00101562613, 0.0203963164, -0.00675946102, -0.000809242192, -0.0198376849, -0.000977608, -0.0241701938, -0.00989401434, -0.00765327411, -0.0347345695, 0.000920192921, -0.00607048, 0.0299675651, -0.00885743927, -0.00141442812, -0.0254488438, 0.00990642793, -0.0141892824, -0.00767189544, 0.0101236738, -0.00740499282, 0.00195521605, -0.0149961971, -0.00176745327, -0.0408174619, -0.0151079232, -0.0108126551, 0.00479803793, -0.00715050427, 0.000243044211, -0.0165976118, 0.0149092982, 0.000893813034, 0.0166100264, 0.0290985797, -0.00831121951, 0.00105131662, -0.0274350941, -0.00661049224, -0.0288254712, 0.00575081818, 0.00198314781, 0.0250267647, -0.0153562045, -0.0101981582, -0.00847881, -0.0167341661, -0.00198935485, -0.0230901707, 0.0171562452, -0.00927951746, -0.0441692621, 0.00218642806, 0.0115326708, -0.0250640083, 0.0237108748, -0.0182486828, -0.00523563428, -0.00565771246, 0.00960228313, -0.0153810326, 0.0214639269, -0.00784569234, -0.021997733, -0.0165976118, 0.00688360212, -0.022084631, -0.0218363497, -0.00780845, -0.016051393, 0.00993746333, -0.00737395789, -0.0101981582, -0.00976987276, -0.00950297061, -0.00831742678, -0.020234935, -0.00987539254, -0.0162127763, 0.00762844598, -0.0248777959, -0.0110236946, -0.0051145968, 0.0184473079, -0.0046211374, 0.00742361415, -0.0214887559, 0.00649255887, 0.00116149138, 0.0105892019, -0.00202504522, -0.00560495257, 0.000741352735, 0.0112223197, -0.0108871395, 0.00901261531, -0.012594074, -0.0112905968, 0.00175193569, 0.0125133824, -0.0162003618, 0.00929193106, -0.000898468308, -0.00646152347, 0.008211907, 0.0337662697, -0.00667256257, 0.0042735436, -0.0027435096, 0.0145492898, 0.000994677423, 0.00305696484, 0.00295454869, -0.0176528078, -0.0129851177, 0.00752292667, -0.00495321397, -0.0141520398, 0.0040780222, -0.0113774957, -0.0162003618, -0.0144996336, 0.00485390145, -0.0298434254, -0.00379249849, -0.0245922729, -0.000697127602, -0.00804431736, 0.0176900495, -0.00412457483, 0.00771534443, 0.00365594355, 0.00347283622, -0.0199618246, 0.0193783641, 0.00486321189, -0.0197011288, 0.0292227212, -0.00738637196, 0.0242570937, -0.00975745916, 0.00099855673, -0.00312058697, 0.00909951329, -0.0106947217, 0.00124140701, -0.015939666, -0.000993125606, 0.00465527643, -0.00623807032, 0.00214918586, -0.0146113606, 0.0203590747, -0.0222336, -0.0113340458, -0.00112735271, -0.0305634402, -0.0115388781, -0.000464363809, 0.010899554, 0.00117545726, 0.0135809928, -0.00584702706, -0.0417609327, -0.017218316, 0.0217494518, -0.038483616, -0.0105395457, 0.00624427712, -0.0233632792, 0.0136058209, 0.0176776368, -0.00559874577, 0.00838570483, 0.00072467135, -0.0115326708, -0.00137485832, -0.0167714097, -0.012066476, -0.0198997539, 0.00445354776, -0.00638703909, -0.00113976677, -0.0152444784, 0.0353056155, 0.00166193361, 0.00893813092, -0.010260229, 0.00348835369, 0.00554598588, -0.00524494471, 0.0311593153, 0.00592461508, 0.00486941915, 0.00839191116, -0.0298434254, 0.0160017367, -0.0122526875, -0.018670762, -0.00769672357, -0.0170196909, -0.0192914642, -0.00781465694, 0.00803190377, 0.0264916252, -0.00150675781, -0.0110671436, -0.0156665556, 0.0200487226, 0.0153934471, -0.023251554, -0.0115388781, 0.0166100264, 0.00590289058, -0.0027279919, -0.015256892, 0.00354421698, -0.00824915, -0.020321833, 0.0177645348, -0.0187700745, 0.0205080435, -0.0021367718, -0.0134692658, -0.0277082045, 0.0203466602, -0.00313765625, 0.00631565833, 0.00336421304, -0.0141892824, 0.00893192366, -0.0037397386, 0.0182983391, 0.00449079, -0.0173176285, -0.00313144922, 0.0075167194, 0.00253402209, 0.0137672042, -0.00357214874, -0.00393526, 0.0104960967, 0.0002316, -0.0153934471, 0.00900640804, 0.023735702, -0.00703877769, 0.00834225491, -0.00294678984, -0.00177831552, -0.00778982881, 0.00301661901, -0.00605185935, -0.0161755327, -0.00862777885, 0.0264916252, -0.00469872542, 0.0132706407, -0.00291420287, -0.0247784834, -0.0237232875, -0.0102105727, -0.00447837589, 0.00738637196, 0.0374904908, 0.0195769891, 0.000757646223, -0.0171810724, 0.00262557575, -0.00647393754, 0.00721878186, 0.0193162933, -0.0167341661, 0.0145989461, 0.0028831677, -0.00965193938, 0.010943003, -0.0138168605, 0.0123333791, 0.00517046032, -0.0120913042, 0.000958211, -0.01448722, -0.0308365505, 0.0136927189, 0.00759120379, 0.00089691655, -0.00801328197, -0.012395449, -0.001010195, 0.0113092177, -0.00487562595, 0.00149667135, -0.014114798, -0.0133947814, 0.0118057812, 0.0149217127, 0.00204366632, -0.000459320581, -0.0142885949, 0.0173424557, 0.0159272514, 0.026441969, 0.00230125827, 0.014201696, -0.0145368762, -0.00168365822, -0.00712567614, 0.0121906167, -0.0127864927, 0.00175038388, -0.0133699533, 0.00772155169, 0.00214608246, 0.00893192366, 0.00105209241, -0.00310351746, 0.0225439519, 0.00431699306, 0.0134568522, 0.0152444784, -0.0137423752, -0.00180004013, -0.010148502, -0.00386387925, -0.000329360802, 0.00772775849, -0.0267399065, 0.00436354568, -0.00215073768, 0.00383905112, -0.0464286208, 0.0140403137, -0.0243191626, -0.00934779458, 0.0218239352, -0.0197383724, 0.00434182119, -0.0220225602, -0.00408733264, -0.0160389785]
|
31 Aug, 2020
|
Fabric.js Image cornerColor Property
31 Aug, 2020
Fabric.js is a javascript library that is used to work with canvas. Image is one of the class of fabric.js that is used to create image instances. The cornerColor property of the image is used to change the controlling corners’ color of the image.
Approach: First import the fabric.js library. After importing the library, create a canvas block in the body tag which will contain the image. After this, initialize an instance of Canvas and image class provided by Fabric.JS and set the cornerColor of the controllers of the image using the cornerColor property of the image object.
Syntax:
fabric.Image(image, {
cornerColor:string
});
Parameters: The above function takes two parameters as mentioned above and described below:
image: This parameter takes the image.
cornerColor: This sets the controlling corner color of the image.
Example 1: This example uses FabricJS to set the controlling corner color of the canvas image as shown in the below given example.
<!DOCTYPE html>
<html>
<head>
<!-- Adding the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<h1 style="color: green;">GeeksforGeeks</h1>
<b>Fabric.js | Image cornerColor Property </b>
<canvas id="canvas" width="400" height="300"
style="border:2px solid #000000">
</canvas>
<img src =
"https://media.geeksforgeeks.org/wp-content/uploads/20200327230544/g4gicon.png"
width="100" height="100" id="my-image"
style="display: none;">
<script>
// Create the instance of canvas object
var canvas = new fabric.Canvas("canvas");
var img= document.getElementById('my-image');
var imgInstance = new fabric.Image(img, {
cornerColor:"red"
});
canvas.add(imgInstance);
</script>
</body>
</html>
Output:
Example 2:
<!DOCTYPE html>
<html>
<head>
<!-- Adding the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<h1 style="color: green;">GeeksforGeeks</h1>
<b>Fabric.js | Image cornerColor Property </b>
<canvas id="canvas" width="300" height="250"
style="border:2px solid #000000">
</canvas>
<img src =
"https://www.geeksforgeeks.org/wp-content/uploads/gfg_200X200-1.png"
width="100" height="100" id="my-image"
style="display:none">
<br>
<button onclick="func()">Clickme</button>
<script>
// Create the instance of canvas object
var canvas = new fabric.Canvas("canvas");
var img= document.getElementById('my-image');
var imgInstance = new fabric.Image(img, {
});
canvas.add(imgInstance);
func=()=>{
var imgInstance = new fabric.Image(img, {
cornerColor:"green"
});
canvas.clear();
canvas.add(imgInstance);
}
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property
|
https://www.geeksforgeeks.org/fabric-js-image-cornercolor-property?ref=asr9
|
CSS
|
Fabric.js Image cornerColor Property
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0137975803, 0.0014367234, -0.00643929048, 0.0305158161, 0.0173854548, 0.00433062715, -0.00832135, 0.00502931885, -0.0107762124, -0.0338393189, -0.00228018849, -0.0187954269, 0.00548567111, -0.0331343338, -0.00986980181, 0.0208977945, -0.0576074161, -0.00564303389, -0.0146914013, 0.00104646338, 0.00722610485, -0.0243975464, -0.0194878224, -0.0126205059, -0.00537866447, 0.0299618989, 0.029181378, 0.0256690383, -0.038144771, 0.0324041694, 0.0164412763, -0.00267044851, 0.0139612379, -0.0300877895, -0.0163405649, -0.0363319479, -0.0228365064, 0.0572045669, -0.00755971437, -0.0112545956, 0.026613215, -0.0137598133, 0.00644558482, 0.0136465114, -0.0214391239, 0.00235729641, -0.0350478664, 0.00291278749, -0.0130044706, -0.0400331244, -0.00568394829, -0.0210866295, 0.0039592511, 0.00520871254, 0.0190849733, 0.0188709609, 0.00505134929, 0.0428530686, -0.0286022834, -0.0157740582, 0.0109272804, -0.0520178825, -0.0404863283, -0.00592943467, -0.0286274608, 0.00569968484, 0.0259837639, 0.00368229207, 0.00165388419, -0.0071757487, -0.0143892644, 0.00847871415, 0.0146788126, -0.0244479012, 0.00429600757, -0.00651482446, 0.0363067724, -0.0139360595, -0.0551903211, 0.0422487929, 0.00123923295, 0.00941659696, -0.00331721012, 0.0499784611, -0.0249136966, -0.0361808799, 0.0580102652, -0.0368355103, 0.011135, 0.054334268, -0.0111601781, 0.00918999407, 0.0188835487, -0.0327818431, -0.0200417414, -0.0131177725, 0.0175491124, -0.0237051491, -0.0351485796, 0.017826071, -0.0156481676, 0.023931751, 0.00498840446, -0.0220433977, 0.0162146743, -0.0387490429, -0.00556120509, -0.0215650126, 0.027242668, -0.00273811468, 0.0342421681, -0.0274189133, -0.00654629711, 0.0315229371, -0.0160384271, 0.042022191, -0.00864866562, -0.0168567151, 0.0495504327, -0.004447076, 0.0039592511, -0.016189497, 0.00319131976, 0.0289044194, -0.0199284386, 0.026537681, -0.0191479195, 0.0228113271, 0.0465794206, 0.0137220463, -0.0228616837, -0.0189590845, 0.0226099025, 0.0170329623, 0.0337386094, 0.0166427, -0.00219363905, 0.0162020847, 0.00102207216, -0.00709392, -0.0132562518, -0.0361808799, 0.00898856949, 0.0587656051, 0.00252724835, 0.0131177725, 0.017788304, -0.000988239073, -0.00200480339, 0.0279728305, -0.0609309189, -0.00929700118, 0.0333357602, -0.00718204351, 0.0463528186, -0.0218167938, -0.0089508025, 0.0164790433, 0.0328321978, -0.0263362564, 0.033235047, -0.0223455336, 0.0078933239, 0.0540824868, -0.0217538495, -0.0303647481, -0.00494119525, -0.00624730764, -0.0510107614, 0.024674505, 0.0182037409, -0.0198906716, 0.0217412598, -0.0223833, -0.0434573404, -0.0189339053, 0.0137220463, -0.0401338376, 0.0277210511, -0.0371628255, -0.0515646785, 0.0168063585, 0.00900745299, 0.0597223714, -0.00830876175, -0.00405052118, 0.0164160989, 0.0130548272, -0.0253669024, -0.0315732956, -0.00534089701, 0.0384217277, 0.0575570576, -0.00275699818, 0.024712272, -0.00373264821, 0.0171462633, -0.00618750975, -0.0148172919, -0.0240702312, 0.0231260527, -0.0274440926, -0.0164664555, -0.0292820912, 0.0082647, 0.000755341956, -0.00465794234, -0.0640026405, 0.058211688, 0.000540148176, 0.00533460267, 0.00468941499, 0.0135961557, -0.00906410348, 0.0067917835, 0.00444078119, -0.0200795084, -0.00494119525, -0.0187450703, -0.0216657259, 0.00802550837, 0.0392022505, -0.0175239332, -0.0299870763, -0.05322643, -0.000435501861, -0.0111538833, 0.00224556867, 0.00558008906, -0.0437091216, -0.0155348666, -0.0130800055, 0.00315512647, -0.00479956903, 0.0277965851, 0.00907039829, -0.0180778522, -0.0214013569, -0.00117392733, 0.0217160825, 0.0272930227, -0.00501987711, -0.0329580866, -0.0271419547, 0.033159513, 0.0200291518, -0.0208348501, -0.00714427605, 0.0406374, -0.000156969501, -0.0209859181, -0.0395043865, -0.017083317, 0.0157488808, -0.0200920962, -0.0150313051, -0.0260592978, -0.026613215, 0.0298863649, 0.0369865783, 0.0336630754, 0.0417704098, 0.000893821358, 0.00507338, -0.0115819108, -0.0131555395, -0.00341477524, -0.0469570942, -0.00665330375, 0.00139974314, 0.00327000138, -0.0221692864, 0.00244227238, -0.0258075185, -0.0425257534, 0.0345694833, -0.0306417067, -0.0157362912, 0.0324545279, -0.0246241484, 0.00315355277, 0.0394288525, 0.0115441428, 0.0234407801, -0.00353122386, -0.0116574448, -0.0088437954, 0.0255431477, -0.0411913171, -0.0323789939, -0.00792479608, 0.000301743392, 0.0109839309, -0.0314977616, 0.0302136783, -0.0238688067, 0.000557851512, -0.0174484, -0.00345254224, -0.000137889248, -0.00471774, -0.04454, -0.0280231871, -0.0201172754, 0.0349471569, 0.0290051326, 0.0249388739, 0.00431803847, 0.0244479012, 0.00528739393, 0.0100208707, -0.00596720167, -0.0199158508, -0.0376412086, -0.00716945436, -0.00510800024, 0.0326811299, 0.00885638501, -0.0195507687, 0.0230505187, -0.0220182184, -0.0187702477, 0.0320768543, 0.0300626103, 0.0300374329, -0.00481215771, -0.0139360595, 0.00133050338, 0.00878714491, 0.00300877891, -0.0440616161, -0.0183296315, 0.0296345837, 0.0184932891, 0.0345946625, 0.00956137, -0.00418270612, 0.012507204, -0.0239946973, 0.0418963023, 0.0261600111, 5.26674e-05, -0.0241079982, -0.00971243903, 0.0525214449, -0.0681822, -0.000863135559, 0.00584445847, 0.0283505023, 0.0258578733, 0.000907984, 0.0182666872, -0.0241835322, -0.00189937034, 0.00196074182, 0.00105511828, -0.0169196595, -0.0377670974, -0.0595209487, -0.0154467439, 0.0117770405, 0.00976908952, 0.0365081951, -0.00982574, 0.0305409934, -0.0108202742, -0.0278469417, 0.00869272742, 0.00294426014, -0.00127385277, -0.00725128315, -0.00900115818, -0.0435328744, 0.0016507369, -0.00654629711, -0.0231889989, -0.00935994647, -0.00300563173, -0.033159513, 0.00567135913, -0.0309690218, 0.044212684, -0.00230851397, 0.00358787435, 0.0478383265, 0.0463528186, -0.0266383942, -0.0210866295, 0.0358535647, -0.00654000277, -0.0466549546, 0.0126268, 0.0432559177, -0.00852277502, 0.035576608, -0.0225091912, -0.0214265343, -0.0258830525, 0.0280735437, -0.0214768909, -0.0242716558, 0.014552922, 0.00638893433, -0.0364326611, 0.00211495743, -0.0104929591, -0.00995163061, -0.0165419895, 0.0088437954, -0.00825211126, -0.00230064569, 0.0108265681, 0.0280735437, -0.029181378, 0.0187324807, 0.0130674159, 0.0250144079, 0.0440616161, -0.00564618129, 0.0130925942, 0.0687864795, 0.00355325453, -0.042097725, 0.0102600623, -0.00247059762, -0.0647076294, -0.0121735949, -0.00306228222, 0.00376412086, 0.00852277502, -0.0972880498, 0.00619380409, -0.000768324418, -0.0148676476, 0.0190975629, 0.0213258211, 0.0453960523, 0.0186947137, 0.0291562, 0.013583567, 0.0245486144, 0.0099453358, 0.0241079982, -0.0389756449, -0.0497518592, 0.0312963352, -0.0409143567, -0.024674505, 0.0152704967, 0.0211118087, -0.0314977616, -0.0089130355, -0.0447917804, -0.0285015702, -0.0067917835, -0.00368858664, 0.0177001804, 0.0049726679, 0.0100964047, 0.0230882857, -0.033083979, -0.0145403333, -0.0228868611, 0.0164160989, 0.00467053102, 0.00413549738, -0.0227357931, -0.00144380471, 0.0127778687, 0.016189497, 0.0067917835, -7.65668956e-05, 0.0183044542, 0.0391015373, 0.0165294, 0.01015935, 0.00148393225, -0.0260844771, 0.0207089595, -0.0580102652, 0.0455471203, -0.0225973148, -0.0252032448, 0.00984462351, 0.02486334, -0.0172973312, 0.0196766593, -0.0294331592, -0.0226099025, 0.000206932236, 0.0462772846, 0.022408478, -0.00917111058, -0.00696173543, 0.000981157762, 0.0178008918, -0.00446910691, -0.0284512155, 0.0332602262, 0.000966995081, 0.0050387606, 0.044288218, 0.0220937524, 0.0193493441, 0.0392777845, -0.00959913805, 0.00396239804, 0.0066029476, -0.0249640532, -0.0019465792, -0.0310697332, 0.0276203379, -0.00682325568, 0.00105433154, -0.00496952096, -0.0409395359, 0.03580321, 0.00703097507, -0.010234884, 0.00162241166, 0.00420473702, -0.0324293487, 0.0317243636, -0.0130170602, 0.0261851884, 0.0401841924, 0.00203942345, -0.0286778174, 0.0142130181, -0.00710650906, 0.00418270612, 0.00450372649, 0.0183044542, 0.0154971, 0.00947954226, -0.0286526382, -0.0164412763, -0.0265880376, 0.00954878144, -0.0113490131, -0.0394288525, -0.0191856865, -0.0209607407, 0.009863507, -0.0242590662, 0.0214013569, -0.013810169, 0.0188080147, -0.014401854, 0.0129289366, -0.019538179, 0.0119658755, -0.00425824057, 0.0247626286, 0.0150187165, -0.000531886646, 0.00883750152, -0.0249766409, -0.0226728488, 0.0131933065, 0.0319257863, 0.000353673153, 0.0306920633, 0.0502554178, 0.00744641293, -0.0305409934, 0.00469256192, 0.00680437218, -0.0230127517, -0.0175868794, 0.0121106496, -0.0225343686, -0.0174987558, 0.0099893976, -0.0171588529, -0.00684843399, 0.0145655116, -0.0242338888, 0.0268901736, 0.0286274608, 0.00161060935, -0.0190723855, 0.00940400735, 0.00913963839, -0.00392148364, -0.00340848067, -0.0114245471, 0.00215901923, -0.0462017506, -0.0249640532, 0.0123687247, 0.00812622067, -0.0374146067, 0.00734570064, -0.0305409934, 0.0609812774, 0.0310949106, 0.00169637217, 0.0149935381, -0.0187576599, 0.0105244312, 0.0148047032, -0.00651482446, -0.00192140113, -0.00847871415, -0.0152075514, 0.0265880376, 0.0278217625, 0.0312208012, 0.00156812137, 0.0423998646, 0.000238011402, 0.0110342875, -0.00434321631, -0.0356017835, -0.00905781, 0.0264873262, 0.019538179, -0.0211118087, -0.0233652461, -0.0049946988, -0.0234156, 0.0454715863, 0.0132058952, 0.0356017835, -0.00390260015, -0.0246241484, -0.0409395359, -0.000530313, -0.042097725, -0.0234030131, -0.0123120742, -0.00403793249, 0.0261600111, -0.00733311148, 0.010681794, 0.0106377332, 0.0296094064, -0.0049726679, -0.0121798897, -0.0150438948, 0.00345568964, 0.0163783319, 0.0347960889, -0.00620639324, 0.00496952096, -0.0374146067, 0.0129415262, -0.0218167938, -0.0201676302, -0.0368355103, 0.000271451019, -0.0227987394, 0.0101656439, -0.0006927902, 0.0154341543, 0.00850389153, 0.0464535318, -0.0266887508, -0.0347960889, 0.0177379474, -0.0170329623, -0.000422912824, -0.0119784651, -0.00564303389, 0.0178512484, 0.0384217277, 0.00575004099, 0.0215398353, 0.00954248663, 0.00106849417, -0.00620639324, 0.0110405823, -0.00596090732, 0.0155852232, -0.011871458, -0.0317243636, 0.0444644652, 0.0192360431, -0.0067917835, 0.00043353482, -0.0397813432, 0.00522444863, -0.00382706593, -0.0077674333, -0.00929070637, -0.0275951605, 0.0116385613, 0.00419844268, 0.0166049339, 0.0260592978, 0.0111727668, 0.0191479195, -0.00502931885, 0.00885638501, 0.0124379648, -0.00631654728, -0.0412920266, -0.0060742083, -0.00397498719, -0.0156859346, -0.00650223531, -0.0183548108, 0.033083979, -0.0247626286, 0.0490216948, -0.0188583713, 0.0114434306, -0.0150690721, -0.0243220124, 0.0117392736, 0.0218923278, -0.00900745299, -0.00397498719, -0.0103418902, -0.00786185078, 0.0130800055, -0.0281239, 0.0133443754, -0.00652741361, 0.0262103658, 0.00921517238, -0.00977538433, -0.0275448039, 0.0148550589, -0.00878085, 0.0155348666, -0.0121043548, 0.0150564834, 0.0024580087, 0.0100649316, 0.00673513254, -0.0189842619, -0.0036413779, -0.0294835158, 0.0383461937, 0.00102285889, 0.0113741914, 0.00963061, -0.0112734791, -0.00221409625, -0.0299115423, -0.00867384393, -0.0141500728, -0.00172941841, -0.0293828025, -0.00132892979, 0.0186569467, 0.0136842793, 0.00187733956, 0.00590740377, -0.019727014, 0.0371628255, -0.0204949453, 0.00757859787, -0.0229372177, -0.0125575606, 0.0033455356, 0.0117896292, 0.0133569641, 0.00109052495, 0.0105999662, -0.0485936664, 0.0326559506, 0.00574374618, 0.0140115935, -0.011015404, -0.0155474553, 0.0134324981, -0.00239349, -0.00372950104, -0.0142130181, 0.00325426506, 0.0151697844, 0.00263268151, 0.000510249229, 0.00629136944, -0.0265628602, -0.00803180318, 0.000949685171, -0.00203312887, 0.0332854, 0.026311079, 0.0107006785, 0.00533460267, 0.0146536343, -0.00830246694, -0.027318202, -0.00833394, 0.00403793249, -0.00121248129, 0.0055045546, 0.00959913805, 0.0250521749, -0.0164790433, -0.0203061104, -0.0243849568, 0.00447225384, 0.0079562692, -0.0501043499, -0.0189087279, -0.0259585865, 0.0275448039, 0.00352807646, 0.0279728305, -0.019538179, -0.0244730804, 0.00707503641, -0.022295177, 0.00116527232, 0.0210236851, -0.0316488296, -0.000401865545, 0.00542272581, -0.0116259716, -0.0199284386, 0.0207593162, 0.0102285892, -0.000673119852, -0.0044030142, -0.00462961709, -0.0304654595, -0.00663442025, -0.00540698972, -0.060477715, 0.0492231175, 0.0157614686, 0.0088689737, -0.00426138751, 0.00648964662, -0.0149431825, 0.00113379979, -0.0455974787, 0.0523200221, -0.00142885523, 0.000863135559, 0.0182666872, 0.0402597263, 0.0143137304, 0.00725128315, 0.0125323823, 0.014552922, 0.00532201352, -0.0223581232, 0.0130170602, 0.0322782807, -0.00557064731, 0.0402849056, 0.00630710553, -0.00137849909, 0.00887526851, 0.0236422047, 0.0017703328, 0.0150942504, 0.0242213, 0.0166678801, -0.0117078, 0.00866125431, -0.00147921138, -0.0328573771, 0.00966837723, 0.0157362912, -0.00752194738, 0.0269405302, 0.035727676, -0.0510359406, -0.0146914013, 0.0327063091, -0.026311079, 0.0300122555, -0.0118399858, -0.0121987732, 0.0428027138, 0.0234533679, -0.0157362912, -0.0178890154, 0.00501987711, -0.0108895134, 0.0141374841, 0.004950637, 0.0110783493, -0.0331846923, -0.00920258276, -0.0019481529, -0.0192863978, 0.00958654843, -0.029181378, -0.0160510167, -0.0118651632, -0.0446155332, -0.0201172754, 0.00427082926, 0.0150438948, -0.0324797034, 0.0265880376, 0.0666715205, 0.00816398766, -0.000237421293, -0.0089948643, 0.0141123058, 0.0136087444, -0.00587593112, 0.0128911696, 0.00528424652, 0.0403604396, -0.0182163306, 0.0120728826, 0.00141233217, -0.00573430443, 0.0104551921, 0.0428782478, 0.00908298697, 0.01809044, 0.00428341841, 0.0264873262, 0.0156355798, -0.00665959856, 0.0295842271, 0.0168693047, -0.00534719182, 0.0160132498, -0.0146914013, 0.00772966631, 0.0100397542, -0.0294835158, -0.023893984, -0.0232267659, 0.00418900093, -0.0231638215, 0.0050765276, 0.0115693212, 0.0211999323, 0.0260341205, 0.0033423882, -0.0122491289, 0.00630081119, -0.0276203379, 0.015333442, -0.0316488296, -0.022370711, 0.0233400669, 0.0242213, 0.0090389261, -0.0226602592, 0.00675401604, -0.0351737589, 0.00982574, 0.000393800699, -0.0208977945, 0.00827729, 0.0019670364, 0.0334112942, 0.0463528186, -0.00394036714, 0.00077540573, -0.00470515108, -0.0022439952, -0.00713168737, 0.011462315, 0.0143011417, 0.0186569467, -0.0066658929, 0.000399308396, -0.00116763276, 0.0218797401, -0.0191982761, -0.00564618129, -0.00937883, 0.00148235867, -0.00962431543, 0.0193745214, 0.01243167, 0.00353122386, 0.0218042042, 0.0302640349, -0.00927811768, 0.0188457817, 0.00392463105, -0.0252410118, -0.0109902257, 0.0116259716, 0.00331406295, 0.0117581571, 0.00462332228, 0.0302136783, 0.0019874936, 0.00496637356, -0.00566821219, -0.0135961557, 0.00606476655, 0.00506708585, -0.0288288854, -0.0195885357, -0.00286557875, 0.0114874924, -0.00619065715, 0.00942918565, 0.0336882509, -0.0309438426, 0.00386798033, -0.0225469582, -0.0117644509, -3.82096805e-05, -0.0207593162, -0.00941030215, 0.050431665, 0.000396751246, 0.0201550424, -0.00255242642, 0.0315732956, -0.0384217277, 0.00588222547, 0.023856217, -0.0142256077, 0.0196766593, 0.0410906039, 0.0077863168, 0.00438727811, -0.0142004294, 0.0345694833, 0.00729534449, -0.0188835487, -0.0198654942, -0.00923405588, -0.0106251435, 0.00467997324, -0.00921517238, 0.0122868959, 0.0183296315, -0.0299115423, -0.0174861662, 0.00929700118, 0.00347142573, -0.0210740417, -0.00261694519, -0.00312208012, -0.0201928094, -0.0402597263, -0.0285267495, 0.00181124709, -0.00179078989, -0.000369606132, 0.00823322777, -0.00711280387, -0.0305409934, 0.00234942837, -0.00932847336, -0.0212628767, -0.00558323599, -0.00759118702, -0.0165294, -0.00239349, -0.00152091251, -0.00187733956, 0.0206963699, -0.0130296489, -0.013659101, -0.00975650083, 0.0211873427, -0.00423935708, -0.0159754828, -0.00202998146, 0.00569339, -0.0460506827, -0.0149054155, 0.0290051326, -0.00335183, 0.0125890328, 0.00489713391, 0.0164412763, -0.0235918481, 0.0372887142, 0.0117707457, -0.0056272978, -0.00133443752, -0.015220141, 0.000128545827, 0.00191353296, -0.00856054202, -0.00529998308, 0.0156985242, 0.0105244312, 0.0423998646, -0.0030906077, 0.00184114603, 0.0111035267, 0.0268146396, -0.0066847764, -0.0071757487, -0.00189307588, -0.017083317, 0.0163279753, -0.00922146626, -0.00720092701, 0.0105118426, -0.0261600111, -0.0262607224, 0.0432559177, -0.00627563288, -0.0417704098, -0.018014906, -0.00363193592, -0.0516653918, 0.00368543947, 0.0218797401, -0.0015649742, -0.0346450172, 0.0297604743, -0.00695544062, 0.00650223531, 0.0361053459, -0.0013462397, -0.00627563288, 0.00946065784, -0.00193713745, 0.0316236503, -0.012318369, 0.000115858442, 0.00836541224, -0.00491916481, -0.0131681282, -0.00655259145, -0.0348464437, -0.00706244772, -0.0293828025, 0.0354758948, 0.00822693296, 0.00189464947, 0.01809044, 0.0428530686, 0.00400646, 0.00909557659, 0.00508596934, 0.00881232321, -0.0297604743, 0.0055045546, 0.0055045546, -0.00664071506, 0.00279791257, 0.0210236851, -0.0246619154, -0.00754083088, -0.0136842793, -0.0263614357, 0.00563988695, -0.0234533679, -0.00750935823, -0.0117015066, 0.00547308195, -1.60190521e-05, 0.000711673754, 0.0210362747, -0.00751565257, 0.00368229207, -0.0149054155, 0.0235792585, -0.0151446071, 0.00163342699, -0.00696173543, -0.0443889312, -0.0190723855, 0.0107510341, -0.00909557659, -0.0256186817, 0.0290051326, -0.0215020683, 0.0269657094, 0.0129918819, 0.0159503054, 0.020432001, -0.0114434306, -0.0486692, -0.000645581342, -0.00160116761, 0.0305158161, 0.00367599772, -0.0129289366, 0.0232393555, 0.0116448551, -0.000955192896, 0.00629766379, 0.00236516446, 0.0145655116, -0.000109072171, -0.0177631248, -0.00150281587, 0.0299618989, -0.0252032448, -0.00308116572, -0.0329077318, 0.00476180157, 0.0187576599, 0.00681696134, 0.00121720217, -0.00382391876, -0.00363193592, -0.00918999407, -0.0131051829, 0.00892562419, 0.0336378962, 0.0210362747, -0.0211495757, -0.0175994672, 0.0163531546, 0.00407884689, 0.00339589175, 0.000396947959, -0.0163657423, 0.00586963678, -0.00902004167, 0.0100775212, -0.0114560202, 0.0195885357, 0.0227357931, -0.00952989794, -0.00804439187, -0.0344939493, 0.00319604063, -0.0108454516, 0.0200795084, 0.038295839, 0.0112483008, 0.0105999662, -0.0113993697, -0.0124001978, 0.0279980097, -0.0232897103, 0.00619695149, 0.00242968346, 0.00549511285, 0.00822063815, -0.0210236851, 0.0090766931, -0.00103544793, -0.00652741361, -0.0151320174, -0.0147543466, 0.00312522752, -0.0237303264, -0.00037904791, -0.00993274711, 0.0213258211, -0.00519612338, -0.0210740417, -0.0250395872, -0.0196263026, 0.0118651632, -0.00900115818, -0.0112168286, 0.00411661388, 0.0108706299, 0.0089948643, 0.0207719039, 0.00260907714, -0.0243220124, 0.00744641293, 0.00548567111, 0.0185058787, 0.0270915981, 0.0120854713, -0.00323852873, -0.00571542094, 0.00318817259, -0.0145655116, -0.011946992, 0.00801292, -0.00289233029, 0.00935365167, 0.00310004945, 0.00641096523, -0.00638578692, 0.0269657094, 0.0311704464, 0.00399387069, -0.0518668145, 0.00498210965, 0.0108139794, 0.00420788443, 0.0133695528, 0.00202526059, 0.0201298632, -0.0429537818, -0.0347960889, -0.0126960399, -0.000658170378, -0.00905151479, 0.00645187963, -0.0207341369, 0.0309942, 0.00715057086, 0.0108265681, 5.09954189e-05, 0.00214485661, -0.0256060939, -0.0343680605, 0.00694914628, 0.00689249579, -0.00141390576, 0.0105181374, 0.0012282175, 0.0335875414, -0.015257908, 0.0234785471, 0.00120461313, -0.0176624134, 0.00801292, 0.00595776, 0.00142885523, -0.0151697844, -0.0014367234, 0.0151949627, 0.0280987211, -0.0201298632, 0.00439357245, -0.0130296489, -0.000938669778, -0.00458555529, -0.012544971, 0.0165671669, -0.00223297975, 0.0116007943, -0.00174358103, 0.000993746798, 0.0133191971, 0.0126519781, 0.00472088717, 0.0227987394, -0.024561204, 0.00305441418, 0.0160510167, -0.0108328629, 0.0207970832, -0.0185310561, 0.00231952942, -0.015408976, 0.00301507348, 0.000409143569, 0.00161769078, 0.0200795084, 0.0182037409, 0.0189339053, -0.0019465792, -4.65695884e-05, 0.0150438948, -0.017826071, 0.0039781346, 0.00662812591, 0.0106188497, -0.0112105338, -0.000791535422, -0.0146788126, -0.014590689, 0.00868013781, -0.0325804166, -0.00780520029, 0.0017483019, -0.0266383942, -0.00321335066, -0.00266415416, -0.00108187, 0.00409458298, -0.0384972617, -0.00940400735, -0.0114811985, -0.00951730926, 0.0231008753, -0.011166472, -0.0251277089, 0.0191227403, 0.0304906387, -0.00769189931, -0.0113993697, -0.00336127169, -0.00296786451, -0.00302294153, -0.0206586029, 0.000487038225, -0.0163783319, -0.0191227403, 0.0338645, -0.0155600449, -0.0245486144, 0.020469768, -0.00636060908, 0.0285771042, -0.00809474848, 0.0103796581, -0.0137975803, -0.00808215886, 0.0165797565, -0.0234659575, -0.0290051326, 0.00667218771, 0.0154719213, 0.00253669, -0.00915222708, 0.00861719344, 0.00214957749, -0.0043998668, 0.00273811468, -0.00276958733, -0.00888156239, -5.03561314e-05, 0.0099453358, 0.0215901919, 0.0377167426, -0.0139864152, -0.00474606548, -0.020280933, -0.0082647, -0.0226980262, 0.0165419895, -0.0276203379, 0.00436839461, 0.0104677808, 0.00851018634, 0.0126771564, -0.0285015702, -0.0449176691, 0.00180023175, -0.00813251548, 0.00754083088, -0.00435580546, 0.011128705, 0.0231889989, -0.0101026986, 0.0154341543, 0.00881232321, 0.0164664555, -0.0300626103, 0.0328825526, 0.0173728652, 0.00859831, 0.00471774, -0.0208348501, -0.00140525086, 0.00422991486, -0.0164412763, 0.0296345837, -0.0105810827, -0.0129163479, 0.0127967522, 0.00184271974, -0.0140115935, -0.00106534688, -0.0329077318, -0.0336882509, 0.0127338069, -0.00219363905, -0.0388497561, 0.0169322491, -0.0110091092, 0.0233274773, 0.00229907222, 0.00109681953, 0.0172469746, -0.0152704967, 0.00480586337, 0.00788702909, 0.0062000989, 0.00434636371, -0.00249420223, 0.00180337892, -0.0119784651, 0.0120225269, 0.00164444244, 0.0234785471, -0.0103922468, -0.00584760588, 0.00261694519, 0.0121987732, 0.0214391239, 0.0162146743, 0.0281994343, 0.0329832658, 0.0245737918, -0.0276958719, -0.0327818431, 0.00542587321, 0.0124064917, -0.00307487138, -0.0162524413, -0.00727646099, -0.00558008906, -0.00973761734, -0.0108454516, 0.0443385728, 0.0297604743, -0.0107006785, -0.00659665326, 0.0358535647, -0.00708133122, -0.0188835487, -0.011946992, 0.014515155, -0.00748418, 0.00928441156, 0.0129415262, -0.00197018357, 0.017788304, 0.00336127169, 0.0663693845, 0.0135583887, -0.00678548869, -0.00243283063, -0.0140619501, 0.016265031, -0.000813566265, 0.00591684552, -0.022962397, -0.0246996824, 0.0131177725, 0.015371209, -0.00195916835, 0.0210110955, 0.00947954226, -0.0287029948, 0.0215524249, -0.010197117, -0.0162902083, -0.0119218146, -0.0168944821, -0.00245014066, 0.0465542451, -0.0180778522, -0.00213856203, 0.00788073428, -0.000783273892, 0.00859201513, -0.0194626451, -0.0167434141, 0.0140871275, 0.0060553248, -0.0129163479, -0.00107872277, -0.00531257177, 0.0255935043, 0.0159125384, 0.00981944613, -0.0130800055, -0.00974391121, -0.00712539256, 0.0120539991, 0.00288603571, -0.00485936692, -0.0279476531, -0.00894450769, -0.00213698833, 0.00859201513, -0.000526772346, 0.0150061278, 0.0150942504, 0.00585704762, -0.0287785288, -0.00040599631, -0.00755341956, 0.000135823866, -0.00540384231, 0.0176120568, 0.000382982, -0.00192926929, 0.0158118252, 0.0154341543, 0.00284512155, -0.00867384393, 0.00533460267, -0.00379874068, 0.00859831, -0.0475613661, -0.0167308245, 0.00264841784, 0.0131051829, -0.00323852873, -0.000316496153, 0.00156733464, -0.00342106982, -0.0145277437, 0.0278217625, 0.000496873399, 0.0039340728, -0.00565562304, -0.0103670685, 0.0402849056, 0.0120477043, 0.0226854365, -0.0104803704, 0.00118258223, 0.0354255401, 0.0113993697, 0.000580275722, 0.005545469, 0.0197773706, 0.0148298806, -0.00333294645, -0.00146032788, -0.0137598133, 0.00431803847, 0.0101782335, 0.00958025455, -0.0177379474, 0.0173476879, 0.0088060284, 0.00303395698, -0.0158370044, 0.00779890595, -0.0175113454, 0.0140115935, 0.0196263026, -0.0126897451, -0.00272709923, 0.017826071, 0.0177631248, -0.00893821381, 0.00338015542, -0.0154341543, -0.00392463105, 0.0210992191, 0.00676031085, -0.00481215771, 0.0246493258, -0.0232393555, 0.00524962693, -0.0189087279, -0.0183548108, 0.0242716558, 0.0157992356, 9.57455e-05, 0.00321492436, 0.0196766593, -0.00701838592, 0.00752824172, 0.00543531496, -0.000672333059, 4.04963612e-05, 0.0155222779, 0.0072575775, 0.0174735785, -0.00701209158, 0.0259334072, -0.0295590498, 0.0107132671, 0.00537236966, 0.0235666689, -0.0120665878, -0.00891933, 0.0301633235, -0.0414431, 0.0121232392, -0.00512373634, -0.0165797565, 0.0117203901, 0.0213384107, 0.00331091578, -0.00597664341, -0.0106125548, -0.021955274, 0.0107825063, -0.0150061278, 0.00871790573, 0.0103607746, 0.00929700118, -0.015333442, 0.0165797565, 0.00211023656, -0.0168567151, 0.00678548869, -0.000341870938, -0.0169700161, 0.0168189481, 0.0103167128, 0.000637319812, 0.012765279, -0.000123333186, -0.00598608516, -0.00172627112, -0.0194122884, -0.0142256077, -0.0100019863, -0.00789961778, -0.0148550589, 0.00365396682, 0.016076196, 0.00788702909, 0.00296943821, 0.00910816528, -0.0124757318, 0.00400646, 0.00565877045, -0.00406625774, -0.00835911836, -0.0187702477, -0.0111727668, -0.0310445558, -0.0215524249, 0.00579410233, 0.0110342875, -0.00532516092, -0.00912704878, 0.0394792072, 0.00067626714, 0.0200920962, 0.00385853858, -0.0237932727, -0.00748418, 0.0333609357, 0.00644243741, 0.0224588346, -0.00164444244, -0.0210488625, -0.0102222944, 0.0118211024, 0.0268649962, -0.0164790433, 0.00571227353, 0.0117707457, 0.000966995081, -0.00298989541, -0.00599552691, 0.012469437, -0.0101152882, -0.00110390084, 0.0139612379, 0.0301381443, 0.022370711, -0.0265880376, 0.00502302404, 0.00565562304, -0.00184586691, 0.0129037593, -0.000287777424, -6.38303318e-05, -0.00378929893, 0.0143766757, 0.001544517, -0.0187198929, 0.00379874068, -0.0257571619, 0.0138731143, -0.0113049513, -0.00744011858, 0.00742752943, 0.0214139447, -0.0207215492, 6.45188e-05, 0.0197899602, 0.00187261868, 0.00696173543, -0.0027947654, 0.00534089701, -0.00744011858, -0.00371376472, -0.0129037593, -0.0319257863, 0.0268398188, -0.0219426844, -0.0140115935, -0.00864237081, 0.00597034907, 0.00942289084, 0.00745270774, 0.0108139794, 0.00459814444, -0.0159754828, 0.0135709774, -0.0122491289, 0.0206837803, 0.0106503218, 0.0150187165, 0.00627878029, -0.0288540628, 0.00215115095, 0.00491287, 0.0149305928, 0.0288288854, -0.0105873765, -0.00932217855, -0.0151446071, -0.0113427183, 0.0193745214, 0.011053171, 0.0287029948, 0.0213006437, -0.0159377158, 0.000694363844, -0.0259585865, -0.0152327297, 0.00486880867, 0.00462332228, 0.00966837723, -0.00145245972, 0.000974863244, 0.0134199094, -0.00665330375, 0.000820647576, 0.00761007052, 0.0148802372, 0.0146914013, 0.0465542451, 0.00774855, -0.00535033923, 0.00481215771, 0.0144647993, 0.0114308419, 0.00373264821, -0.00178606901, -0.00576892449, -0.0089508025, 0.00195916835, -0.000901689462, 0.011128705, -0.00315984734, -0.0175491124, -0.00260435627, 0.0124253752, 0.00404422684, 0.0197144262, -0.0148802372, -0.00908928178, 0.00106613373, 0.0124946153, 0.0226476695, -0.020583069, 0.00262323976, -0.0139486482, -0.0289044194, 0.00599552691, -0.02227, 0.00935365167, 0.0106880888, -0.00827729, -0.011090938, -1.79615017e-05, -0.00803809799, 0.00936624, 0.00398442894, 0.00544790411, -0.00248318678, 0.019538179, -0.0208096709, -0.0156859346, 0.00370747014, -0.0260089412, -0.000720722135, 0.0150313051, 0.0124379648, -0.0112608904, 0.0218797401, -0.0166552905, -0.0175742898, 0.00557064731, -0.00801921356, 0.00259491452, 0.00134781329, 0.0173980445, 0.0405115075, 0.0103670685, -0.00311263837, 0.0100082811, -0.0285519268, -0.00377041544, 0.00519297598, 0.00620324584, -0.00676031085, -0.00630395813, -0.0138227586, -0.00792479608, -0.00402219594, 0.00332035753, 0.0127715738, 0.0116889169, 0.0130674159, -0.00302451523, 0.0056084143, 0.00362249417, 0.0101719387, 0.0236422047, -0.00590110943, 0.0177631248, -0.00910816528, -0.00145088602, 1.41011924e-05, -0.00898227468, 0.00379244611, -0.0182415079, -0.00886267889, 0.00524333213, 0.00229907222, 0.00217003445, 0.030666884, 0.00776113896, 0.0258830525, 0.0110972328, -0.0241835322, -0.00262166606, -0.00784296729, 0.0401841924, -0.0010039754, 0.000260632311, -0.0365081951, 0.00551399635, -0.00900115818, 0.000386719359, 0.00538495881, -0.00378300436, 0.00645187963, 0.00191668025, -0.0100586377, -0.0142381964, -0.0269405302, -0.00966837723, 0.0015240598, 0.00459814444, 0.0044218977, -0.0160887837, 0.00832135, 0.011537849, -0.00579095539, 0.00537866447, -0.0267894622, -0.00246115588, -0.00251151202, 0.00473347632, 0.0102160005, 0.0134828547, -0.00590110943, -0.0166678801, -0.00301664695, -0.0005712274, -0.0173476879, 0.0088249119, 0.0163783319, -0.0213258211, -0.0039151893, -0.000697904499, -0.00798144657, -0.01615173, 0.00678548869, -0.00327314856, 0.0172973312, 0.0142507851, 0.0100334594, -0.00453205174, 0.0161643177, -0.0146410456, -0.0174358115, 0.0120791774, -0.00799403619, 0.00282623782, 0.0142507851, 0.0137220463, 0.00519927079, 0.00227704132, 0.00263425522, -0.0149683598, -0.0114245471, -0.00849130284, 0.0257319827, 0.000675480289, -0.0210236851, 0.0341666341, 0.00107164145, -0.00684843399, 0.00517094508, -0.0238813963, -0.00761007052, 0.00368543947, -0.00460129138, 0.0208474379, -0.00747159123, -0.0166175235, 0.0055045546, 0.027318202, -0.0186065901, -0.0126330946, -0.0027711608, -0.0272678453, -0.0163657423, -0.002558721, -0.0130548272, -0.00454464089, 0.00703097507, 0.0180400833, -0.00169794587, 0.00288918312, 0.0174106322, -0.00133679796, 0.0190849733, 0.00937253516, 0.0327314846, 0.00209450047, -0.014515155, 0.0164916329, 0.00696803, -0.00553288, 0.00473032892, 0.00674772169, 0.00727016665, 0.0241709426, -0.0224588346, -0.00250521768, 1.54658246e-05, -0.000801764, 0.00844724104, 0.00403163768, 0.00208977959, 0.00638263952, 0.0188080147, -0.0201802198, 0.00959913805, 0.00623471849, -0.00235414924, 0.0196388923, -0.00481215771, -0.00230694027, 0.00522130122, 0.000960700563, -0.0119784651, -0.00182226254, 0.023893984, -0.0233400669, -0.0157362912, -0.0389756449, 0.000648335204, -0.0197899602, -0.0105118426, 0.0348716229, -0.00650853, 0.00896968599, 0.0270915981, 0.00896968599, 0.0206837803, -0.00814510416, 0.0109902257, 0.0113175409, -0.000679020945, 0.0012179889, -0.0242338888, -0.0129415262, -0.0133947311, 0.0182918645, -0.0101719387, 0.0201046858, -0.000177623384, 0.0108076846, -0.00300405803, -0.0100964047, -0.00159093901, 0.00384280225, 0.0207844935, -0.0108517464, -0.000288170821, -0.0077863168, 0.0014162662, 0.00924664456, 0.00991386361, -0.00797515269, -0.00677289953, -0.0129037593, 0.00959913805, 0.00411031907, -0.00356269628, -0.00319761434, 0.000618829625, -0.0172721539, 0.00934735686, -0.013810169, 0.00114009425, -0.0182792768, 0.0133695528, -0.0132814301, -0.00316142081, 0.00468312, 0.0123750195, -0.0050356132, 0.0108895134, -1.59821707e-06, -0.00875567272, -0.00661553675, 0.00836541224, -0.00911446, 0.0112608904, 0.000816713495, -0.00642984873, 0.00836541224, 0.0143389087, 0.00387742207, -0.0182289202, -0.00106377329, -0.0156355798, 0.00488769216, -0.0219426844, 0.0131555395, 0.00710021472, 0.00608365, 0.000680594589, 0.000287777424, 0.0114497254, 0.0103167128, -0.00900745299, -0.0139486482, -0.0078933239, 0.00286243134, -0.0025398375, -0.0183799881, 0.0104300138, 0.00403163768, -0.00837800186, 0.00886267889, 0.00207404327, 0.00210079481, 0.00348716206, -0.0165419895, -0.0164916329, 0.0264873262, -0.00021775093, 0.0073016393, -0.00912704878, -0.022219643, -0.0120162321, 0.0272174887, 0.0127526904, -0.00759748137, 0.022370711, 0.00810104236, -0.0197521932, -0.00849759765, -0.000616862613, 0.0406122208, 0.00261379802, -0.0066910712, -0.0124001978, 0.00936624, -0.00519297598, -0.00323538156, -0.0196388923, 0.0134702651, 0.0177757144, 0.00572801, -0.00103544793, -0.0182289202, 0.0234030131, -0.00145245972, 0.000533853658, 0.0153586203, -0.00468312, -0.000432354602, 0.0104488973, -0.0126582729, -0.00238719536, 0.00722610485, 0.00710650906, 0.0138982926, 0.0170077831, -0.00210236851, 0.00307172397, 0.0364074819, -0.0072135157, 0.0115630263, 0.00144616514, -0.0176875908, -0.00151855208, 0.00441245595, 0.00464535318, 0.0112797739, -0.00857313164, -0.024712272, -0.00859831, -0.00699320761, 0.0192612205, -0.00967467204, 0.00188992859, -0.00270978943, -0.00378929893, -0.0157740582, -0.0215272456, -0.000101007317, -0.00314883189, -0.00253196922, 0.00905151479, 0.00368543947, 0.0112734791, 0.020507535, -0.00845353585, -0.0233904235, -0.00103623478, 0.0027711608, 0.00691137929, -0.0126897451, 0.0166552905, 0.00500414055, 0.019727014, -0.0374397859, -0.000804911309, 0.00148550584, 0.0129792932, 0.026386613, -0.0186821241, -0.0124631431, 0.0136339227, 0.00280892802, 0.0127463955, 0.0176624134, 0.0212251097, -0.00322908699, 0.0200543292, 0.000125103514, -0.00118887681, 0.0088689737, -0.00204886519, 0.00212754658, 0.0148550589, -0.017863838, 0.0113804862, 0.0258075185, -0.0350226909, 0.00245014066, 0.0209733285, -0.00570597919, -0.0177379474, 0.0189968515, -0.0157111138, -9.80075856e-05, 0.0102474727, -0.00353751821, -0.019575946, 0.0112357121, 0.0199787952, 0.000460286508, -0.00119595812, -0.0113804862, 0.0121484166, 0.00803180318, -0.00676031085, 0.0087242, -0.00177348, 0.00799403619, -0.0133947311, 0.0146032786, 0.0135080321, -0.00466738408, -0.0154467439, 0.0152453193, 0.0196263026, 0.00338015542, 0.0305409934, 0.027242668, -0.0112734791, 0.0355514288, 0.0186317693, -0.0134954434, -0.00227704132, 0.00309218117, -0.0108139794, -0.00423935708, 0.0260089412, 0.0367851555, -0.0359039232, -0.00420788443, 0.00430859672, 0.00689879, -0.00278532365, -0.00903263129, 0.00852907, 0.00964949373, -0.00653370796, -0.0108832186, -1.3707785e-05, -0.0116070881, 0.00178764272, -0.0109272804, 0.0166804679, 0.0073205228, -0.00813251548, 0.0136339227, -0.0219678618, 0.0105118426, 0.00426453492, -0.00431174366, 0.00963690504, 0.0124379648, 0.0216531362, -0.00681066699, 0.00639837608, -0.0200795084, 0.00424879882, 0.00169007771, -0.000464614, 0.0104677808, 0.0154467439, -0.0186317693, 0.0120162321, 0.0073205228, -0.0215524249, -0.0132562518, 0.0210362747, 0.0209355615, -0.0189716723, 0.000117923832, 0.0156104006, -0.00667848205, 0.022181876, 0.0264117904, 0.0160258394, 0.00147685094, 0.0110279927, 0.0101026986, 0.00704985857, -0.0142256077, 0.00500414055, -0.0133947311, 0.00258389907, -0.00895709731, -0.00935365167, -0.00162870612, -0.00677289953, 0.011984759, -0.0119721703, -0.0206586029, 0.00139816944, 0.00823322777, -0.0126142111, 0.0141626624, 0.0215272456, 0.0144144427, -0.0177757144, 0.0263362564, 0.0217160825, -0.022370711, 0.0197773706, -0.0201046858, -0.015295675, -0.00485621952, 0.0328573771, -0.00486880867, 0.0188080147, -0.00947324745, 0.00300563173, -0.0133443754, -0.00223140605, 0.0088060284, -0.00642040698, 0.00375153194, 0.000113891409, -0.00261222431, 0.000900902669, 0.00192926929, 0.00520556513, 0.0127086286, -0.00879344, -0.00403163768, 0.00575948274, 0.0021826236, -0.00651482446, 0.0012880154, 0.0130925942, 0.00333294645, -0.00197175727, 0.00513003115, 0.00409458298, 0.00116055144, -0.00788073428, 0.00731422799, -0.00407255208, -0.000155690926, -0.0128911696, 0.00695544062, -0.00317558367, 0.0170203727, -0.0117078, -0.0135583887, -0.00224556867, -0.00472403457, -0.0182289202, 0.00665959856, 0.0128596975, 0.00234470749, -0.011053171, -0.020280933, -0.007704488, -0.00983203482, 0.0049317535, -0.0228616837, -0.0146914013, -0.00204099691, -0.00883750152, -0.00130689901, 0.0030906077, 0.00152327295, 0.00738346763, 0.0141878398, 0.00530627742, 0.0187576599, 0.0218797401, 0.0184807, -0.0122680124, 0.0088689737, -0.00464535318, 0.00530313, -0.0101530552, 0.00862978213, -0.0152830863, -0.00170424033, -0.00904522, 0.0013666969, 0.0298863649, -0.00262953434, -0.00280263345, -0.0110972328, -0.00102757977, 0.011500082, -9.31268823e-06, -0.00982574, -0.0204068217, 0.0314222276, -0.0109965205, 0.0234533679, -0.0174609888, -0.00550770201, 0.0111601781, 0.00262953434, 0.00483733602, 0.00995792542, 0.0259585865, 0.0133443754, -0.00276486645, -0.0357780308, 0.0253291335, 0.000180573945, -0.0118211024, -0.00682955049, -0.0167434141, 0.00592314, -0.000542902038, 7.3763862e-05, -0.0143892644, 0.0039970181, -0.0114056636, 0.00896968599, -0.0224336572, 0.0050135823, -0.0216657259, 0.00633228337, 0.00618436234, -0.00141075847, 0.0198403168, -0.00490342826, 0.0168693047, -0.00271293661, 0.00700579677, -0.00912075397, -0.0211118087, 0.00938512385, -0.00601126347, -0.00394980889, 0.00344939507, -0.0121924784, -0.0178764276, -0.00189622305, -0.000817500346, -0.000485071185, 0.0104048355, -0.0022833359, -0.0120162321, 0.00900745299, -0.0124001978, -0.0176120568, 0.0204445887, 0.0180652626, -0.00165860506, -0.0056052669, -0.00932217855, -0.00632284163, -0.00326370681, 0.00729534449, -0.00805698149, 0.00787444, 0.0143137304, -0.00811992586, 0.00692396797, 0.00705615291, 0.0106943836, 0.0184807, -0.0142759634, -0.0161643177, -0.0114434306, -0.0209229738, 0.00471774, 0.0140997171, -0.0204571784, 0.00015431401, -0.0165294, 0.024523437, -0.0346198417, -0.00643929048, 0.00752194738, -0.00105747872, -0.00201739254, 0.0348716229, 0.0049946988, 0.00958025455, -0.0129541149, 0.006178068, -0.0220433977, 0.028803708, 0.00419214787, -0.00229435135, 0.0103355963, 0.00378615176, 4.99873131e-05, 0.0280987211, -0.00145639374, -0.00764783751, 0.012469437, 0.00343995332, 0.00456352439, 0.00633543078, -0.0141752511, -0.0128219305, -0.00822693296, 0.00222825888, 0.00532830833, -0.0139108812, 0.0187450703, 0.0150187165, 0.00957396, 0.0203690547, 0.0147795249, -0.00302136783, 0.00871161092, -0.0235918481, 0.00797515269, -0.0116322665, -0.00236201729, -0.0168441255, -0.0228113271, -0.0117455674, -0.0290554874, 0.0106188497, -0.00267989049, -0.0157740582, -0.00889415201, 0.00176561193, -0.0090389261, -0.000773438718, -0.00152642024, -0.0167182367, 0.0223958902, -0.0182163306, -0.0116763283, -0.0233904235, -0.0104929591, 0.00647076312, 0.0161769073, -0.00285928417, -0.000526378921, -0.0206837803, 0.0191982761, -0.00591684552, -0.0192863978, -5.38967979e-05, -0.00314253732, -0.000532673439, 0.00584760588, 0.00684843399, -0.022370711, 0.0133191971, -0.00696173543, 0.00230694027, -0.000204375086, -0.011909225, 0.0163153876, 0.0143137304, 0.00763524836, -0.0289295986, -0.020394234, -0.0012777868, -0.00947954226, -0.0341162793, -0.0228742734, -0.0108706299, 0.00491601741, 0.00744641293, 0.0123246629, 0.0218797401, 0.00451631565, -0.0153208533, -0.0108391577, 0.00651482446, -0.016076196, 0.0114497254, 0.00133050338, -0.0160132498, -0.0033014738, 0.0321272127, 0.0033046212, 0.0124253752, -0.0249640532, 0.0200165622, -0.004019049, 0.0104929591, 0.0194248781, -0.00761636486, 0.00588222547, -0.0218671504, 0.0129037593, -0.00548881851, -0.0172847416, -0.0153460316, -0.00735199545, -0.00492231175, -0.0144647993, -0.0123246629, -0.00677289953, -0.000650302216, -0.00722610485, -0.000699871569, -0.0126456833, -0.00328888488, 0.00367599772, 0.00959913805, 0.00388686382, 0.00192140113, -0.0202053972, -0.000274008169, -0.0169574283, 0.0139990048, -0.00569653744, -0.0206711926, 0.0217664372, -0.0109839309, -0.0123057794, -0.0299618989, -0.0180400833, -0.00230221939, 0.0151697844, -0.00332665187, -0.016113963, 0.0259837639, 0.00115740427, 2.48215401e-05, 0.0255431477, 0.00970614422, -0.00414808653, -0.0210866295, -0.00556120509, 0.00628507463, 0.00541643146, 0.0079562692, 0.00720722135, -0.0130925942, 0.0201802198, 0.0134450868, 0.0127967522, -0.000678234152, 0.0163909215, 0.0127463955, -0.00464220578, 0.0124883205, -0.00413235, 0.0373894274, -0.0142130181, -0.00827729, 0.0150313051, -0.0242087096, -0.00896968599, -0.00733940629, 0.0237177387, 0.00978797302, 0.00163814786, 0.0116007943, 0.0189968515, -0.007238694, 0.0155096883, 0.00464220578, -0.00205830694, -0.00558008906, -0.00740235159, -0.00405681599, -0.00593887642, -0.00484677777, 0.0243849568, 0.00151619164, -0.000985878636, -0.00112278434, -0.0208222605, 0.00263425522, 0.023000164, 0.00105118426, 0.0205704793, 0.0259082299, -0.00904522, -0.0112986574, 0.0138857029, -0.0179645494, 0.0186443571, -0.00243912521, -0.0177379474, 0.0107636228, 0.0327566639, -0.0285015702, -0.024750039, -0.0134450868, -0.0078114951, -0.00301035261, -0.0187324807, 0.00155789289, 0.00790591259, 0.010234884, 0.0182792768, 0.0181659739, 0.000680594589, 0.0163153876, -7.39113893e-05, -0.0090137478, 0.00384909683, 0.0297101177, -0.0317495428, -0.00639208127, 0.0251654778, 0.00857942645, 0.00619065715, -0.0326055959, 0.0166301131, 0.00217160815, 0.0110216988, 0.0100775212, 0.00617177365, 0.00711909821, -0.000861562, -0.0022408478, -0.0357528552, 0.0121861836, 0.0203690547, 0.0125009101, 0.00799403619, -0.0227861498, -0.0124379648, -0.0228616837, 0.00985091832, -0.0100208707, -0.0127149234, 0.00845353585, -0.00358787435, 0.0177631248, -0.00445337035, -0.00346827856, -0.0123750195, 0.0030670031, -0.00106692058, -0.00551399635, 0.0125953276, 0.00148786639, -0.00672254339, 0.000769898063, -0.00852277502, -0.0321775675, -0.0232267659, -0.0104803704, 0.0044628121, -0.0118903415, -0.000276368606, -0.0187576599, 0.0161265507, -0.00951730926, 0.00418900093, 0.00289547769, -0.00227704132, 0.00946065784, -0.0213635881, -0.0118588693, -0.0423495062, -0.000997680821, 0.0176246464, 0.0237429161, -0.0312208012, -0.0078303786, -0.011015404, 0.00925923418, -0.00951101445, 0.000392423768, 0.00974391121, -0.0122491289, -0.0450939164, -0.000507102, 0.0129541149, -0.027318202, 0.0198654942, -0.00655259145, -0.00463276403, -0.00243755151, 0.00803180318, -0.0103041232, 0.0115504377, -0.00143514981, -0.0292065572, -0.00522130122, 0.00484992517, -0.0268398188, -0.0312963352, -0.0120791774, -0.0114056636, -0.0044879904, -0.0132058952, -0.00948583614, -0.00634172559, -0.0220056288, 0.00589796202, -0.0138353473, 0.00151855208, -0.0138353473, 0.0137975803, -0.0103670685, -0.00319604063, -0.0179645494, 0.00891933, -0.00942289084, 0.0116826231, -0.0239065737, 0.0148424702, -0.0116574448, 0.0125134988, 0.00844094623, -0.00050395471, -0.00414493913, -0.00960543193, -0.00104725023, 0.00749047473, -0.00907039829, -0.0294835158, 0.00308273942, 0.00293167098, -0.00718204351, 0.0236170255, 0.00361619983, -0.0015649742, 0.0049726679, 0.0232519433, 0.000418978743, 0.00404422684, -0.0241457652, -0.000874150952, 0.00858572, -0.00256973645, -0.00816398766, -0.00246745045, -0.0060962392, 0.00489713391, -6.7911933e-05, -0.00946695264, -0.0131303612, -0.00708133122, -0.00879344, -0.0213384107, -5.55073075e-06, -0.0242590662, 0.00849759765, -0.0210362747, -0.00101026986, -0.0137472237, 0.0165419895, -0.00767301582, 0.0105999662, 0.0167182367, -0.00414179172, -0.0155852232, 0.015182374, 0.0200669188, -0.0123057794, 0.0325552411, -0.0160258394, 0.0225469582, -0.00566191738, 0.00154766429, -0.00904522, 0.0211621653, 0.00154766429, 0.0233400669, 0.00861719344, -0.0158999488, -0.00796885788, -0.0109209865, -0.0119281085, -0.020545302, 0.0223581232, -0.0198151376, -0.0207467265, 0.00597979082, -0.0240576416, 0.00771707715, -0.00462646969, 0.00427082926, 0.00209450047, 0.00154609059, 0.0106251435, -0.027318202, -0.028954776, 0.0312208012, -0.012878581, -0.00863607693, 0.0142381964, -0.0175365228, 0.0274692699, 0.0239569303, -0.0198906716, 0.0124064917, 0.00410402473, -0.0117140952, 0.00266887504, -0.0198151376, -0.0167308245, -0.0116763283, 0.00549196545, -0.00530942483, -0.0150061278, -0.00578466058, 0.0395799205, 0.00840317924, 0.00530942483, -0.00298360083, 0.00688620098, -0.0147417579, -0.0143766757, 0.0088060284, 0.0211747531, 0.0120288208, 0.0124379648, -0.0294835158, 0.0166301131, -0.0213635881, -0.0169574283, 0.00411976082, -0.00766672101, -0.0149683598, -0.0141752511, 0.0225973148, 0.0325048827, -0.00342421699, -0.00215587183, -0.000588143885, 0.0233274773, 0.00752824172, -0.00637949258, 0.00236831186, 0.00188048685, 0.00662183156, 0.0130548272, -0.0151446071, 0.00122507033, -0.00381132984, -0.022295177, 0.0194878224, -0.0182918645, 0.0250144079, -0.000465400808, -0.0188583713, -0.02227, 0.0171084963, -0.00936624, 0.0157992356, 0.00937253516, 0.00432748, 0.0203187, 0.0089948643, 0.0108958082, 0.0156481676, -0.0292820912, 0.00416697, 0.0140619501, -0.0078114951, 0.00228963047, 0.00911446, 0.00726387184, 0.0192360431, 0.00588222547, 0.00465479493, 0.00758489221, 0.0276203379, -0.00885638501, 0.0012777868, 0.00491916481, 0.000704199, 0.00071206718, 0.00235887, -0.0199284386, -0.0180023164, -0.0290806666, 0.0126771564, -0.00982574, 0.0137598133, -0.00535348617, -0.0163783319, -0.0078492621, -0.00870531611, -0.00632284163, 0.00812622067, 0.010568493, 0.00569968484, -0.00959913805, -0.0164035093, 0.00386168598, 0.00183642516, 0.0124946153, 0.0115944995, -0.0131681282, 0.00361305242, -0.00288288854, -0.00141862663, 0.000113301299, -0.00437783636, 0.00949842576, -0.0112860678, -0.00972502772, 0.0285015702, -0.0128156357, -0.0236799717, 0.0156229902, 0.011135, -0.00914593227, -0.012878581, -0.0120036425, 0.0153082637, 0.00443763426, -0.000957553333, -0.00213541463, -0.0294835158, -0.00274440926, 0.0188457817, 0.0191101525, -0.0106566167, 0.000198670677, -0.013696868, 0.0253543127, 0.0233904235, 0.0261851884, -0.0195633564, 0.0246241484, -0.0172847416, -0.00166332594, -0.0136716897, 0.0245737918, -0.00908298697, -0.00942289084, -0.00568080135, -0.00177190639, 0.00333294645, -0.000485857978, -0.00054172182, 0.0173476879, 0.00245014066, 0.0143011417, 0.017977139, 0.000569653756, -0.0139486482, -0.00128250779, -0.00527795218, 0.00561470864, 0.002558721, -0.00586648937, -0.0340911, -0.0161013734, 0.0118399858, 0.0200165622, -0.0268901736, 0.00205515954, -0.0189213157, -0.0259837639, 0.0172847416, -0.0186443571, 0.00191038579, -0.0171084963, -0.00571542094, -0.00432748]
|
08 Feb, 2022
|
Fabric.js | Image borderColor Property
08 Feb, 2022
In this article, we are going to see how to set the border color of a canvas image using FabricJS. The canvas means the image is movable and can be stretched according to requirement. Further, the image can be customized when it comes to angle, stroke width, padding, etc.To make this possible we are going to use a JavaScript library called FabricJS. After importing the library, we will create a canvas block in the body tag which will contain our image. Further, we will create an img element which contains the image to be added inside the canvas and set the style attribute to display: none; because we don’t want the image to be visible outside the canvas. After this, we will initialize instances of Canvas and Image provided by FabricJS and render the Image on the Canvas and set the border color of the canvas image using borderColor property as given in the example below.Syntax:
fabric.Image({
image,
borderColor: string
});
Parameters: This function accepts two parameters as mentioned above and described below:
image: It specifies the image object.
borderColor: It specifies the border color of the image.
Example: This example uses FabricJS to set the border color of the canvas image. Note that you have to click on the image object to see the border color.
html
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Image borderColor Property
</title>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;width: 600px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Image borderColor Property
</b>
</div>
<div style="text-align: center;">
<canvas id="canvas" width="600" height="400"
style="border:1px solid #000000;">
</canvas>
</div>
<!-- Add the image to be used in the canvas and hide it here
because only need it inside the canvas -->
<img style="display: none;" src="https://media.geeksforgeeks.org/wp-content/uploads/20200327230544/g4gicon.png"
id="my-image" alt="">
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Get the image element
var image = document.getElementById('my-image');
// Initiate a Fabric instance
var fabricImage = new fabric.Image(image, {
borderColor: 'red'
});
// Add the image to canvas
canvas.add(fabricImage);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property
|
https://www.geeksforgeeks.org/fabric-js-image-bordercolor-property/?ref=next_article
|
CSS
|
Fabric.js | Image borderColor Property
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.000146345177, 0.00474366779, -0.00829308294, 0.0467516482, 0.0610099323, -0.00494068908, -0.0037040012, 0.00760805467, -0.0175318681, -0.0315476619, -0.0236789342, -0.0192656554, 0.0114514865, -0.0597974919, -0.0167801566, -0.00232636742, -0.0386525542, -0.0326873548, -0.00687452918, 0.00952370837, 0.0140885413, -0.0162103102, -0.0138824265, -0.0299472436, -0.023230331, 0.0203568507, 0.0137126856, 0.0393557698, 0.0021278304, 0.0128518539, 0.0102754207, 0.00945702475, -0.00255673076, -0.0154707218, -0.0118091563, -0.0291227847, -0.0117364097, 0.0659081861, -0.0319113955, -0.0098207565, -0.00111089728, -0.0131185902, 0.01510699, 0.00565602817, -0.0229272209, 0.0182957053, -0.0432840735, -0.0187685564, -0.0110513819, -0.0414654128, -0.00494978251, -0.0247943774, -0.0019217158, -0.00400711084, 0.0269161463, 0.0145856412, 0.00124199223, 0.0292682778, -0.0192899052, 0.0156040899, 0.00629255828, -0.0417321511, 0.00175803655, -0.00765655236, -0.000766109908, 0.0307474528, -0.00786872953, 0.00848707277, -0.0134944459, 0.0192050338, -0.0263341758, -0.00314627914, 0.0389192924, -0.00808090623, 0.015591966, 0.0146462638, 0.0350879841, 0.00171560119, -0.0285165664, 0.0371976309, 0.0219693948, -0.00133368291, -0.0321538821, 0.0461696796, -0.0395982601, -0.0470183864, 0.076189667, -0.0403257236, 0.024370024, 0.0078323558, 0.015591966, -0.00348879327, 0.0294137709, -0.0468486436, -0.032299377, 0.012997346, 0.01430678, -0.0303594731, -0.0286378097, 0.00765655236, 0.0174469966, 0.0291470345, 0.00781417, 0.00603491534, 0.0305534638, -0.0439630374, 0.0237153079, -0.0150584923, 0.0066926633, 0.0103239184, 0.00387374265, 0.00409804378, -0.0240790397, 0.0512134247, -0.0288318, 0.0372946225, -0.00652292185, -0.0111726252, 0.0359851904, 0.00554387737, 0.0184169486, -0.0215692893, 0.00106315746, 0.0297290049, -0.0238123015, 0.0241154116, -0.0160526931, 0.000963131257, 0.0105118463, 0.0046921391, -0.0322266296, -0.0207812041, 0.00350394868, 0.0123001942, 0.0351849794, 0.0128518539, -0.0215086676, 0.0143795265, -0.00476791663, 0.00178380089, -0.00996018667, -0.0566936471, 0.00486794254, 0.0573241152, -0.010724023, 0.0205144677, 0.0250247419, -0.0167195331, -0.0132762073, 0.0201871097, -0.0561116785, -0.0250004921, 0.0334390663, -0.00124956993, 0.0438175462, 0.00157465518, -0.00334936287, 0.0103360424, 0.0357427038, -0.010063244, 0.00235213176, -0.0165619161, 0.00748681091, 0.0433810689, 0.00811121706, -0.0146220149, -0.0100996168, -0.0153979752, -0.048740048, 0.0352819748, 0.0139430491, 0.00276436098, 0.0145007707, -0.0106027788, -0.0318871476, -0.0103602912, 0.0290015414, -0.0191080384, 0.0111665633, -0.00953583326, -0.0360094383, 0.0188776758, 0.0206357129, 0.0508254431, -0.0209388211, 0.0122274477, 0.0226604845, 0.0193747748, -0.0123244422, -0.0384100676, -0.0126942368, 0.00803847052, 0.0480368324, -0.0310384389, 0.0509709381, 0.00617131451, -0.0071291416, -0.00885080453, -0.0108573912, -0.0145977661, 0.0423626192, -0.026964644, -0.00986925326, -0.0177379828, -0.00102754205, -0.00433750078, -0.0233273264, -0.0715339, 0.0507284477, -0.0287833028, -0.0114151137, 0.00949945953, 0.0112574967, -0.0258976966, -0.0172530077, 0.00971163623, -0.01217895, 0.00306595513, -0.0176409874, 0.00650473544, -0.01380968, 0.0488612913, -0.0396952517, -0.0108270803, -0.0588760376, -0.0264554191, 0.0186473113, 0.00231272751, -0.00829308294, -0.0387253, 0.00543778902, -0.0204053484, 0.0193384029, -0.0147311343, 0.0307959504, -0.0169741455, -0.0241396613, -0.00677147182, -0.0118637159, 0.00734738028, 0.0112332478, -0.0207448322, -0.0324206203, -0.037706852, 0.0339482911, 0.0119970841, -0.0196293872, -0.0104330378, 0.0176046137, -0.000323569664, 0.00181411183, 0.0009942, -0.0173136294, 0.0295350142, 0.00551053556, -0.00634711841, -0.036373172, -0.0215692893, 0.0321296342, 0.0265039168, 0.0412229262, 0.0225271173, -0.0111362524, -0.00897811074, -0.00783841871, -0.0293167755, 0.0015231265, -0.0223573763, -0.0255582146, -0.0202477314, 0.0105845928, -0.0309171956, 0.0209145732, -0.0301897321, -0.032299377, 0.0577605963, -0.0216662847, -0.0147068854, 0.0364944153, 0.00528017199, 0.0103845401, 0.0173621271, -0.00826883409, 0.0374886133, 0.00726857176, -0.0404227152, -0.0320326388, 0.0162951797, -0.0241639093, -0.0215814151, 0.000176656147, 0.00803240854, 0.0140642924, -0.0434538126, 0.0453209691, -0.0148766264, 0.00842645112, -0.0117545966, -0.035912443, 0.000496721128, -0.0347000062, -0.0463879183, -0.0303109754, -0.0279830918, 0.0208660755, 0.00523470528, 0.0294622686, 0.0101178037, 0.0432355739, -0.00272798771, 0.00522864331, -0.00798391085, -0.0297775026, -0.0414411649, -0.0215329174, -0.0098207565, 0.0412471741, 0.000872956065, 0.00810515508, -0.000989653403, -0.0136763118, -0.0192777812, 0.0324206203, 0.0471396297, 0.0134944459, -0.0290015414, -0.0041101682, 0.0104512246, -0.00177622319, -0.0053135138, -0.0360821858, -0.0207448322, 0.031014191, 0.0308202, 0.0176046137, 0.0163679272, -0.00530442083, 0.00508618169, -0.0169135239, 0.0451754779, 0.0064138025, -0.00162315276, -0.00678359624, -0.0396952517, 0.0406894535, -0.0434053168, 0.0165619161, 0.0110028842, 0.0193505269, 0.0148281287, 0.000786569784, 0.0279103462, -0.0145977661, -0.00287954276, 0.0348939933, -0.000976013427, 0.00496493792, -0.0341907814, -0.0532018244, -0.00906298123, 0.0181017146, -0.025339976, 0.0256067123, -0.00870531239, 0.0393072739, 0.0105118463, -0.0348697454, -0.00617131451, 0.00759593025, 0.00405257754, -0.0212298073, 0.000340809027, -0.0743952617, -0.00769292563, -0.0328328498, -0.02824983, -0.0234849434, -0.00349182426, -0.031183932, 0.0159799457, -0.0263584238, 0.0557721965, -0.022563491, -0.0254369713, 0.0365429111, 0.0641137734, -0.0176773611, 0.0114272377, 0.019823378, -0.0101056788, -0.0233394504, 0.00119273691, 0.0250732396, -0.033317823, 0.00396770658, -0.00653504627, -0.00265827263, -0.0338755473, 0.0245882627, -0.0247701295, -0.00660173036, -0.0135671925, 0.0239577945, -0.0109907594, 0.0137975561, 0.0203447267, 0.00848707277, -0.0245640147, -0.00980863161, -0.0245761387, -0.0197142586, 0.00856588129, 0.0504859611, -0.0176894851, 0.0207812041, 0.0544142649, 0.0354032181, 0.0226362366, -0.00625618547, 0.0082203364, 0.0512619205, -0.0182350837, -0.0282983258, -0.00168680574, -0.0286620576, -0.0395982601, -0.0245155171, 0.00730494503, -0.0294380188, 0.00354941515, -0.13346529, -0.00299472432, -0.00789297838, -0.00607431959, -0.00728675863, 0.0038404006, 0.0224179979, 0.0106209656, 0.0157132093, 0.0106755253, 0.00251126429, -0.0103481673, 0.0301412344, -0.0325903594, -0.030044239, 0.00227635424, -0.039622508, -0.0313294232, 0.00299017783, -0.0104997223, -0.0321296342, -0.0160405673, -0.0401802287, -0.00473154336, 0.00289015146, -0.0162709318, -0.00566815259, 0.021605663, 0.0217875298, 0.0149857467, -0.0298502482, -0.00444358913, -0.0462666713, 0.031838648, 0.0158465784, 0.0164891705, -0.00821427442, -0.010566406, 0.0149251241, 0.00226726104, 0.0223816242, 0.031499166, 0.0118273422, 0.0307474528, 0.0155555923, 0.0315719135, -0.0278133508, 0.0034342336, 0.0291470345, -0.0289287958, 0.0323236249, -0.0197627563, -0.0104330378, 0.00242487807, 0.0281528346, -0.0153737264, 0.0268191509, -0.0235334411, -0.0266009122, 0.0019247469, 0.0184169486, 0.00880230684, -0.0250732396, -0.0112999314, -0.00553478394, -0.00582576962, 0.00144810684, -0.0325903594, 0.0302867275, -0.000335504621, -0.002841654, 0.0477216, 0.0308202, 0.0185866896, 0.0508739427, 0.0229272209, 0.00305231521, 0.0320568867, -0.0270131417, 0.00698971096, -0.00703820866, 0.0241639093, 0.00865681469, 0.00471638795, 0.00250671757, -0.0186230633, 0.021448046, 0.0103542292, -0.0239335466, -0.0170832649, 0.00570755685, -0.0201143641, 0.00319174561, -0.00743225124, 0.00643805135, 0.0262614284, -0.00691090245, -0.0351849794, -0.0182229578, -0.00127533427, 0.0104936594, -0.000384759944, 0.0208782, 0.0100268703, 0.00314627914, -0.008608317, 0.00577121, -0.0396710038, 0.0236183126, 0.00946308672, -0.0302867275, -0.0168165285, -0.00620465679, 0.0217996538, -0.0315719135, 0.0320568867, -0.00666235248, 0.0128033562, -0.0343362726, -0.00148826884, -0.0300199892, 0.031523414, 0.0228059776, 0.0139188, 0.0297775026, 0.00537413592, 0.0246488843, -0.0407864489, -0.0204295982, 0.0156283397, 0.0278133508, 0.004222319, 0.0286378097, 0.0263341758, -0.015591966, -0.0394042693, 0.00117985473, -0.00478913402, -0.0263341758, -0.0107967695, 0.0133125801, -0.0098207565, -0.00635924283, 0.00591670256, 0.0213146787, -0.0325418636, 0.0198476259, -0.016889276, 0.0338997953, 0.0233152024, -0.0207812041, -0.031014191, 0.00564087275, 0.0109543866, -0.00760805467, -0.00351910433, -0.0177016091, -0.0175076202, -0.051989384, -0.0145128947, 0.0207084585, 0.0211813096, -0.0272071324, 0.0120940795, -0.0487885475, 0.0210964382, 0.0305777118, -0.00430718949, 0.00922666118, -0.0150706172, 0.0105360951, 0.00778992055, 0.00382827618, -0.00578030292, -0.00672297413, -0.02306059, 0.0270373896, 0.012191074, 0.0200779904, -0.0290985368, 7.42974123e-07, -0.00167468144, -0.00698971096, 0.00789904, -0.0147917559, -0.00902054645, 0.0265281666, 0.034797, -0.00463757943, -0.0169862714, 0.0144643979, -0.0194232725, 0.040616706, -0.00533776265, 0.0290500391, 0.00177622319, -0.0249762442, -0.0251944829, 0.0146341389, -0.0365429111, -0.0185381919, -0.0102754207, -0.0164527968, 0.0215086676, -0.0103117935, 0.0253642239, -0.00412229262, 0.0127306096, -0.00915997662, -0.0260916874, -0.0126942368, -0.000650549307, -0.00319780782, 0.0317174047, 0.00076042657, 0.0294865165, -0.025994692, -0.0041738213, -0.00949339755, 0.0104269758, -0.00851132162, 0.00572574325, -0.0315719135, 0.0162224341, -0.0141127901, 0.00603794632, -0.00828095805, 0.032978341, -0.020138612, -0.0185624417, 0.0183199532, -0.0119910222, 0.00353122875, -0.0268191509, -0.01430678, 0.0165740419, 0.0408834442, 0.000181392243, 0.0166467875, 0.000305193622, -0.00564087275, -0.00563481031, -0.00476185419, 0.0139551731, 0.0202719811, -0.00263250829, -0.0143552776, 0.0602339692, 0.0357669517, -0.00748074893, 0.0248065032, -0.0265524145, 0.00408288836, 0.00637742924, -0.0140764173, -0.00746256206, -0.0204780959, -0.00912360381, 0.00459817518, -0.00528017199, 0.0268918965, 0.00156707747, 0.0178592261, 0.0116697252, -0.00105785299, 0.0294380188, -0.0106634013, -0.0203326028, -0.00790510233, 0.00586214243, -0.0144401491, 0.00652292185, -0.0236789342, 0.0137126856, -0.0196293872, 0.0301897321, -0.012342629, 0.00486188056, -0.0293895211, -0.0337543041, 0.00443752669, 0.0270858873, -0.0200901143, -0.00556812622, -0.00606522616, 0.001054822, 0.0044981488, -0.025339976, 0.0214116722, 0.00591973355, 0.0136156902, -0.00374643668, 0.0051468038, -0.0119910222, 0.0165497921, 0.0071655144, 0.0139915459, -0.0092933448, 0.022745356, -0.00383433839, 0.00814152788, 0.00575302308, -0.00879624486, -0.0132034607, -0.00685634278, 0.025339976, -0.00463454798, 0.00498615531, -0.0055741882, -0.0280073415, -0.00661991723, -0.0138581777, -0.0224664956, -0.00715339, -0.00670478772, -0.000996473362, 0.0164527968, 0.00795966201, 0.000462242373, 0.0270373896, -0.00788085349, -0.0274738688, 0.0496372543, -0.0166104138, 0.0189140495, -0.0112756826, -0.00895386189, 0.00778992055, -0.0124153756, 0.0172772557, -0.0104875974, -0.00474972976, -0.0320083909, 0.0442055278, 0.00145492679, 0.0403742194, -0.00421019457, -0.00412532361, 0.0132034607, -0.00774142332, -0.00256279297, 0.0199203733, -0.00369187677, -0.00292349351, 0.000447086873, 0.00527107855, 0.00399801787, -0.0176288635, 0.000625163841, 0.00547416229, 0.00746256206, 0.0294380188, 0.0127063608, -0.000684270286, 0.0174227487, 0.0205993392, -0.0044981488, -0.0170226432, -0.0148402536, 0.0190837905, 0.00767473876, -0.00275072106, 0.0118152183, -0.00838401541, -0.0060712886, 0.00535291806, -0.0255097169, -0.00812334102, 0.0164285488, -0.059748996, -0.0138945514, -0.0333663225, 0.00446783798, 0.0166225396, 0.024030542, -0.0527168475, -0.0247337557, 0.0164042991, -0.0247216318, -0.00163830817, 0.00760805467, -0.0183805749, -0.0250974875, 0.0286620576, 0.00802634656, -0.00215965696, -0.00979650766, -0.00402832869, 0.000240214475, 0.00437387358, -0.0170832649, -0.0169983953, 0.0163194295, -0.0221391357, -0.0678965822, 0.040277224, 0.0161254387, 0.0153131047, -0.00855375733, 0.0278376, -0.0142704071, -0.0148645025, -0.0424596146, 0.0595065057, -0.00785054266, 0.0118879648, 0.0286378097, 0.0235576909, 0.0258734487, 0.00459514372, -0.0252914783, 0.0080445325, -0.007147328, -0.0180653408, 0.0157132093, 0.0366156586, -0.0205993392, 0.0326146111, 0.0178956, 0.00386161823, -0.00605007075, 0.0230969638, -0.0235455651, 0.00789297838, -0.00193080911, 0.0124274995, 0.00220360793, -0.000857800595, -0.0194353983, -0.00407076394, -0.000623648346, 0.00605007075, -0.00130867632, 0.0158829503, 0.0159072, -0.0314506665, -0.00257946411, 0.0318871476, -0.0162345581, 0.0488612913, -0.0274253711, -0.0135308197, 0.00970557425, 0.0162830558, -0.00691696443, -0.00869925, -0.00103890873, -0.00456180191, 0.0131670879, -0.0121607631, 0.0171923861, -0.0147068854, 0.000407303742, 0.00863256585, -0.0181017146, 0.0127184857, -0.0228787251, -0.00559540605, -0.0135186948, -0.0405924581, -0.0156040899, 0.0145250196, 0.0204902198, -0.0325418636, 0.0184048247, 0.0470426343, 0.00161405944, -0.00491340924, -0.011208999, 0.00442843372, 0.0200658664, 0.00137232943, -0.00220057671, 0.0102632958, 0.0315961614, -0.0374886133, -0.00152009539, 0.0182714555, -0.0229272209, 0.00945702475, 0.0331238322, -0.0203932244, 0.00438902946, 0.00770505, 0.0279830918, 0.0279830918, -0.00968132541, 0.0360336863, 0.0110635059, 0.0177501068, 0.00526198512, -0.0129367243, -0.0289772917, 0.014294656, -0.0210600663, -0.0200173687, -0.0268918965, 0.00148751109, -0.0140885413, 0.0152282342, 0.0363246724, 0.0394527651, 0.0164285488, 0.010069306, -0.0422656238, -0.00552872196, -0.0116394144, 0.0199324973, -0.0190231688, -0.0146826366, 0.0215692893, 0.0204295982, -0.00769292563, -0.0316689089, -0.00729888305, -0.0327116065, 0.013154963, 6.25163875e-06, -0.00321599445, 0.00800816, -0.0130700925, 0.0400104858, 0.0193626508, 0.00899629761, -0.00936609134, -0.0116576012, -0.00490431581, -0.00551053556, -0.00148978445, 0.0074565, 0.0415381603, -0.0243457761, -0.00958433, -0.00127154542, 0.0275223665, 0.00348273106, -0.0139309242, -0.0258734487, -0.000194369131, -0.00145416905, 0.00227938546, 0.00123214116, 0.00176712987, 0.0412471741, 0.0121243903, 0.00729282061, 0.00611978583, 0.000721780118, -0.0021278304, -0.00880230684, 0.0214722957, -0.00883868057, 8.81386368e-05, 0.00629255828, 0.021593539, 0.0165982898, 0.0336815566, 0.0112999314, -0.0244670194, 0.00138066488, 0.0023794116, -0.0107664587, -0.0132519584, -0.0193990245, -0.0100814309, -0.0128761027, 0.00598338665, 0.0220057685, -0.0299957413, 0.000101352322, -0.0105360951, -0.0125244949, 0.00330995861, -0.00498615531, 0.00906298123, 0.0561116785, -0.0103602912, 0.0342150293, 0.00726251, 0.0153737264, -0.0309414435, 0.00521651888, 0.0411744304, 0.0136763118, 0.00740194041, 0.0137490584, 0.0228666, 0.00919028744, -0.0151191149, 0.0386283062, 0.0187200587, -0.0182835795, 0.0129003515, -0.0202719811, -0.00562874833, 0.00611675484, -0.0174106248, 0.0141612878, 0.0259219464, -0.0325418636, -0.00448905537, 0.00828095805, 0.00274314336, 0.00178076979, 0.0260189418, 0.00299927103, -0.0038979915, -0.030383721, -0.036227677, -0.00123820337, -0.0160041954, -0.00296138227, 0.010566406, -0.00513467938, -0.0293895211, -0.013482322, -0.00435871817, -0.0123001942, -0.0092205992, 0.00246579782, -0.0146341389, 0.0066744769, -0.00606825715, -0.0195445176, -0.00112302159, 0.0054681, -0.0135186948, -0.0156404637, 0.0210600663, 0.00316446577, -0.014452273, -0.00154282863, 0.00652898429, -0.0296320096, -0.0331723318, 0.0271828827, -0.00498312432, 0.0120031461, -0.00550447311, 0.0068866536, -0.00928122085, 0.0343847722, -0.00989956502, -0.0153858513, 0.00442540227, -0.0146098901, 0.00247792224, 0.00564693473, -0.0211570617, -0.00749287335, 0.0246125124, 0.0101541765, 0.0241639093, -0.0145977661, -0.0056014685, -0.010711899, 0.00386464945, -0.0164649226, 0.011045319, -0.0344090201, -0.0194111485, 0.0236425605, -0.000343082356, -0.00356760179, -0.00962676574, -0.0414654128, -0.0134338243, 0.0436963029, -0.0188291781, -0.0387253, -0.0022581676, -0.00610463042, -0.0424596146, -0.0206963345, 0.0395982601, 0.0080445325, -0.0302624777, 0.0293167755, 0.00905691925, 0.00959645491, 0.0410046875, 0.0143674025, 0.0148160048, 0.0130337197, 0.00911147892, 0.0270131417, -0.0198476259, -0.0185381919, 0.0103724161, -0.00347666885, -0.0215086676, 0.015761707, -0.00365853473, -0.022563491, -0.0176409874, 0.0244427714, 0.0141127901, 0.0119607113, -0.00275223656, 0.0245761387, 0.00985712931, 0.00726251, 0.0069533377, 0.0164164249, -0.0330995843, -0.00320993224, -0.00458605075, 0.00856588129, -0.0140279196, -0.0115424199, -0.00539232232, 0.00487097353, -0.0174469966, -0.0156647116, 0.00202477328, -0.0374401174, -0.00632286957, -0.024697382, 0.00425869226, -0.0153494775, -0.00121319678, 0.00662597921, 0.00976013392, -0.00789297838, -0.0132640833, 0.0223573763, -0.05523872, -0.0120880166, -0.00882655568, 0.00158071739, 0.0153737264, 0.0317901522, -0.0103906021, -0.0165740419, 0.0235455651, -0.0165740419, 0.0321538821, 0.0120334569, 0.0261886828, 0.00347666885, -0.0131913368, -0.0237516798, 0.00985106733, -0.00427687867, 0.0182229578, 0.0192656554, -0.0109725734, 0.031523414, 0.0264554191, -0.00895386189, 0.0079232892, -0.0116030416, 0.00282346737, -0.00768080121, -0.00507405726, -0.0166225396, 0.0269888919, -0.00998443551, 0.00013327357, -0.0327601023, -0.00216875039, 0.0143674025, -0.00437690504, -0.00605916418, 0.00976013392, 0.0117242849, -0.0143674025, -0.0176773611, 0.0171560124, 0.0277406052, 0.0230484661, -0.0128154801, -0.0227696039, 0.0170105193, 0.0106512764, 0.00591973355, 0.0106634013, -0.0085719442, -0.000817638589, -0.027110137, 0.00978438277, -0.00912966579, 0.0143431537, 0.0218966492, -0.0128639778, 0.00361913047, -0.0301412344, 0.0117000369, -0.0205993392, 0.0218117777, 0.0269888919, -0.0025173265, 0.0243457761, -0.0136763118, 0.00918422546, 0.0433568209, -0.0100389952, -0.0133004561, 0.0144280242, 0.00923878513, 0.00503162201, -0.0311354343, 0.00434659375, 0.00463757943, 0.00395861361, -0.0140642924, -0.0103421044, 0.0189746711, -0.0116636632, -0.00834764261, 0.00156253076, 0.0274011213, -0.00535594951, -0.0324206203, -0.0111544393, 0.00213843933, 0.00715945242, -0.0205508415, -0.0140642924, 0.0148160048, 0.00758380583, -0.00249610888, 0.0165376682, 0.00543475803, -0.0122274477, 0.0273283757, -0.00717157684, 0.0244063977, 0.00455877092, 0.019884, -0.0163315535, -0.00379493413, 0.0119788973, 0.00269313017, 0.000241540591, 0.00968738738, -0.00471638795, 0.0175924897, -0.00319477683, 0.00192626251, 0.00153146207, 0.00147387118, 0.0161618125, 0.000801725313, 0.00124805444, 0.00544688245, 0.0154585978, -0.0116091035, 0.0105239702, -0.0185624417, 0.0216905344, -0.0416836552, -0.0434295647, -0.0180410929, 0.00812334102, 0.0149736218, 0.00613494124, -0.000191527477, 0.0413199216, 0.0152524831, 0.00823852327, -0.017543992, -7.09466258e-05, -0.0297290049, -0.0244548954, 0.00763836596, -0.00516499, 0.0121243903, 0.0115060462, -0.00471638795, 0.0451512299, 0.000859316147, 0.0118515911, 0.0193869, 0.00588639127, 0.0102026742, 0.0301412344, -0.00577727193, -0.00329783419, -0.00271737901, 0.0292682778, 0.00919635, -0.0229272209, -0.0103602912, 0.0074565, 0.000825216295, -0.00332814502, -0.00217329687, 0.0141006662, 0.0147190094, 1.4504275e-05, -0.00678359624, 0.0117000369, 0.00147235568, 0.0196900088, 0.00638349121, 0.0244185217, -0.0115424199, 0.0107543338, 0.0173257533, -0.0114393625, 0.0125608686, 4.75266606e-05, 0.00540747819, -0.0101844873, -0.000568709685, 0.00717763882, 0.00181259634, 0.0233515762, 0.0201628618, 0.0142704071, 0.00564693473, -6.72998358e-05, -0.000613039476, -0.0126336142, 0.00828702096, -0.00160799723, 0.0178713519, -0.00646836217, 0.0144159, 0.0106815882, -0.0152888559, 0.00743831322, -0.0281285848, 0.00284771621, -0.00512255495, 0.00312506151, 0.0148160048, 0.0016564948, -0.0100329332, -0.0104330378, -0.0406894535, 0.00547719328, -0.00304928422, -0.00631680712, -0.00167165033, -0.00720795, -0.0201749858, 0.0169014, 0.0360094383, 0.00580455177, -0.0164649226, -0.0171560124, 0.000818396336, -0.00256885518, -0.00554084638, -0.00519530103, -0.0130215948, -0.00493765809, 0.0189504214, -0.00165801041, -0.00300988, 0.0267221555, -0.00939034, 0.0140279196, -0.0178713519, 0.00947521068, 0.00934790447, -0.0103481673, 0.0315719135, -0.0126942368, -0.006498673, -0.000969193468, -0.00541657116, 0.014779632, -0.00934790447, 0.0152282342, 0.0138339289, 0.00703214621, -0.00953583326, 0.00552872196, -0.0236061886, 0.00345242, 0.00546203787, 0.0104754735, 0.0165012944, -0.024854999, -0.0121607631, -0.0192535315, 0.00579849, -0.00751712173, -0.0033705805, -0.0283225756, 0.0189989191, 0.0144037753, 0.024527641, 0.0255824625, -0.0125608686, -0.0430415869, 0.00513771037, -0.00541354, 0.0029826, -0.00403439067, -0.00126851432, 0.0100996168, 0.00837795343, 0.00108664844, 0.010069306, 0.0053407941, -0.0320811346, 0.0371976309, 0.0197385065, 0.00409501279, -0.00351910433, -0.0289530437, 0.00627437187, 0.00317355921, -0.0113302423, 0.0305534638, -0.00278860983, 0.00154358638, 0.0104087889, 0.00205205311, -0.00217784359, -0.00493159564, -0.0222240072, -0.00692302687, 0.00517408364, 0.00282952958, -0.0313779227, 0.00940852705, -0.0126578631, 0.0130700925, -0.00159738841, 0.0133974515, 0.0194717702, -0.000850222888, 0.00490431581, 0.00242790906, -0.0105482191, -0.00511952396, -0.0169135239, -0.00108361733, -0.0114211757, 0.0153979752, 0.0156525876, 0.0291712824, 0.000431173627, 0.00568027701, 0.00908723, 0.00983894244, 0.00781417, 0.0312324297, 0.0144401491, 0.0222603809, 0.0211449359, -0.0284923166, -0.00428294064, 0.000585001835, 0.0127184857, -0.00723219896, -0.00577424094, 0.0127912313, 0.00538626034, -0.0131185902, -0.00825064722, 0.0496372543, 0.00568633899, -0.00633499399, 0.0101238657, 0.0281285848, -0.0025840106, 0.00991775095, -0.00464061042, 0.0258734487, -0.0115181711, 0.00439509144, 0.00992381293, 0.0107785827, 0.012997346, -0.00305837742, 0.0670236275, -0.0114999842, 0.00875987206, 0.0157132093, -0.00788691547, 0.0116454763, -0.00487703597, 0.0104694106, -0.0266494099, -0.0337543041, 0.0126821119, 0.00160496612, 0.00629862072, 0.0106209656, -0.00199294672, 0.0134459483, 0.0112211229, -0.00659566838, -0.0201264881, -0.0140642924, -0.0212904289, -0.00611675484, 0.0393072739, -0.0105967168, -0.00334936287, 0.00360397506, -0.0111544393, -0.00229150965, -0.00475579221, -0.0301654823, 0.00535291806, 0.00184593839, -0.00778385857, 0.0027128323, -0.0129730972, 0.0250247419, 0.0301654823, -0.00959039293, 0.000727084524, -0.00793541316, -0.00278103189, 0.0080445325, 0.00702002179, -0.00810515508, -0.0295835119, 0.00678965868, 0.0164042991, 0.00963889062, 0.0115606058, 0.00102451094, 0.00380402734, 0.0127548585, -0.0175803658, -0.00420110114, -0.00188231154, -0.0148281287, 0.00540747819, -0.00440721586, 0.00246428233, 0.00928728282, 0.00971769914, -0.000190864419, -0.0136641879, -0.00778385857, -0.0064804866, 0.00882655568, -0.0064623, -0.0376098566, 0.00289015146, 0.0148038808, 0.00985106733, 0.00505587086, 0.00434356276, 0.0149614979, -0.00889324, 0.00700183539, 0.0237638056, -0.00190807588, 0.0114514865, 0.00501343515, -0.00829308294, 0.0322751254, 0.0241154116, 0.0129246, -0.000185654731, 0.0182472076, 0.0276678577, 0.0141491629, 0.0122274477, -0.00403135968, 0.0193262771, 0.00877199601, -0.00711701717, -0.0167437829, -0.0307232048, -0.00275375205, 0.00617131451, 0.0144280242, -0.00946308672, 0.0244548954, 0.00748681091, 0.00693515129, -0.0143189048, 0.0184533224, -0.0167801566, 0.0179198496, 0.0212298073, -0.000788843143, 0.00879018288, 0.0137611832, 0.0272071324, -0.0022414967, 0.00891748909, -0.00945702475, -0.0197506323, 0.00287651154, 0.00962676574, 0.00272344123, 0.0161011908, -0.0118455291, 0.0120637687, -0.00570452539, -0.0248792488, 0.0341665298, 0.0207448322, 0.00410107477, 0.00785054266, 0.00828702096, 0.00208994164, 0.0143189048, -0.00805059541, 0.00651686, 0.00655323267, 0.00374340545, 0.00481944531, 0.0220906381, -0.00268252124, 0.0120092081, -0.0114029888, 0.00184593839, -0.00204144418, 0.0109422626, -0.0189746711, 0.000470199, 0.0290500391, -0.0202719811, 0.00545294443, -0.00506496383, -0.0343362726, 0.0162588079, 0.0189019237, 0.00108058623, 0.0117303478, -0.011536357, -0.0223573763, 0.0184654463, -0.00840826426, 0.00626831, 0.0269888919, 0.00040465151, -0.00354638416, 0.00635924283, -0.0128639778, -0.00498312432, 0.00525592314, -0.00497706234, -0.0182957053, 0.0138824265, 0.00471638795, 0.0145856412, 0.0104815355, 0.014124915, 0.00660173036, 0.00398589345, -0.0157859568, -0.00966313854, -0.0169983953, -0.0148160048, -0.00962070376, 0.00688059162, 0.0248065032, 0.0159799457, -0.000997231109, 0.010717961, -0.0236183126, 0.00293258694, 0.00328874076, -0.00615919, 0.0089599248, -0.0399377421, -0.000376803306, -0.0146947606, -0.0136278141, 0.0027764854, 0.00498918677, -0.0117970314, -0.01720451, 0.0290015414, 0.00470426353, 0.0181987099, -0.00564996572, -0.036373172, -0.0213631764, 0.0210479405, -0.00663810363, 0.0204295982, 0.021593539, -0.0211449359, -0.00840220228, -0.00429809652, 0.0277406052, 0.00547416229, 0.00724432291, 0.0101117417, -0.0122820074, -0.010875578, -0.00536504248, 0.0137369344, -0.00937821623, 0.000202894094, 0.0075353086, 0.029826, 0.0383615717, -0.0229272209, -0.00924484711, 0.00116091035, 0.00270677, 0.0124274995, 0.0140764173, -0.0199203733, 0.00521348789, 0.0279345941, -0.0219451468, -0.0200416166, 0.0153252296, -0.0165619161, 0.0131913368, -0.00676541, -0.0315719135, 0.000503541087, 0.0153009808, -0.0261886828, 0.00391011592, 0.00605007075, 0.00525592314, 0.00214147032, -0.00382221397, 0.0139551731, 0.00512255495, 0.000910087, -0.0140157947, -0.0285165664, 0.0303109754, -0.00864469, -0.00247337553, -0.00708670588, 0.018356327, 0.00815365277, 0.0039161779, 0.014124915, -0.00117909699, -0.00267645903, 0.00486491155, -0.0149008753, 0.00893567596, 0.0158102047, -0.00493765809, -0.000680481375, -0.0487158, -0.00163982378, -0.0101117417, 0.00905691925, 0.0203568507, -0.00498009333, -0.0206599608, -0.0165012944, -0.0106876502, 0.00205356861, 0.0106149036, 0.0043496252, 0.0253642239, -0.0136884367, 0.0147553831, -0.0334390663, -0.0300684869, -0.00501040416, 0.00783841871, 0.00494675105, -0.00839614, 0.00657141954, 0.00745043764, 0.00787479151, 0.00038835936, 0.0162588079, 0.00336754927, 0.008608317, 0.0437933, 0.0143189048, -0.014913, 0.00892355107, 0.0139309242, 0.00295532, -0.000602430664, -0.00652292185, -0.00863862783, 0.020296229, 0.0212298073, -0.00931759365, 0.0129246, -0.000546355324, -0.00258097961, -0.0282013323, 0.00720795, 0.0205508415, 0.0207569562, -0.0187200587, -0.000707003521, -0.0124517484, 0.0117485337, 0.0392102785, -0.0125851166, 0.000127211373, -0.0016519482, -0.0296077617, 0.00474366779, -0.00827489607, 0.00201113313, 0.0214844197, -0.0115484819, -0.000941913575, -1.74643319e-05, -0.00773536088, -0.00324327429, 0.0101299277, -0.0146705117, -0.011039257, -0.00223543448, -0.0115121081, -0.0044344957, 0.00908723, 0.00103360426, -0.00208236394, 0.0123971887, 0.0108149564, -0.014294656, 0.0216299128, -0.00988137815, -0.00577121, 0.0155798411, -0.0141006662, 0.0120516438, -0.00781417, 0.0138339289, 0.0363489203, 0.0222482551, -0.00599854207, -0.00646836217, -0.0316931568, 0.00673509855, 0.00255369977, 0.0205387175, -0.0125851166, 0.000907813723, -0.00796572398, 0.00596823124, -0.00709883031, 0.00835976657, 0.00770505, 0.00657141954, -0.01380968, -0.00113741937, -0.00828702096, 0.0210721903, 0.0056378413, 0.0328570977, -0.00886292942, 0.00120410346, -0.0132883312, -0.00515286578, 0.00603794632, -0.00755955745, 0.00565299671, -0.00624406105, -0.00429203408, 0.0139430491, -0.00847494882, 0.00424353639, 0.0313536748, 0.000726326776, 0.0257279556, 0.0183078293, 0.00184139179, -0.00257946411, 0.00746862451, 0.0198476259, 0.0106997741, 0.00448905537, -0.0363246724, 0.00222179457, -0.00766261481, 0.00717157684, 0.0122577585, -0.00279921852, -0.00402529771, 0.0104997223, -0.0130579686, -0.00471941894, -0.0335845612, -0.00226119882, -0.00162618386, 0.0144159, -0.00569240097, 3.18028433e-05, 0.00343120238, 0.00925091, -0.0201871097, -0.00511346152, -0.0338028, -0.000538398686, 4.79529117e-05, 0.00566815259, -0.00475579221, 0.0137733072, 0.0144886458, -0.0145250196, -0.00112984166, -0.0105482191, -0.0184290726, -0.00939640217, 0.00794147514, -0.0170711409, -0.00203538197, 0.00910541695, -0.0226726104, -0.0019808223, 0.018683685, -0.00109422626, 0.0178107284, 0.0109907594, -0.00193990243, -0.0100268703, -0.00394345773, 0.000188685823, -0.00952977, -0.00194293354, -0.00966920145, 0.000123517224, 0.00742012681, 0.0129730972, 0.00148069113, 0.0119061507, 0.00116924592, -0.00255673076, -0.0102632958, -0.00362822367, 0.0198718756, -0.00361003727, -0.011536357, 0.0268676486, -0.0227089822, -0.00816577673, 0.0206357129, -0.0260916874, 0.00199597771, 0.00881443173, 0.00646836217, 0.0214237981, -0.00860225502, 0.00562571688, 0.031014191, 0.0146583878, -0.0183199532, -0.0149251241, -0.00666841445, -0.0177864805, -0.0189019237, -0.0157132093, -0.00996018667, -0.0151918605, 0.0127184857, 0.0266736578, -0.00428900309, 0.00459211273, 0.0222603809, -0.00456786389, 0.00147235568, -0.00302200415, 0.0278376, 0.00692302687, -0.0109058889, 0.0168286543, -0.00950552151, -0.000691090245, 0.00423141196, -0.00109574175, 0.0230242163, 0.0150584923, -0.0145250196, 0.0058318316, -0.00271889451, 0.00327964756, 0.00591973355, -0.00163679267, 0.00525592314, -0.0074565, 0.00702608423, -0.0162830558, -0.00754743302, 0.00589245372, 0.0193020292, 0.0101481145, -0.0207205825, 0.00378887192, 0.012985222, -0.000110445617, -0.00681390706, -0.0129246, 0.0157738309, -0.0229635946, -0.0166346636, -0.0263826735, -0.00397376902, -0.00769898761, -0.00698364852, 0.035572961, -0.000621375, -0.00571968127, 0.0252187308, 0.00554387737, 0.0192050338, 0.00156556186, 0.00976013392, 0.0102693588, -0.00910541695, 0.011372678, -0.0276678577, -0.00923878513, -0.0138460537, 0.0231575854, -0.0233152024, 0.00312809274, -0.014779632, 0.0044344957, 0.00454967748, -0.0119000887, -0.00322508789, 0.0117727825, 0.0236668102, 0.00098738, -0.0125366198, -0.013482322, 0.00948127266, 0.0109725734, 0.00257037068, -0.00430718949, 0.00638955366, -0.00698971096, 0.00246731332, 0.00991775095, -0.00238547381, -0.010711899, -0.0164406728, -0.00775960973, 0.0341180339, -0.00396770658, 0.000825216295, -0.00437690504, 0.0255824625, 5.30442085e-05, 0.00715945242, 0.0192656554, -0.00463454798, -0.0189867951, 0.0175924897, -0.000269578246, -0.0165012944, -0.00815365277, 0.0104633486, -0.00547416229, 0.000941155769, -0.00137005607, -0.0169256479, -0.00635924283, -0.000656990393, -0.0105482191, -0.0064623, 0.00963282771, -0.0210115686, -0.0131185902, -0.0319356434, -0.00665629, 0.00743225124, 0.0104633486, 0.00517408364, -0.0127427345, 0.024200283, -0.00684421835, -0.0150221195, -0.0222725049, -0.00135186955, 0.0171802603, -0.00188685826, -0.00854769535, 0.0130094709, 0.0175561178, -0.00310687488, -0.00158526399, 0.0042859721, -0.00431931391, 0.00220209244, -0.00743831322, -0.0116030416, 0.0192777812, -0.00538929133, 0.00177470758, 0.00326146092, -0.0137248095, -0.0155192195, 0.0251702331, 0.0278376, -0.0120819546, 0.0291955322, 0.00287044933, -0.0224543698, -0.0219208971, -0.0018550317, 0.0242730286, 0.00600157306, 0.000492553343, -0.0046921391, 0.0287105553, 0.00263250829, -0.00671691215, -0.0233637, 0.00483156927, 0.0355244614, 0.0167559069, 0.0021839058, -0.00851738453, 0.00762624154, -0.010554282, 0.000782780931, 0.00836582948, -0.00411319919, 0.0110210711, 0.0127912313, -0.0103239184, 0.014937249, -0.00739587797, 0.000228468984, 0.00900842156, 0.022575615, 0.00788085349, 0.0050831507, 0.0283710733, -0.0158829503, 0.0126214903, 0.00228696316, -0.0254127216, -0.0246488843, 0.0169256479, -0.00249156216, -0.00983288, -0.0268918965, -0.0228302274, -0.000233394516, 0.00226422981, 0.00425566081, -0.00858406816, 0.00405560853, 0.0060258219, 0.00701396, -0.0138339289, -0.00940852705, 0.00772323646, -0.00337361149, -0.00628043432, -0.00106012635, 0.011360554, 0.00470123207, 0.0195687655, -0.0100026214, 0.00283710728, 0.00145568454, 0.0192050338, -0.0138581777, -0.000292122015, 0.0106391525, 0.000450117979, 0.0032402433, -0.0424596146, 0.00134126062, -0.0158465784, 0.0126093654, 0.0195566416, -0.0338755473, -0.00474366779, 0.0143674025, 0.00102299545, 0.0151918605, 0.0314264186, 0.0025734019, -0.00796572398, 0.0103178564, 0.0165982898, 0.0020444754, 0.00402832869, -0.0207812041, -0.00350394868, 0.0155313434, -0.00593792, 0.00718976324, 0.0158587024, -0.0105967168, 0.0199446213, -0.00718370127, -0.00344029581, -0.00889930222, 0.00837795343, -0.0131792119, 0.00765049038, 0.0170832649, 0.00170953898, -0.0167680308, 0.0253157262, 0.0327116065, 0.0293895211, 0.0105906548, -0.0183320772, 0.0151676117, 0.00618040795, -0.0103360424, 0.00321599445, 0.0111241275, 0.00800816, 0.000889627147, 0.00464364141, -0.000681996928, -0.0161011908, -0.0153494775, 0.0124032516, 0.00665022805, -0.00108134409, 0.0129488483, 0.014282532, -0.00429203408, 0.0276921075, 0.0233273264, -0.0186473113, -0.0130943414, 0.00737769157, -0.0145371435, -0.0201749858, 0.0124638733, 0.0233394504, -0.0282983258, 0.00811727904, -0.00235819397, 0.0143795265, -0.00796572398, 0.0167074092, -0.00844463799, 0.0112393098, -0.0113484291, -0.00800816, -1.28584843e-05, -0.0235213172, 0.0207569562, -0.00219451473, 0.0153494775, 0.0160526931, 0.00283256057, 0.00746256206, -0.00794147514, 0.000865378359, 0.0136763118, 0.00302655087, 6.75366391e-05, 0.00491947122, 0.0249762442, -0.0070806439, 0.00390708493, -0.00977832079, 0.000635772711, -0.00374037446, -0.00938427821, 0.0100511191, 0.00480732089, -0.00134126062, 0.0170226432, -0.00517711462, -0.0169377737, -0.0205750894, 0.0147432582, 0.0199931189, -0.0264311712, 0.00951764639, 0.00450421078, 0.00277345418, 0.0215329174, 0.0344575159, 0.0163800512, 0.0060076355, 0.018356327, 0.0109483246, 0.00722613651, -0.0111301905, 0.0204053484, -0.0166467875, 0.0186230633, -0.0104572866, -0.014913, 0.00309323496, -0.025824951, 0.00113666162, -0.00441327784, -0.0152403582, 0.0105906548, 0.0117121609, -0.014949373, 0.0127791073, 0.021108564, 0.00710489275, -0.0101056788, 0.0219572708, 0.0242487807, -0.0247095078, 0.00485278713, -0.0139915459, -0.00986319128, 0.000606219517, 0.0163558032, 0.0034342336, 0.00386768044, -0.0104572866, -0.0247458797, -0.021266181, -0.00329177198, 0.015094866, -0.0244185217, 0.00454967748, 0.00194293354, 0.00384949381, -0.00696546212, 0.0145007707, 0.0019899155, 0.0186230633, -0.0094449, -0.00484975614, 0.00682603149, -0.0100086844, -0.00585001847, 0.00331602083, -0.00526501657, -0.010075368, -0.0171681363, 0.00793541316, 0.00640167808, -0.00999655947, -0.00919028744, 0.018683685, 0.00367975235, -0.00566512113, 0.00246428233, 0.0174106248, 0.0111120036, 0.0175682418, -0.00763836596, 0.00451330421, -0.00100859767, -0.015434349, -0.016889276, 0.0168529022, 0.00729282061, -0.00116318371, -0.00766867679, -4.98710251e-05, 0.0116697252, -0.0137854321, 0.00644411333, -0.0097661959, -0.0104148509, 0.00274617434, -0.00378887192, 0.020296229, -0.00128821644, 0.00319174561, 0.00909935497, 0.0280315895, 0.00796572398, -0.00342210918, 0.00608947501, 0.0289045461, -0.000388738263, 0.00849313568, 0.021617787, -0.0123911267, 0.00277345418, -0.00607735058, -0.0130215948, -0.00110559282, -0.000467546808, -0.0044981488, 0.0128518539, 0.0119182756, 0.00167316583, -0.00855981931, -0.00204902189, 0.0075353086, 0.000423974765, -0.0095540192, -0.00516195921, 0.038822297, -0.0162224341, 0.0406409577, -0.00354638416, 0.00367065915, -0.00941458903, 2.79429296e-05, 0.00439206045, 0.0128154801, 0.017228758, 0.010875578, 0.00819002558, -0.0266979076, 0.01380968, -0.000970708963, -0.013154963, 0.0102390479, -0.00971163623, 0.0103724161, 0.0127791073, 0.00420716358, -0.0146826366, 0.00915997662, -0.0107361479, 8.92752942e-05, -0.0136156902, 0.015591966, -0.016089065, -0.0108392052, 0.00988744, -0.00297805341, 0.0221148878, -0.0157980807, 0.0121486392, 0.00832945574, 0.0133368289, 0.0079232892, -0.024697382, 0.0189746711, 0.000388738263, 0.000574771897, 0.00206720852, -0.0101238657, -0.0264796689, 0.00786266662, 0.00183836068, 0.00402529771, 0.00403742213, 0.00114120822, -0.0102814827, 0.0156889614, -0.00651079742, -0.0118940268, 0.0134095754, 0.0133125801, -0.00163527718, -0.0116333524, -0.00861437898, 0.00511043053, -0.00427384768, 0.00725038536, 0.00134883844, -0.0104633486, 0.0250489898, -0.00084567623, 0.00957826804, 0.0162588079, 0.0210115686, 0.00926909596, -0.00476185419, -0.012015271, -0.0203204788, -0.00470426353, -0.00279618753, -0.00236274046, -0.0269161463, -7.70088227e-05, -0.00193535583, 0.0140885413, -0.01720451, -0.00742618879, 0.011536357, -0.00781417, 0.0113544911, 0.0400832333, 0.00163224607, -0.00295986678, 0.00319174561, 0.010717961, -0.0165982898, 0.0418533944, 0.0115787927, -0.000726326776, -0.00862044096, 0.000962373451, -0.0023233362, 0.0385070629, -0.00494372, -0.0161011908, 0.0125608686, 0.00767473876, 0.00928728282, -0.0102208611, -0.0153616024, -0.0239335466, -0.00562874833, 0.0403014719, 0.0174348727, -0.00973588508, 0.0198597517, -0.0022399812, -0.00180350302, 0.00887505338, 0.0124274995, 0.0108210184, 0.0205993392, -0.0254127216, -0.000999504467, -0.0294137709, -0.0119425245, -0.0213389266, 0.00290379138, -0.00582576962, -0.028589312, 0.0122516965, 0.00845676195, -0.0133974515, -0.0144037753, -0.0150827412, -0.00405863952, 0.00325843, -0.0111605013, -0.021775404, 0.01430678, -0.00634105597, -0.0122395717, -0.00651686, -0.00312203052, 0.00889324, 0.014282532, 0.0048224763, 0.0196051393, -0.0180774666, 0.00889324, 0.00969345, -0.010730085, 0.0139066754, -0.0121486392, 0.00418594573, 2.35028456e-05, 0.0177986044, -0.0291712824, 0.0117849074, -0.0177622307, 0.00528623397, 0.0204902198, -0.00187776494, 0.0200537406, 0.0104754735, -0.00355850859, -0.0201992337, -0.0133368289, 0.00431628292, -0.00054711313, -0.0207084585, -0.0175924897, -0.00143825577, 0.0125487437, -0.00250065536, 0.0229514707, 0.0212419312, 0.0113302423, -0.00906904414, -0.00427687867, -0.00345848221, -0.00162618386, 0.0066744769, 0.00738981599, -0.0130822174, -0.00486188056, 0.025339976, 0.00253399764, 0.0046921391, -0.0371733792, 0.0360094383, -0.0139309242, 0.000112908383, 0.0142582832, 0.00544082, 0.0119000887, -0.000260484958, 0.00208539516, -0.00427081622, -0.00732919388, -0.0315476619, -0.0137005607, -0.00570755685, -0.0155798411, -0.0122031989, -0.00116924592, -0.0109725734, 0.00464061042, 0.0137248095, 0.00525289215, -0.00922666118, -0.00584395602, 0.0101663014, 0.00606219517, -0.000531578728, -0.0203932244, 0.00611372385, -0.024539765, 0.0181502122, 6.1758612e-05, -0.0129003515, 0.0271828827, -0.00224755891, -0.0113241803, -0.0141006662, -0.0259704441, -0.0062379986, -0.0123790028, -0.0137369344, -0.00747468648, 0.0257764533, 0.00718976324, -0.0113908648, 0.00700789737, 0.0077292989, -0.00572877424, -0.029559264, 0.00857800618, -0.0121304523, 0.00533473166, 0.0086931875, 0.0147917559, -0.00384343159, 0.0249034967, 0.0090811681, 0.00152767322, 0.0153494775, 0.00825064722, 0.0162224341, -0.00746862451, 0.0153616024, 0.00931759365, 0.0394285172, -0.0126821119, -0.0137854321, 0.0139794219, -0.0191322882, -0.00644411333, -0.00413138606, 0.0293410234, 0.00876593404, 0.0102511719, 0.0211206879, 0.0102936076, 0.00898417272, 0.0118030943, -0.00571968127, -0.00983894244, -0.00116242596, -0.0062016258, -0.00959039293, 0.0060076355, 0.00114120822, 0.00583789404, -0.0097298231, 0.0160405673, 0.00269313017, -0.0105179083, -0.00121850125, 0.013324705, -0.00233091391, 0.0054711313, 0.034797, 0.000688816945, -0.0103906021, 0.00255976198, -0.0115484819, 0.0120334569, -0.00643805135, -0.0121062035, 0.00141855364, 0.0155434683, -0.0258492, -0.00148220675, 0.00699577294, -0.00135944725, -0.00135186955, -0.0295835119, 0.0205144677, 0.00771717448, 0.0241154116, 0.0145371435, 0.00866287667, 0.0225877389, 0.0143916514, 0.0181744602, -0.00875381, 0.0149251241, 0.0329540931, -0.00919028744, -0.01850182, 0.00340695353, -0.00266130362, 0.00963282771, -0.0302624777, 0.0153979752, 0.00977832079, 0.0161375627, 0.0074565, -0.000869167212, 0.0171802603, 0.00130109861, 0.0202841051, -0.0211570617, 0.00351304212, 0.014282532, 0.0208660755, 0.012839729, -0.00938427821, 0.0010192066, -0.0174227487, 0.0213389266, -0.0341665298, 0.000834309612, 0.0234606955, -0.00854163244, 0.0181138385, -0.00251581101, 0.0122335097, -0.00354335294, 0.00926909596, -0.0104269758, 0.00609856844, 0.0108998269, 0.0101541765, -0.00618343893, -0.00956008211, -0.00668660132, -0.0341180339, -0.0204174723, -0.0125487437, 0.0111968741, -0.0104694106, -0.00700183539, -0.0122153228, 0.0302382298, 0.00609553698, 0.00333723845, -0.00592579553, 0.0110877547, 0.0114029888, -0.0259704441, -0.00896598678, -0.0484490618, 0.00682603149, 0.00820821244, 0.0302624777, -0.0195323918, -0.0136763118, 0.00423444342, 0.0171681363, 0.00512255495, 0.00568633899, 0.00677753426, -0.0147432582, -0.0458544418, 0.00787479151, 0.0142219095, -0.031183932, 0.0434538126, -0.000782023184, 0.00663204165, -0.0117000369, 0.00693515129, -0.0168044046, 0.00949339755, 0.0103239184, -0.00615919, -0.0231090877, 0.00316143478, -0.0179925952, -0.0368823968, 0.018671561, -0.0214722957, -0.015264607, -0.021775404, -0.00786872953, -0.0132155856, -0.0254127216, -0.0109483246, -0.00586214243, -0.00704427063, -0.00987531617, -0.0117545966, -0.0110513819, 0.00129276305, -0.0112271849, -0.00172924111, -0.0162345581, 0.00430112751, -0.0278133508, 0.0146826366, -0.00891748909, 0.00993593782, 0.0149736218, -0.00203841319, -0.00568027701, -0.0104694106, 0.00883261859, -0.00718976324, -0.00201113313, -0.0213631764, -0.00206266181, -0.0118455291, -0.0144159, 0.00972376112, -0.0143916514, -0.000846434, 0.0174348727, 0.00792935118, 0.00880837, 0.00203235098, -0.0306019615, -0.000293258694, 0.0165497921, -0.00699577294, -0.0226604845, 0.00909329299, 0.000636530458, 0.0229635946, 0.0037130944, -0.0191565361, -0.0190352928, -0.0148887513, 0.0123062562, -0.021108564, -0.0109725734, -0.0228544753, 0.0110938167, -0.0351607315, -0.0128882267, -0.0097298231, 0.002314243, -0.000633878284, 0.0115666678, 0.0163679272, -0.01510699, -0.00893567596, 0.00701396, 0.00323115, -0.00605916418, 0.0293895211, -0.00729888305, 0.0235576909, -0.0134701971, 0.0084325131, -0.00365853473, 0.00768080121, -0.00578333391, 0.0142582832, 0.0213268027, -0.0173136294, -0.00528320298, -0.0253642239, 0.000352933421, -0.0435993075, 0.018356327, -0.0198718756, -0.00700183539, 0.0114151137, -0.0109422626, -0.00412229262, 0.00852950849, 0.0118637159, -0.00254309084, -0.00200961763, 0.00106694631, -0.00228544744, -0.0173378773, 0.0190716665, -0.0149857467, 0.00368581456, 0.00900236, -0.027134385, 0.0153737264, 0.0188049283, -0.0182350837, 0.0143552776, 0.00581667619, -0.0112878075, 0.0100389952, -0.0199082494, -0.0164285488, -0.0213268027, -0.012342629, -0.0027764854, -0.0214965437, -0.019641513, 0.0416836552, 0.00908723, 0.00524076773, -0.00771111203, 0.00966920145, -0.00812940393, -0.0108513292, 0.00767473876, 0.00268706796, 0.0134338243, 0.00956008211, -0.0295107663, 0.0130700925, -0.0131913368, -0.0152767319, 0.00704427063, 0.00417685229, -0.00968132541, 0.00110407732, 0.0238365512, 0.0182229578, -0.0077292989, -0.0219815187, 0.00269767689, 0.0188291781, 0.0048406627, -0.00520439446, 0.00377068529, 0.00205659959, -4.83377198e-06, -0.00577424094, -0.00128366984, -0.0204053484, -0.00614403468, -0.00726857176, -0.0043223449, -0.0360579379, 0.0346030109, 0.00230666529, -0.00853557, -0.0136641879, 0.0209873188, -0.0203204788, 0.0232909527, 0.0101844873, 0.00311596831, 0.0263341758, 0.00315234135, 0.00879624486, 0.0160284434, -0.0161618125, -0.00503162201, 0.0153373536, 0.00285832491, 0.00993593782, 0.00738981599, 0.00521651888, 0.011360554, 0.0221391357, 0.00120940793, 0.0119304, 0.0202113576, -0.0124759972, 0.0126942368, 0.00919635, 0.00283710728, 0.0022490744, 0.00976013392, -0.00734738028, -0.0256067123, -0.0184896942, 0.0155434683, 0.00452542864, 0.014294656, 0.00465879682, -0.0285408143, 0.00510436809, 0.00711095473, 0.00580455177, -0.00815365277, 0.0186958089, 0.0213753, -0.00418291474, 0.00981469359, 0.00938427821, -0.0105482191, -0.00290833809, 0.00631074514, 0.00465879682, 0.00401014183, 0.0176167395, -0.0109968223, -0.00463454798, -0.00102299545, 0.0333420746, -0.0120455818, -0.00237183389, 0.00820821244, 0.00347363786, -0.00849313568, 0.0148766264, 0.00701396, -0.00254915305, -0.012342629, -0.0171923861, 0.012342629, 0.0180532169, 0.000596747326, -0.00640774, -0.0416836552, -0.00620768778, -0.0137126856, 0.00637742924, -0.00849919766, 0.000850980636, -0.00725038536, 0.0199203733, 0.0164164249, 0.0175924897, -0.0138703026, 0.01916866, -0.00866893865, -0.00117151916, -0.00365550374, 0.0206720848, -0.0136884367, -0.00605310174, -0.0110210711, -0.00625618547, 0.00820821244, -0.0153131047, 0.0102208611, 0.0126093654, -0.0125608686, 0.024188159, -0.00779598299, -0.0061743455, -1.91930048e-05, 0.0106391525, -0.0150706172, 0.00434053177, 0.00846888684, -0.00090629817, -0.0310869366, -0.017386375, -0.000172298955, 0.0114817973, -0.0222846288, 0.00954795722, -0.0189261734, -0.0407622, 0.0017216634, -0.00752318418, 0.000695636903, -0.0302867275, -0.00655929511, -0.00505890185]
|
22 Jan, 2021
|
Fabric.js line borderColor Property
22 Jan, 2021
In this article, we are going to see how to draw a colored border canvas line using FabricJS The canvas line means the line is movable and can be stretched according to requirement. Further, the line can be customized when it comes to initial stroke color, height, width, fill color, or stroke width.
Syntax:
fabric.line({
borderColor: 'string'
});
Approach: To make this possible we are going to use a JavaScript library called FabricJS. After importing the library, we will create a canvas block in the body tag which will contain the line. After this, we will initialize instances of Canvas and line provided by FabricJS and set the color of the border of the canvas line using borderColor property, and render the line on the Canvas as given below.
Parameters: This function accepts a single parameter as mentioned above and described below:
borderColor : It specifies the color of the border of the object. It contains a stringvalue.
Example 1: In this example, we have set the border color to red.
HTML
<!DOCTYPE html>
<html>
<head>
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<h1>fabric.js | line borderColor property</h1>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000;">
</canvas>
<script>
var canvas = new fabric.Canvas("canvas");
var line = new fabric.Line([150, 10, 220, 150], {
stroke: 'green',
borderColor :'red'
});
canvas.add(line);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Fabric.js line borderColor Property
|
https://www.geeksforgeeks.org/fabric-js-line-bordercolor-property?ref=asr10
|
CSS
|
Fabric.js line borderColor Property
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, Fabric.js line borderColor Property, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.015429222, -0.00449091755, -0.0121282591, 0.0486366674, 0.076997757, 0.00627121236, -0.0161957387, 0.0150212385, -0.0243183337, -0.0436172262, -0.029498497, 0.0117820902, 0.00777024543, -0.0460898578, 0.00422201864, 0.0119180856, -0.0259873606, -0.0289050657, 0.0144278063, 0.00644738739, 0.0284847189, -0.00395312, -0.0240463447, 0.00241081603, -0.0265560653, 0.0224762224, 0.019162897, 0.035754256, -0.011658459, 0.00127881428, 0.00143335375, 0.00504416879, -0.00578286778, -0.0271494966, -0.017951306, -0.0295479503, -0.00447546365, 0.0526176058, -0.0291523281, 0.00288679753, -0.0148728797, -0.01072504, -0.00954435859, 0.00617848849, 0.00307533587, 0.00985343754, -0.0285094436, -0.0117573645, -0.0289050657, -0.0603816696, -0.0212399065, -0.0184952859, -0.000456277834, -0.0223525912, 0.0440870263, 0.0191258062, -0.0100883376, 0.0372625627, -0.0323420241, 0.0261851698, -0.0103726899, -0.0561781935, -0.00698518474, -0.0218951553, -0.02246386, 0.0302402861, -0.0160844699, 0.00108023104, -0.0296468548, 0.0180378482, -0.0253444761, -0.00173856923, 0.0302155595, 0.00187765481, -0.00781351607, 0.0275945701, 0.0469305515, 0.0113431979, -0.0299682971, 0.0494773611, 0.0213635378, -0.0164430011, -0.0484388582, 0.0224762224, -0.0460651293, -0.0437408574, 0.065376386, -0.0382763408, 0.0142670851, -0.0201024972, 0.0119737191, 0.0108672166, 0.0259873606, -0.0230820179, -0.0309820771, 0.00571796112, 0.00987198204, -0.0173455123, -0.0024092705, -0.00571796112, 0.0326634645, 0.0475239828, 0.0102861486, 0.0304133706, 0.0315755084, -0.0489581078, 0.0343448557, 0.00714590587, -0.00492671877, -0.0159484744, -0.0156023065, -0.00418802025, -0.0148976063, 0.048463583, -0.0277182031, 0.0514801927, -0.0149841486, -0.0079433294, 0.0361251496, 0.0112875644, 0.0328118242, -0.0203373972, 0.00209246459, 0.00877784286, -0.025962634, 0.00620939676, -0.00724481093, -0.0182480235, 0.0141805429, 0.00751061924, -0.0306111816, -0.0163193699, 0.0269022342, 0.00089401094, 0.0339739621, 0.0139332805, -0.0286825281, 0.0165295433, -0.00626812177, -0.0123322513, -0.0180873014, -0.0494773611, -0.00926000625, 0.0523703396, -0.00994616095, 0.0124435192, 0.0315507799, -0.000101609716, -0.0117079113, 0.0167768057, -0.036372412, -0.0186560061, 0.0454222448, 0.00316805951, 0.0430237912, -0.0235765446, -0.0200283173, -0.000459754985, 0.0482163206, -0.0146627063, 0.018186206, -0.00193947053, 0.00692336913, 0.0429248884, -0.0185941905, 0.00412002252, 0.00620012404, -0.00788769498, -0.0481915921, 0.0310068019, 0.00773933763, 0.0101068821, 0.0181985702, 0.0126536936, -0.0396115594, -0.0132285804, 0.0301908348, -0.012010809, 0.00801132713, 0.000432324217, -0.0404769816, 0.00390057662, 0.022500949, 0.0467080139, -0.0148110641, 0.015392133, 0.0103356009, 0.0241452493, -0.00966799073, -0.026852781, -0.0209802799, 0.0176793169, 0.0401555412, -0.0233169179, 0.032614015, 0.0173455123, 0.00940218195, 0.00672555855, -0.0109908478, 0.00192247122, 0.042010013, -0.00346168457, -0.0164430011, -0.00715826917, -4.76295509e-06, -0.00611358229, 0.00428692531, -0.0638928041, 0.054101184, -0.0322183929, -0.00053432025, 0.0387461409, 0.00752916373, -0.0014758521, -0.0107188588, 0.00293470477, -0.00143103569, 0.015429222, -0.0239350758, -0.0258884542, 0.0199046861, 0.0406006128, -0.0317238644, -0.0161462855, -0.0538539216, -0.0117202746, 0.021412991, 0.0168138966, -0.0168509856, -0.0358284339, 0.00389130437, -0.0256659184, -0.00856766943, -0.00879638735, 0.0208937377, 0.00491126487, -0.00218827906, -0.00195956067, -0.0195337906, -0.0142547218, 0.0134511171, -0.0200777706, -0.021573713, -0.031946402, 0.026234623, -0.00425601751, -0.02168498, -0.0117511824, 0.0203744862, -0.00943927187, -0.0188043639, -0.020597022, 0.0155034009, -0.00335659762, -0.00962472, -0.00644120574, -0.0301661082, -0.012981317, 0.0496504456, 0.00910546631, 0.0334794335, 0.0315260552, -0.0225256756, -0.00875929836, -0.0177040435, -0.0183469281, 1.02442773e-05, -0.00998943206, -0.0185200125, 0.00266117, -0.00827713497, -0.0319711305, 0.0396115594, -0.0217591599, -0.0251961183, 0.0675028488, -0.00374912797, -0.0358037092, 0.015936112, -0.0133027593, -0.0125176981, -0.00442910148, -0.0103232376, 0.0334052555, 0.00144803501, -0.0339739621, -0.0237619914, 0.00313715148, -0.00336896069, -0.0346415713, -0.0139703695, 0.00697900308, -0.00259471801, -0.0522219837, 0.0175804123, -0.00109027606, -0.00200746791, -0.013562385, -0.0166408122, -0.0056468728, -0.0361498781, -0.0668105111, -0.0378807187, -0.0386472344, 0.0153550431, -0.00502253324, 0.0352350026, 0.0143165383, 0.0546946153, 0.0192988906, 0.00742407702, -0.0184705593, -0.0229831133, -0.0301166549, -0.0213511754, -0.0281138234, 0.0387214124, -0.0263829809, 0.0166408122, -0.0117388191, -0.0209308285, -0.000306760892, -0.000875466212, 0.0486119427, 0.0216231644, -0.0465596579, -0.00756007154, -0.00288525224, -0.00818441156, 0.00806077942, -0.025764823, -0.0138838273, 0.00772079267, 0.0296963081, -0.00861094054, -0.00672555855, -0.00975453202, -0.0177287702, -0.0121158957, 0.0324162021, 0.00719535863, 0.00209246459, -0.0016195738, -0.032762371, 0.0369905718, -0.0252950229, 0.0182232969, 0.0104097798, 0.0515296459, 0.0358531624, 0.000780424394, 0.0271000452, -0.0148976063, -0.00131899456, 0.0349630117, -0.0150212385, 0.015738301, -0.038399972, -0.0442848355, 0.0169498902, 0.00525434269, 0.00920437183, 0.0302650128, 0.0130060436, 0.0320700333, -0.0149223329, -0.0221176911, -0.00625575846, -0.0162946433, -0.00806696154, -0.0286825281, -0.003381324, -0.0464854762, -0.00627121236, -0.0407984257, -0.0120726246, -0.00874693505, -0.00234900019, -0.0422325507, 0.00863566622, -0.029226508, 0.0254928339, -0.00799896382, -0.0315755084, 0.0307348128, 0.0431474261, -0.00232427381, 0.0252826605, 0.0115904612, -0.00258390023, 0.000552478654, 0.00522961607, 0.0337266959, -0.0284847189, 0.011658459, -0.0165048167, 0.0159608386, -0.024874676, 0.0153674064, -0.0383505188, -0.0121158957, -0.0523703396, 0.0249983072, -0.0218333378, 0.0259379074, 0.017061159, 0.0104406876, -0.0206712019, -0.0214871708, -0.0323667489, -0.0140940016, -0.00993379857, 0.0542000905, -0.00599613227, 0.0287567079, 0.0406995192, 0.0347157493, 0.025962634, -0.00830186158, 0.0377570875, 0.0469058231, -0.0224885866, -0.0125238802, -0.00733135315, -0.0166160855, -0.0276934765, -0.0259873606, -0.0107621299, -0.0272484031, 0.0146997962, -0.117697276, 0.0078815138, -0.00668846909, -0.00389130437, -0.00619703345, -0.00605176622, 0.015157233, 0.00912401173, 0.0413424037, 0.015701212, -0.00378312659, -0.0142176328, 0.0381032564, -0.0243677869, -0.00820295606, -0.00173393299, -0.036298234, -0.0303639174, 0.0100450665, -0.0140321851, -0.0148110641, -0.0199665017, -0.0402049944, 0.00692955079, -0.0236878116, -0.0108363088, 0.0222536866, -0.00279098307, 0.0480679609, 0.00822150055, -0.0451997072, -0.0218086131, -0.0323172957, 0.0353339091, 0.0144772595, 0.0146874329, -0.00699754804, -0.0203373972, 0.0102305142, -0.00935273, 0.0304875504, 0.0194472484, 0.0144525329, 0.0328118242, 0.00932800304, 0.0424550883, -0.0238979869, 0.0156146698, 0.0337761492, -0.0219322443, 0.0159113854, -0.0212028176, -0.00917964522, -0.00469491, 0.0141929062, -0.0115719168, 0.00786915049, -0.023625996, -0.0154168587, 0.00522343442, 0.035012465, -0.00462691206, -0.0345179401, -0.0121900747, 0.0019626515, 0.0135005694, 0.0186189171, -0.0280396435, 0.0201148596, -0.00297024893, 0.00859857723, 0.0398588255, 0.021375902, 0.00705936365, 0.0301413815, 0.0380043499, -0.0162451901, 0.0248004962, -0.0121035324, -0.0121344402, -0.020597022, 0.0120540801, 0.0169498902, 0.0233540069, -0.00397784635, -0.0132285804, 0.0234405492, 0.01072504, -0.0265066121, -0.0122766169, 0.00553251384, -0.0304875504, 0.00344313984, -0.0140816383, 0.00288061611, 0.0373861939, -0.00913019292, -0.0209926441, -0.024639776, 0.0015052146, 0.00344004901, 0.00864184834, 0.0100017954, 0.00191319885, 0.0026488069, -0.0170364324, 0.0104468688, -0.0156146698, 0.0238732602, 0.0208319221, -0.0404275283, -0.0114111956, 0.00835749507, 0.00910546631, -0.0148110641, 0.0213882644, 0.00474127149, 0.0329107307, -0.0242688805, -0.00411075028, -0.0423314571, 0.0293995924, 0.0109104877, -0.0106261354, 0.0246892292, 0.0128453225, 0.0179883968, -0.0488839298, -0.0245408695, 0.00259162718, 0.0145390751, 0.0131667638, 0.0222413223, 0.0203992128, -0.0185941905, -0.0319216773, 0.00556960329, -0.0279901922, -0.0378807187, -0.00736226095, 0.000714358757, -0.0306111816, -0.000849194475, 0.0167149901, 0.0175433233, -0.0156393964, 0.0131544014, 0.00288061611, 0.0350619182, 0.0133027593, -0.0126722381, -0.0396857411, -0.00301815616, 0.00802987162, -0.00990289, 0.0148357907, -0.0130802225, -0.00552942278, -0.0557825714, -0.022191871, 0.00666374248, 0.0256659184, -0.0134263905, 0.00434565032, -0.0454964265, 0.0115842801, 0.0260615386, -0.00345241209, 0.0245532338, -0.0096185375, 0.0265066121, 0.0151695963, -0.00245563244, -0.0193854328, -0.00871602725, -0.0201890394, 0.0195585173, -1.00873231e-05, -0.0166408122, -0.0138714639, -9.21441679e-05, -0.00525434269, -0.00578286778, -0.0134263905, -0.0187054593, -0.015973201, 0.0243306961, 0.00883965846, 0.0173702389, -0.0210544597, -0.0112752011, -0.00284198113, 0.0423561819, -0.0162822809, 0.021647891, -0.000681905483, -0.0248128604, -0.0255670119, 0.019274164, -0.0327376463, -0.0281880032, -0.00762806926, -0.0178647637, 0.0177782234, -0.00645356905, 0.00364713185, -0.00724481093, 0.00759716099, -0.00666992413, -0.0354080871, -0.00559123838, -0.00728190038, 0.00229027518, 0.026852781, 0.0104715955, 0.0332568958, -0.0375840031, 0.00445073703, 0.0112195667, 0.0360509716, -0.00449091755, 0.0171106122, -0.0369905718, 0.012746417, -0.00810405053, -0.0110155744, -0.00483399536, 0.0352102779, -0.0234529115, -0.0234900024, 0.00847494509, -0.00660810852, -7.76078e-05, -0.00947636086, -0.0181243904, 0.0024092705, 0.0447793603, 0.0282869078, -0.00543979, 0.00661429, -0.0234405492, -0.00496071763, -0.0219198801, 0.0152808642, 0.0152561385, 0.0134016639, -0.0243059713, 0.0709645301, 0.0398093723, 0.00423438195, 0.0109166689, -0.0324162021, -0.0112010222, 0.000264648872, -0.0174938701, -0.0113802878, -0.00596213341, -0.0176793169, 0.00862330291, -0.0110464823, 0.03202058, -0.014378354, 0.017951306, 0.0205846597, -0.00183283829, 0.0217097066, 0.0131914904, -0.0229336601, -0.0102366954, -0.00515852822, -0.00374294631, -0.0109537588, -0.0325645618, -0.0136118382, -0.013253306, 0.0335288867, -0.0117573645, 0.00900038, -0.0141929062, -0.0184334703, -0.00732517149, 0.0186312813, 0.00160721061, -0.00816586614, -0.0153550431, -0.00262098969, 0.015701212, -0.0231809225, 0.0161215588, 0.0198057797, 0.0070346375, -0.0208813753, 0.0259379074, -0.00483399536, 0.0164306387, 0.00111191161, 0.00242008828, -0.0131791271, 0.00608267402, -0.00820295606, 0.00498544378, 0.017061159, -0.0166408122, -0.0199417751, -0.0123878848, 0.0434194133, 0.00787533261, 0.0064906585, 0.0013097222, -0.0251713917, -0.0262098964, -0.00485563045, -0.0375592783, -0.00684919, -0.0261851698, 0.0234529115, 4.48647443e-05, -0.00285898056, 0.0143907173, 0.0204115752, -0.000570250733, -0.0137849217, 0.0450513512, -0.0154539486, 0.0235023648, 0.00166284491, -0.00387275964, -0.00366567657, -0.0089632906, 0.0255670119, -0.0232427381, 0.00349259237, -0.0207206551, 0.042751804, 0.0160597432, 0.0213511754, -0.00858621392, -0.0189527217, 0.0144896219, 0.00174629618, -0.00861712173, 0.0227976646, -0.010805401, -0.00135531125, -0.0012834504, 0.00857385062, 0.0188167281, -0.0241947025, 0.00958763, 0.00713354256, 0.00443837419, 0.0269516855, 0.0344190337, -0.0104035987, 0.00383567, 0.0123507958, 0.00144030806, -0.0111824768, -0.000606567482, 0.0274709389, 0.0075786165, 0.00781351607, 0.00265807915, -0.0240587071, 0.0107868565, -0.00289143389, -0.0299930237, -0.00401802687, -0.00131435832, -0.0509856679, -0.0184581969, -0.0554364063, -0.00301506533, 0.0220806021, 0.0467080139, -0.0344684869, -0.00515234657, 0.00644120574, -0.0196079705, -0.00527597824, -0.00766515872, -0.0197192393, -0.0346415713, 0.0078815138, 0.00997707, -0.0126475114, -0.00108486717, 0.00945163518, -0.0034956832, 0.0251713917, -0.0193112548, -0.0138467383, 0.0264324341, -0.0225751288, -0.0689864233, 0.0320947617, 0.0232427381, 0.00579832168, 0.0019935593, 0.0161215588, -0.018421106, -0.0107003143, -0.0442848355, 0.0301413815, 0.0056932345, 0.0053594294, 0.0312540643, 0.0251466651, 0.0368422121, 0.00825859047, -0.0238485336, 0.0169993434, -0.0144648962, -0.00862948503, 0.0061908518, 0.0256164651, -0.00945781637, 0.0233416446, 0.0293748658, -0.00339059625, -0.00976689532, 0.0166037232, -0.019199986, 0.0209679175, 0.0132780327, 0.0129936803, -0.00061506714, 0.00068036007, -0.020325033, -0.0161957387, -0.0280396435, 0.00999561418, 0.00885820296, 0.0149099696, 0.00050341239, -0.0415896662, 0.00587868225, 0.0231685601, -0.0187425483, 0.0283116344, -0.0295479503, -0.0119984457, 0.00493908208, 0.000504185096, -0.00586940954, -0.0120293535, -0.00895710848, 0.0165666323, 0.00710263476, 0.00292543252, 0.0208071973, -0.0200035907, 0.00318351341, -0.00108873064, 0.00312942453, 0.017951306, -0.0174938701, 0.0137849217, -0.0103850532, -0.0441612042, -0.0116460957, 0.0244419649, 0.0141558172, -0.0270011388, 0.0108795799, 0.0472272672, 0.00362240546, -0.00242008828, -0.0138961906, -0.0155404909, 0.00780733489, 0.00121545303, 0.00979162194, -0.000836058636, 0.0319711305, -0.0378065407, 0.0147987008, 0.0215613488, -0.0109846666, -0.00120772608, 0.0272731278, -0.0238856226, 1.11195986e-05, 0.0118562691, 0.0344190337, 0.0286330767, -0.00677501131, 0.0293254126, -0.013290396, 0.0221671443, 0.00225473102, -0.0131791271, -0.0229583867, 0.0153179541, -0.012202438, 0.00201674039, -0.0294490438, -0.013760196, -0.015157233, 0.0211286377, 0.0269269608, 0.0282621812, 0.0289792437, -0.0102923298, -0.0265807919, -0.0117326379, -0.0139085539, 0.00325151091, -0.0220187865, 0.00646593189, 0.0137231061, 0.0243801493, -0.0101192454, -0.0354575403, 0.00731899031, -0.0478701517, 0.000243786038, -0.00870984513, -0.00993379857, 0.0124187935, 0.00652156631, 0.0474498048, 0.0171971545, 0.00210946403, 0.0084564006, -0.00407057, 0.00523888879, 0.0031108798, -0.009637082, 0.00571796112, 0.0638928041, -0.0176669545, 0.000644429645, 0.00338441483, 0.0242441539, 0.00581377558, -0.00577668613, -0.012554788, 0.00942690857, 1.49710131e-05, -0.0110712089, 0.0025499016, -0.022538038, 0.0453727916, -0.000769606617, 0.00560978334, 0.00780733489, -0.00938363746, 0.00861094054, -0.0164924543, 0.0310315285, 0.0145514384, -0.00997707, 0.0179636702, 0.023749629, 0.0396610126, 0.0255175605, 0.0248499494, -0.0132038537, 0.03404814, -0.0110959355, -0.00482163206, -0.0101377899, -0.0233045537, -0.00415711198, -0.0138714639, 0.0182727482, 0.0293748658, -0.0354328118, -0.00887056626, -0.00879638735, 0.00800514501, 0.0177040435, 0.0106199533, 0.0172589701, 0.042825982, -0.0258390028, 0.0231561959, 0.00441673864, 0.0239721648, -0.037114203, 0.0170364324, 0.0432216041, 0.00896947179, -0.00681210076, 0.0186312813, 0.0161710121, 0.0147987008, -0.00501326099, 0.0288308859, 0.024639776, -0.0129442271, 0.0281880032, -0.0131173115, -0.00372749241, 0.00107714022, -0.0145761641, 0.0287567079, 0.0237743538, -0.0233663712, 0.00410456862, -0.01060759, -0.00661429, 0.00484017655, 0.0199788641, -0.00815968495, -0.00822768267, -0.00864802953, -0.0154539486, -0.0231561959, -0.0215242598, -0.00267353305, 0.00806077942, -0.00774551928, -0.0297952127, -0.00111422967, -0.000266387447, -0.0193483438, 0.00866039284, 0.000219639245, 0.00281880028, 0.0114173768, -0.00221455074, -0.020325033, 0.006218669, 0.0110403011, -0.0233292803, -0.00459291367, 0.00712117972, -0.00296097645, -0.0056932345, 0.00683064526, 0.00203528511, -0.0204981174, -0.0331827179, 0.0185076483, -0.0053903372, 0.00675646635, -0.0106199533, 0.0140074594, -0.0170735233, 0.0311551597, -0.00704081915, -0.00503798714, 0.00627739402, 0.00243245158, -0.0161586478, 0.0147616118, -0.00992143527, -0.00216200738, 0.0319958553, 0.000625498593, 0.00884584058, -0.00513380161, -0.0022949113, -0.0182480235, -0.016752081, -0.0221300554, 0.000699677505, -0.0280149188, -0.0192618016, 0.0319711305, 0.00781969819, -0.00947018, -0.00990907196, -0.0547935218, -0.0153055908, 0.0283610858, -0.0133027593, -0.023514729, -0.00700991089, -0.00505344104, -0.0439139418, -0.0110773901, 0.0187054593, 0.016863348, -0.0180996638, 0.0105272299, 0.0194967017, -0.000999870477, 0.0261851698, -0.00395002915, 0.0348146558, 0.000921828032, -0.00942072738, 0.0188167281, -0.0220311489, -0.02246386, 0.00885820296, -0.00328550953, -0.0121406224, 0.0194472484, -0.0149223329, -0.0183716547, -0.0175185967, 0.015701212, 0.019509064, 0.0244048759, -0.00522034382, 0.00853676163, 0.00785678718, 0.0106384987, 0.0180131234, 0.0110897534, -0.0203744862, 0.00794951152, -0.00220218766, 0.0126969637, -0.00611667288, -0.00146271626, -0.00315106, 0.010687951, -0.0162575543, -0.00935273, -0.00522652548, -0.030314466, -0.00629284792, -0.0121158957, -0.00661429, -0.0414165817, 0.0142423594, 0.0223525912, 0.00869130064, 0.00543669891, -0.0140816383, 0.0266549699, -0.0529143214, -0.0172960591, -0.00707790861, 0.00529143214, 0.00597140566, 0.0408231504, 0.00225936738, -0.00314642396, 0.0220311489, 0.00141789974, 0.0315755084, 0.0207453799, 0.0327376463, 0.00117063662, -0.00533470325, -0.0278912857, -0.0128329592, -0.00124790636, 0.0108795799, 0.0162575543, -0.00151680503, 0.0279654656, 0.0157135744, -0.0262098964, 0.00830804277, -0.00564069115, 0.016752081, -0.0218209755, -0.00689246086, -0.029424319, 0.0212275442, -0.0275698435, 0.0141310906, -0.0306853596, 0.0190269016, -0.000215968932, -0.00921673514, -0.00804841612, 0.00362858712, -0.000674951181, -0.0141681805, -0.0215366222, 0.0149099696, 0.0162575543, 0.0225751288, -0.0115286456, -0.0289297923, 0.00484326761, -0.00743025867, 0.0116399145, 0.0051183477, -0.0198552329, 0.0155281276, -0.0235023648, 0.00288061611, -0.00692955079, -0.000828331627, 0.0228347536, -0.00079433294, 0.00654011127, -0.0284352656, 0.0111392066, -0.0191010814, 0.00488344766, 0.029424319, -0.00726335589, 0.00623103231, -0.0172342435, 0.0112999268, 0.0366196781, -0.0166160855, -0.00363476877, 0.0107312221, 0.0168880746, 0.00906837732, -0.0328860022, 0.0180254858, 0.0011814544, -0.0121282591, -0.0176175013, -0.0184829216, 0.0178029481, 0.00731899031, -0.0100574298, 0.000786219665, 0.0235394537, 0.0125176981, -0.0194101594, -0.0031247884, 0.00988434535, -0.00478145154, -0.0283363611, -0.00600540452, 0.0153426798, -0.001792658, 0.00151371432, 0.00793714821, 0.014378354, -0.0110341189, 0.0210915487, -0.0113246534, 0.0249859449, -0.00446000975, 0.0133893015, -0.0104283243, -0.0026658061, 0.00254526525, -0.000202833078, 0.00630830182, 0.0231314711, 0.00574268727, 0.00432092417, -0.00334732537, 0.0011551826, -0.00307069952, -0.00236754492, 0.0108486721, 0.00610121898, -0.00854294281, 0.000165164078, -0.011269019, -0.0103356009, 0.0161462855, -0.0508867614, 0.0213140864, -0.0453727916, -0.0302155595, -0.0164430011, -0.00838222168, 0.00326387398, -0.00686773472, -0.00947018, 0.0206093863, 0.00767134, 0.00940218195, -0.00775788212, -0.010453051, -0.023551818, -0.0196326971, -0.0031263337, -0.00237218104, 0.0253939275, 0.0254186541, -0.0062372135, 0.0276440233, 0.00322987535, 0.0115533723, -0.0020909193, 0.0174073279, 0.00984107424, 0.0285094436, 0.00411384134, -0.0115533723, 0.0106817689, 0.0196697861, 0.000971280679, -0.0202755798, -0.00836367719, 0.00231654686, -0.00144958042, -0.0183963813, -0.00501017, 0.0244048759, 0.00178802188, -0.0135129327, -0.0245532338, 0.00383567, -0.00902510621, 0.00358840683, 0.00808550604, 0.013290396, -0.00426528975, 0.0148976063, 0.019199986, -0.0167149901, 0.00744262151, 0.00150366919, 0.0072757192, -0.0141929062, 0.00861094054, 0.0030645181, -0.000987507286, 0.0177658591, 0.0194596127, 0.0102676032, 0.00554178609, -0.000135415219, 0.003381324, -0.023786718, 0.000860012253, 0.0102181509, 0.016826259, -0.00892001949, 0.0138591016, 0.00290997862, -0.0169498902, 0.00608267402, -0.0183592904, -0.00440128474, 0.00794951152, 0.00259162718, 0.00700991089, 0.00728190038, 0.0045465515, -0.0126351481, -0.0391417593, 0.00799896382, -0.0170117058, 0.00225164043, -0.0122457091, -0.0131296748, -0.021573713, 0.0196079705, 0.0314271487, 0.0117264558, 0.00159639295, -0.0109413955, 0.0280890968, -0.0180502124, -0.013797285, -0.00202910346, -0.0205475707, -0.0132656693, -0.00430856086, -0.012981317, -0.00651538465, 0.00972362421, -0.0133893015, 0.0233045537, -0.0220929645, 0.000230843361, -0.00718299532, -0.0210420974, 0.0226740334, -0.00361313322, 0.00553869503, -0.00430547027, 0.00959999301, 0.00790005829, -0.000582613866, 0.0205722973, 0.0166160855, 0.00305833644, -0.0157506652, 0.00248808577, -0.0391912125, -0.00560360169, 0.00607340178, 0.0126536936, 0.0195337906, -0.04290016, -0.00487417541, -0.0042591081, 0.0121406224, -0.00741789537, -0.0196326971, -0.0183222014, 0.00658338191, -0.00440128474, 0.00699754804, 0.0197563283, -0.0064597507, -0.0322183929, 0.000856148778, -0.00278325612, 0.0131420381, -0.00893856399, 0.0114297401, -0.00308151729, 0.00613521738, -0.00193483441, 0.0125609692, 0.0115966434, -0.0364960469, 0.0305370018, 0.00926618744, 0.0108733978, -0.0056314189, -0.0204981174, -0.00188383635, 0.00164275477, -0.0129565904, 0.0217591599, -0.000670701382, 0.00530688604, 0.0028218911, 0.00697282143, -0.00540888216, -0.0115904612, -0.024911765, -0.00847494509, 0.0101068821, -0.00332878064, -0.0216726176, 0.00811023265, -0.00738698756, 0.0201395862, -0.00489890156, 0.012709327, 0.0183469281, -0.00274307583, 0.0140198218, 0.0124435192, -0.019509064, -0.0147863384, -0.021338813, -0.00928473193, -0.0132038537, 0.0164059121, 0.017098248, 0.0337761492, 0.00289607, 0.00631757407, 0.023749629, 0.0193854328, 0.021375902, 0.0189898126, 0.0160473809, -0.00185911, 0.0228594802, 0.00264571607, 0.0036533135, -0.00169529812, 0.00448782649, -0.00793714821, -0.00788769498, 0.0221176911, -0.00152144127, -0.0051059844, -0.00930945855, 0.0421336442, 0.010298511, -0.00194410677, 0.00608885568, 0.0155157642, 0.00390057662, 0.0232674647, -0.0112257479, 0.032144215, 0.000672246737, 0.020015955, 0.00989052746, 0.00694191363, 0.0145638008, 0.00153689517, 0.0622114167, -0.0089941984, 0.0201643128, 0.0219075177, -0.0124497013, 0.00803605374, -0.00977925863, 0.00551087828, -0.0317485929, -0.0261851698, 0.0136242015, -0.0107374033, 0.0126598747, 0.0285094436, 0.00872839056, -0.00288525224, 1.14576542e-05, -0.004274562, -0.00995852426, -0.00585086504, -0.03202058, -0.0184829216, 0.031946402, -0.00447546365, -0.0232303757, 0.000559046573, -0.0134634804, -0.0246274117, 0.000967417203, -0.0342212245, -0.000743721263, -0.00691100582, -0.00749207428, 0.00328550953, -0.0230696537, 0.0273720343, 0.0158866588, 0.0101563353, -0.00764661375, 0.00876548, -0.0157630276, -0.00291770557, 0.00272144028, 0.00710263476, -0.00962472, 0.0133398483, 0.0304380972, -0.000620862411, 0.00807932392, -7.68833925e-05, -0.00372131076, -0.0148110641, -0.010453051, -0.00477527035, -0.00751061924, -0.0230449289, 0.0173578747, -0.00821531937, -0.00665756129, 0.0136612905, 0.00540270051, -0.00763425045, -0.00991525315, -0.00941454526, -0.0190763548, 0.0169375278, -0.0120911691, -0.028954519, 0.0120231723, 0.0105952276, 0.0169251654, 0.00344932126, 0.00822150055, 0.00958144851, -0.0126969637, 0.00410456862, 0.0171724278, -0.00283270888, 0.0125980591, 0.0204610284, 0.00397784635, 0.013018406, 0.0159979276, 0.0163193699, 0.0034276857, 0.0226493068, 0.0318474956, 0.0182851125, 0.0181367546, -0.00395930186, 0.0261604451, -0.00129117735, 0.00156393962, -0.010143972, -0.0384494253, -0.01601029, 0.0173702389, 0.0149470596, -0.00352968182, 0.0119057223, 0.0116831856, 0.00799896382, -0.00890765619, 0.02145008, -0.00484326761, 0.0193607062, 0.00186683703, 0.00170457049, -0.000285511691, 0.00979780313, 0.0154786753, -0.00718299532, 0.0110403011, 0.000362201914, -0.0220682379, 0.00234281854, -0.000150386244, -0.0107744932, 0.0178029481, -0.0185447391, 0.00248344964, 0.00341532263, -0.010063611, 0.0339245088, 0.037658181, 0.00151448697, 0.00482781371, 0.0161215588, -0.000177720416, 0.00283425418, -0.00419420144, 0.00229336601, 0.00644738739, -0.0148605173, 0.00959381089, 0.0294490438, -0.0165666323, 0.0200654063, -0.00745498482, 0.00118531787, 0.00397784635, 0.01678917, -0.0124064302, 0.00415711198, 0.0188785437, -0.00960617419, 0.000324339751, 0.00558196614, -0.0434688665, 0.017877128, 0.0141929062, 0.00992143527, 0.0150459642, 0.00144803501, -0.0244914182, 0.0147863384, 0.000992916175, 0.0076404321, 0.0403780788, 0.0121406224, 0.0029532495, 0.00376458187, -0.0106817689, 0.00691100582, 0.00366567657, 0.00290688779, -0.0116831856, 0.00654011127, 0.0117635457, 0.0285094436, 0.0191381704, 0.0132038537, 0.0192494392, -0.0084687639, -0.00572105171, -0.00774551928, -0.0267291497, -0.00498544378, -0.00765279541, 0.0112442933, 0.0147121595, 0.00231345603, -0.00990907196, 0.0147616118, -0.0205475707, -0.00543051772, 0.00291152392, -0.00471345428, 0.0169622544, -0.0484141298, 0.00704700081, -0.00955054071, 0.00170302519, 0.00514307432, -0.00704081915, -0.0158866588, -0.0122642536, 0.0207206551, 0.00600231346, 0.00798660051, -0.00165975408, -0.0241205227, -0.0273473077, 0.00707172696, -0.00351422792, 0.0293748658, 0.0159113854, -0.0187301859, -0.00513071101, -0.00258390023, 0.0180502124, 0.0102119688, 0.00767134, 0.000238763503, -0.0177905858, 0.0172589701, -0.00636084517, 0.0178894904, -0.0164306387, 0.000140727527, 0.0191876218, 0.0350866467, 0.0354080871, -0.0327376463, -0.00950108748, -0.000288409326, -0.00248808577, 0.00943309069, 0.03202058, -0.0113184722, 0.00662047137, 0.0388450436, -0.0140074594, -0.00884584058, 0.00549233332, -0.0127587803, 0.00294397725, 0.0021357357, -0.014885243, 0.00053432025, 0.0102676032, -0.0115286456, 0.005071986, 0.00995852426, 0.00900038, -0.000526979624, -0.0125424247, 0.0160473809, 0.0189774483, 0.00319278589, -0.0134016639, -0.00977925863, 0.018074939, 0.00322678452, -0.00939600077, 0.000382098893, 0.0241328869, 0.00207082904, 0.0090621952, 0.0156764854, 0.00857385062, -0.0179018546, 0.0126969637, -0.0136736538, 0.0137478327, 0.013253306, -0.0193112548, 0.0102923298, -0.0420841947, 0.00307533587, 0.00628357567, -0.00833895057, 0.0126042403, 0.00579832168, -0.00425292645, -0.0175680481, -0.00661429, 0.0045465515, 0.00230418378, -0.0112195667, 0.0198057797, -0.0101996064, 0.0258884542, -0.0425045416, -0.03202058, 0.000509980309, 0.011930448, 0.00286361668, -0.00689246086, -0.000558660249, 0.00794951152, -0.00121236232, 0.000765356817, 0.01072504, 0.0116646402, 0.0136736538, 0.0306606349, 0.0225133132, -0.0112195667, 0.0172960591, 0.0132038537, 0.00484326761, -0.005965224, -0.0197439641, -0.011269019, 0.00885820296, 0.0177164059, -0.0222042333, 0.00704081915, 0.00239072577, -0.0157630276, -0.0319711305, 0.0034122318, 0.0201395862, 0.0162946433, -0.0139456429, -0.000288988842, -0.0146379806, 0.012709327, 0.0344437622, -0.0114235589, 0.00274462136, -6.21055588e-05, -0.0233910959, -0.00123399775, -0.00777024543, -0.00146503432, 0.0270753186, 0.000220411937, -0.0145761641, -1.67095823e-05, -0.00683064526, -0.00524507, 0.00914255623, -0.0245285071, -0.0241081603, 0.00594358845, -0.00118222705, 0.00339059625, -0.00168293505, 0.00804841612, -0.00756625319, 0.00501017, 0.0145514384, -0.0186930969, -0.00576123223, -0.00461454922, -0.000407597894, 0.0103850532, -0.0281632766, 0.00632993737, -0.0127711436, -0.000710495282, 0.0333558023, 0.0185447391, -0.00636084517, -0.0244296025, -0.0196697861, 0.0114235589, 0.000520798087, 0.0175309591, -0.00545524387, 0.0023938166, -0.00922909845, 0.00434874091, 0.00173547841, 0.0141187273, 0.0095567219, -0.00827095285, -0.0115101011, -0.000121699843, -0.00672555855, 0.0101192454, 0.00760334264, 0.0253444761, -0.00817822944, 0.00526052434, -0.0166408122, -0.000107501532, 0.0209308285, 0.00534088444, 0.00192247122, 0.000724017504, -0.00732517149, 0.0142918117, 0.00120463525, 0.0135129327, 0.0367433093, 0.0078629693, 0.00645356905, 0.0216602553, 0.00260244496, -0.00193174358, 0.00713354256, 0.0184705593, 0.0131049482, 0.0064906585, -0.0459414981, -0.00459600426, 0.00324532925, -0.00306142727, 0.0137354694, 0.00212491793, 0.00140630931, 0.0135129327, -0.0111824768, 0.00265653385, -0.0296963081, 0.00875929836, 0.00383567, 0.00409220578, -0.0023938166, 0.00411693193, -0.00571177946, 0.00138931, -0.0200654063, 0.00268898695, -0.0281632766, 0.000894783647, 0.00849349052, 0.00300888391, -0.0108239455, 0.00505962269, 0.0165295433, -0.0206835642, -0.00929091405, -0.0149594219, -0.0242317915, -0.0118995402, 0.0158742964, -0.0156764854, 0.00692955079, 0.00247263187, -0.0176298637, -0.000350997812, 0.0116275512, 0.00548306108, 0.024713954, 0.00535015715, 0.000220025599, -0.00979780313, -0.00667610578, 0.0214624442, -0.00699136639, -0.0182232969, -0.00207391987, -0.0141929062, -0.001539986, 0.01702407, -0.0070655453, 0.00346477539, 0.00143258099, -0.0115348268, -0.000508434896, -0.0238485336, 0.00751061924, 0.00691718748, -0.00523579773, 0.0108177643, -0.0228594802, -0.0128700482, 0.021103913, -0.0174444169, -0.00571487, 0.0059034084, -0.00692336913, 0.0167397168, 0.00365022267, 0.0205352064, 0.0295974016, -0.00140012777, -0.0211533643, -0.018149117, 0.00560360169, -0.0242317915, -0.0135376593, -0.0247634072, -0.00818441156, -0.0164924543, 0.00434255973, 0.0339245088, -0.00383567, 0.00493599102, 0.022191871, 0.00344004901, 0.00742407702, -0.0115780979, 0.0270011388, 0.00580759393, -0.0121715302, 0.0168015324, 0.000199355942, -0.000929555, 0.000654861098, -0.00315724174, 0.0185076483, -0.0117697269, -0.00944545306, 0.00397784635, -0.00474436209, 0.00548615167, 0.00340914098, 0.00508434931, 0.0064597507, -0.0134634804, -0.00127726886, -0.0379796252, -0.0095381774, 0.00687391637, 0.0267044231, 0.0172836967, -0.0109290322, 0.00809168722, 0.0161215588, 0.00102614216, 0.00501635158, 0.00195492455, 0.00806077942, -0.0207824707, -0.0183716547, -0.015936112, -0.00297797588, 0.000690405141, -0.0189032704, 0.0467080139, 0.00693573197, 0.016863348, 0.0140074594, 0.0199046861, 0.0205352064, -0.0062217596, -0.00361313322, 0.0177534968, -0.00704700081, 0.0199541394, -0.038325794, -0.00105164119, -0.0253073871, 0.0183345638, -0.0192618016, -0.0025823547, -0.0171600655, 0.0090745585, -0.00206001126, -0.0123817036, -0.0123384325, 0.0055850572, 0.0289297923, 0.00739316922, -0.0118624512, -0.0149099696, 0.00723244809, 0.00845021941, 0.0174938701, -0.0111639323, 0.00318351341, -0.00474436209, 0.00825240836, 0.000680746452, -0.00915492, -0.0204486642, -0.0118871769, -0.0151448697, 0.0303391926, -0.000836831343, 0.00210328237, -0.00514616491, 0.0252332073, -0.00674410304, 0.00208010152, 0.00288370671, -0.00853057951, -0.0261604451, 0.0121962558, -0.00657101907, -0.0146256173, 0.00122318, 0.0090745585, 0.0067811925, -0.00781351607, -0.00458364096, -0.0139085539, -0.00414783973, 0.00180811202, 0.000725949241, -0.00474745315, -0.00117681816, -0.0117697269, -0.000743721263, -0.0415154882, 0.00465782033, -0.00185447384, 0.0171477012, 0.000738698756, -0.0130678592, 0.0171600655, 0.00439819368, -0.0100574298, 0.00184211065, -0.00640411628, 0.017061159, -0.00577050447, 0.00293934112, 0.0137231061, 0.0214624442, -0.00663901633, -0.0140074594, -0.00780115323, -0.0101192454, 0.00853057951, -0.0114730112, -0.0196450595, 0.0154910386, -0.0111577511, 0.00470727263, 0.00102459674, -0.00993379857, -0.0158495698, 0.0195461549, 0.0342706777, -0.00582304783, 0.0184334703, 0.00371203851, 0.000789310434, -0.00609812792, 0.00737462426, 0.0149346963, 0.00143567182, 0.000273534883, -0.00922909845, 0.0217097066, 0.00783824269, -0.00654629245, -0.00584777398, -0.0141681805, 0.0193730704, 0.0106508611, -0.00185756467, -0.00550160557, 0.00244481466, -0.0144896219, -0.00512762, -0.00851203501, -0.00765897706, 0.0151448697, -0.00827713497, -0.0165295433, 0.013327485, -0.00543360831, 0.00803605374, 0.005071986, 0.020250855, 0.00864802953, 0.0050256243, 0.0355317183, -0.0260615386, -0.00940836407, 0.00554487668, -0.0270011388, -0.0134016639, 0.0225874912, -0.00881493185, -0.0102737853, -0.0304628238, -0.0243801493, 0.00300579309, -0.00969889853, 0.0101501532, -0.00726953754, -0.00790624, 0.0116460957, -0.00273843971, -0.00212646322, -0.0103665087, 0.00780733489, 0.0124929724, 0.000644043321, 0.00307533587, 0.0185571015, 0.0149099696, 0.00826477166, -0.0165542699, 0.00574577833, -0.00425292645, 0.0162946433, 0.00866039284, -0.00911164843, 0.00603322173, -0.016826259, 0.0101192454, -0.0389192253, -0.00303206476, -0.0123878848, -0.00335968845, 0.0176916812, -0.0412929505, -0.0073993504, 0.00901892409, 0.0109290322, 0.000584545603, 0.0342212245, 0.00135840208, -0.00900656171, -0.00856766943, 0.0231932867, 0.014106364, 0.0220929645, -0.0180996638, 0.00855530612, 0.0164924543, -0.0107992189, 0.00171693368, -0.0042436542, -0.00655247411, 0.0178647637, -0.014885243, 0.00337514235, -0.0124311559, -0.00708409026, -0.0119737191, 0.0101686986, 0.00689864252, -0.0078938771, -0.0178647637, 0.0268775076, 0.0331579931, 0.0344190337, 0.00247108634, -0.022191871, 0.0137725594, 0.00794951152, -0.00847494509, -0.0164306387, 0.010570501, 0.00268280553, 0.00841931161, -0.00947636086, -0.00504726, -0.0133893015, -0.0180996638, 0.0109352143, 0.00198892318, 0.00189774483, 0.00429001637, 0.00819059275, -0.00873457175, 0.0250972118, 0.00948254298, -0.0136860171, -0.00417874753, 0.00558814779, -0.0324656554, -0.0109104877, 0.00307379034, 0.012709327, -0.0170364324, 0.00235981797, -0.00334423454, 0.00882729515, -0.00632066512, 0.0177287702, -0.00666992413, 0.00260553579, 0.00485872151, -0.0198305063, -1.60817654e-05, -0.0257400963, 0.0198675971, -0.00118299981, 0.0217220709, 0.00762806926, 0.000396007439, 0.000568318937, 0.00798660051, 0.0115657356, 0.00696045859, -0.00244326936, 0.00697282143, -0.0109104877, 0.0212151799, -0.00730044534, 0.0140321851, -0.00740553206, 0.0024077252, -0.00824622717, -0.0130431326, 0.00604867563, -0.00662665302, -0.00649684, 0.00522652548, -0.0103170564, -0.021141002, -0.0233663712, 0.023588907, 0.014341264, -0.0135005694, 0.00536870165, 0.00991525315, -0.00399020966, 0.0105395932, 0.0386966877, 0.0175062325, -0.00749207428, 0.0146627063, 0.0299682971, 0.00835131388, -0.00749207428, 0.0175927747, -0.00660192687, 0.0191505328, -0.00807932392, -0.0053903372, -0.0172342435, -0.0255175605, -0.000852285244, -0.0011551826, -0.0122271646, 0.0243059713, 0.0062372135, -0.0167397168, 0.00711499806, 0.0309326239, 0.00131667638, 0.00526670553, 0.0262593497, 0.00772697432, -0.02269876, -0.000442755641, 0.00148435181, -0.00798041932, -0.00385730551, 0.0118191801, 0.00825240836, -0.0153550431, -0.0177905858, -0.0338008776, -0.012202438, 0.0127340537, 0.00425292645, -0.030314466, -0.00017366375, 0.00717681367, -0.00225936738, -0.00847494509, 0.00772697432, 0.00254217465, 0.00728190038, -0.00187920011, -0.00971126091, 0.00906837732, -0.0105210487, -0.00942072738, -0.00665756129, -0.010378872, -0.00121468038, -0.0272236764, 7.38409e-05, 0.0158866588, -0.0156888478, 0.000927236921, 0.0210297331, -0.00543669891, 0.00418183859, -0.00288370671, 0.0216973443, 0.013834375, 0.0272484031, -0.00665137963, 0.0121406224, -0.0150583275, -0.0160968322, -0.015973201, 0.0113679245, 0.0115842801, -0.0121220769, -0.00490199262, 0.00805459823, 0.0283116344, -0.0197934173, 0.000152607739, -0.0042405636, -0.010415961, 0.0105148666, 0.00657720072, 0.0236383602, 0.00182665675, -0.00701609254, -0.00463000312, 0.0299930237, 0.00586940954, -0.0268033277, 0.00938982, 0.0168015324, 0.00471345428, 0.00279871, 0.0349135622, -0.00557269389, 0.00360386074, -0.00524507, -0.0156393964, 0.0118624512, 0.00844403729, -0.0169004388, 0.00449091755, 0.0148976063, -0.00699754804, -0.00505035045, -0.0095381774, 0.0110835722, 0.00760334264, -0.0305370018, -0.00404584361, 0.0313776955, -0.014378354, 0.0303391926, -0.0124682458, -0.00314178783, -0.0149965119, -0.000981325749, 0.00802369, 0.0128576849, 0.00444764644, 0.000180714618, 0.0039562108, -0.0300177503, 0.0136860171, 0.000584159279, -0.0213511754, -0.00272916723, -0.000491821906, -0.00169375283, 0.0265807919, -0.00836367719, -0.019162897, 0.0132656693, -0.012981317, -0.00214191736, -0.024911765, 0.0179265812, -0.0269269608, -0.00841931161, -0.000994461589, 0.00155080378, 0.0416885726, -0.0109166689, 0.0135747483, 0.0119799012, 0.0172095168, 0.00254681078, -0.0220064223, 0.022500949, 0.00701609254, -0.00405820692, 0.00694191363, -0.00409529638, -0.0257895496, 0.020522844, 0.00772079267, 0.0132038537, 0.003925303, -0.000887056638, -0.00501326099, 0.000702768331, -0.00709027145, -0.000237797634, 0.0111639323, 0.0095690852, -0.00373058324, -0.0121838935, 0.00455273315, -3.78802838e-06, -0.00684300857, -0.00765897706, 0.00713354256, -0.0223278645, 0.0302155595, -0.00462691206, 0.00189001788, 0.0117017301, 0.00793714821, 0.0122951614, -0.0103170564, 0.000929555, -0.0111948401, -0.0161833744, 0.00686773472, -0.00240618, -0.0363971405, 0.00409529638, 0.0005265933, 0.00571487, -0.023514729, -0.00687391637, 0.00572723337, -0.00474436209, 0.00922291633, 0.02813855, 0.00969889853, -0.0124991536, -0.00486799376, 0.0207577441, -0.018074939, 0.0310809817, 0.0140816383, -0.00219909684, 0.000878557, 0.00623103231, -0.00339368708, 0.0244914182, 0.00269825943, -0.0156270321, 0.0103726899, -0.00403038971, 0.0118377246, 0.00815350376, 0.00169684354, -0.0296715815, 0.000832967809, 0.0279407389, 0.0252455696, -0.00717681367, 0.025690645, -0.00426528975, -0.00296252198, 0.00578904897, 0.00463618478, 0.0221547801, 0.0121035324, -0.0167397168, 0.0128329592, -0.022500949, -0.0234034602, -0.0237619914, 0.0142176328, 0.00881493185, -0.0283116344, 0.00932182185, 0.0219198801, -0.00809168722, -0.0035111371, -0.00631448347, -0.00139935501, 0.0169746168, -0.00448782649, -0.00729426369, 0.0107435854, -0.00532234, 0.00339368708, -0.0175804123, -0.00114822842, 0.0132038537, 0.00685537141, -0.00912401173, 0.00964326411, -0.0130307693, 0.0107559478, 0.0127711436, -0.00788769498, 0.012746417, -0.0157506652, 0.0161710121, 0.00497617153, 0.0178276747, -0.0174196903, 0.00491744652, -0.00532234, 0.0062526674, 0.00755389, -0.00784442388, 0.028212728, 0.000490276492, -0.0151448697, -0.0105086854, 0.00379548967, -0.00193947053, 0.0011103662, -0.0182480235, -0.0116522769, 0.00525434269, -0.000266001094, -0.00375221879, 0.0350866467, -0.00670083193, 0.0136860171, -0.00922909845, 0.00249117659, -0.0182356592, -0.00548924273, 0.0100079775, -0.000598840532, -0.0117388191, -0.00165820867, 0.0151325064, 0.0123631591, -0.00369040295, -0.0380538031, 0.0329601802, -0.00556651223, 0.00198583235, 0.00767752156, 0.00250508497, 0.0178029481, 0.00756007154, 0.00277398387, 0.00206310209, 0.0127958693, -0.0293995924, -0.00376149104, 0.00558814779, -0.0103541454, -0.0135500226, 0.00250353967, -0.00159330212, 0.00609812792, 0.0174320545, 0.011151569, -0.0100759743, -0.0103665087, 0.00422201864, 0.000660656311, 0.00558814779, -0.0125176981, 0.017914217, -0.0257153697, 0.0187178217, 0.00492671877, -0.0175062325, 0.0213017222, -0.00576123223, -0.0145638008, -0.0147616118, -0.034938287, -0.0202384908, -0.0165419057, -0.0153179541, 0.0076095243, 0.0344190337, 0.000300772488, -0.0022655488, -0.000580682128, 0.0111330245, 0.00654011127, -0.0148110641, 0.00627739402, -0.012474427, 0.00198737788, 0.0168386232, 0.0237619914, -0.00340295956, 0.0298446659, 0.0200777706, 0.00373367406, 0.0227482133, 0.00547997, 0.0291276015, -0.00831422396, 0.0053748833, 0.0156764854, 0.0211533643, -0.012783506, -0.012239527, 0.00811023265, -0.0294737704, -0.00116909121, -0.00264107971, 0.0285341702, -0.0078815138, 0.0105210487, 0.0322678462, 0.0116708223, 0.0146627063, 0.0188538171, -0.00130663137, -0.00529143214, -0.00276625692, 0.000970508, -0.0128576849, 0.0145267118, 0.00467018317, -0.00628357567, -0.012591877, 0.00522343442, 0.0116708223, 0.00429928862, -0.000783901545, 0.00867893733, -0.00924764294, -0.00839458499, 0.035680078, -0.00114281953, -0.0107744932, -6.05118694e-05, -0.0132285804, 0.0103356009, -0.00193947053, -0.00697900308, 0.00120154454, 0.0233910959, -0.0242070649, 0.00355749903, 0.0105086854, 0.00534088444, -0.00396548305, -0.0231067445, 0.0178153124, 0.00435492257, 0.0151077798, 0.0193607062, 0.0070655453, 0.0260615386, 0.00444455585, 0.00770224817, -0.000647520472, 0.00746734813, 0.0165913589, -0.0145267118, -0.0236136336, -0.000518866349, 0.000781969808, 0.0233169179, -0.0287567079, 0.0156517588, 0.00662047137, 0.0217715222, 0.00760334264, 0.00126181496, 0.0145514384, -0.00689864252, 0.0190269016, -0.0210791864, -0.00254062912, 0.0217962489, 0.0192247126, 0.0127711436, -0.0174320545, 0.00162730075, -0.0255917385, 0.0195214283, -0.0300177503, -0.00448782649, 0.013253306, -0.0115719168, 0.0171600655, 0.00041493852, 0.013253306, -0.00386348716, 0.0111701144, -0.016986981, -0.000229877493, 0.00337823317, 0.00942072738, 0.00430856086, 0.00111886591, -0.00100605201, -0.0251961183, -0.00744880317, -0.00656483741, 0.0109661222, -0.00566850835, -0.00267353305, -0.00116290967, 0.0223155022, 0.00188692717, 0.015429222, -0.00132981234, 0.0144154429, 0.00302742864, -0.0181985702, -0.0150088752, -0.0351360962, 0.00849349052, 0.0117202746, 0.0187425483, -0.02246386, -0.00515543716, 0.00108718523, 0.00723862974, 0.00866039284, -0.00262408052, 0.0118871769, -0.0053779739, -0.0295479503, 0.00321442122, 0.00836985838, -0.0211533643, 0.0415154882, -0.00336277927, 0.017061159, -0.00380785298, 0.000789310434, -0.0138838273, 0.0089818351, 0.011812998, -0.0118686324, -0.0173084233, 0.00523579773, -0.00959381089, -0.0221547801, 0.0208813753, -0.0169993434, -0.0048154504, -0.0103417821, -0.00948254298, -0.00560360169, -0.0239845291, -0.00618467, -0.00541506382, -0.0121777114, -0.00242008828, -0.0163317323, -0.0135129327, -0.0121900747, -0.0115348268, 0.000133193724, -0.0112133855, -0.00615685293, -0.0212151799, 0.00237372657, -0.0073375348, 0.00301042921, 0.00448782649, -0.00824622717, -0.0139950961, 0.00388203189, 0.00126490567, -0.00445382809, -0.0144896219, -0.0241823383, -0.0153303174, -0.00324223842, -0.0143907173, 0.0170735233, -0.00522034382, 0.00336277927, 0.0283363611, 0.012981317, 0.00976689532, -0.000349066075, -0.0314271487, 0.0121035324, 0.0103974165, -0.0110341189, -0.014613254, 0.00584159279, 0.0013545386, 0.00535015715, 0.009093103, -0.0221053287, -0.0229583867, -0.014885243, 0.0174196903, -0.0287567079, -0.00877166167, -0.0334547088, 0.012554788, -0.037855994, -0.0225751288, -0.0124187935, 0.00203683041, -0.00167057186, 0.00858003274, 0.0338997804, -0.00457436871, -0.00602704, 0.00734989811, -0.000990598113, -0.00121468038, 0.0241699759, -0.00423129136, 0.0214748066, -0.0155775798, 0.0102799665, 0.000802832656, -0.00584777398, 0.00618157955, 0.00173702382, 0.00955054071, -0.0102799665, -0.00232891017, -0.0249983072, 0.00455582421, -0.0318969488, 0.0128329592, -0.0172713324, 0.00189310871, 0.0123878848, -0.00903128739, -0.00959999301, 0.00934036635, 0.0164059121, -0.00488653872, -0.00655865576, -0.00333805289, 0.00287443446, -0.000729812717, 0.0146008907, -0.0132656693, 0.0133893015, 0.00346786599, -0.0346168466, 0.00878402404, 0.0195708796, -0.00490199262, 0.00736226095, 0.00894474518, -0.022735849, 0.0188785437, -0.00723862974, -0.00812877715, -0.0124497013, -0.0181243904, -0.00375530962, -0.0137354694, -0.0190639906, 0.0344190337, 0.0246645026, -0.00165048172, -0.014304175, 0.00864184834, 0.00556033058, -0.0159979276, 0.0207082909, 0.00734989811, -1.15482044e-05, -0.00387585023, -0.0279654656, 0.0137725594, -0.0175309591, -0.0128082326, 0.013327485, 0.0053594294, -0.0105457744, -0.00199665013, 0.0290534236, 0.0212522708, -0.00406438857, -0.0263335276, 0.00214346265, 0.0209308285, -0.00396548305, -0.0176175013, 0.00775170047, 0.0085182162, 0.00117604551, -0.0182232969, -0.0103665087, -0.00842549279, -0.00259008189, -0.0136983804, -0.00638557179, -0.0157135744, 0.0344190337, -0.00116986386, -0.00275234831, -0.0311798863, 0.0171847902, -0.0173949637, 0.0155404909, -0.00317424093, -0.00536561105, 0.0228718445, 0.00371822, 0.00715826917, 0.0123013435, -0.000607340189, -0.00856148731, 0.0149841486, 0.0124806091, 0.00867275614, -0.000496458088, -0.00091719185, 0.00189465412, 0.0127711436, -0.00647211354, 0.010063611, 0.017098248, -0.00860475842, 0.0083760405, 0.0102490587, -0.000848421769, -0.000176368194, 0.011930448, 0.00593122561, -0.0308831707, -0.0113926511, 0.0118871769, 0.00432092417, 0.0190639906, 0.00498544378, -0.0104839588, -0.0129565904, 0.006762648, 0.00620939676, -0.0141805429, 0.0290781502, 0.0217962489, -0.0135994749, 0.0129689537, 0.0104283243, -0.0134511171, -0.00618467, -0.000128750704, -0.00652774796, 0.00985343754, 0.0295232236, -0.000341339095, 0.00212491793, 0.000764970435, 0.0192494392, 0.00623412291, -0.0101625165, 0.000317965, 0.000709336251, -0.0106570432, 0.0249241292, 0.0100945197, -0.0171600655, -0.0110897534, 0.00613830844, 0.00550469663, 0.0197068751, 0.00308615365, -0.0139703695, -0.0447546355, -0.0150336009, -0.0248252228, 0.00595595175, -0.00584777398, -0.015664123, -0.00535324775, 0.0217591599, 0.0259379074, 0.0151077798, -0.00865421165, 0.0208195597, -0.000742562232, 0.00571177946, -0.0056777806, 0.0129565904, -0.0171353389, -0.0104592321, -0.0195461549, 0.00935273, 0.0103356009, -0.0231809225, 0.0245532338, 0.00812259503, -0.00666374248, 0.0172589701, -0.00243708771, -0.000392916641, 0.00482472265, -0.00383257936, -0.0117079113, 0.00426219916, -0.000565228169, 0.00180656661, -0.0358284339, 0.00262717134, 0.00337205152, 0.00657720072, -0.0249364916, 0.00206155679, -0.0325151086, -0.0346662961, 0.000537411077, -0.0147368852, 0.00281570945, -0.0223031379, -0.0100388853, -0.00354513573]
|
20 Jan, 2021
|
Fabric.js Polyline borderColor Property
20 Jan, 2021
In this article, we are going to see how to set the border color of the canvas Polyline using borderColor property in FabricJS. The canvas Polyline means Polyline is movable and can be stretched according to requirement. Further, the Polyline can be customized when it comes to initial stroke color, height, width, fill color, or stroke width.
To make it possible, we are going to use a JavaScript library called FabricJS. After importing the library, we will create a canvas block in the body tag which will contain the Polyline. After this, we will initialize instances of Canvas and Polyline provided by FabricJS and change the border color of the canvas Polyline using borderColor property and render the Polyline on the Canvas as given in the example below.
Syntax:
var polyline = new fabric.Polyline(Points, {
borderColor: string
});
Parameters: This property accepts a single parameter as mentioned above and described below:
borderColor: It specifies the border color to be set.
The below example illustrates the Polyline borderColor property in Fabric.js:
Example:
HTML
<!DOCTYPE html>
<html>
<head>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;width: 600px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Polyline borderColor Property
</b>
</div>
<canvas id="canvas"
width="600"
height="200"
style="border:1px solid #000000;">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a polyline instance
var polyline = new fabric.Polyline([
{ x: 200,
y: 10 },
{x: 250,
y: 50
}, {
x: 250,
y: 180
}, {
x: 150,
y: 180
}, {
x: 150,
y: 50
}, {
x: 200,
y: 10 }], {
borderColor: 'green'
});
// Render the polyline in canvas
canvas.add(polyline);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Fabric.js line borderColor Property/Fabric.js Polyline borderColor Property
|
https://www.geeksforgeeks.org/fabric-js-polyline-bordercolor-property/?ref=next_article
|
CSS
|
Fabric.js Polyline borderColor Property
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, Fabric.js line borderColor Property, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, Fabric.js Polyline borderColor Property, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.00577460509, 0.00114761526, -0.0136009147, 0.0529425032, 0.0774412, 0.020943217, -0.0270070098, 0.0146358991, -0.0261790212, -0.0407662168, -0.0226478968, -0.00630731788, 0.00973494351, -0.0581052527, -0.00753103476, -0.0035433, -0.0225991923, -0.0209310409, 0.00736665493, 0.00675175246, 0.0128094563, -0.0137713831, -0.022562664, -0.011281332, -0.0275671184, 0.0306842476, 0.0303189605, 0.0376003794, -0.0131747443, 0.0122067295, 0.00219782023, 0.0212476254, 0.00146419881, -0.0372350924, -0.00253114616, -0.0268121883, 0.00718401046, 0.0168154556, -0.0378682576, -0.00140864449, -0.0256919693, 0.00414298242, 0.0148063675, 0.0129190423, 0.00522971619, -0.00782935414, -0.0118657937, 0.00121762895, 0.00665434217, -0.0693561435, -0.00941836, -0.00322367251, -0.00828596484, -0.0211015083, 0.0405226909, 0.00538192, -0.00276097353, 0.0435424112, -0.0208458062, 0.0138931461, -0.0192263611, -0.0526989773, -0.011524858, -0.0124076381, -0.0107577518, 0.0345806591, -0.0214789733, 0.0235732961, -0.0200178195, 0.00374420895, -0.0113726538, 0.00405166, 0.0340205505, 0.00622512773, 0.00828596484, 0.0120484382, 0.0393781178, -0.0046087252, -0.0109891007, 0.0310738906, -0.0124928728, -0.0256189127, -0.0328272767, 0.0158900581, -0.0207240433, -0.0345806591, 0.0583974831, -0.0417646728, 0.0236463528, -0.0129677476, 0.00258898339, 0.0102098184, 0.0411071517, -0.0402791649, -0.0317557603, -0.00105705415, -0.0057867812, -0.0173390359, -0.022562664, -0.00116359664, 0.0158048235, 0.0458559059, 0.0168763362, 0.0344345458, 0.0335335, -0.0606866255, 0.0313904732, -0.00424343674, -0.012030174, 0.00581417792, 0.00145658862, -0.0129921008, -0.0309034213, 0.0580565445, -0.0273479447, 0.014745486, -0.0125902826, -0.0191289503, 0.0463186, 0.00219173194, 0.0213693865, -0.0254971497, -0.00960100349, 0.00633167, -0.0124259032, 0.00310495379, -0.0225504879, -0.0269826557, 0.00325715728, 0.000464221026, -0.0341910198, -0.0332899727, 0.0129555715, -0.0238168221, 0.0334117375, 0.0133695658, -0.0217833817, 0.00902263, -0.00266660727, 0.00295731612, -0.0189828351, -0.0487295091, 0.00801199861, 0.0237072352, -0.000738187518, 0.0130042769, 0.0199569371, -0.000322481414, -0.0114883287, 0.0213085059, -0.0366262794, -3.84789746e-05, 0.0439564027, -0.00264225481, 0.0362609886, -0.0221486706, -0.0191776548, 0.0119692925, 0.0348728932, -0.0465621278, 0.0119449394, 0.0109647484, 0.0100028217, 0.0424465425, 0.000658280624, -0.0108916909, 0.0116953254, 0.00379595812, -0.062732242, 0.027396651, 0.00317192334, 0.00470309146, 0.0395485871, 0.00434693508, -0.0513352342, -0.019579472, 0.00188884686, -0.0184957832, 0.00717792241, 0.00489182398, -0.0316583514, 0.00767715042, 0.0233906507, 0.0571311489, -0.0139174983, 0.0172172729, 0.0302702542, 0.0109464843, -0.0126268119, -0.0332899727, -0.0203831084, 0.0359444059, 0.0509455949, -0.0257650279, 0.0332656205, 0.0201761108, -0.0115552982, 0.000751885877, -0.00687960349, 0.00677610468, 0.0526015684, -0.0068552508, -0.0421299599, -0.0208701603, 0.0116709732, -0.0206631627, -0.0125781065, -0.0265199579, 0.0643882155, -0.0363583975, -0.00238198647, 0.0277862921, 0.0113483015, -0.000538039778, -0.0145993708, -0.000345311943, 0.00580809, 0.0071657463, -0.0124624316, -0.0181548465, 0.00996629242, 0.0413506776, -0.0546958894, 0.00864516478, -0.0650700852, -0.0135887386, 0.0342640765, 0.0135887386, -0.0190802459, -0.0351651236, 0.0104289912, -0.0300023761, -0.00615815818, 8.4710824e-05, 0.00663607754, 0.0150985988, -0.033606559, -0.00421604, -0.00915657, -0.0152934194, -0.00263160048, -0.0188123658, -0.00773194339, -0.0390858874, 0.0165962819, -0.00961926859, -0.0226722509, -0.00505011575, 0.0149890119, 0.0131990975, -0.0165354013, -0.00522667216, -0.0034641542, 0.00325411325, -0.0243891068, 0.011530946, -0.0273722988, -0.0249370392, 0.0230375398, -0.00363766635, 0.0229035988, 0.0331925638, -0.0205292236, 0.0041155857, 2.19387239e-05, -0.0192628894, 0.00567110674, 0.0021689015, -0.0202369932, 0.00593898492, 0.0110073658, -0.0358957, 0.0451009758, 0.0018660163, -0.0216494426, 0.0470978878, -0.0248761587, -0.0410097428, 0.0275914706, 0.00260572578, -0.015366477, -0.00219173194, -0.0100515271, 0.0192628894, 0.0053301705, -0.0324376337, -0.0152203618, 0.0110743353, -0.0138200885, -0.0421299599, -0.0212476254, -0.00300297723, 0.0138566168, -0.0538679026, 0.0120423501, 0.0187027808, 0.0039177211, -0.022440901, -0.01053249, 0.0223800186, -0.0442973413, -0.0481450483, -0.036553219, -0.0174242705, 0.00815811381, -0.0145384893, 0.0417646728, 0.00398773467, 0.0482424572, 0.00426170137, -0.00672131171, 0.00304255029, -0.0228548944, -0.0363827534, -0.0153177716, -0.0141853765, 0.0459533148, -0.0169859231, -0.00445652194, -0.0139296744, -0.0298319086, 0.0112995962, 0.0106664291, 0.050702069, 0.0336309113, -0.0551342368, -0.00103726762, -0.00202735211, -0.0128338085, 0.00985670555, -0.0241212286, -0.00178230426, 0.00617946684, 0.0393050611, -0.00352807972, -0.00106390321, -0.0093940068, -0.0202613454, -0.0185079593, 0.019469887, 0.0061490261, 0.00668478291, 0.0234758854, -0.0217712056, 0.0332899727, -0.0500689, -0.00127394428, 0.0227940138, 0.0455149673, 0.0363340452, 0.000785370648, 0.050702069, -0.019457709, -0.00701354258, 0.0341179632, -0.0221121404, 0.00669695903, -0.0407662168, -0.0266417209, -0.000494661741, 0.00765888579, -0.00151062082, 0.0164014623, 0.0170102753, 0.0343127809, -0.00206844718, -0.0144045502, 0.00294514, 0.0212841537, 0.0102585237, -0.0166936927, -0.0169615708, -0.0466108359, -0.00554021169, -0.0405713953, -0.00552803511, -0.00143680209, 0.0142584341, -0.0415698513, 0.00896174833, -0.0221730229, 0.0576182, 0.00608510058, -0.0321210511, 0.0191898309, 0.0513839386, -0.0073849191, 0.0351407714, 0.014246258, -0.0199812911, 0.00973494351, 0.00466960669, 0.0470248275, -0.0279567596, 0.000751505315, -0.0133573888, -0.00598160224, -0.00270922435, 0.01932377, -0.0508481823, 0.00537278736, -0.0427144207, 0.00445347792, -0.0124441674, 0.0393050611, 0.00232414925, -0.00459654909, -0.0248761587, -0.013016453, -0.0276888814, -0.0193846524, 0.0149768358, 0.0438102894, 0.00374725298, 0.0489486828, 0.0543062501, 0.0188367199, 0.0205657519, -0.0166693404, 0.0161701124, 0.0675053447, -0.000668934896, -0.0199325848, -0.00433780299, -0.0178626161, -0.0185444877, -0.00745797716, 0.0092478916, -0.00244591199, 0.00169859233, -0.126633406, -0.0109830126, -0.00192385365, 0.000148779029, -0.0232932419, 0.00577460509, 0.0164501667, 0.0155734736, 0.0365045145, 0.0168276317, -0.0147089576, -0.0170468055, 0.0468787141, -0.0310251843, 0.0178382639, -0.0144410785, -0.0394511782, -0.0290282723, 0.0139174983, -0.0096314447, -0.0131747443, -0.00305929268, -0.0430797115, -0.0143193156, -0.0176799726, -0.0110865114, 0.0104411682, 0.0147211337, 0.0370159186, -0.0178017356, -0.0256919693, -0.00762844505, -0.033216916, 0.0190315396, 0.00417037914, 0.00841990393, 0.0123345805, -0.0016331448, 0.0107212225, -0.00192689779, 0.0197864696, 0.0169737469, 0.0097045023, 0.0153299477, 0.0101184966, 0.0190315396, -0.0107638398, 0.0178747922, 0.0220512599, -0.0178869683, 0.0377464965, -0.0190315396, 0.00588419149, 0.0114335353, 0.00617946684, 0.00630731788, -0.00201517576, -0.0196525306, 0.00525102485, 0.0183861963, 0.0179843791, -0.00319018774, -0.0390371829, -0.0173025075, -0.00437433179, 0.0264956057, 0.0138687929, -0.0193846524, 0.0309521277, -0.00984452944, -0.00286599412, 0.024060348, 0.00463003386, 0.0173633881, 0.0260085538, 0.0185079593, 0.0047244, 0.0340205505, -0.00941836, -0.0213085059, -0.0156708844, 0.0241577569, 0.021198919, 0.0265199579, 0.0136252679, -0.00899219, 0.0237437636, 0.00700745452, -0.0269096, -0.0103924628, 0.00747624133, -0.0253510345, -0.00358287315, -0.022185199, -0.0145750176, 0.0458802581, 0.00139951217, -0.0376003794, -0.0121580251, -0.0141610242, 0.010288964, 0.0100880554, 0.000875931815, 0.0182887856, -2.65642866e-05, -0.00940009486, 0.0160848778, 0.00166510756, 0.0227818377, 0.0143558448, -0.0481450483, 0.0110743353, -0.00533321453, 0.0154030053, -0.0303189605, 0.0330464467, 0.00476701697, 0.0229523052, -0.0232201833, 0.00487051578, -0.0477554053, 0.0357739367, 0.0056619742, -0.0162918754, 0.027153125, 0.00309886551, 0.0227818377, -0.0414237343, -0.00888869073, 0.000219173206, 0.0133695658, 0.00536365528, 0.0228914227, 0.00142538687, -0.0276401769, -0.0336552635, -0.00470309146, -0.015817, -0.0278593488, -0.0154638868, 0.00532408245, -0.0244499892, 0.00960709248, 0.0381117836, 0.0222217273, -0.0301971976, 0.00157835148, 0.00652040262, -0.00361635792, 0.0253023282, -0.0355791152, -0.0477067, 0.00654475531, 0.0270070098, -0.0224165488, 0.000138029645, -0.029125683, 0.000476397312, -0.0431771204, -0.0312930644, -0.00827378873, 0.0219294969, -0.00820073113, -0.00686133886, -0.0464160144, 0.017229449, 0.0258867908, -0.0217955578, -0.00203952845, -0.00117120682, 0.015122951, 0.0375760272, -0.00966188498, -0.0204196367, 0.00921745, -0.0401817523, 0.0291013308, 0.0138079114, -0.00934530143, -0.021198919, -0.0169250425, 0.00491008861, 0.00863298867, -0.0147820152, -0.00732403807, -0.0131503921, 0.0336309113, 0.0294909719, 0.0128825139, -0.0394268222, -0.015244714, -0.0107638398, 0.0507507734, -0.012517225, 0.0204561651, -0.0225383118, -0.0167545732, -0.0237072352, 0.0239507612, -0.0217955578, -0.0207727496, 0.00234545767, -0.023415003, 0.0136983255, -0.00835293438, 0.0153055955, -0.0136009147, 0.0243525784, -0.0287603941, -0.00284620747, -0.0281515811, -0.0195307676, -0.0144897839, 0.0376247317, 0.00908351131, 0.0391102396, -0.048364222, 0.00931486115, 0.0185444877, 0.0253997389, -0.0133573888, 0.0193359479, -0.0293448567, 0.0153055955, -0.0205901042, -0.00537887588, -0.00270009204, 0.0189341288, -0.026398195, -0.00481876638, 0.0206631627, -0.0146967806, -0.000971059082, -0.00622512773, -0.0126268119, 0.0168398079, 0.0320236385, 0.0358713493, 0.010654253, -0.0182522573, -0.0204196367, 0.0174973272, -0.0179113206, 0.0255702063, 0.0257893801, 0.0083955517, -0.0308060106, 0.0487051569, 0.0397190563, 0.0103802867, 0.00802417472, -0.0277375858, -0.0176312663, -0.00941836, -0.00910786446, -0.00684307469, -0.0128338085, -0.0072022751, 0.00751885865, -0.00983844139, 0.0207727496, -0.0171442144, -0.0215763841, 0.00710486481, 0.0223069619, 0.0257163234, 0.0175703857, -0.0279567596, -0.0143680209, 0.000910177594, -0.0159996431, -0.00230588485, -0.0336309113, 0.00132188841, -0.012145848, 0.0265686624, -0.0142827872, 0.0198473521, 0.00537278736, -0.0267634839, 0.0109403953, 0.0188610721, 0.00872431137, 0.017472975, -0.00627078908, -0.0072388039, 0.024413459, -0.0175947379, 0.0325350426, 0.0118414415, 0.0114335353, -0.0131016867, 0.025156213, -0.0187149569, -0.0171198621, -0.00701354258, 0.00218107784, -0.0302946065, 0.00251592579, -0.0105081378, 0.00559196062, 0.0014908344, -0.00840164, -0.0154273584, -0.0121214958, 0.0323889293, -0.00301363156, -0.00299384515, -0.0058020018, -0.0283220485, 0.000764823169, -0.0199325848, -0.0240847, -0.00524493633, -0.0189584829, 0.0205779281, 0.0103802867, -0.00480659027, 0.0148428967, 0.00966797397, -0.001347763, -0.00628905324, 0.0399625823, -0.00674566394, 0.0211745668, 0.00450827088, -0.00737883104, -0.023682883, -0.0105568422, 0.0460263714, -0.0289065111, 0.0191898309, -0.0179234967, 0.045977667, 0.0267634839, 0.0160239972, -0.015987467, -0.00858428422, 0.0156708844, -0.00522971619, -0.00707442407, 0.0128459847, -0.0027137904, 0.00740927178, -0.0147089576, 0.00639255159, 0.0148794251, -0.0254484434, -0.000840163964, 0.00263312249, 0.00196799263, 0.0230497159, 0.034069255, 0.00613380549, 0.0126268119, 0.0175825618, 0.00989323482, -0.00843208, -0.00778673682, 0.0220512599, 0.0249248631, 0.0296614394, 0.00426778942, -0.00470918, 0.0241577569, -0.00257985131, -0.0289552156, 0.0108064562, 0.00531799439, -0.0460994318, -0.0327542163, -0.0476579964, 0.0151960086, 0.0162066408, 0.0386475399, -0.0404739864, -0.0221486706, -0.002231305, -0.019348124, -0.00272748875, -0.0102524357, -0.0132721551, -0.0458315536, 0.0128338085, 0.0181913767, -0.00626470055, -0.00682481, 0.00148702925, -0.0280785225, 0.0196647067, -0.0271287728, -0.0188732482, 0.0347754806, -0.0192872416, -0.0575694963, 0.0318775252, 0.0186175462, 0.00385683961, -0.00412167376, 0.0258137323, -0.0122493468, -0.00920527428, -0.0422273688, 0.0534782633, -0.0091443928, 0.0178382639, 0.0399869345, 0.0416185558, 0.00290556694, 0.00204409449, -0.0213693865, -0.00410949765, -0.0211136844, -0.0012488307, 0.0179234967, 0.0468787141, -0.00518405531, 0.0312930644, 0.0262520798, 0.0252049193, -0.00845643319, 0.00764670968, -0.0195185915, 0.0277862921, 0.00689786766, 0.00577156106, 0.00462090177, -0.000882019929, -0.0108125443, -0.00859646, -0.00695266109, 0.00683698617, -0.00921745, 0.0056619742, 0.0193603, -0.0253023282, 0.0221730229, 0.0169493947, -0.0279324073, 0.0373325, -0.0178626161, -0.00936356653, 0.00644125696, 0.00671522319, 0.00744580058, -0.022063436, -0.00545193348, -0.00367419515, 0.0106907822, 0.0107333986, 0.0274453554, -0.0119632045, 0.00045775238, -0.0143193156, -0.0263251364, 0.0120910555, -0.0225991923, 0.000610717, -0.0129677476, -0.0294422675, -0.00879128091, 0.0145263132, 0.00708051212, -0.0157074127, 0.0164501667, 0.0301484913, -0.000829509692, -0.00714139361, -0.0123224044, 0.0111960974, 0.00835293438, 0.000907894573, -0.00828596484, 0.00310951984, 0.0257650279, -0.0448087454, 0.0278593488, 0.0380143747, 0.00308364513, 0.0115431221, 0.0131869214, -0.0342884287, 0.0119388513, -0.00244439, 0.0338013768, 0.0274697077, -0.00597246969, 0.0364558101, -0.00680045737, 0.00879128091, -0.0112204505, 0.00423734868, -0.0150985988, 0.0175947379, -0.0155247683, 0.00217194553, -0.0271774773, -0.0016514092, -0.00801808666, 0.0265930146, 0.0220999643, 0.0351651236, 0.0178260878, 0.00667869439, -0.00244134595, -0.0159022342, -0.0297832023, 0.006818722, -0.0230375398, -0.00451131491, 0.0110134538, 0.00156921928, -0.0101002315, -0.0192507133, 0.00221912866, -0.0690639094, 0.00659346068, 0.00883998629, 0.00139038, 0.0120362621, 0.0135643864, 0.0288091, 0.0146358991, -0.00547933, 0.0102585237, 0.00224500336, -0.00226631179, -0.0102341706, -0.00940618291, 0.0153543008, 0.0571311489, -0.0124928728, 0.00056239235, 0.00146495982, 0.0206144582, -0.00511099724, -0.014136672, -0.00317801139, -0.00788414758, -0.00921745, 0.0213450342, 0.01178056, 0.00670304708, 0.0430066548, 0.0143314926, 0.00594507298, 0.00211715233, -0.0177895576, 0.0234880615, -0.00828596484, 0.0124624316, 0.0201761108, -0.0128216324, 0.021564208, 0.0291500352, 0.00740318373, 0.032608103, 0.00380204618, 0.00113087287, 0.0136009147, -0.0124928728, -0.0126268119, -0.0161701124, -0.00466960669, -0.000214797343, 0.0033210828, 0.00276249554, 0.0247787479, -0.0229888335, -0.0173999164, 0.00236981036, -0.00100226083, -0.00190102309, -0.0114517994, 0.0295883827, 0.0409366824, -0.0159752909, 0.00705007138, 0.00316583505, 0.0213572104, -0.0499714911, 0.00703180674, 0.0105690192, -0.00460263714, -0.00165597536, 0.000942901359, -0.00569241494, 0.0188854244, 0.00301515358, 0.0245595742, 0.0244378131, 0.000359961559, 0.0317314081, -0.0204318129, -7.24394049e-05, -0.000251326215, -0.0170346275, 0.0301728435, 0.0334847942, -0.0218442623, -0.00965579692, 0.00089952338, 0.0067274, 0.00227696612, 0.0124441674, -0.00998455659, -0.00419168733, -0.00518405531, -0.0143680209, -0.0272261817, -0.00450522685, 0.000337892, -0.00528146559, -0.0104837846, -0.0180817898, 0.000811245234, -0.00214607106, 0.00642908085, -0.00557065243, 0.0124502555, -0.0101306727, -0.00627078908, 0.00713530555, -0.018227905, -0.00308060111, -0.00179600262, -0.0236950591, -0.00438346388, -0.0059876903, -0.00153725652, 0.000213846084, -0.00809114426, 0.000562011846, -0.0117075015, -0.0412532687, 0.0118292645, -0.0143436687, 0.00471526803, -0.0124319913, 0.0218442623, -0.0132112736, 0.0131869214, -0.00645343307, -0.00273053278, 0.0284438115, -0.0100880554, -0.00682481, 0.0167180449, -0.0259842016, -0.00933312532, 0.027518414, -0.00584157463, 0.012030174, -0.000775477383, -0.00143680209, -0.0280541703, 0.00157226331, -0.0194333568, 0.00467569521, -0.03570088, -0.0165475775, 0.0277132336, 0.00950359367, -0.00547628617, -0.00871822331, -0.0489730351, -0.0088338973, 0.0466108359, -0.0216981471, -0.0287360419, 0.00452044746, -0.00737274298, -0.0339474939, -0.0144776078, 0.027396651, 0.00882780924, -0.01932377, 0.0248639826, 0.00698310183, -0.0015890057, 0.0413506776, 0.00147485302, 0.032608103, 5.84557019e-05, -0.00268487167, 0.0274697077, -0.020943217, -0.034848541, 0.011890146, 0.0204196367, -0.0289795678, 0.0284438115, -0.0232932419, -0.0237194113, -0.0145871947, 0.0224530771, 0.0119449394, 0.0124806967, -0.0192994177, 0.031244358, 0.00826770067, -0.00665434217, 0.0168398079, 0.00947315246, -0.0243160501, 0.00194059603, -0.0106725171, 0.00297862478, 0.00740318373, 0.00506838039, -0.00994802825, 0.0160239972, -0.0169859231, -0.0185810179, 0.0187393092, -0.0343614891, -0.0170589816, -0.0250588022, -0.0113361254, -0.0208823364, 0.00539714, 0.0207483973, 0.025911143, -0.00214150478, -0.00326020131, 0.0321941078, -0.0494113825, -0.0270313621, -0.0101063196, -0.000886586, 0.0067821932, 0.0434693508, 0.00319932, -0.00857210718, 0.0273235925, 0.00364071038, 0.0198473521, 0.0257163234, 0.0403278694, 0.0130286291, -0.0139540276, -0.0286142789, -0.0144289024, -0.0223313142, 0.00643516891, 0.0212232713, -0.019202007, 0.0120058209, 0.00235154573, -0.0184105486, 0.0195429437, -0.0129433954, 0.0144897839, -0.00475788489, -0.00675784051, -0.0203100499, 0.0113665657, -0.0125050489, 0.00810332, -0.0324619859, 0.0223556664, 0.00245808833, -0.0237802919, -0.000507979537, 0.011037806, 0.00835293438, -0.0068552508, -0.0226113684, 0.0183374919, 0.0111960974, 0.00784761831, -0.0123650217, -0.0369185098, 0.00299384515, 0.00266356324, 0.0254484434, 0.00661172485, -0.0207849257, 0.00212019635, -0.0160727017, 0.00292839762, -0.00531190634, -0.0043895524, 0.0116466209, -0.00952794589, 0.026032906, -0.0166936927, 0.00590854418, -0.0169493947, 0.00643516891, 0.00710486481, -0.0311225951, -0.000780804548, -0.0122615229, 0.0157195888, 0.0300267283, 0.0079815574, 0.017229449, 0.0166449863, 0.00494357338, 0.0085416669, -0.0246813372, 0.017728677, 0.00114609324, -0.0129190423, -0.00121382379, -0.000576851715, 0.015987467, -0.00667260634, -0.0138079114, 0.00694657303, 0.0211867429, 0.0193968285, -0.0127363987, -0.0169493947, 0.023305418, -0.000847013085, -0.00989323482, -0.00956447516, 0.0255702063, 0.00358591718, 0.00586897135, -0.00636819936, 0.0119388513, -0.00528450962, 0.014136672, -0.00915048085, 0.0175460335, -0.0118657937, 0.00158443965, 0.00294361799, 0.00587810343, 0.0184349, 0.00722662779, -0.00396947, 0.0135400333, 0.00964970887, 0.0172659773, -0.0222339034, -0.00546410959, 0.00511099724, 0.00389336841, 0.00998455659, 0.00559500465, -0.0166571643, 0.014246258, 0.00894957222, -0.0258137323, 0.0190802459, -0.0387693048, 0.010782104, -0.0268365405, -0.0272992402, -0.0189584829, 0.000751505315, 0.0199204087, 0.00804852694, -0.0108125443, 0.0248031, 0.00903480686, 0.00594202895, -0.00840772782, -0.00167728378, -0.0253023282, -0.0266417209, -0.00789632369, -0.00557369646, 0.0172416251, 0.0339962, -0.00590854418, 0.0213085059, -0.00483094249, -0.000938335259, -0.00306081469, 0.0261790212, 0.00182644336, 0.0235124137, 0.00448696269, -0.00496488204, -0.0062586125, 0.0305624865, 0.0172172729, -0.0194333568, 0.00862081256, 0.0120362621, 0.0122858761, 0.00119708141, -0.0122615229, 0.0109403953, 0.00892522, 0.00243525789, -0.0205170475, 0.00427996553, -0.00980800111, 0.0126146358, 0.00127546629, 0.00658128411, -0.0159022342, -0.00315974699, 0.0250588022, -0.0183374919, 0.0024109052, -0.00574720837, -0.0058020018, -0.0163649321, 0.0125537543, -0.00110119313, 0.00275336346, 0.0144897839, 0.0233419463, 0.0227453075, -0.00879128091, -7.43895143e-05, -0.0220390838, -0.00294666202, -0.0036072256, -0.00147789705, 0.00010863533, 0.00568023883, 0.00388119207, 0.00905307103, -0.02280619, 0.00252353586, -0.0221364927, -0.0203465782, 0.00993585214, -0.00844425615, 0.011908411, 0.0106177237, -0.015122951, -0.0265199579, -0.0378195532, 0.0145628415, -0.0170833338, -0.00466960669, -0.0169737469, -0.0122797871, -0.00832249317, 0.0417646728, 0.0417403206, 0.0141853765, -0.00449609477, -0.0167180449, 0.0188610721, -0.00203648442, -0.0140757905, 0.00121686794, -0.0155247683, 0.00672131171, -0.00427996553, -0.0136861494, -0.00329673034, 0.0107212225, -0.0213693865, 0.0260816105, -0.0141975535, -0.00338196428, 0.00887042657, -0.0013919021, 0.019579472, 0.00663607754, 0.0147941913, -0.000292611454, -0.00163771084, 0.00916265789, 0.00862081256, 0.0211258624, 0.0146115469, 0.00140331732, -0.00743971253, -0.0165841058, -0.0376977921, -0.00599377835, -0.00762844505, 0.0180574376, 0.0185688417, -0.0454662628, -0.00669087097, 0.00284925173, 0.0218929686, -0.00936356653, -0.0164623428, -0.0325106904, -0.00557369646, -0.00133786979, 0.00955229905, 0.0184349, -7.35333742e-05, -0.0265199579, -0.0111230398, -0.00226022373, -0.00397251453, 0.00598464627, 0.00772585534, 0.0094122719, 0.00106162019, -0.00152203615, 0.00701354258, 0.0121823773, -0.0162066408, 0.0303189605, 0.000536137202, 0.0121945534, -0.00263007847, -0.0228914227, 0.000746178208, -0.0188123658, -0.0184836071, 0.0269096, -0.0088521624, 0.0213815644, 0.00875475165, 0.00543062482, -0.00229218649, -0.00431953836, -0.0124198152, -0.00204257248, -0.00807288, 0.0108247213, -0.0131747443, -0.00244286796, -0.0123467576, 0.0248396304, 0.00669695903, 0.0144045502, 0.0253023282, -0.00750059402, 0.0103741987, 0.0104229031, -0.00483094249, -0.0212354474, -0.0149037782, 0.00898001343, -0.0102402586, 0.00713530555, 0.018970659, 0.0187393092, 0.0129190423, 0.00808505621, 0.013259979, 0.0167423971, 0.0214546211, -0.00777456071, 0.0188367199, -0.00388423633, 0.0263738427, 0.00530277379, 0.00441390462, 0.00713530555, 0.0145506654, -0.0180574376, -0.000180361283, 0.00503793964, -0.000233252038, -0.00410340959, -0.00582331046, 0.0336552635, 0.0081276726, -0.0184349, 0.0121093197, 0.0105994595, -0.00438650837, 0.0216372665, -0.0231227726, 0.0278837029, -0.0186784267, 0.0135887386, 0.0116283558, 0.010033262, 0.013637444, 0.00960709248, 0.068917796, -0.0215155035, 0.0177652054, 0.0119571155, -0.00779891293, 0.0097045023, 0.00265290891, -0.011652709, -0.0346780717, -0.0188610721, 0.00555847585, 0.00207301322, 0.0108977789, 0.0252536237, -0.00627687713, 0.00109434396, 0.00390554476, -0.0132356258, -0.0288334526, -0.00519014336, -0.013259979, -0.0301728435, 0.0260816105, -0.0112326266, -0.0230497159, -0.019202007, -0.0017762162, -0.00918092206, -0.00679436931, -0.0232080072, -0.0176312663, -0.00833467, -0.0164988711, -0.0023378476, 0.00158139551, 0.022940129, 0.0167180449, -0.000938335259, -0.00577460509, 0.00453871163, 0.00502880756, 0.000407905696, 0.0069648372, 0.00244591199, -0.0101245847, 0.00859037228, 0.028395107, 0.00669087097, 0.00773194339, 0.00383857521, -0.000635450066, 0.00288882456, 0.0115370341, -0.00432562688, -0.00808505621, -0.019092422, 0.0175095033, 0.000636591634, -0.00220695231, 0.00969841424, 0.0046604746, -0.00491617667, -0.016608458, -0.00835902244, -0.020943217, 0.0136861494, -0.0128338085, -0.0292961523, 0.0128459847, 0.0125415782, 0.0165354013, 0.0138322646, 0.00769541459, 0.00881563313, -0.0191411264, 0.0135035049, 0.0206631627, -0.0157682952, 0.00947315246, 0.0282002855, 0.0034824186, 0.0133452127, 0.0125294011, 0.0239629373, 0.00399991078, 0.024035994, 0.0274940599, 0.0192507133, 0.0136252679, 0.00265138689, 0.00988105871, 0.00851122569, -0.0022236947, 0.00185536209, -0.0363827534, -0.0179234967, 0.0217225, 0.00563457794, 0.00397555856, 0.00386901596, 0.010660341, 0.0125781065, -0.00539714, 0.0208701603, 0.00482789846, 0.0170468055, 0.00560718123, -0.000160955315, -0.0028309871, 0.0104350802, 0.0226113684, -0.00607596803, 0.00137668173, -0.00850513764, -0.0258137323, -0.00827378873, 0.00884607434, -0.000730577332, 0.0131869214, -0.00765888579, -0.0096314447, -0.0135643864, 0.00467569521, 0.0171807446, 0.0296614394, 0.00905307103, -0.000258936401, 0.0137105016, -0.00540018408, 0.00307451305, -0.0176799726, 0.000495042244, -0.000736665505, -0.0120971436, 0.0229035988, 0.0269826557, -0.0113056842, 0.00433475897, -0.0132356258, 0.00266508525, -0.00642299233, 0.0210162755, -0.0255458541, -0.00030136315, 0.0212354474, -0.0146724284, -0.0156343561, -0.0082189953, -0.032851629, 0.00472744415, 0.0187271331, 0.0117866481, 0.011031718, -0.00786588248, -0.015366477, 0.0148307197, -0.00550672691, 0.00174577546, 0.0345806591, 0.00698919, -0.000425028586, 0.00321758445, -0.00742753642, 0.00038298234, 0.0127120456, -0.000600823783, -0.0126268119, 0.01213976, 0.00988105871, 0.0257893801, 0.0215520319, 0.0163649321, 0.0102159064, 0.00395425, -0.00114837626, -0.00841990393, -0.0312930644, -0.0189584829, -0.00703789527, -0.00228762021, 0.0123771979, 0.0159752909, -0.0129433954, 0.0143558448, -0.0134548, -0.0118353525, 0.00132112741, -9.76956944e-05, 0.0062220837, -0.0460750796, -0.00342153735, -0.0116283558, -0.00217498955, 0.00230740686, 0.000620610255, -0.0067274, -0.00565588614, 0.0120423501, 0.0016514092, 0.0178382639, -0.00761018088, -0.0279567596, -0.0111169517, 0.0183983725, 0.000231920261, 0.0280298181, 0.0150864217, -0.0341666676, -0.00712921703, -0.00846252125, 0.00890086778, 0.0222217273, 0.00849905, 0.00585070672, -0.0258380845, 0.0144654317, -0.000637352641, 0.00225109141, -0.0233906507, 0.00613989355, 0.0232201833, 0.0370159186, 0.0317801163, -0.0309521277, -0.0109221311, 0.00286903814, -0.0134060942, 0.00950968172, 0.0197986457, -0.026398195, 0.00201517576, 0.0322671644, -0.00776847266, -0.0023378476, 0.011811, 0.00197864696, -3.52922143e-05, -0.00431040628, -0.0146602523, -0.00225565745, 0.0150133641, -0.0134182703, -0.00113011186, -0.00652649114, -0.00430736225, 0.0108490735, -0.015001188, 0.0116831493, 0.01450196, -0.0112082744, -0.0209553931, -0.0161944646, 0.0114761526, 0.00863907672, -0.00701354258, -0.00245047826, 0.0254240911, 0.00495574949, 0.0144167263, 0.0231593, 0.00859037228, -0.0118779698, 0.00482485443, -0.0141123189, 0.00563457794, 0.0217346754, 0.000283288973, 0.0187880136, -0.0368210971, 0.00339718466, 0.0091443928, -0.00733621418, 0.00435606763, 0.00865734182, -0.0172781534, -0.0108125443, -0.0129921008, 0.0124076381, 0.0167180449, -0.0115918275, 0.0320479944, 0.0035433, 0.0166693404, -0.0386718959, -0.019469887, 0.00676392857, 0.016851984, -0.0042251721, 0.00238807476, 0.00661172485, 0.00877301674, -0.00396642601, -0.00631949399, 0.00354634412, 0.0105142258, 0.0053301705, 0.0359687582, 0.0164014623, 0.000594735611, 0.00604552776, -0.00713530555, 0.0062586125, -0.00820073113, -0.00935747847, -0.015244714, 0.0017229449, 0.0309034213, -0.00256463094, 0.00888260268, -0.0135278571, -0.000325144967, -0.0184592549, 5.2843192e-05, 0.0122310827, 0.0112995962, -0.0137835592, 0.0159509387, -0.0111047756, 0.0181913767, 0.042641364, -0.00602117507, 0.010410727, -0.00556152, -0.0209066886, -0.00110804231, -0.0127729271, -0.00683698617, 0.0209919233, -0.0188123658, -0.0162918754, -1.84665787e-05, -0.0193846524, -0.00387510401, -0.00330586242, -0.0253510345, -0.0221486706, -0.00325106923, -0.00347937457, 0.00220390828, 0.00862081256, -0.00420082, -0.000413232803, 0.00383857521, -0.00184927392, -0.0147698382, -0.0107516637, -0.00608814461, -0.00691613229, 0.0175582096, -0.0114761526, -0.011159569, -0.00440781657, 0.00218107784, 0.0258867908, 0.0133939181, -0.00367115112, 0.00957665127, -0.0160727017, -0.00542758079, -0.00490400055, 0.0116466209, -0.00890695583, 0.00387206, 0.00419168733, -0.00198169099, -0.00874866359, 0.0189828351, -0.00443825731, -0.00150757679, -0.0186053701, 0.00423734868, -0.00609423267, 0.0122554349, 0.00690395571, 0.0221608467, -0.00712312898, 0.00219629821, -0.0129433954, -0.00694048498, 0.0125415782, 0.00131427823, -0.00327542168, -0.00111945753, -0.0121519361, 0.0102159064, 0.00106162019, 0.019457709, 0.0333143286, 0.000113296563, 0.00375942932, 0.0197864696, 0.0184349, 0.0033210828, 0.00600291044, 0.0140270852, 0.00733012613, 0.00361940195, -0.0443947501, 0.000463840523, -0.0027838042, -0.0114578884, 0.0152934194, 0.014246258, -0.0137835592, 0.000490095641, -0.00404861616, -0.0151594803, -0.0276401769, -0.000239530433, -0.00720836315, 0.0155369453, -0.000990084489, 0.00126405095, -0.0175460335, 0.00444434537, -0.0255702063, 0.0136009147, -0.0212841537, 0.00865734182, 0.0067274, -0.00235306798, -0.0034641542, -0.00630731788, 0.0197377652, -0.0281515811, -0.00627687713, -0.00365288672, -0.0141488481, -0.00497705815, 0.0170589816, -0.023622, -0.00521754, 0.00244895625, -0.0126755172, -0.000395348878, 0.0187514853, 0.000838641892, 0.0217103232, 0.00690395571, -0.00518709933, -0.00469091535, -0.0187027808, 0.0286629852, 2.98223949e-05, -0.0149281304, 9.33674e-05, -0.00231501693, -0.00372290029, 0.00705007138, -0.00870604627, 0.0194333568, -0.00268791593, -0.00282946508, 0.00295427209, -0.0189097766, -0.00255702063, 0.0170102753, -0.0113543896, 0.0160848778, -0.00815811381, -0.0144532556, 0.0175825618, -0.0131138638, 0.00360113755, -0.001812745, -0.0143558448, -0.00341544906, -0.00292839762, 0.0244256351, 0.0349946544, 0.00445043389, -0.02503445, -0.0228792466, -0.00400904333, -0.0201517586, -0.0150133641, -0.0216494426, 0.0034458898, -0.0104411682, -0.00784761831, 0.0153177716, -0.000571905053, 0.00256463094, 0.0167789254, 0.00851122569, 0.0152203618, -0.01388097, 0.0361392274, 0.0113604777, -0.0103072291, 0.0239020549, -0.000565816939, 0.00406992482, -0.00276553957, -0.0022130406, 0.0196768828, -0.00968623813, -0.0098688826, 0.0178139117, -0.00691613229, 0.0161701124, -0.000332184398, 0.00086147245, 0.0131016867, -0.00522058411, 0.0138931461, -0.0348728932, -0.0155491214, 0.0102341706, 0.0141123189, 0.0136983255, -0.0175582096, 0.0021506371, 0.0149768358, -0.00336978794, -0.00448696269, 0.00373203261, 0.0147576621, -0.0140636135, -0.00874257553, -0.0146724284, -0.00564675406, -0.000959643803, -0.00841381587, 0.0229523052, 0.0105751073, 0.0052053635, 0.0202856977, 0.0170589816, 0.0110499822, 0.00399382273, -0.0146724284, 0.0103863748, -0.0251075085, 0.00775020802, -0.0171685684, 0.00475179683, -0.0316583514, 0.00433171494, -0.0160848778, 0.000145164202, -0.0124441674, 0.0121032316, 0.00217346754, -0.00965579692, -0.0211380385, 0.00393294124, 0.0288091, 0.0111839212, -0.00829814095, -0.0157195888, -0.00242612557, 0.0208701603, 0.010654253, -0.0024291696, -0.0178017356, 0.00586897135, 0.0252049193, -0.000903328473, 0.00103194045, -0.00842599198, -0.0104411682, -0.00025988766, 0.0295396764, -0.00668478291, 0.014002732, -0.00489486801, 0.0154882399, -0.00061984919, 0.0041886433, 0.0132112736, -0.0216616187, -0.0259842016, 0.00960709248, 0.00173968729, -0.00549759436, 0.0061855549, 0.00749450596, -0.00228457619, 0.000519394816, -0.00112554571, -0.0124441674, -0.00175795169, 0.00118566619, -0.00540018408, -0.00519927545, 0.0165962819, -0.0100880554, 0.00670304708, -0.042276077, 0.0156587083, 0.00680654543, 0.0163771082, -0.00510795321, 0.0107455747, 0.0296370871, 0.0166449863, -0.0156465322, 0.00100454385, -0.0117196785, 0.0245717522, -0.0186175462, -0.0215155035, 0.0220877882, 0.0196038261, -0.00881563313, -0.0219660252, -0.0057502524, -0.011153481, 0.00980800111, -0.00179295859, -0.017972203, 0.0180209074, 0.00114837626, 0.0124563435, 0.00698919, -0.0154151823, -0.0155612975, 0.0314391777, 0.0261790212, 0.00120164757, 0.0280541703, 0.000404100603, -0.00927833188, -0.00142995291, -0.00957665127, 0.000941379345, 0.0109830126, 0.00496792607, -0.00530886184, 0.0216981471, -0.00133786979, 0.00823117141, -0.00416733511, -0.00736056687, 0.0216981471, -0.00277162786, -0.00134167483, -0.00495879352, 0.0135522094, -0.00847469736, 0.00740927178, -0.00368637149, -0.024291696, 0.0169859231, 0.00662998948, -0.0198473521, 0.00223282701, 0.00890695583, 0.0138566168, 0.00232110522, 0.0209188648, 0.0118049122, 0.0141488481, 0.0407662168, -0.0273479447, -0.00663607754, -0.003036462, -0.0278593488, -0.0107760159, 0.0163892843, -0.00161640241, -0.00775629608, -0.020322226, -0.0195429437, 0.00122904417, 0.00922962744, 0.0236585289, -0.00887651462, 0.00166206341, 0.00634993473, 0.000157245362, -0.00621295162, -0.00708051212, 0.0184592549, 0.00580504583, -0.0055676084, 0.00263768854, 0.0110743353, 0.0126755172, -0.00266356324, -0.0162797, 0.00907742325, -0.0137470299, 0.0144776078, -0.00957665127, -0.00295883813, 0.00286599412, -0.00680654543, 0.013759207, -0.0356034711, -0.0157439411, -0.00947924145, -0.00904698297, 0.0219173208, -0.0463186, -0.00473962072, 0.0167667493, 0.00378682581, 0.00899219, 0.0371133275, 0.00740927178, -0.0133939181, 0.00701963063, 0.0125415782, 0.0235124137, 0.0251805652, -0.00866951793, 0.00244439, 0.0146115469, -0.00754929939, 0.0108186333, 0.0140514374, 0.00377769372, 0.0128338085, 0.00431953836, 0.00633167, -0.0150498934, -0.00358591718, -0.00663607754, 0.0100576151, 0.0118840579, -0.0110743353, -0.0131869214, 0.0321454033, 0.0393294133, 0.0240847, 0.0100637032, -0.0201882869, 0.0103498455, 0.00599986641, -0.00810940843, -0.00677001663, 0.00964970887, 0.0137105016, 0.012024085, -0.00564371, -0.00133406464, -0.0136252679, -0.00895566, 0.0104046389, -0.0168154556, -0.0132478029, 0.0104472563, 0.00803635083, 0.00419777585, 0.0224287249, 0.0057137236, -0.0114517994, -0.00621295162, -0.0159022342, -0.0252779759, -0.0132721551, 0.00829205289, 0.00753103476, -0.0314391777, 0.00318105542, -0.00526320096, 0.00435606763, 0.00271226838, 0.0244986936, 0.00449000672, 0.0114700645, 0.00211106404, -0.023622, -1.38885798e-05, -0.0260816105, 0.0246204566, -0.00698310183, 0.0236341767, 0.000278722873, -0.00315061491, 0.0123102283, 0.012517225, -0.00657519605, 0.00747624133, -0.00965579692, 0.00616120221, -0.00342458137, 0.0196038261, -0.0189219527, 0.00998455659, -0.00121154077, -0.00122067297, -0.0102707, -0.0131747443, 0.0146358991, 0.00137439859, -0.0108247213, 0.0145750176, -0.0100149978, -0.0181670226, -0.0179478507, 0.0162066408, -0.00139646814, -0.0216616187, 0.00779282488, -0.00659954874, 0.00294057373, 0.0112691559, 0.0331682116, 0.0326811597, -0.0137105016, 0.0016240126, 0.0297101457, 0.0142340818, -0.0113970069, 0.0212110952, -0.0168763362, 0.0252536237, -0.00686742691, -0.00351590337, -0.00798764545, -0.0165354013, 0.00628905324, -0.000206806653, -0.000646484841, 0.0276158229, 0.0193724763, -0.0178869683, 0.00234393566, 0.0198108219, 0.001178056, -0.00205322681, 0.0163284037, 0.0249005109, -0.0191045981, 0.00606988, 0.00506533636, -0.00426778942, -0.00626470055, 0.00550977094, 0.0061855549, -0.0199934673, 0.00114076608, -0.0401330478, -0.00348546286, 0.00549455034, 0.0153908292, -0.0189584829, -0.00253114616, 0.00734230224, -0.00128916465, -0.0202856977, 0.00602117507, 0.0169859231, 0.0155734736, -0.00531190634, -0.0146358991, 0.0100210859, -0.00067159842, -0.012638988, -0.00603030715, -0.00361635792, -0.0045508882, -0.0157439411, 0.0104716085, 0.00823725946, -0.00247026468, -0.015865704, 0.0283220485, -0.00484920712, -0.00776847266, -0.0028644721, 0.0170711577, 0.0126755172, 0.0307816584, -0.00672131171, 0.00776238414, -0.0136009147, -0.019469887, -0.0197864696, 0.00730577344, 0.00687960349, -0.000971059082, -0.00734230224, -0.00104335579, 0.0238655265, -0.0106116356, -0.000994650647, -0.0142219057, 0.00319932, 0.00364679866, 0.0203587562, 0.0278837029, -0.00506838039, 0.00589332404, 0.0135522094, 0.0203100499, 0.0196525306, -0.0168763362, 0.00545802154, 0.0164258145, 0.00778673682, -0.00413080584, 0.0163162276, -0.0166449863, 0.00372594455, -0.014246258, 0.00179904676, 0.00960100349, 0.00481267832, -0.0142827872, 0.00944271218, 0.0120971436, -0.00413385034, -0.00922353938, -0.0129799237, 0.0160727017, 0.00891913194, -0.0425439551, -0.00499532279, 0.0356521755, -0.0130408052, 0.0370889753, -0.0107455747, -0.0112691559, -0.0163527559, 0.00802417472, -0.00329064205, 0.0105142258, 0.00505620381, 0.0105994595, 0.00747624133, -0.026154669, 0.0171929207, 0.00329673034, -0.0182400811, 0.00403035153, -0.00120164757, -0.00419777585, 0.032608103, -0.00499836681, -0.0183740202, 0.0109830126, -0.00703180674, 0.00217651157, -0.0278593488, 0.0171198621, -0.00568632688, -0.00818855409, 0.00454784418, 0.00392989721, 0.0327055119, 0.00011843344, 0.0146602523, 0.0174242705, 0.0104533443, 0.0030181976, -0.0280298181, 0.0264956057, 0.00152431917, 0.00176556187, 0.0113543896, 0.00536061125, -0.00901654176, 0.0161701124, -0.00067274, 0.00804852694, 0.00045775238, 0.00624034833, -0.00294361799, 0.0075249467, -0.0188367199, -0.00505620381, 0.0095583871, 0.0184470788, 0.00637428742, -0.00931486115, -0.00713530555, -0.0101550249, 0.00156313111, -0.0112204505, 0.00971059, -0.0180696137, 0.0197742935, -0.0122128176, -0.00667260634, 0.0144532556, 0.00593594089, 0.00639255159, -0.0176556185, -0.00568023883, -0.000399153971, -0.0214546211, 0.00347024249, -0.0125415782, -0.0339718461, 0.00935747847, 0.00737883104, 0.0257893801, -0.0260572582, -0.004587417, 0.0155978259, -0.00116435764, 0.0107760159, 0.0282976963, 0.00954621099, -0.0133086843, -0.00373507664, 0.0144167263, -0.0152812432, 0.0319018774, 0.00855993107, 0.0039907787, -0.00429214211, 0.00202583, -0.00999673363, 0.0186540745, 0.00376551738, -0.0083955517, 0.0257163234, -0.0109830126, 0.0040638363, -0.00567415077, 0.00837119855, -0.0374542661, -0.00437737582, 0.0227940138, 0.00742144836, -0.0160970539, 0.0156343561, 0.00515361456, 0.00202278607, 0.00935139, 0.0135887386, 0.00285381777, 0.00705615943, -0.00499532279, 0.00871213526, -0.027518414, -0.0198717043, -0.0226235446, 0.00519014336, -0.00136222236, -0.031366121, 0.0288334526, 0.0283464, -0.00668478291, 0.000217080407, -0.0102341706, 0.00534843514, 0.0109282192, -0.0125659304, -0.000952794624, 0.0176312663, 0.00333021511, -0.00978973601, -0.00945488829, 0.0049344413, 0.0113178603, 0.00395729393, -0.00975929573, 0.0138079114, -0.0134791518, 0.0202248152, 0.00605466, -0.00765888579, 0.00474266475, -0.00975320768, 0.0121762892, -0.0105264019, 0.00549455034, -0.00876692776, 0.00587810343, -0.00497705815, 0.0119571155, 0.0038477073, -0.00904698297, 0.0127972802, 0.00426778942, -0.00807896815, -0.010282876, 0.000355585682, -0.0136739723, 0.0081459377, -0.000638874655, -0.0149281304, 0.000138695541, 0.0100758793, 0.00930877309, 0.0339962, 0.0012762273, 0.00527233304, -0.0127485748, -0.00449000672, -0.0137957353, 0.00114761526, -0.000679589109, -0.0100758793, -0.00113087287, -0.00907742325, 0.00561326928, 0.0107577518, -0.0138079114, -0.0325594, 0.0262033734, -0.00687960349, 0.00504098367, 0.0165719297, -0.000561631343, 0.0157074127, 0.000506838, -0.00165901938, -0.0059511615, 0.00425561285, -0.0101732891, -0.0125294011, -0.0125537543, -0.00658737216, -0.0134304464, 0.0100819673, -0.0112995962, -0.000524722, 0.00705007138, 0.000257224106, -0.0173390359, -0.00266051921, 0.0112387147, 0.00294818403, -0.00517796678, -0.00865734182, 0.00025532156, -0.0216859709, 0.0162188169, 0.00542758079, -0.00577764912, 0.0260085538, -0.0128459847, -0.0123528456, -0.0239385851, -0.0355547629, -0.00626470055, -0.00850513764, -0.0108186333, 0.0102341706, 0.0362609886, -0.00193603, -0.0148672489, -5.31761361e-05, 0.00908351131, -0.00273357681, -0.0152081847, 0.0150864217, -0.00699527794, 0.000275869039, 0.0121336719, 0.0221730229, -0.00886433851, 0.0319992863, 0.0141732, 0.00571981166, 0.0229279529, 0.019457709, 0.0144167263, -0.00863298867, 0.00189189089, 0.0181913767, 0.0191045981, -0.0107577518, -0.0106055476, 0.00954621099, -0.0114761526, 0.00471526803, -0.00180513482, 0.0219660252, -0.00926006772, 0.0118170884, 0.0159144104, -0.00115142029, 0.0134548, 0.0220999643, -0.00103194045, -0.00918701, -0.00615815818, 0.00365593075, 0.00294057373, 0.0133452127, 0.00245047826, -0.00322976056, -0.0211380385, -0.00900436565, 0.00515665859, -0.0061490261, 0.00015933816, 0.00704398332, -0.00601204252, 0.00150985981, 0.0433475897, 0.000493520231, -0.0179600269, 0.00152431917, -0.0205048714, 0.00744580058, -0.00650213845, -0.0131747443, -0.0141123189, 0.0205779281, -0.0222217273, 0.00188732485, 0.00857210718, 0.000982474303, -0.0094488, -0.0221364927, 0.022684427, -0.00066132471, 0.00966797397, 0.0163405798, 0.000511404127, 0.0216250885, 0.00447174208, 0.0104411682, -0.00409427704, 0.0222339034, 0.0260572582, -0.0201274063, -0.0186784267, 0.00866343, 0.0118597057, 0.027153125, -0.0298806131, 0.0104655204, -0.0126633402, 0.0115796505, 0.00393598527, 0.0118231764, 0.0300023761, -0.00793894, 0.0108064562, -0.0160118192, -0.00192841981, 0.0191776548, 0.00616729027, 0.0170589816, -0.0212354474, 0.00542453676, -0.0262277275, 0.00460568117, -0.0267391317, 0.00488878, 0.011037806, -0.00820681918, 0.00935747847, -0.00196494861, 0.00821290724, 0.0104776965, -0.00022830542, -0.0189341288, 0.000324764464, 0.00567415077, 0.0126633402, -0.00243830192, -0.0115370341, -0.00232110522, -0.0279811118, -0.0137713831, -0.0068917796, 0.0050805565, -0.009795825, -0.009795825, -0.00677610468, 0.0118536176, -0.0015707413, -0.0030181976, -0.00240481715, -0.000928442052, 0.00703789527, -0.0234758854, -0.0034458898, -0.0332412682, 0.0115492102, 0.021564208, 0.0208823364, -0.00434084702, -0.00243221363, -0.00644125696, 0.00126329, 0.00344284577, -0.0117440308, 0.0130651584, -0.0172538012, -0.041886434, 0.00798764545, 0.00954621099, -0.0270313621, 0.0413993821, -0.00111717451, 0.0133452127, -0.0182522573, 0.00271683442, -0.0115674743, 0.00338196428, 0.00219934224, -2.30089063e-05, -0.0206266344, 0.00874866359, -0.00474875281, -0.0218564384, 0.0219782013, -0.00740318373, -0.00656910799, -0.00694657303, -0.00488878, 0.00485225115, -0.016730221, 0.00664216559, -0.00905307103, -0.0113056842, 0.000294323749, -0.0135887386, -0.00910177641, 0.00361026963, -0.00589941209, 0.00500445487, -0.0142949633, -0.000198625712, -0.0294909719, -0.0026407328, -0.00848078541, -0.000109301218, 0.00449609477, -0.00712921703, 0.00105248799, 0.00575634046, -0.0047335322, -0.00169859233, -0.0162675213, -0.0105081378, -0.0179478507, -0.00800591, -0.0298319086, 0.00405774824, -0.0173633881, -0.0072388039, 0.0089982776, 0.0167180449, 0.00762235699, -0.0105507541, -0.0224165488, 0.0017762162, 0.0251318607, -0.000701658661, -0.0139174983, 0.0141123189, 0.00624643639, 0.0253997389, -0.00528146559, -0.0254971497, -0.00461785775, -0.015122951, 0.00479136966, -0.0259598475, -0.0174364466, -0.0206631627, 0.0119753806, -0.0330464467, -0.0118718818, -0.0165110473, 0.00627078908, -0.000124045939, 0.0111900093, 0.0380630791, -0.019457709, -0.0230375398, 0.0016331448, -0.00999064557, 0.00218564388, 0.0255215019, -0.00103117945, 0.0171198621, -0.00417646719, 0.00624034833, -0.0130286291, -0.0062586125, 0.00438346388, -0.00899219, 0.00793894, -0.0116344439, 0.00722662779, -0.0326811597, -0.00354938838, -0.03570088, 0.00753103476, -0.00916265789, -0.00267878361, 0.00460568117, -0.0144897839, -0.00371072418, 0.000782326562, 0.0101732891, 0.0113787418, 0.00309125544, -0.00862081256, -0.00973494351, -0.0130529823, 0.0212598015, -0.0128094563, 0.0200178195, 0.00517492276, -0.0282976963, 0.00385683961, 0.0108186333, -0.00509273307, 0.0064960504, 0.00793894, -0.0173268598, 0.00782935414, 0.00399991078, -0.00989932287, -0.022063436, -0.0193359479, 0.00152812432, -0.0249370392, -0.0155125922, 0.0262277275, 0.00605466, -0.008054615, -0.0184105486, 0.00888260268, -0.00503185159, 0.00145126146, 0.0260085538, 0.010167201, 0.00688569155, 0.0119449394, -0.0259842016, 0.0118170884, -0.0101976423, -0.00344893383, -9.17026773e-05, 0.00910177641, -0.00804243889, 0.00255549862, 0.011902323, 0.00459350506, -0.00498619024, -0.0222582556, 0.00271074637, 0.0271044187, -0.00429518614, -0.0224287249, 0.00152584119, 0.00906524714, 0.00480050175, -0.0213937405, -0.0112387147, -0.017728677, -0.00528755365, -0.010909955, -0.00505011575, -0.0205292236, 0.0183131397, 0.0033910966, -0.0136617962, -0.0262520798, 0.0259842016, -0.0152934194, 0.00361940195, -0.00340631697, 0.00961926859, 0.0176434424, -0.00350981532, 0.0182644334, 0.0021947762, -0.00647169771, -0.00339718466, 0.0166328102, 0.000109681729, 0.00282185501, 0.00789632369, -0.00418255525, -0.0082189953, 0.0122310827, -0.00559196062, 0.00739100762, 0.0193968285, -0.0110621583, 0.0148063675, 0.00874866359, 0.0108856028, 0.00375638506, 0.000516731292, 0.0202126391, -0.0304163694, -0.00911395252, 0.0156708844, -1.78363609e-06, 0.0154151823, 0.00386292767, -0.015865704, -0.00175947382, -0.00615511416, 0.0137348538, -0.00945488829, 0.034458898, 0.0151473032, -0.00984452944, 0.00152584119, 0.00764062162, -0.00550063839, -0.00940009486, 0.00611554133, 0.00300449925, 0.00937574264, 0.0225017816, -0.00989323482, -0.00921745, -0.0123771979, 0.0316583514, -0.00487356, -0.00258746138, 0.00132797658, 0.0038294429, -0.0200908761, 0.0252049193, 0.00512621785, -0.00871822331, -0.00959491543, 0.0102950521, 0.0170102753, 0.0136739723, 0.00504098367, -0.0162066408, -0.0290282723, -0.0124806967, -0.0171442144, 0.0137226777, 0.00402426347, -0.00583548658, 0.0043895524, 0.0268852469, 0.0268608928, 0.00807288, -0.0104594324, 0.0173146836, 0.00719009852, 0.0140514374, -0.0122006414, 0.020443989, -0.0144654317, 0.0074884179, -0.0221608467, 0.0131625682, 0.00591767626, -0.00838337466, 0.0142340818, -0.00257376302, -0.00801199861, 0.0223800186, -0.010167201, 0.00871213526, 0.00494661741, 0.00247787475, -0.0149037782, -0.00252201385, 0.00385075132, 0.0107516637, -0.0283220485, -0.0147333099, 0.000689101871, 0.00725706806, -0.0286386311, 0.0070866, -0.0188854244, -0.0452957936, -0.00292078732, -0.00395120587, -0.000173226741, -0.0243038721, 0.00894348416, -0.00833467]
|
20 Jan, 2021
|
Fabric.js Textbox borderColor Property
20 Jan, 2021
In this article, we are going to see how to change the border color of the canvas Textbox using FabricJS. The canvas Textbox means rectangle is movable and can be stretched according to requirement. Further, the Textbox can be customized when it comes to initial stroke color, height, width, fill color, or stroke width.
Approach: To make it possible, we are going to use a JavaScript library called FabricJS. After importing the library, we will create a canvas block in the body tag which will contain the Textbox. After this, we will initialize instances of Canvas and Textbox provided by FabricJS and change the border color of the canvas Textbox using borderColor property and render the Textbox on the Canvas as given in the example below.
Syntax:
fabric.Textbox('text', {
borderColor: string
});
Parameters: This function accepts single parameter as mentioned above and described below:
borderColor: It specifies the border color.
Example: This example uses FabricJS to change the border color of the canvas Textbox as given below. Note that you have to click on the Textbox to see the border.
HTML
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Textbox borderColor Property
</title>
<!-- Adding the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<h1 style="color: green;">
GeeksforGeeks
</h1>
<h3>
Fabric.js | Textbox borderColor Property
</h3>
<canvas id="canvas" width="600" height="300"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Create a new Textbox instance
var text = new fabric.Textbox(
'A Computer Science Portal', {
width: 450,
borderColor: 'red'
});
// Render the Textbox in canvas
canvas.add(text);
canvas.centerObject(text);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Fabric.js Textbox borderColor Property
|
https://www.geeksforgeeks.org/fabric-js-textbox-bordercolor-property?ref=asr9
|
CSS
|
Fabric.js Textbox borderColor Property
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, Fabric.js Textbox borderColor Property, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0206044503, 0.0049072206, -0.0129174497, 0.0640348196, 0.0774811953, 0.000812482904, -0.0073343846, 0.00472503621, -0.0228611827, -0.0374711826, -0.00935016479, -0.00804549083, -0.00315883965, -0.0606497191, 0.0210981108, -0.0240130574, -0.0217563249, -0.0244949646, -0.00181743468, 0.0157501213, 0.00912096538, -0.0183829777, -0.015456276, -0.00255498709, -0.0373771526, 0.0257173628, 0.0195230972, 0.0316883028, 0.00996136386, 0.015033138, 0.00347325439, 0.00589160295, -0.00883887429, -0.0383409671, -0.0107841315, -0.02632856, -0.00569178816, 0.0575467125, -0.0345562361, -0.0160204582, 0.00882712, -0.0098790871, -0.00627654092, 0.00156619679, -0.0130232349, 0.0137989866, -0.0164553504, -0.0192645136, -0.0010835554, -0.053080257, -0.00276361732, -0.0397984385, 0.0215917714, -8.23571e-06, 0.0448525846, 0.0184299927, -0.00505414326, 0.0168314725, -0.0242598876, 0.00251384871, 0.0164553504, -0.0492720194, -0.00862730481, -0.030677475, -0.011859606, 0.0177600253, -0.027174836, -1.86063917e-05, -0.0137637248, 0.039539855, -0.0295961238, 0.0129879732, 0.0157853831, 0.00684660114, 0.0105431778, -0.00480731297, 0.0484257452, 0.00762823038, -0.013540403, 0.0514347255, 0.00212597242, 0.000872721255, -0.0145512316, 0.0257878844, -0.0446880311, -0.0285852943, 0.040010009, -0.040104039, 0.00584752625, -0.016619904, -0.0003022936, 0.0184182394, 0.0302308295, -0.0365308784, -0.0318293497, 0.0127176354, -9.57752782e-05, -0.0120829288, -0.0232137982, 0.0131407725, 0.0425958484, 0.0341095924, 0.0154210143, -0.00347619271, 0.0306539666, -0.0527981669, 0.0388346277, 0.000180347706, 0.0125295743, 0.00630592555, 0.0170900561, 8.47101619e-05, -0.030207321, 0.054349672, -0.0235546585, 0.0328166708, 0.00716395443, -0.0149508612, 0.0141045861, 0.0071992157, 0.0200167578, -0.0108311465, 0.0120829288, 0.0416320376, -0.0332868248, 0.00153093529, -0.0311711356, 0.00187032693, 0.00403449917, 0.013352341, -0.0101200407, 0.011530499, 0.00688186241, 0.00318528572, 0.0425958484, 0.0300192609, -0.0211216174, 0.0231197681, -0.0153387375, 0.00947945751, -0.0159499366, -0.0251531787, -0.0184652545, 0.0243069027, -0.0210393406, 0.017184088, 0.0359902, -0.00380529976, -0.00427251402, 0.0203106031, -0.0429719724, -0.0299722459, 0.0299487375, 0.0129527114, 0.0464511029, -0.0120476671, -0.00287821703, 0.00892702769, 0.0560422204, 0.00422843732, 0.0127999121, -0.0160087049, 0.0100671481, 0.0238132421, -0.00474266708, -0.0122357281, 0.011953637, -0.00217004935, -0.0498832203, 0.0346267596, -0.0102375783, 0.0139988018, 0.015362245, 0.0194173139, -0.0592392609, -0.0220149085, 0.0176424868, -0.0215565097, 0.00664090924, -0.00314708566, -0.0367659554, 0.0208395254, 0.0391872413, 0.0377532765, -0.0165493805, 0.0171488263, 0.0288673863, 0.0184770077, 0.000359960803, -0.0256703459, -0.0107782548, 0.0347678028, 0.0424548052, -0.00668792473, 0.0213684477, 0.0125413276, -0.0105137937, 0.0052950969, -0.00654687872, 0.000898432743, 0.0430424958, -0.00821004435, -0.0311006121, -0.0206632186, 0.0190529451, 0.00781629141, -0.00969102606, -0.0583459698, 0.033803992, -0.00386700733, -0.0253882557, 0.0366014019, 0.0048631439, -0.0162672885, -0.0329342075, 0.00598563394, -0.00245507946, -0.0106489621, -0.0286793243, -0.0107194856, 0.0134816337, 0.0512466617, -0.04678021, -0.00200549583, -0.0359902, -0.0202753432, 0.0210628491, 0.0209805723, -0.00775164552, -0.0174191631, 0.0123062516, -0.0207690038, 0.00621777168, 0.00194084982, 0.0556190833, -0.00854502805, -0.00584752625, 0.00496599, -0.0118008368, -0.0183712225, 0.0123297591, -0.00361723872, -0.021380201, -0.0510586, 0.0397279188, 0.0222499836, -0.00716983108, -0.0125765894, 0.00170724257, -0.00300310156, -0.00264754845, -0.00553017296, -0.00637057144, 0.0271983426, 0.00417260686, -0.0150919072, -0.0265166219, -0.0403156094, 0.0279035736, 0.013258311, 0.0383409671, -0.00234488747, 0.00333808525, -0.00413146848, -0.00320291636, -0.0155267986, 0.0264931135, -0.0188061148, -0.0250591487, -0.00604734104, 0.0151389223, -0.0510115847, 0.0276920032, -0.0206162035, -0.0151506765, 0.0595683679, -0.0113013, -0.00388169964, 0.0240248125, 0.0147157852, -0.00791619904, 0.0224380456, 0.0251296703, 0.033192791, 0.0030912552, -0.0467096865, -0.0283267107, 0.0389521644, -0.0075342, -0.0279740952, -0.0229317062, -0.00260494067, 0.015362245, -0.0524690598, 0.0386465676, -0.0113600688, 0.00581814162, -0.0226731226, -0.0116539141, -0.00887413509, -0.00314120878, -0.0383879803, -0.0543026552, -0.042995479, 0.0192174986, 0.0202048197, 0.0416790508, 0.0189706683, 0.0234958902, 0.0108605316, 0.0117126834, -0.0168197192, -0.0368129686, -0.0112895453, -0.0107782548, -0.0250591487, 0.0439828, -0.00238602585, 0.0192997754, -0.0141163403, -0.0235193968, -0.00704053929, 0.0189471599, 0.0456283353, 0.0202635881, -0.0456753522, 0.00647047907, -0.00190999603, 0.0254822858, 0.0159734432, -0.0260699764, 0.00819241349, 0.00445763674, 0.0127411429, 0.00540675782, 0.00945595, 0.00319703948, -0.00715807732, -0.0318528563, 0.0466861799, 0.0191234685, 0.00950884167, -0.0213684477, -0.0418436043, 0.0280916337, -0.0389991812, 0.0330752544, 0.0215682629, 0.0138342483, 0.0316412896, 0.000827909796, 0.0195583589, 0.0009887903, 0.00602971064, 0.0194408204, 0.0129409581, 6.8043606e-05, -0.060696736, -0.0499772504, 0.0351439267, 0.0180656239, -0.00969102606, 0.0351674333, 0.00857441314, 0.0378708132, -0.0166316573, -0.0198992193, 0.0238014888, 0.00376122305, -0.00493366644, -0.014751046, -0.0157266129, -0.0396809019, 0.0168784875, -0.00516286632, -0.0247535482, -0.0179480854, 0.0024080642, -0.0406212062, 0.0198169425, -0.0553840064, 0.0444294475, -0.00421374524, -0.0185005162, 0.0283737257, 0.037353646, -0.0228729378, 0.00636469433, -0.0026343253, 0.0148568302, -0.0252472088, 0.0238132421, 0.00562420348, -0.0288673863, 0.0137519715, -0.0114540989, -0.00437536, -0.00848038215, 0.0256233308, -0.0465686433, 0.0159969516, -0.0350969099, 0.00832758285, -0.0230257362, 0.0178423021, -0.018159654, -0.00970865693, -0.00797496829, -0.00120697054, -0.0326756239, -0.026657667, 0.0182184242, 0.0520459227, -0.0254117623, 0.0405977, 0.0296666455, 0.0389051512, 0.033098761, -0.0199109744, 0.0065174941, 0.0638937727, -0.0370950624, -0.0195583589, -0.0125530818, 0.00721096946, -0.0368364789, -0.0297371689, 0.00284295552, -0.023108013, -0.0166904274, -0.12562485, 0.00739315385, -0.0109604383, -0.030348368, 0.0182301775, 0.0234253667, 0.0414439738, -0.00667617051, 0.0168784875, 0.0201930664, 0.0079455832, -0.0188296232, 0.0511996485, -0.015127169, -0.00782216806, 0.00935604237, -0.0103492402, -0.0118478527, 0.0160909817, 0.000651602517, -0.00242422568, -0.0141633553, -0.0589571707, 0.00457223644, -0.0331692845, -0.0421727113, 0.0209453106, 0.0186533146, 0.0492250063, -0.00454872893, -0.0177247636, -0.00885062758, -0.0292670168, 0.036554385, 0.00588866463, 0.013540403, -0.00748718437, -0.011812591, -0.00106519007, -0.0174661782, 0.0233078282, 0.0329812244, 0.00837459788, 0.0469447635, 0.0252001937, 0.019981496, -0.0142691396, 0.00732850796, 0.0220149085, -0.0205574334, 0.0322995037, -0.0261640064, -0.023860259, 0.000354818505, 0.00914447289, -0.00492779, -0.00535680447, -0.00772813801, 0.0103492402, -0.00699940091, 0.0414674841, 0.00766349165, -0.0199697427, -0.0245419797, 0.010807639, -0.00915035047, 0.00582401874, -0.0251766853, 0.0195818674, -0.0142573854, 0.00542438868, 0.0375652127, 0.0208630338, 0.00335277757, 0.0328166708, 0.0307244901, -0.00648223283, 0.033662945, -0.0352614634, -0.00680546276, -0.0183594692, 0.015268214, 0.0115069915, 0.00958524179, -0.0154797835, -0.0292905234, 0.0287498478, 0.00111440918, -0.00528334267, -0.0178540554, 0.00352320797, -0.0240600724, -0.0165493805, -0.0177012552, 0.00703466218, 0.0399394855, -0.00385819189, -0.0297136605, 0.00888001267, 0.00705229305, -0.0133405877, -0.00745779974, 0.0106783472, -0.017231103, 0.0248240717, -0.018394731, 0.0183007009, -0.0327696539, 0.019840451, -0.00563889602, -0.0646460205, -0.000471989391, 0.00126647425, 0.0134816337, -0.0296196304, 0.0208160188, 0.00546552707, 0.0120946821, -0.0325110704, 0.00942656491, -0.0447115377, 0.0347678028, 0.00869782828, 0.0195113439, 0.0328401774, -0.00169842725, 0.00913272, -0.0451816916, -0.0202870965, -0.00377297681, 0.0235193968, 0.013634433, 0.0250826553, 0.0166904274, -0.0210040789, -0.0306539666, 0.0079984758, -0.0149978762, -0.0321819633, -0.00868607406, 0.0129292039, -0.0288908929, 0.0256233308, 0.013540403, 0.00883887429, -0.00670555513, 0.0142926471, -0.0323935337, 0.0201813113, 0.00674669351, -0.0190294366, -0.0353084803, -0.00841573626, 0.00763410702, -0.00991434883, 0.00370833068, -0.0310065821, -0.00905631948, -0.0556190833, -0.0259759463, 0.013305326, 0.0344857126, -0.00963225681, -0.00775752217, -0.0411618836, 0.00621189456, 0.0172663648, 0.00598269515, 0.00735201547, -0.00876247417, 0.0230845064, 0.0294550769, -0.000616341, 0.0112131462, -0.00275333272, -0.0315472558, 0.0161379967, -0.0163025502, 0.000867578958, -0.00732263085, -0.0158794131, -0.0202048197, 0.00495717442, 0.00580638787, -0.00341448514, -0.0148215694, 0.03063046, 0.0326521173, 0.0149978762, -0.0220501702, 0.000447012542, -0.018723838, 0.0296666455, -0.0212038942, 0.036907, 0.00751656899, -0.0259994529, -0.0395868719, 0.00449877512, -0.0223440155, -0.0290789548, 0.0169607643, -0.0165023655, 0.0247770566, -0.000488885504, 0.0284442492, -0.00328225479, 0.0115481298, -0.0192880221, -0.0271513276, 0.016102735, 0.0144807082, 0.000763263786, 0.042760402, 0.00573880365, 0.0161262434, -0.0193702988, -0.0113424379, 0.00837459788, 0.0130937574, -0.0235899203, 0.0197111592, -0.0356140807, 0.00724623119, -0.0104609011, 0.0116832992, -0.0207102336, 0.0361782648, -0.0106959781, -0.0153739993, 0.0137989866, -0.0241188426, -0.007587092, -0.0227671526, -0.0122709898, 0.0122944973, 0.0386465676, 0.016431842, -0.00408445299, 0.00167638878, -0.0253882557, 0.00935016479, -0.0279740952, 0.0048366976, 0.0102493325, -0.00129585888, -0.0183829777, 0.0571705885, 0.0321349502, -0.0151154147, 0.0190646984, -0.0316412896, -0.0132348035, 0.0114540989, -0.00168814266, 0.00310888584, -0.030395383, 0.00114085537, 0.000891821226, -0.00280622486, 0.0298547074, -0.00453109806, 0.0173956566, 0.0100730248, -0.0027239481, 0.0200520195, 0.00296637067, -0.0291024633, -0.00459280564, -0.00483082095, -0.00457517523, 0.00502182031, -0.0220736768, -0.00814539846, -0.0265871454, 0.0309830736, -0.00988496374, 0.00483963592, -0.0102375783, -0.0140928319, 0.00433716038, 0.0194408204, 0.00769287627, 0.00111587846, -0.02632856, -0.00809250586, 0.00896228943, -0.0101435483, 0.0116304066, 0.0172193497, -0.00607084902, 0.00435772957, 0.0108429007, -0.0252707172, 0.0167256892, 0.0102493325, -0.00703466218, 0.0208747871, 0.0198286977, -0.00860967487, 0.01090167, 0.0061296178, -0.0104256403, -0.019981496, -0.00251825619, 0.0260229614, -0.00355259259, 0.0135991713, -0.0102023175, -0.0247770566, -0.018958915, -0.00197904976, -0.0387170874, -0.00769875338, -0.0224850606, 0.0108193932, 0.00734613836, 0.0069935238, -0.00230521825, 0.0220736768, 0.00107694394, -0.0224027839, 0.0418671146, -0.0132348035, 0.0237074587, 0.0096087493, -0.0192880221, 0.00561832683, -0.00464569824, 0.0271513276, -0.0257878844, 0.00716983108, -0.0399629921, 0.0531742908, -0.0164200887, 0.0312886722, -0.00911508873, -0.0167374425, 0.0183594692, 0.0161615051, -0.00800435245, 0.00387582276, 0.00443706755, 0.0129527114, -0.00370539236, -0.00114452839, 0.0173839014, -0.0262815449, -0.000901371182, 0.0146452617, -0.00989671797, 0.0178540554, 0.0217328165, -0.00166610419, 0.00666441675, 0.0168902427, -0.00107988238, -0.0157971364, -0.00547140418, 0.0374006592, 0.00210540323, 0.00746367685, 0.0216740482, -0.0108781625, -0.0121887131, -0.00513642, -0.0145864924, 9.09543814e-05, 0.0142338779, -0.0331692845, -0.0237074587, -0.0215917714, 0.017137073, 0.00896228943, 0.0405271761, -0.0286558177, -0.0381293967, 0.0186650697, -0.0147275385, -0.011230777, -0.0127764046, -0.00564183434, -0.0220854301, 0.0153034758, 0.018629808, -0.00531566609, -0.00817478262, 0.000228832214, 0.0027136635, 0.0258349, -0.00618838705, -0.00157354283, 0.00897404272, -0.0119595136, -0.0636587, 0.0337334685, 0.0323700234, 0.0131525267, 0.0172781181, 0.0220854301, -0.0282796957, -0.00164406584, -0.0266341604, 0.0212274026, 0.00278712506, 0.0093384115, 0.0307950135, 0.017231103, 0.0287263393, -0.000654540956, -0.0393753, 0.00719333906, -0.0244244412, -0.0059768185, -0.00300897844, 0.0238720123, -0.0129174497, 0.0355905704, 0.022179462, -0.0111661302, 0.0165611356, 0.0270102825, 0.00411089929, 0.0170665495, -0.00188795757, 0.00867432076, -0.00497774361, 0.00388169964, 0.0018012732, -0.0167844575, -0.022132447, 0.00128116657, -0.00194819598, 0.0294315703, 0.0100730248, -0.0541145951, 0.00920912, 0.0194760822, -0.0269632675, 0.029831199, -0.0217798315, 0.00207014196, 0.014986123, -0.00836284459, 0.00512172794, 0.00120697054, -0.00607672567, 0.0243539177, -0.00390814571, 0.00157795055, 0.0161615051, -0.00455754437, -0.00607084902, 0.00628241757, -0.00505414326, 0.0242598876, -0.0190294366, -0.0111720078, -0.0120594213, -0.0429249555, -0.0179245789, 0.0119418828, 0.0138342483, -0.0419846512, 0.0116480375, 0.0392577648, 0.0153504908, 0.0027694942, 0.00803373754, 0.00201137271, 0.0142808938, -0.00246683322, 0.00525689684, -0.0133758495, 0.0134698795, -0.0337569751, 0.00260053296, 0.0178187937, 0.00820416771, 0.0291259699, 0.0155385518, 0.00724035408, 0.000683925522, 0.0180656239, 0.0286793243, 0.0218738616, 0.00509528164, 0.0297841839, -0.000447379833, 0.0120594213, 0.00303248595, 0.000974832568, -0.00921499636, 0.0269632675, -0.0176542401, -0.00336746988, -0.019840451, -0.0144101856, -0.00701703178, 0.00829819776, 0.0304188915, 0.0315472558, 0.0190059301, 0.0010842901, -0.0229787212, -0.00798672158, -0.0236134287, 0.00724623119, -0.0135051413, -0.0164671037, 0.0368599854, 0.00329988543, -0.010760624, -0.0215917714, -0.0259759463, -0.0387641042, -0.0120476671, -0.00414909888, -0.00573586486, 0.0236604437, 0.0112719154, 0.0432540625, 0.0165141188, -0.00709343143, -0.00505120493, -0.00645872485, 0.00187473453, 0.000401099154, -0.00783979893, 0.00836872123, 0.0401745625, -0.0206397101, -0.00186591921, -0.00211421866, 0.0329812244, -0.0149273537, -0.0159499366, 8.88423601e-05, -0.0101964399, 0.00196141889, -0.022825921, 0.0159264281, 0.0105960704, 0.0493660495, 0.0108487774, 0.0097262878, 0.020733742, -0.0190646984, 0.00088300585, -0.0286793243, 0.0310771037, -0.00324699329, -0.0105137937, 0.0199932512, 0.0141163403, 0.0326051, 0.0293610469, 0.0172428563, -0.0175602101, 0.0230727512, -0.000375755, -0.00134213956, -0.00374359218, -0.0233783517, 0.00521575846, 0.00062515639, 0.0116774216, 0.00654100161, -0.0266811755, -0.0130702499, 0.00806899834, 0.00366131542, -0.00126867811, 0.0219678935, 0.00997311808, 0.0467096865, -0.0145629849, 0.0140810786, -0.00148906233, 0.0232255515, -0.0374711826, 0.0150213838, 0.0322759934, 0.0119947754, -0.00574761862, 0.0292905234, 0.0214037094, 0.0113071762, -0.00742253847, 0.0388346277, 0.0237662271, -0.00635881769, 0.021709308, 0.00178070401, -0.00414028391, 0.0034967619, -0.0187003296, 0.0126000969, 0.0116186524, -0.0305129215, 0.000338657, -0.0118302219, -0.00559481932, 0.0010438863, 0.0081160143, -0.000871986675, -0.000738654227, -0.0295726154, -0.0265871454, -0.00852739811, -0.0143044014, 0.00333808525, -0.00384349981, -0.00179539621, -0.0256703459, 0.00503651239, -0.010666593, -0.0025447025, 0.000252339873, 0.00786330644, -0.00122607057, 0.0132935727, -0.00451934431, -0.0121181905, -0.00682897028, -0.0134346178, -0.0281386487, -0.0164200887, 0.0141398478, -0.00519518927, -0.0204163883, -0.000898432743, -0.00969690271, -0.0291729849, -0.0334983915, 0.0272923745, 0.00918561127, 0.00216858019, -0.00911508873, 0.00827469, 0.00194966514, 0.0198522042, -0.0209100489, -0.01531523, 0.0276684966, -0.0224968139, 0.00763410702, 0.0130702499, -0.0259524379, -0.00410208385, 0.0371890925, 0.0103139784, 0.0213214327, -0.0106372088, -0.0141398478, -0.00596212596, -0.00667029386, -0.0252237022, 0.0161262434, -0.0359902, -0.0157031063, 0.0212391559, 0.00239631045, -0.00524220429, 0.00150595838, -0.0377532765, -0.00848038215, 0.0427839123, -0.0159381814, 0.00103947858, -0.0165493805, -0.00416966807, -0.0433951095, -0.0207219869, 0.0293375384, 0.00598857226, -0.0170783028, 0.0127881579, 0.0247770566, -0.00387876108, 0.0294550769, -0.0112660378, 0.0312651657, 0.0104021318, 0.00934428815, 0.0280446187, -0.0291729849, -0.0176542401, 0.0159734432, 0.00284589408, -0.0195818674, 0.00965576433, -0.0169255026, -0.0231785364, -0.0140223093, 0.0188766383, 0.0244949646, 0.0108781625, -0.0101846866, 0.0224262923, -0.00358491554, 0.00389933027, 0.00778103, 0.0311946422, -0.0296901539, -0.00445176, 0.0100906556, 0.00146775844, -0.00443412922, -0.0120359138, -0.0125413276, -0.000188244798, -0.011136746, 0.016384827, 0.00318822404, -0.0256233308, 0.00319703948, -0.0257878844, 0.0064528482, -0.0367424451, 0.0220149085, 0.0211921409, 0.00503063574, -0.0106430855, -0.0116597908, 0.0117361909, -0.0497421734, -0.0206514653, -0.00170136569, -0.0032616856, 0.0200402662, 0.0453932583, 0.00047272403, -0.00876247417, 0.0126588661, -0.00427251402, 0.0324875638, 0.00982619449, 0.0386465676, 0.00960287265, -0.0122004673, -0.0370715521, -0.01386951, 0.00953234918, 0.0168314725, 0.00952647254, -0.000509822043, 0.0231667832, 0.014986123, -0.0137872333, -0.0101141632, -0.0225438308, 0.0264460985, -0.0193938054, -0.0088623818, -0.0140928319, 0.0223910306, -0.0158911664, 0.00554192672, -0.0357786343, 0.0249651168, 0.00661740173, -0.03063046, 0.00451346766, -0.00255057937, 0.00115114, -0.0181949157, -0.023907274, 0.0258819163, 0.0245419797, 0.023578167, -0.00308243977, -0.0240953341, 0.0096087493, -0.00314414734, -0.00929139648, 0.0190646984, 0.0108840391, 0.0110721, -0.0290084314, -0.00567709608, -0.00668204762, 0.00427545281, 0.0171253178, -0.0128939422, 0.0143279089, -0.0240130574, -0.00869782828, -0.00726973871, 0.018488761, 0.0142808938, -0.0137402173, 0.00340860826, -0.00277537107, 0.0116127757, 0.0172546096, -0.00126794353, -0.00439299084, 0.0134698795, 0.0140693244, 0.00845687464, -0.0313356891, 0.0265871454, 0.00750481524, 0.00173515792, -0.0162320286, -0.0111602535, 0.0234253667, 0.0142456321, 0.00102184783, 0.0116832992, 0.0126941279, 0.00554780383, -0.0232373048, 0.00528628146, 0.00198198808, 0.00814539846, -0.0202283263, 0.00292523229, 0.00214360328, 0.00582401874, 0.0139282783, 0.0132465567, 0.0205809418, -0.00769287627, 0.00986733288, -0.00518931216, 0.0166434124, -0.00262110215, 0.00417554518, -0.0119418828, 0.00449583679, 0.0187003296, -0.0197229125, 0.000512025843, 0.0345797427, 0.00174397335, 0.00677020149, -0.0156795979, 0.00420493, -0.00848038215, -0.00649986323, -0.0123767741, 0.0200637728, -0.000972628768, 0.0085391514, -0.00741078472, -0.00424606819, 0.0158676598, -0.032863684, 0.015738368, -0.0423372649, -0.0232490599, -0.0125530818, -0.00284295552, 0.00225673383, 0.0181831624, 0.0056800344, 0.0368129686, 0.0140575711, 0.0170665495, -0.00839222874, -0.0244949646, -0.0286088027, -0.0350498967, 0.00304717827, 0.00393459201, 0.00896816608, 0.019241007, -0.000151789587, 0.0312416572, -0.00023764759, 0.0139870476, 0.0217798315, 0.0130232349, 0.0240953341, 0.022179462, 0.0143631697, -0.0168197192, 0.00371126924, 0.0134816337, 0.00832758285, -0.0203223582, 0.00655275583, 0.00421374524, 0.0205691885, 0.00129806274, -0.011230777, 0.0262110233, 0.0146922767, -0.00523632765, -0.0186885763, 0.0232373048, 0.00280328654, 0.0109663159, 0.000469418243, 0.0173956566, -0.00912096538, 0.0178305469, 0.0299722459, -0.0150684, 0.00487195933, 0.0132112959, -0.000348574278, -0.00839810539, -0.0065880171, -0.00219796458, -0.00645872485, 0.0318998732, 0.00183947315, 0.0129997265, 0.00865669, -6.53347233e-05, -0.0052950969, 0.00607084902, 0.00419317605, -0.000808075245, -0.00088447507, 0.0090151811, -0.0015559122, -0.00114893611, -0.00818653684, 0.00735201547, -0.0137637248, -0.0165376272, 0.00912684295, 0.00662327837, 0.00398454536, 0.00384349981, -0.0105725629, -0.0136579406, -0.0412324071, 0.00876247417, -0.0333573446, 0.0018864884, -0.0195936207, -0.0279505886, -0.0212979242, 0.0194525756, 0.037588723, 0.0140340636, 0.000322495471, -0.00594743388, 0.00607672567, -0.0071286927, -0.0249416102, 0.00151771226, -0.0320879333, -0.0176307317, 0.0169372577, -0.0103727477, -0.00590335717, 0.0246830247, -0.0288438778, 0.0225790907, -0.0447585545, -0.00559775764, 0.00779866055, -0.00821004435, 0.0205221735, -0.00655863248, 0.0202870965, -0.0100201331, -0.00786918402, 0.02334309, -0.00261081755, 0.0299252309, 0.007587092, 0.0103551168, -0.0209335573, 0.0169725195, -0.0340625755, -4.86222561e-05, 0.00486608222, 0.0156560913, 0.0386230573, -0.0342036225, -0.0140693244, -0.0105196703, -0.00194966514, -0.0129879732, -0.0292435084, -0.0242833961, -0.00124590506, -0.00865081232, 0.00761059951, 0.0232020449, 0.000699719705, -0.0475559644, -0.0160792284, -0.00422843732, 0.00235223351, 0.0124708051, 0.00100421719, 0.00736376923, 0.0191469751, 0.00494835898, -0.00392577657, 0.00935016479, -0.0244244412, 0.0365308784, 0.0128586814, 0.0210040789, -0.00992022548, -0.0221677069, 0.00945595, 0.0102904709, -0.0138577558, 0.0344857126, 0.00148171617, -0.0049983128, 0.0288203713, -0.00148759305, 0.00805724505, -0.00747543061, -0.00774576841, -0.00429896032, -0.00691712415, -0.000600179541, -0.0168902427, -0.00537737366, 0.00606497191, 0.0158323981, -0.000808075245, 0.0101729324, 0.0260699764, 0.000399997254, 0.0127764046, 0.00526571227, -0.00290907081, -0.00806899834, -0.00973804109, -0.00957936514, -0.0330282375, -0.00429308321, 0.0362722948, 0.0133405877, -0.00494835898, 0.00877422746, 0.0163143054, 0.0143514164, -0.00285324012, 0.0333103314, 0.00498362025, 0.00655275583, 0.0186063, -0.0216387864, -0.0102552092, 0.00192028063, 0.00384056126, -0.00135022029, -0.0193350371, 0.00313827046, -0.00476323627, -0.0116539141, 8.81077503e-05, 0.0360607244, 0.0071110623, 0.00222441065, 0.00324111641, 0.0184770077, -0.0117244376, 0.0103786243, -0.00969102606, 0.0198522042, -0.00774576841, 0.0151976915, 0.0158088896, 0.00776927592, 0.027456928, -0.00096895569, 0.0564653613, -0.0255998243, 0.0329812244, 0.0174191631, -0.0107488697, 0.00608847942, -0.014986123, 0.0101024099, -0.0297371689, -0.0316883028, 0.00977330282, 0.022132447, 0.0152917225, 0.0165728889, -0.00219061854, 0.00166169659, 0.0056095114, -0.00780453766, -0.0119301295, 0.0103845019, -0.0160087049, -0.0159616899, 0.0207102336, -0.00395222241, 0.00541557325, 0.0160322133, 0.00748130772, -0.0147392927, 0.00514229713, -0.0385525338, 0.0081160143, -0.00744604599, 0.0060414644, 0.00187179609, -0.00543320412, 0.0267752055, 0.0124002816, -0.0116950525, 0.00606497191, 0.00119668595, -0.0057711266, -0.00500418944, 0.0206162035, 0.00679370901, -0.0203106031, 0.0103139784, 0.0272218511, -0.00214360328, 0.0123415124, 0.0106607163, 0.00336746988, 0.0148215694, -0.0116480375, -0.00634118682, -0.00213184953, -0.0126236044, 0.0116539141, -0.00368776149, 0.00440768292, 0.0138577558, 0.0041079605, -0.00722272322, -0.0133405877, -0.00863318238, -0.00745779974, 0.0105960704, 0.00121064368, -0.0518578626, 0.0146922767, 0.00823355187, 0.0052040047, 0.00881536584, 0.0126823736, 0.00742841512, -0.0261875149, 0.00850976724, 0.022226477, -0.00129145116, -0.00143763935, 0.0194995906, 0.00317059341, 0.0145982467, 0.0123180049, 0.0079455832, 0.00599151058, 0.00946770329, 0.0366014019, 0.0191822369, 0.0119183753, 0.00317647029, 0.0275979731, 0.00630592555, -1.33263547e-05, 0.0041990527, -0.0396809019, -0.00851564389, 0.0112425303, 0.00992022548, -0.0137519715, 0.00759884575, 0.0212744176, 0.0102434559, -0.00386113045, 0.00157354283, -0.00736376923, 0.00497774361, 0.00110485929, 0.000413954898, 0.0106078237, 0.0286558177, 0.0125883427, -0.000161615055, 0.0181949157, 0.00640583271, -0.0159264281, -0.000650500588, 0.00315883965, -0.00282532489, 0.0160439666, -0.00849801302, 0.00869782828, -0.00130614347, -0.0180421155, 0.0260464698, 0.0240718275, -0.00102258252, 0.0115011148, 0.00355553115, -0.00605909526, 0.0102493325, -0.0121299438, 0.00233019516, 0.0120594213, -0.0106489621, 0.0139752943, 0.0252942238, -0.00806899834, 0.033098761, -0.0125178201, -0.00734613836, -0.00912096538, 0.0134346178, 0.00173809635, -0.00222000317, 0.0202048197, -0.00498068193, 0.0106137013, 0.00480143633, -0.0216387864, 0.0222382303, 0.00657626335, 0.0106372088, 0.00282679405, -0.00107180164, -0.0230257362, 0.0238837656, 0.00965576433, 0.00889176596, 0.0332868248, 0.0065880171, 0.00655863248, 0.0103139784, -0.00547728082, 0.00572411111, 0.00771638379, -0.01531523, -0.0129879732, 0.00682309363, 0.0234723818, 0.0139400326, 0.0127411429, 0.0121887131, 0.00597975682, -7.25431164e-05, -0.0102317017, -0.00342623913, -0.0279035736, -0.0158323981, -0.0117773293, -0.00109016697, 0.0241893642, 0.00222734921, -0.0127764046, 0.00843336713, -0.0154445218, -0.000706698513, -0.0112954229, -0.00939130317, 0.00548903458, -0.0411148667, -0.0116068991, -0.0100612715, -0.00946770329, 0.0116127757, -0.00654687872, -0.00616487954, -0.015503291, 0.0261640064, 0.00389345339, 0.00451052887, -0.006652663, -0.0291729849, -0.0247300416, 0.0297371689, -0.0157736279, 0.0253177322, 0.0195701122, -0.033898022, -0.00347913126, -0.00749306148, 0.0210863557, 0.00445469841, 0.00804549083, 0.0077222609, -0.0272218511, -0.00526571227, -0.0048366976, 0.014892092, -0.00578288035, -0.0164200887, 0.0170665495, 0.0269162524, 0.0383174606, -0.023155028, -0.0152094457, -0.00745779974, 0.00236839498, 0.00570941903, 0.00890352, -0.0172546096, 0.00152065069, 0.0261405, -0.0162672885, -0.000484845135, 0.000608627568, 0.00224057236, 0.0135168945, -0.0118067143, -0.0172546096, 0.0027048483, 0.00906219613, -0.0143514164, -0.00953822676, 0.00535386568, 0.000567121897, -0.00456048269, -0.0109075466, 0.013493387, 0.00220824918, 0.00877422746, 0.00456342148, -0.0324640572, 0.0196758974, 0.0083334595, -0.0182536859, 0.00879185833, 0.023860259, 0.00826293696, 0.0063176793, 0.0309360586, -0.001716058, -0.00384937669, 0.00801610667, -0.00724623119, -0.00743429223, 0.0134228645, 0.00195848057, -0.000314231089, -0.0437242165, -0.00367894629, -0.00101744023, -0.00984970294, 0.0331692845, 0.00320879323, -0.00299869385, -0.0170900561, 0.00181449624, 0.00241247192, -0.0155267986, 0.00577406492, 0.0274804346, -0.00183947315, 0.0155738136, -0.0295961238, -0.0251296703, 0.0125883427, 0.00204957277, 0.00724035408, -0.00878010504, 0.00900930446, 0.0112601612, -0.00518049672, 0.0036583771, 0.0137989866, 0.0129644657, 0.00119962438, 0.0363898315, 0.0191822369, -0.0256468393, 0.0165493805, 0.0177247636, 0.00661740173, -0.0149743687, -0.0025079716, 9.80709519e-05, 0.0085391514, 0.027456928, -0.00993198, -0.00474854419, 0.00201578042, -0.00293257856, -0.00173809635, -0.00277390191, 0.0167962108, 0.0244949646, -0.0261875149, 0.00253147935, -0.0115069915, 0.0083863521, 0.0157618746, -0.0234723818, -0.00836284459, 0.00556249591, -0.0369305089, -0.00226848759, -0.013258311, 0.00140090857, 0.0193232838, -0.00808662921, 0.0117479451, -1.32345276e-05, 0.00315296277, -0.0092502581, 0.00538618863, -0.00996136386, -0.0162790436, 0.0146217542, 0.0039287149, -0.00591804925, 0.00192909595, 0.000755183049, -0.000873455894, 0.0125648351, 0.00424900651, -0.0329812244, 0.00583577249, -0.0188413765, -0.0130584957, 0.0111661302, -0.0284677558, 0.00437829876, -0.0111720078, 0.00116583216, 0.0336159319, 0.0124237891, -0.00545965, -0.0146570159, -0.0175014399, 0.0110721, -0.000440033706, 0.0246595182, -0.0121652056, 0.00716983108, -0.00107033236, 0.0103257326, 0.000945448061, 0.0275979731, -0.00315296277, -0.000202937081, -0.0143631697, 0.00541263493, -0.000406976091, 0.000607893, -0.00951471832, 0.0377767831, -0.00388757652, 0.00564183434, -0.0111485, 0.00636469433, 0.0217445698, -0.015503291, -0.00685247825, -0.000258400425, 0.00870958157, -0.00277977879, -0.00708167767, 0.00414322224, 0.0333808549, 0.00650574034, 0.007587092, 0.0212744176, 0.00631180219, 0.0122709898, 0.00939130317, 0.0183007009, 0.0162437819, 0.00637644809, -0.0362958, -0.00636469433, -0.0070640468, -0.00122313201, 0.0145629849, -0.00875072, 0.00959699508, 0.0133758495, -0.00873308908, 0.00371714612, -0.0294080619, 0.00596506475, -0.00350557733, 0.00203928817, 0.00348500814, 0.00148171617, -0.000964548, 0.0065174941, -0.0173956566, 0.00917385798, -0.0263755769, -0.0130702499, 0.00181302696, 0.0112836687, -0.00515405089, 0.0048807743, 0.0158088896, -0.0159029216, 0.000364735781, -0.0108722849, -0.0053127273, -0.0110956077, 0.00715220068, -0.0123767741, 0.000749306113, -0.0052686506, -0.00722272322, -0.00140531629, 0.0278330501, -0.00401393, 0.0208395254, 0.0102963476, -0.00297077838, -0.00115187455, -0.00344974664, 0.0114012072, -0.00573586486, -0.00893878099, -0.0141751086, 0.0190882068, -0.00724623119, 0.0108487774, 0.00157941983, 0.026798714, 0.00778690679, -0.00494542066, -0.0135051413, -0.0104197627, 0.0114012072, 0.00983207207, -0.01162453, 0.0214037094, -0.00324111641, -0.00833933614, 0.0175367016, -0.0169725195, -0.00054030848, 0.00309713208, -0.0131995417, 0.0153975068, 0.0100436406, 0.0127999121, 0.0312886722, 0.0127176354, -0.0180186089, -0.0339215286, 0.00153240445, -0.0142691396, -0.0236957055, -0.0139870476, -0.0104021318, -0.0342506357, 0.00872721244, 0.016102735, -0.00440768292, 0.00638820231, 0.019840451, 0.00966751855, 0.00831582863, -0.00275627128, 0.0266341604, 0.00419611437, -0.00736964634, 0.0238955189, -0.00141853932, 0.00953234918, -0.000606056419, -0.0137637248, 0.0341095924, -0.0140693244, -0.00236545666, -0.00307362434, -0.00950296503, 0.00870370492, 0.00473091332, -0.0011988898, -0.00362899248, -0.00138327794, -0.00741666136, -0.00336746988, -0.00716395443, 0.0246125031, 0.000307252252, 0.00261228695, -0.0144219389, 0.0105549321, 0.0255057923, -0.00642346358, -0.00621777168, -0.0114540989, 0.0138577558, -0.0376592465, -0.0277155116, -0.0168902427, -0.000565652677, 0.00539794285, -0.0153857525, 0.0304894131, -0.00377297681, 0.0126118511, 0.0170430411, 0.0122709898, 0.00943831913, 0.00845687464, 0.00352614652, 0.00883887429, -0.000186132791, 0.0205926951, -0.0283032022, -0.00528040435, -0.0197346658, 0.0225673374, -0.0210746024, 0.00502182031, -0.00606497191, 0.00170283497, -0.000573366124, -0.00600032602, -0.00701703178, 0.0197699275, 0.0325815938, 0.00610611029, -0.0106137013, -0.0129056964, 0.00820416771, 0.00659389421, 0.00286646327, -0.007587092, 0.0107077314, -0.000460970186, 0.00722272322, 0.00117023988, -0.001716058, -0.00754007651, -0.01386951, -0.00748718437, 0.0329342075, -0.00601795688, -0.00969690271, -0.000397058786, 0.0225555841, -0.0049072206, 0.0074519231, 0.0141280936, 0.000549858494, -0.0229669679, 0.0244479496, 0.00185710378, -0.00663503213, 0.0142691396, 0.0104902862, -0.00569766527, 4.99881753e-06, 0.00270925602, -0.0163495652, -0.0213566944, 0.00251531787, -0.0018159654, -0.0153504908, 0.0195583589, -0.0109193, 0.00184241158, -0.033098761, 0.0143631697, 0.0163613204, 0.0181831624, 0.00778103, -0.0102081941, 0.0112895453, 0.0121064363, -0.00708755432, -0.0030648089, -0.0103962552, 0.00816302933, -0.00351733109, -0.0117714526, 0.0162672885, 0.0204751566, -0.00616487954, -0.011812591, 0.00775752217, 0.00526571227, 0.00722860033, -0.0203693733, -0.00878598168, 0.023860259, 0.00601501809, 0.0179833472, 0.00232431828, -0.00944419578, -0.0185005162, 0.0157971364, 0.0186650697, -0.00383468438, 0.0144924624, 0.0138577558, -0.0105314245, -0.0110838534, -0.00162937352, 0.0193467904, 0.00731087709, -0.0057711266, -0.00797496829, 0.0214859862, 0.0256468393, -0.00248740241, -0.00632943306, -0.000106335356, 0.019652389, 0.0106607163, -0.00419611437, 0.00542732701, -0.00318234717, -0.0234958902, -0.00233313371, -0.00301779364, -0.014751046, 0.0195936207, 0.0212391559, -0.0229317062, 0.0233665984, -0.00618251041, 0.0042695757, 0.0170783028, 0.0143161546, 0.0149508612, 0.0215330012, 0.0254352707, -0.00682309363, -0.000375755, 0.000961609534, -0.0229199529, -0.00414909888, 0.0205456801, -0.00576818781, -0.00227436447, -0.0283267107, -0.0262815449, -0.00630592555, -0.00682897028, 0.0133405877, -0.0141163403, 0.00865669, -0.000686496671, 0.0170665495, 0.0110779768, -0.00974979531, 0.00503651239, 0.00439299084, 0.000521208509, 0.0113424379, 0.0183242075, -0.00808075257, 0.0198522042, -0.00488665141, 0.00466626743, -0.00143617007, 0.0174661782, -0.0137519715, -0.00584752625, 0.00464569824, 0.00648810947, 0.0116656683, -0.0362722948, -0.00349970045, -0.0100201331, -0.00803373754, 0.00937367324, -0.0352849737, -0.00766349165, -0.000707065861, 0.00685247825, 0.0131877884, 0.0426193587, -0.00759296864, -0.0161850117, 0.00993785635, 0.0244244412, 0.00728736958, -0.00055647, -0.0130114807, 0.00549491169, 0.0119653903, 0.00241981796, 0.00932665728, -0.000769140723, -0.0101670558, 0.0102081941, -0.00322348555, 0.00017695011, -0.0126000969, -0.000350227143, -0.00643521734, 0.0233078282, 0.0041784835, -0.00754007651, -0.0163143054, 0.0140340636, 0.015456276, 0.0404566526, 0.00456342148, -0.0134816337, 0.00325287017, 0.00515698921, 0.000256747531, -0.0148568302, 0.001896773, 0.0125413276, 0.00295755547, -0.00256086397, 0.00513642, -0.0177247636, -0.0319233797, 0.0123532666, -0.0186533146, -0.0120594213, 0.0161850117, 0.0109839467, -0.00653512497, 0.0188531298, 0.00728736958, -0.0134228645, -0.0169137493, -0.00291641708, -0.0140223093, -0.0208630338, 0.00654100161, 0.0100142565, -0.0231197681, 0.00773401465, -0.00774576841, 0.00497480482, -0.0100612715, 0.0126706194, -0.0244009346, 0.00771638379, -0.00555661926, -0.0169725195, -1.67469e-05, -0.0141280936, 0.0251296703, -0.00166169659, 0.0145629849, 0.00353790028, -0.0056535881, 0.0126353586, 0.0071110623, 0.0185005162, 0.00638820231, 5.30299367e-05, 0.00937955, -0.0059062955, 0.0201930664, -0.00259612547, 0.00142588548, -0.00381117663, 0.00362899248, -0.00870370492, -0.00973804109, 0.00972041, -0.00058254879, -0.000199631322, 0.00532742, -0.0138107408, -0.0322995037, -0.00915622711, 0.0102610867, 0.0188766383, -0.0249886252, 0.00139576627, -0.00246095634, -0.0132465567, 0.0212979242, 0.013775479, 0.0174426716, 0.00122680515, 0.0133876028, 0.0208747871, 0.013493387, -0.00742253847, 0.0213684477, -0.0283972342, 0.0194408204, -0.00215535704, -0.0220501702, 0.0112660378, -0.0253177322, -0.00411383761, 0.00189383456, -0.0165611356, 0.00863318238, 0.0185122695, -0.0160557199, 0.0118478527, 0.0238720123, -0.00617075618, -0.00407857634, 0.0232490599, 0.00184094231, -0.0242363811, 0.00593568, 0.00187914225, -0.00300750905, -0.00982031785, -0.00230374909, 0.00716983108, 0.00721096946, -0.00917973462, -0.0194525756, -0.0133640952, -0.00726973871, -0.00075591763, -0.00783979893, -0.010666593, -0.00353496196, -0.00171899644, -0.0141045861, -0.00194231898, 0.0110838534, 0.00694650877, 0.00092634809, 0.00460456, 0.0115422532, -0.00738727674, -0.0050423895, 0.00255939458, -0.0111778844, -0.00921499636, -0.0122122206, -0.00123635517, 0.0100495173, -0.00827469, -0.0027694942, 0.0110838534, -0.0228376761, 0.00728736958, 0.00888001267, 0.0137637248, 0.00222441065, 0.026563637, -0.00243891799, 0.00694650877, -0.00345856207, -0.0157618746, -0.011906621, 0.0036319308, 0.0251061637, -0.0167727042, -0.0158441514, -0.00715220068, 0.0203811266, -0.00324993161, 0.00133699726, 0.004727975, -0.0162555352, 0.0104373936, -0.0024638949, 0.011230777, 0.00612374116, -0.0165493805, 0.000181725103, 0.0197816826, 0.0023375412, -0.01162453, 0.0171958413, 0.0250121318, -0.00572998822, -0.00641758647, 0.0315942727, -0.0126000969, -0.0142456321, -0.00214213412, -0.0126471119, 0.00620014081, 0.00858616643, -0.0229904745, -0.00123047817, 0.0209335573, 5.36612447e-07, 0.00530685065, -0.00493366644, 0.00258437148, -0.00233019516, -0.0158441514, 0.0016910811, 0.0278330501, -0.0220266618, 0.0370480455, 0.00313533191, -0.00418142229, -0.00820416771, 0.00409914553, 0.0125530818, 0.00725210784, 0.0124237891, 0.00947945751, 0.00664090924, -0.0197229125, 0.00644697109, -0.000514229701, -0.019840451, 0.00835696701, -0.00784567557, 0.00600914145, 0.0195348524, -0.00555368094, -0.0120711746, 0.00307068601, -0.0168314725, 0.00567709608, -0.0195936207, 0.0032616856, -0.0141516011, -0.00111587846, -0.00330282398, -0.00160733517, 0.0249651168, -0.00554192672, 0.0106430855, 0.000845540548, 0.00837459788, -0.00156913523, -0.00463100569, 0.0321114399, 0.00397573039, -0.00138327794, 0.00135315873, -0.0186415613, -0.0443824306, 0.00917973462, 0.0112836687, 0.014986123, 0.0132348035, -0.00691124704, -0.014751046, 0.0124708051, 0.00680546276, -0.00387876108, 0.0316883028, 0.0105960704, 0.00152358913, -0.00651161745, 0.00045215484, 0.00902693532, -0.000911655778, -0.0123297591, 0.00510115875, -0.00737552298, 0.0318293497, -0.00257114857, 0.0153975068, 0.0092855189, 0.00836872123, 0.00143984321, -0.00254764082, -0.00636469433, -0.0114423456, 0.00306774746, 0.00133258954, -0.00575643405, -0.0278800651, 0.00248152553, -0.00483963592, 0.0107312389, -0.000521943148, -0.0139282783, 0.00707580056, -0.000327454123, 0.00311770127, 0.0291024633, -0.00293551688, -0.0117068067, 0.0141398478, 0.00957936514, -0.016102735, 0.0401275456, 0.0225320756, -0.00576231116, -0.0108899157, -0.00197170349, -0.00117758603, 0.0281151421, -0.00538618863, -0.0105373012, 0.0105666853, -0.0127411429, 0.0131407725, -0.000680619734, -0.0224968139, -0.0214507245, 0.000339391612, 0.0297371689, 0.00640583271, -0.00842749048, 0.0192174986, -0.00534798903, -0.00176307326, 0.0117773293, 0.00125104736, 0.0278800651, 0.021662293, -0.00608260278, 0.0129644657, -0.0240130574, -0.00769875338, -0.0115951449, -0.00317940884, 0.00534211192, -0.0122122206, 0.00982031785, 0.0210275874, -0.010807639, -0.0185122695, -0.0102552092, -0.000109549292, 0.00869782828, -3.44809378e-05, -0.00315296277, 0.0220031533, 0.00471915957, 0.00182771927, -0.00843336713, -0.00607084902, 0.0158206448, 0.0231197681, -0.000434524089, 0.029831199, -0.000788975274, 0.0214037094, 0.0095558567, -0.00862142816, 0.0188178681, -0.00572704943, 0.0148215694, 0.00630592555, 0.0111014843, -0.0114834839, 0.0138577558, -0.00990259461, 0.0220384151, 0.0165611356, -0.0188883916, 0.0135168945, -0.00363486935, -0.000479335547, -0.0288908929, -0.0094030574, -0.00304130139, 9.68198128e-06, -0.00431659119, -0.0183242075, -0.00235517207, 0.00538912741, 0.00860379729, 0.0216270313, 0.0175249483, 0.00623540254, -0.0031559011, 0.00216123392, -0.0187003296, -0.00261375611, 0.0109545616, -0.016996026, -0.018347716, -0.00684072403, 0.00692887791, -0.00662327837, -0.00766349165, -0.0384820141, 0.02343712, -0.0180068556, 0.00177041942, 0.0156913511, -0.00440180628, 0.0232843217, 0.0152799683, -0.00651161745, 0.00394634577, 0.00256380229, -0.0250826553, -0.0134228645, 0.0107194856, -0.0165611356, -0.015503291, 0.00516874297, -0.00846862886, 0.00111147074, 0.0127411429, 0.0135756638, -0.0201460496, -0.00427839113, 0.0119183753, -0.00218327227, -0.00241247192, 0.00231991056, -0.00210393406, -0.0240130574, 0.0220854301, 0.0100553948, -0.00873896666, 0.0160557199, -0.00815715268, -0.0216740482, -0.0373301394, -0.037118569, -0.0180186089, -0.00900342781, -0.0111132385, -0.00128483959, 0.0210393406, 0.000909452, -0.00725210784, 0.011277792, -0.00585634168, 0.0132935727, -0.0241423491, -0.00285177096, -0.0185122695, -0.00189236528, 0.0130584957, 0.0158088896, 0.00827469, 0.0289144013, 0.0140928319, 0.00238455669, 0.0180538706, 0.00554192672, 0.0201930664, -0.000342513697, -0.0035672849, 0.00617075618, 0.0338510051, -0.00296049379, -0.0191704836, 0.00121284754, -0.016384827, -0.00224644924, -0.00158823514, 0.0226496141, -0.0105137937, 0.0143161546, 0.0235193968, 0.00539206574, 0.0116656683, 0.00933253486, 0.0176072251, -0.0155738136, -0.00529803522, 0.00812776759, -0.0103609934, 0.0138107408, 0.00102331711, 0.00861555152, -0.0168667343, 0.00400511455, 0.00138327794, -0.00676432438, -0.00776927592, 0.00295461691, 0.00415203767, -0.00648223283, 0.0315942727, 0.00125031278, -0.000314414734, 0.00474854419, -0.0142691396, 0.00640583271, 0.00289584789, -0.0111308694, 0.00936191902, 0.0158559047, -0.0148450769, 0.00445763674, 0.0169372577, -0.0162085202, -0.00372008467, -0.0272218511, 0.0230962597, -0.0080631217, 0.0111014843, 0.0178187937, 0.0111955153, 0.0225085691, 0.00803373754, 0.00769875338, -0.00170871185, 0.0173721481, 0.0280681271, -0.0113424379, -0.0121652056, 0.00223910296, -0.00289290934, 0.00565065, -0.0248710867, 0.0126118511, 0.0073343846, 0.0244714562, 0.0235076435, -0.00252119475, 0.0223205071, -0.00900342781, 0.0252001937, -0.0186180528, -0.00269309431, 0.0131877884, 0.00552429631, 0.0103962552, -0.0117068067, 0.00656450959, -0.0165258739, -0.00115775142, -0.0349558666, -0.0255057923, 0.0117361909, -0.00867432076, 0.0225908458, -0.00525689684, 0.016384827, -0.0137402173, 0.0142103704, -0.0158794131, 0.00516286632, 0.00849801302, 0.00300750905, -0.000596139173, -0.016901996, -0.000554266153, -0.0359196775, -0.0123062516, -0.0133876028, 0.0103081018, -0.0068583549, 0.000751877262, -0.00176454254, 0.0219796468, 0.00769287627, 0.0205221735, 0.0114012072, 0.00285617867, 0.00388757652, -0.0290554464, -0.00558012677, -0.0369540155, 0.0127999121, -0.000264093687, 0.0335454084, -0.0027151329, -0.0111720078, 0.00155297364, -0.00442531379, 0.0129527114, -0.0104961628, 0.0186650697, -0.00913272, -0.0458634123, 0.00570941903, 0.00806899834, -0.0290084314, 0.0376122296, -0.0139517868, 0.00252707163, -0.0139635401, 2.89713334e-05, -0.0171723329, 0.0184535, 0.00247271033, -0.00884475093, -0.0323230103, 0.00705817, -0.0176307317, -0.0218268465, 0.0192292519, -0.0275509581, 0.00726973871, -0.0068583549, -0.00513642, -0.00786918402, -0.0110838534, -0.0174661782, -0.0161967669, -0.0179363322, -0.0204634033, -0.0096616419, -0.0212156475, -0.0101964399, -0.00088447507, 0.00694650877, -0.00783392228, 0.0029854707, -0.0243774261, 0.00241100276, -7.55734e-05, 0.00491897436, 0.00424900651, -0.00419317605, -0.00493072812, 0.0119595136, -0.0024991564, 0.000567856536, -0.0126706194, -0.00889764261, -0.0060414644, 0.00058254879, -0.0214507245, -0.00195994973, -0.00620014081, 0.00165141199, 0.0165023655, 0.0290554464, 0.00151183526, 0.00242128735, -0.0174191631, 0.0172075946, 0.011277792, -0.00875072, -0.00237133354, -0.0142338779, -0.00841573626, 0.018441746, -0.00209952635, -0.0211216174, -0.00420786813, -0.0123650208, 0.0100495173, -0.0240953341, -0.00424019108, -0.029831199, 7.15789356e-05, -0.0334748849, -0.0127411429, -0.00457811356, 0.00923850387, -0.00184828846, 0.00910921209, 0.00964401104, -0.00135315873, -0.00973216444, 0.0137637248, 0.00281357113, -0.00666441675, 0.023907274, -0.000420199125, 0.0218150932, -0.0101611791, 0.0156443361, 0.00577406492, -0.00224057236, -0.013587418, -0.0111955153, 0.00331457774, -0.00383174582, 0.000112212263, -0.0223910306, 0.0119183753, -0.0287968628, 0.0184770077, -0.0177482702, -0.00320291636, 0.0083334595, -0.00848626, -0.0165141188, 0.0115657607, 0.0160439666, -0.00386700733, 0.00532742, -0.00591804925, -0.0144101856, -0.0121181905, 0.0104609011, -0.0462865494, 0.00836872123, 0.0012892473, -0.0349793732, 0.00455460604, 0.0111543769, -0.0104491478, 0.0111896386, 0.00252707163, -0.00869782828, 0.00145086239, -0.0231432747, -0.0105666853, -0.0225790907, -0.00537737366, -0.00618251041, -0.0140340636, -0.0286088027, 0.0368364789, 0.00929139648, 0.00840398297, -0.0173956566, 0.00658214, 0.00819829106, -0.0181243923, 0.0310771037, -0.00435479078, 0.000803667586, 0.0104726553, -0.0324640572, 0.0181949157, -0.00692887791, -0.00915622711, 3.59042533e-05, 0.00244773342, -0.0142103704, 0.00354083884, 0.0166434124, 0.0105020395, -0.00692887791, -0.0210275874, -0.0131995417, 0.0194055606, 0.00829819776, -0.0214507245, -0.00187326537, 0.0156678446, -0.00452815974, -0.0177600253, -0.0068583549, -0.0120476671, -0.00823355187, -0.00345856207, -0.00744604599, -0.0314532258, 0.0291494783, 0.00455166725, -0.00836872123, -0.0193938054, 0.0227318909, -0.0126588661, 0.00844512135, 0.00542438868, -0.00956173427, 0.0123532666, -0.00573880365, 0.0106489621, 0.00616487954, -0.00783979893, -0.00496892817, 0.00589160295, 0.00422256067, 0.0161850117, -0.000284846523, -0.00556249591, -0.0027239481, 0.0111661302, -0.0112836687, 0.016619904, 0.0189941768, -0.014751046, 0.0224380456, 0.00652924785, 0.00463100569, -0.00545671163, 0.00735789258, 0.00824530609, -0.0240130574, -0.00729912333, 0.0246595182, 0.00429896032, 0.0114893606, 0.00495717442, -0.0282326806, -0.0118889911, 0.00488665141, 0.00558012677, -0.0106430855, 0.0367189385, 0.0390461944, 0.00094912108, 0.00364956167, 0.00515992753, -0.0227201376, -0.00927376561, 0.0142456321, -0.00122386671, 0.0150213838, 0.0212744176, -0.00983794872, 0.00332927, -0.0106548397, 0.0243539177, 0.00948533416, -0.00437242165, -0.0157501213, -0.00622952543, -0.0200990345, 0.0180891324, 0.00788093731, -0.00374065386, -0.00361430016, -0.00892115105, 0.00109530927, 0.0145982467, -0.00268721743, -0.00654100161, -0.0246125031, -0.0178187937, -0.00832170621, 0.00238749501, 0.00861555152, -0.00225967215, -0.00356434635, 0.0142456321, 0.0157618746, 0.0194760822, -0.00308243977, 0.0107371164, -0.0120065287, 0.00295020919, -0.00244626403, 0.0147628, -0.0168432258, 0.000469785562, -0.0141868629, 0.00637644809, 0.00681134, -0.00396691496, 0.0171135645, -0.00751656899, 0.00551548088, 0.010037764, -0.00449289847, 0.0122474823, -0.00394340698, 0.00590041839, -0.0140458168, -0.0070640468, 0.000358124264, 0.0120241595, -0.021380201, 0.00949708838, -0.00525983516, 0.00369657692, -0.0384349972, 0.016619904, -0.029549107, -0.0248005632, -5.04587879e-05, -0.0138224941, 0.000760325347, -0.0284442492, -0.0123180049, -0.0112190228]
|
18 Jan, 2021
|
Fabric.js Polygon borderColor Property
18 Jan, 2021
In this article, we are going to see how to draw a bordered colored canvas Polygon using FabricJS. The canvas Polygon means the Polygon is movable and can be stretched according to requirements. Further, the Polygon can be customized when it comes to initial stroke color, height, width, fill, or stroke width.
Approach: To make this possible we are going to use a JavaScript library called FabricJS. After importing the library, we will create a canvas block in the body tag which will contain the Polygon. After this, we will initialize instances of Canvas and Polygon provided by FabricJS and enable the borderColor of canvas Polygon using borderColor property and render the Polygon on the Canvas as given below.
Syntax:
fabric.Polygon([
{ x: pixel, y: pixel },
{ x: pixel, y: pixel },
{ x: pixel, y: pixel},
{ x: pixel, y: pixel},
{ x: pixel, y: pixel }],
{
borderColor: string
});
Parameters: This property accepts a single parameter as mentioned above and described below:
borderColor: This parameter defines the border color of the Polygon.
The below example illustrates the Fabric.JS Polygon borderColor property in JavaScript:
Example: In this example, we have set the borderColor property of the polygon to purple.
HTML
<!DOCTYPE html>
<html>
<head>
<!-- Loading the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;width: 600px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Polygon borderColor Property
</b>
</div>
<canvas id="canvas"
width="600"
height="200"
style="border:1px solid #000000;">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a polygon instance
var polygon = new fabric.Polygon([
{ x: 295, y: 10 },
{ x: 235, y: 198 },
{ x: 385, y: 78},
{ x: 205, y: 78},
{ x: 355, y: 198 }], {
stroke: 'green',
strokeWidth: 3,
cornerColor: 'blue',
borderColor: 'purple'
});
// Render the polygon in canvas
canvas.add(polygon);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Fabric.js Polygon borderColor Property
|
https://www.geeksforgeeks.org/fabric-js-polygon-bordercolor-property?ref=asr8
|
CSS
|
Fabric.js Polygon borderColor Property
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, Fabric.js Polygon borderColor Property, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.000678790559, -0.00602426613, -0.0126958974, 0.0409285575, 0.0775832459, 0.0146694183, -0.00929565914, 0.0127210375, -0.0255174972, -0.0346183181, -0.0104521178, 0.00140471931, 0.0192198288, -0.0644599646, -0.00555288373, -0.0110806273, -0.0198357683, -0.0186793096, -0.00078603, 0.00714615593, 0.00302313198, -0.0135255307, -0.0214321837, -0.00615311088, 0.00216050236, 0.0343166329, 0.0393447131, 0.0311740842, 0.0139403464, 0.0371072181, 0.00584199838, 0.0135632409, 0.00292728422, -0.0223372374, -0.00995559525, -0.0238708016, 0.0078123766, 0.0584262684, -0.0195340831, -0.0172085967, -0.00927680451, 0.00990531407, 0.00410102634, 0.0144808656, 0.00779980607, 0.0118976897, -0.0138020748, -0.00306084263, 0.0102572795, -0.0488729216, -0.0110680573, -0.0264225509, 0.0052009183, -0.0125073446, 0.0323305428, 0.00483638281, 0.000206819, 0.0331350341, -0.0199866109, 0.0103641264, -0.00562202, -0.0662197918, -0.0193958115, -0.000829632918, -0.0138272149, 0.0384648, -0.022990888, 0.028433783, -0.0325316675, 0.00842831563, -0.012595336, 0.00475781877, 0.0300679076, -0.00122245145, 0.0177616868, 0.014593997, 0.0517389253, 0.00527005456, -0.00724043278, 0.04447335, -0.0203260053, -0.0138146449, -0.0280566756, 0.0168817732, -0.0372329205, -0.0242730472, 0.0466354266, -0.0456800908, 0.0181387924, -0.0183147751, 0.0119039752, 0.002410335, 0.032607086, -0.0570184067, -0.02964052, -0.00344109093, 0.00473267864, -0.0263219886, -0.0131987054, 0.0037333481, 0.0216458756, 0.0382888168, 0.00673133973, 0.018553609, 0.0404257476, -0.0394955538, 0.0384648, -0.0044938447, -0.00619082106, 0.000111855101, -0.00655535702, 0.00307812658, -0.0251026805, 0.062750414, -0.0300176274, 0.0145185757, 0.0129347313, -0.0113508869, 0.0136889424, 0.0110617718, 0.0147951199, -0.015574472, 0.000507914461, 0.0139654875, -0.0265985336, 0.00873000082, -0.0108166533, -0.00306241377, -0.00238362327, -0.00317711686, -0.0307969786, -0.0302941706, 0.00311112334, -0.030394733, 0.033487, 0.0175102819, -0.00612168526, 0.0119228307, -0.0122622261, 0.00754840253, -0.00953449309, -0.0403754674, 0.023707388, 0.0293639768, -0.0031645468, 0.00331538916, 0.0180759411, -0.0105526792, -0.0139529174, 0.024210196, -0.0334115811, 0.00172211672, 0.0594821647, -0.0100561567, 0.0379619896, -0.0290622916, -0.00498094, 0.0122119449, 0.0564150363, -0.0389927477, 0.0266488139, 0.00426758127, 0.0125764804, 0.0332858786, -0.00442785118, 0.00302941701, -0.00285971956, -0.00794436317, -0.0559625104, 0.024951838, -0.00185567513, -0.00678790547, 0.0109360702, 0.0131609943, -0.0476913229, -0.0152602177, 0.0161904115, -0.0106532406, 0.00497779762, 0.000380641228, -0.0337886848, 0.0200871732, 0.0427638032, 0.0493003055, -0.0136009511, 0.0321797021, 0.0346937403, 0.0136763724, -0.00705187954, -0.0318277366, -0.029414257, 0.0221738257, 0.0514372401, -0.0220355522, 0.0282578, 0.0139026362, -0.00424244115, 0.00306241377, -0.0142923119, -0.00310169579, 0.0527445413, -0.0107915131, -0.01928268, -0.0263722707, 0.0325065255, -0.00989274401, -0.00119181164, -0.0546552092, 0.056767, -0.0201374535, -0.00335938483, 0.0258443225, 0.0173720103, -0.0130227227, -0.0338138267, -0.00136858, -0.0143174529, 0.00202380144, -0.0209670868, -0.0160395689, 0.0166680794, 0.0449007377, -0.0519400463, 0.00531405024, -0.0424118377, -0.022978317, 0.0373586193, 0.0146694183, -0.0235565454, -0.036353007, 0.0154864807, -0.038540218, 0.00822090823, -0.00415759208, 0.0333612971, 0.0228526145, -0.0317271724, -0.0029084289, 0.00233648508, -0.0105463937, -0.0102887051, -0.0228400454, -0.0303193107, -0.0311992243, 0.0520406105, 0.00389676052, -0.0290874317, -0.000719250878, 0.0193329602, 0.0191318374, -0.0215453152, -0.00576657709, -0.00549946073, 0.0213064812, -0.00401932, -0.00757982768, -0.0276544299, -0.0392190106, 0.0344423354, 0.00804492552, 0.0382133946, 0.0369563736, -0.0292634144, -0.00436500041, -0.00524805672, -0.0242856182, -0.00325882318, -0.0115960054, -0.0109423548, -0.028911449, 0.0163663942, -0.0389424637, 0.0354228094, -0.0214950349, -0.0120422477, 0.0616945177, -0.00707702, -0.0139906276, 0.0253666546, -0.00389990304, -0.0029084289, -0.000175589914, -0.0127336076, 0.0304701533, 0.0219349917, -0.0221486837, -0.0249895491, 0.0329841934, -0.0207031127, -0.0358753391, -0.0176988356, -0.0140534788, 0.0097858971, -0.0387162, 0.0146442773, 0.0138272149, -0.00374591816, -0.0153859193, -0.0269002188, 0.0178622473, -0.0563647561, -0.0464845821, -0.0473644957, -0.00494637201, -0.00419216, -0.00994302426, 0.0475404784, 0.0077369553, 0.0262214281, 0.0117719881, -0.00795693416, -0.00698902877, -0.0324311033, -0.0274784472, -0.00942136161, -0.0211304985, 0.0528451, -0.0154236294, -0.00537375873, -0.0152853578, -0.0442973673, -0.00375848846, 0.0131861353, 0.0575212128, 0.0216458756, -0.0464343019, -0.00535490317, -0.0151093751, -0.0163412541, 0.00517263543, -0.0281320978, 0.00113917398, -0.0174977127, 0.0240342133, -0.00624110224, 0.0137266535, -0.0112251844, -0.0114514483, -0.0226892028, 0.0302941706, 0.0027088772, 0.00270259194, 0.0104584023, -0.0259700231, 0.0328836329, -0.0416324884, 0.0137643637, 0.00587970903, 0.0275035873, 0.0410794, 0.000835132378, 0.0428643674, -0.0166932195, -0.00364535674, 0.0295148194, -0.00268373662, 0.038540218, -0.0353222489, -0.0366044082, 0.00641708495, 0.00962877, 0.00774952536, 0.0332356, -0.00242447644, 0.00896883477, -0.00550260302, -0.0162532628, -0.0050217933, 0.00347251655, 0.000432100467, -0.0333864391, -0.0285092033, -0.0374089032, -0.0212310608, -0.0413559414, -0.00427700905, -0.00604312168, 0.0185913183, -0.0400737822, 0.00773067027, -0.0258443225, 0.0520406105, -0.0033876677, -0.032632228, 0.0506076068, 0.0476661809, -0.00438699825, 0.0291125719, 0.0189558547, -0.0288360287, -0.00555288373, 0.00624424452, 0.0193455312, -0.0347188786, -0.00853516255, -0.0179125294, -0.0029634235, -0.0225383602, 0.0081517715, -0.0369060934, 0.0071398709, -0.0226514917, 0.0129850116, -0.00546175, 0.044724755, 0.00547432, 0.00153356383, -0.0164920967, -0.0241976269, -0.0199614707, -0.0201625936, 0.00953449309, 0.0283835, 0.00497779762, 0.0339898095, 0.0359759, 0.0156373233, 0.0462331772, -0.0152979279, 0.0201500226, 0.0567167215, -0.0189558547, -0.0105338236, -0.0106469551, -0.0194838028, -0.0382385328, -0.0204642788, -0.0054366095, -0.0137643637, 0.0178873874, -0.131232843, -0.0115457242, -0.0128530245, -0.00497465488, -0.0274030268, -0.00142200338, 0.00517577818, 0.0208665244, 0.0336881243, 0.00633537862, -0.00447813235, -0.0132364156, 0.0337635465, -0.0295651, 0.00293042674, 0.0029917066, -0.0509344302, -0.0345428959, 0.0161652714, -0.00310640945, -0.00914481748, -0.00857915822, -0.0577726178, -0.00838432, -0.0223875176, -0.010119007, 0.00462268945, 0.00290371524, 0.0386910625, 8.75494443e-05, -0.0454035476, -0.0178873874, -0.0401240624, 0.0209922269, 0.000418351818, 0.0287103262, 0.00435243035, -0.0128718801, 0.00058412127, -0.00921395328, 0.0235942565, 0.0261711478, 0.0172588788, 0.012237085, 0.00979218259, 0.000625760062, -0.0233931337, 0.000554267084, 0.0119919665, -0.0307969786, 0.0354982316, -0.0212687701, -0.00690103741, 0.00932708476, -0.00323996786, -0.0145437159, 0.0108480789, -0.0396464, -0.0097167613, 0.0126456162, 0.0130730029, 0.00135286723, -0.0392190106, -0.0178748183, 0.00205365568, 0.0220104121, 0.0149962436, -0.0203762874, 0.0405011699, 0.00210865028, 0.00441842386, 0.0217841491, 0.00245118816, 0.015561902, 0.0438951217, 0.0174600016, -0.0069953138, 0.0409285575, -0.0201751646, -0.0167812109, -0.0446996167, 0.0255426373, 0.0218218602, 0.0175102819, -0.0014094332, -0.0263219886, 0.00977332704, 0.00920766778, -0.0318528749, -0.0135255307, 0.0140157677, -0.0197603479, -0.00442785118, -0.0066496334, 3.59674523e-05, 0.0418336093, -0.011878835, -0.0370317958, -0.0191192664, -0.0135632409, -0.00609968742, -0.00389990304, -0.00456926599, 0.0025281806, 0.011614861, -0.0114137372, 0.0252660923, -0.0192575399, 0.0255929176, 0.0182016436, -0.0464845821, -8.43087e-05, -0.0144934356, 0.00244176039, -0.00861058384, 0.0249266978, 0.00730328355, 0.0210550781, -0.02767957, -0.00345680374, -0.044724755, 0.0299673453, 0.00429900689, -0.00749183632, 0.0258191824, -0.00486780796, 0.0259951651, -0.0241724867, -0.00657421211, -0.0139906276, 0.0190689862, -0.000575086451, 0.00976704154, 0.0136889424, -0.0290120114, -0.0292885546, -0.0053266203, -0.00960362889, -0.0196095053, -0.0057980027, 0.0130227227, -0.0369312353, 0.00279529719, 0.0274030268, 0.0186164603, -0.026950499, -0.000650507631, -0.00586399622, 0.0142797418, 0.0193078201, -0.0235314053, -0.0357244946, 0.00186824531, 0.0133872582, -0.00705816457, -0.00191852613, -0.0202631559, -0.00533919036, -0.0577223375, -0.0323305428, -0.000615546771, 0.0216458756, -0.0144808656, 0.00285657682, -0.0446996167, 0.00156577502, 0.0226766318, -0.0268499367, 0.00584514067, -0.00705187954, -0.00177711144, 0.0274281669, -0.00305141485, -0.0323054, 0.00215107459, -0.0321797021, 0.0257437602, 0.00499036768, 0.0103766965, -0.0233302824, -0.0254169349, -0.00759868324, -0.00450327247, -0.0196346454, -0.0107475175, -0.0166178, 0.022739483, 0.0261208657, -0.0057980027, -0.0325316675, 0.00778723601, -0.0178245381, 0.0480935685, -0.0128970202, 0.0115708653, -0.0220104121, -0.0320791379, -0.0263722707, 0.0225635, -0.0319534354, -0.0212939102, 0.0123125063, -0.0279561151, 0.0103201307, -0.0147196986, 0.019785488, -0.010621815, 0.0356490761, -0.0164795257, -0.00881170668, -0.0312243663, 0.00459126383, -0.0133244069, 0.0359004773, 0.00159327232, 0.0323556848, -0.0326825082, -0.0125010591, 0.0154487705, 0.0149333924, -0.0241976269, 0.0199866109, -0.0224629398, 0.0162909739, -0.0108229378, -0.00244961679, -0.0132992668, 0.0303193107, -0.0234057046, -0.01607728, 0.0100938668, -0.0300176274, -0.00509721413, -0.0121679492, -0.0184530467, -0.00366106932, 0.0202254448, 0.014581427, 0.0157755949, -0.00282515143, -0.0251403917, 0.00191695476, -0.0230034571, 0.0293136965, 0.00908825174, 0.00427072402, -0.0366295502, 0.0544038042, 0.0208288133, 0.00518834824, 0.0103075607, -0.0237828102, -0.0210425071, -0.00844717119, -0.0273778848, -0.00477667432, -0.0173845794, -0.0158887263, 0.00901283, -0.0155870421, 0.0299170651, -0.0156750344, -0.00378991384, 0.0166429393, 0.00123345049, 0.0175731331, 0.0067941905, -0.00582314283, -0.0129221613, 0.001173742, -0.0135506708, -0.000698038668, -0.017057756, 0.0011776702, 0.000272223289, 0.0283583608, -0.0102321394, 0.0130101526, -0.0099116, -0.0205397, 0.01607728, 0.0192449689, 0.00245118816, 0.0072655729, -0.0135632409, -0.0151219452, 0.00303255976, -0.0220984034, 0.0221989658, 0.0071398709, 0.0172337387, -0.0038779052, 0.0222241059, -0.00551517308, -0.00634794869, 0.00336252735, 0.00404131785, -0.0272270441, 0.00693246257, -0.00668105902, 0.0208539534, 0.0151847964, -0.012475919, -0.0080889212, -0.0193455312, 0.0425124019, -0.00407588575, -0.00226577767, -0.0106720962, -0.0315009095, -0.0149962436, -0.0222115349, -0.0296908021, -0.0141289, -0.0172463078, 0.0142168915, 0.00768667459, 0.00179596664, -0.00314726261, 0.0153482091, 0.00405074563, -0.0114200227, 0.0225006491, -0.0197980572, 0.03016847, -0.00876142643, -0.0114891585, 0.00543346722, -0.00888712797, 0.0414565057, -0.0251655318, 0.00348822935, -0.0151345152, 0.0617950819, 0.00698274374, 0.0104646878, 0.00168440619, -0.0174097214, 0.0316517539, -0.00181325071, 0.00207565352, 0.0134752495, -0.00989274401, 0.0184907578, -0.00170954654, 0.000901125895, 0.0126770418, -0.0231291596, -0.00152256491, 0.00952192303, -0.00402246276, 0.0204391386, 0.0149962436, 0.00409788359, 0.00513492478, 0.0142043205, 0.000110185618, -0.0086294394, -0.00472325087, 0.0248512756, 0.0270762015, 0.00903797057, 0.0285343435, -0.00875514094, -0.00131987047, 0.000302077504, -0.0272270441, 0.00727814296, 0.00755468756, -0.0536998734, -0.0315009095, -0.035095986, 0.00143614481, 0.0290874317, 0.0412805229, -0.043719139, -0.0262214281, 0.00337509741, -0.0197100658, 0.00856658816, -0.00852887798, -0.0201123133, -0.0534484722, 0.0136512322, 0.017547993, -0.0180885121, -0.0086231539, 0.0165926572, -0.0212059189, 0.0321797021, -0.00327139348, -0.0325568058, 0.0312746465, -0.00711473078, -0.0468868278, 0.0226892028, 0.0273276046, 0.0099116, -0.00117688451, 0.0241724867, -0.00883684773, -0.0204894189, -0.0511104129, 0.0507835895, 0.00137722201, 0.0120422477, 0.0382888168, 0.031375207, 0.0190061349, 0.011627431, -0.0238079503, 0.0183022041, -0.0133746881, -0.00622853171, 0.031400349, 0.0323054, -0.00312840729, 0.0439956859, 0.0329339132, 0.0154362, -0.00186196016, 0.015561902, -0.0172211677, 0.0260957256, -0.0129347313, -0.000856344588, -0.000524805684, -0.00538632879, -0.012130239, -0.0102447094, -0.012475919, 0.00226263516, 0.00789408293, 0.0113885971, 0.015825877, -0.0177993961, 0.0265482534, 0.00189495692, -0.0401240624, 0.0241850559, -0.0167057905, -0.00710216025, 0.00874885637, 0.0112189, 0.0109172147, -0.00697645871, -0.0297410823, 0.0069953138, 0.0177742559, -0.00301841809, 0.0241096355, -0.0257437602, 0.0124319233, -0.00561259221, -0.0107035218, 0.0150465239, -0.0198357683, -0.00257531879, -0.00965391, -0.037308339, -0.00395646924, 0.0164669566, 0.00131044292, -0.00517263543, 0.0111623332, 0.0338892452, -0.00764896395, 0.0010362555, -0.0135381008, 0.00840946101, 0.0142420316, 0.00578543264, -0.00761753833, 0.00834661, 0.0318528749, -0.0321042798, 0.0256306287, 0.0439956859, -0.00944021717, 0.0097796116, 0.0236822478, -0.0452527031, 0.0209545158, -0.00284243538, 0.0254923571, 0.0284589231, -0.0181136522, 0.039797239, 0.00390933082, 0.00545232231, -0.00328082102, 0.0105086835, -0.0199866109, 0.0161024202, -0.00981103722, -0.00676276535, -0.0324562453, 0.00521034608, -0.00190909847, 0.0215453152, 0.020024322, 0.0400737822, 0.0333361588, 0.0045504109, -0.0193329602, -0.0171583164, -0.00455669593, -0.0054711774, -0.0139026362, -0.00609340239, 0.00988645852, -0.000383194565, -0.0121553792, -0.0252535231, -0.00392818591, -0.0624990128, 0.0166052282, 0.016089851, -0.00851630699, 0.0209796559, 0.00667477399, 0.0322802626, 0.0157001745, 0.0172211677, -0.00810149126, -0.00515378034, -0.00236005429, -0.00420787279, 0.010502398, 0.00851002242, 0.04248726, -0.0196974967, -5.47490927e-05, -0.00246847211, 0.0323556848, -0.00930823, -0.0115645798, -0.0127084674, -0.00517263543, 0.0139529174, 0.0209293757, 0.00262088585, 0.00143928733, 0.0433671735, 0.0177616868, 0.0136763724, 0.00825233292, -0.0322299823, 0.00807006564, 0.00274973037, 0.0359004773, 0.00785008725, -0.0141791804, 0.0211304985, 0.0349451415, 0.0177993961, 0.0220355522, 0.010489828, -0.0209042355, 0.0122182304, -0.00467611291, -0.0167183597, -0.00979218259, -0.0416073464, -0.00604940671, 0.0101252925, 0.00490551861, 0.0229531769, -0.0183399152, -0.00908196624, -0.00700159883, 0.0180885121, 2.42933766e-05, -0.000735356414, 0.0248387065, 0.0365038477, -0.0123439319, 0.0198734794, -0.0028455779, 0.0116777113, -0.0505573265, 0.00189652829, 0.0234559849, -0.0118914051, 0.000691753579, 0.0128970202, -0.0103578409, 0.0325065255, 0.00613111304, 0.0339898095, 0.0171834566, -0.00254389341, 0.0353976712, -0.00543975225, -0.00291785668, 0.0121930894, -0.00859801378, 0.00946535729, 0.0335875638, -0.0227646232, -0.00375848846, -0.0044938447, 0.00124916318, 0.0109423548, 0.00347565906, -0.0124193532, -0.0199614707, -0.0125136292, -0.0143551631, -0.0237451, -0.0119919665, 0.00615311088, 0.00696388818, -0.000408138527, -0.0225257911, -0.013110714, -0.0173971504, -0.0144557245, -0.0166806486, -0.000846131297, -0.00813291688, -0.00933965482, 0.0127776032, -0.00624110224, 0.00228306185, -0.000709430431, -0.0227143429, -0.00598969823, 0.00311269471, 0.0139780575, -0.000642651226, -0.0111434786, -0.0213190522, -0.0280818176, -0.023468554, 0.0118725495, -0.00471696584, 0.0012051675, -0.00292571308, 0.0149208223, -0.00730956858, 0.00818319712, -0.0107098063, 0.000264563336, 0.0279058348, -0.0149711026, -0.00303884479, 0.014845401, -0.0108669344, -0.00384962233, 0.0232045799, 0.00790036749, 0.0140534788, -0.00140314805, -0.00356993545, -0.0135758109, 0.00410731137, -0.0172085967, 0.00647365069, -0.0347691588, -0.0179250985, 0.0213567615, 0.00477353157, 8.1509861e-05, -0.0177616868, -0.0457806513, -0.0118851196, 0.059079919, -0.023707388, -0.0202505849, -0.010119007, -0.00107003783, -0.0448253155, -0.0225383602, 0.0433168933, 0.00572572416, -0.0302187502, 0.0165926572, 0.0117531326, 0.00594256, 0.0405514501, 0.0114514483, 0.023493696, -0.00168440619, 0.00827747397, 0.0190061349, -0.0309729613, -0.0142420316, 0.0167560708, -0.0145185757, -0.0165046658, 0.0287354663, -0.0230788793, -0.0224252287, -0.00441528112, 0.0139780575, 0.0111686187, 0.0147574097, -0.00578857493, 0.0249895491, 0.0103201307, 0.00867343508, 0.00426758127, 0.0184907578, -0.0352468267, -0.00321797, 0.00323368283, -0.00301056192, 0.00771181472, -0.00132065616, -0.0122747961, 0.0027434451, -0.00365792681, -0.0115394397, 0.00732213864, -0.0182267837, -0.002999563, -0.0249769781, -0.00655535702, -0.0216458756, 0.0131861353, 0.0181136522, 0.0124130677, 0.00849745236, -0.0187044516, 0.0110492017, -0.0527948216, -0.0207659621, -0.0110743418, -0.00964134, 0.00329024857, 0.0467108451, 0.000105275387, -0.017032614, 0.0101504326, -0.00517892046, 0.0265985336, 0.0197603479, 0.0381631143, 0.0149459625, -0.0128341699, -0.0318528749, -0.00304827234, -0.0164166745, 0.011853694, -0.00289271632, -0.0116400011, 0.0108669344, 0.0131484242, -0.0198986195, 0.0164795257, -0.0232422911, 0.0143803032, -0.00632595085, -0.00597084267, -0.0254797861, 0.0109989215, -0.00842203107, 0.0112251844, -0.0358250588, 0.0324562453, 0.00244804565, -0.0129724415, 0.00263659842, -0.0097167613, 0.00500293775, -0.0166429393, -0.0194083825, 0.0204139967, 0.0210425071, 0.0260957256, -0.00683190115, -0.0226389226, 0.00759239821, 0.000893269491, 0.0208413843, 0.00694503309, -0.0207031127, 0.007535832, -0.00312997866, -0.000259653112, -0.0118851196, -0.000738891773, 0.0236068275, -0.0205397, 0.0105526792, -0.0205899794, 0.0176485553, -0.0235439762, 0.020740822, 0.00490551861, -0.0151596554, -0.00323054031, -0.0138272149, 0.0101504326, 0.0326573662, 0.0142420316, -0.00671248417, 0.0111686187, 0.0103452709, 0.0178873874, -0.0323556848, -0.0030891255, -0.00594884483, -0.0157001745, -0.0120233921, -0.000133263718, 0.00887455791, -0.00287228962, -0.0141414702, 0.012105098, 0.0244741701, 0.00472639361, -0.00923280884, -0.00643279729, 0.0129598714, 0.01160229, -0.00158934412, -0.00428015133, 0.0209168047, 0.00443413667, 0.00369878, 0.00859801378, 0.0244238898, 0.00397846708, 0.0309729613, 0.0038433373, 0.0189432837, -0.00233962759, 0.0115897199, -0.0050217933, -0.00477981661, 0.0173343, -0.00489294855, -0.00468868297, 0.016303543, 0.0129473014, 0.0264728311, -0.0162029825, -0.00632909359, 0.00094747846, 0.00790036749, 0.0201374535, 0.00792550854, -0.0174097214, 0.0217338689, 0.00603997894, -0.0199363306, 0.0263974108, -0.0359004773, 0.0166303683, -0.0273527447, -0.0231040195, -0.00751697691, -0.00288014603, 0.0174348615, -0.00193581008, -0.00823347829, 0.0319785774, 0.014845401, 0.0108292233, -0.0102007138, -0.00984874833, -0.0440459661, -0.0292885546, -0.00834032428, 0.00394704146, 0.00612482755, 0.0189307146, -0.00911339186, 0.0283583608, -0.00204108539, -0.0042738663, -0.00410731137, 0.0166303683, 0.00187610171, 0.0150339538, 0.00685704174, -0.00759239821, -0.00327453599, 0.0174097214, 0.0144808656, -0.0251781, -0.00588285131, 0.0250901096, 0.0128844501, 0.00326510821, 0.00144950068, 0.0226012114, 0.00633852091, -0.000597477076, -0.0123062218, 0.00712730084, 0.00623167446, 0.0120359622, -3.40954284e-06, 0.0135255307, -0.00587656628, -0.00370192248, 0.0236193966, -0.00340023777, 0.00417959, 0.00140314805, 0.00340966554, -0.014330023, 0.0154487705, 0.00646736566, -0.000513021077, 0.0157001745, 0.0165046658, 0.00865457952, 0.00559059437, -9.37363438e-05, -0.00677533541, -0.00227834797, 0.00566915795, -0.00260045915, -0.000524805684, 0.00832147, -0.00277801324, 0.00482695503, -0.0138020748, 0.00365478429, -0.0223246664, -0.00790036749, 0.00632595085, 0.00391875859, 0.00768038956, -0.00151235168, -0.0089562647, -0.0307215583, -0.0331853144, 0.00939622149, -0.0251278207, 0.0128844501, -0.0114137372, -0.013588381, -0.0265231133, 0.0277047101, 0.0402246267, 0.0236068275, 0.00180853682, -0.0085540181, 0.0080135, -0.00436814269, -0.00440271106, 0.0011423165, -0.0240216441, -0.000204854907, 0.00521348836, -0.0154110594, -0.00662449282, 0.0172337387, -0.0238708016, 0.0131232841, -0.0213316213, -0.00222649588, 0.00598027045, -0.0101818582, 0.0220355522, 0.00375534594, 0.0120485323, 0.00911339186, 0.00203637173, 0.018767301, -0.00957848877, 0.0151847964, 0.0194335226, 0.00264759734, -0.0146568483, 0.00444670673, -0.0513366796, -0.0136889424, -0.00571943913, 0.0147071285, 0.0240467843, -0.0267745163, -0.0132741267, -0.00297442242, 0.011746848, -0.0194838028, -0.0180005208, -0.0276544299, -0.0182267837, 0.00451270025, 0.0117217069, 0.0132741267, -0.0164041054, -0.0372077785, 0.0181387924, -0.00810149126, -0.0130604329, -0.00790665299, -8.96608472e-05, 0.00987388846, 0.0106658107, 0.00676276535, 0.0176611245, 0.018541038, -0.0222869571, 0.0202128738, 0.00406960072, -0.000547196309, 0.00515063759, -0.0200997423, 0.00364849926, -0.0136009511, -0.0180130899, 0.0291125719, -0.00345680374, 0.0129221613, 0.0121490937, 0.0128718801, -0.00563459, -0.0135003896, -0.014091189, -0.0134501094, 0.00541461166, 0.00435243035, -0.0214447528, 0.00466354238, -0.0052920524, 0.0164920967, 0.0018525325, 0.00538632879, 0.0183776263, 0.00835918, 0.0233554225, 0.00708330516, -0.0102824196, -0.0127084674, -0.0206025504, 0.00921395328, -0.00600226829, 0.023481125, 0.00657421211, 0.0370317958, 0.00345366122, -0.00115960056, 0.025454646, 0.00853516255, 0.0235942565, 0.0130855739, 0.00648622075, -0.0126519017, 0.0239336528, 0.0103452709, 0.0131735653, -0.00816434156, 0.00352908229, -0.00752954697, -0.00598655548, 0.0159012973, -0.00185881765, -0.00267902296, -0.0054366095, 0.0319785774, 0.0115142986, -0.0142923119, 0.0135129597, 0.0180885121, 0.0103515564, 0.0147448396, -0.0153984893, 0.0248009954, -0.00656164205, 0.0162658338, 0.0222115349, 0.006052549, 0.0209168047, 0.00503122061, 0.066974, -0.0217715781, 0.0100184456, 0.0236948188, 0.00091526733, -0.00473582093, 0.00896883477, -0.0198734794, -0.0407274328, -0.0349200033, 0.0134752495, -0.00180225179, 0.0183776263, 0.0184656177, 0.00108496496, 0.00575714931, 0.00335938483, 0.00870486069, -0.0145562859, -0.000199748261, -0.0100750113, -0.0224629398, 0.0185913183, -0.00768038956, -0.0198860485, -0.0107223764, -0.0128153143, -0.0180633701, -0.00383705227, -0.0282075182, -0.00644851, -0.0114137372, 0.00479867216, -0.0039061883, 0.001637268, 0.0262214281, 0.0148076899, -0.00453784037, 0.00225320761, -0.0078123766, -0.0161401313, 0.00393132865, 0.00259574526, 0.00141964643, -0.0159138683, 0.00376477349, 0.0224503689, -0.0136889424, 0.00357307796, 0.0168692023, -0.00742270052, 0.00716501148, -0.00369563745, -0.00686332677, -0.0164920967, -0.0141414702, 0.00252346671, -0.00240562111, 0.000759711198, 0.00651136134, 0.00103546982, -0.00661820779, -0.0104018366, -0.00940879155, -0.0144054443, 0.00849745236, -0.000158305906, -0.0367049724, 0.00886827335, 0.0049306592, 0.00642337, 0.0175228529, 0.0135381008, 0.0050563612, -0.0191066973, 0.0154362, 0.0273276046, -0.0132615566, 0.0170954652, 0.0136638023, 0.00212279172, 0.0205522701, 0.0129975826, 0.0183147751, -0.000609654468, 0.0174851418, 0.0339143872, 0.0270007793, 0.0145060057, -0.002999563, 0.0269002188, 0.00637623155, 0.00864200946, -0.00254389341, -0.0307466984, -0.00200966, 0.015323068, 0.00162469782, 0.00488666352, 0.00209136633, 0.0193958115, 0.00844088662, -6.35875112e-05, 0.0177491158, -0.00812034588, 0.0203260053, 0.017057756, -0.00117845577, 0.00918252766, 0.0134375393, 0.0188552924, -0.00827747397, 0.00980475266, -0.00553402863, -0.0182142127, -0.00783751719, 0.0189684257, 0.00744784065, 0.0253540836, -0.00795693416, -0.0135381008, -0.00816434156, -0.00738499, 0.0174851418, 0.0306712762, 0.00952192303, 0.00369878, 0.00947164185, -0.00680676103, 0.0122810807, -0.0124822045, 0.00407588575, 0.00688846689, -0.00348194409, 0.0180130899, 0.0212687701, -0.0161527, 0.00432100473, -0.0153356381, 0.0127713187, -0.010012161, 0.0174222905, -0.0151345152, -0.00452527031, 0.0340149477, -0.00935851, -0.00813920144, -0.00822090823, -0.0297913626, 0.0162532628, -0.000571158249, 0.00422672834, 0.00819576718, -0.00429586414, -0.0233302824, 0.0237953793, -0.0078689428, -0.00856030267, 0.0279812552, 0.00399417942, -0.00289743, 0.00841574557, -0.0126770418, -0.00607768958, 0.00658678263, -0.00170326151, -0.0100373011, 0.017032614, 0.0123502174, 0.00972304586, 0.0150465239, 0.0250901096, 0.0196597856, 0.00606826181, 0.00312055112, -0.00317554572, -0.0164795257, -0.0120485323, -0.0197352078, 0.011866265, 0.0224252287, 0.0149208223, -0.012607906, 0.0141791804, -0.0205899794, -0.0108292233, -0.00513492478, -0.00823347829, 0.00207879604, -0.0464594439, -0.011614861, -0.0157127436, -0.00301056192, -0.0132364156, -0.00185881765, 0.00154063455, -0.0089562647, 0.0274533071, 0.00651136134, 0.0144682946, -0.0109297847, -0.0173971504, -0.0208036732, 0.0177365467, -0.0175731331, 0.024725575, 0.0159138683, -0.0306712762, -0.00941507611, -0.00166240835, 0.0286097657, 0.0104332622, 0.0104521178, -0.000278508407, -0.0271516219, 0.00681304606, 0.00483952509, 0.0102761351, -0.00854773261, 0.00425186846, 0.0165298078, 0.0288611688, 0.0379368514, -0.0304952934, -0.0194838028, -0.00794436317, -0.016303543, 0.00831518415, 0.00976075698, -0.0229406059, -0.00354479509, 0.0282326583, -0.0127901742, -0.000467061327, 0.0079380786, -0.00194209523, 0.00141414697, -0.0091008218, -0.0188552924, -0.0078123766, 0.0186918806, -0.0107475175, -0.00809520576, 0.00123580731, -0.0110869128, 0.0107475175, -0.0130101526, 0.00438071322, 0.026950499, -0.0100750113, -0.00752326194, -0.0147574097, 0.0217087269, 0.00459126383, -0.0151470853, -0.000778566464, 0.0115708653, 0.00572886644, 0.0090254005, 0.0234182738, 0.0105526792, -0.00162626908, 0.00236948184, -0.019270109, 0.00603369391, 0.0220481232, -0.00262874202, 0.0132615566, -0.0474650599, -0.00291785668, 0.00268845051, -2.01074017e-05, 0.0201751646, 0.00867343508, -0.00101975712, -0.00599284051, -0.010370411, 0.0126770418, -0.00233177119, 0.00297442242, 0.0239462219, -0.00628195517, 0.0147825498, -0.0351965465, -0.0273024645, -0.00290214387, 0.00803864, 0.00106689532, -0.00631652307, 0.00825233292, 0.0132741267, -0.00738499, -7.60104e-05, 0.0172337387, 0.000176964779, 0.0154236294, 0.036302723, 0.0288863089, -0.0174222905, 0.0161778424, 0.0110554872, 0.0128027443, -0.00373649062, -0.0112377545, -0.0208539534, 0.0144934356, 0.0238330904, 0.00330596138, 0.0113131758, -0.00704559451, -0.0130604329, -0.028408641, 0.00431786198, 0.0151345152, 0.00933965482, -0.0265733935, 0.00347880158, -0.00989274401, 0.0193832405, 0.0462080389, -0.00408217078, 0.00497779762, -0.0124570634, -0.0257689, 0.0064547956, -0.00921395328, -0.00937736593, 0.0240467843, -0.00856030267, -0.0154990507, -1.91499075e-05, -0.00703302445, -0.00789408293, 0.00157677394, -0.0270007793, -0.0146317072, 0.00394704146, -0.000755783, 0.0085540181, -0.0080826357, 0.00269944943, -0.000453705492, 0.00188867189, -0.00201594504, -0.0163538251, 0.00410416862, -0.00474839145, -0.00256589125, 0.0197477769, -0.027176762, -0.00433671754, -0.000419137446, 0.000420315919, 0.0315511897, 0.0120485323, -0.00639508711, 0.00382762449, -0.0250272583, -5.22939772e-05, -0.00320225721, 0.00810777582, -0.00851002242, -0.00186667405, -0.00893740915, 0.00813291688, 0.00462268945, 0.0191946886, -0.010024731, -0.00410102634, -0.0137769338, 0.00135993806, 0.00948421285, 0.00381191168, 0.00454098312, 0.015813306, -0.0114577329, 0.00168754871, -0.00324625289, -0.00184939, 0.00982989278, -1.91990093e-05, 0.00299327774, 0.00214950345, -0.00292728422, -0.00192009739, -0.00797578879, 0.0147322686, 0.0370569378, 0.00725300284, 0.0109674959, 0.0233805627, 0.00725300284, 0.0028612907, 0.00994931, 0.0145060057, 0.00847231131, -0.0029917066, -0.0458057933, 0.00217307243, -0.00962877, -0.00474524871, 0.0118411239, 0.00140314805, -0.0127021829, 0.0132866967, -0.00588285131, 9.66333755e-05, -0.0285594836, 0.00589542184, 0.00619082106, 0.00883684773, -0.00563459, -0.00899397489, -0.0115457242, 0.00642022723, -0.0160018597, -0.00173311564, -0.0187295917, 0.011376027, 0.0052009183, 0.00138664967, -0.0030467012, -0.0105212536, 0.0154864807, -0.0349954255, -0.00195309415, -0.00203794288, -0.0178748183, -0.00353536755, 0.010012161, -0.00954077858, -0.00245590205, 0.00871743076, -0.0140534788, 0.00828375854, 0.0190941263, 0.00397846708, 0.0195592232, 0.00601169607, -0.0104269767, -0.0119165452, -0.0178999584, 0.0225886405, -0.0220481232, -0.0153733492, -0.0016686935, -0.00147306977, 0.0041481643, 0.0111560486, -0.00516006537, 0.0184907578, 0.0104018366, -0.0137266535, -0.00565658789, -0.0116525711, 0.00989902858, 0.00578857493, -0.0038433373, 0.0162029825, -0.00832775421, 0.00774952536, 0.00660563773, -0.0238205213, 0.00374277565, 0.00594884483, -0.00655535702, 0.0081517715, 0.0019672357, 0.0164795257, 0.0311489441, -0.00416387711, -0.0281320978, -0.0258694626, 0.00307341269, -0.0283080805, -0.00984246284, -0.0181513615, -0.00681933109, -0.0154236294, -0.00015221721, 0.0304198731, 0.00218092883, 0.0131861353, 0.0151596554, -0.00629138295, 0.0152727878, 0.00141179, 0.0318025947, 0.00366106932, -0.00866715, 0.021017367, -0.00596770039, 0.00142043212, -0.00196095044, -0.00500922278, 0.017309159, -0.00599598326, 0.00514121, 0.00869229, -0.0144054443, 0.0150213838, 0.00309541053, -0.0048898058, 0.00459754886, -0.00740384497, 0.010370411, -0.0255929176, -0.0181136522, 0.0184907578, 0.0169069134, 0.00869229, -0.0171708874, 0.0126330461, 0.0221109744, 0.000785637239, 0.00184310495, -0.00298856408, 0.00798835885, -0.0245621614, -0.0129473014, -0.00765524898, 0.00823976286, 0.00340966554, -0.0107286619, 0.0216961578, -0.000318379491, 0.0028612907, 0.0227269139, 0.0183524862, 0.0103892665, 0.00741641549, -0.00238676579, 0.0115080141, -0.0194586627, 0.00596770039, -0.0149333924, -0.0109172147, -0.0240467843, 0.0101001523, -0.0085540181, 0.00262245699, -0.0135003896, 0.00440271106, 0.00255803484, -0.0121930894, -0.0121553792, 0.00441842386, 0.0282075182, 0.00579486, -0.00775581039, -0.0147699798, 0.00266488153, 0.0217212979, 0.00689475238, -0.0147574097, -0.00683818618, -0.00444356399, 0.0286349058, 0.00838432, -0.00749183632, -0.0138272149, -0.0235439762, 0.00031091593, 0.0113571715, -0.000415994902, 0.000867343508, -0.0101064369, 0.0184279066, -0.00133008382, 0.00576657709, 0.0151847964, -0.00973561592, -0.0275287274, 0.00647993572, -0.00108810759, -0.0135003896, 0.00571629638, 0.00157363131, 0.0049558, -0.00620967662, -0.00334681454, -0.00480181444, -0.00609654468, -0.00436185766, -0.00258160383, -0.00670619914, 0.0120736724, -0.0115582943, 0.000539732748, -0.0380374119, 0.0144305844, 0.00350079942, 0.0144934356, 0.00620967662, 0.000342930638, 0.0308724, 0.00809520576, -0.0160018597, -0.00437128544, -0.0106092449, 0.0280818176, -0.013839785, -0.0221612547, 0.0119228307, 0.0167560708, -0.00620339159, -0.0198106281, 0.00947792735, 0.00510664191, 0.0121930894, -0.00852259248, -0.0177114047, 0.0214321837, -0.00210236525, 0.0216584466, 0.0111309085, -0.0135003896, -0.0132112755, 0.0329841934, 0.0343166329, -0.00372706284, 0.0231668707, 0.00720272213, -0.0112377545, -0.00599912601, -0.00656792708, -0.00251403917, 0.0109549258, 0.00335309957, -0.00481124222, 0.0131484242, 0.0133998282, 0.00306398515, -0.00254703593, -0.00145578571, 0.0288863089, 0.00418901769, -0.00474524871, -0.0111749042, 0.00948421285, 0.00135758112, 0.00413873699, -0.00779352104, -0.0240216441, 0.0211430695, -0.00381191168, -0.0157881659, 0.0130478628, 0.00319597218, 0.0112628955, 0.00432728976, 0.0167937819, 0.00253132312, 0.0176485553, 0.0273024645, -0.0189684257, -0.0127336076, 0.000503593474, -0.0339646675, -0.0187421609, 0.0126896119, -0.00220921193, -0.00248261355, -0.0166555084, -0.0257689, -0.000310326694, 0.00194052397, 0.0232548621, -0.00507207401, -0.0101378625, 0.0106783807, -0.00507207401, -0.00273873145, 0.000654435775, 0.00697017321, 0.00861058384, -0.00717129651, 0.00959105883, 0.0170200448, 0.00148642564, 0.00702673942, -0.00327139348, 0.0129473014, 0.00463525951, 0.0150339538, -0.0120422477, -0.00140314805, 0.0109172147, -0.0147699798, 0.0230034571, -0.0351714082, -0.0112126144, -0.00251403917, -0.00879285205, 0.0287103262, -0.0434677377, -0.00146364211, 0.0155870421, -0.0061154, 0.00670619914, 0.0317774527, -0.00712730084, -0.00777466595, 0.00564087508, 0.0206276905, 0.0171834566, 0.0278555527, -0.0136260921, 0.00372706284, 0.0227269139, -0.0107663721, 0.00223120977, 0.00183524855, -0.00113524578, 0.0217967182, -0.000898768951, 0.00585771119, -0.0150465239, 0.00927680451, -0.00717129651, 0.0171457473, 0.0102258539, -0.00764267892, -0.00842831563, 0.0284589231, 0.0365541279, 0.0274784472, 0.00805121, -0.0236571077, 0.016818922, 0.00827747397, -0.00810149126, -0.00732213864, 0.0100750113, 0.00999330543, -0.00485209562, 0.000804099662, -3.11308759e-05, -0.008767711, -0.0086985752, 0.0126141915, -0.0177239757, -0.0119668264, 0.0102195693, 0.0255174972, 0.00740384497, 0.0138146449, 0.0097858971, -0.0144305844, -0.00470753806, -0.00257217628, -0.0191821177, -0.0199614707, 0.0144431544, 0.0174348615, -0.035095986, -0.00488666352, -0.00321482751, 0.0150213838, 0.00594570255, 0.0265231133, 0.00609968742, 0.00286914711, 0.00303570228, -0.0170828961, -1.44483593e-05, -0.0224629398, 0.0232674312, -0.000621831859, 0.026673954, 0.00438699825, -0.0118411239, 0.017560564, 0.00784380175, -0.00562516227, 0.00881170668, -0.0124193532, 0.00353851, -0.0017425433, 0.0178999584, -0.00824604835, 0.00693874806, -0.0068696118, 0.00200808863, 0.00189495692, -0.0173720103, 0.00148956815, -0.00867972, -0.0157378856, 0.00116195739, -0.0105463937, -0.0287103262, -0.0139780575, 0.0130101526, 0.0050563612, -0.00919509772, 0.010131578, -0.00757354265, -0.0097858971, 0.0208413843, 0.0246627238, 0.0337384045, -0.0144180143, 0.00569744129, 0.0319785774, 0.0050217933, -0.00109989208, 0.0279058348, -0.00474210642, 0.0301181879, -0.00509407185, -0.0103138452, -0.00566287292, -0.0233302824, 0.00352279725, 0.000130906803, -0.0138523551, 0.016818922, 0.0166932195, -0.0180005208, 0.00996188, 0.0222995263, -0.00196252181, 0.00385276484, 0.0262214281, 0.0221109744, -0.0192449689, -0.00927680451, -0.000783280295, -0.00558430934, -0.0063228081, 0.015071664, 0.0137266535, -0.0137140835, -0.00721529219, -0.0477416031, -0.00467611291, -0.00168440619, 0.00835918, -0.00927680451, -0.00969162, 0.00210236525, 0.000423458463, -0.0198860485, 0.0163286831, 0.00628824, 0.00959734432, -0.0110994829, 0.00477353157, 0.0177491158, -0.00799464434, -0.0120296767, 0.0101630026, 0.00122009462, -0.00979218259, -0.0164418165, 0.00769924466, 0.0137643637, -0.00842203107, -0.0145311458, 0.0186164603, -0.00534233311, -0.00603683619, 0.00242919032, 0.0174474306, 0.0173845794, 0.033864107, -0.00152256491, 0.00273716, -0.0132992668, -0.0217212979, -0.0101692881, 0.00824604835, 0.0113068912, 0.000394193485, -0.00837175, -9.92849e-05, 0.0157127436, -0.0117782727, 0.00680676103, 0.000651686045, -0.0159641486, 0.00557802431, -0.00500922278, 0.0268499367, -0.0065239314, -0.00192638242, 0.0115394397, 0.0273024645, 0.0203260053, -0.00718386658, 0.0077181, 0.016818922, 0.00780609157, -0.00550888805, 0.0249266978, -0.0172840189, 0.00312683615, -0.0136512322, -0.00674391, 0.00970419124, 0.00145264319, -0.0164292455, 0.00582000054, 0.0115205841, -0.00944021717, 0.0039061883, -0.0131987054, 0.013839785, -0.00373020559, -0.0251655318, 0.000542482478, 0.0347943, -0.0177491158, 0.0355233736, -0.000157716669, -0.00759239821, -0.00538004376, -0.00438699825, -0.00362021639, 0.0142923119, 0.0166806486, 0.0114200227, 0.0212059189, -0.0257689, 0.0152350767, -0.00248889881, -0.00236476795, 0.00239776471, -0.00559373712, -0.00142593158, 0.0207785331, -0.0174725708, -0.0162532628, -0.000791922328, 0.0124444934, -0.00414187927, -0.0126896119, 0.017560564, -0.0108417934, -0.0111749042, 0.00751069188, -0.00186667405, 0.0297159422, -0.00341280806, 0.0199991819, 0.0230285972, 0.0146191372, 0.0106092449, -0.0204642788, 0.0223120973, -0.00465411507, 0.0122685106, 0.00243861787, -0.0133244069, -0.0108983591, 0.0235691164, -0.00483952509, -0.00350394193, 0.00849116687, 0.00325882318, -0.00877399649, 0.0138523551, -0.0266488139, -0.0024024786, 0.0210299361, 0.0188427232, -0.000104489751, -0.014581427, -0.00524177169, -0.000612797041, -0.00959734432, -0.014330023, 0.0055623115, -0.0276292898, 0.0265231133, -0.000411281071, -0.000797814573, 0.00749183632, 0.00413559424, -0.00295242458, -0.00312683615, -0.0167435, 0.00454726815, -0.0200620312, 0.000962405582, -0.00637623155, -0.0324311033, -0.000799778674, 0.00613425532, 0.0172085967, -0.0160018597, -0.00967905, 0.0304701533, -0.00685704174, 0.00750440685, 0.013098144, 0.00515063759, -0.00791922305, -0.00507521629, 0.00063754461, -0.0143803032, 0.0357496366, 0.0141163291, -0.00849116687, -0.0135129597, 0.00633223588, -0.00803864, 0.0298165027, 0.00554031366, -0.0067941905, 0.0160018597, -0.0116588566, 0.00729699852, -0.0154110594, 0.00579486, -0.023983933, 0.000667006, 0.0292885546, 0.0162281226, -0.0181387924, 0.0180130899, 0.00253917952, 0.00602740888, 0.00580743048, 0.0162406918, 0.00844717119, 0.0127021829, -0.00965391, -0.00484895287, -0.017547993, -0.0272019021, -0.0147448396, 0.00935222581, -0.0106720962, -0.0330596156, 0.0229154658, 0.0238833707, -0.00825861841, -7.56175814e-06, -0.0064139422, 0.0086231539, 0.0107915131, -0.00806378, -0.00374591816, 0.0146694183, 0.007535832, 0.0039061883, -0.00889969803, 0.00661192276, 0.00976075698, 0.00608397461, -0.00483009778, 0.00999330543, -0.0108166533, 0.0107349465, 0.00222806726, -0.01285931, 0.0034222356, 0.00194209523, 0.0188301522, -0.0049652271, 0.0104395477, -0.0277298503, 0.00680047553, -0.00593941752, 0.00593313249, 0.0109549258, -0.00708330516, 0.0155241918, 0.00879913662, -0.00589856412, -0.020011751, 0.00148171175, -0.0145437159, 0.00759868324, -0.00852259248, -0.0170954652, 0.00353536755, 0.00332167419, 0.00623481674, 0.0369312353, 0.0127838887, 0.0040036072, -0.0176108442, 0.00152806437, -0.0150088137, -7.90547419e-05, -0.00945907179, -0.00694503309, -0.00757982768, -0.0062128189, 0.011878835, 0.0144431544, -0.00675648, -0.0253792237, 0.0293891169, -0.0071964371, -0.00137565075, 0.0165675171, -0.00334367203, 0.02248808, 0.0047295359, -0.00609654468, -0.0108669344, 0.00534233311, -0.0194838028, -0.0143803032, -0.00100404432, -0.0042392984, -0.0137643637, 0.00683190115, -0.0115834353, 0.00549631799, 0.0107663721, 0.00999959093, -0.0169697646, -0.00405388791, 0.0110617718, 0.00229091803, 0.00869229, -0.0173720103, 0.00140471931, -0.0145185757, 0.0201500226, 0.00688218186, -0.00835918, 0.0237828102, -0.0044749896, -0.0177868269, -0.0153356381, -0.029414257, -0.0133244069, -0.00594256, -0.00308755436, 0.0145060057, 0.0270007793, -0.00915738754, -0.0118348394, 0.0107600875, 0.0162532628, 0.00353536755, -0.0148705412, 0.00161212753, -0.00997445, 0.000687432592, 7.60104e-05, 0.0259951651, -0.0124947745, 0.0253289435, 0.0162532628, 0.00937736593, 0.0164795257, -0.00113681704, 0.0135003896, -0.00697645871, 0.0144054443, 0.0124193532, 0.03856536, -0.0163915344, -0.0106972363, 0.0168566313, -0.0205774102, 0.00219349912, 0.0040790285, 0.0202505849, -0.0106658107, 0.00521663111, 0.0171331763, -0.00494008698, 0.017535422, 0.0155367618, -0.00682561612, -0.00351651222, -0.00538004376, 0.00176139863, -0.0018289634, 0.00686332677, 0.00460697664, -0.00328710605, -0.0117782727, 0.00257846131, 0.0090254005, -0.00295870984, -0.00459754886, 0.0229406059, -0.000985189108, 0.0146694183, 0.0382888168, 0.00290685776, -0.0139277764, -0.000889341347, -0.0177993961, 0.0158887263, -0.00708330516, -0.0176611245, -0.003830767, 0.00992417, -0.0132866967, -9.97759271e-05, 0.0151093751, 0.00517263543, -0.00499351, -0.0260454454, 0.0177868269, 0.0135129597, 0.0122559406, 0.0233428534, 0.0080889212, 0.0104206922, 0.00723414728, 0.0167309307, -0.00119495415, 0.0209042355, 0.0110554872, -0.0148579711, -0.0198734794, -0.00224063732, 0.0172463078, 0.0269002188, -0.0221109744, 0.0134375393, -0.00907568075, 0.016303543, -0.00352593977, -0.0049306592, 0.0251278207, -0.014845401, 0.0148705412, -0.015084235, 0.00343166338, 0.0186918806, 0.0046604, 0.00409159856, -0.0146442773, -0.00146285654, -0.0247758552, 0.0232171509, -0.0420598723, 0.00208193855, 0.0104144067, -0.00979218259, 0.0111623332, -0.0065239314, 0.00949049741, 0.00402246276, 0.000432100467, -0.0114263073, -0.000905054098, 0.00411673915, 0.0123879276, 0.00293356925, -0.007535832, -0.000494165812, -0.0392190106, -0.0120045366, -0.00842831563, 0.00522291614, 0.00051144982, -0.00828375854, 0.00387476268, 0.0174851418, 0.00731585361, 0.00220135553, 0.0099116, 0.00183053466, 0.0104269767, -0.0291377138, -0.00184153358, -0.0264225509, 0.00589856412, 0.0149208223, 0.0152853578, -0.0162532628, -0.00490551861, 0.00333424425, 0.00983617827, 0.00520720333, 0.00382762449, 0.0188175831, -0.0114703029, -0.0403000452, 0.0100184456, 0.0142923119, -0.0305204354, 0.0405011699, -0.0084848823, 0.0132364156, -0.00604940671, -0.00864829402, -0.0115331542, 0.00118474092, 0.00637623155, 0.00189652829, -0.00951563753, 0.00210550777, -0.0184404776, -0.0235691164, 0.0290371515, -0.0136009511, -0.00241819141, -0.0113885971, 0.00649879128, 0.000522841583, -0.000937265228, 0.00443099393, -0.00900026, -0.00553402863, -0.00077188859, -0.0062631, -0.0120799579, 0.00080684945, -0.0118285539, -0.00876142643, -0.014342593, 2.22433537e-05, -0.0241850559, 0.00201280252, -0.0242730472, -0.000717286777, 0.000585299742, -0.0118034137, 0.0027984397, -0.000105668209, 0.00470125303, -0.00364221423, -0.00953449309, -0.0153859193, -0.0147699798, -0.0167686399, -0.0152350767, 0.0114828739, -0.0182519238, -0.0030262745, 0.0162909739, 0.019521514, 0.00746041117, -0.0108920746, -0.0244741701, -0.00218407135, 0.0152853578, -0.010489828, -0.0102698496, 0.0102132838, 0.0155870421, 0.0273276046, 0.00697645871, -0.0265733935, -0.00546803512, -0.00589542184, 0.00446241954, -0.0314757712, -0.00562516227, -0.0257689, 0.00988645852, -0.0320288576, -0.00196095044, -0.00969162, -0.00172683061, -0.0102069983, 0.0135506708, 0.0240216441, -0.0158510171, -0.0135129597, 0.00264759734, -0.00674391, 0.00497151213, 0.0296153799, -0.00509407185, 0.0181765035, -0.00885570236, 0.0132238455, -0.0105401091, -0.00378048629, -0.0148956813, -0.0113446014, 0.00901283, -0.0074666962, 0.00504064839, -0.0294645373, 0.000612404197, -0.0337132625, 0.00893740915, -0.0144682946, -0.000282633, 0.010144148, -0.0176611245, -0.00560316443, 0.0107977977, 0.010250994, 0.000686646905, -9.94322108e-05, -0.0111497631, -0.00700159883, -0.022739483, 0.00741013, -0.0190438461, 0.012237085, 0.00636994652, -0.0421101563, 0.00219035661, 0.0167057905, -0.0154487705, 0.0100373011, 0.0097796116, -0.0183022041, 0.0116588566, -0.003767916, -0.0178371072, -0.0153607791, -0.0143677332, 0.0050217933, -0.0202757251, -0.0118914051, 0.0339143872, 0.0146442773, -0.0130352927, -0.0183273442, 0.0091699576, -0.000372981274, -0.0134123983, 0.0251529608, 0.00871743076, 0.00636680378, 0.0118725495, -0.0303444527, 0.0131861353, -0.00901911501, -0.00940250605, 0.00352279725, -0.000787208497, -0.00762382336, 0.00941507611, 0.0150088137, -0.00137015129, -0.00139686302, -0.026699096, -0.00277172821, 0.027176762, 0.00295085344, -0.0189432837, 0.00437442819, 0.00203008647, 0.00727814296, -0.0201374535, -0.0151596554, -0.0112377545, -0.00337824, -0.00630081026, -0.00393761368, -0.0237702392, 0.0290120114, 0.00327453599, -0.00496208481, -0.0186793096, 0.0239336528, -0.00907568075, 0.0209293757, 0.0021196492, -0.00385590736, 0.0159767177, -0.000163117933, 0.0145185757, 0.00922652334, -0.0124696335, -0.00190124207, 0.00804492552, 0.0138523551, 0.00441528112, 0.00747298123, 0.00328710605, 0.00272144726, -0.00102604215, -0.00674391, 0.0090254005, 0.0198106281, -0.00675019482, 0.00565344561, 0.00716501148, 0.00449698744, -0.0045849788, 0.0144934356, 0.0157378856, -0.0278806929, -0.0114828739, 0.0116588566, 0.00506264623, 0.0116965668, -0.000846916926, -0.00940879155, -0.00444984902, 0.00219192775, 0.000700395554, -0.00387476268, 0.0302187502, 0.0194083825, -0.0176359843, -0.00353851, 0.00509721413, -0.00928937458, -0.00524491398, 0.00395018375, -0.0101755736, 0.0129473014, 0.00678162044, -0.0090254005, -0.0156876035, -0.0122119449, 0.04105426, 0.0040036072, -0.0082963286, 0.0193958115, -0.00417644763, -0.0226766318, 0.0250398293, 0.0128718801, -0.00742270052, -0.012105098, -0.00496208481, 0.0114828739, 0.00790036749, -0.00533290533, -0.0181387924, -0.0404760279, -0.011746848, -0.0137895048, 0.0103515564, 0.000124425293, -0.00207565352, 0.000280079665, 0.0190312751, 0.0216207355, 0.0117154224, -0.0142671717, 0.0221486837, -0.00819576718, 0.00612797029, -0.0150088137, 0.0231291596, -0.0122182304, 0.000325057394, -0.0146191372, 0.00664334837, -0.00141257572, -0.0119165452, 0.0165800881, -0.00434614485, -0.0128718801, 0.0174222905, -0.0116714267, 0.0137895048, 0.00608083187, -0.0065993527, -0.0142420316, 0.00692617754, -0.0127084674, 0.00930823, -0.0198357683, -0.012607906, 0.00435243035, 0.00191066973, -0.021507604, 0.018792443, -0.0222743861, -0.0355233736, 0.000395961164, 0.00376477349, -3.36105404e-05, -0.0145562859, -0.00500922278, -0.016316114]
|
08 Feb, 2022
|
Fabric.js | Circle borderColor Property
08 Feb, 2022
In this article, we are going to see how to change the border color of a canvas circle using FabricJS. The canvas means the circle is movable and can be stretched according to requirement. Further, the circle can be customized when it comes to initial stroke color, fill color, stroke width, or radius.Approach: To make it possible, we are going to use a JavaScript library called FabricJS. After importing the library using CDN, we will create a canvas block in the body tag that will contain our circle. After this, we will initialize instances of Canvas and Circle provided by FabricJS and change the border color of the circle using borderColor property and render the Circle on the Canvas as given in the example below.Syntax:
fabric.Circle({
radius: number,
borderColor: string
});
Parameters: This function accepts two parameters as mentioned above and described below:
radius: It specifies the radius of circle.
borderColor: It specifies the border color of canvas.
Example: This example uses FabricJS to change border of canvas. Note that border color is visible only when you click on the circle.
HTML
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Circle borderColor Property
</title>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a Circle instance
var circle = new fabric.Circle({
radius: 50,
borderColor: 'red'
});
// Render the circle in canvas
canvas.add(circle);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Fabric.js | Circle borderColor Property
|
https://www.geeksforgeeks.org/fabric-js-circle-bordercolor-property?ref=asr6
|
CSS
|
Fabric.js | Circle borderColor Property
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Fabric.js | Circle borderColor Property, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0115609542, -0.0114339106, -0.00877870247, 0.0346320458, 0.0474126153, 0.0125328368, 0.00645063119, 0.0107923411, -0.0202507265, -0.0371729136, -0.0224993955, 8.47121773e-05, 0.00576777291, -0.0598120578, -0.00285053742, 0.0212797783, -0.022372352, -0.0324977152, -0.0024598788, 3.50362025e-05, 0.00921700243, -0.0160964057, -0.0153849619, 0.011954789, -0.0170619357, 0.0167443268, 0.0152833275, 0.0388498865, -0.0119230282, 0.0141526405, 0.0187770221, 0.00993479788, -0.0150038321, -0.0121008884, -0.00297122868, -0.029829802, 0.00130298943, 0.0372491404, -0.0230837949, -0.00535170548, 0.00467837509, -0.00159201329, 0.00929958094, 0.0145845879, -0.00495787058, 0.0226772558, -0.0411874875, -0.0294232629, -0.0192724913, -0.0546286851, -0.0216227956, -0.0367917828, 0.0258025248, 0.000500630587, 0.0462692268, 0.0370204635, -0.0215465687, 0.0226264391, -0.0243542306, 0.00368426018, 0.0109066805, -0.0542221442, 0.000418449374, -0.0150292404, 0.000556212093, 0.0331075229, -0.0304396115, 0.0118722105, -0.0235411525, 0.0165664665, -0.0299060289, -0.00315226568, 0.0305412449, 0.0201999079, 0.00326184067, 0.0153722577, 0.047793746, 0.00383671233, -0.0381130353, 0.0387482531, 0.0177479703, -0.0146481097, -0.0292199943, 0.0184085965, -0.043220181, -0.0325231254, 0.0644872561, -0.0458880961, 0.0299060289, -0.00373507757, 0.0127043454, 0.0179893523, 0.0249513332, -0.0130028976, -0.0190184042, 0.0176463351, 0.0248115864, -0.0173922479, -0.0315067768, 0.0141780488, 0.0260947254, 0.0469552614, 0.0351148099, 0.0222199, 0.0319895409, -0.0308969673, 0.0166299883, 0.00441158377, 0.00598057033, -0.00387482531, 0.0114783756, -0.00165315287, -0.00880411081, 0.0674854815, -0.0351656266, 0.0262725856, 0.0107415235, -0.0256500728, 0.0223977603, 0.0102397026, 0.0190311093, -0.0138223274, -0.00151261105, 0.0318370908, -0.0364106521, 0.0197171438, -0.00500233611, -0.0172143877, 0.0174684748, 0.000211209743, -0.0208097175, -0.0198441874, 0.0082260631, -0.0113132196, 0.0572203696, -0.000563358306, 0.000448225182, -0.0105001414, 0.00254245708, -0.00191676803, -0.0119484365, -0.0474888422, -0.00797197688, 0.0494961292, -0.0044560493, 0.0182942562, 0.0115609542, -0.00828323327, -0.00691116368, 0.00636487687, -0.0479462, -0.0191835612, 0.0272127073, -0.0162361525, 0.0374015905, -0.00437982287, -0.0126408236, 0.00304586673, 0.0303379763, -0.0192851964, 0.0205556303, 0.000543110771, 0.0023233071, 0.00999196712, -0.0182815529, -0.00577094872, -0.00791480672, -0.00493881432, -0.0522910841, 0.035038583, 0.00236142, 0.00625053793, 0.017239796, -0.00239635701, -0.0313035063, -0.00263456348, 0.0257008895, -0.0258660465, 0.00795927271, -0.0157787967, -0.0560515709, 0.018522935, 0.0299314372, 0.0613873973, -0.0175574049, 0.00098935084, 0.0213433, 0.0098712761, -0.0207334906, -0.0427120067, -0.00611714227, 0.0140001886, 0.0608284064, -0.0275938381, 0.0215084571, -0.000244955649, 0.00854367204, -0.00443699257, -0.0235284474, -0.0111734718, 0.0352418534, -0.0346828625, -0.019247083, -0.0126281194, 0.0241509601, -0.00544698816, 0.00113862695, -0.0510968752, 0.054374598, -0.037604861, 0.00117991609, 0.0388498865, 0.00569789903, -0.0111671193, 0.00179131271, 0.00298075704, -0.00944568, 0.0263742208, -0.016680805, -0.0155882314, -3.54580261e-05, 0.0422292426, -0.0197425522, -0.0115546016, -0.0567630157, -0.0280766021, 0.0182307363, 0.016121814, -0.00480541866, -0.0605743192, 0.0244050473, -0.0126535278, -0.000424801547, 0.0115418974, 0.0324469, 0.00562167261, -0.00826417655, 0.00537076173, -0.0164521262, -0.00501821656, -0.00648239208, 0.00112195243, -0.03320916, -0.0359024778, 0.0237698294, -0.00982681103, -0.0159947705, 0.00293787988, 0.00540252263, -0.0163504928, -0.0100427847, -0.00980140269, -0.0121390019, 0.00895021111, -0.0263996292, 0.0150419446, -0.0316846371, -0.031354323, 0.0454815552, 0.0331583396, 0.0464216769, 0.0308715589, -0.00457356405, -0.00713984203, -0.00774329854, -0.0333362035, -0.00582176633, -0.0211273264, -0.0220039263, -0.0275176112, 0.00077298, -0.0338951945, 0.0305412449, -0.0303125679, -0.0262217689, 0.0624037422, -0.0134284925, -0.0193233099, 0.0198695958, -0.00985857192, 0.0223088302, 0.0170111191, 0.0139874844, 0.0331329331, -0.0295503065, -0.0222453084, -0.0426357836, 0.018522935, -0.0141018229, -0.0159947705, -0.0295757148, -0.0303633846, 0.004309949, -0.0318370908, 0.0288388636, -0.000600677333, -0.00296805263, -0.0194376484, -0.0192343779, 0.010506493, -0.0288896803, -0.0599136911, -0.0281020124, -0.0200982746, 0.0311764628, 0.0152706224, 0.0352926701, 0.00187071483, 0.0447955206, 0.0101253632, 0.00648556836, -0.0194630567, -0.00493246224, -0.0387990698, -0.00142209267, -0.0314305499, 0.0348861329, -0.0121771153, -0.012227932, 0.000316219084, -0.017798787, -0.0211273264, -0.00626006629, 0.0345812291, 0.0157533884, -0.0324469, -0.00884222426, -0.0154865971, -0.0102015892, 0.0119865499, -0.0252943505, -0.00900738, 0.0051674922, 0.0298552103, 0.00678412, 0.00272508198, -0.0150419446, -0.00492610969, -0.0147243356, 0.0415686183, 0.00890574604, 0.0198950041, 0.00243923417, -0.0135301277, 0.030947784, -0.0331075229, 0.0240747333, 0.00278066355, 0.0394596979, 0.0314559601, 0.000799182686, 0.0255230293, -0.00231536687, -0.019640917, 0.0349115394, -0.0203269515, 0.0239603948, -0.031913314, -0.0400440954, 0.0048276512, 0.017163571, 0.00212797779, 0.0236300826, -0.00303157442, 0.0382400788, -0.00182942569, -0.0209113527, 0.0165664665, 0.000192649488, 0.00139112584, -0.040501453, -0.0037700145, -0.043957036, -0.0124820191, -0.0398916453, -0.0239858031, -0.0256627779, -0.00621560076, -0.0433980413, 0.00915983319, -0.0223850571, 0.0442619398, -0.00780682033, -0.0225248039, 0.0378843583, 0.054933589, -0.0226391423, 0.0074256896, -0.00630770717, -0.0117388153, -0.0233124737, 0.0144448401, 0.0353943072, -0.023896873, 0.0019469409, -0.00651732925, -0.00075590855, -0.0377319045, 0.0151181705, -0.0523419, -0.0103476895, -0.00519290101, 0.0157406833, -0.0111988802, 0.0148513792, 0.00677776802, -0.00628865091, -0.0252308287, -0.00539934682, -0.0215465687, -0.0134030841, -0.00619019195, 0.050919015, -0.00922335498, 0.0275938381, 0.0304904282, 0.0503346138, 0.0375032276, -0.0120691275, 0.00990303699, 0.0538664237, -0.0241255518, -0.0322690383, -0.0109193847, -0.00847379863, -0.0252816472, -0.0316592269, -0.00302204606, -0.0335394703, 0.0217498392, -0.135885671, -0.0127170496, -0.0168332569, -0.00835945923, -0.0322690383, 0.023731716, 0.0371220969, -1.65876063e-05, 0.0257898215, 0.0277208816, 0.0128440931, 0.00307445158, 0.0217752475, -0.0256881863, -0.01339038, -0.0115418974, -0.039383471, -0.0274413861, 0.0161091089, -0.0182688478, -0.0121771153, -0.00739392871, -0.0417972952, 0.00778141152, -0.0111353584, -0.0321928114, -0.0170492306, 0.0153468493, 0.0160582922, 0.0138350315, -0.0247480646, -0.00997926295, -0.0438808091, 0.0254976209, 0.0198314823, 0.0206445605, -0.0131362928, -0.0360295214, 0.00874694157, 0.00333171454, 0.043067731, 0.0173922479, 0.031913314, 0.0311510544, -0.000342024781, 0.0278225169, -0.0304650199, 0.00593292899, 0.014114527, -0.0305158366, 0.023503039, 0.00121802907, -0.0115037849, 0.015715275, 0.0180020574, 0.00558038382, 0.00707632024, -0.0249894466, -0.0367917828, 0.00833405089, 0.0331075229, 0.012831389, -0.0277716983, -0.0100936024, -0.00010054298, 0.0148005625, 0.0367409661, -0.0247607678, 0.0152325099, -0.0153595535, 0.00592022482, 0.025573846, -0.00572965946, 0.0118976189, 0.0333107933, 0.0313035063, -0.00954096299, 0.0268823951, -0.0285339598, 0.00074360118, -0.0287880469, 0.0438554, 0.0210638046, 0.0127615146, 0.00989668444, -0.0110527799, 0.0259422734, 0.0250910819, -0.0472093448, -0.0136952838, 0.0280511938, -0.0296265334, 0.0107986936, -0.0204794053, 0.0166553967, 0.0480986498, 0.0106081283, -0.0266791247, 0.0138604408, 0.00893115439, 0.00587258348, -0.00762260705, 0.0225502122, -0.00507221, 0.0177479703, -0.0214195251, 0.00844203774, -0.0343525484, 0.0286101848, 0.0129393758, -0.0523419, -0.0116816452, -0.0138858492, 0.014597293, -0.00177384424, 0.017722562, 0.00571377901, 0.0298552103, -0.0165029448, 0.00786399, -0.02871182, 0.0235411525, 0.015473892, -0.00149196654, 0.0288134553, -0.00169126596, 0.0513001457, -0.0537139699, -0.0148132667, 0.00626006629, 0.0184975266, 0.00963624567, 0.0249640383, 0.0115673067, -0.0259676818, -0.02774629, -0.00945838541, 0.00030331625, -0.0200220477, -0.0221436732, 0.00119182642, -0.0311256461, -0.000646333559, 0.00180560502, 0.0115291933, -0.015473892, 0.0161853358, -0.0158677269, 0.0278479252, 0.0213560034, -0.0156009356, -0.0304650199, -0.0057106032, 0.0128440931, -0.0142415706, 0.000389269087, -0.00872153323, -0.0062283054, -0.0537139699, -0.0293470379, 0.0169857088, 0.0171762742, -0.0118976189, 0.00667613326, -0.0196790304, 0.0165918749, 0.0264758561, -0.0146608148, 0.00682223355, -0.0156263448, 0.00632994, 0.0056184968, 0.00260280282, -0.00570425112, 0.00210733316, -0.0324214883, 0.0229821596, -0.000295574544, 0.00430677319, -0.0105890715, -0.0273143426, 0.0233124737, -0.00506268162, -0.00425913185, -0.0104429722, -0.0154230753, 0.0253959857, 0.0286864117, 0.00896926783, -0.0326755755, -0.0109574981, -0.0124566108, 0.0577285439, 0.00158883713, 0.0350639932, 0.00212003756, 0.00444016885, -0.0406284966, 0.0179004222, -0.0221055597, -0.0383163057, -0.0126916412, -0.00875964575, 0.0245193858, -0.0120500717, 0.0220674481, 0.00717795501, 0.00185007032, -0.0167062134, -0.0164140146, 0.000857543317, 0.00834040251, -0.00875964575, 0.0401457325, 0.00319037866, 0.021495752, -0.0349623561, 0.0104429722, 0.00283783302, 0.0219404045, -0.00220579188, 0.00232171919, -0.0397391915, 0.0197044387, -0.0165410582, 0.0096934149, -0.0146862231, 0.0279749688, -0.0304904282, -0.0142415706, -0.00184530613, -0.0207080822, 0.0125836534, -0.0165664665, -0.0109193847, 0.00270761363, 0.0394342877, -0.000439093943, 0.00344922976, -0.00182783767, -0.019806074, 0.0133776758, -0.0276192464, 0.0141018229, 0.0250910819, 0.00196282123, -0.0104429722, 0.0550352223, 0.0348353162, 0.00415432081, 0.023337882, -0.0328534357, -0.00525959907, 0.0127742188, -0.00816889387, -0.0113576846, -0.0248115864, -0.00680952892, -0.00344287744, -0.0184848215, 0.0471585281, 0.00477365777, 0.01251378, 0.0158931352, 0.00316655799, 0.00668248534, -0.0117705762, -0.00416067289, -0.000243963135, 0.00823241565, -0.000732087879, -0.00314273732, -0.0409079902, -0.00592975318, -0.018688092, 0.0486576408, -0.00686669862, 0.00535170548, -0.0293470379, -0.0380114019, -0.00874694157, 0.029829802, -0.0028553016, -0.000451401254, -0.0215719789, -0.00979505, -0.000492690364, -0.021330595, -0.00677776802, 0.012031015, 0.00298393308, -0.00262185931, 0.0037446057, -0.0206699688, 0.0158677269, 0.000848015, 0.0243415255, -0.0119166756, 0.00244876253, -0.00432900572, 0.00775600271, 0.00642839866, 0.00268855714, -0.0189167708, -0.0219531078, 0.038265489, -0.00381765561, 0.00756543735, 0.000449416199, -0.0229821596, -0.0231854301, -0.0144067276, -0.0410350338, -0.00768612884, -0.0219658129, 0.00584717467, -0.011668941, 0.00259803864, 0.0136063537, 0.0269840285, -0.00530406414, -0.0201490913, 0.0402981825, -0.0149530144, 0.0106017757, -0.0123232147, -0.0163886044, 0.0240366217, -0.0143432058, 0.0407301299, -0.0121898195, -0.00278860377, -0.028305281, 0.046193, 0.0165664665, 0.0193995349, -0.00896926783, -0.00230425061, 0.0261201337, -0.0110527799, -0.00372872525, 0.0115101365, -0.00941391941, 0.00817524642, 0.00431630109, 0.0230965, 0.0137588056, -0.0336665139, 0.015473892, 0.00412256, 0.0126154143, 0.0169475973, 0.0438045822, -0.00535805756, 0.0109956106, 0.0160328839, -0.00390341016, -0.0137206931, 0.00748285931, 0.0318624973, -0.00523419026, 0.00219149957, 0.0127170496, -0.0109193847, 0.0151689881, -0.00347146229, -0.0150673529, -0.00943297613, 0.00591387274, -0.0586432591, -0.0259676818, -0.0369188264, -0.0169730056, 0.0205556303, 0.0448971577, -0.0199839342, -0.0298806205, 0.00432900572, -0.0177098569, -0.000414082257, -0.00113703893, -0.0256754812, -0.03336161, 0.0108050453, 0.00636487687, -0.00903279, 0.00155310624, 0.00161503989, -0.00626006629, 0.044109486, 0.000967118249, -0.0335648805, 0.0239985082, -0.0190438125, -0.0604726821, 0.0377573147, 0.0329042524, -0.00378907099, 0.00246781902, 0.0174303614, -0.0164140146, -0.00639663776, -0.0363598354, 0.0578809977, 0.0115355458, -0.00563755305, 0.0346828625, 0.0312018711, 0.0345812291, 0.00662531611, -0.0239349864, 0.0150419446, -0.00420831423, -0.0128440931, 0.0139874844, 0.0217879526, -0.00950285047, 0.0291437674, 0.016515648, 0.00269332109, -0.000378748286, 0.0329042524, -0.00585987931, 0.0345558189, -0.00502139237, -0.000503806688, 0.00174684741, -0.0129457274, -0.0150292404, -0.0153341442, -0.0157279801, 0.00977599341, 0.00736216782, 0.0279749688, 0.0293978546, -0.0268823951, 0.00197711377, 0.00916618481, -0.0191708561, 0.022944048, -0.0289913155, 0.00278701563, 0.00709537696, -0.002245493, 0.00503727281, -0.00710808113, -0.0161853358, 0.0162107442, 0.00284736138, 0.0126789361, 0.0107542286, -0.0221182648, -0.00739392871, 0.00239794515, -0.0129901925, 0.00950285047, -0.0170492306, 0.00719701173, -0.01660458, -0.0605235, -0.0179512389, 0.0141272321, 0.010265111, -0.0359787047, 0.0232616551, 0.0320149511, 0.0155755272, -0.00973152835, -0.00805455446, -0.00127599272, 0.0131108845, 0.0077305939, -0.0137079889, 0.000584002875, 0.0442365296, -0.0255357344, 0.0112814587, 0.0394596979, 0.000185602548, 0.0156644583, 0.0255865511, -0.0173414312, 0.0118213929, 0.00326819276, 0.0379605852, 0.0241255518, -0.0122215804, 0.0395359211, 0.00615207897, 0.0147370407, 0.0148640843, 0.00872788485, -0.0289404988, 0.0232997686, -0.00966165494, 0.00574554, -0.0319895409, 0.0137206931, -0.0191962663, 0.00657449849, 0.0289659072, 0.0423562862, 0.0395359211, 0.0049197576, -0.046116773, 0.00301569398, -0.00492928596, 0.00947109, -0.0124883717, -0.00928052422, 0.0110083148, 0.000426389597, -0.0119674932, -0.0262217689, -0.0119484365, -0.0240874384, 0.00298393308, 0.00367155578, 0.000580032764, 0.00269967341, -0.0259676818, 0.0471331216, 0.0248751082, 0.00338888401, 0.00208827667, 0.0165791698, -0.00631723553, 0.0133776758, 0.00892480277, 0.0120056057, 0.0436521284, -0.00589799229, 0.00472601643, -0.000523657247, 0.0171508659, -0.00746380258, -0.0228932295, -0.0114148539, 0.0118849147, 0.00466249464, 0.0173287261, 0.00665072491, -0.0156898666, 0.0376302712, 0.000301529682, 0.026069317, 0.00830229, -0.00727323769, 0.0104747321, -0.00369378831, 0.0141526405, 0.0102142934, -0.0153087359, 0.0204285868, 0.0270348471, 0.0263488125, 0.0275684297, 0.0123867365, -0.0116498843, 0.00637440523, -0.0082705291, -0.00719065918, -0.0197679605, -0.0252943505, 0.00373825361, 0.0118976189, 0.00306174718, 0.0176463351, -0.047793746, 0.000103222803, -0.0188151356, 0.00936945435, 0.00908360723, 9.03695836e-05, 0.018522935, 0.0507411547, -0.0183831882, 0.0212416649, 0.00165791705, 0.0114910798, -0.0358770713, 0.0203269515, 0.0283306893, -0.000374778174, 0.00602503587, 0.00444969675, 0.0161726307, 0.0100808982, 0.0106208324, 0.0388752967, 0.0237952378, -0.0106907068, 0.0289913155, -0.00759719824, -0.00523419026, 0.0119992541, -0.00964259822, 0.0123613281, 0.0270856638, -0.0241128467, 0.000902802509, -0.00731770275, -0.00562484888, -0.0123676797, 0.0350894, -0.00494199, -0.00743839424, -0.0369442366, -0.028305281, -0.0267553516, -0.0349115394, 0.00424007513, -0.00599645078, 0.00483082747, -0.0189802926, -0.0163504928, -0.0120881842, -0.00845474191, -0.0111798234, -0.0109511456, -0.0104937889, 0.00680952892, 0.0018103692, -0.0172016826, -0.0139112584, -0.00912172, -0.0219022911, -0.0099856155, 0.0155755272, -0.0068730507, -0.0101317149, 0.00923605915, -0.0132252229, -0.0337173305, -0.0122533413, 0.0128186839, -0.00459579704, -0.00396057963, -0.011065485, 0.00156898669, -0.0095917806, 0.0283306893, -0.0195138734, -0.0150038321, -0.00307445158, -0.0176844485, -0.0120500717, 0.0191708561, -0.0134920143, -0.00389070576, 0.0378589481, 0.0166426916, 0.0230710916, -0.00795927271, -0.002064456, -0.0126154143, -0.0161472224, -0.0283306893, 0.00699374219, -0.0352418534, -0.0212162565, 0.0204921085, 0.0119293798, 0.000802755821, 4.36215596e-05, -0.0313289165, -0.0178114921, 0.0401711389, -0.0166299883, -0.0255357344, -0.00350639923, 0.00280607236, -0.0379859917, -0.0154484836, 0.0244177505, 0.020530222, -0.026069317, 0.0291691758, 0.0198187791, 0.0050086882, 0.033590287, 0.000956796, 0.0208097175, 0.0109638497, 0.0021089213, 0.0185102317, -0.0308715589, -0.00634899642, 0.008981972, -0.0082260631, -0.0158423185, 0.0208478309, -0.00263615162, -0.014914901, -0.00595516199, 0.0136444671, 0.0189040657, 0.0148132667, 0.00284894952, 0.0130854752, 0.00265997229, -2.69471075e-05, 0.021330595, 0.0306936987, -0.0186245702, 0.00797197688, -0.000994909089, 0.00931863673, -0.00596469, -0.0111544151, 0.00622512912, 0.0128377406, 0.00185324636, -0.00495151849, 0.00814983714, -0.00906455051, -0.00352227967, -0.0144194318, 0.00511349877, -0.0310748275, 0.00356992101, 0.0207843091, 0.010506493, -0.0247734729, -0.0168078486, 0.00435759034, -0.0677395687, -0.0147370407, -0.00506903371, -0.00361438631, 0.0230710916, 0.0213814136, -0.00314273732, -0.016286971, 0.0184085965, -0.00875964575, 0.0338189676, 0.0155882314, 0.0342509151, 0.00171191047, -0.0107796369, -0.0176844485, -0.00265520811, -0.00481494702, 0.00719065918, 0.0137588056, -0.00694292458, 0.0167443268, 0.0100364331, -0.0190438125, 0.0123105105, -0.00866436306, 0.00434806198, -0.0201999079, -0.00452274689, -0.0141653446, 0.0192216747, -0.0112115843, 0.0143432058, -0.0380876251, 0.0336665139, 0.00373507757, -0.0223088302, -0.00285688951, 0.00694927666, 0.00222802465, -0.0138604408, -0.020365065, 0.0313035063, 0.0145083619, 0.0137461014, -0.00653003342, -0.0162996743, 0.00889939349, 0.00772424182, 0.0220166296, 0.017798787, -0.00067094824, 0.0172270928, -0.0167189185, -0.0146735189, -0.00318720262, 0.0172779094, 0.0144702494, 0.00448145764, 0.0192979, -0.0317100473, 0.0160964057, -0.0169348922, 0.0352164432, 0.036258202, 0.00102508185, -0.00945203286, -0.0113576846, 0.0140001886, 0.0408825837, 0.00152928557, -0.0153595535, 0.0125391884, 0.00453862734, 0.00747015513, -0.0276954733, 0.00872153323, -0.0017325551, -0.00933769345, -0.0114847282, -0.0108558629, 0.0177733786, -0.00196440937, -0.0109511456, -0.00338253193, 0.0293470379, 0.0134284925, -0.0115101365, -0.0102587584, 0.0127615146, -0.000658640871, -0.0191454478, -0.0119293798, 0.0232870653, -0.000760672672, 0.0142923882, 0.00289817876, 0.0157279801, -0.0176971536, 0.021978518, -0.00373507757, 0.0248115864, 0.00291247107, 0.0203396566, -0.00342382095, 0.00587893557, 0.0146099972, -0.0209748745, 0.0102841677, 0.0115355458, 0.015473892, 0.0221563783, -0.0129901925, -0.00161821593, -0.00545016397, 0.00191518, 0.0139493709, -0.000616160745, -0.0022899583, 0.0101952367, -0.00503092073, -0.0151816923, 0.0112179369, -0.0118023362, 0.013555536, -0.0425341465, -0.0314051397, -0.0207207873, 0.00530088786, 0.0108177504, 0.000248528755, 0.000916300924, 0.0453291051, 0.00151261105, 0.0164775364, -0.0055613271, -0.000562167261, -0.0306174718, -0.0301092975, -0.000790448452, -0.00227566576, 0.00706996815, 0.0234014038, -0.0104747321, 0.0326755755, -0.00995385461, 0.00700644637, 0.0102079418, 0.00803549867, 0.00189771154, 0.0362836085, 0.000401576399, -0.00781952403, 0.00637122896, 0.0173541363, 0.0178877171, -0.0181799177, -0.00451639481, 0.0115418974, -0.00142844475, -0.0182561446, -0.00404633395, 0.0167316217, -0.00408762321, -0.00543110771, -0.00614572689, 0.0210002828, 0.00621242495, 0.0103667453, 0.00228201807, 0.0186372735, -0.0192597881, 0.00713984203, 0.0139366668, -0.00283465697, 0.0106716501, 0.00537393801, -7.59283139e-05, -0.00588211184, 0.00279495586, -0.00288547436, 0.00175796379, 0.0293978546, 0.0213814136, 0.010703411, 0.0148513792, -0.000146596227, 0.0192851964, -0.00766707212, 0.00193900068, 0.00383988838, 0.0134666059, -0.00872788485, 0.0173160229, 0.00743839424, -0.0211527348, 0.00680952892, -0.010506493, -0.0128822057, -0.0122660454, -0.000605441455, 0.014914901, 0.000279098575, -0.00214544637, -0.0134539017, -0.0439824425, 0.0087659983, -0.0324977152, 0.000742410193, -0.0163377877, -0.0265012644, -0.0276954733, 0.0302871596, 0.0345558189, 0.0141526405, -0.00781317241, 0.00260280282, -0.000127539708, 0.00359215355, -0.0119929016, -0.00162139209, -0.0200093444, -0.0194503516, 0.0110845407, -0.0052818316, -0.00414161664, 0.016515648, 0.00417020125, 0.017481178, -0.0108177504, 0.00856908, 0.00121723511, -0.0182180312, 0.0349623561, 0.0141018229, -0.00626006629, -0.004151145, 0.00802279357, 0.0178623088, -0.00191518, 0.0107351718, 0.015156284, 0.0138858492, -0.016286971, -0.00132760406, -0.0280003771, -0.0126916412, 0.00497057522, 0.0189802926, 0.0157915018, -0.0239222813, -0.0240239166, -0.0258406382, 0.0154611878, -0.000159697593, -0.0187389087, -0.00935675, 0.00498327939, 0.0031919668, 0.0107669327, 0.0051007946, -0.00412256, -0.0349623561, -0.0077305939, -0.0126598803, 0.00905819796, 0.00203587138, 0.000473633874, 0.0155501189, 0.0122025236, 0.0200728662, 0.00709537696, 0.00261550699, -0.02774629, 0.0344541855, 0.0111734718, -0.00359215355, -0.00875964575, -0.0139239626, 0.00249640387, 0.00327772112, -0.0111480625, 0.029601125, -0.00408762321, -0.0162615627, 0.0120119583, 0.00213591801, -0.00625053793, -0.0199331176, -0.0136825796, -0.015473892, -0.00283465697, 0.00612031808, -0.0123549756, 0.00222961255, -0.0152452141, 0.0187389087, 0.00936945435, 0.00662531611, 0.00615843153, 0.00355404057, 0.0286864117, -0.00885492843, -0.0113703888, -0.00798468105, -0.0145083619, -0.0120818326, -0.0109193847, 0.00919794571, 0.0319387242, 0.0334632434, 0.00474189688, -0.0187007952, 0.0110718366, 0.00886128098, 0.0146099972, 0.0536631532, 0.0181672145, -0.00706996815, 0.0235411525, -0.00451639481, 0.000354530639, 0.00392881874, 0.00485941209, -0.0171000492, -0.0175574049, 0.0196536221, -0.00456721196, -0.0155120054, -0.00203745929, 0.0502075739, 0.0150165362, -0.00235189195, 0.0215338655, 0.0324977152, -0.00799103267, 0.0219149962, -0.00524054235, 0.0245066825, -0.0267553516, 0.0124883717, 0.0136063537, 0.00231536687, 0.0212797783, 0.000203468022, 0.0669773072, -0.0254722126, 0.00438299915, -0.00011622491, 0.00538029, -0.00670789415, -0.0142542757, -0.00887398515, -0.026704533, -0.00757179, 0.00694927666, 0.00567884231, 0.0102841677, 0.0183323696, -0.00262185931, 0.00766707212, 0.00809266791, -0.0217117257, -0.0113576846, 0.00171349861, -0.0106462417, -0.0156390481, 0.0295248982, -0.0082260631, -0.0130473627, -0.00650462462, -0.0285593681, -0.0141780488, -0.00930593256, -0.0223215353, 0.0104048587, -0.0077623548, -0.00668883789, -0.00537711428, -0.0144448401, 0.029601125, 0.0162488576, -0.00527230324, -0.00326501671, -0.00305857114, -0.00244082231, 0.00521831, 0.00700644637, 0.00837851595, -0.00733675947, 0.00632041181, 0.0258025248, -0.00267902878, 0.0193487182, 0.0106589459, 0.00861354638, -0.00048475017, -0.0102841677, -0.000649906637, -0.00460532494, -0.0146354055, 0.0174430665, -0.0031014483, -0.00823876821, 0.0045799166, -0.00280130818, -0.00152452139, -0.0068476419, -0.0137206931, -0.0129647842, 0.0213051867, -0.00977599341, -0.0314305499, 0.00572330737, -0.00361438631, 0.0118912673, 0.00761625497, 0.00562802469, 0.00468790345, -0.0231981352, 0.0140001886, 0.0196028054, 0.00367790787, 0.00935675, 0.00749556348, -0.00997926295, 0.0406030864, 0.0222580135, 0.00858178549, -0.00372872525, 0.021089213, 0.0198950041, 0.0212924834, 0.0171762742, 0.00514843594, 0.0253705774, 0.00865801144, -0.0019008877, -0.00662531611, -0.0343779586, -0.0104937889, 0.00958542805, -0.00084166287, -1.90813316e-05, 0.000881363929, 0.0193360131, 0.0154230753, -0.0167189185, 0.0216990206, -0.0160328839, 0.0222453084, 0.00309986016, 0.00230901479, -0.000611793599, 0.0132252229, 0.00636487687, -0.00457674032, 0.0144194318, 0.00114418508, -0.00603456376, 0.00135936495, 0.00039562126, 0.00760990288, 0.0164648313, -0.0148513792, -0.0130346585, 0.00307286344, -0.00589164, 0.0253197607, 0.0168713704, -0.00121008884, 0.0039383471, 0.0182942562, 0.00202634302, 0.00404633395, -0.0134411976, 0.00392564246, 0.00184530613, -0.00600280287, 0.0228678212, 0.0202507265, -0.0111544151, 0.00459897285, -0.00792115927, 0.0052818316, 0.000393636205, 0.00840392429, -0.017404953, 0.00710172905, 0.0210256912, -0.00398916425, 0.00263773976, -0.00621560076, -0.0276192464, 0.00882316753, 0.0109829064, -0.00114259706, -0.00677141594, -0.0103222802, -0.0114466147, 0.0163504928, 0.000319593673, 0.00356992101, 0.0271618906, 0.00172779092, -0.00354768848, 0.0117197586, -0.0144067276, -0.0044242884, 0.00769248093, -0.00484035537, -0.0137461014, 0.00754002901, -0.00645380747, 0.0106462417, 0.0171889793, 0.0169857088, 0.00348416669, 0.00376366219, -0.0163250826, -0.0114974324, -0.0203269515, -0.0138858492, -0.018853249, 0.00235189195, 0.0148640843, 0.00101872964, 0.00228837016, 0.00562802469, -0.0248242896, -0.00428454, 0.00220261584, -0.00203745929, 0.013873145, -0.0300076641, -0.00789575092, -0.0236300826, -0.0137461014, 0.00785763748, 0.00193582464, -0.0080100894, -0.0101634758, 0.0350639932, 0.0072097159, 0.0176209267, -0.0106462417, -0.0332345665, -0.0155247096, 0.0223215353, -0.0118213929, 0.0168332569, 0.0251546036, -0.0336411074, -0.00929322839, -0.0094774412, 0.0311764628, 0.0128250364, 0.0150038321, -0.00769248093, -0.0104175629, 0.000864689471, -0.00235506799, 0.0129647842, -0.00985221937, -0.00249640387, 0.00240588537, 0.0257135946, 0.0259549767, -0.0269332118, -0.0158169102, -0.00126646436, 0.00153563777, 0.00622512912, 0.0278225169, -0.0116181234, 0.00231219083, 0.0249005165, -0.0136063537, -0.012755163, 0.00699374219, -0.00978234597, 0.00799103267, -0.0123613281, -0.0165410582, -0.00814983714, 0.0127805714, -0.00962989405, 0.0135809453, 0.00564708142, 0.000643554493, 0.00669519, -0.000439093943, 0.0184213, 0.0116625885, -0.00240588537, -0.00285847764, -0.019081926, 0.0123867365, 0.00283465697, -0.00336029939, -0.00486576417, 0.0315067768, 0.0129266717, 0.0076035508, 0.0150038321, -0.00222326047, -0.0143177966, 0.00565661, -0.0268315766, 0.0156009356, 0.0248369947, -0.0024582909, 0.0107859895, -0.0442619398, -0.00592022482, -0.00678412, 0.00685399445, 0.0220166296, 0.00691116368, -0.00373825361, -0.012831389, -0.00847379863, 0.00382400793, 0.00579000544, -0.00502139237, 0.0151943965, -0.00781952403, 0.0256119594, -0.0249386299, -0.0297281686, 0.0049197576, -0.00304586673, 0.00778776361, -0.00706361607, -0.00113386277, 0.011592715, -0.0152198058, -0.0010028492, 0.0265520811, 0.00192470825, 0.00648874417, 0.0422038361, 0.0154865971, -0.010099954, 0.00285847764, 0.00351275154, 0.00424960349, -0.0115736583, -0.00291088317, -0.00329360156, 0.0121390019, 0.0324214883, -0.00710172905, 0.0071207853, -0.00381130353, -0.0203269515, -0.0339968279, 0.00950920209, 0.0372999571, 0.020771604, -0.0285593681, -0.00336347544, -0.0121961711, 0.0103032235, 0.0284831412, -0.0133395623, 0.0034079405, 0.00702550309, -0.0302109327, -0.00804820284, -0.0173795447, -0.00126646436, 0.0279241502, -0.00408127066, -0.00807996374, -1.81880569e-05, -0.00932498928, -0.0100173764, 0.0239858031, -0.0211527348, -0.0127932755, 0.00457356405, -0.0227534827, 0.00265362021, -0.000647921581, -0.00566613814, -0.000894068275, 0.00378271868, 0.0110083148, -0.0157533884, 0.00692386832, -0.015956657, -0.0056851944, 0.0195011701, -0.0312018711, 0.0127932755, -0.0128250364, 0.00188341911, 0.0441857129, 0.0150546487, -0.0102269975, -0.00599962706, -0.0291183591, -0.00254086894, -0.00361756235, 0.0104493238, -0.0137842149, 0.00652368134, 0.00196282123, 0.0114910798, 0.00408444693, 0.0136063537, 0.000809107965, -0.0053485292, -0.00245511462, 0.00570425112, 0.00609808555, 0.00727959, -0.00622195285, 0.024621021, -5.64251568e-05, 0.000433535781, -0.028152829, -0.00323802, 0.0153849619, -0.00983316358, 0.00750191603, -0.0110210199, 0.00675235968, 0.0141907539, 0.00181989744, 0.0122851022, 0.0386212096, 0.00201999093, 0.0169221871, 0.0294232629, -7.74667278e-05, 0.0116562368, 0.00936945435, 0.0214830469, 0.00518337265, 0.0111417109, -0.0436521284, -0.0110972458, -0.0137079889, 0.00572330737, 0.0186753869, 0.00804820284, -0.0124820191, 0.0113449804, -0.016515648, -0.0016483888, -0.0380368084, 0.00567249, 0.00362709048, -0.00262185931, -0.0151181705, -0.00634582061, -0.010550959, 0.00698103756, -0.0106208324, 0.00490705343, -0.0395359211, 0.00557085546, 0.00706996815, 0.0079783285, -0.00538664218, 0.00115371333, 0.0139366668, -0.0172779094, 0.00747650722, -0.00787034165, -0.0177098569, -0.00492610969, 0.00985857192, -0.0179385357, 0.00823241565, 0.000877393817, -0.0225756206, 0.00422419468, 0.0299060289, -0.000628468057, 0.026297994, 0.00047482489, -0.0191835612, -0.0162615627, -0.00785128493, 0.0178369, -0.000493881409, -0.00746380258, -0.00160789373, -0.00192153221, 0.00613619853, 0.0125074275, 0.00394152291, 0.0239349864, 0.0131744063, 0.0154611878, -0.00956637226, -0.00995385461, 0.0116562368, 0.00722242, -0.00667613326, 0.0139366668, -0.00543428352, -0.00655544223, 0.0276700631, -0.0225756206, -0.00395422755, 0.0096235415, -0.0107415235, 0.0129139666, 0.00361756235, 0.0106843542, 0.0248369947, -0.0031602059, -0.0187135, -0.0196663272, 0.00855637621, -0.0214830469, -0.0106652975, -0.0264758561, -0.00748285931, -0.0353943072, 0.00475460105, 0.0213560034, -0.00114100904, 0.0200728662, 0.00517384475, 0.000769406906, 0.0161726307, -0.0071525462, 0.0263234023, 0.00388752972, -0.0125391884, 0.0204794053, 0.001398272, -0.00434806198, 0.0100046722, 0.00183736591, 0.0249005165, -0.0026742646, -0.0187262055, 0.00238841679, 0.00232648314, 0.00561214471, 0.00121008884, 0.00247099507, 0.00508491416, -0.00698103756, 0.00633629225, -0.0218641777, -0.00955366716, 0.0096934149, 0.0145083619, 0.00926146749, -0.00418290542, 0.0172143877, 0.00962989405, 0.00664437236, -1.54586069e-05, -0.013796919, 0.0176717434, -0.0310494192, -0.0215211604, -0.0104683805, 0.00455450779, 0.00123470358, -0.00884857681, 0.0361057483, 0.0125645977, 0.0138350315, 0.0125836534, 0.0138604408, 0.0108558629, 0.00637440523, 0.00149831874, 0.0155247096, -0.00674600713, 0.0150927622, -0.0273905676, -0.004309949, -0.0117642237, 0.01339038, -0.00902008545, 0.00769883301, -0.014114527, 0.00687940279, -0.00465296628, -0.0121834669, -0.00289817876, 0.00424960349, 0.0315321833, -0.00165791705, -0.017481178, -0.0217244308, 0.00184848218, 0.010550959, 0.01339038, -0.00796562433, -0.0065427376, -0.00417972961, 0.0221563783, -0.000874217774, -0.00230107456, -0.010068194, -0.0107224677, -0.0132252229, 0.0221309699, 0.00103381614, -0.00743204216, 0.00811172463, 0.00933134183, -0.00229631038, 0.0050086882, 0.0241890736, -0.0126281194, -0.0160582922, 0.0134157883, 0.00787034165, -0.0104302671, 0.00119420839, -0.00532947294, 0.00799738523, -0.0074574505, -0.011954789, -0.00908995885, -0.00209939294, 0.00667613326, -0.00302839838, -0.00024892576, 0.013555536, -0.0112179369, -0.00968706328, -0.0345304087, -0.000147588755, 0.000471648818, 0.0134539017, -0.0031141527, -0.0117705762, 0.0199331176, 0.00897561945, -0.0207970124, -0.00743839424, -0.00323325582, 0.0168713704, -0.00324913627, -0.00491340552, 0.000316814607, 0.0222580135, -0.00803549867, -0.00111321826, 0.000275525497, -0.00947109, 0.0158931352, -0.00803549867, -0.0150292404, 0.0264250375, -0.00385259278, 0.00727323769, -0.00280766026, -0.00703185517, -0.0110337241, 0.0224358737, 0.0296265334, -0.00139588991, 0.0225756206, 0.0188151356, -0.0146354055, -0.0178369, -0.00240747351, 0.0145464754, 0.00507856207, 0.00349051878, 5.85280759e-06, 0.0239731, 0.00614890317, -0.00118150411, -0.0103349844, -0.00691751577, 0.0359533, 0.00905819796, -0.000359691767, 0.000464502635, 0.0012299394, -0.00984586775, 0.00502774445, -0.00702550309, -0.0120119583, 0.0178623088, 0.0125201326, -0.00672695087, 0.0214703437, -0.00897561945, -0.00166109309, 0.0148894927, 0.0182688478, 0.00513573131, 0.00164044858, 0.0234141089, -0.0178114921, 0.00501821656, -0.00205969205, -0.020047456, -0.00578682916, 0.0186753869, -0.00645380747, -0.0147116315, -0.0317354538, -0.01941224, -0.0091280723, -0.00890574604, 0.0134793101, -0.00708902441, -0.00400822097, -0.00374142965, 0.0151816923, -0.00940121524, -0.00891845, 0.00924876332, -0.000534773513, -0.00167379749, -0.00489434879, 0.021648204, 0.00082022429, 0.00930593256, -0.00367155578, 0.000701121055, -0.00818159804, 0.0117134061, 0.000443858065, -0.00430359691, 0.00874058902, -0.00719065918, 0.0168586653, -0.0276446547, -0.0054056989, -0.0110718366, -0.00529453577, 0.0175574049, -0.0359533, 0.00245670276, 0.0116435327, -0.00329677761, -0.00117515191, 0.0186118651, 0.00759719824, -0.00609808555, 0.00320149492, 0.0188659523, 0.0120246625, 0.0158677269, -0.0273905676, -0.00801644195, 0.0193233099, -0.0165410582, 0.00149276061, 0.0119801974, -0.0100110238, 0.00676506385, -0.00544063561, -0.000331305491, 0.00181830942, 0.00562484888, -0.00889939349, 0.0106525933, 0.00605997257, 0.00121008884, -0.00804820284, 0.0327772088, 0.0267553516, 0.02590416, 0.016286971, -0.0126408236, 0.00639346149, 0.0114212064, -0.00437982287, -0.00490705343, 0.0142161623, 0.00112354057, -0.00258215819, -0.00815619, 0.000609411567, -0.00385259278, -0.0152833275, 0.0058344705, -0.000364654406, -0.000122080819, 0.0162488576, 0.0113005154, 0.00377636659, 0.022944048, 0.0208478309, -0.0102142934, -0.0123867365, 0.000126547195, -0.0307445154, -0.0193106048, 0.0141272321, 0.00807996374, -0.0246337261, 0.0135809453, -0.00435123825, -0.00164044858, -0.00743839424, 0.00225502136, -0.0109003279, 0.0106017757, 0.00119738455, -0.000410112145, -1.44536743e-05, -0.00438299915, 0.0197171438, -0.0060472684, 0.0266791247, 0.00854367204, -0.00147926214, 0.012710697, -0.00143797311, 0.00262185931, 0.0132760406, -0.00411303155, -0.00506268162, 0.00431312528, 0.0130473627, -0.0098712761, 0.00391611457, 0.0030252221, 0.00478636194, -0.0025170485, -0.0126344711, 0.0100745456, 5.68717951e-05, 0.00173573114, 0.00310780038, -0.0144829536, -0.0262725856, -0.0128949108, 0.0198695958, 0.0122088753, -0.0148259709, 0.008257824, 0.00663166819, 0.0123041579, 0.0196155086, 0.0362327918, 0.0150927622, 0.0116308276, 0.00110210199, 0.0233124737, 0.00510714669, -0.0146227013, 0.0223215353, -0.0122787496, 0.0188659523, -0.0080100894, -0.00759719824, 0.00178654853, -0.0377064981, -0.00626641838, -0.00100205524, -0.00570742693, 0.00889939349, 0.00215656264, -0.0164648313, 0.0112179369, 0.0237825345, -0.00367473182, -0.013796919, 0.0204539951, 0.00713349, -0.0221690815, 0.00216450286, -0.000276121, -0.00276160706, -0.00075590855, 0.025573846, 0.00584082259, -0.00255833752, -0.00539617054, -0.0318879075, -0.0206572656, -0.00221532024, -0.0058662314, -0.028152829, -0.0057773008, 0.00227725389, 0.013072771, -0.00178337249, 0.0119738458, 0.0138858492, 0.0136190578, -0.0140001886, 0.00246781902, 0.0169603, -0.0141018229, -0.000114537615, 0.00548192486, 0.00187865505, -0.00095123786, -0.0106843542, 0.0123105105, 0.00733040739, -0.0111035975, -0.0114910798, 0.0255611427, -0.00625689, -0.0158677269, 0.00219626375, 0.0142923882, 0.0119929016, 0.026628308, -0.00321419933, 0.00417972961, -0.00533900084, -0.00781317241, -0.0242525954, 0.0112560494, -3.02720728e-05, -0.00203904742, -0.0100808982, 0.00753367646, 0.0187897272, -0.0157787967, -0.00862625055, 0.000799182686, -0.0189675875, 0.00335077103, -0.010550959, 0.0132252229, 0.00961083733, -0.00733040739, 0.00699374219, 0.0206191521, 0.0108113978, 8.40174107e-05, 0.0159947705, 0.0179512389, 0.00734311156, -0.000496660476, 0.0141399363, -0.0130346585, 0.00713349, -0.0227153692, -0.00927417167, 0.00703820726, -0.00335077103, -0.012710697, 0.00147052796, 0.00863895472, 0.00870247651, -0.00431947736, -0.00265679625, 0.00687940279, -0.00538346637, -0.0235665608, 0.00248687551, 0.0327772088, -0.0175955184, 0.0313797332, 0.00470695971, 0.00178019633, -0.0116435327, 0.00400822097, 0.00217720727, 0.0172143877, 0.006657077, 0.0047291927, 0.0113957981, -0.0304650199, 0.0037700145, -0.00126249425, -0.0109702023, -0.000998879084, -0.00941391941, 0.00623148121, 0.0152198058, -0.00634899642, -0.022613734, 0.00573283574, -0.000186595076, -0.00929322839, -0.0217879526, 0.0114339106, -0.0113449804, -0.0111353584, 0.0017786083, 0.00422737096, 0.0212416649, -0.0081244288, 0.0218260642, 0.0140891187, 0.0189929958, 0.0031030362, -0.0122025236, 0.022537509, 0.000368823, 0.00896926783, 0.00259009842, -0.0127234021, -0.0377573147, 0.0170111191, 0.00232489523, 0.0126725845, 0.0127615146, -0.00425277976, -0.0106144808, 0.00976964179, -0.00152769755, -0.00364614697, 0.00794656761, 0.00780682033, -0.00295852427, -0.0198695958, -0.00367473182, -0.000104215331, -0.0197425522, -0.00889304187, -0.0061393748, -0.0221436732, 0.0363090187, -0.00943932869, 0.00414161664, 0.0262725856, 0.0104366196, 0.0166426916, 0.00686669862, -0.0153722577, -0.0221055597, -0.0215719789, 0.00418925798, 0.00691116368, -0.0372745469, 0.021978518, 0.000512143888, 0.00856272876, -0.0273143426, -0.00710808113, 0.015080058, -0.00394469919, 0.0163886044, 0.0254468042, 0.00188818329, -0.0184721183, -0.00398598844, 0.00133633835, -0.0114783756, 0.0329296626, 0.0148640843, -0.00277113519, -0.00813078135, 0.00902008545, -0.00649509626, 0.0204667, -0.0134539017, -0.0223596469, 0.0117959846, 0.00548192486, 0.0163377877, -0.00539934682, -0.00453862734, -0.0197044387, -0.00465614256, 0.0192343779, 0.0253578722, -0.0147243356, 0.0128695015, -0.010265111, 0.00170873443, 0.00576777291, 0.00997926295, 0.0174176581, 0.0252054203, -0.0148259709, 0.00407491857, -0.017404953, -0.0358770713, -0.0198823, 0.0112560494, 0.00268220482, -0.0294740815, 0.0188024305, 0.0234014038, 0.000817048189, 0.00067928544, -0.0148767885, -0.00198028982, 0.0102841677, -0.00141574047, -0.00903914124, 0.0141399363, -0.00682223355, 0.00211844966, -0.0110210199, 0.00333171454, 0.010265111, 0.0129393758, 0.00388435344, 0.0125645977, -0.0127805714, 0.00823241565, 0.0033158341, -0.00271555386, 0.00912172, -0.00422101887, 0.0126725845, 0.00231695501, 0.0159185454, -0.0254595075, 0.0115673067, -0.0136190578, 0.00357309706, 0.00304586673, -0.0207334906, 0.0198441874, 0.00718430709, -0.0166935101, -0.0187897272, -0.00778776361, -0.0122660454, -0.004672023, -0.0190946311, -0.0137333972, 0.0018627746, -0.00612984644, 0.0109638497, 0.0305412449, 0.00324278418, 0.00966800656, -0.0179131273, -0.00675235968, -0.0100872498, -0.00294899615, 0.00350004714, -0.0141907539, -0.00750191603, 0.000116324161, 0.0197425522, 0.00834675506, -0.00511985132, -0.037376184, 0.0286355931, 0.000835310668, -0.00369696436, 0.0161345191, 0.0156771615, 0.0205810387, 0.00638075732, -0.00156660459, -0.00185959856, 0.00184530613, -0.0206826739, -0.0155120054, 0.00198823, -0.0172270928, -0.0153595535, -0.00640934194, -0.00952825882, 0.00881681591, 0.00611079, 0.0103794504, -0.0131998146, -0.00640299, 0.0107605802, 0.000271753874, -0.0035762731, -0.0079783285, 0.0113322763, -0.0245447941, 0.0223342385, -0.00942027196, -0.00456403615, 0.0200982746, 0.00431947736, -0.0165537614, -0.0244939774, -0.0239349864, -0.0122152278, -0.0032840732, -0.0211908482, -0.00782587659, 0.0279749688, 0.0126535278, 0.000710649299, 0.000790845486, 0.0114402631, 0.0208351258, -0.0229059346, -0.00244082231, -0.000764642784, 0.00205651578, 0.0162615627, 0.0210129861, -0.00874694157, 0.025421394, 0.011954789, -0.00664437236, 0.0126281194, 0.0127932755, 0.0230583865, 0.000632041192, 0.00909631141, 0.00500551192, 0.0439824425, -0.00156739855, -0.0149784228, 0.0214195251, -0.0170365274, -0.0123613281, -0.00413208827, 0.0215592738, 0.00470060762, 0.00729864649, 0.0185991619, 0.00667613326, 0.00665072491, 0.00487211626, 0.00882952, -0.0151943965, -0.011592715, 0.00364932325, -0.0134539017, 0.0121199451, -0.00279019191, -0.0101317149, -0.0145083619, 0.0136825796, -0.0031475015, 0.00156739855, -0.00599962706, 0.00866436306, -0.000749953382, 0.0110972458, 0.0401457325, 0.00512620341, -0.00689845951, 0.00693657249, -0.0198695958, 0.00427183602, 0.000318799663, -0.016286971, 0.00791480672, 0.0214449354, -0.0140891187, 0.00569154648, 0.0115863625, -0.00301728188, -0.0028886504, -0.0252435338, 0.0093758069, 0.0052246619, 0.0217752475, 0.0257008895, 0.00109177968, 0.0149657186, 0.00173731917, 0.00885492843, -0.00978869759, 0.00380812748, 0.0256373677, -0.00615843153, -0.0105890715, -0.00180878118, 0.00107907527, 0.00904549379, -0.0309223756, 0.0268061683, -0.00138159748, 0.0175955184, 0.0219022911, 0.00666342909, 0.030947784, 0.00395105127, 0.0217117257, -0.0183069613, -0.00395105127, 0.0207589, 0.0108431587, 0.0197044387, -0.0177606754, -0.00289659062, -0.0160709973, 0.0147243356, -0.0214449354, -0.00922335498, 0.00175796379, -0.00550098158, 0.00780046778, -0.00100364326, 0.0121262977, -0.0101126591, 0.00524054235, -0.00288071018, -0.00213433, 0.00393517083, 0.00792115927, -0.00127202261, -0.00257421797, -0.00460532494, -0.0374524109, -0.0173033178, -0.0104112113, 0.00941391941, -0.0151943965, 0.00125693611, -0.00955366716, 0.0286864117, 0.00596469, 0.00811807625, 0.0143050924, -0.00276160706, 0.011065485, -0.0205048136, -0.00841662847, -0.0405776799, -0.000329121947, 0.0131235886, 0.0190946311, -0.0287880469, -0.00844838936, 0.00301728188, 0.00778141152, 0.00215973868, 0.00451004272, 0.0137588056, -0.00423689932, -0.0296519417, -0.00156104646, 0.013148997, -0.0233759955, 0.0339968279, -0.0098395152, -0.00601868331, -0.00438935123, 0.00419243379, -0.00724147679, 0.00839757174, -0.000514128944, -0.00489752507, -0.0265012644, 0.00338253193, -0.00915348064, -0.0371475071, 0.0195901, -0.017404953, 0.0125391884, -0.0197044387, -0.00515478803, -0.00903914124, -0.0237444211, -0.0099856155, -0.0095917806, 0.0023233071, -0.00678412, -0.00577412499, -0.00552321412, -0.0190438125, -0.00535488129, -0.00716525083, -0.00535805756, -0.00660625938, -0.0269586202, 0.00802279357, -0.00282354071, -0.00708267232, 0.00897561945, -0.016998414, -0.00618701614, -0.000196718844, 0.0121644102, 0.000166347527, -0.0109003279, -0.0142542757, -0.00713984203, -0.0082705291, -0.00387164927, 0.0115037849, -0.00966800656, -0.00435123825, 0.019247083, 0.016286971, 0.0064442791, 0.00825147238, -0.0197933689, 0.0103476895, 0.016998414, -0.00790210254, -0.0160328839, 0.00943932869, -0.0126344711, 0.0189040657, 0.0119293798, -0.0242144819, -0.0215592738, -0.015880432, 0.0110400757, -0.0386720262, -0.00824512, -0.0238333512, -0.000768612896, -0.0383671224, -0.0142415706, -0.00099173293, 0.0028092484, 0.00612984644, 0.00968706328, 0.0194249433, -0.0120119583, -0.0117134061, -0.00108701549, 0.0034968711, 0.00340158842, 0.0331583396, -0.00230742665, 0.0142796841, -0.00833405089, 0.0145337712, -0.00675871177, 0.000109674227, -0.00594563363, 0.0128250364, 0.0124121448, -0.00919159409, 0.00372872525, -0.0165283531, 0.00100761338, -0.030795332, 0.0194630567, -0.0177352652, -0.0150673529, -0.00274255057, -0.00943932869, -0.00401139678, 0.0054946295, 0.00860719383, 0.00185483438, -0.00926782, -0.00526277488, -0.00890574604, -0.0183958914, 0.0111925285, -0.0312526897, 0.0113005154, -0.00264568, -0.0371729136, 0.018853249, 0.0146608148, 0.000600280298, 0.0120246625, 0.0100300806, -0.0184721183, 0.0139620751, -0.0137333972, -0.00828323327, -0.011383093, -0.0133395623, 0.00142288662, -0.0162996743, -0.0232489519, 0.0385449827, 0.00875329413, 0.0127996281, -0.0113576846, 0.00209939294, 0.00622195285, -0.0289150905, 0.00911536813, 0.00702550309, 0.00279813213, 0.0029331157, -0.0216609091, 0.0235157423, -0.0160964057, -0.0128567973, 0.0155247096, 0.0100110238, -0.0169730056, -0.000596310187, 0.0199839342, 0.0113513321, -0.00131172361, -0.0302617494, -0.0045799166, 0.0239476915, -0.00680952892, -0.00958542805, 0.0102206459, 0.0121771153, 0.00578365335, -0.0140510062, -0.0074574505, -0.0127742188, -0.0105319023, -0.0156136407, -0.00492610969, -0.0255230293, 0.0334886536, -5.47440641e-06, -0.00708267232, -0.0248115864, 0.0221563783, -0.0155247096, 0.00653638551, 0.00664437236, -0.0139747793, 0.0268823951, 0.0115228407, 0.00718430709, 0.00591387274, -0.00650462462, 0.00139668398, 0.00778776361, 0.0206699688, 0.00372237316, 0.00300934166, 0.00145385345, -0.000217561916, 0.00641569449, -0.0032713688, 0.010188885, 0.0196663272, -0.0235919692, 0.00722877262, 0.00453227526, 0.000392842165, -0.00416067289, 0.00336665148, 0.00773694599, -0.0182434395, -0.0131235886, 0.00851191115, 0.0122215804, 0.00449416228, -0.00621560076, -0.025345169, -0.00811172463, 0.0124057932, -0.00204539951, -0.016998414, 0.0125963585, 0.0266537163, -0.00213909405, 0.011472024, 0.00821335893, -0.0155374138, -0.00434488617, 0.00945838541, 0.00234871591, 0.0167062134, 0.0152960317, -0.0134411976, 0.00879140664, -0.000566534407, 0.0149021968, -0.00568837067, -0.0102714626, -0.0125455409, 0.00034619341, -0.00881681591, 0.0216863174, 0.0059234011, -0.000939327525, -0.0181799177, -0.000503409654, 0.016680805, 0.00467519881, 0.000628865091, -0.0167824402, -0.0339714177, -0.0160709973, -0.00455768406, 0.0110400757, -0.00546604441, -0.00852461532, -0.00115053728, 0.0230710916, 0.0230583865, 0.00848015, -0.00466567092, 0.0157279801, -0.00864530727, 0.00849285442, -0.00024277209, 0.017798787, -0.0105827199, -0.0023233071, -0.0137206931, 0.00167220947, 0.00371602108, -0.00193900068, 0.016439423, 0.00801644195, -0.0147243356, 0.022778891, 0.00119976664, 0.000736058, -0.00602821168, 0.00224390486, -0.0111607676, 0.00201999093, 0.00541840307, 0.0178241972, -0.0349369496, -0.00102984603, 0.0108495103, 0.0115228407, -0.0141399363, 0.0105128456, -0.0140510062, -0.0348353162, -0.00170714641, -0.00708902441, 0.00504997699, -0.0240747333, 0.000123172591, -0.00818795059]
|
29 Jan, 2021
|
Fabric.js Itext borderColor Property
29 Jan, 2021
Fabric.js is a JavaScript HTML5 canvas library that is used to work with canvas. The canvas Itext is one of the class of fabric.js that is used to create Itext instances. The canvas Itext means the Itext is movable and can be stretched according to requirement.In this article we will be using borderColor property used to set the color of the border in a canvas Itext.
Approach:
First import the fabric.js library.
After importing the library, create a canvas block in the body tag which will contain the Itext .
After this, initialize an instance of Canvas and Itext class provided by Fabric.JS and use the borderColor property to set the color of the border.
Syntax:
fabric.Itext(Itext, {
borderColor: number
});
Parameters: This function takes a single parameter as mentioned above and described below:
borderColor: This parameter takes a number value.
Example: This example uses FabricJS to set the borderColor property of the canvas Itext as shown in the below example:
HTML
<!DOCTYPE html>
<html>
<head>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;width: 400px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Itext borderColor Property
</b>
</div>
<div style="text-align: center;">
<canvas id="canvas" width="400" height="200"
style="border:1px solid green;">
</canvas>
</div>
<script>
var canvas = new fabric.Canvas("canvas");
var geek = new fabric.IText('GeeksforGeeks', {
borderColor : 'red'
});
console.log(geek.willDrawShadow())
canvas.add(geek);
canvas.centerObject(geek);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Fabric.js Itext borderColor Property
|
https://www.geeksforgeeks.org/fabric-js-itext-bordercolor-property?ref=asr4
|
CSS
|
Fabric.js Itext borderColor Property
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, Fabric.js Itext borderColor Property, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.00348174805, 0.00823134184, -0.0177112222, 0.0417037494, 0.0669319406, 0.00627486967, -0.00873333123, 0.0066224006, -0.019165704, -0.0175696351, 0.00135151029, -0.0177627075, 0.0254984945, -0.0518207662, -0.00547039881, -0.0131418295, -0.0212895051, -0.033363, 0.00103857135, -0.00014852536, 0.0104452446, -0.0018711983, -0.0159735642, -0.00801896118, -0.0396700464, 0.0255242381, 0.0227182452, 0.0249321479, -0.0185221266, 0.0170290302, 0.000812917366, 0.0102006849, -0.00442136964, -0.0425275266, -0.0199122522, -0.027879728, -0.00622660108, 0.0666230246, -0.0426819846, -0.0157032628, 0.0121635934, -0.0192944184, 0.00672537275, 0.0227697305, -0.00855956506, 0.0133091593, -0.0154072177, -0.0244816449, -0.0214182213, -0.0496840961, -0.012498253, -0.0253311656, -0.00457904581, -0.00148666138, 0.0413948298, 0.0317926705, 0.000116447096, 0.034392722, -0.0315609835, 0.00452112406, 0.0151626589, -0.0569436364, -0.027879728, -0.0160507951, -0.0136180753, 0.0287549924, -0.0225766581, 0.00274485326, -0.0119125983, 0.0208904892, -0.0273391232, -0.00023832437, 0.0388977565, 0.014017093, 0.0107670324, 0.00440528, 0.0475474223, 0.00474959332, -0.0171448737, 0.0637912899, 0.018934017, -0.0110437702, -0.0253955238, 0.00390329049, -0.0313807838, -0.0221390259, 0.0501474701, -0.0432225876, 0.0333115123, -0.0136052044, -0.0140814502, 0.0131740076, 0.0170933884, -0.038408637, -0.0242370851, 0.0159478225, 0.0153428605, -0.0182518251, -0.0286262762, -0.0141200656, 0.040828485, 0.0310203806, 0.00532881217, 0.00440206239, 0.0175567623, -0.0459770933, 0.0254470091, -0.015458704, 0.0055122315, 3.84637424e-05, -0.00126784539, 0.00365551375, -0.0250608623, 0.0485514, -0.0378422886, 0.0323332772, 0.00339808315, -0.017350819, 0.0205558296, 0.00815411285, 0.00642932765, -0.0109214904, 0.0117195258, 0.0301966034, -0.0246361028, -0.00200795825, -0.0270302072, -0.00729172025, 0.0139527358, 0.00104259374, -0.0242113415, 0.0055572819, 0.0248034336, 0.010870005, 0.0432225876, 0.0264896024, -0.0130259851, 0.0153686032, -0.0069248816, -0.0175567623, -0.0274420958, -0.0429136716, 0.00952493, 0.0548841916, -0.00809619, 0.0111403065, 0.0148794856, 0.00706646824, -0.0110051557, 0.0231301337, -0.0388205275, -0.0219588261, 0.0382799208, 0.000732068089, 0.0327194221, -0.0150210718, -0.0179429092, 0.0172221027, 0.0429394133, -0.00924175605, 0.0121442862, -0.0186894573, 0.00534168351, 0.028034186, 0.00639714906, -0.00100076129, -0.00429265434, -0.00950562302, -0.0694032758, 0.0306342337, -0.0168102141, -0.00103937578, 0.017801322, -0.00826995634, -0.0608565807, -0.0105803953, 0.0143002663, -0.0191270895, -0.00190176815, -0.0189726315, -0.0453077741, 0.0219202098, 0.0247905608, 0.0513059087, -0.0278282408, 0.0190627314, 0.0275193248, 0.0197063088, 0.00428943662, -0.0224479437, -0.0302480888, 0.0338521153, 0.046286013, -0.0093511641, 0.0479593091, 0.0106383171, 0.00628774101, 0.0157418773, -0.0090937335, -0.0245073885, 0.0504049, -0.0172221027, -0.0294500533, -0.0152527597, 0.03707, -0.00729815569, -0.0222548712, -0.0486028865, 0.0487058572, 0.00264992565, -0.00863035861, 0.0234261788, 0.0222548712, -0.00334337912, -0.00893927552, 0.00410923501, 0.00622016564, 0.00407062052, -0.0120284418, -0.000796023523, 0.036297705, 0.0312778093, -0.0339293443, -0.0173894335, -0.0464662127, -0.00332085392, 0.0348303504, -0.000811308448, -0.0141200656, -0.0364264213, 0.0105353445, -0.0321788192, 0.00610432168, 0.00392903341, 0.0411374, 0.00272393692, -0.0198350232, 0.0114234807, 0.00442458736, -0.0131933149, 0.00588872377, -0.0109794131, -0.0316124707, -0.0349590667, 0.0350620411, 0.0302738324, -0.0120091345, 0.00510999607, 0.00257430552, 0.00214310922, -0.013257673, -0.00957641657, 0.0114749661, 0.0315095, 0.00197095261, 0.012421024, -0.0236192513, -0.0165012982, 0.038563095, 0.0311748385, 0.0439948812, 0.0386660658, -0.0128586553, -0.000435218506, -0.00799965393, -0.0119190337, 0.0149438428, -0.0274163522, -0.0123309232, -0.00680903764, 0.0208776165, -0.0455137193, 0.0356283858, -0.014776513, -0.0282916166, 0.0711538047, -0.0173250753, -0.0275965538, 0.0135022318, -0.00332728983, -0.0204013698, 0.00843085069, -0.000657252327, 0.0502504408, 0.000774705, -0.043943394, -0.0073560779, 0.0411116593, 0.0013675997, -0.0479335673, 0.00507459976, 0.00142310816, 0.0261549428, -0.0495811217, 0.024546003, -0.00330154668, -0.000652827788, -0.031818416, -0.00566990767, -0.0178914219, -0.0302480888, -0.0533910953, -0.0244816449, -0.0449216291, 0.0111917928, 0.00707290415, 0.0373274274, 0.0192171894, 0.0429651588, 0.00285747903, 0.00597238867, -0.00904224813, -0.0367610827, -0.0342382602, -0.00287678628, -0.0400047079, 0.0367868245, -0.0308144353, 0.0121056708, 0.00180523167, -0.0170547739, -0.0260133557, 0.0145963114, 0.036529392, 0.0282401312, -0.0435315035, -0.0144933397, 0.0055637178, -0.0020111762, 0.010187814, -0.0394898467, 0.00695062475, 0.0138111487, 0.0177884512, 0.00164916436, 0.0169260576, -0.00765212299, 0.00611397531, -0.00941552222, 0.0445612259, 0.020298399, 0.0054350025, -0.00307307718, -0.0290639084, 0.0167587288, -0.0399789624, 0.028188644, 0.0169389304, 0.0331827961, 0.0121829007, 0.000892962213, 0.0320758447, -0.0100977132, -0.0165399127, 0.0223063566, 0.0120091345, 0.00258074119, -0.0513316505, -0.0309174079, 0.0156517774, 0.00937690772, -0.00394834112, 0.0412661172, 0.0107412897, 0.0197964087, -0.00433126884, -0.020916231, 0.0221905131, 0.00734964199, 0.00216080761, -0.0377393179, -0.00526445452, -0.038794782, 0.0179042947, -0.0100848414, -0.0287035052, -0.0242885724, 0.00879768841, -0.0275450684, 0.0150983017, -0.0294500533, 0.0196162071, 0.00561520364, -0.036529392, 0.0241598561, 0.0408027396, -0.0379710048, 0.0145319542, 0.00425725756, -0.00283817179, -0.0134636173, 0.00754271494, 0.0035461057, -0.0119640846, 0.00332407188, -0.000341698818, 0.00279955706, -0.0304282904, 0.0241212416, -0.0618863031, 0.00879125297, -0.0218043663, 0.0324619897, -0.0245846175, 0.0188439153, 0.00717587629, -0.000890548807, -0.0259618703, -0.00446642, -0.0373531729, -0.0177627075, -0.00483647641, 0.0575099848, -0.0185864847, 0.0353709571, 0.0341610312, 0.0392839, 0.0347016379, -0.0159349497, 0.0141844228, 0.053494066, -0.0215083212, -0.0315095, -0.00454043131, -0.00308433967, -0.0414720587, -0.0228598323, 0.00784519594, -0.0290124211, 0.0117645757, -0.106576242, -0.0093897786, -0.026747033, -0.0124725094, 0.0074397428, 0.00456939219, 0.0287807342, 0.0150468154, 0.0312520675, 0.0185221266, -0.00994969066, -0.0144032389, 0.0300936308, -0.0188954026, 0.00501989573, 0.000987889711, -0.025614338, -0.0286777616, 0.000798839144, 0.000179698589, -0.00708577549, -0.0219588261, -0.0400047079, -0.00277381414, 0.00137001311, -0.0327451639, 0.00626843376, -0.00106511882, 0.0316382125, 0.000215799198, -0.0312263239, -0.0107799042, -0.0528762341, 0.0185864847, 0.00321627292, 0.0227954742, 0.00415428542, -0.0114620952, 0.00650655711, -0.00416393904, 0.0273133796, 0.0269529782, 0.0156389046, 0.041060172, 0.013071036, 0.02545988, -0.0149953291, 0.00873333123, 0.0143774962, -0.0314837545, 0.0437631905, -0.013412131, -0.00278507662, 0.00524836499, 0.0108635686, 0.000114938717, 0.0178399365, -0.0236964822, -0.0221132841, 0.0263480153, 0.0210192036, 0.00231848378, -0.0274163522, -0.0351907536, 0.00458548171, 0.000232894192, 0.0152913742, -0.0432740748, 0.0271846652, -0.00908729807, -0.00407062052, 0.0361689925, -0.00126221415, 0.0188567881, 0.048422683, 0.0290381648, -0.0129423207, 0.0369412825, -0.0221905131, -0.014699284, -0.0230529048, 0.0339808315, 0.00962146651, 0.00161457213, 0.00528698, -0.0228340887, 0.0304025467, 0.00244398112, -0.0071887481, -0.0152656315, 0.00236353418, -0.0149953291, -0.00110453786, -0.0187924299, 0.0096472092, 0.0473157354, -0.00706646824, -0.0280856714, 0.000711151864, 0.00983384624, 0.00609466806, -0.00212862878, 0.00763281574, -0.0135537181, 0.0165399127, 0.00801896118, 0.0147121558, -0.0190627314, 0.0175825059, 0.0150082009, -0.0405967981, 0.00307307718, -0.0177112222, 0.00368125667, -0.0273906104, 0.0226667598, -0.0069313175, 0.0217528809, -0.0315095, 0.00387754757, -0.0378937759, 0.031972874, 0.0109601049, 0.0181488525, 0.0334917121, 0.00463375, 0.0152656315, -0.0295015406, -0.015909208, -0.00744617824, 0.0216112938, 0.0068412167, 0.0323590189, 0.00654838933, -0.0193459056, -0.0353452116, 0.017724093, -0.00856600143, -0.0330798253, -0.0356283858, 0.0189468879, -0.0279312134, 0.00868828, 0.0184320267, 0.0299649145, -0.0123502305, 0.00881056, -0.0114363516, 0.0369927697, 0.00498128077, -0.0144547252, -0.0401849076, 0.00185832672, 0.0157933645, 0.00544787385, 0.0173894335, -0.0223964565, 0.00360724539, -0.0558109432, -0.0351907536, 0.0305570047, 0.0270816926, -0.00723379804, -0.00510677835, -0.0346244089, 0.0183805414, 0.0173122045, 0.00758132944, 0.00569886854, -0.00902294088, 0.0185993575, 0.0366323665, 0.0099175116, 0.00189050555, -0.00178592443, -0.0146864122, 0.0225895308, -0.000938012556, -0.00455008494, -0.00678329496, -0.0226796307, 0.00979523174, 0.00421542535, 0.0070149824, -0.00731746294, -0.0107992114, 0.0314065255, 0.0345214345, 0.00630704826, -0.0216627792, 0.0184835121, 0.000475039793, 0.0433255583, 2.45112096e-05, 0.0312778093, -0.00345922285, -0.0159220789, -0.0342382602, -0.000308313291, -0.0312005822, -0.0284460746, 0.00839223526, -0.0240440127, 0.0331570543, 0.00603352813, 0.0208904892, -0.0132962875, 0.00394190522, -0.0195003636, -0.0165012982, 0.00296849594, 0.0173636898, 0.000846302893, 0.0347273797, 0.00312295416, 0.030685721, -0.017878551, -0.00415750314, 0.00905511901, 0.0146349259, -0.0130839068, 0.0209548455, -0.0383314081, 0.00667388691, -0.020298399, 0.0123373587, -0.0202211682, 0.0299906582, -0.00279955706, -0.0103294, 0.00775509514, -0.0256272107, 0.00330476463, -0.0229113176, -0.00128393481, 0.0149567146, 0.0342897475, 0.00567956129, -0.00835362077, -0.0177755784, -0.0151240444, 0.000297050719, -0.00805114, 0.0279054716, 0.00919027068, 0.00841154251, -0.0131933149, 0.063276425, 0.0348303504, -0.0118224975, 0.0170032866, -0.0130967787, -0.00417037494, 0.00469810748, -0.00941552222, -0.00439240877, -0.0287549924, 0.00889422558, 0.0106640598, -0.0101685068, 0.0393096432, 0.0141458083, 0.0238895547, 0.00865610223, 0.00408349186, 0.0286777616, 0.00303124473, -0.0344442055, -0.00324845174, 0.00150918658, -0.0190241169, -0.0193330329, -0.0157161336, 0.005473617, -0.0142745236, 0.0266955476, -0.0123437941, 0.00829569902, -0.0069184457, -0.0223063566, -0.0092224488, 0.0282143876, 0.00630061235, 0.0113269435, -0.0122987442, -0.00847590063, 0.0157032628, -0.0197063088, 0.0123631014, 0.014699284, 0.0115135806, -0.0118675483, -0.0048750909, -0.0178914219, 0.0104323728, 0.0196162071, -0.0021994221, 0.00456295628, 0.0158448499, -0.00203370117, 0.0031004292, 0.0177755784, -0.0122408224, 0.000629498099, -0.0109086195, 0.0428107, -0.00330798235, 0.000673341739, -0.001742483, -0.0460028388, -0.00769717339, -0.0136309471, -0.0442008227, 0.00605605356, -0.0230271611, -0.00311169168, 0.0014737898, 0.00717587629, 0.00888135377, 0.0297589712, -0.0166171417, -0.0357571021, 0.0451790616, -0.0252024494, 0.0256400816, -0.000546235417, -0.00650333893, -0.00923532061, -0.00131289579, 0.0227954742, -0.0354481861, 0.0111531783, -0.0394383594, 0.0423215814, 0.0194102637, 0.0267985202, -0.00737538515, -0.0187795572, 0.0202082973, 0.00505207432, -0.00556049962, 0.0171577465, -0.0141329365, 0.012421024, -0.00689270254, -0.013334902, 0.00850164331, -0.0128843989, -0.00133381202, -0.00581793, 0.0114814024, 0.0289866794, 0.029321339, -0.00550901378, 0.00518400734, 0.0155488048, 0.00261292, -0.00763925118, -0.00793529674, 0.0231301337, -2.58436121e-05, -0.00179718703, 0.0159220789, -0.0018374105, 0.00446963776, 0.0150725581, -0.0224994291, -0.00537708029, 0.00771004474, -0.0334402286, -0.00848233607, -0.0423215814, 0.00910660531, 0.00981453899, 0.0318441577, -0.0373531729, -0.0232459772, -0.00464018574, -0.00839223526, -0.00845659338, -0.0127106328, -0.00158078445, -0.0276737828, 0.0171062592, 0.00578575162, 0.000820157642, -0.00593377417, -0.00686052395, -1.42416411e-05, 0.025537109, -0.0291411374, -0.00157354423, 0.0155745475, -0.0154973185, -0.0461315513, 0.046440471, 0.0382284336, 0.0213667341, 0.00873333123, 0.0197577942, -0.0214439649, -0.0124017168, -0.0330798253, 0.0261935573, 0.00557980686, 0.00618155068, 0.013257673, 0.0215083212, 0.0227439888, 0.0107219825, -0.0340838023, -0.00468201796, -0.0359373, -0.0120348781, 0.0119962636, 0.0316124707, -0.0248549189, 0.0219330825, 0.0192300621, 0.015381475, 0.00759420078, 0.00751697179, 0.0033337255, 0.0171706174, 0.000589676842, 0.0184577703, -0.0116616031, -0.00592733826, -0.0159606934, -0.0244301576, -0.0093897786, -0.00120187888, 0.00277220504, 0.0288322214, -0.0109407976, -0.0244044159, -0.00219137757, 0.018187467, -0.0124338949, 0.0517950244, -0.0174023043, -0.0114170443, 0.00507459976, 0.00522584, -0.00645185309, 0.0100204842, 0.0139269922, 0.0138755059, 0.011101692, -0.00704716099, 0.00617833296, -0.0297589712, -0.00652586436, -0.00835362077, 0.000678570825, 0.0138240205, -0.0193330329, 0.000691040128, -0.00514539285, -0.0369155407, -0.00678329496, 0.036297705, 0.0184448976, -0.0414978042, 0.00509712473, 0.0354481861, 0.0043537938, 0.00598204229, -0.0112947654, 0.00293149031, 0.0111724855, -0.012993807, 0.0116487322, 0.00378422905, 0.030531263, -0.0442523099, 0.00914522, 0.0236449949, 5.480455e-05, 0.0148022566, 0.0118739838, -0.0182904396, -0.00288644, -0.0100977132, 0.0263866298, 0.0253569093, -0.0127235046, 0.0196934361, -0.00621051202, 0.0190241169, -0.00867540948, 0.0231172629, -0.0102779148, 0.0210964326, -0.003484966, -0.0278282408, -0.0205558296, -0.00410923501, 0.00795460399, 0.0127749909, 0.025537109, 0.0334402286, 0.0222677421, 0.00872045942, -0.0351392701, -0.00799965393, -0.0347016379, 0.0176854786, -0.0214439649, -0.011938341, 0.0318441577, 0.026669804, -0.00740756374, -0.0314065255, -0.00181005849, -0.0297332276, 0.0149953291, -0.00092996785, -0.0142487809, 0.0169131868, -0.000554682396, 0.0523871146, 0.0170933884, -0.0067961663, 0.00538029848, 0.00412210636, -0.00489439815, -0.0020723159, -0.00874620304, 0.0195389781, 0.0426819846, -0.0389749855, -0.0182132106, -0.00262257364, 0.0366066247, -0.00853382237, -0.00800609, -0.00741399964, -0.00240214868, 0.00286874152, -0.0175052769, -0.0133992601, -0.0184320267, 0.0386918113, -0.000384134648, 0.0125561748, 0.0142745236, 0.00151401339, 0.00176983501, -0.0223835856, 0.0323332772, -0.00178914226, -0.0227697305, 0.016063666, 0.0306599773, 0.0497613251, 0.0344184637, 0.0142745236, -0.0286520198, 0.0438919067, 0.0125175603, -0.00617833296, -0.0209033601, -0.0160765368, 0.007272413, 7.78827962e-05, 0.0117581403, 0.0341352895, -0.0424760394, -0.0138368914, -0.0120026991, 0.0120091345, 0.00498449896, 0.00942839403, 0.00789668225, 0.0388462692, -0.0160379224, 0.0357056148, 0.00278507662, 0.0269529782, -0.0233489498, 0.0174666625, 0.0398502462, -0.00127830356, -0.00690557435, 0.0160250515, 0.0171834882, 0.00868828, -0.0143903671, 0.0305055194, 0.0232717209, -0.000455330272, 0.0180973671, -0.0215598084, -0.00680260221, 0.00631026598, -0.019011246, 0.00774222333, 0.0351392701, -0.0296045132, 0.000692649046, -0.0201181974, 0.0119576482, 0.0168359578, 0.00703428965, -0.0195389781, -0.0161151513, -0.0207746439, -0.0248163044, -0.0198736377, -0.0229113176, 0.00921601336, 0.00581793, -0.00637784181, -0.026747033, 0.0027142833, -0.00994969066, -0.0114106089, -0.0122601297, -0.00108683959, -0.0104001937, 0.00261935568, -0.00154860562, -0.00588228786, 0.00276898732, -0.00407383824, -0.0174666625, -0.0156260338, 0.0219974406, -0.00792242493, -0.00415428542, -0.00268854015, -0.00799321849, -0.0466979, -0.0403393656, 0.0194617491, 0.00544787385, 0.00752340769, -0.0170547739, 0.0178270657, -0.00149953295, 0.0272104088, -0.014776513, -0.0179943945, 0.018110238, -0.0145963114, -0.00882343203, 0.0106640598, -0.0205043424, -0.00789024588, 0.0287807342, 0.0210578181, 0.0136953052, -0.0147507703, -0.000562727102, -0.00745261414, -0.000457743678, -0.00635853456, 0.00637462363, -0.036452163, -0.0156389046, 0.015535933, -0.00108844845, -0.00364907784, -0.00982097536, -0.0486801155, -0.00129519741, 0.0312005822, -0.025949, -0.0110051557, -0.0188439153, -0.0128779626, -0.0374561436, -0.0210192036, 0.0201954264, 0.013862635, -0.0116616031, 0.0280084424, 0.0280084424, 0.00338521157, 0.0241856, 0.00697636791, 0.0341610312, 0.00702785375, 0.0184577703, 0.0199766103, -0.0298876856, -0.0272104088, 0.0199637376, -0.00569565082, -0.0208261311, 0.0132448012, -0.0242242143, -0.0257301833, -0.0183805414, 0.0345729217, 0.0152785024, 0.0171834882, 0.00546396337, 0.0223449711, 0.00850808, -0.00259522162, 0.00317765819, 0.0230271611, -0.0239024255, 0.00985315442, -0.00778727373, -0.0109407976, -0.000353363634, -0.00470776111, -0.0113398153, 0.000979845, -0.0186765864, -0.00310364692, -0.00584367337, -0.0240440127, 0.00499415258, -0.0184963848, 0.00343669765, -0.028420331, 0.0190241169, 0.0163725819, 0.0121893361, -0.00270623853, -0.0139527358, 0.0133091593, -0.0486286283, -0.0064936853, -0.0187924299, -0.00802539755, 0.0177884512, 0.038485866, 0.0111917928, -0.0201954264, 0.0299391728, -0.0126269683, 0.0348303504, 0.00938334316, 0.0237222239, 0.0096986955, -0.00719518354, -0.036220476, -0.00883630291, -0.00787093863, 0.0131547, 0.00835362077, -0.00566990767, 0.026360888, 0.0169003159, -0.0166428853, 0.00387111166, -0.0120348781, 0.0133863883, -0.0115972459, -0.0065323, -0.0102006849, 0.0162567385, -0.0152527597, 0.011938341, -0.0313292965, 0.0145963114, 0.000769476, -0.00496197352, -0.00183258369, -0.0099947406, 0.0152527597, -0.0197063088, -0.0246103592, 0.00546396337, 0.0267212894, 0.0131353932, 0.0030232, -0.0282401312, 0.00668032235, -0.0139913503, 0.00827639177, 0.00655160751, -0.00618476886, 0.0247133318, -0.0350620411, 0.00112384523, 0.00139656069, 0.0053899521, 0.0168874431, -0.00111499603, 0.00512286788, -0.022357842, 0.00412210636, -0.0134507455, 0.0229370613, 0.0274935812, -0.0229370613, 0.00464340346, -0.00832787808, -0.000411486631, 0.0171062592, -0.014930971, -0.0172607172, 0.0152398879, 0.0127878617, 0.00431517931, -0.0239539128, 0.0192300621, 0.00734320609, -0.00767786568, -0.019551849, -0.00702785375, 0.0299134292, 0.00589194149, -0.00103454897, -0.0057310476, 0.0257687978, 0.014171551, -0.0269272346, -0.00794173218, 0.00143597974, 0.0183805414, -0.00450825226, 0.00376170385, 0.0034399156, 0.0175825059, 0.00186958932, 0.0228340887, 0.00945413671, -0.00258878595, 0.00199025986, -0.0109214904, 0.0280084424, 0.00377457542, 0.0248549189, -0.0235806368, 0.00571817579, 0.00269497605, -0.00834718533, -0.00858530868, 0.0351650119, 5.9530812e-05, 0.010078406, 0.0107348533, -0.00324845174, 0.00399339106, 0.00126221415, 0.0207489021, 0.00346565875, -0.00259039481, 0.00756202219, -0.0114878379, -0.00095329748, 0.0107026752, -0.0249321479, 0.0145576969, -0.0377650596, -0.0311490949, -0.00555084599, -0.000456939219, 0.00859174412, 0.0058597629, -0.00733033475, 0.0374304019, 0.0108635686, 0.0161923803, -0.00660309335, -0.00816054828, -0.0258975122, -0.0308916643, -0.0104388082, 0.00967938825, 0.00729815569, 0.0304282904, -0.00372308912, 0.0295015406, 0.00952493, -6.23967353e-05, 0.00749122864, -0.00356219523, 0.00724023394, 0.0170419011, 0.0121635934, -0.00344635127, 0.00136438187, 0.0173122045, 0.00507138157, -0.0159349497, 0.0037423966, 0.00616867933, 0.0092224488, -0.0173636898, -0.00747192139, 0.0257945396, 0.0141200656, 0.00963433832, -0.0198092796, 0.0048750909, -0.00148666138, 0.0199637376, 0.0118675483, 0.0179943945, -0.0165656544, 0.0189855024, 0.0343412347, -0.0135151036, 0.00120348774, 0.00546074519, -0.00236031623, -0.0254341383, -0.00792886, 0.00814124104, -0.0112111, 0.0328223929, 0.0112175355, 0.0179171655, -0.0038035363, -0.000165419231, 0.00285908789, -0.000709542946, 0.00171674, 0.00121233694, 0.00258074119, 0.00108523061, 0.00122601294, 0.00340451882, -0.0153557314, 0.0028655238, -0.0222162548, -0.000443263212, -0.00508425338, 0.0111724855, -0.00259843958, -0.00418002857, -0.00242306502, -0.0178141929, -0.030531263, 0.0163339674, -0.0113719944, -0.00111580046, -0.0174537916, -0.00475281151, -0.0230915193, 0.0187280718, 0.046363242, 0.023567766, -0.00684765261, -0.0172993317, 0.017350819, 0.00167812535, -0.0189597588, 0.00153412519, -0.0295015406, -0.0128264772, 0.0193716474, 0.00148022559, -0.00327902148, 0.0227053743, 0.000863196794, 0.0288064778, -0.0264896024, -0.0125239957, -0.00187280716, -0.00689913845, 0.0322303027, 0.00519687915, 0.0129487561, -0.00208196952, -0.0074847932, 0.022048926, -0.000800850336, 0.0153557314, 0.0100719696, -0.00239410414, -0.0123244869, 0.0147507703, -0.0336976573, -0.00454043131, -0.00368447462, -0.00267245085, 0.0234519225, -0.0382026918, -0.00300389272, 0.00171191315, 0.00929967873, -0.0126012247, -0.0280856714, -0.0337748863, 0.00528698, 0.00503276708, 0.0152527597, 0.0204399843, -0.000765051402, -0.0435315035, -0.0118675483, -0.0031438705, -0.00398051972, -0.00750410045, 0.0126076611, 0.0137725342, 0.0116551677, 0.0154072177, 0.0016974326, 0.000654436706, -0.02697872, 0.0376106, 0.0018148853, 0.0113398153, -0.0140814502, -0.00974374637, 0.00207714271, 9.64358915e-05, 0.000189754472, 0.0378937759, -0.00102167751, 0.00497162715, 0.0216241647, 0.00588872377, 0.000294838421, -0.00327580376, -0.0248935334, 0.00654195342, 0.00865610223, -0.00345278718, -0.00432805112, 0.0136309471, 0.00176339922, 0.0295272823, -0.0167973433, 0.0108957477, 0.0137081761, 0.00272071897, 0.00285426108, -0.000302078639, -0.00169421476, 0.00449538091, -0.024018269, -0.0149695864, -0.0119898273, 0.015304246, 0.0237737112, 0.028034186, 0.00810906198, -0.000890548807, 0.00450181682, 0.0108828759, 0.00996899791, 0.0392324142, 0.0124017168, 0.00559267867, 0.0286777616, -0.0107348533, -0.00368125667, 0.00264349, 0.0157418773, -0.00686696, -0.0215083212, 0.0172864608, 0.00793529674, -0.000980649493, -0.00443424098, 0.0414205752, 0.00145930937, -0.00804470479, 0.00980810355, 0.0274163522, 0.00352679845, 0.029475797, -0.00749766454, 0.0144804679, -0.0101234559, -0.00168456114, 0.0150210718, 0.0258717686, 0.0252925511, 0.00985315442, 0.0548327044, -0.0250994787, 0.0142745236, 0.00445676642, -0.00958928745, 0.013180444, -0.010187814, 0.00929324236, -0.0378680341, -0.0312263239, 0.0208003875, 0.00147620321, 0.0119640846, 0.0118675483, 0.0110502057, -0.00753627904, -0.00145448255, 0.00646794215, -0.010683367, -0.00226538884, -0.0126655828, -0.0154329613, 0.0216885228, -0.0205429569, -0.00803183299, 0.0121571571, -0.000765453617, -0.0165399127, -0.00432805112, -0.0251123495, 0.00127428118, -0.00471419701, -0.00830213539, 0.0152012734, -0.0144804679, 0.0101041486, 0.0025244283, 0.00418968219, 0.0022669977, -0.00899719726, -0.0051647, -0.0035235805, -0.00065845903, -0.00479142601, -0.0106576243, 0.0139527358, 0.023863811, -0.00263383612, 0.013412131, 0.00315513299, 0.00189694134, 0.00362333492, -0.00635209866, -0.000662079197, -0.00150918658, -0.0116809104, 0.007272413, -0.00109327538, 0.00133059407, 0.0128650917, 0.015613162, -0.00586298062, -0.0114363516, -0.0142101655, -0.00323879789, 0.0100912768, 0.00169582374, -0.0389235, 0.0121378498, 0.019629078, 0.0100655342, 0.0206459295, 0.0142359091, 0.0146735413, -0.0175438914, 0.0148666138, 0.027956957, 0.00971156731, 0.0051325215, 0.00668675825, -0.00800609, 0.0108893123, 0.0157290064, 0.0232073627, -0.00650333893, 0.0108893123, 0.0364006795, 0.031895645, 0.00455973856, 0.014171551, 0.0345214345, 0.00722092669, 0.00231365697, -0.0141458083, -0.0301193725, -0.00260970206, 0.00908086263, 0.0100397915, -0.00460478896, 0.0230786484, 0.0106383171, 0.0155488048, -0.0225123, 0.0127556836, -0.00165560015, 0.0100076124, 0.0109021831, 0.00780658098, 0.00564416451, 0.0216885228, 0.0249064043, 0.00317122252, 0.0189726315, -0.0102907857, -0.0201053247, -0.00442780554, 0.00744617824, 0.00571495807, 0.0231558774, -0.015613162, 0.00689270254, 0.00171513099, -0.0203627553, 0.0188181717, 0.0295272823, 0.00756202219, -0.00405774871, 0.0207875166, -0.00145046017, -0.000697073643, -0.00522262231, 0.0152656315, -0.00514217513, -0.00391616207, 0.00428300072, 0.0182518251, -0.00300389272, 0.014699284, -0.0182904396, -0.00316800456, 0.00493301265, 0.0159993079, -0.0016588181, -0.000593699166, 0.0226667598, -0.0263222735, 0.0115135806, -0.0022444725, -0.0227182452, 0.0174409188, 0.0203498844, 0.00887491833, -0.00328384829, -0.0120863635, -0.029553026, 0.0237737112, 0.00521296868, 0.0100977132, 0.0306599773, 0.0055186674, -0.0107284179, -0.00247294223, -0.00590481283, -0.00556049962, 0.0113719944, -0.00959572382, -0.0112368427, 0.00789668225, 0.00747835729, 0.026901491, 0.0192300621, 0.0217142664, 0.000581632135, -0.0133091593, -0.021971697, -0.00511643197, -0.019629078, -0.00523549365, -0.005171136, 0.00591124874, 0.0112432791, 0.000652827788, -0.0183676686, 0.011816062, -0.0165399127, -0.000230883015, 0.00463053165, -0.000230480786, 0.000711151864, -0.0463374965, -0.00627486967, -0.010528909, -0.00742687099, 0.0150983017, -0.000701900455, 0.00770360883, -0.0178656802, 0.030531263, 0.00612684712, 0.0144289816, -0.00550257787, -0.0504049, -0.0183033124, 0.0260004848, -0.0112368427, 0.0225895308, 0.0300164018, -0.0360917635, 9.04400713e-06, -0.0100977132, 0.0241341125, 0.00835362077, 0.00790311769, 0.00908086263, -0.0189211443, -0.00250512105, -0.00317122252, 0.0119640846, -0.0148666138, -0.00376492157, 0.014853742, 0.0310718659, 0.0252668075, -0.0301451162, -0.00825064909, 0.00262740045, -9.8547629e-05, 0.0100590987, 0.0206974149, -0.0271589216, -0.00458548171, 0.0275193248, -0.0190627314, 0.00129197957, 0.011738833, -0.0156646483, -0.00216402556, -0.00252281921, -0.0268757492, -0.00199186872, 0.019397391, -0.0150596863, 0.00854025781, 0.00826995634, -0.00559589639, 0.00444389461, -0.00528054405, -0.0017312204, -0.00206748908, -0.00660309335, -0.00649046758, -0.0323590189, 0.0226667598, -0.00299745682, -0.00716300495, 0.0046562748, 0.0131225223, 0.00548970653, 0.00320983701, 0.0241598561, -0.00598204229, 0.000613408687, 0.00716300495, -0.0031004292, 0.00070149824, 0.0111724855, -0.00147298537, 0.00830857083, -0.0426047556, -0.00166847173, -0.00242950069, -0.000214994725, 0.0212895051, 0.00385502237, -0.00740756374, -0.0229370613, -0.00485256594, -0.0141972946, -0.00308112171, 0.00744617824, 0.0302995741, -0.0048750909, 0.0214182213, -0.0336976573, -0.0297332276, 0.00548970653, 0.00419611763, 0.00644541718, -0.00370056415, -0.00380675425, 0.0103744511, -0.00848233607, 0.000746950798, 0.0250222478, 0.0196548216, 0.0072273626, 0.0473414771, 0.0216627792, -0.0235420223, 0.00592090236, 0.00808331929, 0.0052548009, -0.00515504647, -0.010528909, -0.0221004114, 0.00346887647, 0.0124338949, -0.0135151036, 0.0141972946, 0.0025179924, -0.010155635, -0.012421024, -0.00455008494, 0.0214697067, 0.0246618465, -0.0228340887, -0.0148151275, -0.00827639177, 0.0156260338, 0.0268500056, -0.00785163138, -0.00461444259, -0.00781945232, -0.026515346, -0.00125819177, -0.0175438914, -0.00881699566, 0.0390522145, -0.00984671805, 0.00295079756, -1.39273943e-05, 0.00479142601, 0.00211897516, 0.00237157894, -0.0222677421, -0.0117259612, 0.00877838116, 0.000148827035, -0.00571495807, 0.00798034668, -0.0024118023, -0.0100977132, 0.00650977483, 0.00809619, -0.019165704, 0.00506816385, -0.0105932672, 0.00552832102, 0.0160379224, -0.0234004371, 0.00210932153, -0.000497967179, 0.0125497393, 0.022653887, 0.0245331302, -0.00659022201, -0.00602387451, -0.0225766581, 0.0155616766, 0.00288644, 0.0218043663, -0.016140895, 0.00342704402, -0.0139269922, 0.0172221027, 0.00225090841, 0.0165399127, 0.00792242493, 0.0145319542, -0.0161151513, -0.0046948893, -0.00451468816, 0.00236353418, -0.00597238867, 0.0200409684, -0.0142745236, 0.00864966586, -0.0196419507, 0.00278990343, 0.00690557435, -0.0148794856, -0.00453721313, 0.0008487163, 0.00176018127, -0.00263544521, -0.0110502057, 0.0119061628, 0.0345986634, 0.009132348, 0.00573748304, 0.0172221027, 0.00617189705, 0.00993681885, 0.0135794608, 0.0259232558, 0.014094322, 0.00931898598, -0.0369155407, -0.00406096689, -0.00136840425, -0.00891353283, 0.00125658279, 0.00388398324, -0.00301837316, 0.00631348416, -0.0152656315, 0.00176018127, -0.0271074362, 0.00169421476, 0.00308755762, 0.00307468604, 0.000733274792, 0.00193072902, 0.00980166811, 0.00494266627, -0.0138755059, 0.0106254453, -0.0264123734, -0.00493623083, 0.00681547355, 3.77849719e-05, -0.0228469614, 0.00203531026, 0.0157161336, -0.026360888, 0.00216241647, -0.0212766342, -0.0234647933, -0.0129101416, 0.0201696828, -0.00882986747, -0.00309077534, -0.00262257364, -0.0144418534, 0.00650012121, 0.0204399843, -0.00743330689, 0.0212895051, 0.012807169, 0.00374561432, -0.00349783758, -0.00545430975, 0.0158191063, -0.00891353283, 0.00447285548, -0.0122279506, 0.0122022079, -0.00373274274, -0.00113188988, 0.00417359266, 0.0163983256, 0.0138368914, -0.00396121247, -0.0143774962, -0.0226152726, 0.0139269922, 0.00929324236, 0.0099175116, 0.022048926, -0.010155635, -0.00356219523, 0.0182775687, -0.0179042947, 0.00645828852, 0.000988694141, -0.00302641769, 0.0150854299, 0.00790311769, 0.014699284, 0.0323332772, 0.0153557314, -0.0328996219, -0.0234519225, -0.00407705642, -0.0200152248, -0.0130388569, -0.0207746439, -0.00203531026, -0.0220875405, 0.0125368675, 0.0134507455, -0.00857887324, -0.00676398771, 0.0183547977, 0.0066610151, 0.0103165293, 0.00226377975, 0.0313550383, 0.00392903341, -0.0201053247, 0.0131933149, -0.00265797041, 0.00344313355, 0.00499415258, -0.00451790588, 0.0251767077, 0.00416393904, 0.0121700289, -0.00396121247, -0.00704072509, 0.00971800275, -0.000117553245, -0.00213506445, -0.00121635932, -0.00792886, 0.00993681885, -0.0143131381, -0.0167587288, 0.0256658252, 0.0244044159, 0.0141586801, -0.00978236087, 0.0101298923, 0.0156775191, 0.0034399156, -0.00642932765, -0.00537064485, 0.0175181478, -0.027879728, -0.0344699509, -0.017878551, -0.00687339529, 0.00773578789, -0.00832144264, 0.0377650596, -0.0100397915, 0.024172727, 0.0127363764, 0.0159478225, 0.010528909, 0.00840510707, -0.00514217513, -0.00164675096, -0.0132705448, 0.0237222239, -0.0184320267, -0.0109407976, -0.0160507951, 0.0215211939, -0.00857887324, 0.0105353445, -0.0224093292, -2.73017158e-05, -0.00668032235, -0.00576966209, -0.0100977132, 0.0066610151, 0.0333887413, 0.00498128077, -0.0113913016, -0.0146864122, 0.00331441825, 0.0103358366, 0.0025179924, -0.006969932, -0.00559589639, -0.000775911729, 0.00611397531, 0.0109021831, -0.00176339922, -0.00929967873, -0.00830213539, -0.00578575162, 0.0298104566, 7.16984287e-05, 0.0064550708, -0.00143758871, 0.0164369401, 0.000662079197, -0.00537064485, 0.0241212416, -0.0100397915, -0.0219202098, 0.0192558039, 0.000756202207, -0.00467236433, 0.0122279506, 0.014544826, -0.015909208, 0.00287517742, -0.00878481753, -0.0145705687, -0.0143774962, -0.00602065679, 0.0033112003, -0.00877194572, 0.00897789, -0.0115135806, -0.0130839068, -0.0290381648, 0.00387754757, 0.0035235805, 0.0225509163, -0.00308755762, -0.000304894289, 5.58101383e-05, -0.00338842953, -0.00494910218, -0.00466271071, -0.0118031902, 0.022048926, 4.73632e-05, -0.0017537456, 0.00248903153, 0.0200152248, -0.0126398392, -0.01125615, 0.000178994669, -0.00315674208, 0.00390972616, -0.0119254701, -0.0115007097, 0.0181488525, 0.00165238231, -0.000536984, 0.0141458083, -0.00121716375, -0.00546718109, 0.0181488525, 0.0345729217, 0.00117613573, 0.0223964565, 0.0117452685, -0.0167844705, -0.0146477977, 0.00201439392, 0.0269272346, 0.00555406371, 0.00428943662, -0.0101749422, 0.0270559508, 0.00711151864, -0.00435057608, -0.0126334038, -0.0145319542, 0.0185864847, 0.0137210479, -0.00906799082, -0.00103776692, -0.0011729179, -0.0127749909, -0.00401913421, -0.00346565875, -0.00645185309, 0.0133477738, 0.0169646721, -0.0143260099, 0.0161022805, -0.00113269442, 0.00673824456, 0.00456295628, 0.00981453899, 0.00291861873, 0.0242370851, 0.0317154415, -0.00988533255, -0.00199991348, -0.00803826842, -0.0264123734, -0.00722092669, 0.0262321718, -0.00303124473, -0.014930971, -0.0167201143, -0.0357313603, -0.00723379804, 0.0096472092, 0.00451468816, -0.0135022318, -0.0092610633, 0.00586941652, 0.00980166811, 0.00953780115, -0.017196361, -0.00438275514, -0.00381962559, 0.0114942733, 0.00314547936, 0.0143774962, -0.00577931572, 0.0190756023, -0.0027818589, 0.0136566898, -0.0050874711, 0.0123437941, -0.00631026598, -0.0128007336, 0.00281564659, 0.00436022971, 0.017428048, -0.0377908051, 1.58128714e-05, -0.00110373343, -0.0050359848, 0.0245073885, -0.0338778608, -0.00957641657, 0.00733677065, 0.0118997265, 0.00994325429, 0.0287549924, 0.00068742, -0.0023281374, -0.00406418461, 0.0206716731, 0.0120413136, 0.0164111964, -0.0184320267, -0.0121249789, 0.0172478464, 0.00320179225, 0.00801252574, 0.0129230134, -0.0173765607, 0.000817341963, -0.0113398153, -0.000841476081, -0.00621694745, 0.0020948411, 0.000727241277, 0.00708577549, 0.00792242493, -0.00443102326, -0.0165656544, 0.0116101177, 0.030840179, 0.0438404195, -0.00354288775, -0.00588228786, 0.0168102141, 0.00314708846, -0.00528698, -0.00595629914, 0.0215726793, 0.0201310683, 0.00658056838, -0.00506172795, 0.011178921, -0.0164626837, -0.0224350709, 0.00392581569, -5.26928125e-05, -0.00572782941, 0.00399660924, 0.0127428118, -0.0246875882, 0.0226152726, 0.00874620304, -0.0021157572, -0.016668627, -0.00468845386, -0.0134507455, -0.019165704, 0.0120799281, 0.0102972221, -0.0237222239, 0.013257673, -0.0079159895, 0.0113591226, 0.00181166746, 0.012047749, -0.00850164331, 0.0208132584, -0.005171136, -0.0104323728, -1.71578467e-05, -0.026283659, 0.020530086, -0.0123437941, 0.022653887, 0.00549614197, -0.00162583473, 0.0121893361, -0.000927554443, 0.00955067296, -0.00401591649, -0.0093511641, 0.00712439045, -0.00848877244, 0.026360888, -0.0074847932, 0.0221647695, -0.00240858458, 0.00394190522, -0.00827639177, -0.0149567146, 0.0033112003, -0.00831500627, 0.00155101903, 0.0114041734, -0.0155230621, -0.029398568, -0.0022895229, 0.0213152487, 0.0253182929, -0.0244945157, 0.00435057608, -0.000499173882, -0.00567956129, 0.0155745475, 0.0347531214, 0.0156517774, 0.00261935568, 0.00794173218, 0.0201439392, 0.00368125667, -0.00805114, 0.0249064043, -0.015909208, 0.0216499083, -0.00149551057, -0.015381475, -0.00264992565, -0.0280599296, -0.00352679845, 0.0136180753, -0.0175567623, 0.00712439045, 0.00939621497, -0.0270302072, -0.0079159895, 0.018934017, 0.00749122864, -0.00619764, 0.0201439392, 0.0075684581, -0.0156775191, 0.0106125744, -0.00920957793, -0.00168777897, 0.000573185214, 0.0221647695, 0.00247776904, 0.0070922114, -0.0140685793, -0.0191785749, -0.0177627075, 0.00110453786, 0.00288322195, -0.0200152248, -0.00527732633, -0.00343669765, 0.00168456114, -0.0106447525, 0.00785806682, 0.015381475, 0.0200023539, -0.00167490751, 0.00249385834, 0.00785163138, -0.0104452446, -0.00126301858, 0.0112625863, -0.00682834489, -0.00937690772, -0.0188954026, 0.00734964199, 0.00523549365, -0.0103680147, 0.00153412519, 0.011938341, -0.00458548171, 0.00607857853, -0.0018711983, 0.0110308984, 0.00414463179, 0.0200280957, -0.0104001937, 0.0099561261, -0.00358793815, -0.0201696828, -0.0132834157, 0.0106125744, 0.0132319294, -0.00319052977, -0.0127621191, -0.00607536081, 0.0135151036, -0.017196361, 0.0047785542, -0.00438275514, -0.0209677182, 0.0093511641, -0.00437631924, 0.0225251727, -0.00538029848, -0.0163082257, 0.00934472866, 0.0215340648, 4.74511853e-06, -0.0116229886, 0.0265410896, 0.0217271373, 0.00336590433, 0.00877194572, 0.0214568358, -0.00961503107, -0.00251316559, 0.00561520364, -0.00375848589, 0.00560555, 0.0156389046, -0.00883630291, 0.0222548712, 0.015613162, -0.00823777728, -0.00407383824, -0.00783876, 0.00512930332, 0.0116616031, -0.0150210718, 0.000666101521, 0.029089652, -0.0133220302, 0.0424245521, -0.011024463, -0.00195164524, -0.00485578366, 0.00966008101, 0.00711151864, 0.0154200895, 0.0118868556, 0.0115328878, 0.00950562302, -0.0275965538, 0.0164369401, -0.000422347, -0.0128972698, 0.0154844467, -0.000673341739, 0.00635853456, 0.00673824456, 0.00038333016, 0.00541569479, -0.000472626387, -0.0142230373, 0.00794173218, -0.0108378259, 0.015909208, -0.0120220063, -0.00047946439, 0.00544143794, -0.00639393087, 0.0189211443, -0.00484613, 0.016140895, 0.00471419701, 0.0132448012, 0.00227021566, -0.00725310529, 0.026669804, 0.00882343203, 0.000617833284, 0.00396121247, -0.0049587558, -0.0306599773, 0.00386145804, 0.000655241194, -0.000132435947, 0.00929324236, 0.00453077769, -0.0136566898, 0.012575482, -0.0052548009, -0.0116358604, 0.0046112244, 0.0139269922, -0.00230883015, -0.0143646244, -0.00102248194, 0.0066159647, -0.00577931572, -0.0154072177, 0.00306825037, -0.00334016117, 0.0257173106, 0.000995934359, -0.000161396878, 0.0243400577, 0.00399660924, 0.0113591226, 0.000857565494, -0.017724093, -0.00115039269, -0.00566669, 0.00893927552, -0.00492657721, -0.0380739756, 0.00763925118, -0.0026531436, 0.0137339197, -0.0178656802, 0.0036973462, 0.011706654, -0.00323718903, 0.00803826842, 0.0291411374, 0.0095184939, -0.00234583579, -0.0121700289, 0.0116229886, -0.0214310922, 0.0379452631, 0.0231430065, -0.00951205846, -0.00589194149, 0.00537064485, 0.00907442626, 0.0340838023, -0.0153557314, -0.0103229648, 0.00465305708, -0.0121378498, 0.0025244283, 0.00223481888, -0.0137725342, -0.0261549428, 0.00863035861, 0.0189211443, 0.0105546527, -0.00984028261, 0.0288064778, -0.0095184939, 0.016063666, 0.00163146609, 0.0120799281, 0.00882343203, 0.0205687, -0.0198350232, 0.011816062, -0.0187924299, -0.0148408711, -0.0206330586, 0.00422186079, -0.0010804038, -0.0107863396, 0.018934017, 0.0195261072, -0.00153251621, -0.0137982769, -0.00183258369, 0.0036973462, 0.0145834405, -0.0107284179, -0.00786450319, 0.00217207, -0.0110373348, 0.000296447368, -0.0244430304, -0.00812836923, 0.0188181717, 0.00828926358, 0.00515826466, 0.0280599296, -0.0122279506, 0.00734320609, 0.0165785272, -0.00254373555, 0.00816054828, -0.00924175605, 0.0106511889, 0.00113752123, 0.0194360055, -0.0162696093, 0.00405774871, -0.0143646244, 0.00390007277, 0.00893284, -0.018187467, 0.0107863396, 0.00484934775, 0.000447687809, -0.0232073627, -0.0119576482, 0.00128473935, -0.000150737644, -0.0237479676, -0.0236192513, -0.00335303275, 0.0061075394, -0.00766499434, 0.0283945892, 0.0112304073, 0.00768430158, -0.0129551915, -0.00432161521, -0.0226410162, -0.00270302058, 0.0119254701, 0.00608501444, -0.0146477977, -0.00440849783, 0.0185478702, 0.000627889181, 0.00729172025, -0.0393611304, 0.0135279754, -0.0120284418, 0.00750410045, 0.0214053504, -0.00482682278, 0.0130195497, 0.0105353445, -0.00637462363, 0.000422749232, 0.00832144264, -0.023863811, -0.00873976666, 0.000223843905, -0.0177112222, -0.0120863635, 0.0073110275, -0.00500058848, 0.00401591649, 0.0143002663, 0.000633118267, -0.0129101416, -0.00976305362, 0.00236836099, 0.00593055598, 0.00134990143, -0.00252764602, 0.0197191797, -0.015381475, 0.0340838023, 0.00486543728, -0.0164369401, 0.00575035485, 0.00380997197, -0.020916231, -0.0188439153, -0.0377908051, -0.00851451512, -0.012047749, -0.012311616, 0.005171136, 0.0195775926, 0.00935760047, -0.00284460746, 0.0136566898, 0.00642932765, -0.00270945649, -0.0242113415, 0.00191785756, -0.0148151275, 0.0066159647, 0.0215726793, 0.0226410162, 0.00376170385, 0.0271846652, 0.0130324215, -0.00072201225, 0.0125111239, 0.0149052283, 0.0286005326, -0.00184706412, -0.00143437076, 0.0162052531, 0.041678004, -0.0126140965, -0.0161280241, 0.00451790588, -0.026438117, 0.000916291843, -0.00421542535, 0.0226281453, -0.0105417809, 0.0102006849, 0.0201568119, 0.0197706651, 0.0104838591, 0.000345318927, 0.00781945232, -0.0172349755, -0.00246972428, 0.00767786568, -0.0197449233, 0.0074847932, -0.0139913503, -0.0104323728, -0.00795460399, 0.00539638754, -0.000241341128, 0.000406257575, 0.00734320609, 0.00485900138, 0.00332085392, 0.00349783758, 0.0484741703, -0.0125626102, -0.00739469239, -0.00375848589, -0.027879728, 0.00755558629, -0.00153975643, -0.0136695616, 0.00589837739, 0.0158577207, -0.0249836333, -0.00771648064, 0.0200667102, -0.00338842953, 0.00346565875, -0.025382651, 0.0126848901, 0.00164675096, 0.0195775926, 0.0202855263, 0.013148265, 0.0227826033, 0.0110437702, 0.0170933884, -0.00715656905, 0.0035010553, 0.0197320506, -0.0172221027, -0.0224994291, -0.00631026598, -0.00850808, 0.0161280241, -0.02394104, 0.0135408463, 0.0114814024, 0.00700211059, 0.0144933397, -0.0131289577, 0.0131933149, 0.00458869943, 0.0341095477, -0.0166428853, -0.00190659496, 0.0124081522, 0.0164755546, 0.0055637178, 0.00391938, 0.00560876774, -0.003295111, 0.0196548216, -0.0252153222, -0.0117967548, -0.00515504647, -0.00272393692, 0.0162824821, -0.00477533648, 0.01575475, -0.0121957716, 0.0113719944, 0.00205783546, 0.00170065055, 0.00778083829, 0.0150468154, 0.000475039793, -0.00925462786, -0.00359759177, -0.0379452631, -0.000927554443, -0.013103215, 0.00533846579, -0.0171834882, 0.000403240818, -0.007877375, 0.0314837545, 0.0106962388, 0.0113526871, 0.00246328861, 0.00067897304, 0.0138497632, -0.0228083469, -0.00741399964, -0.0372502, 0.0121378498, 0.00780658098, 0.0246618465, -0.00907442626, -0.0151884016, 0.0047399397, 0.00568277901, -0.0034238263, -0.00585010927, 0.0162567385, -0.0187409427, -0.0267985202, -0.00668675825, 0.0111209992, -0.0215211939, 0.0323332772, 0.00482682278, 0.00764568709, -0.0141972946, 0.00205622637, -0.0174023043, 0.00523549365, 0.00437310152, 0.00496840943, -0.0277510118, 0.0109279267, -0.0235162806, -0.0368640535, 0.0211479198, -0.0242113415, -0.00291540078, -0.0139784785, -0.0134764891, -0.00778727373, -0.00861748774, -0.00611397531, -0.00593699189, -0.00873333123, -0.0135022318, -0.00558624277, -0.0176211204, -0.0130002424, -0.00330154668, 0.00170065055, -0.0116358604, -0.0050488566, -0.0170547739, -0.000579218729, -0.0079159895, 0.0167201143, 0.01049673, 1.13442902e-05, -0.0110437702, -0.00218011485, -0.00672537275, 0.00396121247, -0.0163082257, -0.00390972616, -0.00241984706, -0.0101427631, -0.0156260338, 0.00587263424, -0.0160507951, 0.0068347808, 0.0270302072, 0.0262193, 0.00554119237, -0.000673744, -0.0241598561, 0.0191142168, 0.017428048, -0.00938334316, 0.00702141784, -0.00581793, -0.00427656481, 0.0165785272, 0.0219974406, -0.0226796307, -0.0106254453, -0.0131933149, 0.0175953768, -0.0403393656, -0.012916577, -0.0240697563, 0.0026241825, -0.0377650596, -0.0107670324, -0.0161280241, -0.00576644391, 0.00819916278, 0.00902294088, 0.0225380436, -0.00937690772, 0.000974213704, 0.0104902945, 0.00664814375, -0.00392903341, 0.02924411, -0.00754271494, 0.0270302072, -0.0152527597, 0.0179042947, 0.0029491887, 0.00265636132, -0.0115264524, -0.0064550708, 0.0048750909, -0.00146896299, 0.013257673, -0.0294500533, 0.00209805882, -0.0299391728, 0.0122794369, -0.0152141452, -0.0123437941, 0.00438597286, 0.00314547936, -0.00989176892, 0.023104392, 0.0170290302, 0.00145287358, 0.00747192139, -0.00173443824, -0.0100719696, -0.00598204229, 0.0169775449, -0.0247648172, 0.0189983733, -0.00758132944, -0.0250351205, 0.0056023323, 0.0198865086, -0.0105803953, 0.0123824086, -0.000360000529, -0.0186122283, 0.00650977483, -0.0174666625, -0.00271589216, -0.03076295, 0.00469167158, -0.00485256594, -0.0156517774, -0.025614338, 0.0392324142, 0.0189983733, 0.000244156778, -0.0102199921, 0.00724667, 0.00931898598, -0.0208261311, 0.0162438676, 0.00307951286, 0.00886204652, 0.00863035861, -0.0347273797, 0.0137467906, -0.0180973671, -0.00929967873, 0.000215396954, 0.00519044325, -0.00829569902, 0.0066224006, 0.0195904635, 0.025382651, -0.0111274356, -0.019629078, -0.00358472019, 0.0122601297, -0.0130066779, -0.0164755546, 0.000195586879, 0.0212766342, -6.17933838e-05, -0.00557337143, -0.00655804295, -0.0216241647, -0.00468845386, -0.00284460746, -0.014171551, -0.0225123, 0.026592575, 0.0126848901, -0.0118997265, -0.0144289816, 0.011816062, -0.00360402768, 0.0187538154, 0.00821203459, -0.00349461962, 0.0139012495, 0.00239893096, 0.0168745723, 0.0143131381, -0.00930611417, -0.00176018127, 0.00375205022, 0.00789668225, 0.00641645631, -0.00948631577, -0.00485578366, -0.00362655264, 0.0148794856, -0.00500058848, 0.0115843741, 0.0171577465, -0.0131933149, 0.0185993575, 0.00775509514, 0.00760707259, -0.00421220716, 0.00423795031, 0.00811549742, -0.0333115123, -0.00633600913, 0.0137467906, -0.00315835094, 0.00757489353, 0.0121764643, -0.0212508906, -0.0108635686, 0.0070600328, -2.14818756e-05, -0.0151111726, 0.0251638349, 0.0229885466, -0.00153332064, -0.0197835378, 0.0061075394, -0.0165141691, -0.0090937335, 0.00916452706, 0.00280277501, 0.0103229648, 0.0257430542, -0.0110180276, 0.0152141452, 0.0071887481, 0.0358858183, 0.00310364692, 0.00245524384, -0.0073560779, -0.012807169, -0.0130324215, 0.0190498605, -0.000343911117, -0.0115908105, -0.00771648064, 0.000481877796, 0.0103036575, 0.0115908105, 0.00182132109, -0.00776153104, -0.0308144353, -0.0124403313, -0.0140685793, 0.0132448012, 0.00917096343, -0.000689028937, 0.00124049338, 0.0157418773, 0.0159349497, 0.0190627314, -0.00246972428, 0.0121442862, -0.0111982282, 0.00989176892, 0.00602709269, 0.0213667341, -0.0139527358, -0.00867540948, -0.0235420223, 0.00205300865, 0.00615259, -0.0247390755, 0.00890709646, 0.000385542458, -0.0046948893, 0.0157032628, -0.00407705642, 0.0103229648, 0.00220746687, 0.00262579159, -0.0137854051, 0.00833431352, -0.0112754581, 0.00866897311, -0.013257673, -0.00143758871, 0.00386145804, 0.0199251231, -0.0252153222, -0.00529663358, -0.0224093292, -0.0299391728, -0.00236031623, -0.00695062475, 0.0147378985, -0.0288322214, -0.0180201381, -0.00547683472]
|
29 Jan, 2021
|
Fabric.js Group borderColor Property
29 Jan, 2021
In this article, we are going to see how to set the borderColor of a Group of the canvas using Fabric.js. The Group in Fabric.js is movable and can be stretched according to requirements. Further, the Group can be customized when it comes to initial stroke color, height, width, fill color, or stroke width.
Approach: To make it possible we are going to use a JavaScript library called Fabric.js. After importing the library, we will create a canvas block in the body tag that will contain the Group. After this, we will initialize instances of Canvas and Group provided by Fabric.js and set the color of the border of the canvas Group using the borderColor property.
Syntax:
fabric.Group([canvas1, canvas2], {
borderColor :String
});
Parameters: This property accepts a single parameter as mentioned above and described below:
borderColor: It specifies the color of the border of the object. It contains a string value.
Below examples illustrate the use of Fabric.js Group borderColor property in JavaScript:
Example:
HTML
<!DOCTYPE html>
<html>
<head>
<!-- FabricJS CDN -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;width: 400px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Group borderColor Property
</b>
</div>
<div style="text-align: center;">
<canvas id="canvas" width="500" height="300"
style="border:1px solid green;">
</canvas>
</div>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a circle instance
var circle = new fabric.Circle({
radius: 100,
fill: 'lightgreen',
scaleY: 0.6,
originX: 'center',
originY: 'center',
});
// Initiate a text instance
var text = new fabric.Text('GeeksforGeeks', {
fontSize: 25,
originX: 'center',
originY: 'center'
});
// Initiate a Group instance
var group = new fabric.Group([ circle, text ], {
borderColor :'green'
});
// Render the Group in canvas
canvas.add(group);
// Center the Group in canvas
canvas.centerObject(group);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Fabric.js Group borderColor Property
|
https://www.geeksforgeeks.org/fabric-js-group-bordercolor-property?ref=asr3
|
CSS
|
Fabric.js Group borderColor Property
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Fabric.js Group borderColor Property, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0236728825, 0.029568024, -0.0108407298, 0.0410945415, 0.0545465425, 0.0189910587, -0.00201285444, 0.0167358704, -0.0238707066, -0.0350279547, -0.0113946348, -0.00279260892, 0.0224727523, -0.0475831516, 1.11468926e-05, -0.00165512355, -0.0204285756, -0.0274842829, 0.00306296768, -0.0111044943, 0.036030259, -0.0457631759, -0.0185426585, 0.00477414113, -0.0395119525, 0.0260863286, 0.025822565, 0.0393009409, -0.0245828703, 0.0140850348, 0.0109462356, -0.0114935469, -0.0284074582, -0.0284338351, -0.0272468943, -0.00716780592, -0.00566764409, 0.0524364226, -0.0420440957, -0.00479392335, -0.0055588414, -0.00233266922, 0.00335146021, 0.0247938819, 0.00152653828, 0.00846684724, -0.0212198701, 0.00517308526, -0.0198482946, -0.0413846821, -0.00680512935, -0.0124365054, 0.0127002709, -0.019083377, 0.0085327886, 0.0222221762, 0.00302669988, 0.0261654593, -0.0320210345, 0.0066831382, -0.00458950596, -0.0643585846, -0.0223144945, -0.0225255061, -0.00914604124, 0.0390371755, -0.0377711058, 0.0170787647, -0.0165644232, 0.00402241154, -0.00273820735, -0.00600724109, 0.0313616246, 0.0342102833, 9.66450389e-05, 0.00370919122, 0.0545465425, 0.0218660943, -0.0293570124, 0.0383513868, 0.01121, -0.0136498231, -0.043626681, 0.00446751481, -0.00873061176, -0.0342630334, 0.0315726362, -0.0474248938, -0.000321463245, -0.0264819767, -0.00215133093, 0.0154434238, 0.0382458828, -0.026297342, -0.0230266582, 0.0186745413, 0.0192943886, -0.0274579059, -0.0174612235, -0.0222353656, 0.0199801773, 0.0318100229, 0.0232112948, 0.0123441881, 0.0087767709, -0.0301219299, 0.0447081178, 0.0121133942, 0.00339926756, 0.00706889387, 0.0094559649, 0.0038443706, -0.00289811473, 0.0632507727, -0.0396438353, 0.0324430577, -0.0106231235, -0.0202966947, 0.0284602121, 0.0238838941, 0.0275106579, -0.011064929, -0.0222881176, 0.0250708349, -0.032759577, 0.0244246125, -0.00809098221, 0.00794591196, 0.0061655, 0.00877017621, -0.051671505, -0.00937024131, 0.0173161533, -0.00760961184, 0.03363, -0.00305472501, -0.00571380276, -0.000152179869, -0.0123178121, -0.0177645534, -0.0140586589, -0.031203365, 0.00739200599, 0.0455257893, -0.0269567538, 0.00830199383, 0.0324694365, 0.0190701876, -0.0257698111, 0.0159182, -0.0280118119, -0.0267457403, 0.0242795404, 0.000966038206, 0.0281700697, -0.0121661471, -0.0178964362, -0.00208209269, 0.0335772485, -0.0293833874, 0.0277744234, -0.00107813824, 0.00292943674, 0.0333398581, -0.0100626238, 0.0105967466, 0.0173689052, -0.0183316469, -0.06889534, 0.0263764709, 0.00267391466, 0.00918560568, 0.0144015532, 0.0252950359, -0.0333662368, -0.0125881704, 0.0147971995, -0.0286712237, 0.0195185877, -0.00621165894, -0.0482161865, 0.012898094, 0.035449978, 0.0476095304, -0.0255192351, 0.0179887526, 0.0297526587, 0.0211275537, -0.00146554259, -0.0242267884, -0.000542778289, 0.0169996358, 0.0631452724, -0.0102538532, 0.0403823778, 0.00801844709, -0.00277777202, 0.00849981792, -0.0124101294, -0.0146916937, 0.0369270593, -0.0153774824, 0.000145791826, -0.0192416348, 0.0297262818, -0.014573, -0.0356873646, -0.0556016, 0.0407516472, -0.0419649631, -0.0090801, 0.0224991292, 0.00393009419, -0.00597097352, -0.0088559, -0.00935045909, 0.00438838545, -0.00922517, -0.0132607706, 0.0070754881, -0.0100692175, 0.0370325632, -0.00635343231, 0.00146883971, -0.0474248938, 0.0147708235, 0.0205736477, 0.0235673767, -0.0280909408, -0.0620374605, -0.00625452073, -0.0129772238, -0.0238575172, 0.00525880884, 0.0349752, -0.00529177953, -0.0232772361, 0.0134256231, -0.00104434334, -0.018582223, -0.00164028676, 0.0103461705, -0.0454466604, -0.0411472954, 0.0367424227, 0.0347378105, -0.00268380577, 0.0107154408, -0.000784287869, -0.0104780532, -0.024239976, -0.00498845, -0.00114655215, 0.00743816467, -0.00334651466, 0.0134849707, -0.0380876251, -0.0161555875, 0.046343457, 0.0168809406, 0.0254005417, 0.0485327058, -0.039195437, -0.00463896198, -0.00697657652, -0.0335508697, 0.00122238451, 0.00824924093, -0.00906031765, -0.00578963524, -0.0229079649, -0.0551795773, -7.27413571e-05, -0.0154038584, -0.0375073403, 0.0730100721, -0.0138740232, -0.0379029885, 0.0434156694, 0.0214045066, -0.0082294587, -0.00201944844, -0.0101219704, 0.0510120951, -0.00603032066, -0.0298581645, -0.00464555575, 0.0283547062, -0.00359379407, -0.0120672351, -0.00989777, -0.0106956586, 0.0169205051, -0.0373227075, 0.0207582824, -0.00270029111, 0.0135047529, -0.0111836232, -0.0365314111, -0.0118628172, -0.0159709528, -0.0704779327, -0.039881222, -0.0348169394, 0.0114935469, 0.00452026771, 0.0174612235, 0.00448729703, 0.024490552, 0.0101351589, 0.0146916937, -0.00358390296, -0.0341047756, -0.0236201286, -0.0274842829, -0.0209033526, 0.0502471775, -0.00424331473, 0.0218133405, -0.017500788, -0.0158258826, -0.0150741525, 0.00400592666, 0.0463698357, 0.0186613537, -0.0182788949, -0.0241080932, -0.00757004693, -0.00959444139, 0.0159841403, -0.0165380463, 0.00396965863, 0.00570061477, 0.0317572691, 0.00375205302, 0.0183844, -0.0221826117, -0.0197559763, -0.00633365, 0.0280381888, 0.0020178, -0.0078799706, -0.00214968226, -0.0223672464, 0.0474248938, -0.0199274234, 0.0207978468, 0.00147625804, 0.0576589629, 0.0163138472, 0.000925649249, 0.0327859521, -0.0182657056, -0.0260203891, 0.0370061882, -0.0201252475, 0.0319946595, -0.0353180952, -0.0291196238, -0.0017936, 0.0205604583, -0.0205077063, 0.0347378105, -0.00464885309, -0.000169901556, 0.0062611145, -0.0206132121, 0.00996371172, 0.00820308272, 0.00016536811, -0.0281964466, -0.00933067687, -0.0428617634, -0.0181338228, -0.0427826345, -0.0191493183, -0.0102538532, -0.0122518707, -0.0441278368, 0.00449718814, -0.012522229, 0.0285393409, -0.00762939407, -0.0332343541, 0.0359247513, 0.0602438599, -0.00632375898, 0.0317045189, 0.0100428415, -0.00758982962, -0.00297559565, 0.023409117, 0.0203098822, 0.0113550704, -0.0113748526, 0.00647872034, -0.00314539415, -0.0181470122, 0.00615560869, -0.0319682807, 0.0119815115, -0.0319419056, -0.0014902706, -0.032311175, 0.000825089, -0.0114473887, 0.0039235, -0.0204681419, 0.00109050225, -0.0138212703, -0.0108473236, -0.00138806179, 0.0413055532, -0.0197427887, 0.0566039048, 0.0446026102, 0.0289877411, 0.0351598337, 0.0110517414, 0.00633365, 0.0626704916, -0.0219716, -0.0229870938, 0.00537090888, -0.0304120705, -0.0257038698, -0.00635343231, -3.56236887e-05, -0.0201911889, 0.00712824101, -0.113418825, -0.00426309695, -0.0281173177, -0.0172897764, -0.00322782062, 0.0130299767, 0.00929770619, 0.0192284472, 0.0204022, 0.0215100124, -0.014784012, -0.0122386822, 0.0268512461, -0.0496668927, -0.0185162816, -0.00460269395, -0.0424661189, -0.0299109183, 0.0037916177, 0.0186217874, -0.0287767295, -0.0100428415, -0.0519088954, -0.00301186321, -0.00466863532, -0.0176986121, 0.00855257083, 0.0125288237, 0.0245564934, 0.0183184594, -0.0260072, -0.0208769757, -0.0483480692, 0.0391426831, 0.0090998821, 0.0251631532, 0.00991095882, -0.0141905416, 0.00484008249, -0.00318495883, 0.014533435, 0.0328123309, 0.0173557177, 0.0264687873, 0.0067655649, 0.0195054, -0.00228486187, -0.0161424, 0.0203890111, -0.017223835, 0.0223013051, 0.00362346764, -0.0215759538, 0.0244509876, -0.0053808, -0.0164852943, 0.0195713416, -0.0228024591, -0.0263237171, 0.00560170272, 0.0178568698, 0.0202571303, -0.0325221866, -0.000751729414, 0.0212198701, 0.0257698111, 0.00710186455, -0.0285920948, 0.0290932469, -0.00446421746, -0.0029871352, 0.0183844, 0.00445432635, 0.00650509726, 0.0326540694, 0.0167622473, -0.0229870938, 0.0154038584, -0.0357928723, 0.00591492373, -0.0444179773, 0.0254928581, -0.000130955057, -0.00758982962, 0.000687436783, -0.0304648243, 0.0111440588, 0.0165644232, -0.0187932346, -0.0306230821, -0.00857894681, -0.00946255866, -0.013273959, -0.0159313884, 0.0117573114, 0.043626681, 0.00645564124, -0.0168809406, 0.00487305271, 0.00793931726, 0.0171183292, -0.00758323539, 0.0103132, 0.0141114118, 0.0175667293, -0.0180942584, -0.000394822797, -0.0442333408, 0.0140586589, 0.00396965863, -0.0432837866, -0.00585227925, -0.0226573888, 0.0117507176, -0.0154829882, 0.0450773872, 0.0101417527, 0.0284074582, -0.0337091312, 0.00146059704, -0.0341839045, 0.0239366479, 0.00296735298, -0.0105176177, 0.0374809653, -0.00894821808, 0.0289349873, -0.0262577757, -0.00605999399, -0.00913285278, 0.0377447307, 0.00484008249, 0.0159182, 0.00881633535, -0.0237783883, -0.0347378105, -0.0209956709, 0.0168545656, -0.015285165, 0.00265578087, 0.0324166827, -0.0477150343, -0.000795827596, 0.00984501746, 0.0426507518, -0.0241212826, 0.0204022, -0.0181206353, 0.00669302931, 0.017936, -0.0187800471, -0.0502999276, 0.00821627, 0.0201911889, -0.023541, -0.00790634658, -0.0163402241, -0.0237388238, -0.0645168498, -0.0265347287, 0.0207055286, 0.0263632815, -0.00134355144, -0.00570061477, -0.0285393409, 0.00839431211, 0.0260335766, -0.00313550304, 0.01689413, -0.0145993764, 0.029594399, 0.0111968117, 0.0118694119, -0.00969335251, -0.0061951736, -0.0106495, 0.0289349873, -0.00714142947, 0.013728953, -0.0362676457, -0.0169073176, 0.00691063516, 0.0167622473, -0.0129046878, 0.00546322623, 0.0022024354, 0.0327859521, 0.0277216714, -0.00546322623, -0.0252290946, 0.0138212703, -0.0101021882, 0.0369006805, 0.0104780532, 0.0307285879, -0.00815033, -0.00724034104, -0.0149027063, 0.00629738253, -0.0234750584, -0.0341839045, 0.017777741, -0.0308077168, 0.0320210345, -0.00439827656, 0.00491261762, -0.000791294093, 0.00680512935, -0.008724018, 0.0160105173, -0.0173820946, -0.00346191181, -0.000276334729, 0.0264292229, -0.00498845, 0.019663658, -0.023963023, -0.00536761153, -0.00929111149, 0.00944937, 0.00121661474, 0.00154961762, -0.0286184698, 0.0115792705, -0.0282492, -0.00884930603, -0.0307813417, 0.0255588, -0.00411802623, 0.00868445262, -0.0072667175, -0.0230266582, 0.010082406, -0.0131618585, -0.0232508592, 0.0169600714, 0.0231981054, 0.0170128234, 0.00532145286, -0.0150477765, -0.0190438125, 0.00627100607, -0.00854597613, 0.0270886347, 0.00615231181, 0.00527529418, -0.00825583562, 0.0548103042, 0.0313616246, 0.00253214128, 0.00499174697, -0.0280645639, -0.000633859541, 0.0213649403, -0.033313483, -0.0107220355, -0.0145466235, -0.00383447949, 0.0062907883, -0.00762939407, 0.0292515066, 0.00704911165, 0.0135311298, 0.0107484115, -0.020969294, 0.0149027063, 0.000201120594, -0.000920703693, -0.0129112825, 0.0105110239, -0.0204022, -0.000336093944, -0.015087341, 0.0135311298, -0.0190438125, 0.0427298807, -0.016946882, 0.00625122339, -0.0224595647, -0.00647212658, -0.011691371, 0.0341047756, -0.00890205894, 0.0144015532, -0.013273959, -0.0123046236, 0.00479392335, -0.00413451158, 0.00554235606, 0.00474446779, -0.00508736167, 0.0013979529, 0.00554235606, -0.022604635, -0.000432738976, 0.00394987641, 0.0126936762, -0.00684469426, 0.0125749819, -0.00496537052, -0.0037916177, -0.0100494353, 0.00206066179, -0.007847, -0.0213121884, 0.0271150116, -0.00184635294, -0.0124826645, -0.00596437929, -0.03363, -0.0117507176, 0.00232442655, -0.0270622596, -0.0059215175, -0.0241212826, -0.000190817285, -0.0163006596, -0.0211011767, 0.011539706, 0.0395647064, -0.0166567415, -0.0262709651, 0.04737214, -0.0118496297, 0.0254796706, 0.00157187274, -0.00759642338, 0.0171578936, -0.0178568698, 0.0332607292, -0.0212198701, -0.00550938537, -0.0385096483, 0.0431782827, 0.0175271649, 0.030095553, -0.0188459884, -0.0267589297, 0.0153774824, -0.0057171, 0.00785359368, 0.00580941746, -0.0179096237, 0.00424001785, -0.00753707625, 0.0250048935, 0.0242004115, -0.00833496451, 0.00260962197, 0.0181338228, 0.000157846691, 0.0233299881, 0.0453939065, 0.0027579898, 0.0211934932, 0.00755685894, 0.0159709528, -0.0298054125, -0.0105571821, 0.0418067053, -0.0109264525, -0.00671940576, 0.00199966622, -0.00875698868, 0.0141773531, 0.00844706502, -0.0227628946, 0.00733265886, 0.00785359368, -0.0524100475, -0.0106956586, -0.0201120581, 0.00334486621, -0.00150593161, 0.0464489646, -0.0384568945, -0.0235278122, -0.00385426171, -0.031203365, 0.00947574712, -0.0303329416, -0.00531815598, -0.0369534343, 0.0160237066, 0.0163666, -0.00287008961, -0.00637980876, -0.00896140561, -0.000579045969, 0.0136498231, -0.0231981054, -0.0146257533, 0.0332079753, -0.0199801773, -0.056551151, 0.0443124697, 0.0162742827, 0.000649932714, 0.000172374363, 0.0174084697, -0.000980875, -0.0215627644, -0.0427826345, 0.0310187303, -0.00219748961, 0.00105918013, 0.0408571512, 0.0344212949, 0.0272732712, 0.0205868352, -0.0252950359, 0.0185162816, -0.00478732958, -0.0134783769, 0.00271677645, 0.0200461168, -0.00148862205, 0.0460005663, 0.0306230821, 0.003696003, -0.00585227925, 0.0114342, -0.0259148814, 0.0268380586, 0.017936, 0.00260962197, -0.00574677344, -0.00182821916, -0.0192943886, -0.00291624852, -0.0186745413, -0.00241839257, 0.00935705286, 0.0289877411, 0.0129376585, -0.00826242939, 0.0079327235, 0.0173029639, -0.0157995056, 0.0519616455, -0.0216287058, -0.025044458, -0.00404878845, 0.0225255061, -0.00957465917, -0.0198087301, -0.00711505301, 0.000157640621, -0.0155357411, -0.0151005294, 0.0163402241, -0.023633318, -0.0291987527, 0.00185294705, -0.00230794121, 0.0240025874, 0.0015149985, -0.00834155921, -0.0102208825, -0.0421232246, -0.01689413, 0.000321463245, -0.00234091165, -0.0278271772, 0.017975565, 0.0491393656, 0.0160764586, 0.00859213527, -0.0103527643, 0.00869764108, 0.00947574712, 0.00668643508, -0.00667324709, -0.00822286494, 0.0406197645, -0.0465544723, 0.00858554151, 0.0402504951, -0.0132212061, 0.0229079649, 0.0100494353, -0.00918560568, -0.00458950596, 0.00849322323, 0.0333662368, 0.0207450949, -0.00596767664, 0.0465280935, 0.00236893678, 0.0283283293, -0.00089597574, -0.0069502, -0.0222353656, 0.0209297296, -0.0146785062, -0.0124431, -0.0286976, -0.0058259028, -0.0126079526, 0.0190306231, 0.0320474133, 0.0336827524, 0.0178304948, 0.0136498231, -0.00497855898, -0.00990436506, -0.0111572472, 0.0168545656, -0.0329969637, -0.00556213828, 0.0288031064, -0.0133860586, 0.0087438, -0.00937024131, -0.020178, -0.0282492, -0.00641607633, -0.00129244709, 0.00219913828, 0.00737222331, -0.018028317, 0.0289086122, 0.0118034706, 0.00600064686, -0.011289129, 0.00849322323, -0.0151137179, 0.0175535418, 0.00236234255, 0.0200593062, 0.0465017185, -0.0217605885, -0.019083377, 7.20201278e-05, 0.0329178348, -0.00166666321, -0.0134124355, -0.0079854764, 0.0203890111, 0.0103791412, -0.00418726448, 0.00246125436, -0.00752388826, 0.0405406356, -0.0049159145, 0.0160500817, -0.00190240296, -0.010108782, 0.00814373512, -0.013979529, 0.0242927298, 0.000711752567, -0.0055291676, -0.00381469703, 0.0372963287, 0.0411209166, 0.0199010465, 0.0196372829, -0.0302538108, 0.0281700697, -0.0143751763, -0.00693701161, -0.00426309695, -0.00481370604, -0.0124365054, -0.00429936452, 0.0221562348, 0.0157731287, -0.0397493429, 0.00485656783, 0.00643585902, -0.00157434563, -0.000534947787, -0.00306956167, 0.00457302062, 0.0357928723, -0.00631716475, 0.0197559763, 0.00906031765, 0.0280118119, -0.0496668927, 0.00477084424, 0.0535969883, 0.0102011, -0.0125024468, 0.000905866909, 0.0159313884, 0.0113089122, -0.016419353, 0.0359247513, 0.0201120581, -0.00204582489, 0.0243586712, 0.00299372943, -0.00510384701, 0.0123771587, -0.027378777, 0.0110715237, 0.0262841526, -0.027378777, -0.00434552366, 0.000369270594, -0.0171183292, -0.00716121169, 0.0236465055, 0.00372897345, -0.0157995056, -0.0150214, -0.027431529, -0.0149686467, -0.020692341, 0.0199142359, 0.00938343, -0.00253543817, -0.033313483, -0.00823605247, -0.0134058408, 0.00106412568, -0.0109726116, -0.00886908825, -0.00261127064, 0.0126541117, -0.0227101408, -0.00619187625, -0.00328057352, 0.00247279415, -0.0310714822, -0.012871718, 0.00612593535, 0.00229145586, -0.00618528249, 0.0087438, -0.000897624239, -0.050537318, -0.0277744234, 0.00429936452, -0.00875698868, 0.00104846468, 0.00103527645, 0.00868445262, -0.0117902821, 0.0145598119, -0.0142169176, -0.00432244409, 0.0216155183, -0.00620176783, 0.00449718814, 0.0192943886, -0.019610906, -0.00316352793, 0.0357401185, 0.00181832793, 0.020916542, -0.0126409233, 0.000465297431, -0.0164061654, 0.0071744, -0.0303593185, 0.00354433828, -0.0440487042, -0.0187141057, 0.00946915336, 0.0175931063, -0.00486975582, -0.00882952381, -0.0346586816, -0.00783381145, 0.0402241163, -0.0127002709, -0.0112693468, -0.00801844709, -0.00826902315, -0.0451565161, -0.0115265176, 0.0328123309, 0.00890205894, -0.0204022, 0.0212858114, 0.00915923, 0.00795250572, 0.000724116515, 0.0140586589, 0.0234486815, 0.004362009, 0.0151796592, 0.0279590581, -0.00477414113, -0.0205472708, 0.0157335643, -0.00429277075, -0.03363, 0.0171447061, -0.012898094, -0.0218924712, -0.0205340814, 0.00942299422, 0.0119551355, 0.00165842054, -0.0142432945, 0.0204285756, -0.000720407348, 0.000278395397, -0.00351796183, 0.0131420763, -0.017936, -0.0095878467, -0.00221067783, -0.0020178, -0.010108782, 0.000816434214, -0.0113946348, 0.0157071874, 0.000182883727, -0.00217111316, 0.0128057767, -0.016815, -0.0149027063, -0.0231849179, 0.00349817937, -0.0280645639, -0.00681172358, 0.0104055172, 0.0122518707, -0.00712164724, -0.0119947, 0.0111704357, -0.0619319528, -0.0314671285, -0.0142696705, -0.00384107349, 0.0091922, 0.0265347287, 0.00550608803, -0.0304648243, 0.0213121884, -0.00755026471, 0.0218660943, -0.00991095882, 0.0336563773, 0.0185426585, -0.00276128668, -0.0210352354, -0.0086712651, -0.00892843492, 0.0109660178, 0.00610285578, -0.0232508592, 0.0236069411, 0.0155357411, -0.0336827524, 0.00443454413, -0.0137817059, 0.0138872117, -0.0100362469, 0.00192877941, -0.0189910587, 0.0367160477, -0.0156808123, 0.029146, -0.0426771306, 0.0203758236, -0.00355093228, -0.0127859944, 0.0079854764, 0.00257005729, -0.0109330472, -0.00978567079, -0.0341311544, 0.019887859, 0.0227101408, 0.0175535418, -0.0084272828, -0.0172897764, 0.00998349395, -0.00537420576, 0.014533435, 0.0147576351, -0.0248466358, 0.0144147407, -0.0313088708, 0.00803822931, -0.00371908234, 0.00234256033, 0.00420704717, -0.01830527, 0.0124760708, -0.0331552252, 0.0097527, -0.0179623757, 0.0214572586, 0.0238179527, -0.0222617406, 0.00237553078, -0.0144806821, 0.0107088471, 0.0213253759, -0.00209692935, -0.0213781297, 0.0159709528, 0.00184635294, 0.0188723654, -0.0114803584, 0.0162215289, -0.00300526922, 0.000208538971, -0.0112165939, 0.0028025, 0.0173689052, 0.000585227914, -0.0185162816, -0.000586052192, 0.0266666114, 0.000488376827, -0.0142037291, 0.00183975883, 0.00859872904, 0.0144543061, -0.0119947, -0.00618857937, 0.0286184698, 0.00278271758, 0.00562478229, 0.025545612, 0.0217342116, 0.00830858853, 0.027431529, -0.00338937645, 0.00999668241, 0.0152587881, 0.0186086, -0.0152587881, 0.0126804886, 0.0171578936, -0.0178436823, -0.0015273625, 0.00433563255, 0.0121991178, 0.0166303646, -0.0179491881, -0.00911966432, -0.00651169103, -0.00467852643, 0.0350279547, -0.0134124355, 0.00527859107, -0.00042985403, 0.0111440588, -0.0241476595, 0.0183975883, -0.0280909408, 0.00655785, -0.0253477879, -0.02906687, 0.00302669988, -0.00173755, 0.00550938537, -0.0060039442, 0.00233266922, 0.0272732712, 0.00440816768, 0.00487964693, -0.0108737, -0.014230106, -0.0322056711, -0.0165512357, -0.00243817503, -0.014784012, 0.00239696167, 0.00424990896, 0.000589761417, 0.0254269168, 0.00620506471, -0.000180720031, 0.00438179122, 0.0281964466, 0.0318364, 0.0130893234, 0.0178700592, -0.00316517637, 0.0102340709, 0.029620776, 0.0162347183, -0.0293306354, 0.00454005, 0.0131618585, 0.0086712651, 0.0056115943, -0.0202835053, 0.0183844, 0.0129970061, -0.0124562886, -0.0062776, 0.001121, 0.000984996324, 0.013755329, 0.0149158938, 0.0171842705, 0.00616879715, 0.00692382362, 0.0360038839, 0.0136102587, -0.00233266922, -0.00376853812, -0.00802504085, -0.0236465055, -0.00305142789, 0.019083377, -0.00520605594, 0.0271413885, 0.0169996358, 0.00189910585, -0.011414418, -0.00012333061, -0.004362009, -0.00799207, 0.00512362923, 5.7440946e-05, 0.0057171, -0.00322452351, 0.00698976452, 0.00400592666, -0.0161028355, 0.0206000227, -0.0110583352, -0.00447410904, 0.00310253236, 0.00269864267, 0.00358390296, 0.00915923, 0.00716780592, -0.0248202588, -0.0364522822, 0.0160237066, -0.0312297419, 0.0122584645, -0.00511373812, -0.00481040869, -0.0246224348, 0.0198746715, 0.0313088708, 0.0079327235, -0.0066831382, -0.00799866486, 0.027431529, -0.00326903374, -0.0037487559, -0.00693041785, -0.0289877411, -0.027431529, 0.0249257647, -0.00894162338, -0.0110847121, 0.00929770619, -0.0173689052, 0.0157599412, -0.0231585409, -0.00502471766, 0.00420375, -0.0107220355, 0.0288294815, 0.000435211754, -0.00246290304, 0.0026162162, -0.00366303232, 0.0146916937, 0.00348169403, 0.0122320885, 0.0163797885, 0.00220902939, -0.0151532823, -0.00328881619, -0.0288294815, -0.00547971157, 0.00205736468, 0.00297394698, 0.0277744234, -0.0266138595, -0.00445432635, 0.000715873903, 0.00527199684, -0.0218133405, -0.0287767295, -0.0259544477, 0.022881588, 0.000110966634, 0.0233431756, 0.0183448344, -0.0186349768, -0.0425452478, 0.00505439099, -0.0242004115, -0.0114803584, -0.0113616651, -0.0107813822, 0.00830199383, 0.0145466235, 0.00393339107, 0.0101483474, 0.0106297173, -0.0206264, 0.00942299422, 0.0211803056, 0.0109726116, -0.0014037228, -0.0142169176, -0.00406197645, -0.0017771147, -0.0263632815, 0.0309659764, -0.0130827297, 0.00461917929, 0.0157203767, 0.0180810709, 0.00810417067, -0.029014118, -0.00546652358, -0.00599735, -0.000861356617, -0.0062611145, -0.0289877411, -0.00855916459, 0.00488294428, 0.0205868352, -0.00201944844, 0.00789315905, 0.0121727409, 0.0143619878, 0.0176194832, -0.00661060307, -0.00631716475, -0.011064929, -0.0133728702, -0.00605669711, -0.00888887048, 0.00654466171, 0.0123375943, 0.0182920825, -0.00636332342, -0.00383118237, 0.0207714699, 0.00937024131, 0.00691722939, 0.0299109183, 0.0179623757, 0.0021134147, 0.0312824957, 0.00110286614, -0.00336464844, -0.00702932943, -0.00736562954, -0.0267325528, -0.0096471943, 0.00443454413, -0.00714802369, 0.0135443173, 0.00880314689, 0.0453147776, 0.0167490579, -0.00314539415, 0.0196372829, 0.0166303646, 0.0192020703, 0.0287503526, -0.0157071874, 0.0361621417, -0.0252422821, 0.00690404139, 0.0202439409, 0.000905042631, 0.0280909408, 0.0017309559, 0.0547575541, -0.0124694761, 0.00300526922, 0.00305637345, -0.011717747, 0.00171117357, -0.00512362923, 0.00210846914, -0.0337882601, -0.0182261411, -0.00772171188, -0.00212495448, 0.0192284472, 0.0156016825, 0.00718758814, -0.00671940576, -0.00297065, -0.00366303232, -0.000534123508, -0.0019221853, -0.0211407412, -0.0201911889, 0.0149554592, -0.00462577352, -0.0151796592, 0.00375535, -0.00764917629, -0.0220902935, -0.00844047, -0.03444767, 0.00276293536, -0.0256511178, -0.00135426689, 0.00406197645, -0.0217078347, 0.0179096237, 0.0109726116, -0.00279260892, 0.010860512, -0.00666995, -0.00607647933, -0.0116584, 0.014573, -0.00687107071, -0.0219320357, 0.0115990527, 0.0261127055, -0.00454664417, 0.021800153, 0.0108143529, 0.00606329134, -0.00628419407, -0.00969335251, -0.00381799415, 0.000236563967, -0.0079854764, 0.0119221648, -0.00531815598, 0.00538409688, 0.0227497052, 0.00244147214, 0.00650509726, -0.00813054666, -0.00906691141, -0.0102142878, 0.00931748841, -0.0078799706, -0.038114, 0.00731287664, 0.00875698868, 0.01830527, 0.0181074478, 0.00147543382, 0.00335146021, -0.00978567079, 0.0167754348, 0.0084206881, 0.0123244058, 0.0081767058, 0.00785359368, 0.000713401125, 0.0345531777, 0.00586217036, 0.0165248588, 0.000949552923, 0.0178700592, 0.0247806944, 0.0213649403, 0.025268659, 0.00115067349, 0.0192284472, 0.00786018837, 0.00970654096, -0.018806424, -0.0369006805, -0.015087341, 0.0205472708, 0.0122848414, -0.00197328976, 0.014230106, -0.00146801549, 0.0013946559, -0.00838771742, 0.0186877288, -0.00353115, 0.0157995056, 0.0240421537, 0.0113023175, 0.0100494353, 0.0165644232, 0.0142828589, -0.000302711211, 0.00708208233, -0.00928451773, -0.0214572586, 0.00541706756, 0.0151664708, -0.0188987404, 0.0127398353, -0.00125370664, -0.000720407348, -0.00669632666, -0.00720737036, 0.0250180829, 0.0151532823, 0.00311077503, 0.00540387956, 0.00637651188, 0.00146966393, -0.00242993236, -0.00620506471, 0.00722055882, 0.0254269168, -0.00993733574, 0.0204813294, 0.0236201286, -0.0057171, 0.00860532373, -0.00792613, 0.0070227352, 0.0116386181, 0.0187668595, -0.0125683881, 0.00616879715, 0.0121727409, 0.00578963524, -0.00188262062, -0.00440157345, -0.0251104, 0.00288987206, 0.0159577653, 0.00581601169, -0.00393009419, -0.000384107349, -0.019940611, 0.0132607706, 0.000379986042, -4.36602713e-05, 0.0321001634, -0.00566764409, 0.00456312951, -0.00685128802, -0.0116518056, 0.0170392, 0.0188459884, -0.00423342362, -0.00520605594, 0.00583909126, 0.00484337937, 0.020916542, 0.030702211, 0.0118496297, 0.0119023826, 0.0011358367, -0.00276293536, -0.0151532823, -0.0186877288, -0.00633035274, -0.0112231886, 0.00554895, 0.0193207655, 0.000130027751, -0.00889546424, 0.0131816408, -0.0253082234, -0.00135014555, 0.00752388826, 0.00723374682, 0.00341245579, -0.0331288464, 0.00105753157, -0.0132607706, -0.0119617293, 0.00233102054, 0.00615231181, -0.00689744717, -0.0192943886, 0.0225782581, -0.0104187056, 0.00975929387, -0.0122716529, -0.0234486815, -0.0208374113, 0.00992414728, -0.0076887412, 0.0277480464, 0.0201384351, -0.0372172, -0.00385755883, -0.00604021177, 0.031730894, 0.0168809406, 0.00542036491, 0.00203263666, -0.00176887203, 0.00995052326, 0.00137569779, 0.0307285879, -0.00993074104, 0.00425320584, 0.0142828589, 0.0166171771, 0.0272996463, -0.0348433182, -0.000824676827, 0.00589843839, 0.000410277746, 0.0142960474, 0.0295416471, -0.0103197945, 0.00873061176, 0.0260863286, -0.0230398476, 0.00675897067, 0.0228024591, -0.00571050588, 0.0194526464, -0.00123886985, -0.0172897764, -0.0163402241, 0.0171974581, -0.0134585937, 0.0147708235, 0.00191394263, 0.0144543061, -0.00708208233, 0.00102538534, 0.00823605247, -0.000146719118, -0.0105703706, -0.00933067687, -0.0172106475, 0.0232772361, -0.00732606463, -0.0107616, 0.00527859107, 0.0257038698, 0.0170523878, 0.0156016825, 0.0237256344, 0.000813137158, -0.00526210573, 0.00456642639, -0.0147971995, 0.00623803539, 0.0169205051, 0.000887733069, 0.00737222331, -0.0296471529, 0.0050939559, 0.00405208534, -0.0095878467, 0.0317836478, -0.00331189553, -0.0170128234, -0.0249257647, -0.00011879715, -0.000938837475, 0.0026013793, -0.00824924093, 0.0212726239, -6.2180472e-05, 0.013273959, -0.0246883761, -0.0250972118, 0.00174084702, 0.000498268, -0.000800773152, 0.0133464942, 0.0115331113, 0.00981204677, -0.00997030549, 0.00751729403, 0.0145993764, -0.00424990896, 0.0107220355, 0.0345268, 0.0237915758, -0.0167490579, 0.003696003, 0.0156280585, 0.0147576351, -0.0166039877, -0.0048203, -0.0119089764, 0.00654136483, 0.024662, 0.00229475298, 0.0166435521, -0.00417737337, -0.0152587881, -0.0259148814, -0.0135838827, 0.0308604706, 0.0167754348, -0.0170655772, -0.00089597574, -0.0204022, 0.0174612235, 0.0514604934, -0.0149027063, -0.00406857068, 0.000338772807, -0.0351862125, 0.0143751763, -0.0187141057, -0.000667654385, 0.0264160354, 0.00311572058, -0.00314539415, -1.80951865e-05, 0.000136827948, 0.00692382362, -0.000162895318, -0.0289613642, -0.00632705586, 0.00910647679, -0.0194130819, 0.00277777202, -0.00311736902, -0.00187272939, -0.00623803539, 0.00271677645, 0.00131058088, -0.00799866486, 0.00324430596, -0.00666995, -1.47723686e-05, -0.00255192351, -0.025796188, -0.000718346681, -0.00912625901, 0.00747113535, 0.0196504705, 0.0121859293, -0.0155225527, -0.00636991765, -0.0366632938, 0.000218224086, -0.000378955709, 0.0223804358, -0.0136498231, 0.000270564895, 4.95589156e-05, 0.0109198587, -0.00364325, 0.0122254938, 0.00225848518, 0.00193042797, -0.00775468256, -0.00102043967, -0.00253708684, 0.00508076744, -0.0098648, 0.0105110239, 0.00210517203, 0.00543025602, -0.00985820591, -0.0131222941, 0.0147180706, -0.0194262713, -0.0151269054, -0.0134058408, 0.00313715148, 0.0033201382, -2.15210366e-05, 0.000703509897, 0.0286184698, 0.00716121169, 0.0134783769, 0.0263896585, 0.00301351165, 0.0113946348, 0.00251730438, 0.00572369434, 0.00149768894, 0.00463566463, -0.0276161656, -0.00291130296, -0.0013666309, -0.004484, 0.0227892697, 0.0168018118, -0.00669962354, 0.0243718587, -0.00531156175, -0.0143883647, -0.0272205174, 0.011414418, -0.00343883224, 0.0130629474, -0.0118826, -0.00575666456, -0.00301021477, 0.00808438845, -0.0292251296, 0.00970654096, -0.0126673, 0.00993733574, -0.00288987206, 0.000929770584, -0.00216946471, 0.0162347183, 0.00590173528, -0.012093612, 0.00113666104, -0.0168809406, -0.0144147407, -0.0220375415, 0.0159841403, -0.0253082234, 0.00335310888, 0.00836134143, -0.0133069297, -0.00624133227, 0.028486589, -0.00834815297, 0.019109752, 0.0160896461, -0.00776127633, -0.0119089764, -0.0047675469, 0.0175535418, -0.00912625901, -0.00595448818, 0.000334445416, -0.000694443, -0.00348828826, 0.002350803, 0.00615560869, 0.0105110239, 0.0146521293, -0.000445927202, -0.00822286494, -0.010108782, 0.015588494, 0.00363335875, -0.000631798874, 0.00642267056, -0.00931089371, -0.00984501746, 0.0142828589, -0.0251763407, 0.00888887048, -0.00542036491, 0.00160649186, 0.0064919088, 0.00231288676, 0.00387734128, 0.0295416471, 0.0208110344, -0.0237124469, -0.0294361413, -0.010609935, -0.0293570124, -0.0100164646, -0.0322320461, -0.00721396459, -0.0337091312, 0.0093043, 0.0312561169, -0.0210220478, 0.0131420763, 0.0125617944, -0.00578304101, 0.00178041181, -0.00799866486, 0.0219452232, 0.00310253236, -0.00249752216, 0.00868445262, -0.00931089371, 0.0155489296, -0.00393009419, 0.00502471766, 0.0349752, 6.54260075e-05, -0.00674578222, 0.0047675469, 0.00679853512, 0.00746454112, 0.00490932073, -0.00855257083, -0.00103115512, -0.0179491881, 0.000111584835, -0.0245564934, -0.00563797075, 0.00857894681, 0.0304120705, 0.00779424701, -0.0194394588, 0.0186349768, 0.0219716, 0.0109264525, 0.0076887412, 0.00154055073, 0.00698317075, -0.0114869531, -0.0137948943, -0.0267853066, -0.00841409434, 0.0172634, -0.00312231481, 0.0254005417, -0.00122568163, -2.29248617e-05, 0.0096471943, 0.0126738939, 0.0195317771, -0.00379821169, 0.000562972797, -0.00290800584, -0.00662049418, 0.0152324121, -0.0127925882, -0.00483678514, -0.01936033, 0.0110187707, -0.0176458582, 0.00220078672, -0.0106890649, 0.00367951766, 0.000974280876, -0.0116056474, -0.019887859, 0.0205868352, 0.0192812, 0.0043323352, -0.00618857937, -0.0154566113, 0.0149686467, 0.0190042462, 0.0051566, -0.0120342644, -0.00231783232, -0.0087767709, 0.0158126932, 0.0161028355, -0.00659741461, -0.0161292125, -0.0159973297, -0.0151796592, 0.0266402345, -0.0106956586, 0.00978567079, 0.00913285278, 0.0015331324, 0.0112297824, -0.00743816467, 0.0177909285, -0.00507747056, -0.0157731287, 0.019057, 0.0114078233, -0.000759972085, 0.00913944747, 0.0154434238, 0.0102604469, 6.66495282e-07, 0.000714225345, -0.0157467537, -0.0125024468, -0.0014037228, -0.0075107, 0.00280909403, 0.00556213828, -0.022050729, -0.00669962354, -0.0433365405, 0.00394987641, 0.00486316159, 0.0167358704, -0.0073194704, -0.00731287664, 0.0159709528, 0.0145202475, -0.00385755883, -0.0120804235, -0.00622484693, 0.0205077063, 0.00629408518, -0.0102406647, 0.000387404405, 0.0151400939, -0.0130365705, -0.00710845878, 0.00579293212, 0.0031932015, 0.0218792818, -0.00260632508, -0.0197164118, 0.0234882478, -0.00256016618, 0.0123046236, 0.00326079107, -0.011137465, -0.0174348466, 0.0237256344, 0.0172370244, -0.0105110239, 0.0247279406, 0.0322320461, -0.0173689052, -0.0159313884, -0.0029129514, 0.00119023828, -0.00346191181, 0.00513022346, 0.00164358388, 0.0310451053, 0.00323441462, -0.00152818672, -0.01830527, -0.0126013588, 0.0203890111, 0.0156676229, 0.0117705, -0.00664687064, 0.0125683881, -0.0267457403, 0.00310582947, -0.00815033, -0.014573, 0.00791294128, 0.00584898237, -0.019887859, 0.00632375898, 0.00499174697, 0.0128189651, 0.0170655772, 0.0256247409, 0.00622484693, -0.00917241722, 0.028486589, -0.0114605762, -0.00492580608, -0.011539706, -0.0243718587, 0.00288822362, 0.0200988706, 0.000695267285, -0.0162742827, -0.0166171771, -0.0218924712, 0.000621083484, 0.00719418237, 0.00431914721, -0.000679194112, -0.000736068352, 0.00134932133, 0.0119881062, 0.007847, -0.0186745413, 0.00747113535, 0.00137569779, 0.014533435, -0.000891030126, 0.0122782467, 0.00124463974, 0.0261258949, -0.0106165297, 0.00983842369, -0.00218595, 0.0178832468, 0.00709527079, -0.00114820071, 0.000621907704, -0.0264556, 0.00868445262, -0.0377711058, 0.000490849605, 0.000957795593, 0.0142169176, 0.034342166, -0.0334717408, -0.00792613, 0.0151532823, -0.00605999399, 0.0184503403, 0.00764917629, -0.000596767641, -0.0029277883, 0.00271842489, 0.0224727523, 0.00795250572, 0.0299636703, -0.0106956586, -0.0102538532, 0.0246092472, -0.00919879414, 0.00747772958, 0.0107022533, -0.00214638538, 0.0162874702, -0.0079854764, -0.000244188413, -0.0111044943, 0.0141905416, -0.00436860276, 0.00311736902, 0.00267226622, 0.00260467641, -0.00591162639, 0.0278535523, 0.0225650705, 0.0172897764, 0.003696003, -0.0224068109, 0.0235278122, -0.00387404417, -0.000155167829, -0.00702932943, 0.0300691761, -0.00298218965, 0.00729309395, -0.00446421746, -0.00632375898, -0.0293042585, -0.0251895301, 0.0143224234, -0.0101681296, -0.013300335, 0.0111176828, 0.024187224, -0.00311407214, 0.016946882, -0.00163781398, 0.000791294093, -0.011289129, 0.00346191181, -0.0116649941, -0.0234354939, 0.0260863286, 0.0136630116, -0.0297262818, 0.0127662113, 0.00071793457, 0.0055819205, -0.00138394046, 0.00860532373, -0.00840090588, 0.00577644724, -0.00391031196, -0.0144938705, -1.47079736e-05, -0.0250576474, 0.0349224471, -0.00188097206, 0.0287767295, 0.0125024468, 0.0116847763, 0.0172106475, 0.0113286944, -0.00917241722, -0.00275469269, 0.00517967949, -0.000266855699, 0.00408175867, 0.0189910587, -0.0165116712, 0.00464555575, -0.0100955945, 0.00432574097, -0.0120672351, -0.0164984819, 0.00473127933, -0.00772171188, 0.00101137278, 0.00824264716, -0.0154302353, -0.014256482, -0.0164852943, 0.0226705763, 0.0100428415, -0.023132164, -0.00178700592, -0.024714753, -0.00145894848, 0.0264292229, 0.0328123309, 0.0160105173, -0.00244476902, -0.00519616483, 0.0166435521, 0.00962741207, -0.00408175867, 0.0212066825, -0.0163006596, 0.0198351052, -0.00232112943, -0.0021299, -0.00715461746, -0.0159050114, 0.00438838545, -0.0111770295, -0.0090998821, -0.00205077068, 0.00464885309, -0.0214176942, 0.0187141057, 0.0273524, 0.00374216167, -0.0022766192, 0.0101351589, 0.0146916937, -0.0260863286, -0.00108143524, 6.89291337e-05, -0.00316517637, -0.00747113535, -0.00148367649, 0.0120078884, -0.00033156047, -0.00547971157, -0.0406197645, -0.0195581522, 0.00799866486, -0.00629408518, -0.0106165297, 0.0111968117, 0.00343223824, 0.0232772361, -0.0227365177, 0.0121397702, 0.00951531157, 0.0318891518, -0.00407846179, -0.006726, 0.00637321454, -0.000628089707, -0.0101417527, -0.00860532373, -0.00458950596, -0.00967357, -0.0204681419, 0.0144147407, 0.0122716529, -0.00745135313, -0.0151400939, 0.0264556, 0.000236151842, -0.00221397495, -0.00207385, 0.00634024432, 0.0139663415, 0.0255719889, -0.0140718473, 0.00602042954, -0.00960103516, -0.0245960597, -0.0213253759, 0.0134256231, 0.0101351589, -0.00797228795, -0.00295581319, -0.00252389861, 0.0225782581, -0.00506757945, -0.00492580608, -0.017223835, -0.0183844, 0.0105110239, -0.00708867656, 0.0133201173, -0.00369929988, -0.0128915, 0.00587206194, 0.0262577757, -0.0014935676, -0.00421034405, 0.0190174356, 0.00782062393, -0.010385735, -0.00496207364, 0.0241476595, -0.00836134143, 0.0124299116, -0.0116254296, -0.00680512935, -0.0114276055, 0.00736562954, -0.0174216591, 0.0192284472, 0.00191229407, 0.0108539173, -0.000960268371, -0.00388723239, 0.0105505884, -0.0118957879, -0.0248730108, -0.00735244108, 0.0372963287, -0.00699635874, 0.0405670106, 0.000759147806, 0.00817011204, -0.00325584551, 0.00753707625, -0.0127068646, 0.0129574407, 0.00849322323, 0.0141114118, 0.00844706502, -0.0303593185, 0.000742662523, -0.003061319, -0.00680512935, 0.00632375898, -0.0110583352, 0.000921527913, 0.0196504705, 0.00487964693, -0.0126013588, -0.00116715883, -0.0104516763, -0.00011168787, -0.0104318941, 0.00686447648, -0.00965378806, 0.00191559119, 0.00820967648, 0.00198812643, 0.0183712114, 0.00691722939, 0.0260467641, 0.00307945302, 0.0218924712, 0.0148895178, -0.00985820591, 0.0121793356, 0.0047972207, 0.00316023082, 0.000276334729, -0.0129508469, -0.0130827297, 0.0140190944, 0.00923835859, 0.0130365705, 0.0110979, 0.00176062935, -0.0173161533, 0.0119221648, -0.0213253759, 0.00168974267, 0.0138344588, 0.0196504705, -0.0113286944, -0.0172502119, -3.90752975e-05, 0.00293603097, -0.00337124267, -0.00658422662, 0.00932408217, -0.0169996358, 0.0304384474, -0.00359049696, -0.00660400884, 0.0148499534, 0.00677215867, 0.00281239115, -0.00363995298, -0.0143883647, -0.00200626021, -0.0197032243, -0.00499174697, -0.00790634658, -0.0321792923, 0.000263558642, 0.00525221461, 0.00895481184, -0.029014118, -0.000778930145, 0.0172765888, -0.016669929, 0.017936, 0.0203890111, -0.00219913828, -0.0122782467, 0.00319485, -0.00101879123, -0.015562118, 0.0345004238, 0.0170787647, 0.0051566, -0.0044576237, 0.00461917929, -0.00807779375, 0.025796188, -0.0146916937, -0.0143092349, 0.00979885925, 0.0165248588, 0.000245836942, 0.0007467838, -0.00644575, -0.0211011767, -0.00149768894, 0.0327332, 0.0215232, -0.00931089371, 0.011038553, -0.000526293, 0.0116320234, 0.0200197417, 0.00830858853, 0.018529471, 0.0227892697, -0.00191559119, 0.00407186756, -0.0275634117, -0.0219320357, -0.0285657179, 0.000524232339, 0.00616220292, -0.00590832951, 0.00441146456, 0.0178964362, -0.00226672785, -0.0157335643, -0.00525221461, -0.00232112943, 0.00268050889, 0.00800525863, 0.000189168743, 0.00996371172, -0.00646223547, 0.00433892943, -0.0126079526, -0.0141509762, 0.0169073176, 0.010181318, 0.00276128668, 0.0152456, -0.00657763239, 0.00341905, -6.56835909e-05, -0.015337918, 0.0224727523, -0.00687107071, 0.0136366356, -0.00219748961, 0.00162874709, -0.0157071874, 0.008724018, -0.0287503526, 0.0136762, 0.0160237066, 0.00174414413, 0.0176458582, 0.00357730873, -0.00895481184, -0.0166171771, 0.00754367048, -0.000181441268, -0.00161226175, -0.019940611, -0.00586546771, 0.00485656783, -0.00564786186, 0.0044807028, 0.0148895178, 0.00907350611, 0.00724034104, -0.00674578222, -0.00393339107, -0.0140586589, 0.00143339636, 0.0174744111, -0.0101879118, -0.0176326707, -0.010484647, 0.019887859, 0.0113748526, 0.00589843839, -0.0318100229, 0.026350094, -0.0202835053, 0.00521594705, 0.00869764108, 0.0114605762, 0.0193471406, -0.0103527643, -0.00641277945, -0.00226837653, -0.0056775352, -0.0294361413, -0.00597097352, -0.00574017921, -0.00933067687, -0.0158786345, 0.00327068241, -0.00991095882, 0.00721396459, 0.00820967648, 0.00145400292, -0.0149818351, -0.00179195148, 0.00109627203, 0.00603032066, 0.0075107, -0.0130365705, -0.00240190746, -0.0214440711, 0.0262445882, 0.00201450288, -0.00276788091, 0.0225386936, -0.0105835591, -0.014507059, -0.0144543061, -0.0254796706, -0.00181173382, -0.00692382362, -0.0046587442, -0.0120210769, 0.0146916937, 0.00710186455, -0.00262281019, -0.00639959099, 0.0060995589, 0.0124431, -0.0303065646, 0.000137137045, -0.0079327235, 0.00257005729, 0.0112429708, 0.0174348466, -0.00508406479, 0.0132673644, 0.00944937, -0.0129310647, 0.00775468256, 0.0106231235, 0.0108473236, -0.00875039399, 0.0117243407, 0.00122650585, 0.0297790356, 5.22377741e-05, -0.00377513235, 0.00611934112, -0.0194130819, -0.00390042062, 0.00257170596, 0.0256774947, 0.0033415691, 0.027378777, 0.0167754348, 0.0134915644, -0.00258983974, -0.00324430596, 0.00260467641, -0.0114276055, 1.48882809e-05, -0.0109660178, -0.00175733236, 0.015285165, -0.0289086122, 0.000891030126, -0.00572039699, 0.0237783883, 2.65310209e-05, -0.00790634658, -0.0127925882, 0.0108011644, -0.0125288237, 0.00622155, 0.0372963287, -0.000805718766, -0.0153906709, 0.00251235883, -0.0159709528, 0.00296075875, -0.00174579269, -0.0139399646, 0.00178535737, 0.0337355062, -0.0205340814, -0.00231948099, 0.00222386606, 0.00335805444, -0.00771511765, -0.0396702103, 0.0150345881, -0.00251071039, 0.0203098822, 0.0305967052, 0.00703592366, 0.0175139774, 0.0081767058, 0.0136630116, -0.00366962655, -0.00115067349, 0.0358192474, -0.0127200531, -0.0118760057, 0.00504779723, 0.00254697795, 0.0251367763, -0.0173689052, 0.0176062938, 0.00485986471, 0.00630397629, 0.00631057052, -0.0091922, 0.0238838941, -0.0124365054, 0.0192943886, -0.0152983526, -0.00354104117, 0.00395647064, 7.15049609e-05, 0.0362676457, -0.00886908825, -0.00422023516, -0.0152324121, 0.00929770619, -0.0212066825, 0.0047675469, 0.0259016939, 0.00630067941, 0.0166963059, -0.00359709118, 0.0135838827, -0.000658175384, 0.00426309695, -0.006046806, 0.00575007079, -0.00167243311, 0.000720407348, -0.0101285651, -0.010636312, -0.00605010288, -0.0364522822, -0.0155489296, -0.00534782931, 0.00840090588, -0.00686447648, -0.0159577653, -0.0153511055, 0.0225386936, -0.00716780592, 0.0181997642, -0.00517308526, -0.00314539415, 0.00815692358, -0.0085196, -0.0100692175, -0.0425716229, 0.0193207655, 0.0100032762, 0.0105242115, -0.0318364, -0.0127332415, -0.00174908969, 0.0105901528, 0.0151400939, -0.0138608357, 0.000945431588, -0.00849322323, -0.0387206599, 0.00712824101, 0.0146785062, -0.0319946595, 0.0451301411, -0.0199669879, 0.0157731287, -0.00849981792, 0.0142432945, -0.0199538, 0.00766236475, 0.00127348898, 0.00518627372, -0.0274842829, 0.0133399, -0.013148671, -0.0385096483, 0.0127859944, -0.0343949161, -0.0143356118, -0.0165776126, -0.00935705286, -0.00612593535, -0.00761620607, -0.0051895706, -0.00121661474, -0.00122897862, -0.0017771147, 0.000658175384, -0.00154961762, -0.0116254296, -0.0140454704, -0.00791294128, -0.0105703706, -0.00294097653, -0.029146, 0.0123046236, -0.0100230584, 0.00873720553, -0.000135694572, -0.00840090588, 0.00279096025, 0.00724034104, 0.0169996358, -0.00317671616, 0.000768626865, -0.0252159052, -0.0238443296, -0.0136366356, -0.00544674136, 0.009831829, -0.0118364412, 0.00198153243, 0.0242531653, 0.000532887119, -0.00592811173, -0.0165380463, -0.0245564934, -0.00129656843, 0.0110913059, -0.00819648802, -0.00231123832, -0.0017771147, -0.011816659, 0.0251367763, 0.0100758113, -0.0223672464, -0.0110913059, -0.00943618268, -0.0077349, -0.0231453534, 0.00192877941, -0.0170392, 0.00613252958, -0.03661054, -0.011539706, -0.0135575058, 0.00425650273, -0.00689744717, 0.00769533543, 0.0125024468, -0.0218924712, -0.0296999067, 0.0136762, 0.00354104117, 0.00844047, 0.0322056711, -0.00711505301, 0.0185690355, -0.00765577052, 0.010359359, 0.00303494255, 0.0044576237, -0.0160237066, 0.0140982233, 0.0044576237, -0.000264176837, 0.000731534907, -0.0168677531, 0.00359049696, -0.0282228235, 0.0121331764, -0.0254005417, -0.000294468569, 0.00679853512, -0.0130101945, -0.00937024131, 0.0197164118, 0.0169336945, -0.0073194704, 0.00164193532, 0.00830858853, -0.00685128802, -0.000249340083, 0.0153511055, -0.0214572586, 0.0138872117, 0.000221315073, -0.0227497052, 0.0144147407, 0.0124167232, -0.00859213527, 0.0147048822, 0.00151747128, -0.01936033, 0.0107154408, 0.0047972207, -0.0117507176, -0.0108539173, -0.0138872117, -0.00431585, -0.00968675874, -0.018529471, 0.04737214, 0.00899437629, 0.0035641205, -0.0123112174, 0.0120210769, 0.00163698965, -0.0150741525, 0.0167358704, 0.0253082234, -0.00413780892, -0.00226672785, -0.0297526587, 0.0167622473, -0.00689085294, -0.0165248588, 0.0101681296, -0.000626029039, -0.00712164724, 0.0118957879, 0.0219584126, 0.00846684724, -0.00820967648, -0.0417803302, -0.0106824702, 0.00925154705, -0.0105769644, -0.0154829882, 0.00599405309, 0.0167754348, -0.00146224559, -0.0143488, -0.0109726116, -0.0116649941, -0.014230106, -0.00372237945, -0.00263435, -0.0322320461, 0.0268512461, 0.00927132927, 0.0046290704, -0.0220639184, 0.0190965645, -0.011941947, 0.0122189, 0.00995052326, -0.0109528294, 0.0267721172, 0.00768214697, 0.000571215467, -0.00315858237, -0.0103527643, -0.0016073162, 0.0164061654, 0.00219584117, 0.00272337068, -0.0044576237, -0.00430266187, 0.0046290704, 0.00950871781, 0.00565115875, 0.00185459561, 0.0279063061, -0.00288822362, 0.00598745886, 0.00108885369, -0.00602702331, 0.00537750311, 0.0087767709, 0.0119353533, -0.00699635874, -0.00646553235, 0.00614901492, 0.0156016825, 0.0030761559, -0.00151582283, -0.0280909408, -0.00453675305, 0.0175931063, 0.013755329, -0.0200724937, 0.0366369188, 0.0209561065, -0.00186448672, 0.00929770619, -0.0072667175, -0.00424001785, -0.00403889688, 0.0116188349, -0.00279425737, 0.0178041179, 0.0143751763, -0.00142185658, 0.00520935282, -0.00630727364, 0.0248070713, -0.0101285651, -0.00544344401, -0.0089152474, 0.0100230584, -0.022551883, 0.00944277644, -0.0037916177, -0.0121859293, -0.00733265886, -0.0133333057, 0.00527529418, -0.000842398556, 0.000189889979, -0.00497855898, -0.0218133405, -0.00946255866, -0.00944937, -0.010385735, 0.00364325, -0.00287668384, -0.00538739422, 0.0120804235, 0.0221034829, 0.0203230698, -0.0177645534, 0.0211143643, -0.00942299422, 0.0153511055, 0.00247609126, 0.0104450826, -0.0143356118, -0.00167573011, -0.0193735175, 0.00714142947, 0.00452686194, -0.0123244058, 0.0246751886, 0.00407846179, -0.000583991525, 0.0165512357, -0.00637651188, 0.00951531157, -0.00039235, -0.00640948256, -0.0118298475, 0.000866302231, -0.00603361754, 0.00965378806, -0.0248862, -0.0197427887, 0.00995052326, 0.00857235305, -0.00846025255, -0.00214308826, -0.0168413762, -0.0347378105, -0.00841409434, 0.0076359883, -0.00538409688, -0.0209561065, 0.00875698868, -0.00520605594]
|
02 Feb, 2021
|
Fabric.js | Triangle borderColor Property
02 Feb, 2021
In this article, we are going to see how to draw a bordered colored canvas Triangle using FabricJS. The canvas triangle means the triangle is movable and can be stretched according to requirement. Further, the triangle can be customized when it comes to initial stroke color, height, width, fill, or stroke width.
To make this possible we are going to use a JavaScript library called FabricJS. After importing the library, we will create a canvas block in the body tag which will contain the triangle. After this, we will initialize instances of Canvas and triangle provided by FabricJS and enable the borderColor of canvas triangle using borderColor property and render the triangle on the Canvas as given below.
Syntax:
fabric.Triangle({
width: number,
height: number,
borderColor: 'purple'
});
Parameters: This function accepts three parameters as mentioned above and described below:
width: It specifies the width of triangle.
height: It specifies the height of triangle.
borderColor: This parameter defines the border color of the triangle.
Example: This example uses FabricJS to enable the borderColor of the canvas-like triangle as given below. Try borderColor the object after enabling borderColor property, it will color the triangle border by defined color.
HTML
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Triangle borderColor Property
</title>
<!-- Adding the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<div style="text-align: center;width: 600px;">
<h1 style="color: green;">
GeeksforGeeks
</h1>
<b>
Fabric.js | Triangle borderColor Property
</b>
</div>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a triangle instance
var triangle = new fabric.Triangle({
width: 150,
height: 100,
fill: '',
stroke: 'green',
strokeWidth: 3,
cornerColor: 'blue',
borderColor: 'purple'
});
// Render the triangle in canvas
canvas.add(triangle);
canvas.centerObject(triangle);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Fabric.js | Triangle borderColor Property
|
https://www.geeksforgeeks.org/fabric-js-triangle-bordercolor-property?ref=asr2
|
CSS
|
Fabric.js | Triangle borderColor Property
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Fabric.js | Triangle borderColor Property, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.00577848, -0.0125616388, -0.00952232815, 0.0286870413, 0.0706687, 0.0343486257, 0.000952548813, 0.0140654966, -0.0192468558, -0.0299002379, -0.0189688317, -0.0122330645, 0.014811107, -0.0701632, -0.0128080687, 0.00291451486, -0.0355112702, -0.0269430708, 0.0121382838, 0.0156072667, 0.00859979354, -0.0166056268, -0.0161380414, -0.0114242667, -0.00222103414, 0.0307343099, 0.0202452168, 0.0274485704, -0.00197934266, 0.00786682125, -0.00195722701, 0.0119866338, -0.00468218, -0.0270441715, -0.0106849754, -0.0246556904, -0.0076456652, 0.0645521656, -0.0426135249, -0.000146021936, -0.00883358717, -0.00510869455, 0.00473273, 0.00582587067, -0.00135852734, 0.00934540387, -0.0116770165, -0.0140528595, -0.00444522779, -0.0493872054, -0.0169215631, -0.0175534356, 0.0298749637, -0.00878303684, 0.0288639665, 0.0286112167, 0.00596172316, 0.033565104, -0.0349299498, 0.0188045446, 0.019158395, -0.049917981, -0.0165171642, 0.0112789357, -0.00212151418, 0.0326299295, -0.0209150016, 0.0360925943, -0.0343739, 0.00168394193, -0.030481562, -0.00811325107, 0.0272969212, -0.00676104287, 0.00363643, 0.00985722151, 0.0561103374, 0.0234930441, -0.0206117034, 0.0397069082, 0.00201251614, 0.00416720333, -0.0337167531, 0.0172375, -0.0454443172, -0.0202073045, 0.0423102267, -0.04582344, 0.000710462395, -0.00954128522, 0.000471930281, -0.00617024163, 0.0300266128, -0.0497916043, -0.0319980569, -0.00123215269, 0.00171553565, -0.0318464078, -0.0341717, 0.00580375502, 0.0312145334, 0.0444585942, 0.0042904187, 0.0197523553, 0.0116454223, -0.0419311039, 0.0315178335, 0.00909265503, 0.00435360614, -0.00381019525, -0.00818907656, 0.00801847, -0.00827753823, 0.0552004389, -0.0527740456, 0.0181473978, 0.00889045559, -0.0278024189, 0.0379882157, 0.000230041318, 0.0181347597, -0.023202382, 0.000483382959, 0.0272210967, -0.0289650653, 0.0160495788, -0.0169973876, -0.00832808856, 0.0095855156, -0.00249273959, -0.00885254331, -0.0324530043, -0.00655252486, -0.0123531204, 0.0214584135, 0.0255529508, 0.00254802848, 0.00550361536, -0.0109566804, 0.00766462134, -0.0202831291, -0.0374827161, 0.0125047695, 0.0425882526, -0.00104259071, -0.00554152764, 0.0142045086, -0.0117654782, -0.0172501374, 0.0257677883, -0.0526223965, -0.00547518115, 0.047365211, -0.00343107129, 0.0382915139, -0.0228864457, -0.0121382838, 0.00296664448, 0.0433970504, -0.0390750356, 0.032705754, -0.0012432104, -0.00540567469, 0.035789296, -0.0166814514, 0.00708329817, -0.00381651381, 0.00681159273, -0.0416783541, 0.0356376469, -0.000381888356, -0.000384257874, -0.00675472431, 0.0165677145, -0.0335903764, -0.0226842463, 0.0180336609, -0.0115948729, 0.028661767, -0.0035290115, -0.0384684391, 0.0151523184, 0.0235056821, 0.0492861085, -0.00693796715, 0.00838495698, 0.0246936027, 0.0189814698, -0.019006744, -0.047365211, -0.0376090892, 0.0133957108, 0.0552509911, -0.020687528, 0.0375332646, 0.0115632787, -0.0034247525, -2.8582388e-05, -0.00101731578, 0.00410717539, 0.0513081, -0.00686214259, -0.0183243211, -0.0164413396, 0.0318211317, -0.0177682731, -0.00499811675, -0.0548465922, 0.0473399386, -0.0129091684, -0.0101478826, 0.0345002748, 0.00289081968, -0.00727286, -0.00805638265, -0.00427462207, -0.0120371841, 0.00617340067, -0.0206369776, 0.0109250871, 0.0104322257, 0.0413497798, -0.0280298926, 0.000273087673, -0.0569696836, -0.0111715179, 0.0176671743, 0.0201567542, -0.034121152, -0.0283584669, 0.0253633894, -0.0181221217, 0.0150133064, 0.0110072307, 0.0423607752, 0.0126121882, -0.0184380598, -0.0204474162, -0.00854292512, 0.000534327759, -0.00537092192, -0.0206496157, -0.0287123173, -0.0402124077, 0.0386453643, -0.00872616842, -0.0119108092, 0.0166435391, 0.0042904187, -0.00506762275, -0.0148869315, -0.00173765118, 0.0220397357, 0.0208391771, -0.00176134647, 0.0186149832, -0.04109703, -0.0371541418, 0.0498674288, 0.0187792704, 0.0430179238, 0.0306837615, -0.0146341827, 0.00262859231, -0.00176766515, -0.0280551687, 0.00873880554, -0.0195122436, -0.0136105483, -0.0288386904, 0.0134083489, -0.0250600893, 0.0256035011, -0.0259320755, -0.00726022245, 0.050474029, -0.00508341938, -0.0227095224, 0.0373816155, 0.00201251614, 0.0160369407, 0.0125047695, 0.00706434203, 0.0447113439, 0.00998991448, -0.0414761528, 0.00103864155, 0.0341969766, -0.0126564195, -0.0333376266, -0.0204221401, -0.0138885723, 0.000334497861, -0.052116897, 0.0398080088, 0.000838811626, 0.00397132291, -0.0282068178, -0.0309365094, -0.000682423, -0.0495388545, -0.0349552222, -0.0253886636, -0.0268925223, 0.00686214259, 0.00145014888, 0.0384937115, 0.00477696117, 0.0169342011, 0.0287881419, 0.00320359692, -0.0210413765, -0.0364464447, -0.027676044, -0.00164444989, -0.0212814882, 0.0567169338, -0.00451789331, 0.00497284159, -0.010065739, -0.0445344187, -0.00391445402, 0.0201820284, 0.0604576245, 0.0311639849, -0.0393277854, -0.018160034, -0.0327815786, -0.02739802, -0.00674840529, -0.0158600155, -0.00585114537, 0.00941491, 0.0239606295, -0.00544042792, 0.00952864718, -0.00765830278, -0.0145836323, -0.0218248982, 0.0299507882, 0.00882094912, 0.00432201242, 0.0113800354, -0.0305573866, 0.0374068916, -0.0342728, 0.010059421, 0.0102237081, 0.0376596414, 0.0416278057, 0.000776809058, 0.0501960032, 0.00712752948, -0.0137874726, 0.0403135084, -0.0168836508, 0.0258309748, -0.0266144983, -0.0275243949, 0.0190320201, 0.000486542325, 0.0101289265, 0.0203715917, 0.0137369223, 0.0318464078, -0.0151649555, -0.0124036698, -0.0228738077, 0.000331930874, 0.00931381062, -0.0345255509, -0.0191331189, -0.0407179072, -0.0254265759, -0.0420322046, -0.01649189, -0.0259826239, -0.00304246927, -0.0289903414, 0.0153039685, -0.0346266478, 0.0421333, -0.00578795839, -0.0249969028, 0.0528751463, 0.0480729118, 0.00240111793, 0.0165424403, 0.00395868532, -0.0188424569, -3.26796908e-05, 0.00923798606, 0.0247694273, -0.0229749084, -0.00109708973, -0.0202073045, -0.00331417471, -0.0349046737, 0.0264628474, -0.0510553531, 0.0143561587, -0.00223367172, 0.0178188235, -0.0106091509, 0.0352585241, 0.00225104811, -0.0173386, -0.018589709, 0.00799951423, -0.0432453975, -0.0111272866, 0.00328258099, 0.0229496341, 0.00583218923, 0.0296474881, 0.0363958925, 0.0335903764, 0.0325288288, -0.0305573866, -0.0162517782, 0.0581323318, -0.0170984883, -0.0243271161, -0.0119613586, -0.0241628289, -0.0118349846, -0.0285859425, -0.0111146485, -0.0111715179, -0.00361115509, -0.130317524, -0.00193827087, -0.00616076356, 0.00329205929, -0.015379793, -0.000913846539, 0.0207507145, 0.0221661106, 0.0310881604, 0.0182737727, -0.00446102442, -0.00153150258, 0.0450146459, -0.0297991391, -0.00840391312, 0.0037185736, -0.0418552794, -0.0463289395, 0.0102363452, 5.59800137e-05, -0.016074853, 0.0109819556, -0.0626818165, 0.00152518379, -0.0192594938, -0.0259068, 0.00452105235, 0.00677999901, 0.0228106212, -0.0124731762, -0.0370783173, -0.00713384803, -0.0356881954, 0.0150385816, -0.000274469901, 0.0327310301, 0.0051150131, -0.0246556904, -0.00403135084, -0.00583850825, 0.0377860144, 0.0288892407, 0.0295716636, 0.0247188788, 0.0240743682, 0.0153924301, -0.024188105, -0.0148237441, 0.0230380949, -0.0254013017, 0.0475421362, -0.0115948729, 0.0233287569, 0.00438835891, 0.00387970125, -0.0125174075, 0.0198408179, -0.0240617301, -0.0235309564, 0.022785347, 0.0284595676, 0.00257488317, -0.0239606295, 0.00375964539, 0.000935172255, 0.016630901, 0.00521927234, -0.0148995696, 0.0394541621, -0.0182990469, -9.43860505e-05, 0.0363200679, 0.0151902307, 0.01649189, 0.0281815436, 0.0314420089, -0.0153924301, 0.0313914604, -0.0534311943, -0.0143056083, -0.0338684022, 0.022633696, 0.0198660921, 0.00133009301, 0.00175502768, -0.00770253409, 0.0263617486, 0.0184380598, -0.0196638927, -0.0144825326, 0.0221281983, -0.0210287385, -0.0153418807, -0.0206622519, 0.0131050497, 0.033261802, 0.00267282338, -0.0141539592, -0.00814484525, -0.0128775751, 0.00829017628, -0.00280393707, 0.0238342565, 0.0106723374, 0.0183748715, -0.00739923492, -0.00138617179, -0.0222924855, 0.0149753941, 0.00355744595, -0.0405662581, -0.0302288122, -0.0323266312, 0.00629661605, -0.0182864089, 0.0275496691, 0.01215724, 0.025729876, -0.0188550949, -0.00040439883, -0.0332112536, 0.0364717208, 0.0140528595, -0.00793632679, 0.0431443, 0.00719703548, 0.029217815, -0.0481992848, -0.00696324231, -0.0123720765, 0.0188298207, -0.00479591731, 0.0196259804, 0.0155819925, -0.0272716451, -0.0343739, -0.00883358717, 0.00135299843, -0.0210161023, -0.00775940251, 0.00894732401, -0.0424366035, -0.00803110749, 0.0113673983, 0.0112789357, -0.0205106027, 0.0115127293, -0.0111715179, 0.0213573128, 0.0285101179, -0.0156325419, -0.0349299498, 0.00350373657, 0.0128396628, -0.0168962888, -0.00631241268, -0.0155946296, -0.0206369776, -0.0576268323, -0.0254771262, 0.0136105483, 0.0230886452, -0.0238342565, -0.00766462134, -0.0433970504, 0.0184633341, 0.0200430173, -0.0240617301, 0.0297233127, -0.0116643785, 0.0122583397, 0.00313409092, 0.00593960751, -0.0145962704, -0.00401871325, -0.0250474531, 0.0181221217, 0.00149438006, 0.00358272088, -0.0118033905, -0.0345761, 0.0103248078, -0.00033607753, -0.0115822349, -0.0111462427, -0.00762670906, 0.0346519239, 0.0354354456, -0.00533300964, -0.0320991576, 0.0141413212, -0.0253128391, 0.0481234603, -0.00167446386, 0.0160874911, -0.0221661106, -0.0150764938, -0.0135473609, 0.00472641131, -0.022633696, -0.0230886452, 0.000590011594, -0.0278529692, 0.0203589536, -0.0193605945, 0.0223809481, 0.00138064288, 0.0204347782, -0.0193226822, -0.0146468198, -0.00754456548, -0.00344370864, -0.00116343645, 0.0255529508, 0.00028454038, 0.0114748171, -0.0336409286, -0.00222419342, 0.00468533952, 0.0108745368, -0.0197649933, 0.0171616748, -0.0281309932, 0.016062215, -0.015228143, 0.00917479862, -0.0214457754, 0.0293694641, -0.0194111429, -0.00494440738, 0.00744346576, -0.0226589721, -0.00583534874, -0.0284595676, -0.0140528595, 0.00738027832, 0.0325541049, 0.00292083365, 0.00564578688, -0.0136863729, -0.0134841735, 0.000767331, -0.0162644144, 0.0233034827, 0.0154935298, 0.0109250871, -0.0178693738, 0.0635917187, 0.0300013386, 0.0110072307, 0.0255403128, -0.0278782435, -0.00629029749, 0.0105649196, -0.0119487215, -0.0148237441, -0.0230001826, -0.00507394131, -0.00281183561, -0.00815748237, 0.0384684391, 0.0142424209, 0.00979403406, 0.00634084735, 0.00775308348, 0.0124984514, 0.00686214259, -0.0109882746, -0.0130924117, 0.0187919084, -0.0165929887, -0.00608493853, -0.0120814145, 0.000743240817, 0.00484014861, 0.0418805517, -0.00911793, 0.0178188235, -0.0296222139, -0.0290661659, 0.0187666323, 0.0133830737, -0.00543095, 0.000443890895, -0.00710857287, -0.0190699324, 0.00881463103, -0.0155314421, 0.00412613153, 0.00689373631, 0.00431253435, -0.0101415645, 0.0359662212, -0.011329486, -0.00741187204, -0.000717570947, 0.00209465949, 0.00288292137, -0.00184664933, -0.00901051145, 0.0163149647, -0.00648301886, -0.00843550637, -0.0114179477, -0.0145078078, 0.0362695195, 0.000788656704, -0.000788656704, -0.0148869315, -0.035359621, -0.0177177228, -0.00945282262, -0.0459245406, -0.0150385816, -0.0391508602, 0.0267914217, 0.00635348447, -0.00159153051, 0.000522480113, 0.0361684188, -0.00450525573, -0.0203968659, 0.0267408714, -0.0123278452, 0.0360925943, -0.00775940251, -0.0179704726, 0.0140907718, -0.0158094671, 0.0423860513, -0.019979829, 0.00663466845, -0.0240364559, 0.057323534, 0.00830913242, 0.0206369776, -0.00471377373, -0.0119044902, 0.0225199591, -0.0048622638, 0.0110261869, 0.0186149832, 0.00537408143, 0.00289871823, -0.00634084735, -0.015367155, 0.0256793257, -0.0344497263, -0.017894648, 0.00253539113, -0.0035700833, 0.00718439789, 0.0251738261, -0.00777204, 0.00988881476, 0.00375964539, -0.00611337274, -0.00959183462, -0.00902314857, 0.0306584854, 0.0269430708, 0.00263649086, 0.0403640568, -0.0115695978, 0.0097245276, 0.00148016284, -0.0266903229, -0.00303457095, 0.01160751, -0.0434728749, -0.0237837061, -0.0288386904, -0.0018071573, 0.0255529508, 0.0354354456, -0.0404651575, -0.0184380598, 0.0112536615, -0.0238216184, 0.0024864208, 0.00723494776, -0.0103690382, -0.0522179976, 0.00914952345, 0.0365222692, 0.0012376816, 0.0119550405, 0.0122204274, -0.00911161117, 0.0385189876, 0.0135852732, -0.011468498, 0.0204726905, -0.0155314421, -0.0555037372, 0.0298496876, 0.0253254771, 0.0129660377, 0.00326046557, 0.00744978478, -0.0157336425, -0.0184380598, -0.0214331374, 0.034475, 0.00854292512, 0.0114432229, 0.0343233496, 0.0252622887, 0.00483067054, 0.0139264846, -0.0319222324, 0.00065477856, -0.00949705392, -0.00970557146, 0.015518805, 0.032579381, 0.00110735768, 0.0117338849, 0.0369266681, 0.0215974245, 0.00408506, 0.0400860347, -0.00526666269, 0.016769914, 0.0032857405, 7.78981121e-05, -0.00365538616, -0.0100973332, -0.0108682187, -0.00951601, -0.00405030698, -0.00279287947, -0.004473662, 0.0154808927, 0.0214331374, -0.0284848418, 0.02375843, 0.00232845265, -0.0214710496, 0.0422091261, -0.033691477, 0.00364590809, 0.014950119, 0.0102932137, 0.00638507819, -0.00491597317, -0.0161633156, 0.00491281366, 0.0105586005, 0.00801847, 0.0157462787, -0.0288134161, -0.0117717972, 0.0159737542, -0.0173891503, 0.0183495972, -0.0213194, -0.0105901938, -0.00703906687, -0.0332870781, -0.00558891799, 0.0179704726, 0.00576584274, -0.0162265021, 0.0310628843, 0.0493113808, -0.00242797262, 0.00596804218, -0.0158221032, 0.00982562732, 0.0168583766, -0.0133577986, -0.00990145281, -0.00166814518, 0.0332870781, -0.0334640034, 0.0252622887, 0.0507015027, -0.0164413396, 0.0258183368, 0.0115632787, -0.038999211, 0.00863770582, -0.000803268747, 0.0201188419, 0.027119996, -0.0293694641, 0.048932258, 0.000500759459, 0.011601191, -0.00700747315, 0.00675472431, -0.0252875648, 0.0258688871, -0.0054530655, -0.0133957108, -0.0319222324, -0.00450209621, -0.019284768, 0.0276002195, 0.00717807934, 0.0412234068, 0.0379629396, 0.0052003162, -0.0126311444, -0.0197270811, -0.00892836787, 0.0173133239, -0.0264628474, -0.0164034273, 0.0151523184, 0.00442311214, -0.008530288, -0.0134336231, -0.0155693544, -0.0535322949, 0.0107355248, 0.0224314965, -0.00487806089, 0.0224062223, 0.00126295653, 0.0391508602, 0.0072286292, 0.00632505026, -0.00567106158, -0.0036143146, 2.09801638e-05, -0.002202078, 0.0124542201, 0.0037880796, 0.0491850078, -0.0136105483, -0.00998359639, -0.00480855489, 0.0257677883, 0.00179294008, -0.00487490138, -0.0248199776, 0.0099520022, 0.0142171457, -0.00702642975, 0.00354796788, 0.00478012068, 0.0341969766, 0.00873248745, 0.0168583766, 0.0310881604, -0.0144825326, 0.00318306102, 4.83531076e-05, 0.027827695, 0.0151270432, -0.00791105162, 0.00500127627, 0.0215721503, 0.0237205178, 0.0156072667, 0.0041514067, -0.022785347, 0.0174649749, -0.00597436074, -0.008530288, -0.0273727458, -0.00783522706, 0.000183539407, 0.00732341, 0.0126690567, 0.0225831475, -0.0228611715, -0.0118223466, -0.00692533, 0.00938331615, -0.0113421232, -0.00425566593, 0.0159358419, 0.0358651206, -0.0144698955, 0.0187792704, 0.00763302762, 0.0247062407, -0.0440541953, 0.0106091509, 0.01160751, -0.00160416798, 0.00755720306, 0.0119360844, -0.00576900179, 0.0063187317, -0.00506762275, 0.0357387476, 0.0279793441, -0.00703274831, 0.0153418807, -0.0273727458, -0.00127875328, 0.0113989916, -0.0141034089, 0.00960447174, 0.0381904133, -0.0159484781, -0.00704538589, 0.00784154609, 0.00668521784, 0.000611337309, 0.0279287938, -0.00950337201, 0.00259068, -0.0223177597, -0.0137874726, -0.0120561402, -0.0140907718, 0.0122899329, -0.00477696117, -0.0116264662, -0.0226842463, -0.0132946111, -0.0086250687, -0.00956655946, -0.0165045261, 0.00335208722, 0.00217522332, -0.00303615048, 0.0201693922, -0.00985722151, 0.000605413457, -0.0103248078, -0.0330596045, -0.0161759537, 0.00724126631, -0.00335208722, 0.000594750629, 0.00601543253, -0.00968661532, -0.0287375916, -0.023897443, 0.0164287016, -0.00159705942, -0.0112410234, -0.00825858209, -0.00132851338, -0.0102173891, 0.0171869509, -0.0130924117, -0.0151270432, 0.00621763198, -0.0114305858, 0.0018039979, 0.0231644697, 0.000399067387, -0.00792369, 0.028939791, -0.00265702675, 0.0254644882, -0.00847973768, -0.0133577986, 0.000239716886, 0.00185454777, -0.00717807934, 0.00671681156, -0.0345002748, -0.019979829, 0.00579743646, -0.00331733422, 0.0115569597, -0.0092569422, -0.0368002914, -0.00603438867, 0.0422849506, -0.0259826239, -0.0215595122, -0.0135347228, -0.0105712377, -0.0534311943, -0.0182232223, 0.0345002748, 0.0113737173, -0.0256540496, 0.00331733422, 0.0192342196, 0.00192405377, 0.0275496691, -0.000139012089, 0.00264438917, 0.0132566988, -0.00322887185, 0.025717238, -0.0275749452, -0.00460003642, 0.00849869382, -0.00383231067, -0.0144825326, 0.0290408898, -0.0277771447, -0.002097819, 0.00173607154, 0.0125237266, 0.0102110701, 0.00724758534, 0.00111367647, 0.0171364, 0.0150512187, 0.01230257, 0.00388286053, 0.0307343099, -0.0320991576, 0.00554468716, -0.000394723262, 0.000580928405, -0.00145883719, 0.0027186342, -0.0293947402, 0.0118602589, -7.85892262e-05, -0.00659043714, 0.013420986, -0.0331859775, 0.00202831277, -0.0121256458, -0.00368697988, -0.0152660552, -0.00711489189, -0.0144698955, 0.0180462971, -0.00474220794, -0.0140023092, 0.0232529324, -0.0671807528, -0.00882094912, -0.0118728969, -0.0107860751, 0.00643562805, 0.0172754116, 0.000682423, -0.00200619735, 0.0252875648, -0.00870721228, 0.0282826424, 0.0206117034, 0.0412486792, 0.00210413756, -0.00466638338, -0.0251991022, 0.00423355028, -0.00811325107, 0.0075319279, -0.00354480837, -0.00641983142, 0.0327815786, 0.014811107, -0.0234677698, -0.00492545124, -0.0205737911, 0.00724758534, -0.011746522, -0.00807533879, -0.0234045815, 0.0182611346, -0.00613232888, 0.0067357677, -0.0262353737, 0.0358145721, -0.00902946759, -0.0235941447, 0.000431648368, 0.00311513478, 0.00474536745, -0.00158205244, -0.0268925223, 0.0159990285, 0.0213699508, 0.0375332646, -0.000529193785, -0.0200177412, 0.0126943318, 0.00823330693, 0.0215974245, 0.00128744158, -0.019006744, 0.0143687958, -0.00851133186, 0.00983826537, -0.00249905838, 0.00664730556, 0.0204221401, -0.0186276212, -0.0019461693, -0.0332870781, 0.0189309195, -0.0105459634, 0.0154682547, 0.00893468689, -0.0161885899, 0.00106865552, -0.0044989367, 0.00794896483, 0.0317200311, 0.00837863795, 0.000355231197, 0.0124984514, 0.0119108092, 0.00563630881, -0.0295211133, -0.00669785542, -0.00244376948, -0.0138127478, -0.00720967259, -0.0201693922, 0.011038824, -0.00267914217, -0.00358588016, 0.019436419, 0.0110956924, 0.00106154697, -0.00825226307, -0.0032509875, 0.0133072492, 0.0112915738, -0.00312303309, -0.0115632787, 0.0253254771, 0.00507394131, 0.010893493, 0.0174649749, 0.0210287385, 0.000800504291, 0.0301024374, -0.0131682372, 0.0159105659, -0.0053393282, 0.00748769706, -0.00874512456, -0.00637875963, 0.0245419536, 0.00409769733, -0.00538987806, 0.00874512456, 0.00431253435, 0.0184254218, -0.0155440802, -0.00642615, -0.00625238474, 0.0108745368, 0.00893468689, 0.00513712876, -0.0172754116, 0.0106091509, -0.00130560796, -0.0119550405, 0.0316442065, -0.0313661844, 0.00263649086, -0.0485278592, -0.0240490921, -0.0143182455, 0.0056173522, 0.0209023636, 0.00681159273, -0.011038824, 0.033135429, 0.010893493, 0.00770885265, -0.0102300262, 0.000163595905, -0.0226589721, -0.022924358, 0.0019114163, 0.00589537667, 0.013559998, 0.00584798632, -0.00737395976, 0.0290661659, 0.00913056731, 0.000407163257, -0.00517504103, 0.00140512793, 0.0085682, 0.0259573497, 0.00236636493, -0.00202041445, 0.00549729634, 0.0107797561, 0.0043852, -0.0052255909, 0.000996779883, 0.0187034458, 0.0197523553, 0.00670417445, 0.00015026734, 0.0139896721, 0.00774676492, 0.00163971086, -0.0117970724, 0.000414666778, 0.00765830278, 0.00561419316, 0.00779099623, 0.0145457201, -0.0217111614, 0.0120624583, 0.0267408714, -0.0115253665, 0.00868193712, 0.00951601, -0.00384178874, -0.00976244081, 0.00797423907, -0.00073968654, -0.00577848, 0.0178693738, 0.0211172011, 0.013142962, 0.0233919453, -9.82365309e-05, -0.00945282262, -0.00978771504, -0.00770253409, 0.00354796788, 0.00609757612, -0.00059435569, -0.00248958031, 0.00715912273, -0.00779099623, 0.00700747315, -0.0158473793, -0.00699483603, 0.0140402215, -0.00211993442, 0.0346519239, 0.00389865739, -0.0172754116, -0.00948441587, -0.0408442803, 0.00603122916, -0.0118286656, 0.000468770915, -0.0033552465, -0.00861243159, -0.0207886267, 0.0341969766, 0.041526705, 0.023480406, -0.0209908262, -0.0039965976, 0.012441583, -0.00517504103, -0.0103248078, -0.00130086893, -0.0424871519, -0.01788201, 0.0102616204, -0.00787313934, -0.0109187681, 0.00340895564, -0.011190474, 0.0182105843, -0.0196512546, -0.00397764146, -0.00409453828, -0.00473588938, 0.015367155, -0.000320873078, -0.00173923094, 0.0156072667, 0.00143988093, 0.0124794953, -0.0191710312, 0.00358903967, 0.00734236604, 0.00859347545, -0.0174523368, 0.00372489239, -0.0468091629, -0.015379793, 0.0122646578, 0.0139012095, 0.027119996, -0.0226968843, -0.0132693369, -0.013142962, 0.0075066532, -0.0143435206, -0.00464426773, -0.0144446203, 0.0112852547, -0.0223809481, 0.00894100498, -0.0018387509, -0.00702011073, -0.0331101529, 0.00798687711, -0.00519083813, -0.00191615534, -0.0111462427, -0.00763302762, 0.016213866, 0.0122014703, 0.0164792519, 0.0182484966, 0.0161001291, -0.0177303609, 0.0182737727, 0.00760143436, 0.00170447782, -0.00914952345, -0.0168204643, -0.000999939279, 0.00683054887, -0.00863770582, 0.0326299295, -0.00072231, 0.00394604774, 0.0154177053, 0.0118286656, -0.0148742944, -0.0118981721, -0.0152028687, -0.0134841735, 0.00284974789, 0.00420511607, -0.0213573128, 0.0119929528, 0.00122425426, 0.00990145281, -0.00234109, 0.0112662986, 0.0249969028, 0.00782259, 0.0328321308, 0.00423671, 0.00348478043, -0.00146515586, -0.0225452352, -0.0151902307, -0.000115514311, 0.0201820284, 0.0251106396, 0.0411223061, -0.00198724121, -0.00734236604, 0.0320486054, 0.0117970724, 0.0245293155, 0.0257425122, 0.0169847514, -0.0210413765, 0.02516119, -0.0137495603, 0.0058858986, 0.0011879215, -0.00732341, 0.00171869504, -0.0247820653, 0.00733604748, -0.00915584248, -0.0108808558, -0.013130324, 0.0469102636, 0.0095855156, -0.0211803876, 0.0073676412, 0.0231771078, 0.00643562805, 0.0228738077, -0.0136737349, 0.0175028872, -0.0111272866, 0.00646722177, 0.0208139028, 0.0107165687, 0.0227221586, 0.00253381138, 0.06207522, -0.0181853101, 0.0228864457, 0.0166056268, -0.00253381138, -0.0119929528, -0.00297454302, -0.0136737349, -0.04582344, -0.0171743128, 0.00369961746, 0.011038824, 0.0149880312, 0.0200809296, 0.0127069689, 0.0128207067, 0.00641983142, 0.00494756689, -0.0165424403, -0.00208676117, -0.0114305858, -0.022355672, 0.0304057375, -0.0143814329, -0.0123594394, 0.0137495603, -0.0222924855, -0.00708329817, -0.00157336413, -0.0275243949, -0.00105285866, -0.0251738261, -0.00818907656, 0.00220365776, 0.00446734345, 0.0173512362, 0.0212814882, -0.00968029723, 0.00758247776, -0.00160732737, -0.00340263708, 0.0060249106, 0.00703274831, 0.00187824294, -0.0216858871, 0.0152786933, 0.0262606479, 0.00386706367, 0.000863296736, 0.0124668572, 0.00185454777, 0.0011215749, -0.00950337201, -0.00628713798, -0.0142424209, -0.0193985067, 0.0089030927, 0.00125268858, -0.00977507792, 0.0171237625, 0.011316848, -0.0105080511, -0.0137874726, -0.00680527417, -0.00920639187, 0.0217617117, 0.00846078154, -0.0344497263, 0.00638191914, 0.0035353303, 0.00754456548, 0.0167067256, 0.0118223466, 0.00470745517, -0.0346519239, 0.0236573312, 0.0104006324, -0.0075319279, 0.00858715642, 0.00404082891, -0.0154556176, 0.0302288122, 0.00882094912, 0.0167320017, -0.00724126631, 0.0128333438, 0.0348793976, 0.0102489823, 0.0158979297, 0.00510553503, 0.0192594938, 0.00175976672, 0.00295084761, -0.00111367647, -0.0237205178, -0.00946546, 0.00847342, 0.00450209621, 0.00150148862, 0.00184822897, 0.0168710127, 0.00798687711, -0.0102553014, 0.0142929712, -0.00280551682, 0.019714443, 0.0168204643, -0.00860611256, -0.000968345616, 0.0224567726, 0.0219512731, -0.0123278452, 0.00952232815, -0.00655252486, -0.0177429989, -0.00911793, 0.0156578161, 0.000181466079, 0.0262101, -0.00684950501, -0.00293347123, 0.00325730606, -0.0152534181, 0.0284090172, 0.0264881235, -0.000400054705, 0.00754456548, 0.006571481, -0.00892204884, 0.0127891125, -0.00999623351, 0.0151396813, 0.0189814698, -0.00663466845, 0.015367155, 0.0176292621, -0.0139138475, 0.0162391402, -0.0277013201, 0.00513712876, -0.00965502206, 0.0176418982, -0.0138632972, -0.00703274831, 0.0279793441, -0.000233793064, 0.00433465, -0.00587957958, -0.0276507698, 0.0173133239, 0.00895364303, 0.00265386724, -0.00143119274, -0.00911793, -0.0229496341, 0.0257930625, -0.00734236604, -0.00699483603, 0.0398080088, 0.00549413729, -0.00964870304, 0.00276602479, -0.00927589834, 0.00417984091, 0.00658411859, 0.004265144, -0.0240870044, 0.0115822349, 0.00775940251, 0.010893493, 0.0130924117, 0.029773863, 0.00149359019, 0.00544042792, -0.00686846115, -0.00495704496, -0.0241122805, -0.0143308835, -0.0077151712, 0.00322571257, 0.0213573128, 0.0131555991, -0.00648933742, 0.00406294456, -0.0175534356, -0.00501707289, -0.00979403406, -0.00603122916, 0.00922534801, -0.0431443, -0.0102742575, -0.00947177876, -0.00625870377, -0.00649565598, 0.00450209621, 0.00313409092, -0.0213952251, 0.026563948, 0.00152123463, 0.00709593575, -0.00835336279, -0.0316947587, -0.0224567726, 0.0261848234, -0.019979829, 0.0248578899, 0.019158395, -0.0217238, -0.00959183462, -0.00483067054, 0.0346266478, 0.00836600084, 0.0179831106, 0.0040123947, -0.0212941263, 0.00447998056, -0.00241849455, 0.0161885899, -0.0175660737, 0.00501707289, 0.0103058517, 0.0313661844, 0.0254518501, -0.0235056821, -0.0104954131, -0.002132572, 0.00131271651, 0.00356692402, 0.0143687958, -0.0227600709, -0.00211361563, 0.0319727808, -0.0155819925, -0.00879567489, 0.0084418254, -0.00748137804, 0.00384494825, -0.00391129497, -0.0170353, -0.0171111245, 0.0101794768, -0.00726022245, -0.00132140471, 0.0096739782, 0.00182295404, 0.00712121045, 0.000656358257, 0.012163558, 0.0115506416, -0.00600911397, -0.015228143, -0.0150764938, 0.0281815436, 0.00164444989, -0.00787945837, -0.00374384853, 0.0196638927, 0.014672095, 0.0105965128, 0.0269177966, 0.000563156966, -0.00524138799, 0.00493492931, -0.00983826537, 0.0141034089, 0.0131176868, 0.000537487096, 0.00497916061, -0.0464047641, -0.00125979714, -0.00569633674, 0.0120814145, 0.0300013386, -0.00118002319, 0.00665362459, -0.0136863729, -0.0206622519, 0.00652093114, -0.0035353303, 0.00665362459, 0.0124226268, -0.0102110701, 0.0133577986, -0.0343991742, -0.0177556351, 0.00534880627, 0.00660307473, 0.00170763722, -0.0184380598, -0.00241691479, 0.0186149832, -0.00109077105, 0.00264596893, 0.019006744, 0.0061102137, 0.0119550405, 0.0414508805, 0.0215089619, -0.0121193277, 0.0138632972, 0.0102363452, 0.000939911348, -0.00835336279, -0.00678631756, -0.0113105299, 0.00401871325, 0.0272716451, -0.00748137804, 0.00518767862, 0.000816696091, -0.0112978918, -0.0305573866, 0.0105459634, 0.0249716267, 0.0111399237, -0.0268672463, 0.000611337309, -0.000416641356, 0.00914952345, 0.0310123339, -0.0167193636, 0.00599963591, 0.00151807524, -0.0296222139, 0.00843550637, -0.0169594754, 0.00447682152, 0.0286112167, -0.00920639187, -0.0151270432, -2.09307982e-05, 0.00672944915, 0.0093959542, 0.00782259, -0.012991312, -0.0172122251, 0.0106344251, -0.00112710381, 0.0208391771, 0.00162391399, -0.0078541832, 0.0118097095, 0.00423986884, 0.00274390914, -0.00795528293, 0.00454632752, -0.013281974, -0.0024864208, 0.0148490192, -0.0196765307, 0.000577374129, 0.00261121592, 0.00233793072, 0.0319727808, 0.0213320386, -0.00155045872, 0.000345950568, -0.0239479933, -0.000607783, -0.0121951522, 0.0187413581, -0.00803110749, -0.00132614386, -0.00377860153, 0.00380703574, 0.0117275659, 0.0106533812, -0.00542779034, 0.0051560849, -0.00904842373, 0.00107734371, 0.0154303424, 0.0181347597, 0.00422407221, 0.0208770894, -0.00756352162, -0.00917479862, -0.00606282288, 0.00681159273, 0.00832177, -0.00610705419, 0.00235846662, 0.00297612255, -0.00575004565, 0.00293663051, -0.00212467345, 0.0124036698, 0.035359621, 0.00592065137, 0.00913056731, 0.0228611715, 0.000548544864, 0.00824594498, 0.00628081942, 0.0193226822, 0.00727917906, -0.0137242852, -0.0449893698, -0.00839759409, 0.000451789325, 0.013420986, 0.0157462787, -0.00395236677, -0.00095570815, 0.0135094486, -0.00655252486, -0.00191615534, -0.017603986, 0.0099077709, 0.00490017654, 7.7552555e-05, -0.00039590802, -0.00782890804, 0.0035353303, 0.0042841, -0.016213866, 0.00539619662, -0.0196891669, 0.00718439789, -0.000861717039, 0.00301561458, 0.00961079076, -0.00238848059, 0.0128902122, -0.0260837246, -0.000247417833, -0.016630901, -0.0271705464, 0.00575004565, 0.00491281366, -0.00918743573, 0.00422407221, 0.00287976186, -0.0168078262, 0.00726022245, 0.0246683285, -0.00741819106, 0.0272463709, 0.00312935188, -0.00260173786, -0.0214963257, -0.00537092192, 0.0219133608, -0.0139264846, -0.00453369, 0.0086693, 0.00992672704, 0.00980035309, 0.00400923518, -0.0140528595, 0.0179578345, 0.0105206883, -0.0120371841, 0.00413876912, -0.00794896483, 0.0165171642, 0.00234898855, -0.00776572106, 0.0106597, -0.00312145334, -0.00456844317, 0.0200935658, -0.0209023636, 0.01369901, 0.00238374155, 0.000133483205, 0.0205232408, 0.00196038652, 0.0180336609, 0.0326046534, -0.00074916461, -0.0234045815, -0.02516119, -0.0052698222, -0.027954068, -0.0190952066, -0.0156578161, -0.0221408363, -0.0275243949, 0.00261121592, 0.0382409655, -0.00159705942, 0.0155946296, 0.0113484422, -0.0163149647, 0.0142045086, -0.00810693298, 0.0366233699, 0.00164287025, -0.015101769, 0.0251359139, 0.000514186802, 0.00205516745, 0.00857451838, 0.0113926735, 0.0183622334, -0.00696324231, 0.0048622638, 0.00373752974, -0.00447050249, 0.00168394193, -0.000272100384, -0.00610705419, -0.00933908578, -0.012441583, 0.00824594498, -0.0268672463, -0.00181189633, 0.011051462, 0.00806270167, 0.00897259917, -0.0064577437, 0.0118097095, 0.0231391955, 0.000270718156, -0.000202594339, -0.0111146485, 0.00728549762, -0.0343486257, -0.0216985252, -0.006571481, 0.00475800503, 0.00214047031, -0.00489069847, 0.0313914604, 0.004265144, -0.00620183488, 0.0101668388, 0.0148869315, 0.0238468926, 0.0124036698, 0.00519715669, 0.0130797746, -0.0113484422, 0.0269683469, -0.00734868506, 0.00768357748, -0.0074371472, 0.00592065137, -0.00303615048, 0.00402819132, -0.0125237266, 0.00537408143, 0.000513791863, -0.00448314, -0.00859979354, 0.0198155418, 0.0240870044, -0.000701379206, -0.00579111744, -0.0207759887, -0.00448629959, 0.0200051051, 0.00877671782, -0.00293978979, -0.00249273959, -0.00546570309, 0.00545622455, 0.0127259251, -0.0049917982, -0.0119803147, -0.0161885899, -0.0117275659, 0.0148869315, -0.00302509288, 0.00454000849, 0.000767725869, 0.00982562732, -0.0140275843, 0.00577532081, 0.0187792704, -0.00645458419, -0.0166814514, 0.0087198494, 0.00232213386, -0.0159990285, -0.000322650245, -0.00384178874, -0.0121888332, -0.00549097778, 0.000569870637, -0.00811957, 0.000296980375, 0.00513081, -0.0136484606, -0.00756352162, -0.00323361089, -0.0072286292, 0.0054530655, -0.0395047106, 0.0209781881, -0.000884622452, 0.0191836692, -0.00188930077, -0.00340263708, 0.0265386738, 0.00219575921, -0.00804374553, -0.00270915614, -0.00814484525, 0.0307090357, -0.00978139695, -0.0235309564, 0.0113547612, 0.0135726351, 0.00803742651, -0.0171995871, 0.0109440433, -0.0021926, 0.0210413765, -0.00617340067, -0.0183748715, 0.0205864273, 0.00381651381, 0.00240269769, 0.0158852916, -0.00626502233, -0.0101099703, 0.0325035565, 0.034475, -0.00566474302, 0.0301024374, 0.0130671374, 0.00152360415, -0.00521927234, -0.00309301913, 0.00235530711, 0.00621763198, 0.00791737065, 0.00532037206, 0.0161254033, -0.0032162345, -0.000242678783, -0.010065739, -0.012864938, 0.0250474531, 0.00576900179, 0.00708329817, -0.0175534356, 0.00799319521, 0.0026143752, 0.00484014861, -0.00621763198, -0.0139517598, 0.0187919084, 0.00665362459, -0.0140907718, 0.0185138844, 0.00436624372, 0.000960447185, 0.0116517413, 0.0260837246, 0.0084860567, 0.0111399237, 0.0376090892, -0.00228106207, -0.00593644846, -0.00434096856, -0.0339442268, -0.00788577739, 0.0201188419, -0.00707066059, -0.00435360614, -0.00524138799, -0.0203842279, 0.00105127902, 0.00545622455, 0.0182232223, -0.0185012463, -0.00698851701, 0.00393025111, -0.00531721255, 0.00768989651, -0.00281341537, 0.00768989651, 0.0158347413, -0.00131587591, 0.001310347, 0.0172880497, -0.01215724, 0.0197649933, -0.00171237625, 0.00573108951, -0.000966765918, 0.0115443226, 0.00319885788, -0.00134746952, 0.00438835891, -0.0126311444, 0.0172627755, -0.039428886, 0.00633452833, 0.00932644773, -0.002410596, 0.023341395, -0.040540982, 0.00913688634, 0.0116959726, -0.00274548889, 0.019158395, 0.0319222324, 0.000365696586, -0.014672095, 0.00400291663, 0.0141413212, 0.00512449117, 0.0147479195, -0.0147984698, 5.69673139e-05, 0.0236699693, -0.016074853, 0.00514976634, -0.000641351275, -0.0108871749, 0.0213194, -0.0135347228, 0.000289871823, -0.0194616932, 0.0141286841, 0.00294452906, 0.00606598239, 0.0089978734, 0.00241849455, -0.0129344435, 0.0152786933, 0.029773863, 0.0210287385, 0.0151270432, -0.0101542016, 0.00750033464, 0.00211677514, -0.0108555807, 0.0075066532, 0.0189941078, 0.00481487345, 0.000769305567, -0.00209308, -0.011462179, -0.0127259251, -0.00648301886, 0.0221408363, -0.00487806089, -0.0034247525, 0.0236067809, 0.0266650468, 0.00691901101, 0.0108808558, 0.0156325419, -0.0233161189, -0.00557312137, -0.000669390603, -0.0133325234, -0.0108745368, 0.0168204643, 0.0150259435, -0.0376849137, -0.00526034413, -0.00159942894, 0.0145709952, 0.00835336279, 0.0286364909, 0.00669153687, 0.00988249667, 0.00742450962, -0.0190952066, -1.12490698e-05, -0.0147226444, 0.0204474162, -0.018311685, 0.0277013201, 0.00786682125, -0.0031167143, 0.0225705095, 0.00153782126, -0.00231107604, 2.28683784e-05, -0.013420986, 0.00376280467, 0.000232015926, 0.0228358954, 0.00220523728, 0.00779099623, -0.0110956924, 0.0077151712, -0.0106597, -0.0248199776, -0.00520979427, -0.00201567542, -0.00878303684, 0.000278814026, -0.0202325787, -0.0261089988, -0.0152028687, 0.0209276397, -0.00319411885, -0.00430937484, 0.00690005487, -0.00959815364, -0.00113184284, 0.0181094855, 0.0279287938, 0.0365980938, 7.51336702e-05, 0.00544674648, 0.0237205178, 0.00714016659, -0.0121319648, 0.0254518501, -0.00117765355, 0.0292430893, -0.00485278573, 0.0018592868, -0.00217048428, -0.0282068178, 0.00760143436, 8.64506183e-06, -0.0231012832, 0.013559998, 0.00798687711, -0.0260079, 0.0188550949, 0.0188930072, -0.0042841, -0.00629345654, 0.0222292971, 0.0309365094, -0.020687528, -0.0053835595, -0.0186908077, -0.00977507792, 0.0033899995, 0.0107734371, 0.00406294456, -0.0101415645, -0.00439783745, -0.0345761, -0.0123152081, -0.00840391312, 0.000701774145, -0.0127764754, -0.00895364303, 0.00502023241, 0.00965502206, -0.0175155234, 0.0170100257, 0.0243776664, 0.0137116481, -0.00588273909, 0.00544042792, 0.0151396813, -0.0128207067, 0.00331733422, 0.00188614137, -0.016769914, -0.00232845265, -0.0117654782, 0.00629661605, 0.0125553198, 0.00132535398, -0.00719703548, 0.0171995871, -0.00294136954, 0.000971505, 0.00831545051, -0.00251485524, 0.010899812, 0.0328068547, -0.010343764, -0.00236952445, -0.00902946759, -0.00766462134, -0.0182484966, 0.0111715179, 0.00636612205, -0.00235214783, -0.00313409092, 0.00208044238, 0.00933908578, -0.0200303793, 0.00414824719, 0.00815116335, -0.0177429989, 0.0046979771, 0.00252907234, 0.0253381133, 0.00589221716, -0.00865666196, 0.0268925223, 0.0202073045, 0.00887781754, -0.0157336425, 0.00596172316, 0.00800583325, -0.0033899995, 0.00978139695, 0.0187160838, -0.0135094486, -0.0106849754, 0.00190035859, -0.00107655395, 0.012441583, 0.00629977556, -0.0142676961, 0.0109882746, 0.0164539777, -0.0116643785, -0.00236952445, 0.00115474826, 0.0169468392, -0.00780995237, -0.0189688317, -0.00465690531, 0.0260837246, -0.01788201, 0.028383743, -0.00166498579, -0.00643562805, -0.00621447247, 0.00359851774, -0.00240585697, 0.0151649555, 0.0137621975, 0.00248168176, 0.0239606295, -0.0243144799, 0.0108871749, -0.0111209676, -0.0116959726, -0.00514660683, -0.000505893433, 0.00149674958, 0.0125047695, -0.00305984588, -0.00966765918, 0.00705170445, -0.000898839557, -0.0130797746, -0.0166056268, 0.0132566988, -0.0139391217, -0.00987617765, -0.00525718462, 0.00171711529, 0.0269936211, -0.00952864718, 0.00932012871, 0.0100531019, 0.0144698955, 0.00803110749, -0.0154429805, 0.0193100441, 0.0116643785, 0.00469165808, -0.00265860627, -0.012024546, -0.0252496507, 0.0171490368, 0.0103184888, 0.00473273, 0.0200556535, 0.00126611581, -0.00575952372, 0.0105459634, -0.0102932137, 0.00255118799, 0.0168836508, 0.0175787117, -0.00502339145, -0.00672313059, -0.0126816947, 0.00805638265, -0.0074371472, -0.0171743128, 0.000782338, -0.00902314857, 0.0339695029, -0.00756984064, 0.00544990599, 0.0147100072, 0.00659043714, 0.010065739, -0.00387970125, -0.00791737065, -0.000280591164, -0.0164539777, -0.00232371362, 0.000670180481, -0.0319727808, -0.00283711054, -0.00577532081, 0.0201946665, -0.00704538589, -0.00758247776, 0.0252749268, -0.00111683586, 0.00887781754, 0.0151775936, 0.0131555991, -0.00204410963, -0.012574276, 0.000799319532, -0.0288386904, 0.0351321474, 0.0207001641, -0.0086250687, -0.00259383931, 0.00698851701, 0.00426830305, 0.0166561771, 0.000865666254, -0.0140654966, 0.0121130086, -0.00614180695, 0.00938331615, -0.00712121045, 0.00075785286, -0.0197397172, 0.000146910505, 0.0259068, 0.0231518336, -0.0106533812, 0.0155314421, 0.00751297176, 0.00321307499, 0.000999939279, 0.00904842373, 0.00772780878, 0.014255059, -0.0100404648, -0.00800583325, -0.0176545363, -0.0156325419, -0.0265892223, 0.00546570309, -0.0105080511, -0.0258815251, 0.022646334, 0.0119739966, -0.00639455626, -0.00387970125, -0.0181853101, 0.0129407626, 0.00362063316, 0.000666626205, -0.00631241268, 0.0127638383, 0.00228896062, 0.00491913268, -0.0112094302, -0.00159232039, 0.0102173891, -0.00403766939, 0.00199671928, 0.0237331558, -0.00989513379, 0.0127006508, -5.1290328e-05, -0.00786050223, 0.00338052143, 0.0052003162, 0.00906738, 0.00211677514, 0.0143814329, -0.0296980385, 0.0142803332, -0.00338052143, 0.000944650383, 0.00491281366, -0.0200430173, 0.00697588, 0.00891573075, -0.00845446251, -0.016769914, -0.00420827512, -0.00332997157, 0.000556443294, -0.0252243765, -0.0135979103, -0.0020330518, 0.00376280467, -0.00224472932, 0.0369772166, 8.20447822e-05, 0.00760143436, -0.0139517598, 0.00540251564, -0.00924430415, -0.0014817426, -0.0037533266, -0.00963606592, -0.00648933742, 0.00138143275, 0.0237710681, 0.000714806491, -0.00341527443, -0.0276507698, 0.0301782619, -0.0118665779, 0.00309143937, 0.0170353, 0.0116454223, 0.0210792888, -0.00451789331, -0.00220365776, -0.00707066059, 0.00765198423, -0.0191836692, -0.0135979103, -0.00751297176, -0.0100910142, -0.00788577739, 0.00799319521, -0.00560155557, 0.00180873694, 0.0130165871, -5.61281086e-05, -0.0140528595, 0.00432201242, 0.0131555991, 0.00549413729, 0.00259857834, -0.0165803526, 0.00233003218, -0.0263617486, 0.0283584669, 0.00399975711, -0.00485910475, 0.0137621975, -0.0169847514, -0.0124984514, -0.0267914217, -0.0213320386, -0.0136484606, -0.0139391217, -0.0132946111, 0.00788577739, 0.0171743128, -0.000207925768, 0.00106707576, 0.00672313059, 0.0243018419, 0.0220018234, -0.0244282167, -0.00162707339, -0.0248578899, 0.00843550637, 0.0049064951, 0.0201820284, -0.0036838206, 0.0271705464, 0.0163149647, -0.000297967694, 0.0148490192, -0.00245008827, 0.0158221032, -0.0086250687, 0.00715280417, 0.0162517782, 0.0346772, -0.00569633674, 0.00156941498, 0.00686214259, -0.0157083664, -0.00741819106, -0.0182484966, 0.0147731947, 0.00340263708, 0.00908633601, 0.0296727642, 0.00772780878, 0.0126880128, 0.00399975711, 0.00512449117, -0.0146973701, -0.00559839606, -0.00999623351, -0.00923166703, 0.00608177902, 0.00213889056, -0.000732183049, -0.00396816339, 0.0156704541, 0.00074916461, 0.00130007905, -0.0161001291, 0.00560155557, 0.000755483343, 0.00780995237, 0.0368761197, 0.00591433281, -0.0165045261, -0.00434096856, -0.0139896721, 0.00412613153, -0.0087704, -0.0188550949, -0.00304562855, 0.00154098065, -0.00416088477, 0.0124163078, 0.00526350364, 0.00450841524, -0.00839759409, -0.0282068178, 0.0118728969, 0.0129344435, 0.00313883, 0.0286870413, 0.00585114537, 0.0287123173, 0.00248010224, 0.0113989916, -0.00347214309, 0.0144572584, 0.0177177228, -0.0126753757, -0.0134968106, -0.0132314237, 0.0233161189, 0.0122267455, -0.0197776295, 0.0153924301, -0.00492545124, 0.0157462787, 0.0061797197, -0.00821435079, 0.0210413765, -0.0189309195, 0.0251991022, -0.0140781337, 0.00378492032, 0.0116959726, 0.00816380139, 0.00104654, -0.0189814698, -0.0103500821, -0.0170732122, 0.0168962888, -0.0315431096, -0.0213446748, -0.00104496023, -0.00731709134, 0.0254139379, -0.00258594099, 0.00838495698, -0.00103311264, -0.0126311444, -0.0165803526, -0.00100783771, 0.00774044637, 0.00289713847, -0.0086756181, -0.0114748171, 0.000648064888, -0.032705754, -0.0192974061, -0.0209908262, 0.00542463129, 0.00779099623, 0.0056773806, -0.0126816947, 0.0217364375, 0.0142929712, 0.00335840578, 0.0182358604, 0.00304404902, 0.0189814698, -0.0311134346, -0.011316848, -0.0343486257, -0.00375964539, 0.0148237441, 0.0103311259, -0.0173006877, -0.00990145281, -0.00610705419, 0.00213889056, -0.00179767911, 0.00322887185, 0.0087640807, -0.00532669062, -0.0340453275, 0.00896628, 0.00390497618, -0.0221534725, 0.0411475822, -0.00723494776, 0.0112662986, -0.0180589352, -0.00485594524, -0.0191710312, 0.00325414678, 0.00786050223, -0.0109187681, -0.0210666507, -0.00733604748, -0.00733604748, -0.0387211889, 0.0278782435, -0.020965552, -0.00484014861, -0.00421775319, -0.00916848, -0.0100720581, -0.0199671928, 0.00419879705, -0.0152534181, -0.00644510612, -0.00702011073, 0.0103627201, -0.00453684945, -0.00245008827, -0.0101415645, 0.00542147178, -0.0046284711, -0.00395552581, -0.0159737542, 0.00517820055, -0.0218375362, -0.00974980276, 0.00467270194, -0.0168583766, -0.00748769706, -0.0037185736, 0.000650039525, -0.00755720306, 1.47231385e-05, -0.0124668572, -0.00913056731, -0.0102805765, -0.0103627201, 0.00882094912, -0.00935804192, -0.00510237599, 0.0172880497, 0.0215468742, 0.0123594394, -0.00694428617, -0.0261848234, 0.00080879766, 0.0182105843, -0.0191836692, -0.00988249667, 0.0212688502, 0.00186876487, 0.0248199776, 0.0104322257, -0.0201820284, -0.00178504165, -0.0200682916, 0.00462215208, -0.0371035933, -0.0142929712, -0.0263111982, 0.00733604748, -0.0354354456, -0.0085808374, -0.0167572759, -0.00070572336, -0.000834862411, 0.0115948729, 0.0254771262, -0.0171995871, -0.000728628715, 0.00386074511, 0.00549097778, -0.0157083664, 0.0338431261, -0.00669785542, 0.0151902307, -0.0130292242, 0.00875776168, -0.0165677145, -0.0146215446, -0.0117338849, -0.00248010224, 0.00699483603, -0.00937699806, -0.00690637389, -0.0264122989, -0.0030819613, -0.0365728177, 0.0111525618, -0.0103753572, -0.00611969177, 0.0138759343, -0.00480855489, -0.0103943134, -0.00371225481, 0.0135220857, -0.00110261864, -0.00499495724, -0.00391445402, -0.00699483603, -0.0249969028, 0.00507710082, -0.0149880312, -0.00534880627, -0.00283079175, -0.0418552794, 0.0148237441, 0.0267661475, -0.0168331, 0.0166561771, 0.00671681156, -0.0191331189, 0.0129660377, -0.00328258099, -0.0115000913, -0.0107165687, -0.0163023267, 0.00578479888, -0.0239227172, -0.0147226444, 0.0308606848, 0.00946546, -0.00610389467, -0.0236573312, 0.00916216057, 0.00575004565, -0.0230001826, 0.0177809112, 0.0107102497, 0.00819539465, -0.0032857405, -0.0262353737, 0.0173006877, -0.0195880681, -0.0112726176, 0.000130323839, -0.0157210045, -0.0126627386, 0.00569317723, 0.0128333438, 0.011323167, 0.000758642738, -0.0149880312, 0.000701379206, 0.015518805, 0.00552573102, -0.0141539592, 0.002167325, -0.00775940251, 0.00766462134, -0.0186149832, -0.000439941679, -0.00542463129, -0.00338684022, -0.00677368045, -0.00997095834, -0.0258436128, 0.0348793976, 0.00619867584, 0.000347135327, -0.0100404648, 0.0159737542, -0.00913056731, 0.0218375362, 0.00912424829, -0.00736132218, 0.032149706, 0.00316884392, 0.00373437046, 0.0140781337, -0.0121193277, -0.000894100522, 0.0065967557, 0.0233034827, 0.00323361089, -0.000373200077, 0.0024311319, 0.00803110749, 0.0034595055, -0.00339315878, 0.00947809778, 0.0140275843, 0.00478643924, -0.00826490112, 0.00796160195, 0.00121003715, 0.00102126505, 0.011323167, 0.00921271089, -0.0196765307, -0.00663466845, 0.0157210045, 0.00619551633, -0.0028939792, 0.0030124553, -0.0165424403, -0.00738659734, 0.00496652303, -0.00218470138, -0.0155567173, 0.0250474531, 0.0308101363, -0.00472957082, 0.00439783745, 0.0174649749, 0.00450209621, 0.000186797508, 0.0100088706, -0.012296252, 0.00509921648, 0.0285353921, -0.00864402484, -0.000128151776, 0.00144462, 0.0354101732, 0.00614496646, -0.00544358743, 0.00122188474, -0.00260489713, -0.0203210413, 0.0280298926, -0.00344054936, -0.0117275659, -0.00945282262, -0.0142424209, -0.00606914191, 0.00537092192, -0.00748769706, -0.00829649437, -0.0318716839, -0.00730445376, 0.00657779956, 0.0145583581, -0.01160751, -0.0157210045, 0.00117607391, 0.0203589536, 0.000553283957, 0.0115569597, -0.0177682731, 0.0260584485, -0.0130165871, 0.00600911397, -0.00264280941, 0.0133325234, -0.0190572944, -0.00165392796, -0.0155314421, 0.0155819925, 0.00165708736, -0.013281974, 0.0199166425, -0.00326362485, -0.0213573128, 0.0163655151, -0.00823330693, 0.000689926499, -0.00790473353, -0.000631873147, -0.0168204643, 0.00883358717, -0.0114748171, 0.00714648562, -0.01872872, -0.00464110821, 0.00915584248, 0.00605334481, -0.0243776664, 0.0241375547, -0.0239859056, -0.018589709, 0.0117528411, 0.0113358041, -0.000813536695, -0.0188171826, -0.00181189633, -0.00994568318]
|
20 May, 2020
|
Fabric.js | Rect borderColor Property
20 May, 2020
In this article, we are going to see how to change the border color of the canvas rectangle using FabricJS. The canvas rectangle means rectangle is movable and can be stretched according to requirement. Further, the rectangle can be customized when it comes to initial stroke color, height, width, fill color, or stroke width.
Approach: To make it possible, we are going to use a JavaScript library called FabricJS. After importing the library, we will create a canvas block in the body tag which will contain the rectangle. After this, we will initialize instances of Canvas and Rect provided by FabricJS and change the border color of the canvas rectangle using borderColor property and render the Rect on the Canvas as given in the example below.
Syntax:
fabric.Rect({
width: number,
height: number,
borderColor: string
});
Parameters: This function accepts three parameters as mentioned above and described below:
width: It specifies the width of rectangle.
height: It specifies the height of rectangle.
borderColor: It specifies the border color.
Example: This example uses FabricJS to change the border color of the canvas rectangle as given below. Note that you have to click on the rectangle to see the border.
<!DOCTYPE html>
<html>
<head>
<title>
Fabric.js | Rect borderColor Property
</title>
<!-- Adding the FabricJS library -->
<script src=
"https://cdnjs.cloudflare.com/ajax/libs/fabric.js/3.6.2/fabric.min.js">
</script>
</head>
<body>
<canvas id="canvas" width="600" height="200"
style="border:1px solid #000000">
</canvas>
<script>
// Initiate a Canvas instance
var canvas = new fabric.Canvas("canvas");
// Initiate a Rect instance
var rectangle = new fabric.Rect({
width: 200,
height: 100,
fill: '',
stroke: 'green',
strokeWidth: 3,
borderColor: 'red'
});
// Render the Rect in canvas
canvas.add(rectangle);
canvas.centerObject(rectangle);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Fabric.js | Rect borderColor Property
|
https://www.geeksforgeeks.org/fabric-js-rect-bordercolor-property?ref=asr1
|
CSS
|
Fabric.js | Rect borderColor Property
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, Fabric.js | Rect borderColor Property, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.0164525844, -0.015957864, -0.00953920092, 0.0395775326, 0.0511209816, 0.00923475809, 0.0040909471, 0.021323666, -0.0229727291, -0.0339453481, -0.00153172668, -0.0102749364, 0.0187105332, -0.0654551536, -0.00248786667, 0.00527066225, -0.0314844362, -0.0183172952, -0.00613642065, 0.00802967325, 0.00787745137, -0.0354168192, -0.0160847157, 0.0159324948, -0.0318142474, 0.023365967, 0.0159832351, 0.0131925112, -0.00591126, 0.0157929584, 0.00888591725, 0.0123108961, -0.0178606305, -0.0330827609, -0.0171629507, -0.0170487836, -0.00408460433, 0.0620048046, -0.0249769762, 0.000754763896, -0.00825166237, 0.0118605755, -0.00304918271, 0.00622204505, -0.0033964375, 0.014575188, -0.0170614701, -0.0190022904, -0.0142834308, -0.0585037135, -0.0307487, -0.0204737633, 0.0169092473, -0.00969142187, 0.0335140526, 0.0284907501, -0.0027653533, 0.0296577811, -0.042621959, 0.00983095821, 0.0146639841, -0.0387403183, -0.0107442858, -0.00771888765, -0.0178606305, 0.0193194188, -0.0253955852, -0.00700217905, -0.0282877889, 0.0203976519, -0.040490862, 0.00483302586, 0.00559096085, 0.0147147244, 0.00744615775, 0.0341990478, 0.0263596531, -0.0127421906, -0.032118693, 0.0629688725, 0.0105096111, -0.00251006568, -0.0463260114, 0.0229854137, -0.0407445654, -0.0382582843, 0.0389179103, -0.0454634242, 0.0271461289, -0.0221355129, -0.00522626424, 0.0209177416, 0.0348333046, -0.0318396203, -0.00897471327, 0.00566707179, 0.0225287508, -0.0219579209, -0.0364316292, 0.0124060344, 0.0232518017, 0.0405162312, 0.013915563, 0.0243427213, 0.0387910567, -0.0525670834, 0.0268670563, -0.00660259835, -0.0120825646, -0.000799161731, 0.000627912814, 0.00593028776, -0.0287444536, 0.0359242223, -0.0303427763, 0.0191671979, 0.0172010045, -0.0133954734, 0.0326007269, 0.00161338702, 0.0132305669, -0.022465324, 0.0223892145, 0.0345796, -0.0464021228, 0.00782036874, 0.000694509596, -0.000772998726, 0.00837217085, 0.0174039677, -0.0171756353, -0.0177464653, -0.00355183, -0.00528651848, 0.036862921, 0.0343766399, -0.0255224351, 0.00182824105, 0.000215448614, 0.00742078759, -0.0351631157, -0.0515015349, 0.00413534511, 0.0310531426, -0.0115688173, 0.0115815029, 0.0181016475, -0.00559096085, -0.00169821875, 0.0326260962, -0.0647955239, -0.0183046088, 0.0458693467, 0.00808675587, 0.0514254235, -0.0128246434, -0.0261313207, 0.0150445374, 0.0589603782, -0.034909416, 0.0422667786, -0.0105222967, 0.00407509087, 0.026511874, -0.0176703539, 0.000968032226, 0.00545459613, -0.00113531714, -0.0489898846, 0.0314844362, -0.00274156872, 0.0115371048, 0.0162369367, 0.01604666, -0.0418862253, -0.024532998, 0.0256239157, -0.0268924274, 0.026664095, -0.0311292522, -0.036203295, 0.0113024302, 0.0393238328, 0.0572859459, -0.0170107279, 0.0221735667, 0.0141819501, 0.0123299239, -0.0243680906, -0.0349601544, -0.0144610219, 0.0359495953, 0.0531252287, 0.00205181609, 0.0214758869, 0.0144229671, 0.00150556362, 0.00131607987, -0.00510575576, 0.0121586751, 0.0458186083, -0.01033202, -0.0300129633, -0.0179747976, 0.0187105332, -0.0182919241, -0.00187422463, -0.0611929558, 0.0414295606, -0.0134462137, 0.00646623317, 0.0319664702, 0.0141946347, 0.00587637583, -0.0128500136, 0.0022563634, -0.00384993013, -0.00124234764, -0.0293533374, -0.0192052517, 0.000310586911, 0.0291250069, -0.0380553231, -0.0130656604, -0.0491167344, -0.0158817545, 0.0235689282, 0.0136618605, -0.00623473, -0.0297085214, 0.0152728688, -0.0336155333, -0.00127168198, -0.0094123492, 0.026486503, -0.00941869244, -0.00914596207, 0.00635206746, -0.0123045538, -0.0207274649, 0.00486156717, 0.0100148926, -0.0350362659, -0.0353407077, 0.0540385582, 0.00565438671, -0.0293533374, 0.00567975687, 0.0181904435, -0.00470934622, -0.0212602392, -0.00173468841, -0.00478228554, 0.0129007539, -0.0124821458, 0.00582246436, -0.0208543167, -0.0355944112, 0.0390193909, 0.0240890179, 0.0295563, 0.0208543167, -0.00347889075, -0.0131290862, -0.00714805769, -0.0292518567, 0.00978656, -0.0221355129, -0.0167570263, -0.00394823961, 0.00185678259, -0.0472647101, 0.01415658, -0.0193067323, -0.0358227417, 0.0584022328, -0.00780768367, -0.0201312657, 0.0375732891, -0.0121650174, -0.000620777428, 0.00396409584, -0.00307613844, 0.0414041914, 0.0132939927, -0.0136999162, -0.0156026818, 0.0315605476, 0.00149525702, -0.0232010614, -0.0249769762, -0.0178225748, 0.00697046658, -0.0428502932, 0.0499285832, -0.0134335281, -0.0070212069, -0.0287951939, -0.0176703539, 0.00238955696, -0.0289474148, -0.0565248393, -0.026511874, -0.0321694314, 0.0235689282, -0.00430025114, 0.0302666649, -0.00239589973, 0.0209304262, 0.0115878452, 0.0213617198, -0.0103827603, -0.0148542607, -0.0313322134, -0.00339326612, -0.0240382776, 0.0517552383, -0.00265753, -0.00655185804, -0.000811846869, -0.027653534, -0.00936795119, 0.00409728941, 0.0445500948, 0.0286176018, -0.0517044961, -0.00627912814, -0.0081818942, -0.0189008098, 0.0207147803, -0.0368882902, -0.000291559263, 0.0140550984, 0.017036099, 0.00509624183, 0.00828337483, 0.00956457108, -0.0149557414, -0.0200170986, 0.0450067595, 0.00317920488, 0.0120762223, -0.00365965348, -0.0238353163, 0.0220847707, -0.0310024023, 0.030951662, 0.0094060069, 0.0395521633, 0.0432562158, 0.000827703218, 0.0267148353, -0.00128357427, 0.011562475, 0.0419115946, -0.000739700336, 0.00601591216, -0.0345034897, -0.0285161212, 0.00791550707, 0.0196111761, 0.00597468531, 0.0257761385, -0.00912059192, 0.0529730059, -0.0178860016, -0.0218310691, 0.0235181879, 0.00676116208, 0.0116829835, -0.0165160093, -0.0083150873, -0.0373703241, -0.00820726436, -0.0219071805, -0.0252941046, -0.00833411515, -0.0133954734, -0.055662252, 0.0148923155, -0.0316366591, 0.0416832604, -0.011759094, -0.0331081301, 0.0389432795, 0.0501569137, -0.0122474711, 0.00211524172, 0.00373893534, -0.0118986303, -0.0146132438, 0.0161227714, 0.0336916447, -0.0184822, 0.026004469, -0.00108616229, -0.00100529473, -0.0210319068, 0.0275266822, -0.0557637326, -0.00115513755, -0.0269685388, 0.0115371048, -0.00797259, 0.0145498179, 0.00304284017, 0.00373893534, -0.0154504608, 0.000268963922, -0.038994018, -0.0118098352, 0.000301469496, 0.0450321287, -0.00552753545, 0.0270953886, 0.0352899693, 0.0397043861, 0.0302159246, -0.0151967583, 0.0110804411, 0.0410743766, -0.0176322982, -0.0215139426, -0.00642500678, 0.00370405125, -0.0124060344, -0.0103510479, -0.000449924904, -0.023277171, 0.00342497905, -0.144610226, 0.00122173433, -0.0196238607, 0.000461817195, 0.0127104772, 0.017124895, 0.0360510759, 0.00345669175, 0.020486448, 0.0193321034, 0.0289220437, -0.0111121535, 0.0311799943, -0.0501315445, 0.0088605471, 0.0147400945, -0.0333364606, -0.0215646829, 0.0116385855, -0.00429390883, -0.0088605471, -0.012266499, -0.0480511859, 0.00323153101, -0.0146132438, -0.0432562158, 0.0101227155, 0.0117210392, 0.00558461854, 0.00192813633, -0.0300383344, -0.0167823974, -0.0343766399, 0.0201312657, 0.015298239, 0.0272983499, -0.000274513644, -0.0245456826, -0.00740810251, -0.0211460739, 0.0102685941, 0.034884043, 0.00690069841, 0.0208416302, 0.00888591725, 0.0250784568, -0.0192179382, -0.0177337807, 0.0259029884, -0.0278818663, 0.0351123773, -0.00393238338, -0.00678653223, 0.00392921176, 0.0133320475, 0.00467763329, 0.0262328014, -0.0263850223, -0.00612056442, -0.0120127965, 0.0483048894, 0.00756666623, -0.0197126567, -0.00173785968, 0.00526431948, 0.0120381666, 0.0119113158, -0.0128309857, 0.0260805804, 0.00253385026, 0.0190910865, 0.0386642069, 0.0166428611, -0.00594297284, 0.0250911415, 0.0311546233, -0.0056956131, 0.0256239157, -0.0486854427, -0.0179621112, -0.0188120138, 0.0454887934, 0.00085703755, 0.0165033247, -0.00833411515, -0.0308501814, 0.00981827267, 0.0148035204, -0.00519772246, -0.00779499859, 0.0114990501, -0.0248754956, -0.00178225758, -0.0203849673, 0.0167570263, 0.0284400098, 0.00606982363, -0.0169726741, 0.0185963679, 0.0137506565, 0.00129070971, 0.0070275492, 0.0277550146, 0.00672944915, 0.00893665757, -0.0186217371, 0.0207020957, -0.0204483923, 0.0183046088, -0.00990072638, -0.0441695414, -0.0176196136, 0.002995271, 0.0112199774, -0.0310024023, 0.020486448, 0.00757935131, 0.0263596531, -0.0171629507, 0.000593821576, -0.0260552093, 0.0315098055, 0.00863855798, 0.0106554898, 0.041962333, 0.0103193345, 0.0270700194, -0.0521104187, -0.0175942443, -0.00573366834, 0.017302487, -0.00880346447, 0.018025538, 0.0169346184, -0.0304696281, -0.0314844362, -0.000232890641, -0.00947577506, -0.0372942165, -0.0362286679, 0.0169219337, -0.0283385292, 0.0168965627, 0.0111248391, 0.00780134089, -0.0305457376, 0.0102559095, -0.0132813072, 0.0327275768, 0.0207401495, -0.0166682303, -0.0420384444, 0.00179811392, 0.0191545114, -0.0155899972, -0.0041765715, -0.0181397032, -0.00338692358, -0.0410236381, -0.0249516051, 0.00317127677, 0.0169219337, -0.0236450396, 0.0130149201, -0.0391208716, 0.0265626144, 0.0255478062, -0.0236577243, 0.00996415131, -0.00924744271, 0.0160086062, 0.0250657722, 0.00754763884, -0.010154428, 0.00703389198, -0.0218691248, 0.0187993292, 0.00899374112, 0.0110931266, -0.00920938794, -0.0132813072, 0.0080487, -0.00368502364, -0.00077537715, -0.00832777284, -0.0215646829, 0.0281863082, 0.0320679508, 0.000955347146, -0.0414803, 0.00676750485, -0.0254590102, 0.0527700447, -0.00790916476, 0.0312561058, 0.00628229929, -0.0236069839, -0.0367614403, 0.00427488098, -0.0165921208, -0.0508672781, -0.00312846457, -0.0122474711, 0.0146132438, 0.0113721984, 0.00255922042, -0.00201851758, 0.00750958361, -0.00115830882, -0.0159832351, 0.000501458126, 0.0138901919, 0.00965970941, 0.0379031, 0.0026686294, 0.00796624739, -0.0304696281, 0.012266499, -0.0035676863, 0.00402117893, -0.0226175468, 0.0218057, -0.0380553231, 0.0131925112, -0.000104156621, 0.00430976506, -0.0232518017, 0.0194462687, -0.0227190275, -0.0136238048, -0.008727354, -0.0215900522, -0.00971045, -0.0221608821, -0.0146005582, -0.00817555189, 0.0385627262, 0.0127485329, 0.0145371333, 0.00563218771, -0.0127675608, 0.00669139391, -0.0279072355, 0.00933623873, 0.0184060913, 0.000442393124, -0.00653283, 0.0525670834, 0.0331842415, 0.00443978747, 0.018025538, -0.035543669, -0.0030047847, 0.012266499, -0.0272222403, -0.00499476073, -0.0331081301, -0.00233881664, 0.0135350097, -0.00978021789, 0.0302159246, -0.00210731337, 0.0222369935, 0.00626010029, -0.012551914, 0.0351631157, 0.00412900234, -0.0280848276, -0.00333301187, 0.00754763884, -0.0116449287, -0.00783305336, -0.0108394241, -0.0132178813, -0.02009321, 0.0547996648, -0.00958994124, 0.0128690414, -0.0222623628, -0.019738026, 0.00246883905, 0.0226175468, -0.00512795476, -0.00035716506, 0.000926012814, -0.0198521931, 0.00548313744, -0.0278564952, 0.00641549286, 0.0128119579, 0.00330447033, -0.0018123847, 0.00188690971, -0.0233152267, 0.0114546521, 0.00861318782, 0.00993243884, -0.0130022345, 0.00721148355, -0.0071290303, 0.00985632837, 0.0167189706, -0.0141946347, -0.010661833, -0.0116449287, 0.0252560489, -0.00230393256, 0.00623155897, -0.0142453751, -0.0163511038, -0.0301905554, -0.0118415477, -0.0425965898, -0.0145625034, -0.0234420784, 0.0145117622, -0.00704023428, 0.00471568853, 0.0176576693, 0.0256239157, -0.00799161755, -0.00479179947, 0.0318649895, -0.0095772557, 0.0119303437, 0.00305711082, -0.00302064116, 0.0110233584, -0.0141946347, 0.0339707173, -0.00798527524, -0.00279072369, -0.0332857221, 0.0366092175, 0.0110297007, 0.0162749924, -0.0200170986, -0.0133193629, 0.0246091075, 0.00785842352, -0.00350743206, 0.0186851621, 0.00155392569, 0.00251640822, -0.00029116284, -0.001280403, 0.0127041349, -0.0460976809, 0.00908887945, 0.0139663033, -0.0121015925, 0.0210319068, 0.049218215, -0.00359622785, -3.91454487e-05, 0.0368121825, -0.00585734844, -0.0109599326, 0.00542605482, 0.0283892695, 0.00728759402, 0.0010639634, 0.0166682303, -0.0184822, 0.00759203685, -0.0118669178, -0.0198141374, -0.00528017571, 0.00371673633, -0.0482541472, -0.0230995808, -0.0294040777, -2.39827805e-05, 0.0226302315, 0.034731824, -0.0272983499, -0.00985632837, 0.0111311814, -0.0287444536, 0.010154428, -0.00278279535, -0.0162369367, -0.0324485041, 0.00180604216, 0.00648209, -0.0298607424, 0.024050964, -0.00766814733, -0.00242602685, 0.0445754677, -0.0028763481, -0.00242285547, 0.0132051967, -0.0314336941, -0.0600259267, 0.0239748526, 0.0204483923, 0.00329178525, -0.00395775354, 0.0262328014, -0.0282116774, -0.0123426095, -0.0295309294, 0.0296831504, 0.0191164557, -0.00276218215, 0.0304188877, 0.009957809, 0.037700139, 0.0184060913, -0.023365967, 0.00863855798, -0.0261313207, -0.0217676442, -0.00580977928, 0.0289220437, -0.00339326612, 0.0484571084, 0.0218564402, -0.00485205371, 0.00745250052, 0.0249642916, -0.0164779536, 0.017695725, 0.0129768644, -0.0126216812, 0.0155899972, -0.00860050227, -0.0229219887, -0.00483302586, -0.0221101418, -0.000332389463, -0.00515332492, 0.0177591499, 0.0213490352, -0.0365331098, -0.000952175877, 0.0185836814, -0.0223765299, 0.037040513, -0.0214885715, -0.00398312369, 0.0114165964, -0.012177703, -0.00198997627, 0.00191386556, -0.00742078759, 0.0216788482, 0.00743347267, 0.016795082, 0.0220720861, -0.0357466303, -0.0141692646, -0.00233881664, 0.0069197258, 0.00817555189, -0.0227443967, 0.00698315166, -0.0101480857, -0.0352899693, -0.0194716398, 0.0206259843, 0.00704657706, -0.0390447602, 0.0144356517, 0.0288966745, 0.00637426646, 0.0124187199, -0.0108267386, -0.000193745189, 0.0187105332, -0.00247201021, 0.00352011714, -0.00335521088, 0.0449306481, -0.0208416302, 0.0166936014, 0.0293787085, 0.000580740045, 0.027323721, 0.0256492868, -0.0240382776, 0.00198363373, -0.00346303429, 0.0236704107, 0.0233279113, -0.00868295599, 0.0288205631, 0.013344733, 0.023454763, 0.00619033212, 0.00893665757, -0.0154124051, 0.0189515501, -0.0240002219, -0.0136618605, -0.0245583672, 0.00687532825, -0.00290488964, 0.0120318243, 0.0291250069, 0.0435606577, 0.0406177118, -0.00296038692, -0.0387403183, 0.0080487, -0.00590491761, 0.00638060877, -0.0232264306, -0.00407191925, 0.019826822, 0.0275266822, -0.00634255353, -0.0238226317, -0.000909363618, -0.0262835417, -0.0137887113, 0.0146132438, -0.000854659069, 0.00167443417, -0.0124187199, 0.0450321287, 0.0110233584, 0.0137506565, 0.00316176307, 0.0035930567, -0.00544825336, 0.00537531404, -0.00449687056, 0.00284622097, 0.0443217643, -0.0151079623, -0.00782671105, -0.00216281088, 0.0157295335, 0.00504233, -0.000985474209, -0.0126977926, -0.00259886123, 0.00402117893, 0.0042843949, 0.0164145287, -0.00585417682, 0.041987706, -0.0088605471, 0.0187993292, 0.00350108952, -0.00650746, 0.000353795564, -0.000401761121, 0.0179747976, -0.00529920356, -0.0176703539, 0.0235055033, 0.0257380828, 0.0284146406, 0.0309009217, 0.0103954449, -0.0188500695, 0.012926124, 0.00258617615, -0.010573037, -0.0125709409, -0.0137760267, -0.00895568542, 0.0155773116, 0.00650111726, 0.00493450649, -0.0274505727, -0.0188373849, -0.00684361532, 0.0254590102, 0.00341546512, -0.00202644593, 0.0253067892, 0.0404654928, -0.00319347577, 0.0248374399, 0.00286683417, 0.0177084096, -0.0568292812, 0.0199283026, 0.034731824, 0.00541971205, 0.00767448964, 0.0143088009, 0.0336916447, 0.0190657154, 0.00590491761, 0.0338946059, 0.0200805254, -0.00981827267, 0.0395775326, -0.000949797395, -0.00624741521, -0.00219610916, -0.0203215424, 0.00915864762, 0.0234167073, -0.0280594565, 0.00849267934, -0.0124631179, 0.000165005491, -0.00107109873, 0.0124884881, 0.00534677273, -0.00908253714, -0.0369390324, -0.0215773676, -0.0152601842, -0.0218564402, 0.00436050538, -0.00391335553, -0.00185836817, -0.0286937132, -0.00555607677, 0.00799796, -0.011518077, -0.0113468282, -0.00882883463, 0.00130101631, 0.00252592191, 0.00173310272, -0.0171122104, 0.0151967583, -0.00581295043, -0.0257127117, -0.0144483373, 0.0255985465, 0.000714330119, -0.00627912814, -0.00553704938, -0.000984681421, -0.0266387258, -0.0267148353, 0.0209684819, -0.00391652668, -0.00300637051, -0.00921573, -0.00110281154, -0.000811846869, 0.0265626144, -0.0190022904, -0.0225287508, 0.0017695725, -0.00955188554, -0.00211207033, 0.0196111761, -0.0144610219, -0.000157077302, 0.0317381397, 0.0176196136, 0.0223765299, 0.00457298104, -0.0182919241, -0.00813115388, 0.00448735664, -0.00732564926, 0.00283512147, -0.0284907501, -0.0216027368, 0.0128753837, 0.00294770184, 0.00217232457, 0.00272412668, -0.0328036882, -0.0197887663, 0.0527700447, -0.0100275772, -0.0142961154, -0.0153616648, 0.00644403463, -0.0492943265, -0.0135730645, 0.0149684269, 0.0166682303, -0.0143722268, 0.00660894066, 0.0146639841, 0.00280658, 0.0327022076, -0.00671042176, 0.0158944391, 0.0171756353, -0.00651380233, 0.0115117347, -0.0326007269, -0.00850536395, 0.00917133223, -0.0146512985, -0.016465269, 0.02312495, -0.0227824524, -0.0299875941, -0.0168711934, 0.00508989906, 0.0218437538, 0.0224019, 0.0114673367, 0.0162242521, 0.00584783452, 0.00135096395, 0.00992609654, 0.0481019281, -0.0273998324, 0.00662796851, 0.00528968964, 0.00460152281, 0.00565121509, -0.000105940468, -0.013344733, -0.00276852469, -0.00206925813, 0.00213744049, 0.0033203268, -0.022706341, 0.0014540304, -0.0201312657, 0.00763009209, -0.0247105882, 0.011651271, 0.0297085214, 0.023454763, -0.0160086062, -0.0236450396, 0.00978656, -0.0598229654, -0.0121459905, -0.007978932, -0.00559413247, 0.016287677, 0.0282370485, -0.0088605471, -0.00635206746, 0.0190784018, 0.00281450804, 0.0356197804, 0.0013668203, 0.0277042743, 0.00483936816, -0.00708463229, -0.0285161212, -0.00602542609, 0.00014587873, 0.0130276047, 0.0153489793, -0.00712268753, 0.0159705505, 0.0104017882, -0.0285414904, 0.00887957495, -0.0117210392, 0.00957091339, -0.0159705505, 0.000315145619, -0.0208670013, 0.0185202565, -0.0254209545, 0.0107189156, -0.0343005285, 0.0452097207, 0.00187898148, -0.0282370485, 0.001214599, 0.00240224227, 0.00770620257, -0.00990072638, -0.0355944112, 0.0169092473, 0.0191418268, 0.0181523878, 0.00231978903, -0.0291250069, 0.0100719752, 0.0149811115, 0.0248247553, 0.013167141, -0.0056956131, 0.0241524447, -0.0241778139, -0.000953761511, -0.00209938525, 0.00723051094, 0.0160339754, -0.00326641509, -0.00196619169, -0.0198775623, 0.0149557414, -0.0112580322, 0.0312053636, 0.0335394219, -0.00208828575, -0.0125772841, -0.00424316851, -0.00131607987, 0.0251038279, 0.00526749063, -0.00916499, 0.0148288906, 0.0120127965, 0.0069197258, -0.0217803288, 0.00686264317, -0.00486156717, -0.00330129918, -0.0073002791, -0.00844193902, 0.0125328861, -0.00908253714, -0.00404020678, -0.000377580145, 0.0246598478, -0.00899374112, -0.0172898, -0.0181270186, 0.00905716699, 0.0183553509, -0.0102812797, -0.0133701032, 0.00382773113, 0.00480131293, 0.000727411592, 0.0127929309, 0.0208416302, -0.0104398429, 0.011651271, -0.00836582854, 0.0229600444, 0.00486473879, 0.0150952777, -0.02066404, -0.00383090228, 0.0248501245, -0.00395458238, 0.0166301746, 0.017695725, 0.0119620562, 0.00905716699, -0.0193194188, -0.00375796296, -0.0208035763, 0.00858781766, 0.00819457881, 0.0142453751, -0.0171629507, 0.00481399801, -0.0141185243, -0.00794722, 0.0206767246, -0.0164399, 0.00443661632, -0.0477213748, -0.0388164297, -0.0206006132, -0.0055465633, 0.0214124601, -7.73989741e-05, 0.0015404477, 0.0453619435, 0.00804235786, 0.00960262585, -0.0102241961, -0.0131544564, -0.0255985465, -0.0235181879, 0.00301429862, -0.0038404162, -0.000413455215, 0.02255412, -0.00318079069, 0.0302666649, -0.00681824517, 0.0193701591, 0.00767448964, 0.00841022562, 0.0132178813, 0.0252560489, 0.0101227155, -0.0116005307, 0.0136111202, 0.0227824524, 0.0223638434, -0.014575188, -0.00236735819, 0.00807407, 0.0110677565, -0.0106110917, -0.00951383077, 0.0179747976, -0.00251482241, 0.00526114833, -0.00965336617, 0.0019630203, 0.00909522176, 0.0131290862, 0.00451589795, 0.0202708021, 0.00930452626, 0.00623155897, 0.0259029884, -0.0101036876, 0.00357402884, -0.000549820135, -0.000190772116, 0.00408143317, -0.00206608674, 0.00146116584, 0.0181523878, 0.0150699075, 0.015234814, 0.0214505158, 0.0255097505, -0.000114165967, 0.00539751304, -0.0112897456, 0.00163162185, 0.0149684269, 0.0055465633, 0.0013454142, -0.00637426646, -0.00312053645, -0.0152855543, 0.00744615775, -0.0156661067, -0.00497573335, 0.00767448964, -0.00527383341, 0.0171883199, -0.00224843528, -0.00733199203, -0.0313575864, -0.0601274073, 0.00811846834, -0.0229727291, 0.00811212603, -0.0138901919, -0.0167570263, -0.0247359592, 0.0219832901, 0.0418862253, 0.0207655206, -0.00468714722, 0.00385310128, -0.00245932513, -0.00354231615, -0.0111882649, -0.0022357502, -0.0339453481, -0.0070275492, 0.0172263756, -0.0111438669, 0.00123441953, 0.0192940477, -0.0117654372, 0.0145625034, -0.0141946347, -0.00190435175, 0.000937112316, -0.00261313212, 0.0258522481, 0.0116576133, 0.00617130473, -0.00974216219, 0.0056734141, 0.0058668619, -0.0128119579, 0.012970522, 0.0142707452, 0.00490279403, -0.013255937, 0.00931721088, -0.0280087162, -0.0104461862, 0.0064916038, 0.00914596207, 0.00716074323, -0.0265372451, -0.00789013691, -0.0182538684, -0.00536262896, -0.0153997205, -0.024532998, -0.0103129921, 0.0078457389, 0.00468714722, 0.00386578636, -0.000331002026, -0.00887323264, -0.0416578911, -0.00813115388, 0.00563853, -0.00797259, -0.00203913101, -0.00597468531, 0.0148669453, 0.0123933498, 0.0143595412, 1.8408271e-05, 5.90154777e-05, -0.0109662749, 0.0412773378, 0.0104081305, 0.00579392258, -0.00364379701, -0.0139789879, 0.00564804394, -0.00158563838, -0.0171375796, 0.0301651843, -0.00915230438, -0.00103859312, 0.0153616648, -0.00282402197, -0.00780768367, -0.0194589552, -0.0159324948, -0.0157422181, 0.00331081287, 0.00452224072, -0.0184695162, 0.00223257882, -0.0252433624, 0.0156787932, 0.00278438092, 0.00576855242, 0.0243173502, 0.00133510749, 0.013408158, 0.0103256777, 0.00422414066, -0.012222101, -0.0215900522, -0.0163511038, -0.0230488405, 0.0257127117, 0.0184060913, 0.0314083248, 0.00199790439, 0.00427488098, 0.0188500695, 0.0126089966, 0.0224906951, 0.0303935166, 0.0238860566, 0.00594931515, 0.0179874822, -0.014486392, -0.00156343949, 0.000385706546, 0.0167823974, -0.0111946072, -0.0229219887, 0.0237592049, -0.00396409584, -0.00513746822, -0.00413217349, 0.0558144711, 0.0117654372, -0.00479179947, 0.00538482796, 0.0218183845, -0.0132686226, 0.0161861964, -0.0026686294, 0.0246725343, -0.0159705505, 0.0108774798, 0.00841656886, 0.0121713607, 0.0322455429, -0.00190276606, 0.0623092465, -0.00378333312, 0.0163511038, 0.00764911948, 0.00551167922, -0.0124631179, -0.0190149751, 0.00609519379, -0.0336916447, -0.0168965627, 0.00480131293, 0.0100148926, 0.00520406524, 0.026664095, 0.00660259835, -0.00248469529, 0.0124821458, -0.0233786535, -0.0203849673, -0.00995146669, -0.0239114277, -0.0106110917, 0.0247993842, -0.014905001, -0.00287793367, -0.00182665547, -0.0136618605, -0.0108077116, -0.00270827045, -0.0293533374, 0.00979924574, -0.00639646547, 0.00356134376, 0.00960896909, 0.00678019, 0.021082649, 0.0177972056, -0.00488376617, 0.00444613025, -0.000958518416, 0.004385876, 0.00320298946, 0.00688167056, 0.0106047494, -0.0163511038, 0.0141185243, 0.0284907501, -0.0133827878, 0.00978021789, 0.00147702219, 0.00750324083, 0.00721148355, -0.0147400945, -0.012837328, -0.00822629221, -0.00898739882, 0.00636475254, -0.000654472271, -0.00899374112, 0.00983730052, 0.00535628665, -0.0157929584, -0.00744615775, -0.00971045, -0.00995146669, 0.0185075719, -0.00341863628, -0.0468334146, 0.00761106424, 0.00759837916, 0.00790282153, 0.0063266973, 0.0109662749, 0.00903813913, -0.0174673926, 0.0138013968, 0.0165160093, 0.0143595412, 0.0113341436, 0.00614910573, -0.00675482, 0.036380887, 0.012837328, 0.0101671135, 0.00198997627, 0.00846730918, 0.0238099471, 0.0167189706, 0.0182919241, 0.0120698791, 0.0249135513, -0.00113135297, 0.00723051094, 0.0146132438, -0.0337170139, -0.00913962, 0.0176069289, 0.0042399969, -0.00646623317, 0.00881614909, 0.0125709409, 0.014575188, -0.0206386689, 0.0170614701, -0.0101671135, 0.0198648777, -0.0034820619, -0.00109329773, 0.00203278847, 0.0161100868, 0.0210572779, 0.00189008098, 0.0158056431, 0.00632035453, -0.0170995239, 0.00491230795, 0.00309040933, 0.00163479324, 0.0096153114, -0.00347571936, -0.0214505158, -0.00316017726, -0.00584466336, 0.0255351216, 0.0272983499, 0.0019630203, 0.0135603799, 0.0111438669, -0.00513112592, 0.00491865026, -0.0154504608, 0.00920938794, 0.0113531705, -0.00777597073, 0.0230742097, 0.0125836264, -0.0150825921, 0.0153489793, -0.00130973733, 0.00573683949, -0.00992609654, 0.0157549027, -0.0109282201, -0.00742713036, 0.0184822, -0.0171122104, 0.00132559368, -0.00211207033, -0.0321440622, 0.0111438669, 0.00415754365, 0.0125772841, -0.00878443662, -0.0095772557, -0.0146386139, 0.0246217921, -0.00283512147, 0.00218659546, 0.0211968143, -0.00306821032, -0.00291281776, -0.00423048344, -0.0105857216, -0.00504867267, 0.00753495377, -0.00482668309, -0.0231756903, 0.0165667497, 0.00958359893, 0.0188881252, 0.0222243071, 0.0261566918, 0.00103304337, -0.000326443318, -0.013344733, -0.00650746, -0.0211207028, -0.00614276296, -0.0111628948, -0.00906350929, 0.0225921758, 0.0122094154, -0.00780768367, 0.016528694, -0.0266387258, 0.00303491182, 0.00390701322, -0.00656454312, -0.00566707179, -0.0315351747, -0.0118415477, -0.00623473, -0.00874638185, 0.0181777589, 0.00860050227, -0.0127739031, -0.0103383623, 0.0270192791, 0.00655185804, 0.00903813913, -0.0114229387, -0.0214251466, -0.0278818663, 0.0235689282, 0.000510972, 0.0302666649, 0.014486392, -0.0262328014, -0.00806138571, -0.00173944538, 0.0260552093, 0.0163130481, 0.00162845058, 0.00738907512, -0.00793453492, -0.000429311593, -0.00894300081, 0.0238606874, -0.00806138571, -0.0167189706, 0.0172517449, 0.0262581725, 0.0317127667, -0.0291503761, -0.01604666, 0.00817555189, -0.000473313063, 0.00443027355, 0.0149430558, -0.0225414354, 0.00732564926, 0.0435099192, -0.00943137705, -0.0173405409, 0.0171756353, -0.00556876184, 0.0097485045, -0.00278438092, -0.0148542607, -0.0167443417, 0.0137887113, -0.0159959197, -0.00127723173, 0.00841022562, -0.00406240579, -0.00456029596, -0.00404337794, 0.0124567756, 0.00398312369, -0.00131053012, -0.00993243884, -0.0261313207, 0.0305203684, 0.0114990501, -0.0189642347, 0.00792184938, 0.0228966177, 0.0188246984, -0.00829606, 0.0247232746, -0.00195192092, -0.0114165964, 0.00775694288, -0.00841022562, 0.00461420789, 0.0143849114, -0.0066850516, 0.0119303437, -0.036025703, -0.00133035064, 0.000358354271, 0.00286841975, 0.034731824, 0.00576855242, -0.0027225411, -0.0158310141, -0.003989466, 0.00218976662, -0.0170487836, -0.00619033212, 0.0258776192, -0.000285018497, 0.0151840737, -0.0298861116, -0.0304188877, 0.0106808599, -0.00861953, 0.00131528708, -0.0139789879, -0.00178225758, 0.0149684269, -0.00503281644, 0.00335203949, 0.0152474986, 0.00599371316, 0.0134842694, 0.0359749645, 0.0180001669, -0.0118225198, 0.0102178538, 0.0045571248, 0.00921573, -0.0201185793, -0.0102051683, -0.0037865045, 0.00884151924, 0.0102178538, -0.00382138859, 0.00653283, -0.000732961344, -0.00769351749, -0.00936795119, 0.00341546512, 0.0146386139, 0.0250657722, -0.0261313207, 0.00712268753, -0.00246883905, 0.0140550984, 0.0244822577, -0.0133574177, -0.0122982115, 0.014816205, -0.0425965898, -0.0102178538, -0.0121269627, -0.00684361532, 0.03323498, -0.0136745451, -0.00998952147, -1.9275416e-05, -0.0055465633, -0.00953285769, 0.0107125733, -0.0143214865, -0.0195604358, 0.00733199203, -0.00877175201, 0.00899374112, -0.00282085082, -0.0162623078, 0.0113278, 0.000242206268, 0.0150952777, -0.0114356242, -0.00236101565, -0.0142326904, 0.00364062586, 0.0100212349, -0.0278057549, -0.00549899414, -0.0123743219, 0.0141692646, 0.0352899693, 0.0140804686, -0.006748477, -0.0125138583, -0.0210699625, -0.00114720943, -0.00752226869, 0.00777597073, -0.00874003861, 0.00423048344, -0.000952175877, 0.0071924557, 0.000935526681, 0.0174673926, 0.00269558537, 0.00187263894, -0.00519455131, 0.00320140389, -0.00156343949, 0.00969142187, -0.00454126857, 0.0237972606, -0.0117273815, 0.00718611339, -0.0182411838, 0.00290013268, 0.0169599876, -0.0048076557, 0.0020486447, -0.0118669178, 0.00463006413, 0.00672944915, 0.00561950263, 0.0061173928, 0.0354421884, 0.00638378039, 0.00343132159, 0.0266894661, 0.00496621942, -0.00569878425, 0.00186312513, 0.020511819, 0.0105222967, -0.00288269063, -0.0378016196, -0.0101924837, -0.00489328, -0.00392921176, 0.0123362672, -0.00684361532, 0.0020851146, 0.0111311814, -0.00995146669, 0.00985632837, -0.0327275768, 0.00938063674, 1.28585361e-05, 0.00062751642, -0.00776962796, -0.00484254, -0.00757935131, 0.00313956407, -0.0128563559, 0.0066850516, -0.0167443417, 0.00290171825, -0.0034281502, 0.00369770871, -0.00874003861, -0.00117257959, 0.0107506281, -0.0180889629, 0.00650746, 0.000204547352, -0.0189515501, -0.00349474698, 0.00539751304, -0.0178986862, 0.00507721398, -0.00152142008, -0.0174927637, 0.00536897173, 0.0175054483, -0.00935526658, 0.00528334733, 0.00600005547, -0.00527700456, -0.00986901298, 0.00660259835, 0.0197887663, -0.000636633835, -0.0123426095, -0.00162369374, 0.00749055576, 0.0103003066, 0.00334569695, 0.00309992302, 0.00525480555, 0.016883878, -0.0073002791, -0.000792422798, -0.0102368817, 0.0186344218, 0.0186344218, -0.00832777284, 0.0121269627, -0.000585496949, -0.0174927637, 0.0225287508, -0.0254716948, 0.00986901298, 0.000290370022, -0.00465543428, 0.0237084646, 0.00405289186, 0.00875272416, 0.0370151438, 0.00573366834, -0.0223638434, -0.0191671979, 0.00436684815, -0.0172390603, -0.00659625558, -0.0252306778, -0.0259410441, -0.016135456, 0.00656454312, 0.0183172952, 0.00538165681, 0.021082649, 0.00893031526, 0.00450955564, 0.00875272416, -0.00279230927, 0.0197887663, -0.00156978203, -0.0105603514, 0.0187485889, 0.0090317959, 0.00182824105, 0.0071924557, 0.0106428051, 0.0210445933, 0.00652014511, -0.0221101418, 0.00113293866, -0.0156534221, 0.00761740701, 0.00185361132, 0.0051501533, 0.00323628797, -0.000263612397, 0.00934892427, -0.027983347, -0.00128198869, 0.0132051967, 0.0129324663, 0.00770620257, -0.0144356517, 0.0163130481, 0.0315605476, 0.000316731283, -0.00286841975, -0.00424951082, 0.0112136351, -0.0374464355, -0.022947358, -0.0265879855, -0.00397043861, 0.00190118048, -0.0177972056, 0.0436367691, 1.98452562e-05, 0.01184789, 0.0104335006, 0.0233913381, 0.0140804686, -0.00220086612, -0.0022896619, 0.00191069429, -0.00312846457, 0.011651271, -0.0229219887, -0.0103447046, -0.0144737074, 0.0191418268, -0.0106301196, 0.0081438385, -0.00433830684, 0.0011281817, -5.38621534e-05, -0.0132178813, -0.00236101565, 0.0190784018, 0.0393999442, -0.00240858481, -0.000826910429, -0.016706286, 0.000658039935, 0.0222623628, 0.00973582, 0.00297941454, 0.0150699075, -0.0106110917, 0.0215139426, 0.0027653533, -0.0110043306, -0.0202581156, -0.0117273815, -0.011740067, 0.0138013968, -0.00682458747, -0.00431610784, -0.0035930567, 0.0191164557, -0.00535311503, 0.00197570538, 0.0315351747, -0.0126280244, -0.0245076269, 0.0312307347, 0.00636158139, -0.00645989086, -0.00243236939, 0.00932355411, -0.00145720167, 0.000419797754, -0.0124948304, -0.0139028775, -0.0133827878, 0.00150952779, -0.00601591216, -0.00592077384, 0.00294294488, -0.000717104936, -0.000929184083, -0.0324485041, 0.000596992846, -0.00100767321, 0.0116639556, -0.00400849385, 0.00261947466, 0.0160086062, -0.00137791981, -0.0101607712, -0.0121586751, -0.0152094439, 0.0206894092, -0.00697680889, -0.00529603241, 0.0168204512, 0.0127739031, -0.00497573335, -0.00882883463, 0.0105857216, 0.00712268753, 0.00817555189, -0.0124758026, -0.0148923155, 0.0206386689, 0.00108061254, 0.0177337807, 0.00246725325, -0.0195731204, -0.0169980433, 0.0214124601, 0.0216915328, -0.0042780526, 0.0319918394, 0.00639963662, 0.000810261234, -0.011759094, -0.00473471638, 0.0204610787, 0.00787110906, -0.00200424693, -0.00997049455, 0.0319664702, 0.0170868393, 0.00168236229, -0.0259156749, -0.0103827603, 0.0356451496, 0.00570512703, -0.00383407366, -0.0068563004, -0.00201376085, -0.0126914494, 0.00946308952, -0.0105096111, -0.0180509072, 0.014575188, 0.00378967565, -0.0197253413, 0.0311038829, -0.00375796296, -0.00240224227, 0.00384358759, 0.0290235244, -0.00698949397, 0.00556241954, 0.0220086612, -0.0177591499, -0.00485205371, 0.00581929274, -0.022465324, -0.00894300081, 0.0173405409, -0.00533408765, -0.0073002791, -0.0321948, -0.0274505727, 0.00433196407, 0.00633303961, 0.0120445089, -0.0169726741, -0.00249420921, -0.00482668309, 0.00287317671, 0.00282085082, -0.0148035204, 0.0155012012, -0.000128436717, -0.0029524588, 0.00161655829, 0.0176069289, -0.00705926213, 0.0175561886, -0.0104905833, -0.00352645968, -0.000288982585, 0.00293660234, -0.00385310128, -0.00529603241, 0.00957091339, 0.00150318525, 0.00573683949, -0.0350108966, -0.000400373683, -0.0106237773, -0.00913327746, 0.0242412407, -0.0402625315, -0.00365013955, 0.00782671105, 0.00102432235, 0.0189388655, 0.0262581725, -0.00194716395, -0.0116259009, 0.00623155897, 0.0206386689, 0.0182538684, 0.0143341711, -0.0262328014, 0.00627278537, 0.0126153389, -0.00890494511, 0.0123743219, 0.00828337483, -0.0145625034, 0.0161100868, -0.010046605, -0.00211048475, -0.0108330818, 0.0145371333, -0.0156153673, 0.0224526394, 0.0141058387, -0.00704657706, -0.0150952777, 0.0119683985, 0.0183426645, 0.0177084096, 0.0112390053, -0.0123108961, 0.0115307625, -0.00662796851, -0.00753495377, -0.0115561327, 0.0104778986, 0.00830874499, -0.00723685371, -0.0132051967, -0.00665333867, -0.0131164007, -0.0298861116, 0.0087336963, -0.00231978903, 0.00423365459, 0.0157929584, 0.015387035, -0.000232890641, 0.0305203684, 0.0132813072, -0.0184948854, -0.00839754101, -0.00460469397, -0.0338946059, -0.00675482, 0.00273839757, 0.0136364903, -0.0313829556, -0.000378967583, -0.00652014511, 0.00303491182, 0.00273681176, 0.0215900522, -0.0135223242, 0.0126407091, 0.000720672659, -0.0130276047, -1.41716428e-05, -0.0114800222, 0.0275774226, -0.00365965348, 0.0222369935, 0.000432086468, -0.0056956131, 0.017302487, 0.0128563559, -0.00830240268, 0.004385876, -0.00460786512, -0.001994733, -0.00563218771, 0.0211207028, -0.00662796851, 0.0185202565, -0.00456663873, -0.00105524238, -0.0187993292, -0.0092791561, -0.00264484482, 0.00778231304, -0.0100275772, 0.00347571936, -0.0145371333, -0.0322709121, -0.0155138858, 0.0246344786, 0.0199790429, -0.0194843244, 0.00815652404, -0.00156740355, 0.000701248588, 0.0279072355, 0.0295055602, 0.0281863082, -0.00170931814, 0.00201376085, 0.0222623628, 0.00948846061, -0.0137506565, 0.0287698228, -0.0100529473, 0.0252433624, -0.00821360666, -0.0105920648, -0.00122966256, -0.0269431677, 0.00824532, -0.0068499581, -0.0209684819, 0.0117971497, 0.0180889629, -0.0142453751, 0.0090317959, 0.0202834867, -0.00608568033, -0.0122601558, 0.0319411, 0.0229854137, -0.0222496781, -0.00246091071, -0.00753495377, -0.00161814399, -0.00724319601, 0.0142073203, 0.0159959197, -0.0069577815, -0.0178606305, -0.0186724775, -0.00841022562, -0.00329812779, 0.00259886123, -0.0160847157, -0.00455395365, 0.0180001669, 0.0127231628, -0.0140804686, 0.0200424697, 0.0188627541, 0.0179621112, 0.00210572779, 0.0122094154, 0.010947247, -0.0142453751, -0.00103859312, 0.001214599, -0.0125772841, -0.00131053012, 0.00155551126, 0.00662796851, 0.00871466845, -0.0114356242, -0.00433196407, 0.0117337238, -0.0142453751, 0.0104588708, -0.000930769718, 0.0109091923, 0.0105793793, 0.0309770312, -0.0186597928, 0.000181456489, -0.0165160093, -0.00971679203, -0.0182285, 0.0125709409, 0.0159959197, -0.0126724225, -0.00572098326, -0.00820092205, 0.0149430558, -0.00607933756, 0.00605079625, 0.00485839602, -0.0216915328, 0.00794087723, 0.0102685941, 0.0155012012, 0.00140011869, -0.00411948841, 0.00697680889, 0.0221101418, -0.00388481398, 0.00879712217, 0.0190276615, 0.0208670013, -0.0017140751, 0.0057812375, 0.0202073753, -0.0046364069, -0.00838485546, 0.00849267934, -0.0118161775, 0.00406240579, 0.0103827603, -0.00988804083, 0.00493133534, 0.00872101076, -0.00334886834, 0.00416071527, 0.00286207721, 0.0102939643, -0.00103066501, -0.0160339754, 0.0030586964, 0.0319918394, -0.0262328014, 0.0301398151, -0.00137633411, -0.00411948841, 0.0148288906, -0.000396607793, 0.0035676863, 0.0194589552, 0.012970522, 0.00517869508, 0.0107379435, -0.0272729807, 0.00955822784, -0.000452303357, -0.020993853, 0.000231503203, -0.0133066773, 0.00389115652, 0.0344527513, -0.00387530029, -0.015475831, 0.00477594277, -0.00990706868, -0.0150191672, -0.0328036882, 0.00404972024, -0.0219198652, -0.00718611339, 0.0121840453, -0.0113341436, 0.0319918394, -0.00845462363, 0.0115878452, 0.0199663583, 0.0156026818, -0.00979924574, -0.0183553509, 0.0307487, 0.00307296729, 0.00386578636, -0.0102115115, -0.0100085493, -0.0285922308, 0.00514381099, 0.00310943695, -0.00655185804, 0.0140297282, -0.00809309818, -0.0206133, 0.0109535903, 0.00677384716, -0.000286604132, 0.0279326066, 0.0122728413, -0.0130656604, -0.0077442578, -0.00981193, 0.00916499, -0.00950114522, -0.0141946347, -0.00156898925, -0.0228205081, 0.0270446483, -0.00155392569, 0.00600639824, 0.00761740701, 0.00274156872, 0.0213617198, -0.00121222052, -0.0160847157, -0.00912693422, 0.000536738604, 0.00662162574, 0.00808041357, -0.0337931253, 0.00473154476, -0.00724319601, 0.00611422164, -0.0080487, -0.0206386689, 0.015475831, -0.00790282153, 0.0154631454, 0.0233405977, 0.00580343651, -0.0138901919, -0.000623155909, 0.00860684551, -0.0203469116, 0.0392984636, 0.0171756353, -0.003989466, -0.0144102816, 0.000259053661, -0.0056734141, 0.0321440622, -0.0011170822, -0.010091003, 0.00645989086, -0.00143658835, 0.0120318243, -0.00199156185, -0.00264167367, -0.0352392271, -0.00117812934, 0.0208670013, 0.0200424697, -0.00724953879, 0.0182411838, -0.0044715004, 0.00509624183, 0.0128246434, 0.00369770871, 0.021082649, 0.019255992, -0.00807407, 0.00725588109, -0.0175054483, -0.022795137, -0.0183934048, 0.00314432103, -0.00432879291, -0.0270953886, 0.0132178813, 0.0144737074, -0.00273681176, -0.0144483373, -0.0135476943, -0.000686185, 0.0039196983, -0.000804711482, 0.00326641509, 0.0200424697, -0.0021390263, 0.00885420479, -0.016883878, 0.00730662188, 0.00468080444, 0.0149811115, -0.00460469397, 0.0308501814, -0.00780134089, 0.00377699058, 0.0185583122, 0.0023213746, 0.0161227714, -0.00919036, 0.0154885156, -0.00584149174, 0.0154885156, -0.0133574177, 0.0113975685, -0.005968343, -0.00371673633, 0.00650111726, -0.0162623078, 0.0119937686, 0.00479179947, -0.00449052779, -0.0146132438, -0.0092791561, -0.00593663, -0.0105920648, -0.0178860016, -0.0164399, 0.00433830684, 0.00064575125, -0.00589223206, 0.0204357076, -0.00120587798, 0.0101290578, -0.00452858349, -0.00448101433, -0.0118669178, -0.00494084926, 0.00530871749, -0.00731930695, -0.00360891293, -0.00670407899, 0.0181650743, 0.00610470772, 0.00223257882, -0.0317888781, 0.0115815029, -0.0139916735, 0.00394823961, 0.0205625594, 0.00449687056, 0.0154504608, 0.00634889631, -0.00374210672, -0.00371990772, 0.00930452626, -0.0315859169, -0.0190910865, 0.0030808954, -0.0195223801, -0.0124694603, 0.00248945225, -0.0124060344, 0.0154504608, 0.0195350647, 0.0116893267, -0.0141819501, -0.00256397738, 0.0161100868, 0.000171942665, -0.00139456894, -0.0129007539, 0.0024862811, -0.0227824524, 0.0289727841, -0.00472520245, 0.000176699585, 0.0106110917, -0.0087336963, -0.0207274649, -0.0144229671, -0.0292518567, -0.00756032392, -0.0114039117, -0.00825166237, -0.000368859124, 0.0293533374, -0.00202644593, -0.016465269, 0.0130149201, 0.00253385026, 0.00665333867, -0.0180889629, 0.00525797671, -0.000312172546, -0.0110677565, 0.0013771269, 0.0143088009, -0.00726856664, 0.0175815579, 0.01661749, -0.00344717782, 0.0124440901, 0.000343488908, 0.0230615251, -0.00542922597, 0.0094123492, 0.00884786248, 0.0300890747, -0.00144768786, -0.012133305, 0.0202581156, -0.0246598478, -0.0085243918, -0.00950114522, 0.0200551543, 0.00807407, 0.0150825921, 0.0175815579, 0.00406874809, 0.00130498037, 0.0176576693, 0.00858147535, -0.0164779536, -0.00480448455, -0.00184092612, -0.0211968143, 0.00547045236, 0.0021390263, 0.00860050227, -0.00412583118, 0.0151206478, -0.00132162962, -0.00163162185, -0.00997049455, 0.00521040754, 0.00179494265, 0.000260044704, 0.0252306778, -0.00184092612, -0.00744615775, 0.00825800467, -0.0206513554, 0.00882249232, -0.00639329385, -0.013737971, 0.00547362352, 0.00362794055, -0.0164906401, 0.0158056431, 0.00796624739, 0.0129197817, -0.0027003421, -0.0266387258, 0.00918401778, -0.000710762397, 0.0343512706, 0.0182919241, 0.0074651856, 0.0226048604, 0.00494402042, 0.00924744271, 0.00344400667, 0.0116639556, 0.0222623628, -0.0188627541, -0.0145371333, 0.0031237076, 0.0118161775, 0.0183807202, -0.027983347, 0.0094440626, 0.00406874809, 0.0185583122, 0.0143088009, -0.00262740278, 0.02255412, -0.00819457881, 0.0303174052, -0.012837328, 0.00326007255, 0.022465324, 0.00654551527, 0.0117654372, -0.0258776192, -0.00516601, -0.0100212349, 0.0146893542, -0.0469348952, -0.0253575295, 0.0130022345, -0.00643452071, 0.00720514078, -0.00473154476, 0.0131925112, -0.0104588708, 0.0031126081, -0.00264325924, 0.00436684815, 0.0076364344, 0.00189483783, -0.00691338349, -0.00174895918, -0.0068499581, -0.032752946, -0.0175942443, -0.0133193629, 0.00989438314, -0.0086956406, 0.000604128232, 0.00509307068, 0.0238606874, 0.00696412381, 0.00623473, 0.0113341436, 0.00320774643, 0.00771888765, -0.0266894661, -0.0113721984, -0.0317888781, -0.000108814434, 0.019255992, 0.0191545114, -0.0134842694, -0.0060539674, -0.00716708554, -0.0028446354, 0.00536262896, -0.00495353434, 0.0203215424, 0.000542288355, -0.038537357, 0.000353597366, 0.00868929829, -0.0281101968, 0.0552563258, -0.00980558805, -0.00222940766, -0.00929184072, -0.00166650594, -0.0279579759, 0.00626010029, 0.00655185804, -0.00688167056, -0.0199663583, 0.00135096395, -0.00978656, -0.0229854137, 0.0151333325, -0.0241017044, -0.00707194721, -0.0194589552, 0.00306345336, -0.00895568542, -0.0125265429, 0.00433513522, -0.00636792369, -0.0131417708, -0.00770620257, -0.00765546225, -0.00738907512, -0.0129832076, -0.0157295335, 0.00472520245, -0.00293660234, 0.00202961708, -0.0174927637, 0.00318237627, -0.00612690672, -0.00777597073, -0.00314590661, -0.0226809718, -0.00802333, 0.000761899224, 0.0110170152, -0.00405606302, -0.00672944915, -0.016465269, -0.0131164007, -0.00549582252, -0.0208035763, 0.0146386139, -0.0148288906, 0.0101861414, 0.0109789604, 0.016947303, 0.0030586964, 0.0108901644, -0.0210699625, 0.00984364282, 0.00318554766, -0.0151713882, -0.000519296562, 0.0115371048, 0.00254653534, 0.0144102816, 0.0070212069, -0.0346303433, -0.00969142187, -0.0223257896, 0.0121967308, -0.0365331098, -0.00302539812, -0.0352138579, 0.0124187199, -0.0337677561, -0.0202200618, -0.013255937, -0.00172834587, -0.00693875365, 0.0094440626, 0.020067839, -0.00014647335, -0.00329495664, -0.00352963107, -0.00113848841, -0.00891128741, 0.0310785118, -0.0121396473, 0.0144483373, -0.00699583674, 0.0138648218, -0.0102178538, -0.000413455215, -0.00652648741, -0.000171447158, 0.0105920648, -0.0109662749, 0.00360257039, -0.0248881802, 0.000684995786, -0.0268924274, 0.0171756353, -0.0169599876, -0.013826767, 0.00120667077, -0.017784521, -0.0110867834, 0.00653283, 0.0231883768, -0.00293977349, -0.0145244477, -0.00195033522, -0.00405923417, -0.0233532824, 0.0299368538, -0.0347571932, 0.00554022053, -0.00716708554, -0.0287698228, 0.00650111726, 0.00747787068, -0.0155899972, 0.00903813913, 0.00899374112, -0.026486503, 0.00452541187, -0.010198826, -0.0132939927, -0.0053372588, -0.00420511281, -0.00273522618, -0.0276281629, -0.0189134944, 0.0292011164, 0.00528968964, 0.0147781502, -0.0130402902, 0.00363428332, 0.00401483662, -0.0224272702, 0.0184060913, 0.00176164426, 0.010661833, -0.00507087167, -0.0174039677, 0.0208923724, -0.00949480291, -0.02255412, 0.00432879291, -0.00436684815, -0.0151840737, -0.00262106024, 0.0219959766, 0.0154124051, 0.00978656, -0.0233532824, -0.00769986026, 0.0242666099, -0.00752861099, -0.0202327464, 0.00243078358, 0.00928549841, 0.00706560491, -0.0121523328, -0.012507516, -0.0103383623, -0.00638378039, -0.0131290862, -0.00975484774, -0.0271968693, 0.0287190825, -0.00497573335, -0.00372625026, -0.0201058947, 0.02123487, -0.00791550707, 0.0113404859, 0.00666602375, -0.00154996151, 0.0152221285, 0.0053658, 0.00812481157, 0.00650111726, -0.008727354, -0.00355183, 0.0178860016, 0.0063108406, -0.00333935441, 0.00646623317, -0.000438429, -0.00861953, 0.0194589552, -0.0040909471, 0.0165033247, 0.0211968143, -0.0031015086, 0.00139694742, 0.0121396473, -0.00346620544, 0.00158088154, 0.0149557414, -2.48623146e-05, -0.0158690698, -0.0120825646, 0.0183934048, 0.0144990776, -0.00552119268, 0.00081739662, -0.0224272702, -0.014575188, -0.00242602685, -0.000625137938, -0.00990072638, 0.0156407375, 0.0406430848, -0.0105793793, -0.00244188309, 0.00901911128, -0.0110043306, -0.00984998606, 0.0155773116, 0.00111866789, 0.00971679203, 0.0232010614, -0.00438270438, 0.00678019, -0.00475691538, 0.0310277715, -0.00444295863, -0.00269717094, -0.00198046234, 0.00253226445, -0.0085624475, 0.0128056156, -0.0015507543, -0.00592077384, -0.013344733, -0.00992609654, 0.0117020113, 0.0196111761, -0.00203120289, -0.00853073504, -0.0304696281, -0.0114546521, -0.00192496506, -0.00466177706, -0.000344281725, -0.0104905833, 0.00640597893, 0.0294040777, 0.00731296418, 0.0101417433, -0.00595565792, 0.0148669453, 0.000464195648, 0.00343449274, 0.00293977349, 0.00714805769, -0.0153743504, -0.00617130473, -0.00816286635, 0.00312212203, 0.00499476073, 0.00397678092, 0.0272476096, -5.67856769e-05, -0.00743981544, 0.0128563559, -0.00414485857, -0.000374012452, -0.0071290303, -0.00177591504, -0.0170234144, 0.00279230927, 0.000169663312, 1.58811599e-05, -0.0144990776, 0.00823897682, 0.00978656, 0.0161227714, -0.0151079623, 0.00872101076, -0.0249389205, -0.0280594565, -0.0155392559, 0.00322994543, -0.00600639824, -0.0239875372, -0.00359622785, -0.00479497062]
|
08 Oct, 2021
|
Node.js fs.utimesSync() Method
08 Oct, 2021
The fs.utimesSync() method is used to synchronously change the modification and access timestamps of a file. The timestamps can be specified using a number, string, or Date object. An error would be thrown if the timestamp cannot be converted to a proper number, or is NaN, Infinity or -Infinity.
Syntax:
fs.utimesSync( path, atime, mtime )
Parameters: This method accepts three parameters as mentioned above and described below:
path: It is a string that denotes the path of the file whose timestamps have to be changed.
atime: It is number, string or Date object that denotes the new access timestamp to be set.
mtime: It is number, string or Date object that denotes the new modification timestamp to be set.
Below examples illustrate the fs.utimesSync() method in Node.js:
Example 1:
// Node.js program to demonstrate the
// fs.utimesSync() method
// Import the filesystem module
const fs = require('fs');
console.log("Details before changing time:");
// Get the stats object of the file
prevStats = fs.statSync("example_file.txt");
// Access the modified and access time of the file
console.log("Modification Time:", prevStats.mtime);
console.log("Access Time:", prevStats.atime);
// Get the current time to change the timestamps
let changedModifiedTime = new Date();
let changedAccessTime = new Date();
// Use the utimesSync() function to assign
// the new timestamps
fs.utimesSync("example_file.txt",
changedAccessTime, changedModifiedTime);
// Get the stats object of the file
console.log("\nDetails after changing time:");
// Get the stats object of the file
changedStats = fs.statSync("example_file.txt");
// Access the changed modified and access time of the file
console.log("Changed Modification Time:", changedStats.mtime);
console.log("Changed Access Time:", changedStats.atime);
Output:
Details before changing time:
Modification Time: 2015-12-20T19:42:00.000Z
Access Time: 2020-05-25T15:02:04.809Z
Details after changing time:
Changed Modification Time: 2020-05-25T15:09:37.412Z
Changed Access Time: 2020-05-25T15:09:37.412Z
Example 2:
// Node.js program to demonstrates the
// fs.utimesSync() method
// Import the filesystem module
const fs = require('fs');
console.log("Details before changing time:");
// Get the stats object of the file
prevStats = fs.statSync("example_file.txt");
// Access the modified and access time of the file
console.log("Modification Time:", prevStats.mtime);
console.log("Access Time:", prevStats.atime);
// Get the current time to change the timestamps
let changedModifiedTime = new Date("December 21, 2015 01:12:00");
let changedAccessTime = new Date("December 23, 2015 01:15:00");
// Use the utimesSync() function to assign
// the new timestamps
fs.utimesSync("example_file.txt",
changedAccessTime, changedModifiedTime);
// Get the stats object of the file
console.log("\nDetails after changing time:");
// Get the stats object of the file
changedStats = fs.statSync("example_file.txt");
// Access the changed modified and access time of the file
console.log("Changed Modification Time:", changedStats.mtime);
console.log("Changed Access Time:", changedStats.atime);
Output:
Details before changing time:
Modification Time: 2020-05-25T15:09:37.412Z
Access Time: 2020-05-25T15:09:37.412Z
Details after changing time:
Changed Modification Time: 2015-12-20T19:42:00.000Z
Changed Access Time: 2015-12-22T19:45:00.000Z
Reference: https://nodejs.org/api/fs.html#fs_fs_utimessync_path_atime_mtime
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method
|
https://www.geeksforgeeks.org/node-js-fs-utimessync-method/?ref=next_article
|
CSS
|
Node.js fs.utimesSync() Method
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0335260145, 0.015844686, -0.00322141265, 0.0304357894, -0.0137310885, 0.00983186811, -0.0239346586, 0.03110631, -0.0435838178, -0.0156114604, 0.0332344808, 0.0519798957, 0.0114790155, -0.0282347333, 0.0360040218, 0.00377167645, -0.0246051773, 0.0256984178, -0.0146639869, 0.00643189251, 0.0103274696, 0.0373159088, -0.0245031416, -0.00746318186, -0.0291676316, -0.00172276329, 0.00759437075, 0.0546911322, -0.013075145, -0.0100869574, 0.00852726866, 0.0259899478, 0.0371701457, -0.0149044991, -0.00517831137, 0.00550628314, 0.0226081945, 0.0226810761, -0.0326805748, -0.0205383264, -0.0142922848, -0.0142485555, -0.00838879123, 0.0355667286, -0.017156573, 0.00830133259, -0.0194888171, -0.0286866054, 0.0147295808, -0.0188328736, 0.0290072896, 0.0138549889, 0.0170836896, -0.000728826388, 0.0280889682, 0.00285335514, 0.032826338, 0.0102472985, -0.0103711989, 0.0121786883, 0.0405227467, -0.0278848968, 0.0190077908, -0.000974805269, 0.0314561464, -0.0117341047, -0.0292550903, 0.0288032182, 0.0133666759, -0.0294300094, -0.0186579544, 0.032563962, 0.0337883905, -0.027039459, -0.00878235791, -0.0532334782, 0.0109761255, 0.0232787151, 0.00292988191, 0.0193867814, -0.00854913332, 2.1836322e-05, -0.0283804983, 0.0412515737, 0.00371701457, -0.000317495, -0.01918271, -0.033846695, 0.0383071154, 0.00653028442, 0.0253340043, -0.0211942717, -0.00651206356, -0.0222729333, -0.0122515708, 0.0262231734, 0.0467615, -0.0108376481, -0.0410183482, -0.0119819054, -0.00607841183, 0.00263106311, -0.00685096765, -0.0815119445, 0.00362591119, -0.0260336772, 0.030377483, -0.00633350108, 0.0480150804, 0.0141319437, 0.0192701686, -0.00981729105, -0.00470093, 0.0113040973, -0.0253631584, 0.0151595883, 0.011486304, -0.0246343315, 0.0149555169, 0.0437878892, -0.00381176197, 0.0328846462, 0.0290072896, 0.0735240057, -0.0188620258, 0.0276954025, -0.0193867814, -0.0120183472, -0.0072190254, -0.0192555934, -0.0554491095, 0.0042563458, 0.00373523519, 0.0453038476, -0.0100359395, -0.000124811515, -0.00342366192, 0.0119235991, -0.0088115111, -0.0466448888, -0.0518341325, 0.0159175675, -0.00516373478, -0.000319089304, -0.0195908528, -0.0107429009, 0.00317586097, -0.00403040973, 0.00930711254, 0.0548952036, 0.000855915481, -0.0346338302, 0.0412807241, -0.0135343056, 0.0161799453, -0.00486491621, 0.0134759992, 0.0283804983, -0.0322432779, -0.00782030728, 0.0154219661, -0.0338175446, -0.00105497614, -0.0186288022, 0.000479658862, 0.0175064094, -0.0272143763, -0.0316019095, 0.0430299081, 0.0339341573, -0.0383945741, -0.0121203829, -0.0291822087, -0.0170253832, -0.0169233475, -0.0168067366, 0.00399761274, 0.000266477145, 0.0439919606, -0.0189494863, -0.0315144509, 0.00447135, -0.0094601661, -0.0123827597, 0.0405227467, 0.0259753726, -0.0427092239, -0.0025581806, -0.0158884153, -0.0499391817, -0.0150138233, 0.012652426, 0.0634370446, -0.00446406147, 0.00404498633, 0.0518632829, 0.00625333, -0.0192555934, -0.00254907017, 0.000751146697, -0.00857099798, -0.0336717777, -0.0254068878, -0.0139643131, -0.0147660226, -0.0110344309, 0.0156114604, -0.0307856258, 0.0231912546, -0.0129585331, 9.39502715e-05, -0.0128710736, 0.00402676547, -0.0161945224, 0.0208735876, 0.0239346586, 0.0325348079, 0.00772555964, 0.00551721547, -0.0205237512, -0.0301151052, -0.00711334543, 0.0196637362, -0.018453883, -0.0456828363, -0.0344880633, 0.012200553, -0.00301005295, 0.0310771558, 0.0168941952, 0.0249112844, 0.0369660743, 0.00192774576, -0.0293279737, -0.00340908533, -0.00369150564, 0.00596544379, -0.0361206345, -0.0139788901, 0.00327971857, -0.0161945224, 0.0257275701, 0.00410329225, 0.00917592365, -0.0120547879, 4.02562691e-05, -0.00314670778, 0.0263397843, 0.0158738382, -0.0096642375, 0.0334385522, -0.0204071384, -0.00843252148, 0.0145109333, -0.0254797693, -0.0208881646, -0.0209027398, -0.00777657749, 0.00683639152, 0.0127034439, -0.00227940455, 0.0455370732, 0.00115427875, 0.0142704202, 0.00915405899, 0.0156114604, 0.0239638109, -0.0314561464, -0.00743767293, -0.00880422257, 0.035041973, -0.0227248054, -0.0181040466, 0.0263397843, 0.0117413932, -0.0134614231, -0.0537290797, 0.0439628065, 0.0120037701, 0.0106700184, -0.00327971857, 0.0255234987, 0.00237232982, 0.0036113346, -0.0156260375, -0.0116903754, 0.0492686629, -0.0407851227, -0.0303483307, -0.00247436552, -0.011049008, 0.0140882134, 0.0227393825, 0.0102618756, -0.0394149311, -0.00991932675, -0.0283076167, 0.0256838407, -0.0190077908, -0.00502161356, 0.0129293799, -0.0139424484, 0.0128054796, 0.0170982666, 0.0341965333, 0.012134959, 0.0449540094, -0.0142922848, 0.0270686112, -0.0378698185, -0.0128127672, -0.016427746, -0.032826338, -0.0391234, -0.0062569743, -0.0300276466, -0.002652928, 0.000330477196, -0.0137092238, 0.00538238278, -0.0248092487, -0.00250716275, -0.0193576291, 0.0427092239, 0.0399105325, -0.00811183732, 0.000273993151, 0.0306981672, -0.0137748187, -0.0483066104, -0.0225644652, -0.0117632579, -0.0134322699, 0.0577522032, -0.00580874598, 0.00417981902, -0.0252756979, -0.0152762011, 0.0189786386, 0.010691883, 0.0105752703, -0.00693478296, 0.0165735111, -0.0161653683, 0.0177979395, 0.0248821322, 0.00333255855, -0.00917592365, -0.00451143505, 0.0237597395, 0.00140572386, 0.0128492089, 0.0197657719, -0.00371883647, 0.00555730099, 0.00957677886, -0.0201010313, -0.0240075402, -0.00333984685, 0.0479567759, -0.00511636119, 0.00361315673, 0.00442033214, 0.0392108597, -0.0133083696, -0.0296049267, 0.00615858287, -0.0198823828, -0.0041360897, -0.00962050818, -0.014161096, 0.0159175675, -0.00105953135, 0.00364595396, -0.0371701457, 0.0105388295, 0.0218793675, 0.0320392065, 0.0612214133, 0.00220652181, -0.00591807, 0.0259024892, 0.0174481031, 0.00550628314, 0.0151741654, -0.00357307121, 0.00293899234, -0.00748504698, 0.0274476018, 0.0300276466, -0.042738378, 0.0185413435, 0.0049997489, -0.0542829894, 0.0233807508, 0.00232677814, 0.0230017602, -0.0166755468, 0.0134176938, -0.00140207971, -0.0113332504, -0.0475486331, 0.00843252148, -0.00561560737, -0.00159157463, 0.0693842694, -0.0401437581, -0.00373523519, 0.037636593, -0.000596271071, -0.0108668013, 0.0407851227, -0.0176375974, 0.0156551898, 0.028351346, 0.0219230969, -0.0417471752, 0.021092236, -0.0336134732, -0.00806081947, 0.0143797444, -0.0142121138, -0.0337009318, 0.00849811547, 0.049851723, 0.0104076406, -0.0519507453, -0.0219230969, -0.00428185472, 0.0133156581, -0.0137966834, -0.0134905763, 0.0117632579, 0.0357999504, -0.0153490836, -0.0409891941, 0.0161507931, -0.0150429765, 0.0100505156, -0.0428258367, -0.00698215654, 0.014029908, 0.0115446094, -0.0323598906, -0.0282784626, -0.0179291293, -0.0674601719, 0.00534229726, -0.0166318174, -0.0048831366, 0.00994848, 0.0133302342, 0.0201739147, 0.023264138, 0.0142777087, -0.0241533052, 0.0127034439, -0.0242407657, -0.00664689671, -0.00527305901, 0.0103711989, 0.0179437045, -0.00697122421, 0.0166172404, 0.0201593377, -0.0651279241, -0.0196928885, 0.0111364666, -0.00502890209, 0.0184101537, 0.00429278752, -0.00104586582, 0.0374908298, 0.0365579315, 0.0167484302, -0.00803166628, -0.00913219433, -0.0352168903, 0.0262085963, -0.0181477759, 0.0226081945, 0.00481389835, 0.0611048043, -0.0191098265, -0.00304285018, -0.0175355617, -0.0288177952, -0.0278265905, -0.0454496108, -0.027185224, 0.00795149524, 0.0517175198, -0.0277391318, 0.0405227467, -0.00464626821, 0.0341673791, -0.0369660743, -0.00137110462, 0.00989017356, -0.0160196032, -0.0226373468, 0.0246489085, -0.044924859, 0.0134614231, -0.0122297062, 0.00491957786, 0.0207423978, 0.0176375974, -0.0170691144, -0.0243865307, -0.0262085963, 0.0339050032, 0.00702953, 0.0514259897, -0.00121622905, -0.0018603293, -0.0130387042, 0.00981000252, -0.0122224186, 0.0250570513, -0.00792234298, -0.0133739635, 0.00352387549, 0.00119800831, 0.00287704216, -0.0253631584, -0.0194013584, -0.0047811009, -0.00752148824, -0.0190223679, -0.0073392815, 0.0273018349, 0.00606019143, 0.0454204604, -0.00940186, -0.0069019855, -0.0253923107, -0.00478474516, 0.000197010871, 0.00343823829, 0.00536416192, -0.00728461938, -0.0834943503, -0.0121276705, -0.0314561464, -0.000105167368, 0.00986102, -0.00662503159, 0.0249404386, 0.0180748943, -0.00957677886, 0.00298636616, 0.00675986474, 0.0022302086, -0.0322432779, 0.0186142251, -0.018322695, 0.0130824335, -0.00300640869, 0.0393566228, 0.0200135726, -0.00400125654, 0.0327680334, -0.0224478524, -0.0102618756, -0.0171274189, 0.0064901989, 0.00958406646, -0.0075287763, 0.0106262881, 0.0220542867, -0.00274949754, 0.0382488072, -0.0100213625, 0.00768183, 0.0074413172, -0.000423402584, -0.00587434042, -0.00238326215, -0.00254724827, -0.00515280245, -0.00417253096, -0.00497788424, 0.0027713622, -0.00563747203, -0.0127544617, -0.0105898473, -0.0281618517, -0.0221708976, 0.0091249058, 0.0257421471, -0.0157572255, -0.0206840932, 0.0224624295, -0.0165880881, 0.00644646911, -0.0416014083, -0.0179437045, 0.0382779613, -0.00173733989, -0.0151304351, 0.0226227697, -0.0073210611, 0.0121495351, 0.0038081177, -0.00582332257, 0.00706597185, -0.00484305108, -0.0446041748, 0.00119072013, -0.00475559197, -0.016865043, 0.00934355427, 0.0260628313, 0.00747047039, 0.00286064344, 0.000327744114, 0.0572857521, -0.0100067863, -0.00962050818, -0.0114498623, 0.00903744716, -0.000808541779, 0.0291239023, 0.00577594899, 0.0211942717, -0.0157863796, -0.0300567988, -0.0140882134, -0.0314269923, 0.00753606483, -0.0203196798, -0.00642096, -0.0123681836, 0.0348379, 0.0459160618, 0.0088187987, -0.0351294316, 0.0181477759, 0.034021616, 0.0196783114, -0.0121641122, -0.00281873601, 0.0887419, -0.00469364179, 0.0101306867, -0.00814827904, 0.017433526, -0.0149992462, 0.00884795189, -0.0557697937, -0.0218647905, -0.00369514967, 0.0253923107, 0.00119072013, 0.000273765414, 0.022520734, -0.00393566256, -0.0215586834, -1.63274181e-05, -0.0137019353, -0.0469947234, -0.00262741907, 0.0171711501, -0.00312666502, 0.00206804485, 0.044749938, 0.00655579334, -0.0181477759, 0.0169670787, 0.00114334642, -0.0308147781, 0.000727915321, 0.0371992961, -0.000306790345, -0.00739758788, -0.0239638109, 0.00576866092, 0.0185559187, -0.0118725812, 0.00374981156, -0.0151741654, -0.00402676547, -0.0125212371, -0.00140754587, -0.00256729079, -0.00236504152, -0.0148316165, 0.0115591865, -0.0199406892, 0.0417763293, 0.0124337776, 0.0453913063, 0.0319225937, 0.014678563, 0.00455516484, -0.0066796937, -0.0166901238, 0.0212525763, -0.0313686877, 0.00105679827, 0.00959864352, -0.0392691642, -0.00315581821, -0.0239346586, 0.0320100524, 0.0104951, 0.0255963821, -0.0232058316, -0.035595879, -0.00724089, 0.0105388295, -0.0187016837, 0.0295757744, -0.0322432779, 0.0140882134, -0.0058488315, 0.0111073134, -0.0268208105, 0.00773284771, 0.0213983431, -0.0321266651, -0.0297798458, -0.0117413932, -0.029648656, -0.0249112844, -0.0154365422, -0.0265001263, -0.0344880633, 0.00714249862, -0.00384820323, -0.011340538, 0.0301151052, -0.00830133259, -0.0221708976, 0.0166463945, -0.0216607191, 0.0235993974, -0.0157426503, -0.0198823828, -0.00996305607, 0.0152033176, -0.0045733857, -0.0016325711, 0.00423083687, 0.000722904631, 0.0238471981, 0.0120402118, -0.0378406644, -0.0218647905, -0.0269082692, -0.00174553914, -0.00285517727, -0.0420970097, 0.0128054796, 0.0163694397, -0.000897367485, 0.0314561464, 0.0268062335, 0.00140116864, 0.0313686877, 0.0168358888, -0.0217481796, 0.00736843469, 0.000416797586, -0.0319225937, -0.0162236746, -0.023395326, 0.0148753459, -0.00687283278, 0.0195617, -0.0123463189, 0.0385694914, 0.0101598399, 0.0215732604, 0.0168067366, -0.0108157834, -0.0588017106, 0.00495601911, -0.0280160848, 0.0320392065, 0.0169816539, -0.0179145522, -0.00205529039, 0.0143287266, -0.00129366678, 0.028482534, 0.0112093491, -0.0121495351, 0.0371409915, -0.000227644356, -0.00694207102, 0.0102181453, 0.00703681866, -0.0118507165, -0.0216752961, -0.0230454896, 0.0277974382, 0.0321558192, -0.0587725602, -0.006796306, 0.0185121894, 0.0159467217, -0.0179291293, 0.0550118126, -0.00818472, -0.0208298583, -0.0433505923, 0.0255672298, 0.00224660733, -0.0244739894, 0.0132063339, -0.00339450873, 0.0165589359, 0.0102837402, 0.0148097519, 0.0239638109, 0.0064901989, 0.014824328, 0.0286574531, 0.00873134, 0.0221563224, 0.00323598902, -0.0181040466, 0.00396117149, 0.058160346, 0.0342548378, 0.0195908528, 0.0158592612, -0.00256182463, 0.0044749938, 0.0217919089, -0.0415139496, 0.0324181952, -0.000412925699, 0.00997763313, -0.0149992462, 0.0130970096, -0.00688376511, 0.0337009318, -0.00873134, 0.0104805231, 0.032563962, 0.0286866054, 0.00924151856, 0.008505404, -0.0248384029, 0.0181186236, -0.00819929689, 0.0210630819, 0.0312812291, 0.00451507932, 0.0210485049, -0.017141996, -0.00663960818, 0.0279723555, -0.0214129183, -0.00191316917, 0.023249561, -0.0260919835, 0.00792963058, -0.0271998, -0.016267404, 0.011340538, 0.021514954, -0.0103347581, 0.00129093369, -0.0237888936, -0.00470457412, 0.0140226195, 0.00758708268, -0.0151595883, 0.0163840167, 0.00942372531, -0.0029736117, 0.000965694955, -0.0270103049, -0.00718622794, 0.0218939446, -0.00772555964, 0.033001259, 0.0332344808, -0.00743767293, -0.00341637363, -0.0175209865, -0.00432558451, -0.00340361916, -0.0208735876, 0.0055281478, -0.0386277959, 0.00713521, 0.0267625041, -0.00544797722, -0.0225061588, 0.00389922108, 0.0446624793, 0.0158592612, -0.0190952513, 0.0120912297, 0.0239783879, 0.00398668041, -0.0142631317, 0.0195325464, -0.0208444335, 0.00911033, -0.0546328239, 0.0196054298, -0.0207278226, -0.00180020113, 0.0135999, 0.0339341573, 0.0280015096, -0.0432339795, 0.00923423, 0.00209902, -0.00798064843, -0.0693842694, 0.0170836896, 0.00728097558, -0.0113186734, -0.00154055678, -0.00924880709, -0.0142121138, 0.0195325464, 0.00298454403, -0.0252028164, -0.0341965333, -0.00185395207, 0.0141683845, 0.0233078673, 0.0150867058, -0.000271715573, 0.00108868442, -0.0390650928, -0.0224186983, 0.0238180459, -0.0473154075, 0.0306107067, -0.0166609716, 0.0273892954, -0.0146712745, 0.015553155, 0.0147150047, -0.00633350108, -0.0121422475, -0.0269811526, -0.0072080926, -0.00430372, -0.019197287, 0.0221271683, -0.0155240018, 0.00830862, 0.0179145522, 0.011194773, -0.0156843439, -0.00515644671, -0.0221417453, -0.00709512457, -0.0199698433, 0.0182935428, 0.0148899229, 0.00760894734, -0.0261502899, 0.0121859768, 0.0117486808, 0.0470238775, -0.0142995734, -0.00687283278, -0.0163257103, 0.00702224206, -0.0129366685, -0.0244302601, 0.0318642892, 0.0244448371, -0.0139132952, 0.010903242, -0.0351877362, -0.0194159336, 0.0207278226, -0.013009551, -0.00553179206, -0.00809726119, 0.00731012831, -0.013884142, 0.0153928129, -0.0327680334, 0.0272435304, -0.0166901238, -0.0166609716, -0.0187162608, 0.00862930436, 0.00271670031, -0.00510907266, -0.0190806743, 0.010611712, 0.015407389, 0.0141829615, 0.0133812521, -0.00376803242, 0.00138385908, -0.024124153, 0.03836542, -0.0192847457, -0.00238690642, 0.0557406396, -0.00960593112, 0.0358291045, -0.0103128934, -0.00386277982, -0.0255089235, -0.0139060067, -0.0167192761, -0.00228122645, -0.0211213883, -0.00521110836, 0.00900829397, 0.0366453901, 0.0023395326, 0.0211068112, 0.0114352861, -0.025421463, -0.0237743165, 0.019197287, -0.0641950294, 0.00517466711, -0.00454423251, -0.00733199343, 0.0235993974, -0.00613671821, 0.0173897967, -0.00661045499, 0.0117341047, -0.00209902, 0.00388828875, -0.00303191761, 0.00660681119, -0.000690107467, -0.0420387052, 0.00819200836, -0.0133375227, -0.00510907266, -0.0124046244, -0.0172003023, -0.00494508678, -0.0096642375, -0.0159612969, 0.0215586834, -0.00126906892, -0.00256546889, 0.00972983241, 0.0116830869, 0.00887710508, -0.0204362907, -0.0238471981, 0.0132063339, -0.0042563458, -0.0163257103, -0.0274330247, 0.0448373966, 0.0289781373, -0.0149846701, -0.0156260375, -0.0137821063, 0.0102400109, 0.00344734872, 0.0131771807, -0.00041725309, 0.037636593, -0.0131990453, 0.025421463, -0.00060857, -0.0182060823, 0.00544433296, 0.0109396838, -0.0120256348, -0.0146639869, 0.0144744916, -0.0192410164, -0.0120402118, -0.02543604, -0.00184939697, 0.0168358888, 0.00671613496, 0.0209464692, 0.015407389, 0.0312229209, -0.026602162, -0.00595451146, -0.022389546, -0.000180384523, -0.00194596639, 0.00962779671, 0.00553179206, 0.0234536324, 0.0132573517, 0.0173752215, -0.0110125663, 0.0542829894, 0.00494144298, -0.00223385287, -0.0145619512, 0.0109761255, -0.00860015117, -0.0165880881, 0.0196491592, 0.00376074412, -0.00438389042, 0.0113624027, 0.00474830391, 0.0199844185, -0.00204982422, -0.0222729333, -0.00385549152, 0.0111729084, -0.0214566477, -0.00122898351, -0.0225644652, 0.0145838158, 0.000596271071, -0.00879693404, 0.0145692388, 0.0108230719, 0.00951847248, 0.0259753726, -0.0134395584, -0.0170982666, -0.0102910288, 0.0122734364, 0.00378989708, 0.00268390309, 0.00578688132, 0.0258296058, 0.0388901755, 0.00126906892, -0.00538967084, -0.0138404127, 0.031543605, 0.0188766029, 0.0172586087, -0.00415431, -0.005305856, 0.005087208, -0.00449685892, -0.00477381283, -0.00687647657, -0.0013146206, 0.0287303347, -0.0148753459, 0.00970796682, -0.0200864542, 0.00155695528, -0.00389193278, 0.0123536065, -0.026310632, -0.0214858018, 0.0120547879, -0.00326514221, -0.00659952266, 0.0023231341, 0.0237305872, 0.0169670787, -0.0159029905, 0.00644282531, -0.0377823599, 0.00333802472, -0.0196345821, -0.0138112595, 0.00444584107, -0.0128856506, 0.0181040466, 0.0163257103, -0.0144526269, -0.00887710508, 0.0306981672, -0.0129876863, 0.0109542599, 0.00253084954, 0.0102035692, 0.00580874598, -0.0117195277, 0.0106408652, 0.002017027, 0.00330704963, -0.0169670787, -0.0166609716, -5.07900877e-05, 0.0133739635, -0.0117486808, -0.000166946789, 0.00389557704, 0.00128728955, 0.0150575526, 0.00657037, 0.031252075, -0.00962779671, 0.00688740937, 0.00638451893, -0.000818107626, 0.0103347581, 0.0370243788, 0.0209173169, -0.0048977132, -0.0223603938, -0.00014064071, -0.00748504698, -0.0133593874, 0.00335806748, 0.0317185223, -0.00566662522, 0.00545526529, -0.0425051525, 0.0131115867, -0.000790776627, 0.00897914078, 0.0123098772, -0.0161945224, -0.0088187987, 0.0156260375, -0.00842523295, 0.0310480036, 0.00376438815, 0.0131334513, -0.0140663488, -0.00680359406, 0.00469364179, 0.0178854, 0.00521110836, -0.0174189508, 0.0138695659, -0.0340799205, -0.017302338, 0.0159175675, 0.00253996, 0.00575408433, 0.0158301089, 0.0045624529, -0.00413973397, 0.028351346, 0.0208007041, -0.0214858018, -0.0155094247, 0.0163548645, 0.00290437299, -0.0155094247, -0.00177560328, 0.0257713012, 0.0333802477, -0.0200427249, -0.0144307623, 0.0257129949, 0.00357489334, 0.0212963074, -0.0284533817, 0.0170253832, -0.0292842444, -0.0256109592, -0.00417981902, -0.0182060823, 0.0150429765, 0.0309022386, -0.0383945741, 0.00420168415, -0.0078640366, -0.00519288797, -0.0271706469, -0.00773284771, -0.00872405153, -0.00463169161, 0.0225498881, 0.00824302621, -0.0106190005, 0.00560103077, -0.0149555169, 0.0491812043, -0.0249987449, 0.0365287773, 0.0154219661, -0.0203779861, 0.00655943714, -0.0201593377, -0.021500377, 0.0194450878, 0.0100432271, -0.0077620009, 0.0069165621, 0.0395315439, 0.0104003521, -0.0011770546, 0.00746318186, -0.0290947482, 0.00256000273, 0.0258150306, -0.018031165, 0.00105497614, -0.00527305901, -0.00154328987, 0.0284533817, 0.0054078917, 0.00771098305, 0.00951847248, 0.00905202329, 0.0113040973, -0.0153199304, -0.0245322958, -0.00780573, 0.0119746169, 0.0278411675, -0.00320865819, -0.000747502549, 0.019328475, -0.00752148824, -0.0142922848, -0.0310480036, 0.0244594123, 0.0102472985, -0.00426727859, 0.0144453384, -0.000232427279, -0.0054078917, -0.000542064605, 0.0219668262, -0.010094245, -0.00615129434, 0.0141829615, 0.0144016091, -0.00885524, -0.00887710508, -0.0177542102, 0.024415683, 0.0276662484, -0.0123900482, 0.0102910288, -0.00280415942, -0.0172586087, -0.0378115103, -0.00229580305, -0.00660681119, 0.00177742529, 0.0102181453, -0.0274476018, -0.0144744916, -0.0278411675, -0.000108868437, 0.046965573, -0.00369332754, 0.00346556935, -0.00378625304, 0.00121531799, 0.0135197295, 0.0165589359, -0.012572255, -0.0122880125, 0.013658206, 0.0101962807, -0.0168796182, 0.0160487574, -0.00536416192, 0.00575772813, -0.00755792949, -0.0116102044, 0.00882608723, -0.0229143016, 0.0262377486, -0.0235556681, 0.00852726866, -0.0253923107, -0.00385549152, -0.0126961553, -1.82562462e-06, 0.00239966088, -0.00375709985, -0.0416305624, -0.029502891, 0.00607476756, 0.00889897, -0.00716800755, -0.00594357913, -0.0251736622, 0.0299401879, 0.00478838943, 0.0270540342, -0.00934355427, 0.00281326985, 0.000400171237, 0.0407851227, -0.0141246552, 0.017010808, 0.015115859, -0.00652299589, -0.00337628811, -0.00184575282, -0.0217919089, 0.0199261121, 0.0172731858, -0.00954033714, -0.00978813786, 0.0176813286, -0.00444584107, 0.017302338, -0.0141902491, -0.01221513, 0.0103711989, 0.00204071379, 0.0364704728, 0.0086147273, 0.0224770047, -0.0190806743, -0.0298818815, -0.0315144509, 0.0179582816, -0.0234827865, -0.01242649, -0.0182789657, -0.00923423, -0.0127325971, 0.00679266173, -0.0188328736, 0.0237743165, -0.0352168903, 0.00670884689, -0.0188037194, 0.0127690379, 0.00235593133, -0.0369660743, 0.0110271433, -0.00565569242, 0.00190588098, 0.00732834917, -0.0159758739, 0.0163111333, 0.0398522243, -0.0187745672, 0.0248238258, -0.00400125654, -0.00583789917, 6.86121712e-05, -0.00152689125, 0.0121641122, 0.0475777872, -0.0258004535, -0.00348743424, -0.022229204, 0.000174348927, 0.0012863786, 0.00450779125, -0.0174043737, 0.0236285515, -0.0163694397, -0.00188401621, 0.0244011059, 0.020057302, 0.00258186739, 0.0245468728, 0.0102837402, 0.0245322958, -0.0167047, -0.0101962807, -0.0243136473, 0.036791157, -0.0115008801, -0.00261830864, -0.0287303347, -0.00951118395, -0.00811183732, 0.00895727612, 0.0298527274, -0.00695664762, -0.00692020636, 0.00706232758, 0.0125431018, 0.00914677139, 0.034313146, -0.0118069872, 0.029357126, -0.0174772572, -0.0217336025, -0.0381905027, -0.0194013584, -0.0243719537, -0.00264017354, -0.0115081687, -0.022243781, -0.0296778101, 0.0093289772, 0.018453883, 0.00537145045, 0.0408434309, -0.0110562956, -0.00667240564, -0.0129439561, 0.00981000252, 0.000856370956, 0.0149190761, 0.000447544939, -0.0187162608, -0.0180020109, 0.0136436298, 0.0193722043, 0.00735385809, 0.0155385779, 0.0116247805, 0.0301734116, 0.0176959038, 0.0224332754, -0.0177687872, 0.00538967084, 0.00225571753, 0.0208735876, -0.0074230968, -0.0335843191, 0.0216024127, 0.00480296556, 0.0143360151, -0.0124119129, 0.0425343066, 0.000685096777, 0.00763810053, 0.0217481796, -0.00779844215, -6.93523834e-05, -0.0256692655, -0.00230309134, 0.0125431018, 0.0159029905, 0.0031940816, 0.0223312397, 0.0147514455, 0.0103056049, -0.0108813774, -0.0122297062, -0.00097116112, 0.0137966834, 0.00414702203, 0.0206112098, -0.00525483815, -0.0195325464, -0.0110927373, 0.00239783875, 0.00035963027, 0.0167921595, 0.00310297823, 0.00530221174, 0.00271123415, 0.00609298842, 0.0146639869, 0.0160924867, 0.0024269917, 0.00598730845, 0.025421463, 0.000539331522, 0.0194450878, -0.000351886469, 0.00483576301, -0.00197329745, -0.0238326229, 0.00515280245, 0.0150283994, 0.00162710482, -0.00791505445, -0.00809726119, 0.00642824871, 0.0174481031, -0.00991203822, 0.011617492, -0.00107046368, -0.0232204087, -0.00136199431, 0.00665782904, -0.00844709761, -0.00469728606, 0.00711334543, 0.00695664762, 0.00840336829, 0.0163257103, 0.00349472254, -0.00839608, 0.0150429765, -0.00367692905, -0.00410693651, 0.00344734872, 0.00442397594, 0.00997763313, 0.00812641438, -0.0267625041, -0.0086147273, -0.00173551776, 0.0243573766, 0.00899371784, 0.0142048262, -0.00634807767, 0.0163402874, 0.00252173934, -0.000659587851, -0.00790776592, 0.00198240764, -0.00214274949, -0.00300823082, -0.00846167374, -0.0197366178, -0.00163803727, -0.00262377504, 0.0209902, 0.0112822326, 0.000271260069, -0.000774833548, -0.0125431018, 0.00755792949, 0.00972983241, -0.0263397843, 0.0055281478, 0.0176375974, 0.00479203323, -0.0117195277, 0.00203706976, -0.0134104053, 0.005087208, -0.0152178947, 0.00462075928, -0.0222729333, -0.00390650937, -0.0214274954, -0.00689469744, 0.00841794442, -0.000305879308, 0.00301369699, 0.00962050818, 0.00217736885, -0.0096642375, 0.0122661479, -0.00819200836, 0.0183810014, 0.0120912297, 0.0133229457, -0.0255963821, -0.0016015959, 0.00325238775, 0.0112895202, -0.00240694918, 0.0127909025, -0.0211068112, 0.00113879121, 0.013009551, 0.0207861289, 0.00129002263, -0.00229033688, -0.00632621301, 0.00553543633, -0.00133466325, -0.0205091741, 0.00551721547, 0.0233078673, 0.0171274189, 0.0197074655, -0.018031165, 0.00969339069, -0.0115446094, 0.0152470479, -0.00321594626, 0.000868669944, 0.00577230472, 7.51602201e-05, 0.0174772572, -0.00537145045, -0.00529856794, -0.0134759992, 0.00626061857, -0.0271706469, 0.0093289772, 0.010531541, -0.00403040973, 0.00485398341, 0.0239200816, -0.0174772572, -0.0269811526, -0.013301081, -0.0112895202, 0.00845438614, -0.00522932922, -0.00523297349, 0.00924151856, 0.0126086958, 0.0011579229, -0.0078640366, 0.00519288797, 0.00509814033, 0.00568120135, 0.0267041977, 0.018322695, -0.00524390582, -0.00981000252, 0.008505404, -0.0149263637, 0.0155968843, -0.0302025639, -0.00643189251, -0.00573950773, -0.0161653683, -0.0156406146, 0.00392473023, 0.00034095408, -0.0128200557, -0.00630434789, -0.0288615245, -0.00633714534, 0.0096642375, -0.00471550645, 0.00745953806, 0.00782759488, -0.00538238278, 0.00692020636, -0.0184976142, -0.00545890955, 0.00556823332, 0.0135051524, 0.000994848, 0.00576866092, -0.00984644424, 0.00708419224, 0.00117614353, 0.00561560737, -0.0219085198, -0.0100650918, 0.0227976888, -0.0206549391, 0.0165152047, -0.0132136224, -0.0224915817, -0.011551898, 0.0195908528, -0.00363866566, -0.00792963058, -0.00887710508, 0.00678901747, 0.00094018603, 0.0129002267, -0.00661774352, -0.0174043737, -0.0113624027, 0.010677306, -0.011486304, -2.40142599e-05, 0.00872405153, 0.0075433529, 0.0238471981, 0.00482483068, 0.00579417, 0.0153782368, -0.0113040973, 0.0122734364, 0.00469364179, -0.00405227439, -0.00501796976, -0.023395326, -0.022374969, 0.0101671275, -0.0171274189, -0.0176084451, 0.00289526279, -0.0022210984, 0.000268071453, 0.00305196038, 0.0161653683, 0.00373887923, 0.0126159843, 0.0184247307, -0.0241824593, -0.0106554413, 0.0175064094, 0.0158884153, -0.00477745663, -0.000331388233, -0.0112822326, 0.010903242, 0.0220834389, 0.00631892448, 0.00396481529, -0.0069129183, 0.00529127941, -0.00693842722, 0.004034054, -0.00550628314, 0.0191535577, -0.0298818815, 1.9772262e-05, -0.0163840167, -0.0148534812, -0.00556823332, 0.0160196032, -0.0197511949, -0.00336171174, -0.0162236746, -0.00885524, -0.00686190045, -0.00190223684, 0.0136873592, 0.0285554174, -0.0166172404, 0.0287594888, -0.0138258366, -0.0121203829, -0.0127398847, -0.0035949361, 0.000183231503, 0.000329110655, -0.0228705723, 0.008716763, 0.0139278723, 0.00344006042, -0.00271670031, 0.0125503903, 0.0209610462, -0.0102983164, 0.0199406892, -0.0143578798, 0.00226118392, 0.0156843439, 0.00779115409, -0.0124775078, 0.0145182209, -0.00622782111, -0.0235702451, -0.024284495, 0.00806081947, -0.0138258366, -0.021223424, 0.00495237531, 0.00553908059, -0.0193722043, 0.0235993974, 0.0151012819, -0.000200768889, -8.02136e-06, 0.0126305614, -0.0194888171, 0.00648655463, 0.0199698433, 0.0226665, 0.0075287763, 0.00316310651, -0.00568120135, -0.0163694397, -0.022972608, 0.0211651176, 0.0185559187, -0.0217627548, 0.0115737626, 0.0254651941, -0.00750691164, -0.00818472, -0.00982458, -0.0280015096, 0.0130532803, 0.00122351723, -0.00423448114, 0.0122369947, 0.00395023869, -0.0197074655, 0.0111656198, 0.0130678564, -0.00683639152, -0.0102108577, -0.0133885406, 0.00359858014, 0.00868761074, -0.00825760234, -0.024707213, 0.00543340063, 0.00948931929, -0.00175191637, -0.00592171447, 0.0177104808, -0.00467177713, 0.0360331759, -0.0140736373, -0.0193867814, 0.00103128934, 0.000162049982, 0.0154656954, -0.016427746, 0.0370243788, 0.018322695, -0.0105534056, 0.00575044, -0.0048977132, 0.00115610089, 0.010531541, 0.0287303347, 0.0162236746, 0.0319225937, 0.0113988444, -0.0162382517, 0.00969339069, -0.00397939188, 0.010677306, 0.0145255094, 0.0123536065, 0.00899371784, -0.00580145791, -0.00572128687, -0.023264138, 0.00707326, 0.0125868311, 0.00247800956, 0.00458067376, -0.0178854, -0.011632069, -0.0193430521, 0.0121058058, 0.00606383523, 0.00833048578, 0.0126742907, -0.0192701686, 0.0167047, 0.000629979302, 0.0215295311, -0.0134395584, -0.0127690379, -0.0271269176, -0.037082687, -0.00651570782, 0.0175209865, 0.0151304351, 0.00392473023, 0.0154365422, -0.00629341556, -0.0263980906, -0.00715343095, -0.00874591619, -0.00405591866, -0.00620231219, -0.0186579544, -0.042738378, -0.0112822326, -0.0187454149, -0.020334255, 0.0128564974, 0.0207132455, -0.0166755468, 0.0129439561, -0.00681452639, -0.0250716265, -0.00698215654, 0.00219012331, -0.00641731638, 0.00819200836, -0.0150721297, 0.00224114116, 0.0203634091, 0.00377532048, -0.0146566983, 0.014758734, 0.00920507684, 0.00377896475, 0.0127544617, -0.0238909293, -0.0216315668, 0.00403040973, 0.00115883397, -0.0187308379, 0.0094601661, 0.0141319437, 0.00395388296, -0.00988288596, -0.00737936702, 0.00249623042, 0.0224478524, -0.00161070633, 0.0266750455, 0.00734657, 0.0113040973, -0.0100869574, 0.0266458914, 0.0248675551, 0.0118798697, -0.0271706469, -0.0200864542, 0.00134195155, -0.00230673538, 0.00863659289, -0.0143068619, -0.0118871583, 0.026602162, 0.00897914078, 0.00188037206, 0.00271487818, -0.0101525513, 0.0030847576, 0.0104149291, 0.020931894, 0.000141893383, -0.00589984935, 0.0097662732, 0.0160050262, -0.00477016857, 0.0115883397, -0.00767454179, 0.0199844185, 0.00995576847, 0.00731012831, 0.015115859, 0.0181915071, -0.0127253085, 0.00446770573, -0.00969339069, 0.000351203198, 0.0252756979, 0.0280889682, 0.00417617522, 0.00254542613, 0.00462075928, 0.00489042513, -0.00239966088, 0.0201156083, -0.0087094754, -0.00931440108, -0.00728461938, -0.0139278723, 0.0010558872, 0.0152762011, -0.0165735111, 0.0119454646, 0.0162090976, 0.00995576847, -0.00620595645, 0.00918321218, 0.0225936174, 0.0106554413, -0.00613307394, 0.0101015335, -0.00619866839, -0.0146639869, -0.00943830144, 0.00964966137, 0.0206840932, -0.0161653683, 0.0236577038, -0.0242116116, -0.00883337576, -0.00432922877, -0.00384091493, 0.00313941948, -0.00929253642, -0.0146931401, 0.0059362906, -0.0223166626, -0.00235593133, 0.00503619, -1.17651371e-05, -0.00582332257, 0.00563382776, -0.00215914822, -0.0133302342, -0.0134832878, 0.00420532795, -0.00384091493, 0.00569213415, 0.014598392, -0.00392108597, 0.0304940958, -0.011194773, 0.0206257869, -0.00321776839, -0.022520734, 0.000467815436, 0.0180748943, 0.0091249058, -0.00933626574, -0.0168213118, 0.0253340043, -0.0168358888, 0.0109469723, 0.0350128189, 0.00387735618, -0.00599095272, -0.0121932654, -0.0137675302, -0.0125431018, -0.00704775099, -0.00781301875, -0.0209902, -0.0387152582, 0.015115859, -0.0121203829, 0.0246489085, 0.0156114604, 0.0197949242, 0.00106408645, -0.000869125419, -0.00873134, 0.0120766526, 0.0288469475, -0.0137675302, 0.00587434042, 0.011777834, -0.00395023869, -0.00219012331, 0.000202932599, 0.0204071384, 0.00915405899, 0.0079660723, -0.00539695937, 0.00235410919, 0.000355075084, -0.0044749938, 0.00145036448, 0.022098016, 0.0022374969, -0.0166755468, 0.00414702203, 0.0137966834, 0.00530221174, -0.000823118258, -0.0140663488, 0.0114571508, -0.00739029935, 0.0104440823, -0.00331616, -0.000397210359, 0.023409903, 0.000273765414, 0.0159612969, -0.0115300333, -0.00217372458, 0.0186288022, -0.000773011474, -0.0104149291, -0.00112330366, 0.0159758739, 0.00703317439, 0.000625424145, 0.00969339069, 0.0131042982, 0.0211505406, 0.00967152603, -0.00908846501, 0.0227248054, -0.0132865049, -0.00580510218, -0.00565933669, 3.65551969e-05, 0.0203925613, -0.0112239262, -0.00364413182, -0.0168213118, -0.000333438074, -0.00254542613, 0.0174918324, -0.00374252349, 0.00609663269, 0.00312302099, -0.00890625827, 0.0187016837, 0.0154219661, 0.0217044484, 0.0138987191, 0.0127471732, -0.0173897967, -0.0190952513, -0.00288615236, 0.00178562466, 0.0282784626, 0.00739394361, -0.0060529029, -0.0231329482, -0.0516883656, 0.000593993464, 0.00215732609, 0.00815556664, 0.00619866839, -0.013009551, 0.00941643678, -0.0110271433, 0.0225790404, -0.0092196539, 0.0204508677, 0.0255380757, -0.0110854488, 0.00216097012, -0.00400490081, 0.0286428761, -0.0258150306, 0.00752148824, -0.0147004277, -0.00760894734, 0.00839608, 0.0150575526, 0.0194888171, -0.00564476, 0.0103711989, -0.0118580051, -0.00256729079, -0.0121203829, 0.00108959537, 0.0200427249, 0.0220251326, 0.0184684601, -0.0173460674, -0.0123025887, 0.00194961054, 0.0159029905, 0.0113696912, -0.0107429009, 0.00916863605, -0.0155385779, 0.00226118392, -0.00622053305, 0.00270941202, -0.0168213118, 0.00707690418, 0.015990451, 0.00822845, -0.00374252349, -0.00181659975, -0.00375709985, -0.00655579334, -0.0122588594, 0.011486304, 0.00158884143, -0.00587069662, 0.00964966137, 0.0465282761, 0.0245906021, 0.00987559743, -0.00566662522, 0.0128054796, 0.0196783114, 0.000143715457, 0.0166463945, -0.00576137239, -0.0045333, -0.000849993725, -0.0120912297, -0.00459160609, 0.00344006042, -0.00810454879, -0.00865116902, 0.00189677067, 0.00267297076, 0.0118069872, -0.0209464692, -0.0324765034, 0.00294081448, 0.00592900254, -0.0199115369, -0.00491957786, -0.0182789657, 0.000423402584, -0.0219085198, -0.00973712, 0.00264199567, -0.00854184479, 0.00352387549, 0.00126269169, -0.0124192014, -0.0262960549, 0.00748504698, 0.00720080454, 0.00499610463, 0.0190077908, -0.00909575354, -0.0107647656, -0.0224186983, -0.0126014082, -0.00142212247, 0.0127544617, 0.00232677814, -2.31601662e-05, -0.0168358888, 0.00296085724, -0.0211359654, 0.000860015105, 0.0187891442, -0.00763810053, -0.000195074928, 0.0154219661, -0.0121422475, 0.0306981672, 0.00486127194, 0.0113040973, -0.0113040973, 0.00172458543, -0.000951118418, -0.0192410164, -0.00520746456, 0.0104732346, 0.00981729105, -0.00876778085, -0.0135707473, -0.00575408433, 0.00174280605, -0.00446406147, 0.00419804, -0.00857099798, -0.0145619512, 0.0103711989, 0.00329429517, -0.000410875859, 0.00311937695, 0.00566662522, 0.00166719034, -0.005087208, 0.00426727859, 0.036907766, -0.0034929004, 0.0101525513, 0.0188766029, -0.0178854, -0.00579052558, -0.00833048578, 0.0159612969, 0.0378698185, 0.00680359406, -0.0268499628, -0.00712427776, 0.0088187987, 0.0157426503, -0.000253494916, 0.0153199304, 6.7188681e-05, -0.00408142759, 0.0177104808, -0.0157718025, -0.0296049267, -0.0186288022, 0.00585247576, 0.00959135499, 0.0371409915, -0.00986102, 0.0184393078, -0.00931440108, 0.0185413435, 0.00280780368, 0.0084762508, 0.0116466451, 0.0100505156, -0.0082721794, -0.0196054298, -0.0141975377, 0.00678537367, 0.00150684849, -0.00959135499, 0.0269374233, -0.0166609716, -0.0115373218, -0.013803971, 0.0206112098, -0.018031165, 0.00928524788, -0.00379718537, -0.0218793675, 0.00635536574, 0.0127544617, 0.00502525782, 0.0127325971, 0.022972608, 0.012652426, -0.0104513699, -0.0181332, 0.00229944731, -0.00703681866, 0.0160633326, 0.0104513699, 0.000440712203, -0.00300094252, 0.00766725326, 0.0237014331, -0.00143761, -0.010691883, 0.0195617, 0.0158592612, -0.010546118, 0.0126597136, 0.00536416192, -0.0230017602, 0.0169962309, -0.0106044235, 0.00401583314, 0.00653392822, -0.00432922877, -0.0346046761, 0.000244840106, 0.0148826344, -0.00580510218, 0.00780573, -0.00389557704, 0.0178708229, -0.0174189508, 0.00239783875, 0.00214457163, 0.0153782368, -0.0148826344, 0.0197366178, -0.0244739894, 0.0185121894, 0.00178653561, 0.011551898, 0.00929253642, -0.0108449366, -0.00389193278, -0.0071169897, -0.00110143889, 0.000412697933, -0.0131261628, -0.00368968351, 0.0109469723, -0.0153928129, 0.00358400377, -0.000846805167, -0.00503619, 0.00237961812, 0.0072190254, -0.0238034688, -0.0190660972, 0.00348561211, -0.00283331261, 0.0166026652, -0.0165443588, -0.0069019855, -0.0144016091, -0.0107793417, 0.00768911839, -0.00657401374, 0.00257093506, -0.010691883, 0.0128710736, -0.014175673, 0.00305742654, 0.00355302845, -0.0235119388, 0.00538967084, -0.00878235791, -0.00919778924, -0.00741945254, 0.00680359406, 0.0167630073, 0.0214129183, -0.0135999, 0.00741945254, -0.0246780608, 0.00196054298, -0.0160924867, 0.0100359395, -0.00448228233, 0.0081701437, 0.0205966327, 0.0037133703, -0.0111073134, 0.0135270171, -0.0184830371, 0.0124483546, 0.000432968402, -0.0059472234, 0.00368239521, 0.00139752461, -0.011340538, 0.0113769798, -0.00903744716, -0.00154146773, 0.00897914078, -0.0139351599, 0.0201884899, 0.000404726394, -0.021514954, 0.00854184479, -0.00153235742, 0.0125139486, 0.0161945224, 0.00160706218, -0.00897914078, -0.0111218905, 0.00296996743, -0.0126159843, -0.0178708229, -0.0091176182, -0.0056411163, 0.0154948486, 0.02413873, -0.0216607191, 0.000442078745, -0.00598002039, -0.0049997489, -0.0113186734, -0.00959135499, -0.00242334767, -0.00327425241, -0.0137893949, -0.0278848968, 0.00537509425, -0.081395328, -0.00169361033, 0.0160779096, 0.0119527522, -0.00272398861, 0.0115883397, 0.0054078917, -0.0072226692, -0.027316412, 0.00804624334, -0.00644646911, -0.00279322709, -0.00560467457, 0.00962779671, -0.0216752961, 0.0139351599, 0.0164423231, -0.000207032237, 0.00342183979, -0.0129002267, -0.00134559569, -0.0287449118, 0.00538602704, 0.00814099051, 0.00319772563, -0.0097662732, -0.00544433296, -0.00998492166, -0.0227976888, -0.0236139745, 0.00327060837, -0.0188911799, -0.0104586584, -0.0114717269, -0.00900100544, -0.00434380537, -0.0038372709, -0.0189494863, 0.0179437045, 0.00446406147, 0.00447135, -0.00591078168, -0.00548077421, -0.0264709741, 0.00887710508, 0.0064901989, -0.010108822, 0.00520017603, -0.0150429765, 0.00119800831, -0.00761623541, 0.0206257869, -0.00601646164, 0.00948931929, -0.0227976888, 0.00586705236, 0.00967152603, -0.0269228462, 0.0325056575, -0.00986102, 0.000150206557, -0.00185759622, 0.0045333, -0.015844686, 0.0182643887, -0.00107957411, 0.0140663488, -0.0224915817, -0.0138768544, -0.000818563101, -0.00790776592, 0.0159612969, -0.00865845755, -0.00553908059, -0.000568940071, 0.00647197803, -0.00103675551, -0.0159612969, -0.00124720414, -0.00866574515, 0.0115737626, -0.005087208, 0.0131042982, -0.00152233604, 0.012200553, 0.0114571508, -0.00849082693, 0.0141392313, -0.0125358133, 0.00692020636, -0.0147733102, 0.0184393078, -0.0109761255, -0.00317768287, -0.00164805865, 0.0160196032, -0.0222583581, -0.0093289772, -0.0102472985, 0.000175601599, 0.00670155836, -0.000543886679, 0.00219012331, -0.00949660782, 0.0228414182, -0.0094601661, 0.0178562459, 0.00267297076, -0.0120766526, 0.0183664244, 0.0225498881, 0.0107283238, 0.0176521745, -0.0102983164, 0.0488022119, -0.00429643132, -0.013738377, -0.00329247303, -0.0108376481, 0.00114881259, 0.000661409926, -0.0243573766, 0.00262013078, -0.00580874598, -0.029080173, 0.00472643878, -0.0222146269, -0.00894998759, -0.00160615111, 0.00854184479, -0.00324327732, -0.00787132513, 0.00187490578, 0.00803895481, 0.00801709, -0.00361497886, -0.00553179206, 0.0120985182, 0.00142303354, -0.00141483417, 0.00434380537, -0.00305378251, 0.00102764519, 0.0077474243, -0.028482534, -0.0238326229, -0.0244448371, 0.0189640615, -0.0237305872, -0.00525848242, -0.0278848968, 0.0197074655, -0.00165990205, 0.0070003774, -0.00229215901, -0.00677079707, 0.00616222713, -0.0172148794, -0.00129457784, 0.00707690418, 0.0160779096, 0.0301442593, 0.0176230222, -0.000817652093, 0.0161945224, -0.0176084451, 0.00129731093, 0.0119819054, -0.022229204, -0.00317768287, 0.00585247576, 0.0228997245, 0.0037206586, -0.00854913332, -0.0086147273, -0.0117268162, -0.0109396838, -0.024415683, 0.0166755468, 0.000874136109, 0.0163548645, 0.00182297698, -0.00406685099, -0.0127034439, -0.00482483068, 0.00141301216, 0.0197220407, 0.0158009548, 0.0025508923, -0.0199115369, -0.0136436298, 0.0105096763, 0.0224041231, -0.00197694148, -0.00411058078, -0.00758708268, -0.00196054298, 0.0198095012, 0.00513458159, -0.0128419204, 0.0248821322, 0.000363502157, -0.00134832878, 0.000301324151, -0.011551898, 0.00361680076, -0.000519744295, -0.00220834394, 0.00270394585, 0.0122588594, 0.00506534334, -0.0161070619, -0.0046608448, -0.0346921347, -0.00857099798, -0.00156879879, -0.00152689125, 0.0251007807, -0.0102181453, -0.014970094, 0.0071060569, 0.000356213888, 0.0274330247, -0.00639909552, 0.0165297817, -0.0176230222, 0.0420678593, 0.000939274963, 0.000398349162, -0.007014954, 0.0166609716, 0.0162965581, -0.00346556935, -0.00107410783, -0.00570671028, -0.00665782904, -0.00416888669, 0.0153928129, -0.000787588, 0.00860015117, 0.0126961553, -0.005305856, -0.0100796688, 0.00555365672, 0.00714614242, 0.00033662669, 0.000718805, -0.0231329482, 0.0126597136, -0.00300458679, -0.00420897221, 0.00258733355, 0.00302280742, 0.0024269917, -0.0116612222, 0.00313759758, -0.0186871085, 0.0298527274, -0.0076453886, 0.00332162622, -0.0121495351, -0.0129366685, 0.0179291293, 0.00371701457, -0.0284971111, 0.0012863786, 0.010611712, -0.041718021, -0.00374252349, -0.0235265158, -0.000260099914, -0.0162528288, -0.018322695, -0.0225498881, 0.010108822, -0.0174626801, -0.00129731093, -0.0126232728, -0.0103056049, 0.0112895202, 0.0079660723, -0.013446847, -0.0281472746, 0.0226227697, 0.00926338322, 0.00897914078, -0.0275787897, 0.00245067873, -0.0234536324, -0.0248384029, 0.0023304224, -0.00409964845, -0.00835235, 0.00729919598, -0.0174772572, -0.00137474877, -0.0218647905, 0.0049997489, -0.0123317419, -0.00174189499, 0.0108084949, -0.0184393078, -0.00174189499, 0.00259826612, 0.000972983195, 0.00729190791, 0.0197803471, -0.0327680334, 0.00366781862, 0.00415795436, -0.0201593377, -0.0126961553, -0.0108084949, 0.0233224444, 0.0115227448, 0.00324145518, -0.0245322958, -0.0064756223, -0.00839608, -0.00090784434, 0.0195617, -0.00202249316, 0.0216315668, 0.00324692158, -0.0151741654, 0.00374616752, 0.0206986684, -0.0118725812, 0.00647197803, -0.0108376481, -0.0128200557, 0.0173169151, 0.0138768544, -0.00268572522, -0.000642278232, -0.0183955785, 0.00460982695, -0.00678537367, 0.0119527522, 0.00477745663, -0.0209756233, 0.00761623541, 0.00679995, -0.0286866054, 0.0138404127, 0.00278776092, 0.0126961553, -0.017287761, 0.0278848968, 0.00302098528, -0.0134832878, 0.00795149524, 0.00419439562, -0.0191389807, 0.00592900254, -0.0201884899, -0.00475923624, -0.00726639898, 0.000103516119, -0.00153691263, -0.0252319686, -0.0130824335, -0.0125285257, -0.0137092238, -0.00468999753, 0.00323781115, 9.13879921e-05, 0.00548441848, -0.0179582816, -0.00347832381, 0.00534958579, 0.00889168214, 0.0151450122, 0.0653611496, 0.0112968087, 0.0147295808, -0.000110519686, 0.0150575526, 0.0153782368, -0.00422719307, 0.035595879, -0.0244885664, -0.00152689125, -0.00229398091, -0.00822845, -0.00864388049, 0.0402603671, 0.00286246557, 0.00539695937, -0.0109979901, -0.00905202329, 0.0149992462, -0.00992661528, -0.027039459, -0.0162236746, 0.00485762767, -0.00282238, 0.00451872358, -0.00815556664, -0.00352934166, 0.00359311397, -0.00368057308, 0.00702953, -0.0154219661, 0.0215878375, -0.000296996732, -0.00581239024, -0.00768183, -0.00162072759, 0.00149409403, 0.00592535827, 0.01947424, 0.00772555964, 0.031805981, 0.00182206591, -0.0301151052, -0.0110271433, 0.00859286264, -0.0166901238, 0.013155316, -0.0057285754, -0.0118580051, -0.00743402913, 0.00340908533, -0.0366453901, 0.00399396848, -0.00435109343, 0.00489042513, 0.02413873, 0.0409891941, 0.0153782368, 0.00471915072, 0.0186871085, 0.000664598541, 0.0101962807, 0.00718622794, -0.00978085, -0.0024324581, -0.0317476764, -0.0157134961, 0.0155823082, 0.00632621301, 0.000582150067, 0.0199115369, -0.0195762757, 0.00188401621, -0.0166755468, -0.00113879121, 0.0135634588, -0.0287011825, -0.00198058574, -0.0126451375, 0.0108740898, 0.00732834917, -0.00940914825, 0.00143943203, 0.0187016837, 0.00849082693, 0.00452965591, -0.00346010318, -0.0118798697, -0.0123681836, 0.0124337776, 0.00956949, 0.0402895212, 0.00463169161, 0.0148753459, 0.0167192761, -0.00470821839, 0.0155385779, -0.0240366943, 0.0191535577, -0.014824328, -0.000901922642, 0.00988288596, -0.00926338322, 0.00119072013, -0.00751419971, 0.0187599901, 0.00430372, 0.0208735876, -0.00608934416, -0.0365579315, 0.00739394361, 0.00911033, 0.00439117895, 0.0174772572, 0.00311573269, 0.0180603173, 0.00245978893, 0.0248092487, 0.022972608, -0.0031722167, 0.00608934416, -0.0246926378, -0.0197074655, -0.0118288519, -0.0143797444, -0.0162090976, 0.00374616752, 0.0145838158, 0.0332344808, -0.00122716138, -0.00265657203, -0.00917592365, 0.00787861273, -0.00588891702, 0.00394659489, 0.0211505406, -0.00422719307, -0.0153199304, -0.0137821063, 0.0012790903, 0.00748504698, -0.0205674805, 0.0177396331, 0.0189349093, 0.00790776592, -0.00145036448, -0.0106627299, -0.00628248323, -0.0126961553, -0.000869580952, -0.00877506938, -0.00108230719, 0.00609298842, 0.00747047039, 0.0173460674, -0.0211942717, 0.00226665, -0.00911033, 0.0123900482, -0.00918321218, 0.00631892448, -0.00909575354, 0.0157426503, 0.0107283238, 0.0107647656, -0.00962050818, 0.0197949242, 0.0259607956, 0.0253194273, 0.00967881456, 0.0163402874, 0.0290510189, -0.0166755468, 0.0223020874, 0.0167775825, -0.00645011337, -0.00130368816, -0.0203779861, 0.0116539337, -0.0325931162, -0.0126815792, 0.0275204834, 0.00420897221, 0.0422136225, -0.00365870842, 0.0117705455, 0.00611485308, -0.00820658449, -0.00121805107, 0.0150867058, -0.0114425737, -0.0216752961, 0.0123317419, -0.0124556422, 0.0061549386, -0.00504347868, 0.0195033941, -0.00236139749, -0.00459160609, -0.00940186, 0.00624968624, -0.00455516484, -0.00328700687, 0.0138185481, 0.00618044753, 0.0294300094, -0.0125576779, 0.00955491327, -0.00358764781, -0.0102108577, 0.000221608774]
|
14 Feb, 2020
|
Node.js | os.tmpdir() Method
14 Feb, 2020
The os.tmpdir() method is an inbuilt application programming interface of the os module which is used to get path of default directory for temporary files of the operating system.
Syntax:
os.tmpdir()
Parameters: This method does not accept any parameters.
Return Value: This method returns a string specifies the path to the default directory for temporary files of the operating system.
Below examples illustrate the use of os.tmpdir() method in Node.js:
Example 1:
// Node.js program to demonstrate the
// os.tmpdir() method
// Allocating os module
const os = require('os');
// Display os.tmpdir() value
console.log(os.tmpdir());
Output:
C:\Users\gekcho\AppData\Local\Temp
Example 2:
// Node.js program to demonstrate the
// os.tmpdir() method
// Allocating os module
const os = require('os');
console.log("home directory:" + getUserHome());
console.log("temp directory:" + os.tmpdir());
function getUserHome() {
// From process.env
return process.env[(process.platform == 'win32')
? 'USERPROFILE' : 'HOME'];
}
Output:
home directory:C:\Users\gekcho
temp directory:C:\Users\gekcho\AppData\Local\Temp
Note: The above program will compile and run by using the node index.js command.
Reference: https://nodejs.org/api/os.html#os_os_tmpdir
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method
|
https://www.geeksforgeeks.org/node-js-os-tmpdir-method?ref=asr10
|
CSS
|
Node.js | os.tmpdir() Method
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0275038127, -0.00817399565, -0.0113823656, 0.0130906394, 0.0195931, -0.000583583489, 0.0251771323, 0.0280671138, -0.0435701534, 0.0167765915, -0.0135927126, 0.0180746336, -0.0180623885, -0.00984553248, 0.0319367498, 0.0108680474, -0.0303448122, -0.00208176672, 0.0305652339, -0.0198502578, 0.0572118498, 0.0169847682, -0.0149764745, 0.00778825674, -0.0132375872, 0.000321640604, 0.015221389, -6.5007378e-05, -0.0346308, 0.0269405115, 0.0150866862, 0.0276262686, 0.0124538634, -0.0564281233, -0.00424925331, -0.000146852573, -0.0292427, 0.0435456634, -0.0216381289, -0.0274303388, -0.0270874593, -0.0327939503, 0.010476185, -0.0204502977, -0.0157112163, 0.0204870347, -0.0229606628, -0.0422966033, 0.00522278529, 0.0198747497, -0.0175358243, 0.000619937899, 0.031104045, 0.0123803895, 0.00800255593, 0.0285569411, -0.00194094132, 0.0145111391, -0.00881689414, -0.0339205526, 0.01907878, -0.0229974, 0.0348512232, -0.0272344071, 0.008590349, 0.0341654643, 0.0128089879, -9.71044719e-05, -0.0129926736, -0.0111741889, -0.00807603076, 0.0211360548, 0.0137886433, 0.000915365061, -0.0210625809, -0.0437660851, -0.020989107, 0.0133722899, -0.0138743632, 0.00856585801, 0.0138008893, -0.019654328, 0.00923937093, 0.0199114867, 0.0272588991, -0.0210503358, -0.0241729859, -0.0278466921, 0.0481010564, 0.00115109456, 0.0170582421, 0.0208299123, 0.00112889928, 0.015894901, -0.0140947858, 0.0390392505, -0.0213319864, 0.00528401369, -0.0330633558, 0.0280916058, 0.0247852691, -0.000494802254, -0.0411699973, -0.0157479532, -0.00855361205, -0.0433742218, 0.0572118498, -0.00078602, 0.0527054369, 0.00272925734, 0.013960083, -1.411124e-06, -0.0214177053, 0.0269160196, 0.00142968388, 0.0118905623, 0.0130294105, -0.0187236555, -0.0373983271, 0.00574628869, 0.00784948561, -0.0094720386, -0.00224402221, 0.0282385536, -0.0249689557, 0.0161887985, -0.00300019328, 0.0238056146, 0.0352675766, 0.0222136751, -0.0391127244, -0.00914752763, -0.00386045268, 0.0263037346, 0.0255934857, 0.00511563569, 0.0209768619, 0.0249322187, -0.0469989441, -0.00975981262, -0.00179705455, -0.000277250016, -0.0435946435, -0.000601952, 0.0277977083, 0.00159193925, -0.00361553906, -0.0032298, -0.0229851548, 0.0369085, -0.0249322187, -0.00192716497, 0.00600650953, 0.00701065548, 0.0160785876, -0.0276507605, -0.0189563222, 0.00740864035, -0.0188216213, -0.0160785876, 0.0401903428, -0.0305652339, 0.0392106883, -0.0205360167, -0.0250301845, 0.00884750858, 0.0117681045, -0.00955163594, 0.0377901904, 0.00712086679, -0.000507813296, 0.0357818976, -0.00634938851, 0.0064596, -0.0391127244, -0.0149152465, -0.0067290049, -0.011425226, 0.0492766425, 0.00273384945, -0.0176337883, 0.00024701847, 0.0040318924, 0.0303693023, -0.0110517321, 0.0444273502, -0.0200339444, -0.0347042754, -0.0254955199, -0.0402148366, -0.0127967428, -0.0107333446, 0.0467295423, 0.00462274672, 0.0548116937, 0.0281895716, -0.00210319669, 0.00984553248, 0.0256424677, 0.00611978211, -0.0297325272, -0.0145601211, -0.00880464911, 0.017780738, -0.00459213275, -0.0262057688, -0.00762294, -0.0307366736, 0.0293651577, -0.00922712497, 0.0383289978, -0.0261812788, 0.00291906553, -0.0129926736, -0.000639454462, -0.00707800686, -0.0206094906, 0.00537279528, -0.0210135989, -0.00585956126, 0.0207564384, 0.0122028273, 0.0202298742, -0.0180991255, -0.00487990631, -0.0449661613, 0.00133095309, 0.0277732182, 0.00315632578, 0.0129314456, 0.024773024, 0.0409985594, 0.0107149761, -0.0547137298, -0.0236219298, 0.00993125234, 0.0442069285, -0.0307121817, 0.00745762326, 0.0211238097, 0.0224463437, 0.0161765516, 0.028532451, -0.0383779816, 0.00253944937, -0.0222993959, -0.0449661613, 0.0383779816, 0.0101700425, -0.0187726375, 0.0408761, 0.00602793926, -0.0175603144, -0.00353288068, -0.051480867, -0.0128702167, -0.020376822, 0.0148295267, -0.0275038127, -0.0203523319, 0.0079903109, 0.0391127244, -0.00629428308, -0.000280502776, 0.038794335, -0.0315938704, 0.0014113154, -0.00835768133, -0.00197614776, -0.00692493608, 0.0229729079, -0.068722792, 0.011749736, -0.00389718986, -0.00451253541, 0.0134457638, -0.0139355911, 0.023487227, 0.0265241582, 0.00518298708, -0.00281038508, -0.0174256116, -0.0208054222, 0.000653996191, 0.000936795, 0.0066677765, 0.0489337631, -0.0256914515, 0.0126253031, 0.00359717058, -0.0079903109, 0.00318694, 0.0091352826, 0.0387698449, 0.00995574333, -0.0246260762, -0.0181848444, -0.0131028844, -0.0146703329, 0.0162990093, -0.0297570191, -0.0282875355, -0.0319122598, -0.00768416841, 0.0418312661, 0.0229851548, 0.0102680083, 0.00104164868, 0.0428354107, -0.00168684334, 0.067253314, -0.0211727917, -0.014609104, -0.0377901904, 0.0091352826, -0.0333327577, -0.00242005382, -0.0129804276, -0.00619019475, -0.0108741699, -0.012110984, -0.0214299522, -0.0199849606, 0.0275283046, 0.0302713383, -0.0137763973, 0.00487684458, -0.000122074183, 0.0199972056, -0.00831482094, -0.00836380385, -0.0236954037, -0.0113456286, 0.0187359, -0.0288263466, -0.00269098976, 0.00463805394, -0.0224830806, 0.00930059887, 0.015931638, 0.00799643341, -0.0046411152, 0.0171929449, -0.0133110611, 0.0245281104, 0.0183317922, 0.00836380385, -0.0136784324, -0.0215524081, 0.0433987156, 0.000760763302, -0.00561158592, 0.0377412066, -0.00788009912, 0.0422476195, 0.00598814059, -0.0214911811, -0.0109721357, 0.0035910476, 0.0440354906, 0.0269894935, 0.0229361709, -0.0158214271, 0.0126008112, -0.0220544823, -0.0179766677, -0.0188706033, -0.05726083, -0.0231565945, -0.0183317922, 0.012711023, 0.00169755833, 0.011112961, 0.009827164, -0.0125089688, -0.0397984833, 0.00352063496, 0.0140458029, 0.0293896478, 0.0245648474, 0.0151968971, -0.00644735387, 0.0196788181, 0.00545851467, -0.0126008112, 0.0303448122, 0.00960061885, 0.0117191225, 0.0136172036, 0.0324510708, -0.0211605467, 0.0267935619, 0.0231443476, -0.0144499103, 0.0165439229, 0.00476969499, -0.0129314456, -0.0237443857, 0.00428905198, -0.00704127, -0.0223116409, -0.0587792955, -0.0191644989, -0.0104455706, -0.0122273182, -0.0142662255, -0.00968633778, -0.0446477756, -0.00573404273, 0.033014372, -0.0256179757, 0.0120803695, 0.024099512, 0.0151356691, 0.0199237317, -0.0262547527, 0.0426639728, 0.0419537239, 0.00579833286, 0.0093557043, 0.0381085761, -0.0262792446, 0.00125977502, -0.000361630431, -0.00361247757, 0.0268425457, -0.00789846759, -0.0140825398, -0.0136172036, -0.00813113619, 0.0112844007, 0.00385739142, 0.00206186762, -0.00375330308, -0.0137886433, -0.0158336721, 0.0102496399, -0.0150744403, -0.0111803124, 0.00895159692, 0.0096373558, 0.0065514422, 0.0323286131, -0.0346797854, -0.0530483164, 0.00880464911, -0.0342144482, 0.0142784705, -0.020315595, -0.0207074564, 0.013984574, 0.0413169488, -0.0120436326, 0.00417884067, -0.00257006357, -0.0246505681, -0.0212707575, 0.002069521, -0.0201196633, -0.00871280581, 0.0245158654, 0.00424619205, -0.013347799, 0.015931638, -0.0145356301, -0.0383045077, 0.00104471017, -0.0115476828, 0.00240015471, 0.0142049966, 0.0168378185, 0.0108374329, 0.0132498331, 0.0544688143, 0.0121599669, -0.0249812, -0.0199114867, 0.0131273763, 0.0157601982, -0.00978430361, -0.0080209244, -0.0109537672, 0.0246750582, 0.00852299761, -0.0151111772, 0.00213687238, 0.0270384755, 0.0272099152, 0.00298641692, -0.00526870694, 0.00402883114, 0.00944142416, 0.0195318703, -0.0265486483, 0.0131518673, -0.00616570329, -0.0472438596, -0.0162867643, -0.00930059887, -0.0107333446, -0.00952714402, 0.0016393913, 0.0216381289, 0.018993061, -0.0506481603, 0.0160173588, -0.0108496789, 0.0200339444, -0.0447457395, 0.0263282266, -0.0424435511, -0.0449171774, -0.0383045077, 0.0180746336, -0.00424925331, 0.0170337502, 0.018429758, 0.0171562079, -0.00600650953, 0.0188828483, -0.0275283046, -0.00944142416, -0.0194461513, -0.00338899391, 0.00952102151, -0.0338225886, 0.001156452, -0.00826583896, -0.0192134827, 0.00478806347, -0.0120130191, 0.0486153774, 0.0357084237, 0.0289732944, 0.00978430361, 0.00882301759, -0.0102190254, -0.00245985226, 0.0131763592, 0.000498246402, 0.0212340206, -0.013960083, -0.0204502977, -0.00960674137, -0.0166418888, 0.0204380509, 0.0329898819, -0.0248587448, -0.0170459952, 0.0266221222, 0.0180991255, 0.0213809684, -0.0222136751, 0.0168500654, 0.00756171159, 0.0103353597, -0.0301488806, 0.0128212338, 0.00994349737, 0.0423700772, 0.033626657, -0.000737802649, 0.0311775189, -0.0115599278, -0.00388800562, -0.0162867643, -0.0147438068, 0.0036553375, -0.0282385536, 0.0112231718, 0.000659736397, -0.0108435554, 0.0245526023, -0.00986390095, 0.0038420842, 0.0174623486, 5.17093249e-05, -0.0186379347, 0.00778213376, -0.00251342729, -0.00904343929, -0.00991900638, 0.0104823075, 0.0384269655, -0.00240780809, -0.00948428456, -0.00391249685, -0.04188025, -0.00176031748, 0.00638000295, 0.0244179, 0.0124416174, -0.00697391853, 0.0241117571, -0.000406021049, -0.0140580488, -0.000412909256, 1.75493608e-06, 0.0157846902, 0.019666573, 0.00241086958, -0.000748900289, -0.0163235012, 0.0402393267, 0.00735353492, -0.0180623885, 0.0438885428, -0.0467050485, -0.026009839, -0.0114987, -0.0339205526, -0.00608610641, -0.0198135208, 0.0210625809, 0.0239770543, -0.00174501038, -0.00100567704, 0.0589752272, -0.0282875355, -0.00438395608, -0.00965572428, 0.0176705252, 0.0259853471, 0.0328184403, 0.0248587448, 0.00569730578, -0.0196298361, -0.00544626918, -0.0061534578, -0.025397554, -0.00333082676, -0.00171439617, 0.0143764364, -0.00229606638, -0.00758620305, 0.0335042, 0.0184787419, 0.000726322294, -0.00010667141, -0.00580139412, 0.0429088846, -0.0189685691, 0.0234382451, 0.0558403321, -0.00996798929, -0.00327878259, 0.00732904347, 0.0314959064, 0.000932202907, -0.0112170493, -0.0278466921, -0.0544688143, -0.0433497317, 0.00792295951, -0.0106904842, -0.00853524357, 0.00411455054, -0.00755558861, 0.010176166, 0.0140335569, -0.0107823275, -0.025397554, 0.00644123135, 0.0306387078, 0.00931284484, 0.00762294, 0.0376922227, -0.00115185988, -0.0318142958, 0.00517074112, -0.0212217756, -0.017119471, -0.0468030162, 0.0112599088, 0.00540953223, -0.0191400088, 0.0222014301, 0.00175113324, 0.0179766677, 0.0371044315, 0.0300264247, -0.0269160196, -0.0217605848, 0.0351451226, 0.0023848475, -0.0123314066, -0.028532451, -0.0447212495, -0.00185522158, -0.00329715107, -0.0112170493, 0.0285569411, 0.0304182861, 0.0300019328, 0.00545545341, -0.0151601601, 0.00412373524, -0.00575241121, -0.0245893393, 0.0039492338, 0.00844952371, -0.00219350867, -0.0231076106, -0.00707188388, -0.0122824237, 0.0323775969, -0.0123803895, -0.00564832287, 0.00357880187, -0.00956388097, 0.0102067795, -0.0137274144, -0.00298335543, 0.0172419269, -0.0193481855, 0.00672288192, -0.00628816, -0.0253485721, -0.0425660089, -0.00561464718, 0.00986390095, -0.00260833139, -0.00762294, -0.0155520225, 0.00122763007, -0.0407046638, -0.0373248532, -0.0217116028, -0.0106904842, 0.00301856175, -0.00480643194, -0.0244056545, 0.0147438068, 0.0017649096, 0.00699841, 0.0159928668, -0.0225320645, 0.0022899434, -0.00545545341, 0.031104045, 0.00153530296, 0.00256394059, -0.00728006056, -0.00347165228, -0.0144499103, -0.0133722899, 0.00652695121, 0.022899434, -0.0053452421, -0.0161765516, -0.00945367, 0.00480949366, 0.0192012377, -0.0161153246, 0.0230218917, 0.029218208, 0.0109843807, 0.0143641904, 0.0494725741, 0.0336756371, 0.0130294105, -0.0114803314, -0.0162990093, 0.00969858374, -0.00810052175, -0.0167276077, -0.00131564599, 0.00187818217, 0.00835155882, 0.0217850767, 0.00512175867, 0.019715555, 0.0405822061, 0.00206645974, 0.0328919142, 0.0148907555, 0.00186746719, -0.0509910397, 0.0292671919, -0.00996186584, 0.00508808298, -0.0119701587, 0.0228871889, -0.00784948561, 0.0249199718, 0.0147805437, 0.0322796293, -0.00329408981, 0.01462135, 0.0217605848, -0.00263741473, -0.0256424677, 0.0120130191, -0.0028563065, -0.0126375491, 0.00455845706, 0.0056177089, 0.0374718, 0.0105619049, -0.0390637405, 0.0122028273, 0.0207564384, 0.0509420559, -0.0170215052, 0.0164826941, 0.0125885662, -0.0203523319, -0.0153928278, -0.00484929187, 0.00817399565, -0.00600957079, 0.0155887594, -0.00705351541, 0.00119395449, 0.0199482236, -0.0108435554, 0.00543096196, -0.000708719133, 0.0318387859, 0.0128702167, -0.00525952224, -0.0350471549, 0.0179766677, 0.0121232299, -0.0272344071, 0.0406801701, 0.0338715687, 0.00862096343, -0.00762294, -0.00379922427, -0.00936795, -0.0165439229, -0.0206094906, 0.0214054603, 0.00202206895, 0.0361492671, 0.00631877454, -0.0017496025, -0.00113884883, 0.0229729079, -0.0150132123, 0.00460131699, 0.0140090659, -0.031765312, 0.0109353978, 0.0375942588, -0.00140442722, 0.0169112943, 0.0125518292, 0.0331613198, 0.0240872651, 0.00626366865, -0.00326041412, 0.000524268486, 0.0287283808, 0.0126620401, -0.0106598707, -0.00856585801, 0.0403128, -0.0210503358, -0.0218095686, -0.000200523122, -0.0376187488, -0.0156254955, 0.0154785477, 0.0112660322, 0.000260986213, -0.00836380385, -0.0115905423, 0.0401658528, 0.00775152, -0.00495031895, 0.0128212338, 0.0176705252, 0.0132130962, 0.00208635884, -0.0267690718, 0.0108558014, -0.00376554858, -0.0111986808, 0.00233892608, 0.0222626589, -0.00998635776, -0.0276507605, -0.0124599859, -0.00332776527, 0.0269160196, -0.0200951714, -0.00582282385, -0.0177684911, -0.00443600025, 0.0155642675, -0.00446049124, 0.0175235774, 0.0158336721, 0.0686248317, 0.0314469226, -0.0528034, -0.00909854565, 0.0320592076, 0.0159928668, -0.00598201808, -0.00999860279, -0.0441089645, 0.0161643066, -0.0197645389, 0.0101455515, -0.0210380889, -0.0168255735, 0.023536209, 0.0263037346, 0.0141070308, 0.00995574333, 0.0117864739, -0.0134947468, -0.0112844007, 0.00898833387, 0.0413904227, -0.0244668815, -0.00652695121, -0.0309326053, -0.00266496767, -0.0319122598, 0.00689432165, -0.000740481366, -0.0321816653, -0.0380351022, 0.0114987, -0.0108864158, 0.00829033, 0.00479418645, 0.0144744022, -0.030442778, -0.0109231528, 0.0141437678, 0.0171929449, -0.0230096448, -0.00628816, -0.0409985594, 0.024160739, 0.0231933314, 0.0340675, 0.00277364813, -0.00608916767, -0.0026358841, 0.0128457258, -0.0390637405, -0.024136249, -0.0161275696, 0.0159193929, 0.00118017802, 0.0127722509, 0.0343858898, 0.0180134047, 0.00602793926, 0.00193175708, -0.000130780114, 0.0284099933, 0.0160540957, -0.00607998343, 0.00925161596, 0.011761982, 0.00405944511, -0.00235576392, 0.0492276624, 0.0275038127, -0.0158336721, -0.0124906, 0.0302958284, -0.00683921622, -0.042517025, -0.0483704619, -0.00526870694, -0.00447885972, -0.0343858898, -0.0191644989, -0.0260343291, -0.0241729859, -0.0123069156, -0.00433497317, 0.00101562659, 0.00789846759, -0.0178909488, -0.0286549069, -0.00717597222, -0.0207074564, 0.0165684149, -0.0175725613, -0.00486153783, -0.000307481532, 0.0118109649, 0.00618713303, 0.0185032319, -0.00471765082, -0.00859647244, 0.00226085982, -0.00111053069, -0.0337001309, -0.00966796931, -0.0290957522, -0.0306387078, -0.000545698393, 0.00137840514, 0.0108864158, 0.0437905751, -0.0155397765, 0.0541749187, 0.047684703, 0.0204013139, -0.00891486, -0.0532442443, 0.0120252641, -0.0117987189, -0.0229361709, -0.0180134047, 0.0245281104, -0.00878628064, -0.0101149371, 0.0199237317, 0.0292427, -0.00570342876, -0.0126375491, 0.00369207445, -0.0124661094, -0.0157724451, 0.0101577975, -0.0263527185, 0.00218891655, 0.0113027692, 0.00636163447, 0.00461662374, 0.00259149354, 0.00483398465, 0.0136416955, 0.015270371, -0.0183195472, -0.00546463765, -0.040043395, 0.0235484559, -0.000182250253, 0.00842503272, -0.012698777, -0.00623611594, 0.00957000442, -0.00811889, -0.00167612836, 0.0193236936, -0.00469622109, 0.0119885271, 0.00563607737, 0.0237811245, 0.0169480313, -0.0160540957, -0.00704127, 0.00300784688, 0.000650934759, -0.00285936776, -0.00829033, 0.0214054603, 0.00739639485, -0.0182583183, 0.00355737191, 0.00285324501, 0.0153316, 0.0224096067, -0.00452784263, -0.0194094144, 0.00336756394, 0.0101149371, 0.00957612693, 0.0182828102, -0.014596859, -0.0142049966, -0.0221402012, 0.0140702939, -0.0365656205, -0.00923937093, 0.0107762041, -0.00468091387, -0.0445498079, 0.00745150028, -0.00827196147, 0.0237076487, 0.0213809684, -0.0202543661, -0.00981491804, -0.0126130572, -0.0218830425, -0.0373003632, -0.0302713383, -0.00902507082, -0.00707800686, 0.0158091821, 0.0416843183, 0.0302468464, 0.0109905042, 0.0147805437, 0.0332592838, -0.00592997391, -0.00100185024, -0.0131518673, 0.0122028273, -0.0142539795, -0.0172051899, 0.0228382051, 0.00224861433, 0.00669839047, 0.00701677846, -0.00113655278, -0.000528477947, 0.00529013667, -0.0358798616, 0.00219350867, 0.00611365912, -0.0133722899, -0.00906180777, -0.0196298361, 0.000527329859, 0.0080209244, 0.00951489899, -0.00177715532, 0.00983940903, -0.00675961887, -0.0035910476, -0.00901282579, -0.00537279528, -0.0155642675, 0.0119211758, 0.0176460352, 0.0184542499, -0.00939244218, 0.00923324749, 0.00426762179, 0.00478500221, -0.0207686853, 0.00892098248, 0.0141805056, 0.0100353407, 0.0236464217, 0.00926386192, -0.00195012556, -0.00233433396, 0.00256087934, 0.00434109615, -0.00770253688, -0.0151601601, 0.0148785096, 0.00246597524, 0.00628816, -0.0174256116, 0.012386512, -0.00366452173, -0.0107088527, 0.0102496399, -0.0261567868, 0.000595063844, -0.00287773646, -0.0378636643, -0.00424313033, 0.0213564783, 0.00919038802, -0.000453855755, -0.0232178215, 0.000260794855, 0.015258126, -0.00884138606, 0.00612896634, 0.0149274925, -0.00363390753, -0.00612284336, 0.00307825953, -0.0186256897, 0.00806990732, 0.00772090536, 0.00227769767, 0.0204013139, 8.19408669e-05, -0.00595446536, 0.0138743632, -0.0137886433, 0.00958224945, 0.003340011, -0.00417271769, 0.0151479142, 0.0106537472, -0.00906180777, -0.0264751744, -0.00291906553, -0.00881077163, -0.00391555857, 0.0140580488, 0.0188093744, -0.0134090269, 0.0382310338, 0.0154540567, 0.00149856589, 0.00566056883, 0.00421251636, 0.0295121055, 0.0228382051, 0.029854985, 0.00318081724, -0.00631877454, 0.000539575587, -0.00922712497, -0.022874942, 0.0167888366, 0.013360044, -0.00974756666, -0.00433497317, -0.0542728826, -0.0107394671, -0.0160908327, 0.0258873813, 0.00270629674, -0.0160663407, -0.0349002071, 0.0080209244, 0.0418557562, 0.00549831335, 0.0283610113, -0.00134855625, -0.00376248732, -0.0135437297, 0.0287528727, -0.00575853419, -0.0250179376, -0.0150621943, -0.0122518092, 0.00227922853, 0.00290528918, -0.00416047219, -0.00998635776, 0.00351757347, 0.0189440772, -0.00191338861, -0.0359043553, 0.00656368816, 0.024773024, -0.024724042, 0.0257404335, 0.00462580798, 0.00881689414, 0.00606161496, 0.015270371, 0.0104149561, 0.0349246971, -0.0168010816, -0.0383779816, 0.0116701396, 0.012674286, 0.00426762179, -0.030442778, 0.0147438068, -0.00670451345, -0.00704127, 0.0248954818, -0.0154295657, 0.0179276858, -0.00405638386, 0.000889343, 0.0308101475, 0.0183317922, -0.0441579446, -0.0130171645, -0.0175603144, 0.0396515355, 0.00791683607, 0.0115538053, 0.0173766296, -0.010763959, 0.0107578356, -0.0187603924, 0.0280426219, -0.0336756371, 0.00044007937, -0.00394004956, -0.0454559885, 0.0132498331, 0.00881689414, 0.00183685299, 0.00227769767, -0.00272160396, -0.0188338663, 0.0161520615, 0.00062644342, 0.0206584744, 0.00821685605, -0.00693718158, -0.0178174749, -0.0255934857, 0.0186624266, -0.0082107326, 0.0148050357, -0.0105863959, 0.0238668434, 0.0459948, 0.0114068575, -0.0192134827, 0.0265241582, 0.00607998343, 0.0194094144, -0.000263856287, 0.00589017523, -0.00454008859, 0.0264996663, 0.018466495, 0.0164826941, 0.00289151282, -0.0105251679, -0.0250791665, 0.00397372525, 0.0169847682, -0.0172296818, 0.0227892231, -0.00315938727, -0.00640449394, -0.0231810845, -0.0142539795, -0.00856585801, 0.00283181504, -0.0181603543, -0.0123926345, -0.0262057688, 0.017780738, 0.010763959, 0.0149887204, -0.00501154736, 0.00399515545, 0.0640204474, -0.0248342529, 0.0076351855, 0.0251526404, -0.0258384, -0.0111496979, -0.0314224325, -0.00119242375, 0.00857810397, 0.0367860422, 0.00471765082, -0.024136249, -0.0121293524, -0.000186651057, 0.00444212276, -0.0017955238, 0.0126620401, -0.0309326053, 0.000441992743, 0.0357818976, -0.000332929601, -0.021613637, -0.0167643446, -0.0217728317, -0.00430742046, -0.0221402012, -0.00758620305, -0.0373003632, 0.0226055384, 0.00850462914, -0.00185675221, 0.0113762431, -0.0201441552, 0.0177317541, -0.0258873813, -0.00444212276, -0.0268915277, 0.00129421602, -0.0192992017, -0.0165684149, 0.0393821299, 0.00329715107, -0.0149887204, -0.0120007731, 0.00342573086, 0.00681472477, -0.00955775846, 0.00330327405, -0.0185277238, 0.0139355911, 0.000112507245, 2.54719853e-05, -0.044476334, -0.00606467621, 0.00622999296, 0.0425660089, -0.00601263205, -0.0221157111, 0.0259853471, -0.00115185988, -0.0249077268, -0.0191644989, 0.00317163276, 0.00262669986, 0.0127722509, -0.00356349489, -0.0167276077, 0.0206217356, -0.00168837409, 0.0069188131, -0.0067290049, -0.014596859, -0.013347799, 0.0418067761, -0.00961898733, -0.00524421548, 0.0334307253, -0.045700904, 0.00740251783, -0.0153683368, 0.0262302607, -0.0122640552, -0.0186011977, -0.010476185, -0.0156499874, -0.0264261924, -0.00369819743, -0.029879475, 0.0356349498, 0.00253026513, 0.00770253688, -0.0175725613, 0.00966796931, -0.0164214652, -0.0268670376, -0.00707800686, 0.0044849827, 0.00372575014, -0.0619141906, -0.00944142416, -0.00257006357, 0.0276752524, -0.0326959826, 0.00185828295, 0.00969246123, -0.020340085, -0.00926998444, -0.0159561299, 0.0121415984, -0.000811276725, -0.0180501416, -0.00571567426, -0.0199849606, 0.00598507933, 0.0411455072, 0.0202176291, -0.0132498331, 0.0162990093, 0.00281191571, 0.0122640552, -0.00784948561, 0.00838217232, -0.00398597121, 0.0201931372, 0.0207197014, 0.00529625965, -0.00363696902, -0.00742700882, 0.0251036584, 0.00579221, -0.0128579708, 0.0130539024, -0.00631877454, -0.00354818767, -0.00871280581, 0.0207809303, 0.0283365194, 0.0124538634, -0.014596859, 0.0161030777, 0.0510400236, 0.00518604834, 0.0383045077, 0.00880464911, 0.0255934857, -0.00363084604, -0.0546157621, -0.0401413627, -0.00677798782, 0.0185767077, 0.0125763202, -0.014645841, -0.00969246123, -0.00942305569, 0.00653919671, -0.0131273763, 0.00305376807, 0.04065568, -0.00130875781, 0.0291447341, -0.0135559756, 0.031104045, -0.026720088, 0.0041053663, 0.000969705347, -0.0138008893, -0.0396270417, 0.0144131733, 0.0332347937, 0.0213442314, 0.0043900786, 0.00731067499, 0.000652848161, 0.0135069927, 0.0103292372, -0.0345573276, 0.0151846511, -0.021564655, -0.0271119513, 6.18024496e-05, -0.0336021632, -0.0113517512, 0.0099006379, 0.00417271769, -0.00675349636, 0.0357818976, 0.004913582, 0.000345749315, 0.00398597121, 0.0153193539, 0.00698004151, 0.0158091821, -0.013984574, -0.0187236555, 0.0271609332, 0.0170459952, 0.00560546294, 0.0225565545, -0.000185981364, -0.0107578356, 0.00878015719, -0.0143396994, 0.00726781506, -0.009827164, 0.00399209373, 0.00999248, -0.04065568, 0.00979042612, 0.0211238097, -0.000900823332, 0.00621774746, 0.0208666511, -0.0230218917, -0.0167276077, 0.00384514569, 0.00164245279, 0.0064779683, 0.00183838373, 0.0163969751, 0.0123191606, 0.00107915117, 0.0340430103, -0.00734741194, 0.00750048319, -0.00460743951, -0.022189185, 0.000994196744, -4.93654261e-05, -0.000167230159, -0.00440844707, -0.0100169722, -0.00107455906, -0.00321755419, 0.000335991033, -0.00991288386, -0.0216993578, -0.0264506843, 0.00706576137, 0.00841890927, -0.00111741887, -0.00645347685, 0.0312020089, 0.0172296818, 0.00762294, 0.00271548098, 0.000795204309, 0.00717597222, -0.00862708595, -0.0169357844, 0.00666165352, 0.013347799, -0.0122885462, -0.00956388097, 0.0144988932, -0.0331613198, -0.00121538446, -0.0293651577, 0.029218208, 0.0214666892, -0.014596859, 0.0259363651, 0.0253485721, -0.00482173916, -0.0162255354, -0.0226790123, 0.00711474381, 0.017744001, -0.00401352393, -0.00585037703, -0.00658817962, 0.0153193539, 0.0044849827, 0.00458907103, 0.0250056926, 0.00668002199, 0.0123069156, 0.0118048424, 0.0201074183, -0.00825971551, -0.0117129991, -0.00257465569, 0.00677186484, -0.00674737338, -0.0151846511, 0.01016392, -0.0185154788, -0.0142539795, -0.000952102127, 0.00751885166, -0.0385249294, 0.013335553, -0.00259761629, 0.0155152855, -0.01970331, -0.0189195853, -0.00244148378, 0.00239709322, -0.00233892608, -0.00642286288, 0.00862096343, -0.00107455906, 0.018429758, 0.0133967809, -0.00683309324, -0.0129681826, 0.0100598317, 0.0129559366, 0.0205972455, -0.00040142893, 0.00688819867, -0.0271364413, 0.0188950952, 0.00549219036, 0.00228535128, 0.00238025538, -0.0180134047, -0.0315693803, 0.0105619049, -0.0157234613, -0.0107210986, -0.0257404335, 0.0156989712, -0.00684533874, 0.00326959835, -0.018368531, -0.0061320276, 0.00112354173, 0.0147315608, 0.00356961763, 0.0305652339, 0.0279936399, 0.00444212276, 0.0266955979, -0.0258384, -0.00686370721, -0.00731679797, 0.00858422648, -0.0168623105, -0.00656368816, 0.0268425457, -0.00207717461, 0.00268333615, 0.0187359, 0.0137396604, -0.0240382832, 0.00367064471, -0.00332164252, 0.04065568, -0.0238913354, 0.0189195853, -0.00069915218, 0.0179276858, -0.00928223, -0.000864086265, 0.0109843807, 0.00458294805, 0.000935264339, 0.0198992416, -0.00427068304, -0.0106904842, 0.00375636434, 0.0251036584, -0.00618407177, 0.0142784705, -0.0231565945, -0.00280273147, 0.0103414822, -0.0232668053, -0.00896996539, 0.010127183, 0.0101088146, -0.0135682207, -0.015282617, -0.0366390944, -0.0245648474, 0.00325735263, 0.0133110611, 0.0164826941, 0.0109415213, -0.0115660513, 0.00789846759, -0.00127355137, -0.000198418391, -0.0157234613, -0.00629428308, -0.00166541338, -0.019091025, 0.00310581224, -0.00311499648, 0.00696167303, 0.00400127796, -0.00215983298, -0.00864545442, 0.00720046367, 0.0244056545, 0.0162867643, -0.00818624161, 0.00251495792, 0.0262792446, 0.011125206, -0.00748823723, 0.0145233842, -0.012711023, 0.00618407177, -0.0173154, -0.0126008112, 0.00288232858, -0.0111313295, -0.0165929049, 0.00149933132, -0.0185032319, -0.0228871889, 0.0269894935, 0.0193726756, 0.00220269291, -0.00813113619, 0.0230218917, -0.00341654662, -0.0212340206, 0.0345083438, -0.00827196147, -0.0148907555, 0.00517074112, -0.0245403554, -0.00219197804, 0.00817399565, -0.00919651054, -0.00521666277, -0.00891486, 0.0076658, -0.012735514, -0.00995574333, 0.00870668329, -0.0301243886, 0.0090924222, -0.00675961887, -0.00561464718, 0.0164092202, 0.025397554, 0.00416047219, -0.00150315801, -0.00458907103, -0.00895771943, -0.00689432165, 0.0231810845, -0.0113701206, -0.00365839899, -0.00667389948, -0.000632183568, 0.00802704785, -0.0256424677, -0.0200216975, 0.0213319864, -0.0207931753, 0.0122946696, -0.0106292563, -0.00949040707, -0.012735514, -0.0179521777, -0.0312509909, 0.00721883215, 0.0111864349, -0.00956388097, -0.0324510708, 0.00434109615, 0.00776376529, 0.0176827721, 0.00719434116, 0.0278466921, -0.00843727775, -0.0120252641, 0.0212462656, -0.000743542798, -0.0032328614, 0.017119471, -0.0502073169, 0.0197767839, 0.0149274925, -0.00162561494, 0.0156499874, 0.00129115465, 0.0203033481, 0.00731067499, 0.00207870523, -0.000861024833, 0.00902507082, -0.00299713179, -0.0166418888, 0.00321755419, 0.016519431, 0.000687289168, -0.00658817962, -0.015882656, 0.0127967428, 0.00822297856, -0.0351696126, 0.00725556957, 0.0133967809, -0.012074247, 0.0129559366, 0.00205268315, -0.00168378197, -1.18988846e-05, 0.0192379747, -0.00792908203, -0.00697391853, 0.0107272211, 0.0159438848, -0.0144254193, -0.00580445537, 0.00151540374, 0.00331551977, -0.0158704109, -0.00523503125, 0.0194339044, 0.00198380137, 8.1677772e-06, 0.00709637534, -0.0227279942, -0.0272588991, 0.016470449, -0.0206707194, -7.1895578e-05, -0.00293743401, -0.0140947858, -0.00506053027, 0.0149274925, 0.00138605863, 0.000836533494, 0.000199566421, 0.0172909088, -0.00846177, 0.0101088146, -0.0035910476, 0.0227035023, -0.0029940703, -0.00996798929, 0.00705351541, -0.0150254574, -0.000678870245, -0.000912303687, 0.0267690718, -0.00947816111, 0.0156254955, 0.00587792974, -0.000758849899, 0.0213564783, 0.00440232456, -0.00709025282, -0.0312509909, 0.0026971125, 0.0160173588, -0.0109721357, -0.0108190645, 0.0125640742, -0.00259608566, 0.00770253688, 0.0172174349, 0.00679635629, 0.00164092204, 0.0138131343, 0.00512175867, 0.0334307253, -0.00985165499, 0.00506971451, -0.010476185, 0.00443293853, 0.00557484897, -0.018380776, -0.0181848444, -0.0296835452, -0.00614427309, -0.0071820952, -0.000297149236, 0.0130783934, 0.0118599478, -0.00252414215, -0.0275772866, -0.0123558976, -0.0172909088, -0.00507583702, -0.00480643194, 0.0110456096, 0.00147254381, 0.0139478371, 0.0257649254, 0.0173276477, -0.0180623885, -0.00738414889, -0.0259608552, 0.000257542095, 0.0203890689, 0.0135804666, -0.022250412, 0.00120849616, 0.00386045268, -0.0258139074, -0.0140335569, -0.00572485849, -0.00114956382, 0.00529625965, -0.0172174349, -0.0265486483, 0.0107762041, -0.014596859, -0.00805766229, 7.47656595e-05, 0.00800255593, -0.0211605467, 0.00390331261, 0.000974297465, 0.00614427309, -0.000955928932, -0.00873117428, -0.0134702558, 0.00185675221, -0.024773024, -0.0252995882, 0.0208788961, 0.00278589362, 0.00994962081, 0.0202911031, 0.00923937093, -0.0232055765, 0.00855973549, -0.00492888875, -0.00299560116, -0.0161030777, 0.018380776, -0.00775152, 0.0192379747, 0.013984574, -0.00319918571, 0.00594528113, -0.00304305321, 0.00195471779, 0.0173643846, -0.00467172964, 0.00433191191, 0.0327204764, 0.00783111714, 0.0064902138, 0.0181358624, 0.00469009811, -0.00488296757, -0.0138253802, -0.0207686853, 0.00385739142, -0.006992287, -0.019029798, -0.00926998444, -0.017180698, 0.0142294876, 0.0219565164, 0.0081372587, 0.0174256116, 0.0111313295, -0.0162745174, -0.00402270816, 0.00530544389, 0.00983940903, -0.00488909055, 0.00632489705, 0.0370554477, 0.0121905813, -0.015221389, -0.0279936399, 0.0214421973, -0.00253332639, 0.0121232299, 0.0116885081, 0.0196053442, 0.00510951271, 0.0201808922, 0.0262057688, -0.000159002593, -0.00539422501, 0.0138376262, -0.00530544389, 0.0320347175, 0.0264996663, 0.0111190835, -0.00120160799, 0.000347471359, -0.0186501816, 0.00882301759, 0.00833318941, -0.00683921622, -0.0031379573, 0.00629428308, -0.0351941027, 0.00310581224, 0.0084005408, -0.00184450659, 0.0032144927, 0.000568659103, 0.00640449394, -0.00416659471, -0.00571567426, 0.0106904842, -0.00201441557, -0.0050084861, -0.00855361205, 0.0148050357, 0.00956388097, -0.0299774408, 0.00836380385, -0.0466070846, 0.00240780809, 0.00680247881, 0.000898527273, 0.0054064705, -0.0189073402, -0.0213442314, 0.0103904651, -0.0229361709, -0.00289304345, 0.0158581641, -0.00706576137, -0.0092087565, -0.00583813107, -0.00675961887, 0.00497481041, -0.0110272411, -0.00358798611, 0.00401658518, -0.026671106, 0.0114313485, 0.00135391369, 0.00456457958, -0.00899445731, 0.0312999748, 0.0137519063, -0.0201808922, -0.0190665349, -0.0079474505, -0.0162622724, -0.0034961435, -0.00281344657, 0.000335608347, -0.00598201808, 0.0110517321, 0.0255445018, 0.0111741889, -0.00145876745, 0.00186440581, -0.0188093744, -0.0230831187, 0.000809746038, -0.0144376643, -0.0145478761, -0.0263282266, 0.0151601601, 0.00909854565, 0.0346552953, 0.00234045694, 0.0351206288, -0.012698777, 0.013984574, 0.0205605086, 0.016519431, 0.0159193929, 0.0183440391, -0.0062269317, 0.0340185165, -0.0126008112, -0.0037165659, -0.0286549069, 0.0141805056, 0.0111190835, -0.0123007922, -0.00192869571, -0.00911691412, 0.0159193929, 0.00944142416, 0.0021950393, 0.0011028772, -0.00551668182, 0.00646572281, 0.006992287, -0.0272588991, 0.000648256042, 0.00562077, 0.00111971493, 0.00326041412, -0.00837605, -0.00209554308, -0.0010041463, -0.00325735263, 0.00992512889, -0.00905568525, -0.00402883114, -0.0175480694, 0.0131641133, 0.0145723671, -5.03699521e-05, -0.00604018476, 0.00141208072, 0.0159683749, 0.00701065548, 0.0146948239, 0.00664940802, 0.0101149371, 0.0201931372, 0.0236709118, -0.00402270816, -0.00519217132, -0.0217483398, -0.00742088631, 0.00680247881, -0.0142294876, 0.0274303388, 0.00633714302, -0.0206462275, -0.00547076063, -0.0177317541, 0.0338715687, -0.0123375291, -0.0154173197, -0.00159347, 0.00789234508, -0.0267935619, 0.00776988827, 0.024185231, 0.00293437275, 0.0139233461, 0.00348083652, -0.0172296818, -0.0199114867, -0.0138743632, 0.0177195091, -0.0134580098, 0.00210778881, 0.00201747683, -0.00896384288, -0.0138008893, -0.00653919671, -0.0178664569, -0.0142539795, 0.00141820358, -0.0125763202, 0.00813113619, -0.0115231909, 0.016470449, 0.0105925193, -0.00927610788, 0.0196788181, 0.0195808522, 0.00798418745, -0.00184909871, -0.00946591608, -0.00793520547, -0.00155290612, -0.000861790206, -0.00247822097, 0.00286395987, 0.0105435364, 0.0205727536, -0.0146948239, -0.0148540176, -0.0299284589, -0.00370738166, -0.0192624647, 0.00395535678, -0.0018598137, 0.0204013139, 0.0114558395, -0.0102741309, -0.0123375291, -0.00595446536, -0.00839441828, -0.00694330456, -0.0189440772, -0.0120558785, 0.0129681826, 0.024099512, -0.00367064471, 0.00216136361, -0.0122518092, 0.022225922, -0.0092087565, 0.00792295951, 0.0107945725, -0.00720046367, -0.0270874593, -0.035488002, -0.0104578165, -0.00532687362, 0.00123451825, -0.00301396963, -0.00732904347, 0.00535442634, 0.0252016224, 0.00835768133, 0.00477887923, 0.00188583578, 0.00888424553, 0.00675961887, 0.0153071089, 0.00132253417, -0.0148417726, -0.00643510837, 0.0137396604, -0.0091352826, -0.0123375291, -0.00220881565, -0.0194951333, 0.032304123, 0.0210870728, 0.0125518292, -0.0253730621, -0.0139111, -0.00715148123, 0.0173766296, 0.00281191571, -0.0115293143, -0.00978430361, -0.0127844969, -0.00340430089, 0.00876178872, -0.00871280581, -0.00289151282, 0.00178480882, 0.00469928235, 0.00165622914, -0.00289610494, 0.0186256897, 0.0067290049, -0.00113731821, 0.00033962648, -0.0144254193, -0.0108741699, -0.0255689938, -0.00833931286, 0.000648638699, 0.00809439924, 0.0195563622, -1.83206957e-05, -0.0255934857, 0.013323307, 0.00015278408, 0.0145478761, 0.0063004056, 0.00305836019, 0.011425226, 0.0212830044, -0.00865157787, 0.00962511, -0.00577996392, 0.0155520225, -0.000673895469, -0.0212830044, -0.000192582564, 0.00110593857, -0.0223238878, 0.0166786257, 0.00791071355, 0.0161398146, 0.00915977359, 0.00594834238, -0.00984553248, -0.0179154389, -0.011100715, -0.0230218917, -0.0173031557, -0.0128212338, 0.00725556957, 0.0130783934, -0.00306754443, -0.00543708494, 0.0157601982, -0.010476185, 0.0168990474, 0.0351206288, 0.015258126, 0.00687595317, 0.00441150879, 0.000230563324, -0.0140580488, -0.0139233461, -0.00550443633, -0.00432272721, -0.00376248732, -0.0170827322, 0.00165929052, -0.00701065548, 0.00492888875, -0.0059422194, 0.0012551829, -0.0185399689, 0.0272588991, -0.00746986875, 0.00381759275, -1.24609433e-05, -0.0132130962, 0.00043893134, -0.00137457834, 0.0149519835, -0.0278711822, -0.00022386646, -0.0158214271, 0.00271395035, -0.00213381089, -0.017744001, 0.0233647712, 0.0198012758, -0.000397984812, -0.0158581641, -0.0122579327, 0.0173521377, -0.0147560528, -0.0121783353, -0.00221340777, -0.02032784, 0.0128212338, -0.00532687362, 0.050158333, -0.00242005382, -0.00289610494, -0.0400923789, -0.00283028441, 0.0115905423, 0.00350838923, -0.0340919904, 0.00441150879, 0.0200829264, 0.0233280323, 0.0273568649, -0.0197645389, -0.00302315387, -0.015221389, 0.00762294, -0.00148555485, 0.000964347855, 0.022250412, 0.00758008, 0.0110517321, -0.00698004151, 0.000967409229, 0.0008426563, 0.0153928278, 0.0139233461, 0.00342879235, 0.00892098248, -0.00381453149, -0.0108190645, -0.0275038127, 0.00599732529, -0.0178297199, -0.00651470525, -0.0287283808, -0.00370738166, 0.00163326843, -0.000202053838, 0.000601952, 0.0241974778, -0.00166694412, -0.0106904842, 0.00154525263, -0.000823522452, -4.99394409e-05, -0.00287773646, 0.0338470787, 0.00831482094, 0.0126253031, -0.00967409275, 0.000890108349, -0.000524651143, -0.00599426357, -0.030442778, -0.0338225886, 0.0013960083, 0.00863933191, 0.0112660322, -0.00658817962, 0.0111068375, -0.00464723818, 0.0237566326, 0.0372023955, 0.00172051904, -0.00433191191, 0.0230096448, -0.0231076106, -0.0151111772, 0.0285569411, -0.0163235012, 0.00623305468, -0.00870668329, -0.0200461894, 0.0119579127, 0.00689432165, 0.00419720914, -0.00970470719, 0.00339511666, -0.00792295951, 0.0249322187, 0.00817399565, -0.00669839047, 0.0149642294, -0.0159561299, 0.00283028441, 0.00988839194, -0.0096373558, -0.0137763973, 0.00056024018, -0.0138131343, -0.0147070698, -0.0105741508, 0.00835155882, -0.0147438068, 0.0106659932, -0.0167398546, 0.000609605573, -0.031153027, 0.0373003632, 0.0102618858, -0.0175848063, 0.00955775846, -0.00642898539, -0.00467172964, 0.0137151694, -0.0218463056, -0.0160051119, -0.00892098248, 0.00580445537, 0.00312724221, 0.000999554177, 0.0124477409, 0.0150377033, -0.00574628869, -0.00854136609, -0.00105465972, 0.0178787019, -0.00238331687, 0.00703514693, 0.0305652339, 0.00994349737, -0.00424006907, 0.00337980944, -0.00648409128, -0.0044849827, -0.00529319793, -0.0151968971, -0.00639837142, -0.00117788196, 0.00379310152, 0.0275038127, 0.022225922, -0.0219320245, 0.00570342876, 0.0115231909, 0.0137029234, 0.000214299522, 0.0176827721, 0.0051768641, 0.0042951745, -0.00136156729, -0.00470540533, 0.00557178725, -0.0186379347, -0.0107027302, -0.0131886043, 0.0090863, -0.0256669596, 0.0257159416, -0.0117925964, -0.00870668329, -0.0236954037, 0.021001352, 0.00376861, 0.00144652172, -0.00136309804, 0.0110884691, -0.0404597484, 0.028630415, 0.00632489705, -0.0207809303, -0.00501460861, -0.00714535825, -0.00348083652, -0.0177317541, 0.00880464911, -0.00559321744, -0.00720658666, 0.00953939, 0.0126497941, -0.00604630774, -0.0115966657, 0.00550443633, 0.0218707956, -0.0147438068, 0.00757395709, -0.0272588991, 0.00622387044, -0.0312265, 0.00474520354, -0.011737491, 0.00536973355, 0.0194583964, 0.00370432017, -0.00829033, -0.014584613, -0.0121232299, 0.00569424452, -0.00174501038, 0.0134580098, 0.0233402792, -0.00465336116, 0.0046411152, -0.00381759275, 0.00944754761, 0.00925773941, -0.00531768939, -0.0252506062, 0.00401658518, -0.00831482094, -0.00818624161, 0.0440599807, 0.00900670234, 0.0114925774, 0.0083270669, -0.0143152075, 9.85993e-06, 0.00610141363, 0.0189563222, 0.00862708595, 0.021601392, 0.0199727155, 0.0112782773, -0.0204013139, -0.0125028463, -0.0121354759, 0.00360329333, 0.0178174749, 0.0120558785, 0.00262669986, -0.0071698497, 0.00224861433, 0.0110884691, 0.0154540567, -0.00527482945, 0.0176705252, -0.00182307663, 0.00437171, 0.0138131343, 0.022274904, 0.0115599278, -0.0278222, 0.00349002075, -0.00200676196, 0.0154050738, -0.0192869566, -0.0144744022, 0.0138743632, 0.000266152347, -0.0166908707, -0.00414210372, -0.000357229641, -0.0144376643, 0.000665476546, -0.0249444637, -0.00211391179, 0.00420945464, 0.0163847283, -0.00996186584, -0.0134090269, 0.00443906151, 0.0157357082, -0.00600957079, 0.0262792446, 0.00442681555, 0.0245281104, -0.00914140511, 0.0211238097, 0.000851840596, 0.00543708494, 0.00178787031, -0.0220912192, 0.0146825789, 0.0244668815, -0.0059024212, -0.00810052175, -0.00496562617, -0.0175970513, 0.0151356691, -0.0193849225, -0.0261322949, -0.0111986808, 0.0268915277, -0.0269650016, -0.0206707194, 0.0135192377, 0.0108619239, 0.0190665349, 0.0024690365, -0.0136906775, 0.0340675, 0.00165316777, 0.00135850592, -0.00114114489, -0.0213564783, 0.0033583797, 0.00364615326, -0.00844952371, -0.0271854252, -0.0133967809, 0.00885363109, -0.0114680855, 0.00791071355, -0.0224953257, 0.00705963839, 0.0150009664, 0.029830493, 0.0188216213, 0.000462657365, -0.020940125, -0.0177072622, -0.0093985647, 0.00342573086, 0.0119579127, 0.0105863959, 0.00918426551, -0.00822910108, 0.0108374329, 0.0029512106, -0.0125395833, 0.00761069451, 0.0155030396, -0.0129681826, 0.00457070256, 0.0214421973, 0.00972919818, -0.0162255354, 0.0149030006, -0.0100904461, -0.00449722866, -0.0208054222, 0.0192379747, 0.015931638, 0.00645347685, 0.00334919523, -0.00206492888, -0.00372268888, -0.0185399689, 0.0100904461, -0.0113150142, 0.0366390944, 0.0107578356, 0.0165439229, -0.0192869566, 0.0162377805, 0.0227402411, -0.000352446164, 0.00522890827, -0.00722495513, 0.00101639202, 0.00721883215, -0.00257312483, 0.0156622343, 0.0127722509, -0.0090189483, 0.0153071089, -0.0344593637, 0.00569730578, 0.0111741889, 0.0264751744, 0.00316244853, -0.000319918559, -0.000944448577, 0.00437171, 0.0217728317, -0.0204625428, -0.00688207615, -0.0266466141, -0.00120696553, 0.0150744403, 0.0300754067, 0.00713923527, -0.00382983848, 0.00538810203, 0.0168868024, 0.0336756371, 0.0113456286, 0.0180134047, -0.0132375872, -0.00974144414, -0.00461662374, -0.0104455706, -0.0170092583, -0.0172786638, -0.0150866862, 0.00216595596, 0.0142172426, -0.0197890289, -0.00977205765, 0.0081372587, 0.0348512232, 0.0147193158, 0.00222412287, -0.0141682597, 0.00627591461, -0.00686983, -0.0161887985, 0.00585956126, 0.0111435745, 0.0147315608, -0.0170092583, 0.0131518673, -0.0109721357, -0.000941387145, 0.00496562617, -0.025397554, 0.00538197951, -0.00193175708, 0.0203890689, -0.00860259496, 0.00558097195, 0.00592385093, -0.0106047643, 0.00761069451, -0.00486766035, 0.0190665349, 0.0106782392, -0.0333817415, -0.0221769381, 0.00721270964, -0.00687595317, -0.0174990855, 0.000719816773, -0.00719434116, -0.00544320792, -0.00876791216, -0.0249077268, 0.013335553, -0.0160663407, 0.0046411152, -0.0396270417, 0.00489521306, 0.0131886043, 0.00137151696, -0.0112354178, 0.00285477564, 0.0162010435, 0.0121232299, 0.0243321788, -0.034263432, 0.00961898733, -0.00984553248, -0.00112354173, 0.00546769891, -0.0176827721, -0.00138758938, 0.0113639971, -0.027944658, 0.00347777503, -0.0391127244, -0.0109292753, -0.0216871109, 0.00538810203, 0.00906793121, -0.00169755833, -0.0047574495, -0.00538810203, 0.0207074564, -0.0126620401, -0.030442778, -0.0351451226, -0.0013692209, 0.00551668182, -0.00157204, 0.00268486678, 0.00324204564, 0.0335286893, 0.0164582022, 0.0294631217, -0.0282630455, 0.00784336217, -0.0157357082, -0.00804541633, 0.00615958031, -0.00332164252, 0.0107517131, 0.00687595317, -0.0253240801, -0.00750660617, 0.0327449664, -0.0144866472, -0.000505899952, -0.0181481075, -0.0247975159, 0.00914140511, 0.024773024, 0.0167888366, -0.0110088727, 0.00912303664, 0.00776376529, -0.00453396561, -0.00161949208, 0.000670834037, -0.0174623486, -0.00364309177, -0.00273538032, -0.0139478371, 0.008902614, -0.00662491657, 0.0244423915, -0.00895771943, 0.0115170684, -0.0175358243, -0.0325735286, -0.00591772795, 0.0431538, -0.00548606785, -0.0315203965, 0.00175878673, -0.0180623885, -0.00505440729, 0.00330327405, -0.0221524481, -0.0194583964, 0.0174501035, -0.0241974778, 0.0163235012, -0.0180134047, 0.0118415793, -0.00633102, -0.0010232802, 0.000789081445, -0.0112905232, 0.00705963839, 0.0120681245, -0.0102251489, 0.00181542302, 0.0234504901, 0.0091352826, -0.00808215328, -0.0159683749, -0.00178940094, -0.0229484178, 0.0246505681, 0.00892710593, -0.0227157492, -0.0047237738, -0.008902614, -0.00661879359, 0.0133845359, -0.0197890289, -0.00169296621, 0.0183930211, -0.0187971294, -0.01399682, 0.00855973549, -0.00566975307, -0.010812941, -0.00957000442, -0.0231198557, -0.0116701396, -0.00223789923, -0.00154601794, -0.00810052175, -0.0129804276, 0.0185767077, 0.00968633778, 0.00596977212, 0.00456151832, -0.00242464594, -0.00442375429, -0.000919957238, -0.0175358243, -0.0119762812, 0.0175848063, 0.0144744022, 0.00949040707, 0.0287038889, -0.06220809, 0.0229239259, 0.0146335959, 0.000320492574, 0.0276752524, -0.00803929381, -0.000860259519, -0.0278222, -0.0117436135, -0.00627591461, 0.00129880814, -0.00586262252, 0.0325735286, 0.0162132885, 0.0600528494, -0.00127508212, 0.00829645246, 0.0153071089, -0.00174654112, 0.0137274144, 0.0145723671, 0.00239862385, 0.00663103955, -0.0123375291, -0.0020159462, 0.0372758694, 0.0212340206, 0.00190879637, -0.00701677846, -0.0123926345, -0.0115170684, 0.0110639781, 0.00625448441, 0.0188093744, 0.0182828102, 0.0275772866, -0.0109721357, 0.00623305468, -0.00652082823, 0.0106170103, -0.0113701206, -0.00854136609, -0.0270874593, -0.00351145072, -0.0204625428, 0.0111496979, -0.0107210986, -0.00386963692, 0.00304764532, 0.0297570191, 0.00333694974, -0.00474214228, -0.0106170103, 0.00872505177, -0.0172174349, 0.00575853419, 0.00497174868, -0.0116762621, 0.0166051518, -0.0109598897, -0.00378697854, -0.00940468721, 0.00205727527, -0.00270017399, -0.00515849562, 0.000893935154, 0.019666573, 0.0029404955, 0.0108496789, 0.0106353788, 0.0069310586, 0.000114229297, -0.0174868405, 0.0157969352, 0.00931284484, 0.00859647244, -0.00759844854, -0.0029098813, 0.0026129235, -0.0147682978, 0.00503297709, -0.00314714154, -0.00304611446, -0.0125089688, -0.0296835452, 0.017792983, -0.00611672038, -0.0120436326, -0.00919038802, 0.0128457258, 0.0288263466, 0.00728618354, 0.0204502977, 0.0407781377, -0.00476969499, 0.00343797659, -0.0237321407, 0.00132483023, 0.0127232689, 0.0016700055, 0.0212952495, -0.02095237, 0.00947816111, 0.00532075111, -0.00614121184, -0.00850462914, 0.0233525243, 0.00867606886, 0.000353211537, -0.00405638386, -0.00285324501, -0.0192257278, -0.00305529893, 0.0132498331, -0.0106047643, 0.00707188388, 0.00246750587, -0.0127477599, 0.00541871646, -0.00753722, 0.0188706033, 0.0066677765, 0.014645841, -0.00363084604, 0.0342144482, -0.0083270669, 0.00510032848, 0.00540034799, 0.00752497464, 0.0371289216, -0.0283855014, 0.00641674, 0.000282798836, -0.0119028073, 0.00844952371, -0.0251771323, 0.00544626918, -0.0226300284, 0.00338899391, 0.017792983, -0.012062001, 0.016507186, -0.00606161496, -0.000928376103, 0.00878015719, 0.00437171, 0.0216381289, 0.0155887594, 0.00612284336, -0.00782499369, -0.00370432017, -0.00642898539, 0.00190726575, -0.0210135989, 0.0359043553, 0.000342305226, 0.0193236936, 0.00401964691, -0.00146259426, -0.0018414451, -0.00164857553, 0.0056789373, -0.0099741118, 0.00188277429, 0.0151356691, 0.0197400469, 0.0051768641, -0.00775152, 0.0255934857]
|
07 Aug, 2021
|
Node.js | os.userInfo() Method
07 Aug, 2021
The os.userInfo() method is an inbuilt application programming interface of the os module which is used to get the information of currently effective user.
Syntax:
os.userInfo( options )
Parameters: This method accepts single parameter options which is optional parameter. It specifies the process options to be passed, and an object which contains encoding as a parameter returns.
encoding: It specifies the character encoding for returned data. If it is set to ‘buffer’, then username, shell, homedir values will be buffer instances. Default value is ‘utf8’.
Return Value: It returns an object that specifies the information about the current effective user, which contains username, uid, gid, shell, homedir like values.
Note: On POSIX platform, this is generally a subset of password file contains username, uid, gid, shell, and homedir. Windows shell is set to null and uid, gid are -1.
Below examples illustrate the use of os.userInfo() in Node.js:
Example 1:
Javascript
// Node.js program to demonstrate the
// os.userInfo() Method
// Allocating os module
const os = require('os');
// Printing os.userInfo() values
try {
// Printing user information
console.log(os.userInfo());
} catch (err) {
// Printing if any exception occurs
console.log(": error occurred" + err);
}
Output:
{ uid: -1,
gid: -1,
username: 'gekcho',
homedir: 'C:\\Users\\gekcho',
shell: null }
Example 2:
Javascript
// Node.js program to demonstrate the
// os.userInfo() Method
// Allocating os module
const os = require('os');
// Printing os.userInfo()
try{
// Setting options for os.userInfo()
// method
var options = {
encoding: 'buffer'
};
// Printing user information
console.log(os.userInfo(options));
} catch(err){
// Printing exception if any
console.log(": error occurred" + err);
}
Output:
{ uid: -1,
gid: -1,
username: <Buffer 6d 75 6b 75 6c>,
homedir: <Buffer 43 3a 5c 55 73 65 72 73 5c 6d 75 6b 75 6c>,
shell: null }
Note: The above program will compile and run by using the node filename.js command.
Reference: https://nodejs.org/api/os.html#os_os_userinfo_options
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method
|
https://www.geeksforgeeks.org/node-js-os-userinfo-method?ref=asr10
|
CSS
|
Node.js | os.userInfo() Method
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.00774312671, 0.0311737899, -0.0101207886, 0.00400680071, 7.95109372e-05, 0.020191256, 0.00139090081, 0.0284816232, -0.0591773652, -0.00676186942, -0.0109573733, -0.0238646809, 0.0174613483, -0.00754813338, 0.0320040844, 0.0303686559, -0.0462700576, 0.00388414366, 0.00110627327, 0.0428230762, 0.0422695465, 0.0306202602, 0.0160272028, 0.00682477048, -0.0183042232, 0.00394075457, 0.0165304113, 0.00912066083, -0.0219021663, 0.00739717064, 0.0137627628, 0.033035662, -0.0171845835, -0.0108127007, 0.0229337458, -0.0464965031, -0.00475846929, 0.0358787924, -0.0133098755, 0.00464839209, -0.0243049897, 0.0130331106, 0.0145049961, 0.0359291136, -0.00698831351, -0.0140646882, -0.0294377208, -0.0286577456, 0.00356649305, -0.0122594265, 0.0222292524, 0.000270671357, 0.00620519463, 0.0173229668, 0.0218770057, 0.0207322054, -0.0216002408, -0.0115989652, -0.00941629615, -0.00994466525, -0.0306454208, -0.0143288728, 0.0338156372, -0.0135740601, -0.00105752493, 0.00314348307, 0.00227544759, 0.0283558201, 0.0200402942, 0.000477262191, -0.00613285834, 0.0619953349, 0.0257517155, 0.00181155198, -0.0246572364, 0.00143257284, 0.0249465816, 0.00187759812, 0.000252783851, 0.00995724555, 0.0162410662, -0.0208957493, 0.0261668619, 0.0123034576, 0.0241288655, -0.0446849503, 0.0163920298, -0.0518305153, 0.0293874, -0.00712669594, 0.0464965031, 0.0189961363, -0.0066926782, 0.00295163458, -0.0066612279, 0.0108441515, 0.00163857394, -0.0273745637, -0.0216002408, 0.0286829062, 0.0153352907, 0.00143493165, -0.0100327274, -0.0410618447, 0.0473016351, -0.00920243282, 0.0533401407, -0.00986918435, 0.0164675117, 0.0241162851, 0.00868664309, 0.0157755986, -0.0142911328, 0.0330105, 0.00425840542, 0.0465719812, -0.0042080842, -0.0404831544, -0.0231350288, 0.0122971674, 0.0333124287, 0.0261668619, 0.0358033143, 0.038369678, -0.0766890347, 0.0264687873, 0.0111775277, 0.0413386114, 0.00723991776, -0.0064536538, -0.0393257737, 0.0233992133, -0.0479306467, 0.00334004895, -0.0201660972, 0.0250346418, -0.0110580157, 0.0420431, 0.0163794495, 0.0276010074, 0.00636559259, -0.00659832638, -0.0538433529, -0.0121965259, 0.00511071552, 0.0126745738, -0.00437162723, -0.0243049897, -0.0143917743, -0.00419550436, 0.00321424683, 0.0122279758, 0.0424456708, 0.00225185975, 0.035501387, 0.00466726255, -0.00512329536, 0.0231979303, -0.0126305427, 0.0119575011, 0.00460436149, -0.0142408116, -0.00162756629, -0.0362058803, 0.00939113554, 0.0116933165, 0.00357592828, -0.0361052379, 0.00989434496, 0.0267455522, -0.0441062599, 0.0146433786, -0.00754813338, -0.000303694425, 0.0064222035, -0.00796957, 0.0240911264, -0.010944793, 0.0162913874, -0.0154233528, -0.0484086946, 0.013649541, -0.00866777357, 0.00514845597, 0.0196880475, -0.0208580084, 0.0161655862, -0.0509499, -0.00695686275, -0.0343691669, -0.0134608382, -0.0119323405, 0.01244184, -0.0220657103, 0.0357278325, 0.0303686559, 0.0149704646, 0.0182790626, -0.00283055, -0.018014878, -0.0152346492, -0.0160775241, -0.0119700814, -0.0227450412, -0.0406844392, -0.0461694151, -0.0113410708, -0.0491131879, 0.0205309223, -0.0114668729, 0.0308467057, -0.00225657737, -0.0134608382, 0.00360423373, -0.0158888213, -0.00883760583, 0.0382690355, -0.0159894619, -0.0147188604, 0.00550699234, -0.027827451, 0.00814569369, 0.0126619935, -0.00562650431, -0.0236004964, -0.0353001021, 0.0231098682, 0.0476035625, 0.0289093517, 0.0256133322, 0.00951064844, 0.0359794348, -0.00134057994, -0.0181658417, 0.00554787787, 0.00971193146, 0.0219399072, -0.025890097, 0.0141653307, 0.0026009609, -0.039778661, 0.0177506935, 0.0200277139, -0.00723991776, 0.00153950474, -0.019750949, -0.0510253832, 0.0355768688, -0.00299881049, 0.028758388, 0.00434017647, -0.0167694371, 0.0258397758, -0.0310983099, -0.0186313093, -0.00138539693, 0.0110768853, -0.000758351525, 0.00918356236, -0.00900114886, 0.00560134416, -0.00650397502, 0.00844761916, -0.00400680071, -0.00187759812, -0.0109825339, 0.0359542742, -0.0484338552, -0.0108064106, -0.00839729793, 0.0694931448, -0.0398038216, -0.0104478747, 0.0143288728, -0.0355517082, 0.00705750473, -0.0321802087, 0.0241540261, -0.00462323148, -0.0107183494, 0.00924646296, 0.00643163873, -0.00143729034, -0.0356775112, -0.0141779101, 0.00676186942, 0.0129953697, -0.0415650532, 0.0131966528, 0.0183168035, 0.00469871284, -0.0118883103, -0.0141527504, 0.0225940794, -0.0256762337, -0.00152613816, -0.0105988374, 0.0172349047, -0.0284564625, 0.0202667378, -0.0089696981, -0.0508241, -0.00993208587, 0.00897598825, 0.0193358, 0.0254497901, 0.0112152677, -0.0159768816, 0.0382187143, -0.00818343461, 0.0203673802, -0.0299409293, -0.0669267848, -0.0547491275, 0.00799473096, -0.0153227104, 0.027827451, 0.00404139655, -0.00460436149, 0.0314002335, -0.0249465816, -0.0104038436, -0.00939742569, -0.00270474772, 0.0144924158, -0.0167191159, -0.0364071615, 0.0354762264, 0.0149830449, -0.0205057617, -0.0381683931, -0.00512015028, 0.00237923465, 0.0527362935, 0.00219367631, -0.00674299896, -0.0155743156, -0.00384011283, 0.000601098756, 0.0497422, 0.0149830449, -0.0241791867, -0.0407599211, -0.0219147466, 0.0181910023, 0.0118442792, 0.0205812436, 0.00628382107, -0.00909550115, 0.0201031957, 0.000829508412, 0.0322556905, 0.0498428419, 0.00376463146, 0.00856713112, -0.00656687608, 0.00201440812, -0.0245817546, -0.00611084281, 0.0534911044, 0.00879986584, 0.00451000966, -0.00024708343, 0.0376651846, -0.0169581398, -0.0301925335, 0.0182664823, -0.0244307909, 0.0124921603, -0.0032268269, 0.00534973945, 0.00654800562, -0.00973080192, -0.00240596756, -0.0418669805, -0.0200528745, -0.00844761916, 0.0228708442, -0.00273934333, 0.030897025, 0.0231601894, 0.00761732459, 0.00878728554, 0.00183042232, 0.0211473536, 0.0221411902, 0.00208674441, 0.0284313019, 0.0762864649, 0.00697573321, -0.0461945757, -0.00735943, 0.019184839, -0.0249088407, 0.00108740292, 0.0201660972, -0.0204554405, -0.0307209026, -0.00930936448, 0.0230847076, -0.0324569717, -0.00559819909, -0.00529627362, -0.0413889326, 0.00477419421, -0.0252862461, -0.0203925408, -0.0329350233, 0.0108881826, -0.0135111585, -0.0258146152, -0.00837842841, -0.0289345104, 0.0123097477, -0.000130126675, 0.0107246395, -0.000984402373, 0.032633096, 0.00261983136, -0.00616116403, 0.0139011452, -0.0202541575, 0.000324726978, 0.0104415845, 0.021247996, 0.0213863775, -0.0277268104, -0.0300415698, -0.018014878, -0.011146077, -0.0226444, -0.0132343937, -0.0053434493, 0.0210467111, 0.00321424683, -0.014542737, 0.00674299896, -0.0267707128, 0.0071455664, -0.00594415516, -0.0288841911, -0.00708895503, -0.00536231976, -0.0427224338, -0.038495481, -0.0232230909, -0.0559065081, -0.0014310003, -0.0136243803, 0.00214178278, -0.0189961363, -0.050975062, -0.015549155, 0.0329350233, 0.0274500456, -0.0260159, -0.00199082028, -0.00576488674, 0.0133853564, 0.00615801895, 0.0115800947, 0.00747894216, 0.00337149948, 0.0234243739, -0.0165933128, -0.00794441067, -0.0209712312, 0.00069073285, -0.00545352651, 0.0203422196, 0.0403573513, 0.0227324609, 0.019310642, 0.00534659438, -0.017612312, -0.0166184735, -0.015511414, 0.00639704289, 0.0260662213, -0.0115297735, 0.0318028033, -0.00374576123, -5.92646393e-05, 0.021688303, -0.00268587749, -0.0417663381, 0.00997611601, 0.0328595415, -0.0212354157, -0.0284061413, -0.0151717477, 0.0343440063, 0.00448484905, 0.0012792513, 0.0254246294, 0.0113976812, -0.0209963918, -0.0360800773, 0.0183922853, -0.00400051055, 0.0124858702, 0.000360698556, -0.00158117665, -0.0233363118, -0.0159643013, 0.0159643013, -0.0161781665, 0.0626998246, -0.018945815, -0.0163920298, -0.00377092161, 0.0117750885, -0.00542207574, 0.0187696908, -0.00322997198, 0.0102654612, 0.00493773725, 0.00763619505, 0.0287080668, 0.0381432325, -0.0129450485, 0.0244056303, 0.00101663917, 0.00905776, 0.0106177079, -0.00851052068, -0.0186816305, -0.0182035808, -0.0639578477, 0.0225185975, -0.0121084638, -0.00551328249, 0.0300918911, 0.0432508029, 0.01304569, 0.0148069216, 0.00731539913, -0.00184614758, 0.00792554, 0.0129953697, 0.0276513286, 0.0295886826, -0.0218770057, -0.0138508249, -0.0133476155, 0.0225689188, 0.0458926521, -0.018178422, 0.0011377238, 0.0224682763, -0.0101522394, 0.00415776344, -0.00475532422, -0.0363316834, 0.00832181703, -0.0114857433, -0.0572148524, 0.021449279, 0.008441329, -0.00102214306, 0.0436030515, 0.0132721346, 0.037363261, -0.0155868949, -0.0177381132, 0.0324821323, -0.03449497, 0.0148069216, -0.0315763578, 0.00518934149, 0.00681848032, -0.0196880475, -0.00770538626, 0.000795699074, 0.0119260503, 0.0109636635, 0.00695686275, -0.0290099923, 0.0409360416, 0.00274563348, 0.000233716943, 0.0101711098, -0.00477733929, 0.0422192253, -0.0198893305, 0.0131840734, 0.0103220725, -0.0342685245, -0.00411058776, -0.00512329536, 0.0206315648, -0.0200906154, 0.0128192464, 0.0261165407, -0.0179897174, 0.00585294841, 0.00669896835, 0.0216128211, 0.0174361877, -0.020757366, 0.0163542889, 0.0036168138, -0.0163291283, 0.0318531245, 0.00837213825, -0.0132092331, -0.00339666, -0.0306454208, -0.0162410662, 0.0130331106, 0.0256259125, 0.0196377262, 0.0162662268, -0.00235564657, 0.00709524518, 0.00811424293, 0.0158636607, 0.00429300079, -0.00371116563, 0.00776199717, -0.0103535233, 0.0318782814, 0.0289345104, 0.0194993448, 0.0224682763, -0.00491886679, -0.0336646736, -0.0199270714, 0.0225689188, 0.00172506296, -0.0263429862, 0.00610769773, -0.00478677452, 0.010460455, -0.000745378144, 0.033639513, 0.00441880291, -0.0217512045, 0.00651026517, -0.00793812051, -0.00010820957, 0.0150836864, 4.10577159e-05, 0.0582715906, 0.00270160264, -0.00112199853, -0.010259171, 0.0237640403, -0.00757329399, -0.00170462008, -0.0183545444, -0.0867028907, -0.00774941687, 0.00450057443, 0.00133822113, 0.0275758468, -0.0020175532, -0.0112970397, -0.0284313019, 0.00822746567, 0.0100515978, -0.0336143523, 0.0103723928, 0.013410517, -0.015347871, 0.00138382439, 0.0190590359, -0.00493459217, -0.0189583953, 0.0327337384, -0.0463707, -0.00184143009, -0.0241791867, 0.0539943129, 0.00586238364, -0.0105107753, -0.0108378613, -0.0162913874, -0.00252233446, -0.00917727221, -0.00843503885, 0.00739088049, 0.0214115381, 0.0210592914, -0.0269971564, -0.000281482469, -0.0489622243, 0.0192729011, 0.0201409366, -0.0150836864, -0.0220028087, 0.0177758541, 0.0243804716, 0.0375897028, 0.0259655789, -0.0158007592, -0.00130598433, -0.00931565464, -0.0154107725, 0.0241414458, -0.00904518, 0.000766214158, -0.0369858518, -0.00856084097, 0.0199773926, 0.0164926723, 0.00318436883, 0.0288338698, -0.0104038436, -0.0300164111, 0.00423324481, -0.00536546484, -0.00748523232, 0.0166939553, -0.0476790406, 0.00606052205, 0.0102843316, -0.0106554478, -0.000690339715, 0.0194238629, 0.038646441, -0.0364323221, -0.0301673729, -0.0160649437, -0.0249843206, -0.0433262847, -0.020681886, -0.0121713653, -0.0211976748, 0.00172820804, 0.0299157687, -0.0119700814, 0.0147188604, 0.00861116219, -0.0270474777, 0.0121336244, -0.00752926292, 0.000100150362, 0.0190590359, 0.0341678821, 0.0140143679, -0.00613285834, 0.0101522394, -0.00266386196, -0.00886276644, -0.0343188457, -0.00584980333, 0.0452133194, -0.00702605397, 0.0271984413, -0.0148446625, 0.00946032722, 0.0111649474, -0.0449365526, -0.00861116219, -0.0129450485, 0.0191219375, -0.0156246359, 0.0210341308, 0.0133727761, 0.0236508176, 0.00412945775, -0.0149830449, 0.00212291256, -0.0012249992, -0.0226695612, -0.00321896444, -0.00146795472, 0.0046200864, -0.00537175499, 0.0211599339, 0.0152975507, 0.0209712312, -0.0209334902, -0.0144295152, 0.0108001204, -0.0256762337, -0.00694428291, -0.0142533919, -0.0345201306, -0.0152472295, 0.0302428547, 0.0212605763, -0.00641276827, -0.0047175833, 0.0110076945, 0.0135740601, -0.0118254088, 0.0254246294, 0.0153730316, 0.00583093287, -0.0136872819, 0.0315260366, 0.0149327237, -0.0428230762, -0.0216505621, 0.00642849365, 0.0254497901, 0.0434017666, -0.0458171703, 0.0298151262, -0.00287615322, 0.029563522, 0.0132343937, 0.0131085915, 0.011026565, -0.0357278325, -0.00725878822, -0.0287835486, 0.010825281, -0.000613285811, 0.0119071808, 0.0107560903, 0.0184300262, -0.0023084709, 0.0062932563, 0.00342811062, 8.96340862e-05, 0.0204177015, -0.00305699394, 0.0305196196, -0.0208957493, 0.0179771371, -0.0393760949, -0.0110139847, 0.0415398926, 0.0232985709, 0.0146433786, -0.0471506715, -0.00211976748, 0.012158785, 0.0220279694, -0.0368097313, 0.0262423437, 0.0263681468, 0.0125676421, 0.0273494031, -0.00240125, 0.0158888213, 0.0527362935, 0.00645994395, 0.019386122, 0.000969463377, -0.00120612886, 0.0183168035, 0.0217134636, -0.0179897174, 0.0263933055, 0.00947290752, -0.0186816305, -0.00473016361, 0.0083658481, 0.0122153955, 0.00830923673, 0.023587916, -0.00281639723, -0.0127123147, -0.0516292304, 0.03562719, -0.0229966454, 0.0144043546, -0.0159894619, -0.0210718717, 0.0118568595, -0.00406970177, -0.0381432325, -0.00870551355, -0.00582149765, -0.0200654548, 0.0199144911, -0.0209963918, -0.0285319444, 0.0217512045, -0.00303969625, -0.0233111512, 0.00620519463, -0.00658574654, 0.0170713607, 0.00893824827, -0.000229589059, -0.00495031755, 0.00489056157, -0.0141904904, -0.00951693859, 0.0228456836, -0.00899485871, -0.00193420914, -0.0573658124, 0.0380677544, -0.0122028152, 0.00643163873, 0.0221537706, 0.0137627628, -0.0250220615, 0.0108567318, 0.0816708058, 0.00285256538, -0.0165304113, -0.000682870217, 0.0297144856, -0.002181096, -0.0236130767, 0.00730281882, -0.0400302671, 0.0191722587, -0.0430746824, 0.0254749507, -0.00406341162, -0.0124166794, 0.0108189909, -0.00833439734, 0.022380216, -0.0268713553, -0.00116131175, -0.0129576288, 0.0233363118, -0.016442351, 0.0284564625, 0.00421437435, -0.0145930583, 0.00302239833, -0.0325072929, -0.0212228354, 0.00239967741, 0.0131840734, -0.0297144856, -0.0370613337, -0.0102340104, -0.00597875053, 0.0305447802, 0.00094508921, 0.0177003723, 0.00910179, -0.00056571688, 0.0116870264, 0.0275506862, -0.0189583953, 0.0382187143, -0.0312744342, 0.0182664823, 0.00467040762, 0.0155743156, 0.00736572035, -0.016681375, -0.00385269313, -0.0120204026, -0.0333124287, -0.0307712238, -0.00824633613, 0.032029245, -0.000974967203, 0.0213612169, 0.00207730918, 0.0115171932, 0.00594101, -0.0358787924, -0.0132595543, -0.011190108, 0.00706379488, -0.0259907395, -0.00277393893, -0.00155994762, 0.000619182829, 0.00548183173, 9.1464608e-06, 0.0203422196, -0.0282803401, -0.0372626185, 0.0103220725, -0.00959241949, -0.0138256643, -0.0157001168, 0.0182287414, 0.0102780415, -0.0137753431, -0.0310479887, -0.0324821323, -0.0147440201, 0.0171468426, -0.00622406509, -0.0186816305, -0.018744532, 0.00781231793, -0.0223047342, 0.00990692526, -0.0355768688, 0.0514782704, -0.00186030031, 0.00134922878, -0.00238395203, -0.00675557926, -0.00757329399, -0.0225185975, -0.0407850817, 0.00134293875, -0.00229117298, 0.0364574827, 0.0118883103, -0.0144043546, -0.0256510731, -0.0555039421, 0.0514782704, 0.00652284501, -0.0285067838, 0.0567116402, 0.0143540334, 0.0499938, 0.0107623804, -0.0121462047, 0.00860487204, -0.0203422196, -0.0184300262, 0.0342433639, -0.0161907468, -0.030293176, 0.00693170261, 0.00470814807, -0.0112467185, 0.0360800773, 0.0257642958, -0.0341678821, 0.00174236076, -0.00671783881, -0.0117373476, -0.0121965259, 0.0381180719, -0.0135363191, 0.00148368, -0.00367027987, -0.0008931958, 0.00725249806, -0.0200151335, -0.012397809, 0.024191767, 0.0294880401, -0.00553844264, -0.0273745637, -0.0661719665, 0.00793183, 0.00157174154, 0.0035947985, -0.0263178255, 0.02488368, -0.0133979367, 0.00445968891, -0.000822432048, -0.00202856073, -0.0405837968, -0.00757958414, 0.00581206288, 0.00479306467, -0.00219210377, -0.021889586, 0.00800102111, 0.000598346815, -0.0230469666, -0.0258397758, -0.035501387, 0.0353001021, 0.00696944306, -0.0179771371, -0.00081063807, -0.00632156152, 0.00137045793, -0.00161655853, 0.0130205303, -0.0267455522, 0.0124229696, 0.0255001113, 0.0166184735, -0.0273997243, -0.00242169271, 0.0106931888, 0.026493948, 0.0452133194, -0.0211850945, -0.0164046101, 0.00485911081, -0.000329641131, -0.00729652913, 0.0140143679, -0.0144043546, 0.00119512109, 0.0342433639, 0.00753555307, -0.00208674441, -0.00228173775, -0.00935339555, -0.0360549167, -0.0233992133, -0.0100327274, 0.00356963812, 0.0125047406, 0.0228456836, -0.00750410277, 0.0179771371, 0.000270278222, 0.0267707128, -0.0144798355, -0.00950435828, 0.00695686275, 0.0023525015, -0.0107372198, 0.00681848032, 0.018744532, -0.00963645056, -0.0240156446, -0.011756218, 0.0112089785, 0.0165429916, 0.0143917743, -0.0083658481, 0.0162662268, -0.00288716098, 0.0118505694, -0.00354762259, -0.00211347733, -0.00585294841, 0.0287835486, -0.0206441451, 0.00159297069, -0.013410517, 0.0306705814, -0.0123852286, -0.0288590305, -0.00861116219, -0.00589383394, 0.0193609614, 0.0230721273, 0.0159894619, 0.00818972476, 0.012397809, 0.0129324682, 0.00472387346, 0.00712040579, -0.00253176969, -0.00858600158, -0.000179759576, -0.00829665642, -0.00147031352, 0.012158785, 0.016681375, -0.0305447802, 0.00467040762, -0.00970564131, -0.0228708442, -0.0132721346, 0.0282048583, -0.00288087083, -0.0104227141, -0.00877470523, -0.003453271, -0.0149830449, 0.0190212969, -0.0194112826, -0.00702605397, -0.0156749561, -0.00871809386, -0.00793183, -0.00564852, 0.00226444, -0.003453271, 0.00172506296, -0.0301422123, 1.69906707e-05, -0.0226695612, 0.0167694371, -0.0114857433, 0.00183042232, 0.00842245854, 0.0200780351, -0.0119386306, 0.0033337588, -0.0137879234, 0.00947919767, 0.0205812436, -0.0240030643, -0.0107560903, 0.00148525252, -0.0183419641, 0.0101711098, 0.0232356712, 0.00417034375, -0.0159014016, -0.014580478, -0.00766764535, -0.0174236074, -0.0202289969, 0.0247830376, -0.000912852352, -0.00688767154, 0.0248333588, 0.0104415845, 0.0414895713, 0.0103849731, -0.0146307983, 0.0166184735, 0.0280035753, 0.00421437435, 0.0292615965, 0.0114417123, -0.0184174459, -0.0058403681, 0.0199648123, -0.00462952163, -0.0197383687, 0.0120895933, 0.017083941, -0.0153981922, 0.00719588716, -0.0106680281, 0.000571220706, 0.0238395203, 0.0236508176, 0.0183042232, -0.0198641717, -0.00515474612, 0.0118568595, 0.0296390038, -0.0086237425, 0.0147440201, 0.0213989578, 0.0109888241, -0.026695231, 0.0177003723, 0.0209963918, -0.00635615736, -0.00769909611, 0.012643123, -0.012561352, 0.00957354903, -0.0174865089, -0.00699460367, -0.00807021279, 0.0178764965, -0.00466411747, -0.0425463133, 0.0255001113, 0.00573972659, -0.0356523506, -0.0112404283, -0.00026025335, 0.0370613337, -0.00573658152, -0.00713298609, 0.00277865655, 0.0298402868, 0.00693170261, -0.0321550481, 0.0279784147, 0.0045886361, -0.000792947132, -0.00148761133, 0.00367027987, -0.00827149581, -0.0195874069, 0.00934081525, -0.0261920225, 0.0091646919, -0.00733426958, 0.0086237425, 0.0303686559, 0.0294880401, -0.0227576215, -0.0103283627, -0.00137045793, 0.0257391352, -0.0203296393, 0.0137376031, 0.00446912413, 7.44493591e-05, 0.00338407978, -0.0162662268, 0.0171216819, -0.0265694298, 0.0220657103, 0.00540635036, -0.0144672552, -0.01074351, 0.0181155205, -0.0144798355, 0.00183513993, 0.00666751759, -0.00659832638, 0.0110391453, 0.0233740527, 0.0131966528, 0.00687509123, -0.00992579572, -0.0116304159, -0.0285319444, 0.0101019181, -0.00808908325, -0.00630583661, 0.00359794358, 0.0189332347, 0.0197886899, -0.0182916429, 0.00048826987, 0.0261668619, -0.01300795, 0.00868664309, 0.00413260283, -0.00462952163, 0.0200906154, 0.00543780113, 0.022455696, 0.0141904904, -0.00754813338, 0.0154610928, 0.0013814657, -0.0133224558, -0.030494459, -0.00371116563, 0.000506747107, 0.00213392, 0.00555416802, 0.0115234833, 0.0241162851, -0.0149704646, 0.00520506687, 0.00788779929, 0.00867406279, 0.0166058931, 0.0100264372, 0.00609197281, 0.00563279446, -0.0212605763, 0.0141653307, 0.0131589128, 0.0110705951, -0.0210215505, 0.00127138873, -0.0293874, -0.041640535, -0.0188451726, -0.00300824572, 0.0197383687, 0.0180652, -0.0208705887, -0.0132343937, -0.0012320755, -0.000150176405, 0.0193483811, -0.000704492442, 0.00676186942, -0.0240785461, -0.00989434496, 0.0057114209, 0.0161026847, -0.0293119177, -0.0183419641, -0.00535602961, -0.0111334966, -0.0243553109, -0.0148195019, 0.000929363945, 0.00747894216, -0.00410429761, 0.00851681083, 0.000216222572, -0.029563522, 0.0117813777, -0.0153604513, 0.0133601958, -0.0219399072, -0.0253994688, -0.00498176785, 0.0127060246, 0.0213360563, 0.00381180737, -0.0214366987, -0.00029897684, 0.0254623704, -0.023990484, 0.00580262765, -0.0109007629, -0.0162033271, 0.020518342, 0.00587810902, 8.65381662e-05, -0.0066612279, -0.00612027803, 4.87237921e-05, 0.0425211526, -0.0143666137, -0.00495975278, 0.0213737972, -0.0314505547, -0.00174707838, -0.00764877535, -7.80858318e-05, 0.00731539913, 0.00611398788, -0.00879986584, -0.000604243774, -0.00527111301, -0.0182287414, 0.0408857241, -0.00888792705, -0.0213486366, -0.00078862271, 0.0088942172, -0.0101333689, -0.00378035684, 0.0477042, -0.0259404182, -0.0049440274, -0.0022660126, 0.0111146262, -0.0147440201, -0.0239401627, -0.0131840734, -0.00757958414, 0.00356334797, 0.0109196333, -0.0232859906, 0.0290854741, -0.00928420387, 0.0101019181, -0.0169329792, -0.00391559396, -0.0041892142, -0.00400051055, -0.0162913874, -0.0149201434, 0.00950435828, -0.00519248657, -0.0197132081, 0.00216222578, 0.043099843, -0.00865519326, -0.00569569552, 0.0223047342, -0.00148210744, -0.0124103893, -0.0181281, 0.00628696615, -0.0111523671, -0.00720217731, -0.00729023898, -0.0109196333, 0.000824790797, 0.0238898415, 0.00199553766, -0.0305196196, -0.0246823952, 0.00946032722, -0.00254277745, -0.00159847445, 0.00400051055, -0.00570198568, 0.0174613483, 0.00864890311, 0.0216379818, 0.0183545444, -0.0468739085, 0.00810166355, 0.00880615599, -0.00891937781, -0.0182413217, 0.00817714445, 0.015951721, -0.0144420955, 0.0110580157, 0.00984402373, -0.0104352944, -0.0250849631, 0.00344069069, 0.0209838115, -0.011227848, 0.0357529931, 0.021889586, 0.00552900787, -0.017687792, -0.0227702018, 0.00618632417, -0.0344446488, -0.0621966198, 0.0212354157, -0.0126682837, 0.0183922853, 0.0108881826, -0.00721475761, -0.0227073, -0.00522079226, 0.0200277139, 0.0129827894, 0.0115171932, 0.0101144984, 0.0145553173, -0.00527740316, 0.0361052379, -0.0233614724, 0.0199899729, -0.0157630183, 0.0164926723, 0.0263933055, 0.0127689252, -0.0137250228, 0.00833439734, 0.020883169, -0.0209712312, 0.0365329646, -0.00662977714, 0.0171720032, 0.0177758541, -0.0179645568, -0.00684993109, -0.0230092257, 0.0160020422, -0.0315260366, -0.00807021279, -0.00297679519, 0.0132343937, -0.0262926649, 0.0150082055, 0.0109133432, 0.00382438768, -0.0279280934, 0.00731539913, -0.00596302515, 0.00807021279, 0.00521135703, 0.0138508249, -0.00268115988, 0.0360800773, -0.00423009973, -0.00813311338, -0.0227073, -0.00844761916, 0.0187319517, 0.0176248923, 0.00430243602, 0.0173229668, -0.0418921411, 0.0148320822, 0.0221411902, 0.01074351, 0.00369544025, 0.0242672488, -0.0279280934, 0.0114920335, 0.0130582703, -0.0169203989, 0.00783118792, -0.00927162357, -0.000653385301, 0.00913953129, -0.000432445144, 0.0263178255, 0.0235375967, 0.00232105097, -0.0128947282, -0.0125739323, 0.00192162895, 0.00792554, 0.00202698843, -0.0394012555, -0.00606052205, 0.011473163, -0.0109196333, -0.0250220615, 0.00273619825, -0.0228834245, -0.0278777722, 0.00803876203, -0.00302868849, -0.0165555719, 0.000245707459, 0.0123223281, 0.0197886899, 0.000971035915, -0.00520821195, 0.00553215295, -0.00293748197, 0.000568468822, 0.00801360141, 0.00590955932, 0.00800731126, 0.00449428428, -0.0283055, -0.00596617, -0.0351743028, 0.0115046129, -0.0172726456, 0.0184426066, -0.00590012409, -0.0140143679, 0.0178639162, 0.0378413089, 0.0314253941, 0.00457291072, -0.00587496394, 0.00177538383, -0.00240282249, 0.0264687873, -0.0153604513, 0.00568626029, 0.00566424523, 0.00339980517, 0.00337149948, 0.000534266292, 0.00223456207, 0.00581835257, -0.0214618593, 0.0245188531, -0.00495660771, -0.000371706265, 0.00138775574, 0.00626495061, 0.00209932448, -0.000620362232, -0.00328658312, 0.003453271, 0.013410517, 0.00415147329, 0.0167065356, -0.0113599403, 0.0264436267, -0.020757366, -0.00504466891, -0.00822746567, -0.00634986721, 0.0107560903, 0.00442823814, -0.0219273269, -0.0113976812, 0.00618632417, -0.0107938303, 0.0144295152, 0.0172223244, 0.00577746704, -0.00252705207, 0.00735943, 0.0211850945, 0.00303026102, -0.00229903567, -0.0261165407, -0.00516732642, -0.00627753092, 0.00158982561, 0.0169958808, -0.00399107533, -0.0112467185, -0.00513902074, 0.00703863427, 0.0213612169, -0.0135740601, 0.00927791372, 0.0261668619, -0.00456976565, 0.0182664823, -0.0155365746, 0.0159014016, -0.00213549263, 0.0210089721, 0.00342182047, 0.0228331033, 0.0150459455, 0.0216002408, 0.0193358, 0.00645994395, 0.00446283398, -0.0035822182, 0.0148069216, -0.0159768816, 0.00402567117, 0.0141653307, 0.00740975095, 0.00377721176, -0.0099509554, -0.0164549313, -0.0158385, -0.0130960112, -0.00949177798, 0.0276010074, -0.0227702018, 0.00763619505, -0.00874325447, 0.0148824025, 0.0150333652, -0.0224682763, -0.0121021736, 0.00141606131, -0.00256322022, 0.0354259051, 0.0276764892, -0.000737122376, 0.00309630716, 0.0170084611, -0.0131840734, -0.0241162851, -0.0248081982, 0.00373947108, 0.0121839456, -0.0196754672, -0.00051382347, -0.00248459401, -0.000971822185, -0.0230595469, -0.0324569717, -0.0154610928, -0.00856713112, 0.0207070466, -0.00805763248, 0.00905147, 0.00178010145, -0.022380216, 0.0190464556, -0.00416719867, 0.0162662268, -0.00900743902, 0.00594730023, -0.00686251139, 0.0137753431, 0.00779973762, -0.00460436149, -0.00162442122, 0.00137910689, -0.00186659046, -0.0138382446, 0.0143414531, -0.00439678784, 0.00464210194, 0.00653542532, 0.00666751759, 0.00937855523, -0.00290603144, 0.0144672552, 0.0151969083, -0.00241540256, 0.00676186942, -0.0125990929, -0.0059693153, 0.0226947218, -0.013410517, -0.00752297277, 0.018945815, -0.0141779101, -0.0116933165, 0.00635930244, 0.0121273343, 0.00656058593, 0.029689325, 0.00113222, -0.00152142067, 0.0107686706, 0.0295383614, 0.00121713651, -0.00229903567, -0.0134734176, 0.00232105097, 0.0132595543, 0.00855455082, 0.00966161, -0.0109888241, -0.0212857369, -0.00317336107, -0.00640333304, -0.00506668445, -0.00603536144, -0.0130205303, -0.0022880279, 0.0168197565, 0.0166939553, 0.0182664823, -0.00545667158, 0.0222040918, 0.00229903567, -0.0160146225, -0.00304441387, -0.00856084097, 0.021449279, -0.0212102551, -0.00615487387, 0.00779344747, 0.00350044691, 0.00447541429, -0.00351302698, -0.0167191159, 0.00594415516, -0.0120833032, -0.00231947843, 0.00153164205, -0.00108504412, -0.00381495245, -0.00651026517, -0.0144924158, 0.000189489598, -0.0203296393, -0.010057888, -0.0305951014, 0.00311989523, 0.00403510639, 0.00423009973, 0.0035822182, 0.00402252609, 0.00293590943, -0.0103912633, 0.00849794, -0.00377092161, -0.000261825888, 0.0175745711, -0.0144672552, 0.0318531245, 0.0076739355, 0.0198264308, -0.0164297707, 0.0283809807, -0.00142628269, -0.0192351602, -0.0266449116, -0.00955467857, 0.0255755913, 0.0212731566, -0.0333375894, -0.0164675117, 0.0135992207, -0.0290099923, 0.00460121641, -0.0256259125, 0.01300795, -0.00624922523, -0.0100515978, -0.00209932448, 0.00829665642, -0.0142408116, 0.0165681522, 0.0220153891, 0.00878728554, -1.51970071e-05, -0.0013390074, -0.00486540096, -0.0124858702, -0.000356570672, 0.00834697764, -0.00159061188, -0.020518342, -0.000349690876, -0.0101648197, -0.0208328478, 0.00110941834, 0.0145930583, -0.00518305134, 0.0234243739, 0.00710153533, -0.0034752863, -0.0247830376, -0.00715814624, -0.0375645421, 0.0135111585, -0.00356649305, 0.0054409462, 0.00421437435, 0.0120895933, -0.0146182179, 0.00380551722, 0.0175871514, -0.0219524875, -0.00298308511, -0.00294062705, -0.0200528745, 0.0105988374, -0.000221922979, 0.00610769773, 0.0156623758, -0.00595673546, -0.00353504252, 0.0199648123, 0.0280790552, 0.00221883669, 0.00917098206, -0.00495346263, 0.0258397758, 0.007189597, 0.00365455449, 0.00929049402, -0.0200402942, 0.0159643013, 0.0023430665, -0.0235627554, -0.0096804807, -0.00205843896, -0.0125865126, 0.00918985251, 0.000572007, 0.00464524701, 0.00928420387, 0.0118065383, -0.0123411976, 0.00610140758, 0.00821488537, -0.0103849731, -0.0139514664, -0.006280676, 0.0256636534, 0.0172097441, -0.00568311522, -0.0438798144, 0.0051170052, 0.00634672213, -0.00932823494, 0.0226569809, 0.00335577433, -0.0057963375, -0.0160901044, -0.0209963918, -0.00768022565, -0.00906405, 0.00146009203, -0.0047175833, 0.00917727221, -0.000785477634, 0.033488553, 0.0199648123, -0.0276764892, -0.00999498647, -0.0187067911, 0.0295132, 0.0315511972, 0.0183545444, -0.0321802087, 0.000152535198, -0.0272236, -0.0127311852, -0.00460436149, -0.0141904904, -0.00522393733, -0.0126053831, -0.0189080741, -0.017083941, 0.0173732862, -0.0173481256, -0.00895082857, -0.00922130328, 0.0339414403, -0.00974967238, 0.0280790552, 0.0143414531, -0.00430243602, -0.0132972952, 0.000803168572, -0.0204177015, 0.0110768853, -0.015951721, -0.0167945959, 0.0117625082, 0.00119512109, 0.00820859522, 0.000268312549, 0.0163291283, -0.00248931139, -0.00873696432, -0.016115265, -0.00829036627, -0.00598189561, 0.0127437655, 0.00771167642, 0.017612312, 0.0435527302, -0.0106994789, 0.0131463325, 0.0017093377, 0.0168700777, 0.0078248987, 0.00713927625, 0.0141275898, -0.00101428037, 0.00287615322, 0.00273462571, 0.00747894216, -0.0242043473, -0.0086992234, -0.0216254015, -0.0292112753, 0.000985188643, 0.0122091053, -0.00244056317, -0.000439128373, 0.00881244615, 0.0288841911, -0.0014137025, -0.00122106785, 0.0130331106, -0.00135158759, -0.0155868949, 0.00964274071, -0.00603536144, 0.0136872819, -0.000805920514, -0.00614858372, 0.0007689661, 0.0167191159, -0.00904518, -0.00973080192, 0.0145930583, -0.0191093571, 0.00206944649, 0.0123537779, 0.0150333652, -0.020115776, 0.0282551795, 0.0240533855, 0.0139892073, 0.0203296393, 0.010221431, -0.0225563385, 0.0293119177, 0.0109825339, 0.00610140758, -0.00952322781, -0.0139011452, -0.0041766339, -0.0150836864, -0.00978741329, -0.0194741841, 0.0386212841, -0.0109888241, 0.00461694179, 0.000572007, -0.0126619935, 0.0110831754, 0.00472387346, -0.00652913516, 0.0210970324, 0.00400680071, 0.00145301572, 0.00466097239, -0.000214650048, 0.00710153533, 0.014781761, 0.0139892073, 0.0148320822, -0.0109888241, 0.021814106, -0.0348723754, -0.0146056376, -4.07628686e-05, -0.00330859842, -0.0098880548, -0.0135488994, 0.00324884243, -0.0119449208, 0.0133350352, 0.00216379832, 0.00855455082, -0.0363820046, 0.00834697764, 0.00205529388, 0.00722733792, -0.0160523634, 0.0154359331, -0.0124103893, 0.00281167962, -0.0262423437, -0.0123663582, -0.00832810719, -0.0103723928, -0.00386212813, -0.00375205139, 0.0140898488, -0.0129198879, -0.00339037, 0.00900743902, -0.00327714789, -0.00191691134, 0.000980471, 0.0307963844, 0.0153730316, -0.00843503885, 0.0345201306, 0.014379194, -0.00614858372, -0.00906405, -0.00114715903, -0.0269971564, 0.00704492442, -0.0081708543, -0.0105233556, -0.0128255365, 0.0307712238, -0.00137360301, 0.0124040991, 0.00239810487, 0.0119889518, -0.00663606729, 0.0206944663, 0.0413134508, -0.00330545334, -0.0102403006, -0.00205372134, 0.000772111118, 0.0358284712, -0.00543780113, 0.00700089382, 0.00324255228, 0.0115486439, 0.0102340104, -0.0142030707, -0.00522708241, 0.00372060062, -0.0170084611, 0.0263429862, -0.00623035524, 0.0113976812, -0.0050415243, -0.0236508176, -0.000637266901, -0.0229714867, -0.00337149948, -0.00738459034, 0.00813940354, -0.0166939553, -0.0198893305, -0.00264184666, 0.001868163, -0.0024720137, 0.00903889, 0.0211725142, 0.000213667212, -0.00364511949, 0.00423009973, 0.00396591518, -0.0120329829, -0.0228960048, -0.0206315648, 0.0173858665, 0.0151591683, 0.00187288062, 0.0455404036, 0.0335137136, 0.0197383687, 0.0014632371, -0.019549666, 0.00584665826, -0.018052619, -0.00431187125, -0.0044785589, -0.0139892073, 0.0122091053, -0.00905147, -0.0113473609, -0.022820523, 0.00455404026, 0.0141653307, -0.00778715778, -0.00930307433, -0.00492515694, -0.00967419054, -0.0152598098, 0.00420179404, 0.0148320822, -0.0055698934, 0.0232985709, 0.00712669594, 0.0154988337, -0.0193232205, 0.00636244752, 0.0184048656, -0.0125928028, -0.0127123147, 0.0149956252, -0.0235753357, 0.00936597586, 0.00354762259, -0.0170713607, -0.0137250228, 0.0210215505, 0.00163700141, 0.0114920335, -0.00490628649, 0.00558247371, 0.00523651764, 0.0165429916, 0.0229463261, -0.0125110308, 0.00411373284, 0.0141401701, 0.0281042159, -0.0138005037, 0.0288590305, -0.000292883313, -0.00652913516, 0.0122153955, 0.0273494031, 0.0214241184, -0.00703234412, 0.0166436341, -0.014945304, 0.00818343461, -0.0180400386, 0.000750095758, -0.00464839209, -0.0161781665, 0.0390993319, -0.00707008503, -0.000470972067, 0.00400365563, 0.0272990819, -0.00228488282, 0.010661738, 0.00973080192, 0.00271103787, 0.0142659722, -0.0193483811, 0.0037237457, -0.00626809569, 0.00791296, -0.0109322127, 0.0126682837, -0.00839100871, -0.0162284859, 0.00116288429, -0.0278777722, 0.00314820069, -0.00645994395, -0.00838471856, -0.0121902358, 0.00808279309, 0.018945815, 0.00106381509, -0.0106931888, -0.0162033271, 0.0120895933, 0.0269468352, 0.0253743082, 0.0103849731, -0.0137250228, -0.0158888213, 0.0120958835, 0.00460121641, -0.0188703332, -0.0152220689, -8.67838753e-05, -0.0180022977, 0.0124984505, -0.0174236074, -0.0124732908, -0.0135866404, -0.0116996067, 0.00805763248, -0.00376463146, -0.0179645568, -0.0313750729, 0.0116933165, -0.0150711061, -0.00854197051, 0.00386212813, -0.00401309086, -0.00479935482, -0.00592213962, 0.0156749561, -0.00526167778, -0.00394075457, 0.00813940354, 0.00512015028, 0.00939742569, 0.000673435046, -0.00871809386, 0.0267958734, 0.00274091586, -0.0104730353, -0.0110202748, 0.0071455664, 0.0231224485, -1.66712507e-05, 0.0066800979, 0.0100893378, 0.015184328, 0.00684364093, 0.0143917743, -0.0157001168, 0.0184551869, 0.0140898488, -0.0170965213, 0.027827451, -0.0100641781, -0.00761732459, 0.000235682601, 0.00890679751, -0.00902001932, -0.0118002482, -0.0173355471, -0.00545038143, 0.0194993448, 0.00478362944, -0.0303434953, 0.00194364437, 0.0111334966, -0.0129073076, -0.0351491421, -0.0325827748, -0.0340169221, 0.00900743902, 0.00204585865, 0.0116870264, 0.000907348527, 0.0132092331, 0.00850423053, -0.00631527137, 0.0177255329, 0.00701347413, -0.0109699536, 0.00998869631, -0.00028285844, -0.0128066661, -0.0236130767, -0.0120518534, -0.0170587823, 0.0138634052, -0.00939113554, -0.0175871514, -0.00752297277, 0.00864261296, 0.0221537706, -0.0147188604, -0.020115776, -0.0015104129, 0.000622721, 0.0108064106, -0.00226758514, -0.0102088507, 0.00575859658, 0.00454146042, -0.0232482515, 0.0196125656, -0.0031183227, -0.0246194955, -0.00149468763, 0.0154988337, 0.000777221867, -0.016882658, 0.0264436267, -0.00196251459, -0.0076299049, -0.0167442765, -0.0167316962, 0.0119637912, -0.00162599375, -0.0119386306, 0.010095628, -0.00632156152, 0.0225060172, 0.00778715778, 0.0323814936, -0.00205372134, -0.0142533919, -0.0196503066, -0.0153730316, 0.01304569, 0.0133979367, -0.00976225268, -0.0183922853, -0.0029909478, 0.0153604513, 0.00779344747, -0.00341553031, -0.0052019218, -0.0276010074, -0.00895082857, 0.00877470523, 0.00172820804, -0.0125110308, 0.0123789385, 0.0153604513, 0.00108032662, 0.00318122376, -0.00651655532, 0.0172349047, 0.00424582511, 0.0174361877, 0.0276764892, 0.0221915115, -0.00212605763, -0.0123160379, -0.00726507837, -4.15859904e-06, -0.0186438896, -0.0367845707, -0.00565166492, -0.000879829284, -0.0101962704, 0.0218518469, 0.0187948514, -0.0059693153, 0.0138508249, 0.0253114067, 0.00446597906, 0.0188577529, 0.0182035808, 0.00375834131, -0.00808279309, 0.00585294841, 0.00420493912, 0.0164675117, 0.0132092331, -0.023952743, 0.000533086946, -0.00864261296, -0.00709524518, 0.00275192363, -0.00656687608, -0.0138508249, 0.0133224558, -0.014781761, -0.00106145628, 0.0110454354, -0.0152975507, -0.00380237214, -0.00540320529, -0.00996982586, -0.0228960048, 0.0198893305, 0.00519877672, 0.00899485871, -0.017687792, -0.0103975534, 0.0154107725, 0.00492830202, 0.00556360325, -0.00993208587, -0.0314757153, 0.0133476155, 0.026821034, -0.00562650431, -0.00630898168, -0.000650633359, -0.00642849365, 0.00618946925, 0.01187573, -0.00529312855, -0.00285413791, 0.00826520566, -0.00854826067, 0.0147188604, 0.00530256378, -0.005028944, -0.012278297, -0.00427727541, -0.0247075558, 0.000548419077, 0.00271575549, 0.0177129526, 0.0214241184, 0.00165901682, 0.0118316989, 0.0160775241, 0.0141275898, 0.0141275898, 7.675901e-05, -0.0203548, -0.0217637848, 0.00196880475, -0.0229085851, 0.0126053831, 0.00295949727, 0.00709524518, 0.00148210744, -0.00912066083, 0.018014878, 0.0102403006, -0.0199144911, 0.00787521899, 0.0159014016, 0.00296106981, 0.00351302698, 0.021889586, -0.018983556, -0.019184839, -0.000802382303, -0.0133224558, -0.0215247609, -0.0118128285, -0.00909550115, 0.00967419054, 0.0232482515, -0.0218644254, 0.00377721176, 0.0088816369, 0.0223173145, -0.00757329399, -0.0165681522, -0.00411058776, 0.0260159, -0.00886905659, -0.000882188091, -0.00585609348, -0.0462952182, 5.41539266e-05, -0.0121336244, 0.00400994578, -0.0208454281, 0.0169707201, -0.0089696981, -0.0197383687, 0.00210246956, 0.0201409366, -0.00839100871, -0.0115486439, -0.0127374753, -0.002181096, -0.0375897028, 0.0121650752, 0.0143037131, -0.0117750885, -0.0179393962, 0.00359165343, -0.0108441515, 0.00542207574, 0.00240754, -0.00452888, -0.00214964547, -0.0098880548, 0.00400051055, -0.0171468426, -0.038369678, -0.021449279, 0.026493948, 0.0113284905, 0.0231727697, -0.00421122927, 0.00389043381, -0.0261668619, -0.0117184771, -0.00830294657, 0.00118961732, -0.00525538763, 0.00617059879, -0.0243678913, -0.00531514408, -0.0141024292, 0.00860487204, -0.00360737881, 0.000599919353, 0.0108378613, -0.00226915767, 0.000387824664, -0.00208517187, -0.0109951142, 0.0117750885, 0.0027723664, -0.00796957, 0.0166939553, -0.011190108, -0.00515160104, 0.0187193714, -0.00400680071, 0.0105673866, -0.00801360141, -0.00804505218, -0.00830294657, -0.000261825888, 0.00506982952, 0.00515474612, -0.0124040991, 0.00183828501, 0.035501387, 0.00548497681, -0.00250031915, 0.0190087166, -0.00352560729, -0.00592843, 0.0166058931, -0.0146056376, 0.00137832062, 0.00200182782, -0.00317178853, 0.0282551795, 0.00104651728, 0.0147440201, -0.0015056954, -0.00125015958, 0.0130205303, -0.00991950557, 0.0125802225, -0.0112530086, -0.0107749607, -0.00561706908, 0.00593472, -0.00338407978, -0.00272361818, -0.00699460367, -0.00727136852, -0.00984402373, -0.0145175764, -0.000557068, -0.0043181614, -0.0102025606, -0.0084287487, 0.0145553173, -0.0323060118, 0.010787541, -0.014580478, 0.018820012, 0.0112718791, 0.00598189561, 0.0348220542, -0.000500850088, 0.00378664699, 0.0135992207, 0.0225060172, 0.0230469666, 0.0071455664, -0.0100704683, 0.0148949828, -0.0193358, 0.00260882359, -0.0171091016, -0.0147440201, -0.000633335556, -0.0245314334, -0.0191974193, 0.00640647812, -0.016480092, -0.0033337588, -0.0167065356, -0.000658496, -0.0256762337, -0.0043496117, -0.00250189169, 0.019952232, 0.0174865089, -0.00639075274, -0.00525224302, 0.0254246294, 0.00983773358, 0.00417034375, 0.0133601958, -0.012039273, 0.00280224462, 0.00275506871, -0.0149201434, -0.0107309297, -0.00657945639, -0.00293748197, -0.0225689188, -0.0087118037, -0.00676186942, -0.00299566542, 0.00772425625, 0.0163542889, 0.0295383614, -0.00448484905, -0.0143666137, -0.0125739323, -0.0036797151, -0.01300795, 0.0144043546, -0.0143917743, 0.00545038143, -0.0150333652, -0.0164297707, -0.0113976812, -0.0128506972, 0.00375205139, 0.00275664125, 0.00780602777, 0.0193609614, 0.00825891551, -0.00873067416, 0.0029909478, -0.00133350352, -0.016517831, -0.0223298948, -0.00746007171, 0.00871809386, 0.0226066597, 0.00900114886, 0.0192225799, -0.00523337256, -0.00716443639, -0.016882658, -0.014945304, 0.00710153533, 0.0331866257, 0.0180652, -0.00376148638, 0.00710782548, 0.0108567318, 0.0124166794, 0.0039942204, 0.00604479667, -0.0247452967, -0.0130582703, 0.00435590185, -0.0170084611, -0.00825262535, 0.0356775112, 0.00356649305, 0.0214241184, -0.00233205874, -0.0128632775, -0.000544487732, 0.0143540334, -0.0122720068, 0.00307114678, -0.010787541, -0.0271732807, 0.00971822161, -0.00927791372, -0.00774941687, -0.0409612022, -0.00757329399, -0.00292804674, 0.030293176, 0.0103032021, -0.0128066661, -0.0109573733, 0.00233363127, 0.00930936448, 0.00829665642, 0.0120958835, -0.0137501825, 0.0181281, -0.0125173209, 0.0038212426, -0.000149390136, 0.00392188411, 0.00735943, 0.0324066542, -0.00655429577, 0.00193578168, 0.00687509123, 0.00879357569, 0.028758388, 0.0109573733, 0.00885018613, -0.0108064106, 0.00978741329, -0.0197383687, 0.000133271737, 0.0143917743, 0.0143540334, 0.0181155205, -0.000102705722, 0.0147440201, 0.00248144893, 0.00727136852, -0.00382438768, -0.0284816232, 0.00863003265, 0.00561077893, -0.0104793254, -0.0207825266, -0.0129576288, 0.005330869, 0.0116807362, 0.00329287327, -0.00220468384, 0.00188703334, 0.0187319517, -0.0195622463, 0.00172820804, 0.00966161, -0.0179519765, -0.00667380774, 0.0024295554, -0.0062932563, 0.010057888, -0.00401309086, -0.044911392, 0.0286577456, -0.0153604513, 0.00129183161, 0.000411216024, 0.0198515914, -0.0141527504, 0.0133224558, 0.00400365563, 0.00986289419, 0.00928420387, 0.00204585865, 0.0135363191, -0.00641905842, -0.00532143423, -0.0104919057, 0.00603536144, -0.00436533708, -0.0171091016, -0.00285099284, 0.0246949755, -0.0371368155, 7.11568791e-05, -0.00692541245, -0.0134985782, -0.0164549313, 0.0142030707, 0.00112042599, -0.0109636635, 0.00844761916, -0.0232230909, -0.00184614758, -0.00941000599, -0.0363065228, -0.00623979047, 0.00215593562, 0.0145678977, 0.0266449116, 0.0105359359, 0.00897598825, 0.0320544057, 0.0135237388, 0.0188829135, -0.0117876679, 0.0113536501, -0.0114857433, -0.00045249486, 0.000746164413, -0.0162159074, 0.00366713479, 0.000524831121, -0.0210341308, -0.0197635293, 0.0177758541, -0.0100893378, -0.012077013, -0.0104919057, -0.0207070466, -0.000545667135, 0.018983556, 0.0083658481, -0.0197257884, -0.00461694179, 0.0100893378, -0.0267203916, -0.0030554214, 0.00259152567, -0.00724620791, -0.0132595543, 0.0239024218, -0.0059252847, 0.0306705814, -0.000143493162, 5.06648794e-05, 0.00447541429, -0.00261039613, -0.0225437582, -0.0236382373, -0.0116996067, 0.020757366, -0.0121021736, -0.00881244615, 0.0130205303, -0.00981257297, -0.00913953129, -0.0134734176, 0.0022235543, -0.00239967741, 0.0069191223, -0.0170713607, -0.0230343863, 0.00459807133, 0.0247075558, 0.00614229357, -0.00655429577, -0.00489370665, 0.00448170397, 0.00548183173, 0.00757958414, -0.00285885553, 0.00694428291, 0.0188703332, 0.0154610928, -0.0129827894, -0.00399107533, -0.00976225268, -0.0184929259, 0.0335137136, 0.00780602777, -0.0182664823, 0.0125739323, 0.0034312557, -0.00302868849, 0.0130331106, -0.0195370857, 0.00479620975, -0.000352835923, -0.0246949755, 0.0135111585, -0.0226947218, -0.0283558201, -0.0137879234, -0.0209209099, -0.00963645056, -0.00139090081, -0.00801989157, 0.0133350352, 0.0076424852, 0.0140017876, 0.00783747807, 0.0054409462, 0.0143414531, 0.00859229174, -0.00188546081, -0.0121839456, 0.0211599339, 0.0236382373, -5.81835266e-05, -0.00157252781, -0.00048315915, 0.00108111289, 0.0347968936, -0.025688814, 0.00381809752, 0.0200906154, -0.000219760754, 0.0262675043, -0.0174739286, 0.00572400121, -0.010221431, -0.00549755711, -0.00634043198, 0.0101333689, -0.00537175499, -0.0109196333, 0.0113662304, 0.0221286118, 0.0151969083, 0.0165933128, 0.0184677672, 0.0155868949, 0.014945304, 0.0199899729, -0.000307232607, 0.0174613483, -0.00707008503, 0.00214178278, -0.00667380774, 0.033035662, -0.00521764718, -0.00674928911, -0.00149311509, 0.00378350192, -0.00203642342, 0.00974967238, 0.0188325923, -0.0128381168, -0.0145049961, -0.00119276228, 0.0198515914, 0.00814569369, 0.00939742569, -0.00723991776, 0.00161341345, -0.00713927625, -0.0175242499, -0.0248585194, 0.00314662815, -0.02205313, 0.00558876386, -0.00473959884, 0.0516292304, -0.00808279309, -0.0144043546, 0.00178953656, -0.00481822528, 0.00747265201, -0.00686880155, 0.0196125656, -0.0141024292, -0.00198610267, 0.000141822355, 0.0114920335, 0.0138634052, -0.00132249587, -0.000698202348, -0.00653542532, 0.0127123147, -0.000188899896, -0.0214241184, 0.0170336217, 0.0219650678, 0.0157881789, 0.0123223281, -0.0124544203, 0.0210592914, 0.0122845871, -0.00717072655, -0.00331488857, -0.00584351318, -0.00422380958, -0.0103283627, -0.0192351602, -0.000915997429, 0.00242012017, -0.0018257047, 0.00973080192, 0.0349478573, -0.0139137255, -0.0018933235, -0.014379194, -0.00619890448, 0.00914582144, -0.0107749607, 0.0101648197, 0.0371871367, -0.00955467857, -0.00769909611, -0.000109388966, 0.00527740316, -0.00223927945, -0.0114354221, 0.0120833032, -0.00518305134, 0.0016794597, 0.00488741649, -0.00587810902, -0.00695686275, 0.0501950867, 0.00119826617, -0.00188231573, 0.0148195019, -0.00233834889, -0.0089571178, -0.0043496117, 0.00568311522, 0.00822746567, 0.00668638805, 0.0183042232, -0.0322808512, -0.0109636635, -0.00512644043, 0.0247327164, 0.0124544203, 0.0110643059, -0.0152346492, 0.0115423538, 0.0242295079, 0.0164297707, -0.00330545334, -0.000648667687, 0.0355265476, -0.0101962704, -0.00260410598, 0.0205560829, -0.00511386, 0.00363882934, -0.0217386242, 8.47199335e-05, -0.00808279309, -0.00128790026, 0.0248207785, 0.00873696432, 0.0178261753, -0.0119197601, 0.000629011134, -0.0194867644, 0.00931565464, 0.0216379818, 0.0109133432, 0.0133224558, -0.021449279, -0.00808279309, -0.00146402337, 0.00459492626, 0.0159768816, -0.00707637519, -0.00131541945, -0.00883131567, -0.0210089721, 0.00509813521, 0.0140017876, 0.0049440274, -0.00678074, 0.014215651, 0.0272487607, 0.0188577529, 0.0228708442, -0.00564222969, -0.00737201, -0.00651026517]
|
27 May, 2020
|
Node.js | os.version() Method
27 May, 2020
The os.version() method is used to identify the version of the kernel of the Operating System. This information is determined by calling uname on POSIX systems and calling RtlGetVersion() or GetVersionExW() on Windows systems.
Syntax:
os.version()
Parameters: This function does not accept any parameters.
Return Value: It returns a string that identifies the kernel version.
Below programs illustrate the os.version() method in Node.js:
Example 1: On POSIX
// Import the os module
const os = require("os");
let osVersion = os.version();
console.log("OS Version:", osVersion);
Output:
OS Version: #24~18.04.1-Ubuntu SMP Mon Jul 28 16:12:28 UTC 2019
Example 2: On Windows
// Import the os module
const os = require("os");
let osVersion = os.version();
console.log("OS Version:", osVersion);
Output:
OS Version: Windows 10 Enterprise
Reference: https://nodejs.org/api/os.html#os_os_version
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method
|
https://www.geeksforgeeks.org/node-js-os-version-method/?ref=next_article
|
CSS
|
Node.js | os.version() Method
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0191338789, -0.000407304615, -0.0120251114, 0.0424230956, 0.0138793103, -0.00300929789, 0.0102011114, 0.0415050574, -0.0228422768, -0.0121640256, 0.00964545645, -0.0248837061, 0.0171770062, 0.000722503231, 0.00631756242, 0.0520383529, -0.0569667779, 0.00335205276, 0.0177809782, 0.00674638338, 0.0430512279, 0.0281934813, 0.0140846614, 5.86043e-05, -0.0131787006, -0.0149543826, 0.0266714673, 0.00216524489, -0.0409494, 0.0150268599, 0.00155523163, 0.0140605019, -0.0322038643, 0.00817780104, 0.0325904079, 0.0309959184, -0.0359726585, 0.037325561, -0.00206105947, -0.00933139, 0.0148456674, 0.0146523966, 0.0267681032, 0.0131907808, 0.00945822429, 0.0218638387, -0.0124660125, -0.0434377715, 0.0145074427, -0.0103702247, -0.00533912564, 0.0302228332, 0.0242555737, 0.00782145653, 0.0217188857, 0.0201123171, 0.00832275394, 0.0122969, -0.0184453502, -0.0326145664, 0.0221175086, -0.0417466462, 0.0307060108, -0.00410399958, -0.0186627805, 0.0377362631, -0.0376637839, 0.0352720506, 0.0441625416, -0.0152080515, 0.00255027786, 0.0458778255, 0.0687080249, 0.00779729756, 0.00385033083, -0.0306335334, -0.00194328465, -0.00645647617, 0.000414854265, 0.0047502513, 0.00912, -0.0132270185, 0.00567433052, -0.00365705928, 0.0138309924, -0.0215014555, 0.0292564742, -0.0317931622, 0.0309476, 0.01046082, 0.0444041304, 0.0102252709, -0.01274384, 0.0194962639, 0.0265748333, 0.0257775877, -0.0030576156, -0.00280696666, -0.0174427535, 0.00219393359, 0.0439692698, -0.0123512577, -0.00928307232, -0.0447181948, 0.0290148854, -0.0208250042, 0.0143866483, -0.0095367413, 0.0118318405, 0.0300295614, 0.011680847, -0.00995348301, -0.0172736403, 0.0178292971, -0.0184453502, 0.0308992825, 0.00154919189, -0.0123693766, -0.0699159652, 0.0251494553, 0.0175756272, 0.0361900888, 0.0183366351, 0.0176481046, -0.0468925, 0.0196895357, -0.0189164486, 0.0239777472, -0.00991724432, -0.00356042362, -0.0306335334, 0.0201485548, -0.0051277345, 0.0145557607, 0.0241106208, 0.00520927133, 0.0231442638, 0.0664854, 0.0165126342, -0.00177115214, 0.00451168185, -1.17255786e-05, -0.0134686083, 0.0247629117, 0.0271546468, 0.017007893, -0.00575888716, 0.0112761846, 0.000538291351, 0.0139880255, 0.00184362906, -0.0152442902, 0.00950050261, 0.00126607937, -0.00347586721, -0.0104125021, 0.00556259556, 0.0219725538, -0.0382677577, -0.00174095354, 0.0172857214, -0.0284109116, 0.0186627805, -0.0111070722, -0.00809928402, 0.0156308338, 0.0342815332, -0.00587666174, 0.0292081572, -0.00298815873, -0.00594007922, 0.00216826471, -0.02437637, -0.00455698, -0.035537798, -0.00108866219, 0.0329769515, -0.00394394668, 0.0362384096, -0.0132149393, -0.0124176946, -0.0102373501, -0.0204263832, 0.0209578797, 0.00263785408, -0.0222503822, 0.00915623736, -0.0248353891, -0.0356344357, -0.0189285278, -0.0244609248, -0.0126351248, 0.010080317, -0.0122304624, 0.0242072567, 0.0287491363, 0.0137705952, 0.00544482097, 0.00782749616, 0.0062148869, 0.0115781715, -0.0146403164, 0.0222141445, -0.035851866, 0.00804492645, -0.0337258801, -0.0157153904, -0.048535306, 0.0323005021, -0.0391616412, 0.0305369, -0.0207283702, -0.0214168988, 0.00606087362, 0.00392280752, -0.000616807898, 0.00768254232, -0.0117714433, -0.000591516495, 0.0128767146, 0.00162619853, -0.00642627757, 0.00292172167, -0.0220208727, -0.0345956, -0.0225765277, 0.0386784598, -0.0352962092, 0.00439994689, -0.00911396, -0.00925287325, 0.0248837061, 0.0162227266, -0.0183970314, -0.00861266162, 0.00718728406, 0.0527631231, -0.00808720477, 0.0323005021, 0.0447423533, 0.00609107222, -0.023506647, 0.0258259047, -0.0524248965, 0.0150751779, -0.022443654, -0.019955283, 0.051023677, 0.00755570829, 0.0176360253, 0.0168750193, -0.0357552283, -0.0390408449, -0.00710272789, -0.0349338241, -0.0435344093, 0.0193392299, 0.0250045024, -0.00789997261, -0.00531194685, -0.0165367927, 0.0245454814, -0.0331219062, 0.00444826437, 0.0150147807, -0.000414476788, 0.00478045, -0.0451047383, -0.0180104896, -0.00352720497, 0.0535845272, -0.0632964224, 0.00243703299, 0.0258259047, 0.00960317813, -0.000948993315, -0.00508243684, 0.0409977175, -0.0120553104, -0.00128193363, 0.000507715216, 0.0381228067, -0.0101769529, 0.00490124477, -0.0051941718, 0.0124297738, 0.0284350701, -0.0319139585, 0.0199915208, 0.0516518094, 0.0102856681, 0.0384610295, 0.0280726869, 0.0282418, -0.0207042098, -0.0274928715, -0.0151476543, 0.0360934548, 0.00864286069, 0.019037243, -0.034788873, -0.0696743801, -0.0209941175, 0.00632964214, 0.0281934813, 0.0205350984, 0.028894091, -0.0257534292, 0.0395240225, -0.0069758934, 0.0292081572, -0.0156670716, -0.0422781408, -0.0551790148, -0.00109998672, -0.00862474088, 0.0174789913, 0.0209337212, -0.0101829926, 0.0179500915, 0.00477743, -0.0225765277, 0.0119284764, 0.0552756526, 0.0286283419, 0.000892370823, -0.0385818258, 0.00718124444, -0.0220087934, 0.00315878121, -0.0121821444, 0.00246119197, 0.00723560201, 0.0489218496, -0.00718728406, -0.00399528444, -0.0048770858, -0.0327353626, 0.0276136678, 0.0484628305, -0.0120553104, -0.0123210587, -0.0376879461, -0.0191338789, -0.00884821173, 0.000128721847, -0.00333997328, -0.000898410508, -0.0173702762, 0.0251736138, 0.000770066166, 0.0491151214, 0.0481487662, -0.019749932, 0.00761610549, 0.00275713881, -0.0383160785, -0.0125988862, 0.0164643172, 0.0337983556, -0.00713896658, -0.0222020652, 0.0481246039, 0.0246421173, 0.0285075475, -0.0597208962, 0.00294437073, -0.0353203677, -0.00452074129, 0.00451168185, 0.00715708546, 0.00699401274, 0.00488312542, -0.00433049, -0.0310683958, -0.0400555208, -0.017768899, 0.0231925808, -0.0157153904, 0.0383643955, 0.00806304533, 0.00745303277, 0.00890860893, -0.0196895357, -0.00367215858, 0.0107446881, 0.0252702497, 0.00279941713, 0.0323729776, 0.0316965282, -0.0430995449, -0.0111010326, 0.0210303552, -0.0131062241, 0.014773191, 0.0296671763, -0.0297154952, -0.0418191217, -0.0165609531, 0.034378171, -0.0215618536, -0.0334842876, -0.00329769519, -0.0402487926, -0.0156791508, -0.0246904362, -0.0432445, -0.0375671498, 0.0140001047, -0.00651687384, -0.0148939854, 0.0122485822, 0.0134202903, 0.0255359989, 0.002868874, 0.000216486733, 0.0134444498, 0.0143383304, -0.00150313892, 0.0250045024, -0.0091441581, -0.0239173491, 0.0130095882, 0.0263090841, -0.01160233, 0.0233979318, -0.0236999188, -0.0273720771, -0.0403212681, 0.0286525, -0.0241106208, -0.0232650582, -0.0189043693, 0.0198224094, 0.00747719128, -0.00666786684, 0.00455094, -0.00405870192, 0.0347405523, -0.0136498008, -0.0280968454, -0.0247629117, -0.00979041, -0.00196140376, -0.0770670176, 0.0324937738, -0.0805459, 0.0111795487, -0.0173098799, -0.0275170319, -0.000389562891, 0.00306516537, 0.028024368, 0.0322280228, 0.0123331379, 0.00416439725, -0.000181758267, -0.004620397, 0.0220933501, -0.00990516506, 0.00578606594, -0.00802076794, 0.0149543826, 0.0273479186, -0.0300778784, -0.0288457721, -0.0152201317, -0.0275895074, -0.0073020393, 0.0145436814, 0.0295946989, 0.00797245, 0.0223470181, 0.0320589133, -0.0163676813, -0.0337017179, -0.00882405229, 0.0123210587, 0.0190251637, -0.00962129701, 0.0170924496, -0.013504847, 0.0191701185, 0.00569848949, 0.00495560234, -0.00543274125, 0.0337258801, -0.00471401308, 0.0165247135, -0.0173461176, -0.0108836023, -0.0258259047, 0.0174306743, 0.00478346972, 0.0204384625, 0.0122969, -0.00796037074, -0.00526060909, 0.0192184355, 0.0334842876, -0.00852206536, 0.0107809268, 0.0064021186, 0.0107265692, -0.00511867506, 0.00671618478, 0.0115117347, 0.0402004756, 0.00571358902, 0.0235308055, 0.00589176128, -0.00897504576, -0.0130579062, 0.0234945677, -0.00814156234, -0.0135531649, 0.0127559192, -0.00753758894, 0.0073624365, 0.0331219062, 0.00383523153, -0.0283625945, 0.00352116534, 0.00331279449, -0.00397414528, -0.0210424364, -0.0142900124, -0.0193271507, -0.0342815332, -0.0175997876, -0.00927703269, 0.02345833, 0.0267439447, 0.0423264615, -0.00620280765, 0.0078758141, -0.0189406071, 0.0227818787, 0.0116687678, -0.00765234372, 0.0299812425, 0.00547803938, -0.0200519189, -0.0148698268, -0.00641419832, 0.00279488717, 0.0271304883, -0.0112157874, 0.0115842111, 0.00562299276, 0.00586458249, 0.00582230417, 2.44420517e-05, 0.000967867498, 0.00352116534, -0.018131284, -0.016150251, 0.00635380065, 0.0163797606, 0.0141933765, 0.0360451378, 0.0251252968, 0.0169112571, -0.00937970821, 0.00375067513, -0.00623904588, -0.0212477874, 0.000168923827, -0.051023677, -0.0109017212, 0.00312858261, -0.00875761546, 0.0172736403, -0.020510938, -0.0118258009, 0.00453886064, 0.0106540918, -0.0412876271, 0.0117170848, -0.00572868856, -0.0288699325, -0.00192969525, 0.0261399709, 0.0220087934, -0.0159086604, 0.0145436814, -0.00575284706, -0.0216222499, -0.0152201317, -0.0118137207, 0.00177266216, -0.00810532365, -0.0061846883, 0.00616656896, -0.00707252929, 0.0261158124, -9.10678773e-06, 0.0241106208, 0.0366007909, -0.000118624164, 0.0260916539, -0.00963941682, -0.02640572, 0.0404662229, 0.0186507013, 0.000835748273, -0.019037243, 0.0120251114, -0.0340157859, 0.00395904621, -0.0256809518, 0.0271546468, 0.0119586745, 0.0100682378, -0.0107990457, 0.0051337746, -0.0426405258, 0.0275411904, 0.006855099, -0.0325904079, 0.00273901969, 0.0487769, 0.00965149608, 0.047327362, -0.00533610536, 0.0288457721, -0.00658935029, -0.0446215607, -0.00276317867, -0.0284350701, -0.0277827792, 0.00130307279, -0.0335084461, 0.00629944308, -0.01274384, 0.0254635215, 0.0134202903, -0.0376637839, -0.00428821146, -0.0211390704, 0.0139517868, -0.000884821115, 0.026961375, 0.0564352795, 0.0078154169, 0.0173219591, 0.0181796011, 0.0408527665, 0.00060057611, -0.0286766607, 0.0121519463, -0.0078154169, -0.0359968171, 0.0131907808, 0.0242555737, 0.0105212182, -0.0101105161, -0.00941594597, -0.019242594, 0.00759194652, 0.0106178531, -0.0467475466, -0.000121927143, 0.0251736138, 0.0137222772, -0.0148819061, 0.018481588, 0.0155945951, -0.00736847613, 0.0513619035, -0.0309234411, -0.0281210039, -0.0114090592, 0.0176239461, 0.0061242911, -0.00818988, 0.00568339042, -0.0214048196, 0.0418191217, 0.00398018537, -0.0143987276, 0.00876365509, 0.0106118135, 0.0536811613, -0.0127317607, 0.0101467539, -0.0200639982, -0.0455879159, -0.0128042372, 0.00632360205, -0.0189285278, 0.0171407666, 0.0123089794, 0.0475447923, 0.0140725821, -0.0283384342, 0.00183305948, -0.0141571378, -0.0166696683, -0.0121398671, 0.000267824478, -0.0173581969, -0.0482212417, -0.0032010593, -0.011046675, 0.0169233363, -0.00155070191, 0.00912603922, -0.0248837061, -0.00317388051, -0.00750739034, 0.0365766324, 0.00622696662, 0.0216705687, -0.0428821146, -0.029449746, -0.000699854281, 0.0200519189, -0.00727788033, 0.0130216675, 0.0397172943, -0.04346193, -0.0348371901, -0.0264298785, -0.0200277604, -0.063924551, -0.011729165, -0.0048408471, 0.0096575357, -0.00263936399, 0.00424593361, 0.0216705687, -0.0197861716, 0.00603067502, -0.0215376932, 0.0236153621, -0.02025727, 0.00730807893, 0.0105212182, 0.0252944082, -0.00823215861, 0.0171890855, 0.00366007909, -0.00603973446, -0.0166938268, -0.0169595741, -0.0125747276, -0.00108715228, -0.00633568177, -0.00267409254, -0.0199673623, 0.00843751, 0.00143972179, -0.0385335088, 0.0062752841, 0.014724873, 0.0290873628, -0.0175031517, 0.0342332162, 0.0376879461, 0.0141571378, 0.00299872831, -0.0291598383, -0.00255933753, 0.0035725031, -0.014724873, -0.00318897981, -0.0148215089, -0.00423083408, 0.00985684711, 0.0235912036, 0.0116929263, 0.0244126078, 0.0231080242, 0.000521682086, 0.0352237336, 0.0122123435, -0.0349579826, 0.0101648737, -0.00989912543, -0.0361417718, 0.00745303277, 0.030464422, 0.00263936399, -0.000831973448, 0.000302364206, 0.0127800787, 0.00100033102, 0.0293289516, 0.0085462248, -0.0115660923, -0.0206317343, 0.0373014025, -0.00364497979, -0.0116083696, 0.00448752288, -0.0027707282, 0.0308509655, 0.0107205287, -0.0272512827, 0.03940323, -0.00796037074, 0.0209458, 0.0168750193, 0.010303787, 0.00760402577, -0.0390166864, -0.0113909394, -0.011855999, 0.00760402577, 0.010382304, 0.0257292688, -0.00429425156, 0.000497900648, 0.0091441581, -0.0341607407, 0.00842542946, 0.0106722107, 0.0192667544, 0.0238448717, 0.0234704092, -0.0204867795, 0.0142416945, 0.00352418516, -0.0357310697, 0.017925933, 0.0395723432, 0.00815968122, -0.0131787006, 0.0295222234, 0.0167663042, 0.0120371915, -0.0325904079, 0.010001801, -0.0138913896, 0.0045237611, 0.0201606341, 0.03705981, -0.00985080749, 0.0299329255, 0.00119360257, 0.0118137207, 0.0532463, -0.00176511251, 0.00957297906, 0.00399528444, 0.0174427535, 0.0186023824, 0.0157757867, 0.0160052963, -0.0159328207, -0.00719332416, 0.0217792839, 0.00234341715, 0.0195808206, -0.00147596013, -0.00219393359, -0.0197378527, 0.0210424364, -0.0161623303, -0.0138913896, -0.012695522, -0.00755570829, -0.0060940925, 0.0091803968, 1.54060417e-05, -0.0164280776, 0.000235549654, -0.0366007909, 0.021223627, -0.0221054293, -0.0139759462, 0.0235670451, 0.00419157604, -0.0115298536, 0.00777313858, -0.0315757319, 0.0270580109, 0.0471582487, -0.0160294566, -0.0152201317, 0.0114332177, 0.00104864896, -0.0230355486, 0.015787866, -0.0185903031, 0.0037899334, -0.0248353891, 0.0148094296, -0.0216222499, 0.0256809518, -0.0163676813, 0.0450805798, 0.00837711152, 0.019544581, 0.0556621961, 0.0310683958, -0.00363290031, -0.0125626484, 0.00706648966, 0.0292081572, -0.0438484736, 0.00499486038, -0.0358277075, 0.0238569528, -0.0175756272, 0.0105272578, -0.00121474161, -0.00933743, -0.0113547016, 0.0401038378, 0.0107567674, -0.00617260905, -0.0186990183, -0.0175273102, 0.0206075739, -0.00375067513, 0.00497976132, 0.0125505682, 0.0050371387, -0.0188922901, -0.0222503822, 0.00680074142, 0.00426405249, -0.0133115752, -0.0313099846, -0.0565802343, -1.12242333e-05, -0.00551427761, -0.0111916279, 0.00470797298, 0.0128646344, -0.011904317, -0.00312254275, -0.0113849, 0.00716312509, -0.00728995958, 0.0102313105, 0.0046596555, -0.00990516506, -0.00268617203, 0.024171019, -0.00279488717, 0.00368423807, 0.0115479724, -0.000733450288, -0.0124539332, -0.0395723432, -0.0151234958, 0.0281934813, -0.00952466112, -0.00297909905, 0.0155704357, 0.0242918134, 0.00744095305, -0.0508304052, 0.00837711152, -0.0193754695, 2.66597672e-05, -0.0175514687, 0.0130699854, 0.0105030984, -0.00150842371, 0.00774897961, 0.0262124483, 0.0120009528, -0.0116325291, -0.0270821694, 0.00382617186, -0.0406836532, -0.00414023828, -0.0153771648, 0.0300537199, 0.00462341681, -0.0340399444, -0.0374221951, -0.0652291328, -0.0180225689, 0.00365101965, -0.00497372169, 0.00600349624, -0.00620280765, -0.0104185427, -0.0080328472, 0.0208974816, -0.00655311206, 0.0306335334, -0.00158090051, 0.00933743, 0.0339191481, 0.0200639982, 0.00929515157, -0.0156429131, -0.0186627805, 0.0123452181, 0.0255601574, 0.0317931622, 0.00939178746, -0.00502505945, -0.0213202629, -0.0206921306, 0.0281210039, 0.00237059593, -0.0135894027, 0.0414325781, 0.00773086026, 0.0220087934, 0.0244850852, -0.0133840516, -0.00433049, -0.0150389392, 0.0159690585, -0.0155583564, -0.0130699854, -0.0183487143, 0.0429062769, 0.0360692963, 0.00905356184, 0.00747719128, 0.0310925543, -0.0358760245, -0.00678262208, -0.00542972144, -0.0192546733, -0.0121519463, 0.0144591248, -0.00826235674, -0.00533006573, 0.0164643172, 0.00642627757, -0.00439088698, -0.0110406354, -0.0133961318, 0.0305369, 0.0272512827, -0.00442712568, -0.0221295878, -0.0574016385, 0.0345714428, -0.0235912036, -0.00290813227, -0.0286766607, 0.0315515734, -0.00414929772, 0.00861266162, 0.0331702232, -0.00297909905, -0.0319139585, -0.00504619814, 0.00222715223, 0.0247870702, 0.00785165466, -0.00306516537, 0.0181796011, 0.0164884757, -0.0074228337, 0.0169112571, -0.0109138, 0.0059279995, -0.00150313892, -0.00784561504, -0.00150389387, -0.0101648737, 0.0130941449, 0.00071835093, -0.00526966853, -0.0304885805, 0.00522739, 0.0140001047, -0.00248233089, -0.017007893, 0.00301986723, 0.0222503822, 0.0174789913, 0.0322763436, -0.0155221177, -0.0203055888, 0.00541160209, -0.0108050853, -0.0247387532, 0.00438182754, -0.0153650846, 0.0229630712, 0.0180225689, -0.00818988, -0.026913058, -0.0115177743, -0.00973605271, -0.00607899297, -0.0273962356, -0.0143866483, -0.0309959184, 0.00393186742, 0.0253427271, 0.00901128445, 0.0163676813, -0.0147611117, 0.0306818523, -0.000246119191, -0.0140846614, -0.00628736382, 0.00222262228, -0.00500392029, -0.00956693944, 0.0238448717, -0.00433954922, -0.0117352046, 0.00098598667, 0.000750059553, 0.00183607929, 0.00648063514, -0.0252460912, 0.00840731058, -0.00440598652, -0.0098145688, -0.00915019773, 0.00708460854, 0.0045237611, 0.0147611117, -0.00986288674, 0.0120190717, 0.0140001047, 0.0034577481, -0.00386543013, -0.0124780918, -0.027420396, -0.0106480522, 0.0298846066, 0.0150268599, 0.00214108592, -0.0095367413, 0.0248353891, 0.035537798, -0.0128525551, 0.0112278666, 0.0060850326, 0.0167904627, -0.00126003963, 0.0130941449, 0.020969959, 0.0130579062, 0.0114332177, -0.0117533235, 0.0203539059, -0.035900183, 0.0175756272, 0.00454188045, -0.00114830455, -0.00548407901, -0.0282418, 0.00693965517, -0.00992932357, -0.0187956542, 0.0108896419, -0.0142779332, -0.0103641851, 0.00309536397, -0.0208854023, -0.0124539332, 0.00632964214, 0.00729599968, -0.0219967142, -0.00549313845, -0.0213081837, 0.0161260907, -0.0308026467, 0.013710198, -0.0111010326, 0.000896900601, 0.027927734, 0.0168267, 0.020969959, -0.0158603434, -0.00412815856, 0.0319622755, 0.0156429131, -0.0169233363, -0.0111674694, -0.00549313845, -0.0295946989, 0.000373519841, 0.00598537689, 0.00360572152, 0.00615750952, -0.00727788033, 0.00145859597, -0.0149906212, -0.0221537463, 0.0248837061, 0.00884821173, 0.00866098, 0.00973001216, 0.00471099326, 0.0227577202, 0.0144832833, -0.030512739, -0.00379597326, 0.0144228861, 0.0101829926, 0.0221175086, 0.00589176128, -0.00234643696, 0.0342815332, 0.0182520784, -0.0293772686, -0.0366007909, 0.0122244228, -0.00401038397, 0.00965149608, 0.0125505682, -0.0337500386, -0.00801472832, 0.0110406354, 0.0161864888, 0.0173823573, -0.0465784334, -0.0194841847, -0.00668598618, -0.00806304533, -0.000907470123, -0.00209729793, -0.000243288057, 0.0109802373, -0.015787866, 0.0173944365, 0.00253366865, -0.0229268335, -0.0201243963, -0.00581324473, -0.00208974816, 0.00808720477, -0.00946426392, 0.00786373485, -0.0276136678, 0.00350908586, 0.01797425, -0.0207887664, -9.50786398e-06, 0.0234220903, -0.0162227266, 0.0146161579, 0.000728165498, 0.0202331115, -0.00663162861, -0.013915549, 0.0138913896, 0.0106540918, -0.00494352262, -0.0313583, 0.00637795962, 0.0191097204, -0.00661954936, -0.0169474948, 0.0242918134, 0.00815968122, -0.0415533744, 0.00752550922, -0.0251011364, -0.0026423838, 3.92818692e-05, -0.00152427808, 0.0248595476, 0.0114211384, -0.0214893762, 0.0103581445, -0.01320286, -0.00325239706, 0.012236502, 0.00897504576, -0.00146539067, 0.00826839637, 0.00185570843, -0.005254569, 0.0410943553, -0.0313583, 0.0259225406, -0.00311348331, -0.00750739034, 0.0348130316, -0.000347662222, -0.00903544296, -0.00451168185, 0.0259708595, -0.0249078665, 0.00235549663, 0.0136981178, 0.0100984359, -0.000322370848, 0.00324937725, -0.000333317847, -0.0221054293, 0.00860058237, -0.0213081837, -0.000790450256, -3.31241681e-05, -0.00855830405, 0.0156791508, -0.00956693944, -0.0116083696, 0.0198344886, 0.00958505925, -0.0168146212, 0.0135290055, -0.0100621982, 0.000808569486, -0.0161623303, 0.022793958, -0.00637795962, 0.00374765531, -0.0150268599, -0.0144591248, 0.000381258258, 0.003986225, -0.00632360205, 0.0112399459, -0.0129733505, -0.0181796011, 0.00808720477, -0.00015571191, -0.00829859544, 0.0128042372, -0.0115479724, -0.00457509886, -0.00592497969, 0.00736847613, -0.00760402577, 0.00429425156, -0.00784561504, 0.0200519189, 0.0247025155, -0.00893880706, -0.0378087386, 0.0244367663, -0.0241347793, -0.0194841847, -0.0309717599, 0.00421271473, -0.00400736416, 0.03300111, -0.00797849, 0.0011256556, -0.00637192, -0.000139291384, 0.00584948296, -0.00813552272, 0.00447846344, -0.0177326612, -0.0142537737, -0.00166696671, 0.0182279199, -0.0157637075, -0.0144953635, -0.00977833, -0.00988704525, -0.0110889524, -0.00736847613, -0.0148577476, 0.00839523133, -0.00094521849, 0.0185782239, 0.00561393332, -0.0353928469, 0.00778521784, -0.034788873, 0.0112459855, -0.0438484736, -0.00667390693, 0.0116083696, 0.0171528459, 0.0451772138, 0.0107265692, -0.012538489, 0.00927703269, 0.0166092701, -0.0077369, -0.0237482358, -0.00851602573, 0.00292172167, 0.0276378263, 0.0150751779, -0.00453584082, -0.012109668, -0.00164582767, -0.0201606341, 0.0240985416, -0.0330735855, 0.00326447655, 0.00861870125, -0.0217792839, -0.0185540654, -0.0282901172, -0.017768899, 0.00393488724, 0.0314066187, -0.0156912301, -0.0063115228, -0.0123814559, -0.00138385419, 0.0296913348, -0.0282659587, -0.0452738516, -0.00780937681, 0.00910791941, -0.000922569481, -0.0143745681, 0.0198344886, -0.0450322628, -0.0193754695, -0.00473515177, 0.0180708859, 0.0243401304, -0.0277586207, -0.0044029667, 0.0074288738, 0.000227056269, 0.00209276797, -0.0104125021, 0.00495862216, -0.0148456674, 0.0339916274, -0.0180225689, -0.00845562853, -0.0351029374, -0.017418595, -0.00211843685, -0.0101527944, 0.0118076811, -0.018988926, -0.0211269911, 0.0330735855, 0.0423747785, -0.0151597336, 0.00877573434, 0.0463126861, -0.0150389392, -0.00422781426, 0.00184362906, -0.0229026731, 0.0163556021, -0.0200277604, -0.0183003955, -0.0121942246, 0.0143866483, 0.0236757603, 0.00668598618, -0.0294980649, 0.00921663549, -0.00213957601, -0.0101044765, -0.0151234958, 0.000462794676, -0.0358760245, 0.0112761846, -0.0168870986, -0.00185268861, 0.018529905, -0.012109668, -0.000402774807, 0.00648667524, -0.037011493, 0.022491971, 0.00904148258, 0.00913811848, -0.00923475437, 0.011680847, -0.000130986751, 0.0150872571, -0.019242594, 0.00311650313, 0.0447423533, -0.0183487143, 0.0336534, 0.0363108851, 0.0301745143, -0.0241227, -0.0290148854, 0.026043335, -0.0211269911, -0.00271335081, 0.000383523147, -0.0206558928, -0.00736847613, 0.00103505957, -0.00907772128, -0.0114332177, 0.0174306743, 0.0236878395, 0.0292323157, -0.00266805268, -0.0104849795, 0.0422539823, 0.00213353615, 0.014773191, -0.0083287945, -0.000896900601, -0.0308992825, 0.0110225156, 0.0403212681, -0.0101527944, 0.0125747276, 0.00436068838, 0.00208823825, 0.00792413205, 0.00368725811, -0.0144108068, -0.00667390693, -0.0392824337, -0.0134323696, 0.0223349389, -0.0172978, -0.0211873893, 0.00705441, -0.00904752221, 0.00289152307, 0.0196774546, -0.02228662, 0.0238207132, -0.0021516555, 0.0255843159, 0.00226339046, 0.0149664627, -0.0121519463, -0.016754223, 0.00876969472, 0.0183728728, 0.0147611117, 0.0244609248, -0.00168810587, 0.00343660894, -0.030005401, -0.0344989635, 0.01320286, 0.0113305422, 0.00721144304, 0.002551788, -0.0493567102, 0.0163797606, 0.0074288738, 0.00638399972, 0.00110451644, 0.00709668826, -0.0218034424, -0.00776709896, 0.00777917821, -0.00935554877, -0.00289756269, -0.0118741179, -0.00118303299, 0.0136377206, 0.00470193336, 0.0229751505, 0.00536328461, 0.0125264097, -0.0201364756, -0.013251178, 0.00830463506, -0.0150147807, -0.00631756242, 0.000972397276, -0.0014261324, 0.0130216675, -0.0158845019, 0.00478648953, -0.0119707538, -0.00666182721, -0.0251736138, -0.000251970167, 0.00255329791, -0.00194781448, -0.000408437045, 0.0213927403, -0.00212447671, 0.0102433898, 0.0124780918, 0.00978437, -0.00744095305, -0.0164884757, -0.0034275495, 0.0142416945, 0.0233616941, 0.00812344346, -0.0150630986, 0.0474964716, -0.0174065158, 0.000452602602, -0.0265989918, 0.0375429913, -0.00895088632, -0.00716916518, 0.030464422, 0.0108594429, -0.00623300625, -0.00706045, -0.0194479451, -0.00970585365, 0.00653499272, 0.0246058796, -0.00861266162, 0.0127196815, 0.00115358934, -0.0118922377, -0.00427009258, -0.01797425, -0.0114996545, 0.0239052698, 0.00336715207, 0.0387509391, 0.00744699268, -0.0286766607, -0.0081536416, 0.00477441028, 0.0257292688, 0.00236304617, 0.0102494294, 0.00194328465, 0.0132753365, 0.00537838368, 0.0085099861, -0.0188922901, 0.018433271, 0.0117533235, -0.0144228861, -0.0168750193, 0.0213202629, -0.00421271473, 0.00154768198, -0.0199794415, -0.000961072801, 0.0152442902, -0.00382919167, 0.0164159983, 0.0131062241, -0.00860058237, 0.00525758881, -0.00637795962, 0.0188077334, 0.00572566828, -0.00171377475, -0.00960921776, -0.0124780918, 0.00489822496, 0.0136498008, 0.0268889, -0.0150147807, -0.0127679994, -0.0155341979, 0.0243522096, 0.0122183831, 0.0109138, -0.0143141709, 0.0403454266, -0.0222503822, 0.019037243, -0.0212961044, 0.00212598662, -0.00164733757, 0.0106661711, 0.0121398671, 0.0270338524, 0.014265853, 0.00372349634, 0.0124780918, -0.0142296152, 0.0122123435, -0.0120371915, 0.0126472041, -0.0136860386, 0.0239052698, 0.00475629093, 0.00173944363, 0.0110527147, 0.0103098275, 0.00475327112, 0.00536932424, -0.0101890322, -0.0170320515, 0.0200639982, -0.0107748862, 0.0117654027, -0.00616052933, 0.0222624615, 0.00439994689, 0.00367215858, -0.0215376932, -0.0119526349, -0.0118016414, 0.0326870456, 0.0109923175, 0.00105544366, 0.000610768155, 0.0064323172, -0.00962733664, -0.0179621708, -0.0128404759, 0.0205713362, 0.0145316012, -0.0147973495, 0.00125249, 0.0147369523, 0.0125022512, -0.0216101706, -0.0134927668, -0.0301020369, -0.0116204498, -0.000466946978, 0.0148698268, 0.0177809782, 0.00507639721, -0.0185540654, 0.0155462772, -0.00992328394, 0.00671618478, 0.00828651618, 0.0246904362, -0.0175756272, 0.00217128452, -0.000833483355, 0.0139397075, 0.00776105886, -0.0042429138, 0.0255843159, -0.012997509, 0.00822007842, 0.0128042372, -0.00309838378, -0.0114573771, 0.00178172172, 0.0170199722, 0.0142296152, 0.00878177397, 0.0145557607, -0.0079362113, 0.0097179329, 0.00656519178, 0.00973605271, 0.00862474088, -0.0087274164, -0.0190010052, 0.0253910441, -0.0265023559, -0.0165367927, 0.00989308581, -0.00133025157, 0.033315178, 1.83787233e-05, -0.0174910724, 0.0194721054, -0.00747115165, 0.0289182495, -0.0114513366, 0.00189043698, -0.00616354914, -0.0116264895, 0.0285558663, 0.0239898264, -0.0052243704, -0.0203901436, -0.014978542, 0.0253668856, -0.00248988066, -0.0148094296, 0.0120553104, -0.0062813242, 0.00684301928, 0.00671618478, -0.00916227791, -0.00464455597, 0.00794225093, -0.00101392041, -0.0027707282, -0.0142900124, 0.0118076811, -0.0130820656, 0.0100501189, 0.000867456896, -0.00181343034, -0.012031151, -0.0153046874, 0.00622696662, 0.000160524825, -0.0141692171, 0.0136014828, -0.0183003955, -0.0153167667, -0.0258500651, -0.0277827792, -0.0198586471, -0.00771274138, 0.000213466876, -0.00191912567, -0.00638399972, -0.0312375072, -0.0172978, -0.00228603953, 0.00841939, 0.0164763965, 0.0147007145, 0.0418432802, 0.0173581969, -0.0159207415, 0.0336534, 0.00242646341, -0.00327655603, 0.00835899264, -0.0247870702, 0.0218276, -0.00352720497, 0.0167663042, -0.00291568181, 0.00159147009, 0.0221537463, -0.0203055888, -0.0208250042, -0.0188318919, 0.0258742236, 0.00600953586, -0.0189164486, -0.00460227765, 0.0118137207, 0.00939782709, -0.0115902508, -0.0278552566, 0.0161019322, 0.0130699854, -0.00724768173, -0.00859454274, 0.00551729742, -0.00475931074, 0.0243642889, 0.010080317, -0.0142416945, -1.42028139e-05, 0.00872137677, -0.0230717864, 0.00845562853, 0.0080932444, -0.00435464876, -0.000362006598, -0.00918643642, -0.0042368737, -0.0161140114, 0.00599745661, -0.00485896645, 0.0184574295, 0.00132421183, 0.0198465679, -0.00511565525, -0.0168146212, -0.015787866, 0.00579512538, -0.0167179853, 0.0166696683, -0.00667994656, 0.0023252978, 0.00196140376, -0.0165730324, 0.0132753365, -0.00254725805, -0.0194117073, -0.0136860386, -0.0163676813, 0.00413117837, 0.00963941682, 0.0259225406, 0.0129854297, -0.0067584631, 0.00795433, -0.00200066203, 0.00258500641, 0.00100863574, 0.0229026731, 0.00153635745, -0.00382315204, 0.0190130845, 0.00477139046, 0.00530590676, -0.00286132423, 0.00406172173, -0.0199915208, 0.00334299309, 0.0137464358, -0.00873345602, -0.018735256, -0.0054146219, 0.00435464876, 0.00323427795, 0.0219121575, 0.0074590724, 0.00162770844, 0.00785165466, 0.00878177397, 0.0151234958, 0.00138158933, 0.00123739068, -0.0127076013, 0.00657123141, 0.00992932357, 0.000650781381, -0.0195929, -0.0129008731, -0.018735256, 0.00163374818, -0.00876969472, 0.0166938268, 0.00164582767, -0.00820799917, -0.0217430443, -0.0136739593, 0.0111070722, 0.000323880784, -0.00464455597, -0.00499184057, 0.000895390636, -0.0102373501, 0.0114573771, 0.0119526349, -0.00762214512, -0.000850092678, -0.026961375, 0.00947030354, 0.0164884757, 0.00695173442, -0.010128635, -0.00840731058, -0.0128404759, -0.0233254544, -0.00841939, 0.00313764205, -0.0168025419, -0.00305157597, -0.0308509655, 0.00103203964, 0.0212840252, -0.0139276283, -0.00577096641, -0.0013921588, 0.00566527108, -0.0204867795, 0.00103354955, 0.00402246322, 0.00680678105, -0.00947030354, -0.0103460653, -0.0206800513, -0.000460152281, -0.0155583564, -0.00446638372, 0.00273599988, 0.00778521784, 0.0120553104, -0.000351814553, 0.0195204224, -0.0166938268, -0.0489943288, -0.0131787006, -0.00336715207, -0.0150510184, 0.00849186722, 0.0127076013, 0.026961375, 0.00630548317, 0.00306516537, 0.00420063548, -0.0130699854, 0.00217279466, 0.0108232042, 0.00753758894, 0.0324454531, 0.00619676756, -0.00217883429, 0.000274996681, 0.0163072832, 0.0223711766, 0.00417949632, -0.00114452967, -0.0213685818, 0.0124056153, -0.00964545645, -0.016705906, -0.00228754943, -0.0044029667, 0.00518209254, 0.0212598667, 0.0112459855, 0.0185540654, 0.0148577476, -0.00661954936, 0.0233616941, 0.00711480761, 0.0188802108, -0.0173702762, -0.00434256904, 0.00428217184, 0.0102192312, 0.0119284764, -0.0158724226, 0.0136256414, -0.0115238139, 0.0289182495, 0.00483480748, -0.00369631755, -0.000409946981, 0.0193271507, 0.0217672046, -0.00152503303, 0.0111312307, 0.00666182721, -0.0284109116, 0.00182399992, 0.0284833889, 0.00191912567, 0.0075798668, -0.0136135621, -0.0200881567, -0.01824, -0.00372047652, -0.0155100385, 0.0064021186, -0.000579814543, -0.000359552942, -0.0135652442, -0.00683094, 0.00937970821, 0.00451168185, 0.0032856157, 0.0209216401, -0.0150027005, -0.00312254275, 0.01548588, -0.00260010571, -0.000964092673, -0.0098387273, 0.00955486, 0.0195325017, -0.0108534032, 0.0180346482, -0.0331943817, -0.0231201034, -0.0176601838, -0.00076968869, -0.00165488734, 0.00198858255, -0.00233586738, 0.00814156234, -0.00810532365, 0.0048166886, 0.00465663522, -0.033315178, 0.00275260909, -0.000197046349, 0.00370839704, -0.00581324473, -0.00876969472, -0.00686717825, -0.00276921829, -0.0211873893, -0.00378691358, -0.0189164486, -0.00323427795, -0.0148698268, 0.00162770844, -0.00471703289, -0.0134686083, -0.0231925808, 0.00590988, -0.00243401318, -0.00204596017, -0.0202210322, 0.0214410573, 0.0105634956, 0.00491030421, 0.0203055888, 0.0218396802, 0.00655311206, 0.00945218466, -0.00409192033, -0.0232771374, -0.0211873893, -0.00588270137, -0.00238871505, -0.0165247135, 0.0148698268, -0.00922267511, 0.0387267768, -0.0107809268, 0.0445974022, -0.0190251637, 0.00259406609, 0.0188318919, 0.000871986675, -0.00525758881, -0.00609711232, -0.0238207132, 0.0169595741, 0.000585854286, 0.00154617208, -0.01686294, -0.0285800248, -0.00756174792, -0.0162952039, -0.00234492705, 0.000843297923, 0.00434860913, 0.0259225406, 0.00476837065, 0.014265853, -0.004620397, -0.0207887664, 0.00507639721, -0.0138793103, -0.00467173476, 0.00909584, -0.0168508589, -0.00936762802, 0.00317690033, 0.0211028326, -0.00758590689, -0.0199915208, -0.00510659581, 0.00500090048, 0.000427311228, -0.00372651638, 0.0191218, 0.00736847613, -0.0077369, -0.0232650582, -0.00770066166, -0.00152503303, 0.0183124747, 0.000133912239, 0.0172011647, 0.0157757867, 0.00112188072, 0.0222745407, -0.00346378773, 0.00148803962, -0.00590082072, -0.0173219591, 0.00921663549, -0.0058585424, 0.00825027749, -0.00586458249, -0.00608805241, -0.0119949132, -0.014265853, 0.011348661, -0.0156066744, -0.0157274697, 0.0108715221, 0.00360874156, -0.0171286874, -0.000101637408, 0.00802680757, -0.00254574814, 0.0190734826, 0.0203901436, 0.0169233363, -0.0308509655, 0.0123693766, -0.0093615884, -0.00802680757, -0.0226248465, -0.00205954956, -0.0243642889, -0.012236502, -0.00363290031, -0.0131062241, -0.017261561, 0.0191218, 0.00770670129, 0.0016790462, -0.00442108558, 0.0241830982, 0.00788185373, -0.000118529795, 0.0306818523, -0.00428217184, 0.00102977478, 0.00088633108, 0.0135531649, -0.00577700604, 0.00848582759, -0.00266352296, -0.000132402303, 0.00369027792, 0.00869117863, 0.0307784881, -0.012997509, 0.0121761048, -0.0140242642, 0.0135410847, 0.00257443683, -0.0198465679, 0.00294286082, 0.000656821125, 0.0372289233, -0.0116264895, 0.00479554944, 0.0156670716, 0.0212961044, 0.0242314152, -0.00954278093, -0.000434105925, 0.0228543561, 0.0277586207, -0.00209729793, 0.0121338265, -0.0121217472, -0.00283414545, 0.00952466112, 0.00456603942, 0.00460831774, -0.0226490051, 0.000328976806, -0.0349821448, -0.0216343291, -0.0239052698, -0.00284622493, -0.00707856892, 0.00229962892, 0.00893880706, 0.00509149628, 0.0241106208, -0.0219846349, 0.0151234958, 0.011094993, -0.00536932424, 0.0156912301, 0.00429727137, 0.00241438393, 0.0117714433, 0.0165367927, -0.0321072303, -0.0106963702, -0.00204747, -0.0325662494, 0.0119405556, 0.0113305422, 0.00356948329, -0.0204988588, 9.19644e-05, 0.00405870192, 0.00965149608, -0.00820196, -0.016150251, -0.00536630442, 0.00669202581, -0.021936316, -0.00238720514, 0.00891464856, -0.00850394648, 0.00168206613, 0.0201002378, -0.0105936946, -0.00808116514, 0.00221960247, 0.0128767146, -0.00205954956, -0.00445430446, -0.00288699311, 0.0196653754, -0.0267439447, -0.00728392, -0.0118620386, 0.0159328207, -0.00783353578, -1.72816635e-05, -0.0114452969, -0.00226188055, 0.00750739034, 0.0177809782, 0.0075194696, -0.00464455597, 0.00980852917, 0.0151355751, -0.0135652442, 0.0379053764, 0.000804794661, 0.0007644039, -0.017213244, -0.00791809242, -0.00880593341, -0.0138309924, -0.00274354941, -0.0141692171, 0.0149423033, 0.034788873, -0.00168357603, 0.0041462779, 0.00105468871, -0.0026952317, -0.0310200769, -0.0157999452, 0.00053527148, -0.00163676811, 0.00833483413, -0.00598537689, 0.00451168185, 0.0387992561, -0.017466912, -0.00104638399, 0.0244126078, 0.00654103281, -0.00274203951, 0.022395337, -8.59718493e-05, -0.000349738373, -0.0261158124, -0.0155825159, -0.00699401274, 0.00597329764, -0.00561997294, -0.00997160189, -0.00975417159, 0.00155221182, -0.00550521817, -0.0102856681, -0.00672222488, -0.00181192043, -0.00265748333, 0.0291356798, 0.0101829926, 0.00710876752, 0.012490171, 0.0149181448, 0.000405794679, 0.0159690585, -0.0199915208, -0.0112882638, -0.0147369523, 0.0132753365, -0.00114377472, 0.00208068849, 0.0178896934, 0.0139276283, 0.000213278137, -0.0313824601, 0.00864286069, 0.00988100562, -0.0206558928, -0.0181192048, 0.0177930575, -0.0144349663, 0.0219483953, 0.00651687384, 0.0154979592, -0.0117654027, -0.00679470133, -0.00765234372, -0.0189647675, -0.00146539067, -0.00375369517, -0.0231805015, 0.00120568206, 0.0125868069, 0.028894091, 0.00797245, -0.00895692687, 0.00279639708, 0.00626320485, -0.0108896419, 0.000561317836, -0.0036027017, 0.0143624889, -0.00973605271, 0.0337017179, -0.022999309, 0.0217068065, 0.0258017462, 0.018433271, -0.00238267542, -0.00435766857, 0.0168870986, -0.00423083408, -0.0208612438, -0.0201002378, -0.00498278113, -0.0152201317, -0.0160052963, -0.0351270959, -0.00421271473, 0.00409192033, -0.0010833774, 0.00069268205, 0.00371745671, -0.000843297923, -0.00722956238, -0.00335507258, -0.000330864219, 0.021887999, -0.0170803703, -0.0105453767, -0.0105393371, 0.0376396254, 0.0150027005, -0.00124041049, 0.00732015818, -0.00597631745, 0.0031255628, -0.0126109663, -0.00938574784, 0.0107446881, 0.0283142757, -0.0201485548, 0.00995348301, -0.0110285552, -0.00632360205, 0.0188560523, 0.0131303836, -0.00826839637, 0.00313160243, -0.00540254265, -0.0164401568, 0.00330071501, 0.00931327, 0.000211579449, -0.0138430716, -0.0151234958, 0.031986434, 0.0165367927, -0.0137585159, -0.014519522, 0.00852810498, -0.0131183034, -0.000762516516, -0.00817176141, -0.00445128465, 0.0150268599, -0.00524248974, 0.00483480748, -0.000574529753, -0.00133100653, 0.0148094296, -0.0150389392, -0.0235428866, 0.015993217, -0.00307875476, 0.00879989378, -0.00853414461, 0.00568339042, 0.000289907272, 0.0060850326, -0.0144349663, 0.0253185686, 0.00148577476, -0.0130095882, 0.0256567933, 0.00590082072, -0.00276015885, 0.0494775064, -0.00431539025, 0.00292021176, -0.0227698, -0.00275109918, -0.0163314417, 0.00823819824, -0.000877271465, 0.0158965811, 0.0116385687, -0.0110043967, 0.00331279449, 0.00828047656, -0.0226248465, -0.0036027017, 0.0252460912, -0.000353890704, 0.0177930575, 0.004303311, -0.0186748598, -0.0182279199, 0.00187684759, -0.00378691358, -0.0138913896, 0.00356042362, 0.00623904588, 0.00453886064, 0.0317931622, -0.0227094032, 0.0039197877, 0.00874553621, 0.0260191765, -0.00635380065, -0.0137705952, 0.00556561537, 0.0202935077, -0.0068490589, 0.00473515177, -0.000857642328, -0.0345472805, -0.00433049, -0.0194841847, 0.0186507013, -0.0182158388, 0.0223711766, -0.00291266199, -0.00869721826, -0.000546596, 0.00608201278, -0.00488916505, 0.0103581445, -0.00190855621, 0.0108594429, -0.0400555208, 0.0131545421, -0.00928307232, -0.0217792839, -0.00441202614, 0.00441806577, -0.0233979318, -0.01548588, 0.00437880773, -0.0106963702, -0.0111674694, -0.00611221138, 0.00403756276, 0.0275170319, -0.0234100111, -0.0195929, 0.00271939044, 0.0120190717, 0.00960921776, -0.00976625085, 0.0237482358, -0.0279518925, 0.0223590974, -0.0372530818, 0.00181494025, 0.00116868864, 0.0123814559, -0.0117472839, -0.00995348301, -0.0041070194, 0.00664974796, -0.013504847, -0.00256235735, 0.0116144102, -0.000266692019, -0.0185540654, -0.0217672046, -0.00794225093, 0.0180708859, 0.0115479724, -0.0192184355, 0.00557467528, -0.0120673897, 0.00335809239, 0.0135290055, -0.00968773477, -0.00458717858, 0.00917435717, -0.0101829926, -0.0258983821, 0.0147369523, 0.0146161579, 0.00240985421, -0.0100742774, -0.00102977478, 0.0256326348, 0.00710876752, -0.0225644484, -0.00830463506, 0.00366309914, 0.0083891917, -0.0141571378, -0.0146765551, -0.00652291346, -0.00400132407, 0.0163676813, 0.00921059493, 0.00297456933, -0.00228150981, 0.00814156234, 0.00718728406, 0.0233254544, 0.0091441581, 0.0112520261, 0.0120734293, 0.00179682102, -0.00319199986, 0.0124660125, -0.0205713362, -0.0063417214, 0.0138430716, 0.00708460854, -0.000424291356, -0.000975417148, 0.0107446881, 0.000907470123, 0.000325013214, 0.00560487388, 0.0207525287, 0.0034728474, 0.0314790979, 0.00176058267, -0.0118258009, 0.0083287945, 0.0123693766, -0.00242193369, 0.00273901969, 0.00243703299, -0.0051337746, 0.00269070175, 0.0168146212, 0.000302364206, 0.00848582759, 0.00969377439, -0.0117835226, 0.00348190707, 0.0121700652, -0.0115600517, 0.00287491363, -0.0309717599, -0.0225282107, 0.00871533714, -0.011982834, -0.0144953635, 0.0032161586, 0.0110829128, -0.0163193624, -0.00420969492, 0.00402246322, 0.0210907534, 0.00718728406, 0.00889048912, -0.0135531649, 0.0215739328, 0.029449746, -0.00503411889, 0.0124780918, 0.00255480781, -0.0110829128, -0.00355438376, -0.004937483, -0.0379295349, -0.000856132363, 0.00382617186, -0.00544180116, 0.0177326612, -0.0245454814, -0.00143292709, 0.0162952039, 0.00242495351, 0.00489520514, 0.0126351248, -0.0179500915, -0.00944010541, -0.00949446298, 0.0156791508, -0.00414325809, -0.005737748, -0.00667994656, -0.00939782709, -0.00199613231, 0.00452678092, -0.0246541966, 0.00833483413, 0.00876969472, 0.010793006, 0.0194237866, 0.0227335617, 0.00566829089, 0.00154919189, 0.00912603922, -0.0122183831, -0.0095971385, -0.0131303836, 0.00397112546, 0.0109500391, 0.0206921306, 0.0175997876, -0.0078758141, -0.00138385419, -0.00566527108, -0.0160898529, -0.00247176131, 0.0188681316, 0.00465663522, -0.0005737748, 0.0135410847, 0.0352962092, 0.0194721054, -0.018686939, 0.00865494, -0.00548709882, -0.0133357337, 0.0182158388, -0.0014261324, -0.00895692687, 0.030875124, 0.00648063514, 0.0205471776, -0.0201123171, 0.010841324, 0.0131424628, 0.0412151478, 0.009240794, -0.0086489, -0.012490171, 0.00622092653, 0.0112278666, -0.00875157584, -0.0376637839, -0.0276861433, 0.000494125765, -0.0106903305, 0.0199673623, -0.00504619814, -0.00281149638, -0.0163797606, -0.0129008731, 0.0248837061, 0.00553843658, 0.0115962904, -0.000360307924, 0.0105151776, 0.00390770845, -0.00735035725, -0.0110708335, 0.00921059493, -0.017466912, -0.00156882103, -0.0109198401, 0.000291983422, -0.0125747276, 0.00282810582, 0.0243642889, 0.00197046343, 0.00371745671, -0.00406474154, 0.000336715195, -0.00978437, 0.0074288738, 0.0125264097, 0.0215860121, -0.00252158917, 0.0054508606, 0.0253427271, -0.0355136395, 0.00389562896, 0.00747719128, -0.0307060108, 0.00585250277, 0.0062511256, -0.0106480522, -0.0129371118, -0.0209095608, 0.00566225126, -0.00537536386, 0.00979645, -0.00276468857, 0.0190614033, 0.0196653754, -0.0243642889, -0.00485594664, 0.0239777472, -0.0291598383, -0.0109439995, -0.000439013209, -0.0175635479, 0.00333091361, -0.00807512552, -0.0342815332, 0.0184091106, -0.0120673897, 0.0126230456, -0.00518511236, 0.00689737685, -0.00458717858, -0.00680678105, 0.0192184355, 0.00472911214, 0.00411909912, 0.0165971909, 0.0119767934, -0.0077369, 0.0063115228, -0.000876516511, 0.000316708582, -0.00735639688, -0.00365705928, 0.0118499594, 0.0177568197, -0.0275895074, 0.00442712568, -0.0113849, -0.013251178, -0.0162227266, 0.0141450586, 0.0213685818, -0.0114936149, -0.0202210322, -0.0281451643, 0.012949191, -0.0167904627, -0.0243642889, -0.0286525, -0.00382013223, 0.0230113883, 0.0027254303, 0.00922871474, 0.00591592025, 0.0107084494, 0.0118922377, 0.0309234411, -0.0026272845, -0.00561997294, 0.000121172176, 0.0106480522, -0.00438182754, 0.00124041049, 0.0183366351, -0.00366913876, -0.0199794415, -0.0223228596, 0.0134202903, -0.0260191765, 0.00217128452, -0.0171770062, 0.000148445353, 0.0132874167, 0.0445490815, -0.0139759462, -0.0159569792, 0.00478951, 0.00892068818, -0.00964545645, 0.00316784088, 0.00962733664, -0.00883009192, -0.00263181445, -0.00224980107, -0.00951862149, 0.0326145664, 0.00485594664, 0.0352962092, 0.017418595, 0.00980852917, -0.0173702762, -0.0103641851, -0.00602765521, 0.00916227791, -0.0261158124, -0.0153530054, 0.015437562, 0.00451168185, -0.00674034376, -0.00701213209, -0.00509149628, -0.00035219203, -0.0191701185, -0.0120432312, 0.00492842356, 0.0055414564, 0.0179500915, -0.0147973495, 0.00813552272, 0.00148199988, 0.000190440391, 0.00268315221, 0.0143624889, -0.0207766872, 0.000817629101, 0.0139759462, 0.00485896645, -0.028531706, 0.00120417215, -0.000262162241, -0.0138672311, 0.0217068065, -0.00330977468, -0.00158543035, -0.0117412442, -0.023156343, -0.0068188603, -0.00464153616, -0.00698193349, 0.00314670173, -0.00302288728, -0.0199673623, 0.0131787006, 0.000287831092, -0.00401038397, 0.0149543826, -0.0209216401, -0.0156791508, -0.00886029098, -0.00432747, -0.0131787006, -0.00924683362, 0.011982834, 0.00491030421, 0.00629340345, 0.00195989385, 0.00162770844, 0.0174065158, 0.000577172148, 0.0031557614, 0.0122727407, 0.000134195361, 0.0101407142, 0.0159207415, 0.00536328461, 0.0264781974, -0.0289907269, 0.0229630712, 0.0252219327, -0.0138793103, 0.0223590974, 0.00353928446, 0.0148335882, -0.00340641034, 0.0108594429, -0.0109258797, 0.0125143304, -0.0246421173, 0.00579512538, 0.0313583, 0.0118137207, 0.00552937714, 0.0229026731, 0.00532704592, -0.00225282111, 0.0113124233, 0.0100923963, -0.000402019825, -0.00735639688, 0.00128193363, 0.00439088698, -0.00988100562, 0.0217068065, 0.00266201305, 0.0140725821, -0.00195687404, -0.0141692171, -0.0112943035, 0.0167783834, 0.0355619565, 0.00671618478, -0.00296550966, -0.0119405556, 0.0176843423, 0.00646855589, 0.0165851116, -0.0246662758, 0.00229811901, -0.00473213196, -0.0153892441, -0.0130095882, 0.0041462779, -0.0114392573, 0.00278129778, 0.00836503226, 0.0413842611, 0.00893880706, -0.000538668828, 0.00207162905, 0.0117774829, 0.00102071511, -0.0246421173, 0.0275895074, -0.0198103301, -0.00358458259, -0.0136135621, 0.0173098799, -0.0115177743, -0.00870929752, 0.00436974782, -0.0177326612, 0.0213927403, -0.00562299276, -0.00109772175, 0.0149060655, 0.0313099846, -0.00215618522, 0.00510659581, -0.0157516282, 0.0231080242, 0.00912, 0.0187231768, -0.0110647939, -0.00204143021, -0.00544784078, -0.0125747276, 0.00196593371, -0.0166696683, -0.0115781715, 0.00845562853, -0.00840127096, 0.0209095608, 0.0129612703, 0.00962129701, -0.0220450312, 0.0233616941, 0.0091803968, -0.0194237866, 0.0128283966, 0.0338949896, -0.0277827792, -0.00430935062, -0.0280726869, 0.00304855616, 0.0239294283, 0.00176813232, 0.0165730324, -0.00286132423, -0.00817780104, 0.00134912576, 0.00867909845, 0.0197740905, 0.00437578792, -0.0145074427, 0.0178655349, 0.00900524482, -0.0320830718, 0.0165971909, -0.0053240261, 0.0206921306, 0.00248837075, 0.0120915491, -0.00163676811, -0.00512471469, 0.0120975887, -0.0122969, 0.0199794415, -0.0043939068, -0.00840127096, -0.00119586743, 0.0287249777, 0.00330977468, 0.00438786717, 0.00772482064, 0.0021516555, 0.02640572, -0.028024368, 0.0018949667, 0.00134308601, -0.000675317831, -0.0133357337, 0.00153333764, 0.00856434368, 0.00171830447, -0.00737451622, 0.0149906212, 0.00804492645, 0.0216343291, -0.0321313888, 0.00149709918, 0.00382013223, -0.0124297738, 0.0051639732, 0.0151355751, 0.00489218486, -0.00543576106, -0.00499788, -0.005103576, 0.0143262502, 0.0168025419, 0.00790601224, 0.00827443693, -0.0120673897, -0.00465663522, 0.0115298536, -0.0025819866, 0.00895692687, -0.016705906, 0.000864437, 0.00289454288, 0.0109017212, 0.0268164221, 0.0075798668, -0.014471204, 0.0175635479]
|
05 Aug, 2020
|
How to make bootstrap version 2 tab dropdown?
05 Aug, 2020
Using a simple Bootstrap plug-in, you can add dropdown menu in tabs by using the dropdown class. The nav and nav-tabs classes are also used to achieve this.
First, make an unordered list and give it a class of nav and nav-tabs. Now, give a class of dropdown to the list item tag which you wish to behave as a dropdown.
The next step is to create an unordered list for the dropdown tab and giving it a class of dropdown-menu.
You can also customize the dropdown menu and the nav links by writing your own CSS and overriding Bootstrap’s CSS. Here’s a working example for the same.
Example:
<!DOCTYPE html>
<html>
<head>
<title> Welcome to GFG </title>
<style>
.main {
margin-top: 20vh;
margin-left: 10vw;
}
.tab-pane {
width:100%;
background-color:#b6b0d2;
padding:10px;
color: black;
}
.nav-tabs > li a {
border: 2px solid black;
background-color:#35218e;
color:#fff;
margin-right: 1.2vw;
}
.nav-tabs > li.active > a {
background-color:#b6b0d2;
color:#000;
border: 1px solid #35218e;
}
.nav-tabs > li.active > a:focus {
background-color: #c9bad1;
color:#000;
}
.nav-tabs > li > a:hover {
background-color: #b6b0d2 ;
}
</style>
</head>
<body>
<div class="container main">
<ul class="nav nav-tabs" role="tablist">
<li class="active homeTab">
<a href="#home"
role="tab"
data-toggle="tab">Home</a></li>
<li ><a href="#section1"
data-toggle="tab"
role="tab">Section1</a></li>
<li ><a href="#section2"
data-toggle="tab"
role="tab" >Section2</a></li>
<li class="dropdown">
<a class="dropdown-toggle"
data-toggle="dropdown">
Section4 <b class="caret">
</b></a>
<ul class="dropdown-menu">
<li><a href="#subSection1"
role="tab"
data-toggle="tab">
Sub-section 1</a></li>
<li><a href="#subSection2"
role="tab"
data-toggle="tab">
Sub-section 2</a></li>
<li><a href="#subSection3"
role="tab"
data-toggle="tab">
Sub-section 3</a></li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle"
data-toggle="dropdown">
Section4 <b class="caret">
</b></a>
<ul class="dropdown-menu">
<li><a href="#subSection1"
role="tab"
data-toggle="tab">
Sub-section 1</a></li>
<li><a href="#subSection2"
role="tab"
data-toggle="tab">
Sub-section 2</a></li>
<li><a href="#subSection3"
role="tab"
data-toggle="tab">
Sub-section 3</a></li>
</ul>
</li>
<div class="tab-content">
<div class="tab-pane active" id="home">
Bootstrap is a free and open-source tool
collection for creating responsive websites
and web applications. It is the most popular
HTML, CSS, and JavaScript framework for
developing responsive, mobile-first web sites.
Nowadays, the websites are perfect for all
the browsers (IE, Firefox and Chrome) and for
all sizes of screens (Desktop, Tablets,
Phablets, and Phones). All thanks to
Bootstrap developers – Mark Otto and Jacob
Thornton of Twitter, though it was later
declared to be an open-source project.
</div>
<div class="tab-pane" id="section1">
Bootstrap is a free and open-source tool
collection for creating responsive websites
and web applications. </div>
<div class="tab-pane" id="section2">
Bootstrap is a free and open-source tool
collection for creating responsive websites
and web applications.</div>
<div class="tab-pane" id="section3">
Bootstrap is a free and open-source tool
collection for creating responsive websites
and web applications.</div>
<div class="tab-pane" id="subSection1">
Sub section1 content</div>
<div class="tab-pane" id="subSection2">
Sub Section 2 content
</div>
</div>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?
|
https://www.geeksforgeeks.org/how-to-make-bootstrap-version-2-tab-dropdown?ref=asr10
|
CSS
|
How to make bootstrap version 2 tab dropdown?
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[0.00111938373, 0.00344023318, -0.010246736, 0.0461824723, 0.0604990385, 0.00759845972, -0.000247148389, 0.0196275506, -0.0201759674, 0.0314906724, 0.0116322096, -0.039745789, 0.01812662, -0.0472504422, -0.0039796303, -0.0332225151, -0.0393705554, -0.00463267928, 0.000298336963, -0.00685521029, 0.00509089557, -0.0192090217, -0.0428342409, 0.0101457117, -0.0249529667, 0.0291238204, 0.00845716521, 0.0290372279, -0.0194110703, 0.0294701885, 0.0160195455, -0.00190322287, 0.00581610482, -0.0422569625, -0.0275507309, 0.0333957, -0.0267281048, -0.0366573371, -0.0712364614, 0.0125269955, -0.0175204743, 0.0151103269, -0.0122311385, -0.0130826281, -0.00345646939, -0.00966223888, 0.0113507854, -0.0428631045, -0.0345791243, -0.00368377357, -0.00144139817, 0.00821182, 0.0184441246, 0.0429208353, -0.00156677642, -0.00496822363, -0.0354450457, -0.00657017808, 0.00153430435, 0.02961451, 0.0554766916, 0.00113381573, 0.0167267136, -0.0265837852, 0.0107446406, 0.0118559059, -0.0169287622, -0.00546252029, -0.00764175551, -0.00229108357, 0.00298742857, -0.0108673126, 0.0271754973, -0.00375593384, 0.00831284467, 0.000722954108, 0.0189925414, 0.0219366737, -0.0404673889, 0.0437867567, 0.00862313341, -0.0519841425, -0.0329338759, -0.0339152515, 0.00765618775, 0.0273053851, -0.00340415328, -0.0413333103, 0.0321256816, -0.0099869594, -0.025703432, -0.00253462396, 0.037032567, 0.0056681768, -0.025587976, 0.0632122606, 0.00399767, -0.00524964789, -0.0491843298, 0.00987871923, -0.00961172674, 0.0299031492, -0.0218645129, -0.0229757801, 0.0015532464, -0.0100807678, 0.0461824723, 0.00886847731, -0.0106436163, -0.037032567, -0.000579986896, -0.00636452157, -0.019959487, 0.0374943949, -0.0134650767, 0.00582332071, -0.00769226765, -0.0512625426, -0.038620092, 0.0206666552, -0.00399406208, -0.00585579313, -0.013919685, 0.0581610501, -0.0660409331, 0.0248375107, -0.0193244778, -0.0435269773, 0.0233798753, -0.013861957, 0.0104704322, -0.00662790611, -0.00576198474, -0.00421415037, 0.0181987807, 0.0493575148, 0.000938081415, -0.00416363822, -0.0474236235, -0.00607588142, 0.0141289495, -0.019959487, 0.0100302557, 0.0410735346, -0.0158607922, 0.0235386286, 0.00332297315, 0.0346079879, -0.0212295037, 0.0329050086, 0.00503677595, 0.00244081579, -0.00156587444, 0.024346821, 0.0203635823, -0.00016100725, -0.0329050086, 0.0333668366, 0.0305958875, -0.019786302, 0.0438156202, -0.0128084198, 0.0030830407, 0.00971275102, -0.0188049246, -0.0095612146, 0.0211862084, -0.0192811824, -0.0628658906, 0.0395148769, 0.00624545757, 0.00316061289, -0.0291815493, 0.0118703386, -0.0328472815, -0.0250395592, 0.00844273251, -0.00343121332, 0.0256457031, -0.0231778268, -0.0475102179, -0.0151969194, 0.00769226765, 0.00111667777, -0.00183647487, 0.0048744157, 0.00424301438, -0.00360078947, -0.0644245446, -0.0353873186, -0.0440465324, 0.00975604728, 0.00154783437, 0.0243612528, -0.00716910698, -0.0131475721, -0.0781638324, 0.0345502608, -0.0102250874, 0.0176070668, -0.014215542, -0.0124548348, -0.0250972863, 0.02961451, 0.0492131971, 0.0501657091, 0.00749021955, -0.0102900313, 0.0492131971, -0.0117476657, 0.00894063804, 0.00528572826, -0.00983542297, 0.0406983, -0.0259343442, 0.00697066681, -0.0188193563, 0.00944575854, -0.026886858, 0.00940967817, 0.00469040731, -0.002621216, 0.0361666493, 0.0282867625, -0.0496172905, -0.00343301729, 0.00364588969, -0.0193244778, -0.0121156825, -0.00516305584, 9.8149023e-05, -0.0234809, -0.0346368514, -0.0111559527, -0.00240653963, 0.00771391578, 0.0229180511, 0.00967667066, -0.0337997973, 0.0419971831, -0.00843551662, 0.0398035161, -0.0216480326, -0.0349832214, 0.0189925414, 0.00151265634, 0.056862168, -0.00401210226, 0.00682995468, 0.0164958015, -0.0121156825, 0.00166148657, 0.00899836607, -0.00140080811, 0.0316638574, 0.0082046045, -0.00818295684, -0.00124385988, 0.0163226165, 0.0144969663, 0.0228891876, 0.0322122723, -0.0212439373, 0.0301340614, 0.0187183321, -0.0258044563, 0.0467308871, -0.00826954842, 0.00636091363, -0.0182998031, 0.0389087312, -0.00939524639, 0.00314618088, 0.0590269715, 0.00279800827, -0.0288929082, -0.00933751836, -0.0126135871, -0.00483833533, 0.0235674921, 0.0471349843, 0.0275363, 0.0395148769, -0.00211248733, -0.0114373779, -0.0146412868, 0.0108817443, -0.00324179302, -0.00874580536, 0.0285609718, -0.0104992958, 0.00188518292, 0.0201759674, 0.0140928701, 0.0257467274, 0.0161061361, -0.000422587647, 0.0300474707, -0.00185812288, -0.0412755832, -0.0124115394, 0.00113020779, -0.0214892812, -0.013089844, -0.000181302283, 0.0273486823, 0.0117548816, -0.0123682432, -0.0556787401, -0.0122311385, 0.00470123114, -0.00828398112, -0.0545530431, -0.0156587437, -0.0353295915, 0.0166256893, 0.0164958015, -0.00654853, -0.0145907747, -0.0346945822, -0.0196564142, 0.00881074928, -0.0637318119, 0.0325875059, 0.0286475644, -0.00453165499, -0.0203058552, -0.0474813543, -0.0150381671, 0.00226041558, -0.0117115863, -0.0195120946, 0.0416796803, 0.0268146973, 0.00830562878, -0.024880806, 0.026886858, -0.00115997379, 0.00128264597, 0.028791884, -0.0115239695, 0.00245344383, 0.057035353, -0.0195120946, -0.00973439869, -0.0239427239, -0.001924871, 0.0139269009, 0.021503713, 0.0205367673, 0.00146485027, 0.0124836992, 0.0142083261, -0.0164958015, 0.0429208353, 0.0102106556, 0.00376314973, 0.00877467, -0.00405539805, 0.0273053851, 0.0378696248, -0.00682634627, -0.0320102237, 0.00193930301, 0.00762732374, -0.0135805327, 0.0154711278, -0.0266126487, -0.0285898354, -0.0224273633, -0.0422858261, 0.00146755623, 0.011256977, -0.00523160817, -0.0527634732, -0.00698509859, -0.00911382213, -0.00838500448, -0.0338286608, -0.00548777636, -0.0276373215, 0.028257899, -0.0323277302, 0.0298454221, 0.0309999827, -0.0360800549, 0.00198801095, 0.015932953, -0.0252271742, 0.00841386896, 0.0107157761, 0.0379273556, 0.0204501748, 0.0182853714, 0.00631040148, -0.0316061303, 0.00356290536, 0.0184296928, 0.00691293878, -0.0150670307, 0.00334642502, 0.0105858883, 0.0293258689, 0.0175060425, 4.09071708e-06, -0.0340307094, 0.0216336, -0.0129960356, 0.00295495661, -0.000529925805, 0.0134578608, -0.0246210303, -0.0082767643, 0.029441325, 0.0112136817, 0.0352141336, -0.00333560118, 0.047567945, -0.019136861, 0.000557887834, 0.0549282767, 0.0201615356, -0.0365130156, 0.00691293878, -9.02706051e-06, -0.00180129672, -0.00561405672, 0.0201182384, 0.0143815102, 0.0168277379, 0.0199161898, -0.0440465324, -0.0323854573, -0.0542355403, -0.0053182, -0.00306139281, 0.0251550153, 0.00459299097, -0.0391107798, -0.0117548816, -0.0204646066, -0.00104000757, 0.0159185212, 0.0154134, -0.026006503, 0.0170875136, -0.0349543579, -0.0196275506, -0.00705725886, 0.00580167305, -0.0400055647, -0.0114301611, -0.0362821035, -0.00897671748, 0.0248952378, -0.04774113, -0.0249673985, 0.0189925414, 0.045547463, 0.00148108625, 0.00460742321, 0.0217779223, -0.0225572512, -0.0177080911, -0.0321256816, 0.00258874404, -0.00297840848, 0.0140856532, -0.0402076133, 0.00387139, 0.0128877955, -0.0267425366, 0.0482029542, 0.0138330935, 0.0182132125, 0.037378937, -0.016582394, -0.00609752955, -0.00299103651, -0.00968388654, 0.0128372833, 0.0119136339, 0.0674264058, -0.00895507, -0.0105209444, -0.0226005465, 0.021445984, 0.0192667488, 0.0050403839, -0.00383891794, 0.0534273461, 0.0344059393, -0.0370614342, 0.0211717766, 0.0261363927, -0.021142913, -0.0478854477, -0.0278682355, -0.00916433427, 0.0198151655, -0.0167555772, 0.021503713, -0.048693642, 0.0684077814, 0.000564652844, -0.0119713619, -0.00927979, 0.0389375947, -0.00124385988, -0.0126424516, -0.0160772726, -0.0385912284, -0.00708612287, -0.00997252762, -0.0353295915, 0.00210707518, -0.0178812761, 0.0289795, 0.0178235471, -0.0160772726, 0.0273631141, -0.0305092949, -0.00420693448, -0.0135372365, -0.0248663742, 0.0275363, 0.0473658964, -0.0363975614, 0.0296433736, -0.0225428194, -0.0216624644, 0.0156587437, 0.00839222129, 0.0210996158, -0.0190935656, 0.0275218654, -0.0190358367, 0.00824068487, 0.00739641115, 0.00751186768, -0.0102828154, -0.00107879366, -0.0434115231, -0.0165390968, -0.0320102237, 0.00774278, 0.0099869594, -0.0284022205, -0.0211862084, 0.00583414501, -0.000243540373, 0.0235674921, 0.00869529322, 0.0159040876, -0.00981377531, -0.00907052588, -0.0303649753, -0.024346821, -0.0143815102, -0.000402067119, -0.0137104206, -0.0130609805, 0.0371768884, -0.0221098587, 0.0135516692, -0.0124692675, 0.00880353339, 0.0155721521, 0.000725209131, 0.0103116799, 0.00707169063, -0.012440403, 0.0156298801, -0.0190502685, 0.0257755909, 0.0266992413, 0.028965069, -0.0222830418, -0.0231489632, 0.00352862943, -0.0011671898, 0.0131331403, -0.00644750567, -0.00301629258, -0.0055851927, 0.00543726422, 0.00645111408, -0.000657559, -0.019959487, 0.0025689, 0.0226438418, 0.00799534, 0.00239030365, -0.0113507854, 0.00147838029, 0.0296433736, -0.000896138372, -0.0115095377, -0.0100735519, -0.00151626428, 0.0165679622, 0.00364228152, 0.0329050086, 0.0189203806, 0.019959487, -0.0256024078, 0.00275651622, 0.000277590938, 0.0122311385, 0.0193389095, -0.0175060425, -0.0150670307, 0.0361955129, -0.0261363927, -0.0247220546, -0.00679748226, -0.00381005392, -0.0121517628, 0.00331395306, -0.0308268, 0.0238994285, 0.00465432694, 0.0225428194, -0.0195842534, -0.0202625599, -0.0148938466, 0.00868807733, 0.00497183157, 0.00174717663, -0.0135733169, -0.0605567656, -0.00791596435, 0.0121373311, -0.0183719639, 0.0117404498, 0.0114662414, 0.0055022086, 0.00487080729, 0.00632483372, -0.00373428571, -0.000131353954, 0.017953435, 0.00045528519, 0.0929999501, -0.0288351811, 0.016048409, 0.00717271492, -0.00137916009, -0.00315880892, -0.0169287622, -0.0228458904, -0.0274064094, 0.00303072459, 0.00767062, -0.0250828546, -0.0144681018, -0.015875224, 0.0101673594, -0.00284310826, 0.0176792275, -0.0253714956, -0.0419971831, 0.0314906724, -0.013681557, 0.00679387432, -0.0265549216, 0.0474236235, -0.00164976052, -0.00174447068, 0.0151824877, -0.00749021955, -0.0354161821, 0.00320571288, 0.0326163694, 0.00467597507, -0.0339729786, 0.0140567897, 0.0319813602, 0.0280847158, -0.00755516347, -0.0151824877, 0.0169864893, 0.0189492442, 0.0261075273, -0.0181121882, -0.00545169646, -0.0227881633, -0.0218500812, -0.0214892812, 0.0290516596, -0.0153123755, 0.0366284736, 0.058709465, 0.0103116799, 0.0208398402, -0.0167844426, 0.000241961869, -0.0127651235, 0.0174338836, 0.0169143304, 0.0423146896, -0.0235241968, -0.0458361022, 0.00129798, -0.000975965522, 0.0150525989, -0.00738919526, -0.0130537637, -0.00649801781, -0.0116249938, 0.0261075273, -0.0134722926, -0.0076128915, 0.0316927209, -0.0189059488, 0.0179101396, 0.00844273251, 0.0106003201, -0.043353796, 0.0100879837, -0.031865906, -0.00634287391, 0.0174483154, 0.0142877018, -0.012260003, -0.0309711192, -0.0211862084, 0.00445949472, -0.0256024078, -0.00910660625, -0.0025382319, 0.0150958952, 0.0131475721, -0.0129455235, -0.0413621739, 0.00735311536, 0.0215614419, -0.0141433813, 0.001273626, -0.00913547, 0.0336554758, 0.0185740124, -0.0139918458, -0.00508007174, 0.0183431, 0.0362243764, 0.0402076133, 0.0164958015, 0.0178957079, -0.0174627472, -0.00847159699, 0.0118126106, 0.0173761547, -0.0206377916, -0.00921484642, 0.0225861147, -0.0185740124, 0.00590269687, 0.00366934156, 0.0474813543, -0.00885404553, 0.00644389773, -0.00553468056, -0.00118071982, -0.0170297865, -0.0329050086, -0.0191657245, -0.0049104956, -0.00277455617, 0.0105642406, 0.0343193486, 0.02369738, 0.0690427944, 0.0133929169, 0.0047337031, -0.00844994932, -0.0256601349, -0.0286764279, -0.0213882569, 0.0024317957, 0.004650719, 0.00965502299, 0.0126713151, -0.030797936, 0.0312597603, -0.0193677731, 0.0320102237, -0.000392821588, 0.0327895544, 0.0112930574, -0.0361955129, 0.0123682432, 0.0180544592, 0.0174771789, 0.0458649658, -0.0119497143, 0.021619169, -0.0241159089, 0.00512697594, -0.0186461732, 0.0146268541, -0.0239715893, -0.0157020409, 0.00831284467, 0.0241303407, -0.0389664583, -0.0307113435, -8.29841301e-05, -0.0474813543, 0.011372433, -0.0126857478, -0.00256529194, -0.0195986852, 0.016409209, 0.011134305, 0.0069778827, 0.0235674921, 0.0220809933, -0.0035755334, 0.0112136817, 0.0246643256, 0.0400921591, -0.011134305, 0.00458577508, 0.00272945617, 0.0389087312, -0.0251405817, 0.00390386209, 0.0124620507, 0.00174176472, 0.0118559059, -0.0141361654, -0.0127073955, -0.00859426893, -0.00865921285, -0.00192126294, 0.0182132125, 0.0168566015, 0.0334534273, 0.0204213113, -0.0295423493, 0.0205079038, 0.0173184257, -0.030451566, -0.00608670525, 0.00367475371, 0.00237406767, -0.00467236713, 0.0268579926, -0.000545710849, 0.0269590169, 0.0294124614, -0.0063392655, 0.0234376043, -0.0144320223, 0.0243035257, -0.0148505503, 0.0224995222, 0.0410446711, 0.0171741061, 0.0169143304, -0.014215542, 0.0094674062, 0.0165102333, 0.0178379789, -0.00600372115, -0.0136021804, -0.00893342216, -0.0260498, -0.00404818216, 0.00235783169, 0.0135949645, -0.0237262435, 0.0292537082, -0.000897942402, -0.00610835338, -0.0220521297, -0.0166401211, 0.000239481364, -0.0130681964, 0.0243035257, 0.00554550439, -0.0316638574, -0.0137176374, 0.0286331326, 0.00145763427, -0.0268146973, 0.00726291491, 0.0170297865, -0.0132774608, -0.00679026637, -0.00242277561, -0.00398684619, -0.0256457031, 0.0227160025, 0.0337420665, 0.0118992021, -0.00317143695, -0.0200605113, 0.00516666379, 0.019959487, 0.0418817289, 0.0191079974, 0.00961894263, 0.022326339, -0.0253426302, 0.0249385349, 0.035358455, 0.00158030645, 0.0234809, 0.0172606986, 0.0211284813, 0.0178524107, -0.00962615851, 0.0088901259, -0.0155288558, -0.0198873263, -0.014215542, 0.0215614419, -0.0317215845, 0.0396880619, -0.00310829678, 0.0262085516, 0.0439310744, -0.0053723203, 0.00249673985, -0.00965502299, 0.0302783828, -0.00532902405, -0.00267714, 0.0150381671, -0.0011816218, -0.00090245239, 0.0122239226, -0.0451145023, -0.0138980374, -0.00918598194, 0.0447681323, -0.028373355, -0.00575476885, 0.0179678667, 0.0514068641, -0.0240004528, -0.0148794148, 8.86216367e-05, 0.016770009, -0.0295134857, 0.0250251256, -0.0289217718, 0.0159906801, 0.027897099, 0.0071546752, -0.00895507, -0.00970553514, -0.00319488882, -0.0185451489, -0.0285898354, 0.0246065985, -0.000750465144, 0.00609752955, 0.00721240323, -0.00530016, 0.0137392851, 0.0101384958, 0.0583342351, 0.0058810492, 0.00313535682, 0.00106616563, 0.031577263, 0.00711498689, -0.00527129602, -0.00763453962, 0.0140784374, -0.0082984129, 0.00348713738, 0.0138908215, -0.00912825391, -0.0268002655, -0.00797369238, 0.0150958952, 0.0151391914, -0.00627792953, -0.0242457967, 0.0109827686, 0.00638977764, 0.000156158989, 0.031750448, -0.0235674921, 0.00430074241, 0.0238561332, -0.015759768, -0.0100591192, -0.00572951278, 0.00819017272, 0.0219222419, -0.0404962525, 0.0355316401, -0.00090064836, -0.0222397465, -0.00600011321, -0.0120218741, 0.00422497466, -0.0168710332, 0.0308268, -0.000195508794, 0.030567022, 0.00166419253, -0.0301629268, 0.00980655942, -0.0030920608, -0.0193822049, -0.0210418887, -0.0128589319, -0.0266992413, -0.00298021268, 0.000642225, 0.00211970322, 0.0187471975, -0.00277094822, 0.0231345315, 0.0394282863, -0.0204646066, 0.0162071604, -0.0263673048, 0.00304335263, 0.0041455985, -0.00782937184, -0.0102323033, 0.0195265263, 0.0156443119, 0.00985707156, 0.00616247347, -0.0105498079, -0.0139990617, 0.0221820176, 0.0122311385, -0.00818295684, -0.0458361022, 0.0196131188, -0.00957564637, -0.00331575703, 0.00790874846, -0.0120868189, 0.0227737315, 0.000921845436, -0.00322194886, 0.00650523417, 0.0191079974, -0.00157128635, -0.0107374247, 0.0205079038, 0.0020908392, -0.0100158229, 0.00658461032, 0.000656657, 0.0298742857, -0.0104127042, -0.0279115308, 0.0123754591, 0.00779329194, -0.00873137359, -0.0146629345, -0.00865921285, 0.00566456886, -0.0128950113, 0.0194543656, -0.00616968935, -0.0239860211, -0.00809636433, -0.00493575167, 0.00611556927, -0.00104632159, -0.0179967321, 0.00916433427, 0.0251261499, -0.00465432694, -0.0229613464, 0.0184729882, -0.0347523093, -0.0444794931, 0.0175782032, -0.00123393792, 0.0266126487, 0.0140134934, -0.0359934643, -0.00875302125, 0.0157164726, -0.012382675, -0.0279548261, -0.0452299565, -0.00296758465, 0.0115167536, 0.00714745885, 0.0235819239, -0.00599650526, 0.0010382036, 0.0174771789, 0.0673686787, 0.000795565196, -0.00334462104, -0.0244622771, -0.0096333744, -0.0115095377, -0.0320679545, 0.0122672189, 0.019310046, 0.0134073487, -0.00410951814, -0.00813244469, -0.0143815102, -0.00550581655, -0.00208903523, -0.00526408, -0.016236024, -0.00338250515, 0.0245344378, -0.0342616215, -0.0221675858, -0.00213774317, 0.00882518198, 0.00020565631, 0.0077067, -0.00508367969, -0.00339332921, -0.0081107961, -0.0635586232, -0.00485276757, 0.0101457117, 0.0175782032, 0.042891968, 0.00487802364, 0.0193533413, 0.0284455158, -0.0180400275, -0.000432509667, -0.0178524107, 0.0178091154, 0.00737837143, -0.00342580117, -0.00923649408, 0.0216624644, 0.00466154329, 0.0134722926, -0.00229469151, -0.0282434672, -0.00652688183, -0.0117404498, 0.00405179, -0.0341173, -0.0314618088, -0.00765618775, -0.0320679545, 0.0382737219, 0.0131187085, 0.0135949645, 0.0288207475, -0.00417807046, 0.000957023469, 0.0143670784, 0.031577263, -0.0287485886, 0.00864478108, 0.0135733169, -0.00604340946, 0.0153123755, 0.0212295037, 0.0287341569, 0.00427548634, 0.0143165663, -0.0044378466, 0.0145186139, -0.0122888666, -0.0171308108, 0.0268724244, 0.0149371428, 0.00385335, -0.0253714956, 0.0174338836, 0.0102323033, -0.00275832019, 0.0321256816, -0.0237551089, 0.00601093704, -0.00874580536, -0.0172462668, -0.0155577194, -0.0223407708, 0.0314040817, -0.0330493301, -0.00373067777, 0.0174771789, -0.00121409388, -0.0176936593, 0.0306536146, 0.0273342505, -0.0121228984, -0.00401210226, 0.00150363636, 0.016466938, 0.00900558196, 0.0109394724, 0.0103621921, 0.00621659355, 0.0120002264, 0.0017958848, -0.0100735519, 0.00945297442, 0.0216624644, 0.0241159089, -0.032645233, -0.00871694181, 0.011199249, 0.00300366455, -0.000488433754, 0.0221964493, 0.0125847235, 0.0340307094, -0.00373789365, 0.0307690706, -0.00378479785, 0.000175890265, 0.00233798753, -0.0369171128, -0.001917655, 0.00449918304, 0.00913547, 0.00623824168, -0.00826233253, 0.00405900599, 0.020493472, -0.0113363536, -0.0141145177, 0.00217923545, 0.011610562, 0.013566101, -0.0143526457, 0.0029170725, -0.0140640056, 0.0309133921, -0.00307582482, 0.0531387068, 0.00477339141, 0.00993644726, -0.00876023713, 0.0243035257, 0.0128300674, -0.00148289022, -0.00217743125, -0.0162504576, 0.00235783169, 0.0186894685, 0.0337420665, -0.0165102333, 0.0186750367, 0.0117332339, 0.000754073146, -0.00277816434, 0.0134145645, 0.0536293946, 0.0104992958, -0.00382087776, 0.00334642502, 0.00746135553, -0.00509450398, -0.0269157216, -0.0115744816, -0.00809636433, 0.0129960356, -0.0126640992, 0.0149371428, -0.00236504758, 0.0061372174, -0.0150525989, 0.0222397465, 0.016885465, -0.0108240163, -0.0285609718, -0.0122094909, -0.00651966594, 0.00377758173, -0.0054084, -0.0190358367, 0.00542644039, 0.00155414839, -0.00829119701, -0.0201326702, -0.0113940816, 0.00346909743, -0.0274064094, 0.0113363536, 0.0223984979, 0.00495379139, 0.00844994932, -0.000448745675, 0.0151824877, 0.00834892504, 0.0266270805, -0.00786545221, -0.00153791241, -0.000249854376, 0.0077788597, -0.0016750166, 0.00199161912, -0.0051594479, -0.00897671748, 0.0312597603, -0.0160772726, 0.00323818508, 0.0124476189, 0.00712220278, -0.0230768025, 0.0138330935, 0.0248519424, 0.0108456649, 0.0115744816, 0.0230768025, -0.00552024832, -0.00589908892, 0.0108817443, 0.0218212176, 0.00603619311, 0.0165246651, -0.0107735042, 0.0140856532, -0.00314076873, 0.0349832214, 0.0142949177, -0.0172318351, 0.0346945822, 0.0320102237, 0.0024552478, 0.0124836992, 0.0113940816, 0.0256601349, -0.0114662414, -0.0176070668, -0.0170009229, -0.000933571428, 0.00854375679, -0.00246787583, -0.00458938302, -0.00813966058, -4.28168787e-05, -0.00267172814, -0.0252271742, -0.0275074337, 0.0350409485, -0.0145619102, -0.0118270423, 0.00585940108, -0.0110693611, 0.00399045413, -0.0169720575, 0.0117693143, -0.00155956042, 0.0140640056, -0.0378407612, -0.0027042, 0.0199739188, -0.0281424429, -0.0079448279, -0.0245055743, 0.0125269955, -0.00911382213, 0.0249385349, -0.0214171205, -0.0166112576, -0.00447392697, 0.000544808863, 0.0251694471, 0.0113219209, 0.00767783588, -0.00586300902, 0.00720157893, -0.0171596743, -0.0154422633, -0.00736393919, -0.0179678667, 0.00231633964, 0.00783658773, 0.0231201, -0.0129310917, -0.00561044877, 0.0118270423, -0.00278357626, 0.0102106556, 0.011726018, 0.0278249383, -0.000580888882, 0.0252704713, 0.0149948709, 0.021027457, 0.0435558446, 0.0193966385, 0.0103910556, -0.00760567561, -0.0142011102, 0.0062202015, -0.00938803051, -0.0339152515, 0.0397746526, 0.00081946823, 2.99915464e-05, 0.00273126015, -0.0162937529, 0.0291815493, 0.00265549216, 0.00282687228, -0.0340884365, 0.0120723862, -0.0201904, -0.0296722371, 0.00165427057, 0.0369748399, 0.026006503, 0.00224959152, 0.00358274952, -0.0140640056, -0.00178235478, -0.0116899377, -0.00148649828, 0.0264394637, -0.0142660541, 0.0107951527, 0.0134217804, -0.0120074423, -0.0212872326, 0.00759845972, -0.0271033384, -0.0163370483, 0.0297011, 0.00982820708, 0.0032814811, -0.0177369546, -0.0101962239, -0.0234376043, 0.00173274463, -0.0193677731, -0.00222613942, -0.00903444551, 0.00939524639, 0.0101024155, 0.0116322096, 0.00311370869, 0.0184008274, 0.00190322287, -0.0166401211, -0.0103694079, -0.0236252211, 0.00480947131, 0.00890455768, 0.0269012898, -0.016466938, 0.00577280903, 0.00425383868, -0.00327246101, 0.00437651062, 0.00246967981, 0.014215542, 0.00402292609, -0.0112208975, -0.00950348657, -0.0339152515, 0.0277383458, 0.00183376879, 0.0318081751, 0.0301340614, -0.0321834087, -0.00265188399, 0.00759124383, 0.00399406208, -0.0127506917, 0.0102972481, 0.00875302125, 0.01463407, -0.018776061, -0.00915711839, -0.0138258776, 0.0111559527, -0.00483472738, -0.0134506449, -0.0214748494, -0.0140495738, -0.0109972013, -0.00114554178, 0.00552024832, -0.00336266123, 0.0159473848, 0.0170730818, 0.00326163694, 0.00780050782, -0.0140207093, 0.00210527121, -0.0209264327, -0.012202275, -0.00990758277, 0.00280522439, 0.010838449, 0.00959007908, -0.00924371, -0.000376360083, 0.0332802422, -0.0233221482, -0.00104361563, 0.0131620038, -0.0194543656, -0.0170153547, -0.00228206348, 0.0043548625, -0.0032345769, -0.0166256893, -0.0150381671, 0.0216336, 0.00345827336, 0.00672171451, 0.0406983, 0.021445984, 0.00344564533, 0.00466154329, -0.0166256893, 0.00843551662, 0.017592635, -0.0205367673, 0.0327895544, 0.0151391914, -0.0189203806, 0.00772113167, 1.9308467e-05, -0.0113940816, 0.0173328593, -0.0167122819, -0.0139918458, -0.0104487836, -0.029441325, -0.0207532477, -0.0122960825, 0.00243901182, 0.00437290268, 0.00351058948, 0.0114373779, -0.0218356494, -0.00468679937, -0.00421054242, -0.00332658109, -0.0042718784, 0.00124656595, -0.00163352455, 0.00861591753, -0.000452579203, 0.00250936789, 0.0101962239, -0.021619169, -0.0160051119, -0.00178957079, -0.0144897504, 0.00597124919, 0.00920041371, -0.021503713, -0.0568044409, -0.0205079038, -0.019310046, -0.011726018, 0.00537953619, 0.00489606336, -0.0109972013, 0.0213016644, 0.0164813697, -0.000941689417, -0.0325009152, 0.00330132502, 0.00211068313, 0.0101529276, 0.0123249469, -0.0286764279, -3.60518679e-05, -0.006516058, 0.00415642234, 0.0143526457, 0.00934473425, -0.00876023713, 0.0109106088, 0.0300474707, 0.0368305221, -0.0098209912, 0.00145492819, 0.00789431576, 0.0150381671, 0.0156154484, -0.00664955424, 0.00192847895, 0.0107879369, -0.0233221482, 0.00942411087, -0.0337132029, 0.011610562, -0.00340595725, -0.0202336945, 0.00451722275, 0.00249132793, 0.00344203738, -0.000997613533, 0.00248591579, 0.0250684228, 0.00360259344, -0.0100879837, 0.0262229834, 0.0277094822, 0.0217923541, -0.0127506917, -0.0105714565, 0.0102972481, 0.0256457031, 0.0149082793, 0.0267714, -0.0182132125, 0.00897671748, -0.0016894486, 0.0102178715, -0.000964239473, 0.0261652563, -0.0206955206, 0.00375954178, 0.0121156825, -0.0150670307, 0.0176070668, -0.00399045413, 0.00580167305, 0.0166978501, 0.0130176842, 0.00599289732, 0.00969831925, -0.0215758737, -0.00802420452, -0.00343121332, 0.00415642234, 0.00387860602, 0.00926535856, 0.00426105456, 0.00793761201, -0.0135949645, -0.0131331403, -0.000433637179, -0.0105498079, 0.00150273426, -0.0152979437, -0.0104920799, 0.00122311385, -0.00502234371, 0.00610474544, -0.0302783828, 0.00325081288, 0.0152113512, 0.0102034397, 0.0242025014, -0.0151969194, -0.0100591192, 0.00590269687, 0.00958286226, -0.0077067, 0.0116249938, -0.0105786724, -0.012620803, 0.0147639588, 0.00867364556, -0.0174771789, -0.000782486226, 0.0129238758, -0.000237902859, 0.0143021336, 0.0218356494, 0.00575476885, 0.032645233, 0.0249529667, -0.00400488637, -0.00408065412, -0.00414199056, -0.0105931042, 0.0181410518, 0.00449196668, 0.0145907747, -0.0146557186, 0.0353295915, 0.00940967817, 0.00574033661, 0.0178235471, -0.0207532477, 0.00749021955, -0.00288640452, 0.00133676606, 0.00434764661, -0.00802420452, -0.0195986852, -0.00163352455, 0.00295134843, 0.00118342577, -0.00589908892, 0.00141343614, 0.00654853, -0.00490688765, -0.0123971067, -0.0213016644, -0.00679748226, -0.0222253148, 0.00204393524, 0.00736754714, -0.0389664583, 0.00701035466, 0.00709694671, -0.0169143304, 0.00432960643, -0.0202625599, 0.0298165586, -0.00314618088, 0.0143598616, 0.00772834802, 0.00118252379, -0.00949627068, 0.00816130824, 0.0184729882, -0.0160051119, 0.00342940935, 0.00958286226, -0.0105931042, 0.0275940262, -0.0134650767, -0.00857262127, -0.00873137359, 0.00240293168, 0.0197718702, 0.0047445274, 0.00771391578, -0.0172029696, -0.0039796303, -0.0278393701, -0.02262941, 0.00627432158, 0.0105065117, 0.0195698217, -0.00382448593, -0.0088901259, -0.0170153547, -0.0139774131, -0.00108691165, -0.0131187085, 0.00772834802, -0.00999417529, -0.0162215922, 0.00927979, 0.00457855919, -0.00352321751, -0.0161205679, -0.00746857142, 0.00210527121, 0.0147350943, -0.00531098433, 0.00505120773, 0.00513058389, 0.0229180511, -0.00589187304, 0.00873858947, 0.0092220623, 0.0197718702, -0.0241447724, -0.00562488055, -0.00881796516, -0.0199739188, 0.0175493397, -0.0143815102, -0.0132846767, -0.00644389773, 0.00908495765, -0.00310108066, 0.00850767735, 0.0274352748, 0.0151969194, 0.00219186326, -0.0122311385, 0.0100663351, -0.0160339773, 0.0207821112, 0.00657017808, -0.0036368696, -0.0129888197, 0.0130249, -0.00118252379, -0.0160628408, -0.00624906551, -0.0125702908, 0.0113796499, -0.0240581818, 0.0114085134, -0.00128715602, -0.0247942135, -0.0262951441, 0.0262085516, 0.0155721521, 0.0135083729, 0.00436568679, -0.0107302088, -0.0348100364, 0.00915711839, -0.00785102, 0.0234520361, -0.00692737056, 0.00624906551, 0.0215470083, 0.000768956204, -0.0126496674, -0.0143670784, -0.00767783588, -0.0143670784, 0.00368377357, -0.00608670525, -0.00127994, 0.0171019454, 0.0020529551, 0.00422136625, -0.00826954842, 0.00178055069, 0.00377758173, -0.0072376593, -0.0105065117, 0.0120002264, 0.00767783588, -0.0138691729, 0.0078871, -0.00743970741, -0.0134795085, 0.00762010785, -0.00601815339, -0.00296758465, -9.40759219e-06, -0.00112299167, -0.014864983, -0.00363145745, -0.00854375679, -0.00350337336, 0.00724848313, -0.0100374715, -0.0176359303, -0.00113201176, 0.00583775295, 0.0128084198, 0.0246787574, 0.0193677731, -0.0239138603, 0.00813244469, 0.00666037807, 0.00215037121, 0.0254869517, -0.00948905479, 0.0236540847, -0.00681552244, -0.0167988744, 0.00852932502, 0.0115672657, 0.0202048309, 0.000608850911, -0.00868086144, 0.00693819486, -0.015225783, 0.00267172814, -0.00425023073, -0.00400849432, 0.0329627395, -0.00843551662, -0.000933571428, -0.00506564, 0.005123368, 0.0247509181, -0.0165102333, -0.00733507518, 0.0120002264, -0.0189781096, -0.0162937529, 0.00565735251, 0.0244189817, 0.0194687974, -0.0220954251, -0.0183863956, 0.0139701972, 0.00449918304, -0.0298454221, 0.00255266391, 0.0382159948, 0.0119280666, 0.0022062955, -0.00584496884, 0.0164958015, 0.00769948401, 0.00128174399, 0.017534906, -0.000740092131, 0.0231489632, -0.00441259099, 1.19797065e-07, 0.00741805928, -0.000284355949, -0.0163947772, -0.0112281134, 0.000632753945, -0.00984263886, 0.00376675767, 0.00208903523, -0.00741805928, -0.00309386477, -0.0155144241, 0.0108023686, 0.0127434758, 0.0203058552, 0.00439094286, -0.000672893, -0.026713673, 0.0235963557, -0.0143815102, 0.00137916009, -0.00953956693, 0.0144608859, -0.00641864166, -0.0159906801, -0.0112208975, 0.00191224297, 0.00602897722, 0.00447031902, 0.0119424984, -0.00294954446, -0.00768505177, 0.00127001794, -0.00628514541, -0.031577263, 0.0191512927, 0.0025147798, 0.0246210303, -0.00775721204, -0.00837778859, 0.00528212031, -0.00193569495, 0.00769948401, 0.0194832291, 0.000732425135, -0.0160195455, -0.0259054806, -0.00103730161, 0.00497543951, -0.0173328593, -0.00472287927, 0.0116394255, 0.000141050463, -0.0167988744, -0.00423940644, -0.0267714, 0.0152402157, -0.00890455768, -0.0216480326, -0.0196852777, 0.000975063478, 0.0257900227, 0.00235061557, -0.00252740784, -0.00140080811, 0.00406622235, -0.0151824877, -0.0186750367, 0.00198981515, -0.00422136625, -0.0062562814, -0.00497543951, -0.000967847474, -0.0108168, 0.00362063362, 0.000711679109, 0.018776061, -0.0125775076, -0.0112064648, 0.005242432, -0.021676898, -0.013443429, -0.00684438646, -0.0148794148, 0.0104776481, -0.027074473, 0.00395076629, 0.0226005465, -0.0102611678, 0.0119352825, 0.0357914157, -0.00246607186, 0.0136959888, 0.0228891876, 0.00412395038, -0.00369820558, 0.00258513587, 0.0194687974, 0.0147206625, -0.00652327389, 0.000686874031, 0.00869529322, -0.0155288558, 0.00253282, 0.00292428839, -0.0194976628, 0.0108600967, -0.0132197319, -0.00292789657, 0.0110044172, 0.01463407, 0.0176647957, -0.0264250319, 0.0302783828, 0.00874580536, -0.00206919108, -0.000566456874, -0.0064330739, -0.00330854114, 0.0113074891, -0.00943132676, -0.00608670525, 0.0180544592, 0.00108691165, -0.00210527121, -0.0409003496, -0.000539847824, 0.0104199201, 0.0309422556, -0.000655755, 0.00644389773, -0.00274208421, -0.0159618165, 0.0164525043, 0.00563209644, 0.00439455081, -0.018776061, -0.019252317, -0.0121156825, -0.000888922368, 0.00274208421, -0.0215181448, -0.00225139549, -0.00404818216, -0.00815409236, -0.00172372465, -0.0288784765, -0.0149082793, -0.00142065214, -0.00438011857, -0.00153340236, -0.0163514819, 0.0123971067, -0.00100031949, -0.000414920651, 0.0139990617, 0.00341136917, -0.0133857, 0.0169143304, -0.00483833533, -0.00888291, 0.0029026405, 0.00354666938, 0.00559601653, 0.0128012039, 0.0412467197, 0.00300546852, -0.0227737315, -0.00373067777, 0.0106869126, 0.00542283244, -0.00843551662, 0.00826954842, 0.00345466519, -0.00254905596, -0.00540479226, 0.0127795553, -0.0162648894, 0.0120723862, 0.0055851927, 0.039572604, -0.0132053, 0.000580437889, -0.0196419824, -0.0434115231, -0.0148938466, 0.0218212176, -0.0149371428, 0.000886667345, -0.0167122819, 0.00943132676, 0.00787988398, 0.000880804379, -0.00717993081, 0.0111415209, -0.0131980842, -0.0193677731, -0.00480947131, 0.00216119527, -0.0108673126, -0.0028791884, 0.0207388159, 0.0131620038, -0.00857983716, 0.00220809947, -0.0118342582, -0.00839943718, -0.00164885854, -0.00455330312, 0.0163514819, 0.0158607922, 0.00449196668, -0.00288099237, -0.00383170182, -0.0199883506, -0.00845716521, -0.0101673594, -0.0229902118, 0.00650523417, -0.0172462668, 0.00068191305, 0.0116755059, -0.00244803168, -0.00712220278, 0.00885404553, 0.0141073018, 0.00881796516, -0.0106941285, 0.00192126294, 0.0404673889, -0.0119424984, 0.00567178475, -0.0229180511, 0.000250756391, 0.0266848095, -0.00465432694, -0.000957023469, 0.0145546943, 0.0149082793, -0.00261941203, 0.0146412868, 0.0278105065, 0.00945297442, 0.0279115308, -0.00428270269, -0.0144031579, 0.00222613942, 0.0209552962, 0.00124656595, -0.0351275429, -0.00281965639, -0.00653770613, -0.00284130429, 0.000304199959, -0.00268616015, -0.030451566, 0.0161927287, 0.0124764834, -0.0216047373, -0.00711859483, 0.0113868657, -0.00922927819, 0.0104127042, -0.02890734, -0.027074473, 0.000626891, -0.0223696344, -0.028791884, -0.0249385349, -0.0239427239, -0.0175637715, 0.0252127424, 0.00775721204, -0.00101204554, -0.0262807123, 0.00798090827, 0.00267172814, 0.0229757801, 0.0166689847, -0.00505120773, 0.0100446874, 0.00843551662, 0.0202769917, 0.00677222619, -0.00577641698, -0.0281857401, 0.00349976541, 0.00437290268, 0.0235963557, 0.0145258298, 0.0109466892, 0.0252416059, -0.00103098759, -0.00965502299, -0.00873137359, -0.0101168472, -0.0114445938, 0.0096333744, 0.00561044877, 0.00537592825, 0.0166978501, -0.0111848172, 0.00784380361, -0.00238128356, -0.0157309044, -0.00397241395, 0.00476256711, -0.000674246054, -0.00431156671, -0.00103910558, 0.00274388818, 0.0151103269, -0.000686423038, -0.000972357462, -0.0100158229, 0.0154999914, -0.0097993426, 0.0221098587, 0.0117620984, -0.0131692206, -0.0303649753, -0.0100663351, -0.00907052588, -0.00988593511, -0.0233654436, -0.0139774131, 0.0472215749, -0.00165787851, -0.0179823, -0.00449196668, -0.0146124223, 0.00335003319, -0.00122130988, 0.00143779023, -0.0122383544, 0.0130537637, -0.00713302707, -0.00725209108, -0.00870250911, -0.000197538306, -0.0266415123, 0.0195265263, 0.00592073705, 0.0140928701, 0.00195734296, -0.0171885379, 0.00990758277, 0.0251405817, -0.0155721521, 0.0205656309, 0.00331575703, 0.00613360945, 0.00603258517, 0.0206810869, -0.00944575854, -0.000618321938, -0.00409508636, -0.0149660073, 0.0042718784, 0.00127994, 0.00990036689, 0.0164958015, 0.00377758173, -0.0155432876, -0.00962615851, 0.00413477421, -0.00425744662, 0.00959007908, 0.0079448279, 0.00292068045, 0.0143454298, -2.32547227e-05, -0.00431517465, 0.00706447475, 0.00129527401, 0.0206955206, -0.00273306412, 0.0030451566, 0.00146034022, -0.0134722926, -0.0202048309, 0.00467597507, 0.00523160817, 0.0164958015, -0.00819017272, 0.0101240631, -0.00641503371, -0.00526047219, -0.014807255, 0.00412034243, 0.00865199696, -0.0238417014, 0.0149371428, -0.000872686331, 0.000567809853, -0.0118703386, 0.0114806732, -0.00115275779, -0.0314906724, -0.00145041826, 0.00758402748, -0.0179390032, 0.00379922986, -0.0137681495, -0.00217201933, -0.00231092749, 0.0234664679, 0.0176647957, -0.000410861627, -0.0128445, 0.00225500343, -0.00339693716, 0.00279079238, -0.00158030645, -0.00116538582, 0.0231778268, 0.0101312799, 0.02262941, 0.00546612823, -0.0402653404, 0.000652147, -0.00897671748, -0.00633565756, 0.0199739188, 0.00333740516, -0.00695984252, 0.0134289963, 0.0171452425, 0.0020998593, 0.00652327389, -0.000625086948, 0.0127651235, -0.00893342216, 0.00369459763, 0.00832727645, -0.0232788511, -0.0108745284, 0.0187616292, 0.00457495078, 0.0145979906, 0.0109322565, -0.0226005465, -0.0154855596, 0.00361882965, 0.00322736101, 0.00959007908, 0.00675057853, 0.00925092585, 0.0109755527, -0.00315520074, 0.0163081847, 0.0052785119, -0.0122383544, 0.00874580536, 0.00455691107, -0.00176251074, -0.00681552244, 0.0111487368, -0.00159113039, 0.0191801582, 0.0161927287, 0.0250828546, -0.00959729496, -0.00850046147, 0.0105209444, -0.00296938862, 0.0063861697, -0.00971275102, 0.00867364556, 0.000263835391, 0.0046146391, 0.00230551558, -0.00912103802, 0.00744692329, 0.00461824704, -0.00374150183, 0.0284599476, 0.00329591311, -0.000741896161, 0.0120868189, 0.0086303493, -0.0137392851, -0.0143165663, 0.00460742321, -0.0085365409, -0.0162793212, 0.014576342, -0.0116177779, 0.00114283571, 0.00366573362, 0.00978491083, 0.00200965907, 0.00374871772, 0.00552024832, 0.000286385446, -0.00806028396, 0.00322375284, 0.00445588678, -0.00204032706, -0.0131187085, -0.023812836, 0.0154134, -0.00098227954, -0.0200172141, -0.0128950113, -0.00457855919, 0.0186317414, -0.00357914157, -0.02369738, -0.00270780805, -0.00117891585, -0.0104343519, 0.025414791, 0.00048121775, 0.0116322096, 0.0141073018, -0.0277527794, -0.0319524966, 0.00720518688, -0.0215181448, 0.0272765215, -0.0194976628, -0.0178957079, 0.00158481637, -0.00538675208, 0.001917655, 0.0140712215, -0.0058810492, -0.00428631064, -0.0131547879, -0.0168710332, -0.0165535286, -0.0267425366, 0.0210851841, 0.006635122, -0.0221387222, 0.0081107961, 0.00526408, 0.0046146391, 0.0159185212, 0.0108528808, -0.00767783588, -0.00563931279, -0.0242025014, 0.00711137895, -0.00720879529, -0.0213160962, 0.0101168472, -0.00870250911, -0.01812662, 0.0214892812, 0.0184296928, -0.0050403839, -0.0257900227, 0.00462546293, 0.00785823632, -0.00706447475, -0.000724758138, 0.00933751836, -0.0169576257, 0.0110693611, -0.0357625522, -0.0170297865, 0.0267425366, 0.00892620534, 0.0201182384, 0.0150093026, -0.0245777331, -0.0141145177, 0.0114085134, -0.000697247044, 0.0227448661, -0.0125847235, 0.00561044877, -0.000824429269, -0.00518831192, 0.00867364556, 0.0169864893, -0.0206233598, 0.00639699399, 0.00345105724, 0.0142516214, 0.00987871923, 0.0159473848, -0.00241736369, 0.00422858261, -0.0161061361, 0.0106796967, -0.00445949472, -0.00904166233, 0.0079448279, -0.023221124, 0.00967667066, -0.0623463355, -0.00107698969, 0.0029170725, -0.00940246228, -0.0015460304, -0.00380644575, 0.00314798485, -0.0123898908, 0.0293114372, 0.00644750567, 0.0136021804, 0.0010679696, -0.0103188958, 0.0195409581, -0.0107879369, -0.00340956519, -0.00531098433, 0.0051378, -0.00126821396, -0.0111198733, -0.00179137476, 0.00869529322, 0.00645111408, -0.00540118432, 0.0195986852, 0.0172174033, 0.00321112503, -0.000395302108, 0.00148559629, -0.00974883139, 0.00969831925, -0.0139846299, -0.0159906801, -0.02333658, 0.0202192627, 0.00391829386, 0.00949627068, -0.00884683, -0.0101312799, 0.0133568365, -0.0114157293, 0.0199306235, -0.0013710421, -0.00764175551, 0.00125378196, -0.000360575039, 0.000715287111, 0.0107374247, 0.00381005392, -0.00837778859, -0.0145402625, 0.00146485027, 0.000980475452, -0.00167140854, 0.0137176374, -0.000753622153, -0.0134867243, -0.0152113512, 0.00190683093, -0.00128174399, 0.00689129066, 0.0158607922, -0.0276661869, -0.0058774408, 0.0192811824, 0.00821903627, -0.00134668802, 0.00438733492, 0.0263961684, 0.0338575244, 0.0118919862, -0.0038858219, -0.00424662232, 0.0135300206, -0.0308556631, 0.0108889611, 0.00131151, -0.0056212726, 0.00392190181, 0.0354450457, 0.0193244778, 0.000178032526, 0.0123610273, 0.00860870164, 0.0114157293, -0.0063861697, -0.00514501566, -0.00251297583, 0.0134362122, -0.0119352825, 0.000922747422, -0.00367475371, -0.0321834087, -0.01445367, -0.0184585564, 0.00466515124, -0.00521356799, -0.00235602772, 0.0173617229, -0.0105353761, 0.0200460795, -0.0212150719, -0.00632844167, 0.00329410913, 0.0179101396, -0.0187616292, -0.00957564637, -0.0157309044, 0.00165427057, 0.0166834183, 0.0148794148, -0.00290624844, -0.00142967224, -0.00451000687, 0.0200316459, 0.00108149962, 0.00626349775, 0.00309927668, 0.00776442792, 0.00337528926, 0.0125991553, -0.0245055743, -0.00508367969, -0.0054553044, 0.0105642406, -0.00810358, -0.00751908356, -0.0139269009, -0.0385623649, -0.0141866775, 0.000969651504, -0.0142660541, 0.00932308659, -0.0304804314, -0.0161205679, -0.0128300674, -0.00964780711, 0.0433826596, -0.00845716521, 0.0149082793, -0.0119930105, -0.0127434758, 0.0219366737, 0.00320030097, -0.0268724244, -0.0396303311, -0.0116249938, -0.00104090956, -0.000259099907, -0.00754794758, 0.00318226079, 0.00926535856, 0.0109972013, -0.00505481567, -0.0304804314, 0.00117530779, -0.00422136625, 0.000925453438, -0.00576559268, 0.00430074241, 0.00439815875, 0.0161782969, 0.000436568662, -0.02262941, 0.0136671253, 0.00281604822, -0.0193389095, -0.00203311117, 0.00891898945, -0.0120651703, 0.0105209444, 0.00793761201, 0.000180513031, 0.0154278316, -0.000385380088, -0.0107590724, 0.0231489632, -0.0170730818, 0.0203347187, 0.00510172, 0.0177080911, -0.00212150719, -0.011076577, 0.00493214373, -0.0158607922, -0.0136382608, -0.00988593511, 0.027897099, 0.000532180828, 0.00254905596, 0.0122383544, 0.0112136817, -0.0196852777, -0.016943194, -0.00454247883, 0.0202192627, -0.00861591753, -0.0102756, -0.00419611065, 0.0150381671, 0.00978491083, 0.00606866553, 0.00118973979, -0.00471927132, -0.00464350311, -0.00641142577, -0.0105570238, 0.0163803454, -0.00779329194, -0.00298742857, 0.00301809656, -0.00500069559, 0.00439815875, 0.00229469151, -0.0031515928, 0.0055851927, -0.0030000566, 0.0132558122, -0.0149948709, 0.0160917044, 0.00977047905, -0.00505481567, 0.00803142, -0.015875224, 0.010304464, -0.00736033125, -0.00680830656, 0.0234664679, 0.0126280198, 0.00395798218, -0.00637895381, -3.27680186e-06, -0.00425744662, 0.013270244, -0.0120579544, -0.00914990157, 0.00151987234, 0.0148361186, 0.00138547411, 0.0274064094, 0.0176359303, -0.00978491083, 0.0149082793, -0.00260137208, -0.00430435082, 0.00622741738, 0.00118703383, 0.0058810492, -0.000679658, -0.0038028378, -0.00498987176, -0.00376314973, -0.0102395201, -0.0137248533, 0.00780772418, -0.00127001794, -0.0199161898, 0.0207388159, -0.0096333744, 0.0187616292, -0.015875224, -0.0111415209, 0.0223552026, 0.00419611065, -0.00473009516, 0.013804229, 0.00721601117, -0.00381005392, 0.00505481567, 0.0103477603, 0.00944575854, -0.0142660541, -0.00681913039, -0.0281280112, -0.00300546852, 0.0107157761, 0.0170875136, 0.0107302088, -0.00943132676, -0.00817574095, -0.00400127796, -0.0199017581, -0.00506203156, 0.00855097268, -0.0049465755, 0.00152889232, -0.00552024832, -0.00480225543, 0.0133712683, 0.00932308659, -0.00185631879, -0.0115816975, 0.00348172523, 0.0123465946, -0.0212295037, -0.0128445, 0.0273486823, -0.00154963834, -0.0142011102, 0.00554911233, 0.0205512, -0.0213449616, -0.0175493397, 0.0109466892, -0.00860870164, -0.0216624644, -0.00645833, -0.0288784765, -0.0185307171, -0.022802595, -0.0103549762, -0.00138908217, -0.00663873041, -0.0212872326, -0.0016659965, -0.00451722275, -0.0120363068, -0.0120579544, 0.0130609805, -0.000981377554, -0.019786302, 0.015875224, -0.00865199696, -0.0137681495, 0.00933751836, 0.0150525989, 0.0244189817, -0.0180833247, -0.00426105456, -0.00351780537, 0.00227484759, -0.0085581895, -0.0149660073, 0.0229036193, -0.0126929637, -0.00018705253, 0.00015300198, -0.00743970741, -0.000519552792, -0.0302783828, -0.0017426667, 0.00364588969, -0.000214676329, -0.0253714956, 0.00255627185, -0.0121228984, -0.00547334459, -0.0065629622, 0.0202625599, -0.0127506917, 0.0154134, -0.00408065412, 0.00660265, 0.0200027823, -0.01184869, 0.0151824877, -0.00710055511, -0.00852932502, 0.0142299738, -0.00139269012, -0.0146268541, 0.0126135871, 0.00590269687, -0.0259776395, 0.0149515746, -0.00340234931, 0.0115600498, 0.00570425671, -0.0107735042, -0.0143815102, -0.00259956787, 0.0105209444, 0.00243720785, 0.0643090904, 0.00514501566, -0.00685521029, -0.0310288481, -0.0054084, -0.00523160817, -0.0164958015, 0.0440176688, -0.019425502, -0.00471566338, -0.0118198264, 0.0280847158, 0.00661708228, 0.00579445669, -0.0207243841, 0.00222253148, 0.00237947959, 0.00902723, -0.0141722457, -0.00944575854, -0.00175078469, -0.00913547, -0.00176341273, -0.00964780711, -0.00296758465, 0.000553377846, -0.00623102533, -0.0117620984, -0.0155721521, 0.00943854265, -0.0248230789, 0.0212728, 0.00860870164, -0.000361477054, -0.00325622503, 0.00798812415, 0.00480586337, -0.0141217336, 0.0109827686, -0.0269157216, 0.0156731755, 0.012678531, 0.000962435501, -0.000780682196, 0.00876023713, -0.00170027255, -0.0047445274, -0.0141000859, 0.000215916574, -0.0124836992, 0.00305417669, 0.00580528099, -0.0185451489, -0.00773556391, -0.00609392114, 0.00842108484, 0.00566456886, -0.0164380725, -0.00330854114, 0.00772834802, -0.00500791147, 0.0119208507, 0.0241014771, 0.000269698416, -0.0142371897, -0.0118847704, -0.00261941203, 0.0135372365, 0.000324044, 0.00616247347, -0.0046976232, -0.0130609805, 0.00627792953, -0.0114301611, -0.00194651901, 0.0128372833, 0.00139178813, 0.0215470083, -0.00180490478, -0.00266992417, -0.00366212567, 0.0240293164, -0.0199306235, 0.00889734179, -0.000707169063, -0.0245921649, -0.0231489632, -0.00725930696, -0.0178812761, 0.0106796967, -0.000766250188, 0.00933030248, -0.00944575854, 0.00750465132, 0.00554550439, 0.00604340946, 0.0136959888, 0.0205800626, 0.0215325765, -0.00997974351, 0.0117476657, -0.00637534587, -0.00220449129, -0.020435743, -0.011256977, 0.0256601349, -0.00884683, 0.0104054883, 0.0320679545, 0.0126568833, -0.00793039612, -0.0069778827, 0.0129960356, 0.0205656309, 0.0107085602, 0.00743970741, -0.000942591461, -0.00233257562, 0.00564652868, -0.00372706982, -0.00296397647, 0.00621298561, 0.021027457, 0.00711498689, 0.0161494333, -0.0063861697, 0.0327606909, 0.00508728763, 0.0227160025, -0.00370181375, -0.0129816039, -0.00413838215, 0.000894785393, -0.0219078101, 0.0189925414, 0.0342038907, 0.0047337031, 0.0178812761, 0.00971275102, -0.0165679622, -0.01427327, 0.00537592825, 0.0244767088, 0.0106219687, 0.0212728, 0.0169576257, 0.0157309044, -0.0169720575, 0.0172606986, 0.00125378196, 0.0063031856, -0.0178091154, 0.00159654242, -0.0269012898, -0.00516666379, 0.0057980651, -0.0161638651, -0.0118847704, 0.0149082793, 0.00338611309, 0.00607948937, -0.00835614093, 0.0166834183, -0.00526768807, 0.0125053469, -0.0190069731, 0.0139124691, -0.0174338836, -0.024231365, 0.0130609805, 0.00886126142, 0.00329050096, -0.000418979645, 0.00812522881, -0.0094818389, -0.0276806187, -0.0137104206, -0.0137176374, 0.00323096896, -0.0159185212, 0.000402743608, 0.00330854114, 0.00452443911, 0.0510027669, 0.00665677, 0.00423219055, -0.0155865839, -0.0169143304, 0.00528212031, -0.00553107262, -0.0203780159, 0.0129166599, -0.00812522881, -0.00834892504, 0.0064799781, -0.0144753186, 0.0007878982, -0.0121950591, 0.00451000687, 0.012974388, 0.00591352116, 0.00493214373, -0.00582332071, -0.0157886315, -0.00086772535, 0.000333064, -0.000611556927, -0.00272043608, -0.00238308776, -0.00882518198, 0.00935916603]
|
05 Jul, 2023
|
How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?
05 Jul, 2023
Bootstrap is a framework that is suitable for mobile-friendly web development. it means the code and the template available on Bootstrap are applicable to various screen sizes. It is responsive for every screen size. Dropdowns are built on a third-party library, Popper, which provides dynamic positioning and viewport detection. Bootstrap 5 provides a simple and elegant solution to achieve this functionality by utilizing checkboxes within the dropdown menu. In this article, we will learn how to use a multiple-selection dropdown with checkboxes in Bootstrap 5, eliminating the need for the control key.
Approaches:
Below are the commonly used approaches to use the multiple selection dropdown with a checkbox without pressing the control key:
Approach 1: Using Bootstrap’s Custom Dropdown Plugin
In this approach, the dropdown item contains a checkbox. When a checkbox is checked or unchecked, we update the selected items array and the text displayed on the dropdown button. By listening to the ‘change’ event of each checkbox, we dynamically update the selected items and the button text.
Syntax:
const chBoxes = document.querySelectorAll( '.dropdown-menu input[type="checkbox"]');const dpBtn = document.getElementById('multiSelectDropdown');...chBoxes.forEach((checkbox) => { checkbox.addEventListener('change', handleCB);});
Example: This example describes the use of the multiple selection dropdown with a checkbox in Bootstrap 5 without pressing the control key by implementing Custom Dropdown Plugin.
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<link href=
"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
rel="stylesheet">
<script src=
"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js">
</script>
</head>
<body>
<div class="container">
<h1 class="text-success">
GeeksforGeeks
</h1>
<h2>
Multiple Selection Dropdown with Checkbox
</h2>
<div class="dropdown">
<button class="btn btn-success dropdown-toggle"
type="button"
id="multiSelectDropdown"
data-bs-toggle="dropdown"
aria-expanded="false">
Select
</button>
<ul class="dropdown-menu"
aria-labelledby="multiSelectDropdown">
<li>
<label>
<input type="checkbox"
value="Java">
Java
</label>
</li>
<li>
<label>
<input type="checkbox"
value="C++">
C++
</label>
</li>
<li>
<label>
<input type="checkbox"
value="Python">
Python
</label>
</li>
</ul>
</div>
</div>
<script>
const chBoxes =
document.querySelectorAll('.dropdown-menu input[type="checkbox"]');
const dpBtn =
document.getElementById('multiSelectDropdown');
let mySelectedListItems = [];
function handleCB() {
mySelectedListItems = [];
let mySelectedListItemsText = '';
chBoxes.forEach((checkbox) => {
if (checkbox.checked) {
mySelectedListItems.push(checkbox.value);
mySelectedListItemsText += checkbox.value + ', ';
}
});
dpBtn.innerText =
mySelectedListItems.length > 0
? mySelectedListItemsText.slice(0, -2) : 'Select';
}
chBoxes.forEach((checkbox) => {
checkbox.addEventListener('change', handleCB);
});
</script>
</body>
</html>
Output:
Approach 2: Using Custom JavaScript Event Handlers
In this approach, we have manually defined an event handler to handle the ‘change’ event of the dropdown menu. Whenever a checkbox is checked or unchecked, we update the selected items array accordingly. Additionally, we dynamically update the text displayed on the dropdown button based on the selected items.
Syntax:
const dropdownButton = document.getElementById('multiSelectDropdown');const dropdownMenu = document.querySelector('.dropdown-menu'); ...dropdownMenu.addEventListener('change', handleCB);
Example: This example describes the use of the multiple selection dropdown with a checkbox in Bootstrap 5 without pressing the control key by implementing Custom JavaScript Event Handlers.
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<link href=
"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
rel="stylesheet">
<script src=
"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js">
</script>
</head>
<body>
<div class="container">
<h1 class="text-success">
GeeksforGeeks
</h1>
<h2>
Multiple Selection Dropdown with Checkbox
</h2>
<div class="dropdown">
<button class="btn btn-success dropdown-toggle"
type="button"
id="multiSelectDropdown"
data-bs-toggle="dropdown"
aria-expanded="false">
Select
</button>
<ul class="dropdown-menu"
aria-labelledby="multiSelectDropdown">
<li>
<label>
<input type="checkbox"
value="Java">
Java
</label>
</li>
<li>
<label>
<input type="checkbox"
value="C++">
C++
</label>
</li>
<li>
<label>
<input type="checkbox"
value="Python">
Python
</label>
</li>
</ul>
</div>
</div>
<script>
const dropdownButton =
document.getElementById('multiSelectDropdown');
const dropdownMenu =
document.querySelector('.dropdown-menu');
let mySelectedItems = [];
function handleCB(event) {
const checkbox = event.target;
if (checkbox.checked) {
mySelectedItems.push(checkbox.value);
} else {
mySelectedItems =
mySelectedItems.filter((item) => item !== checkbox.value);
}
dropdownButton.innerText = mySelectedItems.length > 0
? mySelectedItems.join(', ') : 'Select Items';
}
dropdownMenu.addEventListener('change', handleCB);
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?
|
https://www.geeksforgeeks.org/how-to-create-multiple-selection-dropdown-with-checkbox-in-bootstrap-5?ref=asr10
|
CSS
|
How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0212823171, 0.00585886231, -0.0229813866, 0.0287523661, 0.0483356155, 0.0159361046, -0.000326356938, 0.0119301081, -0.0130579397, 0.00836352631, -0.00190779206, -0.0290892515, 0.0109633962, -0.062807, 0.00688782521, -0.00993077178, -0.0397230871, -0.0156578086, 0.00236734655, -0.0132044107, -0.0149767166, -0.00651432248, -0.0505326875, 0.0200080145, -0.0101211844, 0.0297483727, 0.011937432, 0.0252809916, -0.0194221288, 0.0158628691, 0.0168295819, 0.00222636759, -0.000268454896, -0.0406605043, -0.0333369263, 0.0013090896, -0.0169467591, -0.00582956802, -0.0552197769, -0.00159104727, 0.0161118712, -0.0060492754, 0.0275220051, -0.00871505775, -0.0114321047, 0.0148448925, -0.00106374966, -0.0312277358, -0.0226884447, -0.014793627, 0.0272876509, 0.038404841, 0.0196125414, 0.0209600795, 0.0123329051, 0.00647038082, -0.0262477025, -0.0111391619, -0.000389293942, 0.00369474501, 0.0281225387, -0.0465779565, -0.0103628626, -0.030934792, 0.0049800328, 0.00172836438, -0.0247244, 0.0030466083, -0.00489215, 0.00860520359, -0.0112636629, -0.00217144075, 0.0171225257, -0.0326338634, -0.0101358313, 0.0159068108, 0.0179574136, 0.0034439126, -0.0366764776, 0.0645060763, -0.00652164593, -0.0244900435, -0.0210479628, -0.0238162745, 0.0234061554, 0.0145665966, -0.0132703232, -0.0407776833, 0.00541944755, 0.020213075, 0.00343292719, -0.0242849849, 0.0131458221, -0.013702414, -0.0284154825, 0.0329268053, 0.0341864601, 0.0105239814, -0.0570653193, 0.0251491666, -0.00850267429, 0.0177962948, 0.00186934322, -0.00944009144, -0.0123548759, -0.013695091, 0.0352117606, 0.0133142648, -0.0152330417, -0.0236551557, 0.0137243848, -0.00937418, -0.0159361046, 0.0386391953, -0.0324288, 0.0162290484, -0.0435020514, -0.0528469384, 0.0122596696, -0.010179773, -2.9666211e-05, 0.0169907, -0.0205792543, 0.0464314818, -0.0647990182, 0.0239920411, -0.0145812435, -0.0328682177, 0.0381119, 0.000370298396, 0.0043831612, 0.000453832967, -0.0384634323, 0.00471272226, 0.0237723347, 0.0179720595, 0.0303196125, 0.0260572899, -0.0336005762, 0.00191511563, -0.0229520928, -0.0284008346, 0.011659136, 0.036500711, -0.00326448493, 0.028356893, -0.00774834538, 0.0582370907, -0.0240652766, -0.00495440047, -0.0194953643, -0.0179720595, 0.00759455, 0.0155259855, 0.0186458286, 0.000741969969, -0.0271851216, -0.000333451666, 0.0119301081, -0.00511918077, 0.00998936, 0.00467976648, 0.015599221, 0.000826648844, -0.0134753836, 0.00130451226, 0.00063852442, -0.00845873263, -0.0545753, 0.0376724862, -0.0369108319, 0.0018711742, -0.0169028174, 0.0361198857, -0.0293821953, 0.0090739131, 0.0354754105, 0.00411218917, 0.0349774063, -0.00593209825, -0.0360905901, 0.00325533026, -0.0030246377, 0.0159068108, 0.035534, -0.00281591574, 0.0151012177, -0.00207440346, -0.0316964462, -0.0267457068, -0.0220879111, -0.000449713465, 0.0420959257, 0.0167416986, 0.000963050465, 0.00583689148, -0.0849535, 0.045728419, -0.0234500971, 0.0112636629, -0.00175582781, -0.0194367748, -0.0398402624, 0.0379068404, 0.0388735496, 0.0256764647, -0.0224833842, -0.00504960679, 0.0377017781, 0.00641545421, 0.00310885883, 0.00147570099, -0.00451864768, 0.0074444171, -0.00887617655, 0.00424035173, -0.02116514, -0.00551099237, -0.0289867204, 0.018323591, 0.0105386283, 0.0455233604, -0.0130725866, 0.0208136085, -0.0715952963, -0.0139953569, 0.036647182, -0.00777763966, 0.00530227041, -0.00308322627, 0.0213702, -0.0124500822, -0.0435899347, 0.00663149962, 0.0159361046, 0.00346954493, 0.000185835786, 0.00616279058, -0.0293968413, 0.0522024632, 0.0243875142, 0.0120106675, -0.0339521058, -0.0233182721, 0.0301438458, 0.0265259985, 0.00886153, 0.00460653054, -0.0220439695, 0.0211944338, -0.00690979557, 0.0370866, 0.00305942469, -0.00243142783, 0.0171811134, -0.0254128147, -0.0201398395, -0.0254860502, 0.0238016285, -0.00594308367, 0.0243875142, 0.0103335688, -0.0253981687, 0.0502983332, 0.0270240027, -0.0173861738, 0.0456698313, -0.0206085481, -0.033102572, -0.0170346424, 0.041773688, -0.0360320024, 0.00300815958, 0.0269361194, 0.0050203125, -0.03661789, -0.00814381894, -0.0400746167, 0.0205499586, 0.0206378419, 0.044791, 0.032838922, 0.0440586433, 0.0309054982, -0.00161118712, -0.0155259855, -0.0233475659, 0.0152769834, -0.0319893882, 0.0327217467, -0.0281518325, -0.0142516829, 0.0103555387, 0.0211358462, 0.0504448041, 0.0393715538, -0.00531325582, 0.0599947497, -0.0132410284, 0.00444175, -0.00433189608, -0.00257973024, -0.0147643331, -0.00676332414, -0.00580027374, 0.0353875272, 0.00982091762, -0.00338349305, -0.0317550339, -0.046109248, 0.00118458876, -0.00485187024, -0.0556591935, -0.019392835, -0.0187923014, 0.0448202975, 0.0462264232, 0.0183528867, -0.00471638422, -0.0368229486, -0.0219267923, -0.000236414242, -0.0489215, 0.0227470323, 0.0263648797, -0.000372587034, -0.0357683562, -0.0337763429, 0.0121278446, -0.0186165348, -0.0155552793, -0.0304660834, 0.00991612487, 0.00128162617, 0.013028645, -0.0348309353, 0.027126532, -0.00114339357, -0.0183382388, 0.0102896271, -0.0249294583, 0.00636418909, -0.000773552922, -0.0274927113, 0.00615912909, -0.0370280109, 0.0094840331, 0.00128162617, 0.0174301155, 0.0222636759, 0.00146105373, 0.0228349157, 0.0132776471, -0.0302024353, 0.0349481143, 0.011534635, -0.00316378567, -0.00143816764, -0.0446738265, 0.0203302521, 0.0235086847, -0.00357573689, -0.0190705974, 0.0201984271, 0.0219121445, -0.00782890432, -0.00195905706, -0.0101431552, 0.0230399761, -0.0142370351, -0.0410999171, -0.00525100529, 0.00456625083, 0.0150426291, -0.0579148531, 0.00262733363, 0.00097403588, -0.015731046, -0.0406312086, 0.0113735162, -0.00542677101, 0.0715952963, -0.0433555804, 0.0283861887, -0.000350845163, -0.024006689, 0.0217803214, 0.0210919045, -0.0328975134, -0.00135852373, -0.0375846028, 0.0374967195, 0.00277014333, 0.00818776, -0.00512284273, -0.0324580967, -0.00911785476, 0.02198538, -0.00693909, -0.0153795136, 0.0260865837, 0.0159507524, 0.0119667258, -0.0102896271, -0.0241531599, -0.0348895267, -0.0247244, -0.00712584145, 0.0100918906, 0.0115419589, 0.00159104727, 0.0184261221, -0.0194514226, 0.0300266687, 0.0126551427, 0.0411878, -0.00677797152, 0.0517337546, 0.00768243335, -0.0300559644, 0.0425646342, -0.00343658892, -0.0148155978, 0.00562816951, 0.0135120014, -0.031462092, -0.0360320024, 0.0390786119, 0.00547437463, 0.00183547172, -0.0121278446, -0.0105972169, -0.0244753975, -0.0614008754, 0.00482623791, -0.0171225257, 0.0427404, 0.00350433192, -0.0270093549, -0.0254567564, -0.00197736593, 0.0260279961, -0.0188508891, -0.0187483598, -0.0467244275, 0.0181917679, -0.0487164408, -0.0102090677, -0.00976232905, -0.00301548326, -0.0296458434, -0.0377603658, -0.0397230871, -0.000432548812, 0.00495073851, -0.0623382963, 0.0167416986, 0.00559155177, 0.0276391823, -0.00988683, 0.0106704533, 0.0251784604, -0.0154527491, 0.00469075143, -0.0315499753, -0.00678895647, -0.0347723477, 0.0279907137, -0.0191584788, 0.00236368482, 0.0280639511, -0.0409827419, 0.0554248355, 0.0441172346, 0.0228788573, 0.0212823171, 0.00113790086, 0.0196857769, -0.0282543637, -0.0048994734, 0.0385513157, 0.00402064435, 0.0217363797, -0.000108079992, 0.00673769182, -0.0152476896, 0.0220879111, 0.0212090816, 0.0340399891, -0.0233622137, 0.0346258767, 0.0272876509, -0.0608735792, 0.0138122682, 0.0221904404, -0.0182796512, -0.0434727594, -0.0204767231, 0.00621771766, 0.0101211844, 0.000723203295, -0.00403163, -0.0569481403, 0.0567723773, 0.0199787207, -0.0485113785, -0.02198538, 0.0211211983, 0.00644474849, -0.0305539668, -0.0107949534, 0.0048958119, -0.00974768214, 0.00249917083, 0.00216961, 0.00736019574, -0.00478961971, 0.00826099608, 0.01058257, 0.00995274261, 0.0378482491, -0.00861252751, 0.0182796512, -0.00660220534, -0.00511185732, 0.0115785766, 0.00778496312, -0.0176791176, 0.00845873263, -0.0207696669, -0.032838922, 0.00889814738, -0.0149620697, 0.0110000139, 8.77112907e-05, -0.0125965541, 0.00782158133, 0.000920024468, 0.00541578606, 0.0137317088, -0.0393129662, 0.0176205281, -0.0231718011, 0.00156541471, -0.0244314559, 0.0109194545, -0.0143175945, -0.0287670139, -0.00171188638, 0.0121351685, 0.0154966908, 0.0232157409, 0.0134460889, 0.00167343754, -0.0160825774, -0.00731259258, -0.00825367216, -0.0536964722, -0.00934488513, -0.0247829873, -0.0120033445, 0.00486651761, 0.0289134849, 0.0065655876, 0.040279679, -0.0123914937, 0.0255592875, 0.0121644633, -0.0112416921, 0.00702331122, 0.012347552, -0.00109853665, 0.0193488933, -0.0230399761, 0.0226005614, 0.0380533114, 0.0389614329, -0.0107803065, 0.00146929279, -0.00971838739, -0.0227616802, -0.0135486191, -0.0105313053, -0.0211504921, 0.0181185324, 0.0147570092, -0.00738582807, 0.00776299275, -0.0350945853, 0.0289134849, 0.011937432, 0.0250466354, -0.00987950619, 0.00775566883, -0.000325212633, 0.011124515, -0.00165604404, -0.0263648797, 0.00273535633, -0.023596568, 0.0161265191, 0.013555943, 0.0313156173, 0.0139440922, 0.00707823783, -0.0330439843, -0.0256178752, -0.00519974, 0.00337983109, 0.0202423688, -0.0340106972, -0.018045295, 0.0325459801, -0.00239664083, -0.0161558129, -0.0113076046, -0.011527312, 0.00515213702, -0.0107949534, -0.0105972169, 0.018162474, -0.0346551687, 0.00306674815, 0.000535536616, 0.0043831612, -0.0303782, 0.0125745833, -0.00662051421, 0.00145281479, -0.0188215952, -0.0425060466, -0.0149767166, 0.028488718, -0.00640813075, 0.00386318727, 0.020755019, 0.015335572, 0.0120472852, -0.0196564831, 0.0432384051, -0.000468708982, 0.0049763713, -0.0238455702, 0.112490155, -0.0277270656, 0.0144640664, -0.00698303152, 0.0322530381, 0.0396645, -0.0440000556, -0.0160386357, -0.00721738581, 0.00850267429, 0.0105313053, -0.0259547606, -0.00583689148, 0.0066864267, -0.00120564399, -0.0104580689, -0.0104507459, -0.0364421234, -0.0211944338, 0.0221464988, -0.00395839382, -8.63953319e-05, -0.0287084244, 0.0370280109, 0.0296604913, 0.0128748501, 0.0204327814, 0.0241531599, -0.0098721832, -0.0223662071, -0.00824634824, -0.0102383615, -0.0463143066, 0.00426598405, 0.0298069622, -0.00122212211, 0.00267676776, -0.0224394426, 0.0153502189, 0.0298216082, 0.0190852433, -0.0262623504, -0.0117763132, -0.00922770798, 0.0038045987, -0.0204181354, 0.0289427806, -0.0264234692, -0.00340912561, 0.0401039124, -0.0133435586, 0.0178109407, -0.0184993576, -0.00823902525, -0.034596581, -0.00374967186, -0.000639897597, 0.0279614199, -0.0159946941, -0.0409827419, 0.0119667258, -0.0200958978, 0.015599221, -0.00944741536, 0.0315499753, -0.0390786119, -0.00823902525, 0.0252224021, 0.0173275843, 0.000341690669, 0.0290599577, -0.00283422461, -0.000637151301, 0.00531325582, -0.00346771418, -0.0305539668, -0.0073638577, -0.00124409283, 0.0158628691, 0.0131092044, 0.00232889783, -0.0140173277, -0.0108096013, 0.00756525574, 0.00218059542, -0.00831226073, -0.0063348948, 0.00776299275, 0.0146984207, -0.00136310095, -0.00593209825, -0.0509721, -0.0220146757, -0.000695739873, 0.0113368984, 0.0101285083, 0.00257423753, 0.0315499753, -0.00586618576, 0.000324983761, 0.0129334386, -0.00786552299, 0.0158042815, 0.0138122682, 0.022922799, 0.0284594242, -0.00444175, 0.00964515191, 0.0131384991, 0.0389321409, -0.00848802645, -0.0284740701, -0.013424118, -0.0197883081, 0.0198468957, 0.0114321047, 0.0370866, -0.00645939587, 0.00113423914, 0.00652164593, 4.32548804e-05, -0.00579661177, -0.00225932384, -0.0296897851, -0.00102896267, 0.0128382323, 0.00295140198, 0.0533156469, 0.00716245919, 0.0249441061, 0.0122303749, -0.0111171911, -0.0028067613, -0.00585153885, -0.0179867074, -0.0216777902, -0.0100992136, -0.0201398395, 0.0116078705, -0.00607856968, -0.0107363649, 0.0178988241, -0.00799734704, 0.0200958978, 0.0434141681, 0.0635100678, 0.0486871451, -0.0201544855, 0.0219560862, 0.00928629655, 0.0362956524, 0.0366764776, -0.0166245215, 0.00265479693, 0.00384121668, -0.00352447177, -0.0128675262, -0.000644017127, -0.0338056348, 0.00935220905, 0.0160239879, 0.0200373083, -0.0236844514, -0.0268921778, -0.0097916238, -0.00573436124, 0.00172470254, -0.00688416325, 0.0012678944, -0.0158628691, 0.00788017, 0.0199494269, 0.00825367216, 0.00598702487, 0.0244753975, -0.0101358313, 0.0482184365, 0.00654727872, -0.00237467024, 0.0142809767, -0.0186165348, 0.00400965894, 0.0327803344, -0.00785087515, -0.00869308691, 0.0135266483, -0.00444175, 0.024826929, -0.0228202678, -0.0244314559, 0.022644503, -0.0105386283, 0.0286058951, 0.0148961572, 0.0149986874, 0.0490093827, 0.030934792, 0.000308505725, 0.013695091, -0.0128162615, -0.0194367748, -0.00510453386, -0.0097110644, 0.00443442632, -0.00372587028, 0.0346551687, -0.00289647514, 0.0147789801, 0.0292064287, -0.0216484964, 0.0139953569, 0.0149547458, 0.0166977569, -0.0201984271, -0.00622870307, 0.0173422322, 0.0105605992, -0.00157090742, -0.0157017503, -0.0190705974, 0.0154088074, 0.0370866, 0.0179281179, -0.0196271893, -0.0260865837, -0.0113588693, -0.0317257382, 0.00714048836, -0.00777763966, -0.00335419877, 0.0262916442, 0.00898603, -0.0340692848, -0.0393715538, -0.0180013552, 0.000263648806, -0.0137829734, 0.0410999171, 0.00275366521, -0.0421545133, -0.00730893062, 0.025632523, 0.00274451077, -0.0353582352, -0.027668478, 0.0139440922, -0.00345672877, -0.0202863105, -0.0186897703, 0.0323409215, -0.049243737, 0.0236698035, 0.0195978936, 0.00503862137, -0.0105898939, -0.00971838739, 0.00950600393, 0.00974768214, 0.019114539, -0.0152476896, 0.022937445, 0.00139605708, -5.21804941e-05, 0.018323591, 0.0256618168, 0.00536818244, 0.0328975134, 0.00176040502, 0.015745692, 0.0117909601, -0.00579661177, 0.0352996439, 0.0227177385, -0.022776328, 0.00391445216, 0.0184993576, -0.00430626376, 0.0146251852, 0.00640446879, -0.00485919369, 0.0465486608, -0.0125672594, -0.012340229, -0.0254128147, 0.0032077271, -0.0197443664, -0.00177505217, -0.000516769942, 0.0146618029, 0.0252809916, 0.0201105457, -0.0239920411, -0.0128675262, 0.0022098897, 0.0211944338, -0.0459041856, -0.0270240027, 0.00380826043, 0.0317843296, -0.0272876509, -0.0202716626, -0.000325899222, -0.00488848845, -0.0317257382, 0.00202130759, -0.0103335688, 0.0280932449, 0.0242263954, 0.00806326, 0.00588815659, -0.0163755193, -0.0060492754, -0.0105752461, -0.0203888416, 0.0124574061, 0.0142370351, 0.014515331, -0.0164487567, -0.011124515, 0.000167183549, 0.0011763497, 0.062279705, -0.00129444234, 0.0261744671, 0.0120179914, 0.0202423688, 0.00203961646, 0.00530959386, 0.00352813373, 0.028620543, 0.00737850461, -0.0114687225, 0.015745692, 0.0136218546, -0.0258229356, -0.00144823757, 0.00680360384, 0.0132117346, 0.0088468818, -0.019392835, 0.0104360981, 0.0369987153, 0.00839282, 0.043824289, -0.042037338, 0.0088835, 0.0245046914, -0.0135705899, -0.0155113377, -0.0151744531, -0.00760187395, 0.00749934372, -0.0392836705, 0.0167270526, -0.00372220855, -0.0449081808, 0.00529494695, 0.0146032143, -0.0162436962, -0.0153062781, 0.0427696966, -0.00772637455, 0.0281811282, -0.00123036106, 0.00652164593, 0.00318758725, 0.00425133714, -0.0236698035, -0.0218096152, -0.0350359976, 0.00103262451, -0.00833423156, 0.0142663298, -0.0233329199, 0.00268226047, 0.0209014919, -0.00525466725, 0.0248562228, -0.0117616663, -0.00822437834, 0.000828479766, 0.0199640729, 0.01926101, -0.0154088074, -0.00373502471, 0.00696472265, 0.0136145316, 0.00446738256, 0.00444907369, -0.0182650033, 0.00747737288, 0.00201215292, 0.00771905109, -0.0232303888, -0.0408948585, 0.00652164593, -0.0127283782, 0.0279321261, -0.00329011725, -0.0091544725, -0.00678529497, -0.021296965, -0.00955726951, 0.00534987357, 0.014244359, 0.00922038499, -0.0118715195, 0.00137134, -0.00750666717, -0.00412683608, 0.013841562, 0.00688050129, -0.00133929926, -0.0113149276, -0.00927165, 0.0137610026, 0.00231974339, 0.00364164915, -0.0369108319, -0.00689881, 0.017225055, 0.0108608659, 0.0111684566, -0.00148851715, -0.00422936631, -0.0139221214, -0.00500200363, 0.00556225749, -0.0187630057, 0.00727597484, -0.00700866384, 0.0299241394, -0.0431212261, -0.013695091, 0.0131092044, -0.0305539668, -0.0127869667, 0.0297923144, -0.00671205902, 0.032838922, 0.0300852582, -0.045728419, -0.00694275182, 0.00158921641, 0.00422570435, -0.00809987728, -0.00863449834, 0.00356475147, 0.000618384627, 8.38206397e-05, 0.0132337054, -0.00383389299, -0.015057276, 0.0205646064, 0.084367618, 0.00818776, -0.0218242612, -0.0187044181, -0.0295579601, -0.0204913709, -0.030788321, 0.00367460516, 0.0193342455, -0.0172104072, 0.0435313471, -0.0133069409, 0.00162858062, 0.0181331784, -0.00310885883, 0.0021165139, 0.00237650098, 0.00895673595, 0.0288402494, -0.0467537194, -0.0140685933, 0.00645939587, 0.0132776471, -0.0119081372, 0.000307819137, -0.00120198226, -0.0125965541, -0.00441245548, -0.0366764776, -0.0002403049, 0.0293968413, 0.00336701493, 0.0311691482, -0.0108608659, 0.00255409768, 0.012611201, 0.00755060883, 0.00628362969, -0.0303782, -0.00927165, -0.00369291403, -0.00317110913, -0.0222636759, 0.0170785841, 0.00530227041, 0.00278295949, 0.0105239814, -0.0152769834, -0.0170492884, -0.0186165348, -0.00925700273, -0.0158482231, -0.014786304, 0.000101900718, -0.0281811282, 0.0309640877, -0.00741512282, -0.00800467096, 0.0192317162, -0.0149327749, -0.0123329051, 0.0321944468, 0.0265406463, -0.0291185454, 0.0154088074, 0.013299617, -0.0151891, 0.00581125915, -0.0151891, 0.0181478262, 0.0114247818, 0.00460286858, -0.00156724569, 0.00344025064, -0.00428063143, -0.0168295819, 0.00718809152, 0.00658023451, 0.0108755128, -0.0144713903, 0.0198761895, 0.0230106823, -0.0195539538, 0.0106777763, -0.0305832606, 0.00664980849, -0.00779228704, -0.0144054778, -0.0182503555, 0.00209637405, 0.0254714042, -0.00950600393, -0.00836352631, 0.00790214073, 0.00272803265, 0.00564281689, 0.0446738265, 0.030788321, -0.00244241324, -0.00100882282, 0.00692444295, 0.0325166844, 0.0158921648, -0.000436668342, 0.0139880339, -0.030934792, 0.0264088213, 0.00550733041, 0.0088468818, 0.0121937571, 0.0295579601, 0.00845140871, -0.0379654281, 0.00660952926, 0.00207257248, 0.0187044181, 0.00256325235, 0.0233915076, 0.0104580689, 0.00900067762, 0.00519607868, 0.0176205281, 0.00226298557, 0.00787284598, -0.0232303888, -0.026599234, 0.0126844365, 0.00930094346, -0.00318209454, 0.0193488933, 0.0155259855, -0.00853929203, 0.00221538241, 0.0133655295, -0.0097843, 0.00642643962, -0.0015663302, 0.0212676693, 0.0173861738, 0.0225419719, -0.0112343682, 0.0088468818, -0.0248855185, 0.0339521058, -0.00120747485, 0.00191145379, -0.0295140184, 0.0112783099, 0.00675233873, 0.00634954218, -0.00325533026, -0.0217363797, -0.00563183147, 0.00389248156, 0.0262623504, -0.0190559495, 0.0187776536, -0.00814381894, -0.00938882679, -0.0224247947, -0.00575267058, 0.0256618168, 0.00867111608, 0.0225273259, 0.00672304444, 0.00275366521, -0.0159946941, -0.0178695302, -0.00357939862, 0.00793143455, 0.00456258887, -0.0299534332, 0.0111098681, -0.0318429172, 0.0198908374, 0.00455526542, 0.0275952406, 0.0250173416, 0.00850267429, -0.0105459522, -0.00669008819, 0.00821705442, -0.00136950903, 0.00814381894, -0.0269800611, -0.013153146, 0.0108242482, -0.00990147702, -0.0171371717, 0.0226298552, 0.00651432248, 0.000794150459, 0.0171225257, 0.0140173277, 0.00737484312, 0.0122962873, -0.0149108041, -0.000887526083, 0.00875167549, 0.0312570296, -0.0221464988, 0.0152037479, -0.020213075, 0.0202716626, -0.00757990312, 0.000923228508, -0.00700866384, 0.00723569514, 0.0160972234, -0.0110659264, 0.00312899868, -0.00927165, 0.0255885813, -0.0352996439, 0.000384030107, 0.0154088074, 0.0204913709, 0.0167416986, 0.0154381022, 0.00900067762, 0.00880294, 0.0151305115, -0.00034260613, 0.0100113312, -0.00990880094, -0.0212090816, 0.0256764647, -0.00675233873, 0.00154252863, -0.000112371148, -0.00496538589, 0.0336005762, 0.00631658593, 0.0213409066, 0.021018669, 0.014918128, 0.015467396, -0.016683111, -0.0189094786, -0.01058257, 0.0122669926, 0.0285033658, 0.000695282186, 0.00654727872, -0.000852281402, -6.83724647e-05, -0.00192793191, -0.0127210552, -0.0241824538, 0.0238602161, -0.01709323, -0.0325166844, -0.00143908302, -0.0138195911, -0.00071313337, -0.000857316307, 0.0139587391, -0.00704528205, -0.00333588966, -0.0410120375, 0.0175472926, 0.0300559644, -0.0223808531, -0.0216045547, -0.034743052, 0.0176498219, -0.0194953643, 0.0233036242, 0.000295460603, -0.0113442224, -0.01166646, 0.0209014919, 0.0178402364, 0.0121424925, -0.0143102715, 0.00264747348, 0.0145006841, -0.00982091762, 0.00172561803, -0.00930094346, -0.0172543488, -0.00550000696, 0.0239041578, 0.0119520789, -0.0201544855, -0.00507890107, 0.0179134719, -0.00924967881, 0.0203449, 0.0111611327, 0.0259547606, 0.0309640877, 0.00174941961, 0.0252956375, 0.0127649959, 0.0483356155, -0.00432457263, 0.0146984207, 0.000209179692, 0.00832690764, 0.00412683608, 0.00134936918, -0.0326045677, 0.0211358462, 0.0218242612, 0.0224394426, 0.0293382537, -0.0206231959, 0.0322237425, 0.00186018879, -0.00916911941, -0.0542530641, 0.0113149276, -0.0241531599, -0.0107583357, -0.00665347045, 0.0245339852, 0.00217876444, 0.00629827706, -0.00660952926, -0.0208282564, -0.0169614069, -0.0255885813, -0.0066864267, 0.00893476512, -0.0139953569, -0.016551286, 0.00725766551, -0.0289427806, -0.0300852582, 0.00831958465, -0.0163315795, -0.0392250828, 0.0187190659, 0.0146105383, 0.0116884299, -0.0165659338, 0.00457723625, -0.000934671611, -0.00782158133, -0.0216338485, 0.0234208014, -0.00735287229, 0.00400965894, 0.0194221288, -0.00933023822, -0.00266028964, -0.0125745833, 0.000630743161, -0.0101285083, -0.0148375686, -0.016551286, -0.00339447823, 0.00336518395, 0.00542677101, 0.00492876768, 0.0138708567, 0.0352703519, -0.0119813737, 0.0250759311, 0.017767, 0.0195246581, -0.00438682316, -0.00404261518, -0.0072832983, -0.0274634175, -0.00540846214, -0.00213116105, 0.0188362431, 0.00749934372, -0.00554761, 0.0076091974, 0.00349151576, 0.000343521562, -0.00464314828, 0.0181331784, -0.00827564299, 0.00363066373, -0.0200373083, -0.00397670269, -0.009630505, -0.0053718444, 0.00751399109, -0.00385586382, -0.00886885263, 0.000327501242, -0.0232450366, 0.0150133343, 0.0100992136, 0.00771172764, 0.0285033658, 0.00829029, 0.0224394426, 0.00172012532, -0.0191438328, 0.0247976352, -0.0288695432, 0.0197736602, -0.00265296618, 0.00493242964, 0.00445639715, 0.0121058738, 0.00938150287, 0.000767602527, 0.0113222515, -0.0236405097, -0.007528638, -0.00882491097, -0.00862717442, -0.0316671506, 0.0183528867, -0.00350250117, -0.00139331073, -0.0147203915, -0.00285436446, 0.0250905771, -0.00176132051, 0.0365885943, -0.00117360335, 0.0224247947, 0.00271521648, -0.0176791176, -0.0151012177, 0.00259620836, -0.00875899941, 0.00349151576, 0.0162144, -0.00913250167, -0.0063751745, 0.00368925231, 0.0144567424, -0.00906658918, -0.0125745833, -0.018162474, -0.0171811134, -0.0101578021, 0.00916911941, -0.016141165, 0.00480792904, 0.0187483598, 0.00349517749, -0.00200666045, 0.00133289117, -0.0046101925, 0.0190266557, -0.00934488513, 0.0168002881, -0.0110000139, 0.00582956802, -0.0112050744, 0.00768975681, -0.00949135702, -0.00444907369, 0.00508622499, -0.0155552793, -0.00304843928, -0.00447836798, -0.0211211983, 0.00993809476, -0.0115712527, -0.0104873637, -0.0340985768, -0.0225126781, 0.00218425714, 0.00938882679, 0.0132190585, 0.0194660705, -0.0140246516, 0.0169467591, 9.54353745e-05, -0.00571605237, -0.0193781871, 0.0133508826, 0.0187630057, 0.00720640086, 0.00378628983, -0.0271997675, -0.00412683608, -0.0215899069, 0.0108681899, 0.00647038082, 0.0155113377, 0.00020814981, 0.0189094786, 0.0235526264, 0.0460506566, 0.00731625408, 0.027258357, 0.0205939, 0.0159654, 0.0214727297, -0.00809987728, -0.00752131455, 0.0155699262, -0.0109341014, 0.00588083314, -0.0179574136, 0.0207403731, -0.0102456855, -0.0305832606, 0.0141271818, 0.0121205216, 0.00211468316, -0.0119301081, 0.0129920272, 0.00853929203, 0.0122450218, 0.011659136, 0.0132044107, 0.00640813075, 0.0126624657, -0.0242849849, -0.0261451732, 0.0184700638, 0.0307297334, 0.0146837737, 0.0118641965, -0.00343109621, 0.0127064073, 0.00315096928, 0.00778496312, 0.0110732494, 0.0206085481, -0.0159654, 0.000686585438, 0.0036086929, -0.0190705974, 0.000786826888, -0.00432457263, 0.00451132376, 0.0106851, 0.00118458876, -0.0012743026, -0.00504960679, -0.031051971, -0.0121498154, 0.0068914867, 0.00652530789, 0.00703429664, 0.00283422461, -0.00746272597, 0.00809987728, -0.0171957612, -0.00695007527, -0.00127521798, -0.0074480786, 0.0212237295, -0.0177962948, -0.00701598777, 0.000304615067, 0.00657291105, -0.00536818244, -0.0154966908, 0.00612251088, -0.00418176316, 0.000124844111, 0.012889497, -0.000695739873, -0.0081291711, 0.01817712, 0.0087663224, -0.013695091, 0.0210040212, -0.0133801764, -0.00815846585, 0.00594674516, 0.00538649131, 0.00520340214, 0.00353179546, -0.00552930124, -0.0060895551, 0.0114687225, 0.0167709924, -0.0102017438, 0.024958754, 0.0195246581, -0.014383507, 0.0156138679, -0.0121644633, -0.0252516959, -0.0150133343, 0.00573436124, -0.00221538241, -0.0163901672, 0.0117543424, 0.0220732633, 0.0130652627, 0.0187630057, -0.0221464988, 0.00647038082, -0.00943276845, 0.00997471344, -0.00348968478, -0.000724118785, -0.0145739196, -0.0152037479, -0.0234500971, 0.0250466354, -0.00550000696, -0.00383389299, -0.0237137452, -0.0118056079, -0.00293858559, -0.0135046775, -0.00453695655, -0.0171225257, 0.00545606529, -0.00436851429, -0.0304074958, 0.00566478726, 0.00111135293, -0.022659149, -0.000779961061, -0.00870041084, 0.0256178752, -0.00787284598, 0.0129480856, 0.011534635, 0.00436119083, -0.00430626376, 0.0102237146, 0.0209747273, -0.00610054052, -0.00459554512, 0.0109780431, -0.00295872544, 0.0301438458, -0.0076091974, -0.0155845741, 0.00595773058, -0.0174301155, 0.0158775169, -0.017635176, 0.015335572, -0.0235379785, 0.00615546713, -0.0132117346, -0.019114539, -0.00164963596, 0.0190852433, 0.0178402364, -0.00757257966, -0.0125013478, -0.0103262449, -0.000848619558, -0.0122157279, -0.00996738952, 0.0016642831, -0.0159214586, -0.0190705974, 0.00850999728, 0.00474567851, -0.00730893062, -0.0106704533, 0.0123548759, -0.0295140184, 0.0142956236, -0.00467976648, -0.00122212211, 0.00521438755, 0.0164780505, -0.00245156768, 0.014105211, 0.0061701145, 0.0298362561, -0.0214727297, 0.0136291785, -0.00701598777, -0.0215166714, 0.00207440346, 0.0172397029, -0.0152330417, -0.0260719378, 0.0120253153, 0.00160935626, 0.0161118712, 0.0152623365, 0.00870773382, -0.0104068043, -0.0111098681, 0.00497270934, 0.00475300197, 0.0038045987, 0.00571239088, 0.00762384478, -0.0118275778, 0.0140466224, -0.00677430956, 0.00043643947, 0.00518875476, 0.000349700829, 0.00866379216, -0.015731046, 0.0063751745, 0.00993809476, -0.0418029837, -0.0194660705, 0.0124574061, 0.00638249796, 0.00609687855, 0.0140100047, -0.00010567694, -0.0179427657, 0.00160660991, -0.0132703232, 0.00619208487, -0.00761652086, 0.0104946867, 0.029308958, 0.00504960679, -0.0167856403, -0.00864182226, -0.0142077412, 0.00268958393, -0.0104873637, 0.00413415954, 0.0055732429, 0.0151158646, -0.00368009787, 0.00528762303, -0.0135046775, -0.00603096653, 0.01017245, -0.0162583422, -0.0208282564, 0.00318758725, 0.023054624, -0.022644503, 0.00378262787, -0.0159654, -0.0112709859, 0.0164926965, -0.00582590606, 0.018045295, -1.02272625e-05, -0.0135193244, 0.015057276, -0.00295140198, -0.00498735672, 0.0232303888, 0.016551286, 0.00857591, -0.00583323, 0.00987950619, 0.0188215952, 0.01207658, 0.015467396, -0.0114980172, -0.00870041084, 0.0140100047, 0.000359313039, -0.0191731267, 0.0149913635, -0.0156138679, 0.0127357021, -0.00365263456, -0.00988683, 0.00534987357, 0.0112343682, 0.0216484964, -0.00311252056, -0.0127283782, -0.00852464419, -0.00744075514, 0.00874435157, 0.00539015327, 0.000591836637, 0.0301731415, -0.012889497, -0.00384854013, 0.0187776536, -0.00982824154, 0.0160532836, -0.0079607293, 0.00833423156, 0.0103994804, -0.0171664674, -0.0154966908, 0.00285802619, 0.0284594242, 0.0133875, -0.0229960345, -0.0191584788, 0.00330476463, 0.0017906148, -0.0157896336, -1.58415287e-06, 0.0205060188, 0.016141165, -0.00634954218, -0.013299617, 0.0238455702, 0.00510819536, 0.000588174851, 0.0294993725, -0.00719541544, 0.034596581, 0.00592843629, 0.00567943463, 0.00688416325, 0.00791678764, -0.0284740701, -0.00880294, -0.00606758427, -0.0069317664, 0.00491045881, 6.44245956e-05, 0.0231132116, -0.00133289117, 0.0038448784, 0.00834155548, -0.00197919691, 0.0108315721, -0.000340317521, -0.00113607, -0.0319015048, 0.0162290484, -0.0158335753, 0.00344757433, -0.0237869807, 0.0220732633, -0.00777763966, 0.0133582065, -0.0104360981, -0.00390346698, -0.00190413021, -0.000668276509, 0.00889082346, 0.00741878431, -0.00673403, 0.00312350597, -0.0189534202, -0.0286644846, -0.0262769982, -0.0187337119, 0.0146691268, 0.0181917679, 0.00189497578, -0.00113607, 0.00240579527, 0.0154381022, 0.0340399891, 0.00129078061, -0.0143981539, -0.00893476512, -0.01627299, -0.00132190576, -0.0164487567, -0.00581125915, -0.0102017438, 0.00996738952, -0.00476032542, -0.0255153459, -0.00550000696, 0.00967444666, -0.00260719378, -0.0083708493, -0.0301438458, -0.00521438755, 0.0137463557, 0.00521072559, -0.0140978871, 0.01844077, 0.00695739919, 0.0116371652, 0.0130945574, -0.00044605165, -0.00433555804, -0.0201105457, 4.59440089e-05, 0.00708556175, -0.0140832402, 0.00516678439, 0.00663149962, 0.0237576868, -0.0146032143, -0.0165366381, -0.0081291711, -0.00974768214, -0.0161265191, 0.0297630206, -0.0104287751, 0.00776299275, -0.0179281179, -0.00206524902, -0.00610054052, -0.0207403731, 0.010853542, 0.0277270656, -0.00918376632, -0.00213848474, 0.0340985768, 0.00671938248, 0.00837817322, 0.0130506158, 0.0232303888, 0.0169321112, 0.00904461835, -0.00845873263, -0.000161462012, -0.0169614069, -0.00394374691, 0.00700866384, 0.00352630275, -0.0146910977, -0.0100113312, 0.0031051971, 0.0121571394, 0.0216777902, 0.0228642095, -0.00777031621, 0.0248415768, 0.0167563464, -0.015467396, -0.0114540756, -0.0097916238, -0.00859055668, -0.00190779206, -0.000485644763, -0.00291478401, -0.00786552299, -0.00257789949, -0.0140905641, -0.0191877745, -0.00137042452, 0.0154966908, 0.0269800611, 0.00218242616, 0.00921306107, 0.00850267429, -0.0206817836, 0.00309970439, -0.00326997763, 0.00504594529, -0.00273535633, -0.0242996309, 0.00233255955, 0.0089274412, 0.0174301155, -0.00991612487, -0.0230985638, -0.00515579898, 0.00139331073, -0.00495073851, -0.0174887031, -0.00530593237, 0.00106649601, 0.00373502471, -0.0156285148, -0.0178695302, 0.00631292397, 0.0102530094, -0.00162858062, -0.00483722333, -0.00619940879, -0.0225273259, 0.0142077412, 0.00391445216, -0.0125892302, 0.0013090896, 0.00829029, 0.002847041, 0.0278735366, 0.0199933667, 0.0104068043, -0.030788321, 0.00346954493, 0.00192976277, -0.0180306491, -0.0140832402, -0.00155259855, 0.00149767171, 0.0215166714, -0.0131384991, 0.0145446258, -0.0204913709, 0.00575267058, 0.00335602951, 0.0319893882, -0.0255446397, 0.00889082346, 0.00536452094, -0.0346551687, -0.00255592866, 0.0148595395, -0.0299973749, 0.010853542, 0.00431358721, 0.00571239088, 0.00432457263, 0.00149767171, 0.00361418561, 0.0306711439, -0.00623236457, -0.00368742156, -0.0137976203, 0.0156138679, 0.0106851, 8.43928e-06, 0.00381924585, 0.00598702487, 0.00220622774, 0.003661789, 0.00554394862, -0.0100918906, -0.0174301155, -0.00911785476, 0.0291185454, -0.00451864768, 0.00545606529, -0.00027440532, -0.000667361, -0.0187337119, -0.0122816404, -0.00807790644, -0.00563915493, 0.00718809152, -0.00305393199, 0.00837817322, 0.011673783, 0.00176223589, -0.00562816951, 0.0136365024, 0.011124515, 0.0209307857, -0.00100973831, 0.0124427592, 0.00156266848, -0.00982091762, 0.00265296618, -0.012750349, 0.00801931787, 0.00894208904, 0.00278295949, 0.000283102068, 0.0174594093, 0.00779228704, 0.0015260505, 0.0224247947, 0.0281518325, 0.0209014919, 0.00718076807, -0.018455416, -0.0159946941, -0.00828296691, 0.00367643614, 0.00236002286, -0.0291771349, -0.00263648806, 0.0263648797, -0.00864182226, 0.000476490299, -0.00371122314, -0.00659854384, 0.0167124048, -0.00024305124, -0.0391079076, -0.000151048793, 0.0176791176, -0.00265845866, -0.00121388305, -0.00331391906, -0.0315499753, 0.00913982559, -0.00354095, -0.015745692, -0.0260572899, -0.0163315795, -0.0257497, 0.0244900435, 0.0152476896, 0.0113588693, -0.0137683265, 0.0240945704, -0.011937432, 0.0299094915, 0.0372037739, -0.015731046, -0.000344208151, 0.0123329051, 0.0106851, 0.00260170107, -0.00597237796, -0.0233622137, -0.00772637455, 0.00377896614, 0.0163315795, 0.0172543488, 0.0195978936, 0.00707823783, -0.006851207, -0.00155809114, -0.0182357095, -0.0223076176, -0.00435020542, -0.00421105744, -0.0026859222, 0.00714415032, 0.0263941754, -0.0192903038, 0.0107510127, 0.005016651, -6.99172815e-05, 0.00313815312, 0.00578562636, 0.0168149341, -0.00949868094, 0.0124061406, 0.0224980321, 0.00166153675, 5.43260721e-05, -0.0124867, -0.00919109, 0.013702414, -0.0141198579, 0.00294774, 0.0218096152, -0.020213075, -0.0262769982, 0.0038045987, 0.00886885263, -0.0133508826, -0.0139074745, -0.0330439843, 0.0379068404, -0.00570140546, -0.0358269438, -0.007323578, 0.00259071565, 1.83804641e-05, 0.00606758427, -0.0050203125, 0.000460698822, 0.040308971, 0.00812184811, -0.0133289117, -0.0016642831, -0.00291844574, -0.00109762128, 0.00606026081, 0.0288402494, 0.0153648667, -0.00576731749, -0.00804861169, 0.0169174653, 0.0170199946, 0.00913250167, 0.0219560862, 0.0205939, -0.0121351685, 0.0117909601, 0.0200958978, 0.000903546403, -0.000992344809, -0.00567211118, 0.000286534982, -0.0067267064, 0.0126771135, 0.00652897, 0.0168735236, -0.00322786695, -0.0116078705, -0.00591745088, 0.00758722657, 8.94277546e-05, 0.00220256601, 0.0354168229, 0.0171225257, 0.00108205865, -2.34440322e-05, -0.0102603324, 0.00768243335, 0.0117836371, 0.026320938, -0.00472736964, 0.011534635, 0.00952797476, -0.0116005475, -0.0118788434, -0.00965247583, -0.00576731749, 0.00946938619, 0.000950234244, 0.00136493181, 0.000279440283, -0.00231425068, -0.00292027672, 0.00660952926, 0.0033102571, -0.0306711439, -0.00149126351, 0.00852464419, -0.00777763966, 0.00716978265, -0.00263465708, -0.0208282564, -0.024680458, -0.00355925877, 0.00381924585, -0.0144567424, 0.00788017, -0.0159361046, -0.0159507524, 0.0157749876, 0.001848288, 0.00698669348, -0.0104946867, -0.00463948678, -0.00273718731, 0.00745174056, -0.00913982559, -0.00883223489, -0.0249294583, 0.0222636759, 0.00327363936, 0.0109341014, 0.0178548824, -0.00905194227, 0.015745692, 0.0017219563, -0.00710387062, 0.0147130676, 0.000950234244, -0.00839282, -0.000812459446, -0.00319857267, 0.000322008564, 0.00814381894, 0.00759455, -0.00757257966, -0.0152037479, -0.000500291935, -0.0068072658, -0.0352703519, -0.0133582065, -0.00176498224, -0.00737484312, 0.0254714042, 0.0232596826, -0.0209454335, 0.000358855323, -0.0151305115, 0.00167343754, 0.0125013478, -0.00478595821, -0.0156138679, 0.0261744671, -0.00645207195, -0.00350982463, 0.00530959386, -0.011798284, -0.00242044241, 0.0071368264, 0.0127649959, 0.00775566883, 0.00464314828, 0.0160386357, 0.0137170609, 0.00754328538, 0.00238931738, 0.00783622824, -0.00173019525, 0.0214580838, -0.0275659468, 0.0149474228, -0.0220732633, -0.0121058738, -0.000719999254, 0.015745692, 0.00214031572, -0.00145281479, 0.00544141838, 0.00424767518, -0.00808523, 0.0116884299, 0.00658755843, -0.00188948307, 0.0142150642, -0.0126478188, -0.0229667407, -0.0136072077, 0.0140026808, -0.00327180838, -0.014647156, 0.0143029476, -0.0240945704, 0.0098721832, -0.0100772427, 0.00260902452, 0.011249016, 0.00251381821, 0.0184261221, 0.0164487567, -0.005968716, 0.00985753536, 0.0127430251, -0.0157749876, -0.0158921648, -0.0362663567, -0.0128968209, -0.0104946867, -0.00708922325, 0.0156871043, -0.00929362047, -0.00294224732, -0.00829761382, -0.0209600795, 0.00241678068, -0.0241678078, -0.00411951263, 0.0192756578, 0.0213555526, 0.00748103485, 0.0200373083, -0.00774102192, -0.027404828, 0.0183528867, -0.0121717863, 0.0190266557, -0.00806326, -0.0177377053, -0.00390346698, 0.00753596146, 0.000118321557, 0.00447104452, -0.00374601013, -0.00829761382, -0.0213702, -0.0052070641, -0.00886885263, -0.0194807164, 0.00581492065, -0.000671022804, -0.0124354353, 0.0139221214, 0.0074041374, 0.0168149341, 0.00380826043, 0.0114321047, 0.00469807535, -0.017225055, -0.0178548824, 0.00908856, -0.0151158646, -0.0301731415, 0.000399363867, -0.0129773803, -0.0244021621, 0.0273315925, 0.0295726079, 0.00428063143, -0.0202423688, 0.00764581515, 0.0212383755, 0.00731991604, -0.015467396, 0.00793875847, -0.00930826738, -0.00469441339, -0.0274634175, -0.00510453386, 0.0135925608, -0.00354095, 0.0089274412, 0.000980444, -0.0244021621, -0.0218535569, -0.000534163439, 0.0112343682, 0.00862717442, -0.00886153, -0.00891279429, -0.0205939, -0.00467610452, 0.00918376632, 0.0244900435, -0.000634404947, 0.00943276845, 0.0155699262, 0.0158775169, -0.00811452419, 0.0103994804, -0.00903729536, 0.0144347716, -0.0111684566, 0.0264088213, 0.0224980321, -0.00418542465, 0.0111611327, -0.0125965541, 0.00883955881, -0.0669082105, 0.0177377053, 0.00330842636, 0.0107803065, 0.0185286514, 0.00227214, 0.00734554883, 0.00248269294, 0.0302317291, 0.0122669926, 0.0055732429, 0.0177816469, 0.00441611744, -0.000239618312, -0.0173275843, 0.00964515191, 0.0136877671, -0.00178969931, -0.00415979233, -0.0163315795, 0.00560253719, 0.00969641749, -0.00111135293, -0.00519607868, 0.0135998838, 0.00635686563, 0.00136401632, 0.00446005911, -0.0115639297, -0.0153941605, -0.00371854659, -0.00103170902, -0.0109780431, -0.0175619405, -0.000310107745, 0.016404815, 0.00325166853, -0.00875899941, -0.019407481, 0.00357939862, 0.00232889783, 0.00454794196, 0.0141418288, -0.0127869667, 0.000679261866, 0.0141198579, -0.0136584723, -0.00129901967, -0.00467976648, -0.00950600393, -0.0163315795, -0.00524734333, -0.022644503, -0.017371526, 0.0190559495, -0.0149108041, -0.0192024205, -0.00365080358, 0.00968177, 0.00430626376, -0.00533156469, -0.00511185732, -0.017371526, -0.00290562958, 0.0249880478, 0.0176058803, -0.00600533374, -0.000141093304, 0.0101504792, 0.02306927, 0.00775566883, 0.00597237796, 0.0108901607, -0.00257606851, -0.00764581515, 0.0226152092, 0.00374967186, -0.0042989403, -3.59313053e-05, 0.0234500971, 0.0194367748, -0.0040133209, 0.0101138614, 0.00662051421, 0.0117543424, 0.000473286229, -0.018455416, 0.00362517103, 0.0183821805, 0.00259254663, 0.00246987655, -0.0171371717, -0.0204181354, 0.0115199881, -0.00134204561, 0.0121058738, -0.0124134645, -0.00346039049, 0.0152330417, 0.00757257966, 0.0291771349, -0.00835620239, 0.0088835, 0.00278295949, 0.00963782892, -0.0197736602, -0.0155845741, -0.0155113377, -0.0226005614, 0.0129700564, 0.0269214716, -5.08073208e-05, 0.0124500822, -0.00165055133, 0.0178109407, -0.000828022, 0.0136218546, 0.00796805229, -0.0150279822, 0.00542310951, -0.0032077271, -0.0250319894, -0.00447104452, -0.0134167951, 0.00911053084, 0.00246987655, 0.00730526913, -0.0012624017, -0.0108315721, -0.034596581, 0.00329194823, 0.0211504921, 0.0128382323, -0.0230985638, 0.00516312243, 0.000196477864, -0.00385220186, 0.0165073443, -0.00147295464, 0.0178695302, -0.000568492746, -0.00875167549, -0.00528029958, -0.00681825122, -0.0141564757, -0.00694275182, -0.0147130676, 0.00254677422, -0.030261023, -0.0033633532, -0.000678804121, -0.00867111608, -0.00142443588, 0.011388164, -0.0334248096, -0.0106997471, 0.00403529126, 0.00056483096, 0.0061298348, -0.00327363936, 0.00140704238, 0.00243325881, -0.00667910324, -0.0183968283, 0.0125452885, 0.00228861813, -0.00336701493, 0.00123768463, 0.016419461, -0.00544141838, 0.00379361329, 0.00748103485, -0.00140978873, 0.00297886529, -0.00120106677, -0.00224650744, 0.0203595459, -0.0173275843, 0.0234061554, 0.0155699262, 0.0211065523, 0.00910320692, 0.00263099535, 0.0108974837, -0.00398768811, -0.0169467591, -0.00544508034, 0.0211211983, -0.00510453386, 0.00496904738, 0.0138928276, 0.00952797476, -0.00665347045, -0.0125233177, -0.0161118712, 0.0102237146, -0.0114540756, -0.0249001645, -0.00922038499, 0.00869308691, -0.00132190576, -0.00236917753, 0.0060492754, -0.00162766513, -0.0166977569, -0.0143688601, -0.0126478188, 0.0242263954, -0.0107729826, -0.0122303749, 0.00647404278, 0.00830493774, -0.0119301081, 0.0070123258, 0.00982091762, -0.0107583357, -0.0288256034, -0.000466878089, -0.0105166575, 0.0126038771, 0.0126258479, 2.75706952e-06, 0.00634221826, -0.00757990312, 0.0142223882, -0.0173275843, 0.0033505368, 0.0384341367, 0.00831958465, -0.00476398738, 4.10520879e-05, 0.000928721216, 0.00784355216, -0.0179281179, 0.0020890506, 0.00161027163, 0.00356658245, 0.0105532762, 0.00087287894, 0.017371526, 0.0452304184, 0.0100479489, -0.000485187047, -0.00132831396, 0.00556591898, -0.00747737288, 0.00277746702, 0.00788017, 0.0193342455, -0.00875899941, -0.00250283279, -0.010721718, -0.0172543488, 0.00597237796, 0.0149986874, -0.0204181354, -0.0166684631, 0.0111831035, -0.00994541869, 0.0172543488, -0.0156138679, -0.0158482231, 0.0121937571, -0.00233255955, -0.00788749382, -0.0146178612, 0.00272803265, -0.00867844, 0.0101504792, 0.00791678764, 0.0062103942, -0.0139514161, 0.00297337258, -0.0282836575, -0.00179427653, 0.00363615644, -0.00333588966, 0.0262184087, -0.0185872409, -0.00257789949, -0.013438765, -0.000556134211, -0.00933023822, 0.00823902525, 0.00240945723, 0.00102804729, -0.0213555526, -0.000550641504, 0.00877364632, 0.00389614352, 0.00867111608, -0.0230985638, 0.0154527491, -0.00208172691, -0.0350652896, -0.0177816469, 0.019114539, -0.00070764072, -0.0103189209, -0.00669008819, 0.00808523, -0.0203741938, -0.00870041084, 0.00903729536, -0.00729062175, -0.0284154825, -0.000190069739, -0.0109121306, -0.0217363797, -0.0196711309, 0.00815114193, 0.00275000348, -0.0055329632, -0.0252516959, -0.00346222147, -0.00189863751, 0.00285436446, -0.0288841911, 0.0260572899, -0.00905194227, -0.0157163981, -0.00719175348, -0.0183968283, -0.0141198579, 0.0152330417, 0.00221904414, 0.0133655295, -0.00611152593, -0.00128711876, -0.00445273519, 0.0140319755, -0.00194807176, -0.00919109, 0.0170053486, -0.000172218512, 0.00490679732, 0.00113881635, -0.00807058252, -0.000946572458, -0.0159068108, 0.0125892302, 0.0133069409, -0.00742244627, -0.0202423688, 0.0139807099, -0.0147716561, -0.00396937924, 4.17958872e-05, 0.0278588906, -0.00175399694, 0.0194514226, 0.00842943788, 0.0185433, 0.0275805946, 0.01099269, -0.00254677422, -0.0195832476, -0.0323409215, 0.0235086847, -0.000133312, -0.002881828, 0.00540113868, -0.00988683, -0.0147057446, -0.00392909953, -0.00185194972, -0.00696838414, 0.0016926619, -0.021018669, -0.0110952202, 0.00208172691, 0.0196125414, -0.00120289763, 0.0689002201, -0.000621588668, -0.013841562, -0.0473103113, 0.0123914937, -0.0140759163, -0.0238162745, 0.0440586433, -0.0110732494, 0.011395487, 0.00826099608, 0.0128968209, -0.0021293303, 0.0184700638, -0.0116957538, 0.000567119569, 0.00525466725, -0.0073675192, -0.000783622847, 0.0119886966, 0.00636418909, -0.0106777763, 0.0121864332, -0.0110439556, -0.00446005911, 0.000464131735, -0.0146251852, -0.0167563464, -0.00959388725, 0.00902264751, -0.00878829323, 0.0130652627, 0.00701964926, -0.0116005475, -0.00976965297, -0.00404261518, -0.00114522444, 0.00452597113, 0.00591378892, -0.0287963077, 0.0202863105, 0.0174447633, 0.016141165, 0.0108096013, 0.00239480985, 0.0003602285, -0.0114394287, -0.0105605992, 0.0089274412, -0.0113515453, -0.00507523958, -0.00749202026, -0.0099600656, -0.0160679296, -0.00585153885, 0.00326082297, 0.00630926248, -0.0120253153, -0.00387783442, 0.00815114193, 0.00366545073, 0.00555127207, 0.00720640086, 0.0178695302, 0.0073675192, -0.0152037479, -0.0122230519, 0.000374189054, -0.0090080006, 0.00348236132, -0.00220805872, -0.0122596696, 0.013695091, -0.00762384478, -0.00860520359, -0.00205975631, 0.00874435157, 0.0181917679, 0.00166519848, -0.00694275182, -0.0105459522, 0.0197736602, -0.015745692, -0.0107876305, -0.00658023451, -0.00544508034, -0.0184847098, 0.00920573715, -0.0195539538, 0.0238016285, -0.00677797152, 0.0113368984, -0.0304074958, 0.0116225183, 0.000855027698, 0.00804861169, 0.00236185384, -0.00484454678, 0.0190266557, 0.00789481681, 0.0150279822, 0.00226847827, 0.000477863447, -0.0254860502, -0.024416808, 0.0228495635, 0.00976965297, 0.00875899941, 0.00949135702, 0.00826831907, -0.00325899222, 0.0180013552, 0.0125819072, 0.0242410433, 0.00141802779, 0.0108169243, -0.00729794521, 0.00116536429, 0.00640446879, -0.00190229935, 0.0100186542, 0.0125306416, -0.00325716124, 0.00961585809, 0.023743039, -0.00905926619, 0.035534, 0.00522537297, 0.0152916303, -0.0169907, 0.00816579, -3.11824224e-05, 0.022644503, -0.00911785476, 0.00890547, 0.0279467739, 0.0129554095, 0.00163681968, 0.00558422832, 0.000666445587, -0.0196418352, -0.00532424124, 0.0141711235, 0.0240652766, 0.0114467526, 0.00439048512, 0.00332124252, -0.0228935052, 0.0158482231, 0.00143633666, -0.00322786695, -0.00550366892, -0.0129554095, -0.0263355859, -0.000724118785, 0.00777763966, -0.00279394491, -0.013973387, 0.00466511911, -0.00766046252, 0.00855393894, -0.00757257966, 0.0288988389, 0.0031051971, 0.013702414, -0.0188362431, 0.0154820438, 0.00636785105, -0.00627630623, 0.00629095361, 0.0115566058, -0.00206524902, -0.0068914867, 0.0144347716, -0.00540113868, -0.00614082, -0.00158830092, -0.00203595473, 0.00645573391, -0.00578928832, 0.00674867723, 1.17363197e-05, 0.0159214586, 0.0531105883, 0.0185725931, -0.00277197431, 0.0112856338, -0.000628912239, -0.00169449288, -0.00734188687, -0.0196125414, -0.00426598405, -0.00805593561, -0.00404627668, -0.0134607358, -0.0214287881, 0.0150719229, -0.00780693395, 0.00583323, 0.0182942972, 0.0179134719, -0.00224284572, -0.0076091974, -0.0101358313, -0.0057783029, 0.0138488859, -0.00916911941, 0.00113332365, 0.00158189284, -0.0187630057, 0.00420739548]
|
25 Jul, 2024
|
How to design checkbox selection for webpage using jQuery EasyUI ?
25 Jul, 2024
EasyUI is a HTML5 framework for using user interface components based on jQuery, React, Angular and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers.
In this article, we will learn to design single and multiple select checkboxes using jQuery EasyUI plugin.
Downloads for EasyUI for jQuery:
https://www.jeasyui.com/download/index.phpNote: Please take care of proper file paths while implementing the following codes.
Example 1: The following code demonstrates single select and de-select of checkboxes for datagrids implemented for a webpage. It also provides multiple select and de-select of checkboxes in out UI component.
html
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0,
maximum-scale=1.0, user-scalable=no">
<!-- EasyUI specific stylesheets-->
<link rel="stylesheet" type="text/css"
href="themes/metro/easyui.css">
<link rel="stylesheet" type="text/css"
href="themes/mobile.css">
<link rel="stylesheet" type="text/css"
href="themes/icon.css">
<!--jQuery library -->
<script type="text/javascript" src="jquery.min.js">
</script>
<!--jQuery libraries of EasyUI -->
<script type="text/javascript" src="jquery.easyui.min.js">
</script>
</head>
<body>
<h2>jQuery EasyUI Datagrid checkbox</h2>
<p>Click the checkbox to select or de-select.</p>
<table id="tableID" class="easyui-datagrid"
title="Datagrid CheckBox Selection"
style="width:470px;height:400px"
data-options="rownumbers:false,singleSelect:true,
url:'datafile.json',method:'get',border:false">
<thead>
<tr>
<th data-options="field:'ck',checkbox:true"></th>
<th data-options="field:'studentid',width:80">
<b>Student ID</b>
</th>
<th data-options="field:'studentname',width:120">
<b>Student Name</b>
</th>
<th data-options="field:'age',
width:80,align:'center'">
<b>Age</b>
</th>
<th data-options="field:'marksscored',
width:100,align:'center'">
<b>Marks Scored</b>
</th>
<th data-options="field:'gender',
width:60,align:'center'">
<b>Gender</b>
</th>
</tr>
</thead>
</table>
<div style="margin:10px 0;">
<span>Selection Mode: </span>
<select onchange="$('#tableID')
.datagrid({singleSelect:(this.value==0)})">
<option value="0">Select Single Row</option>
<option value="1">Select Multiple Rows</option>
</select><br />
Check On Select: <input type="checkbox" checked
onchange="$('#tableID').datagrid(
{checkOnSelect:$(this).is(':checked')})">
<br />
Select On Check: <input type="checkbox" checked
onchange="$('#tableID').datagrid(
{selectOnCheck:$(this).is(':checked')})">
<br />
</div>
</body>
</html>
Output:
https://media.geeksforgeeks.org/wp-content/uploads/20240723150632/1-ezgifcom-gif-to-mp4-converter-(1).mp4Example 2:
html
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0,
maximum-scale=1.0, user-scalable=no">
<!-- EasyUI specific stylesheets-->
<link rel="stylesheet" type="text/css"
href="themes/metro/easyui.css">
<link rel="stylesheet" type="text/css"
href="themes/mobile.css">
<link rel="stylesheet" type="text/css"
href="themes/icon.css">
<!--jQuery library -->
<script type="text/javascript" src="jquery.min.js">
</script>
<!--jQuery libraries of EasyUI -->
<script type="text/javascript"
src="jquery.easyui.min.js">
</script>
</head>
<body>
<h2>jQuery EasyUI Datagrid selection</h2>
<p>
Click the buttons to get data after
single/multiple selection.
</p>
<div style="margin:20px 0;">
<a href="#" class="easyui-linkbutton"
onclick="getSelectedData()">
GetSelected
</a>
<a href="#" class="easyui-linkbutton"
onclick="getMultipleData()">
GetSelections
</a>
</div>
<table id="tableID" class="easyui-datagrid"
title="Datagrid CheckBox Selection"
style="width:470px;height:400px"
data-options="rownumbers:false,
singleSelect:true, url:'datafile.json',
method:'get', border:false">
<thead>
<tr>
<th data-options="field:'ck',checkbox:true"></th>
<th data-options="field:'studentid',width:80">
<b>Student ID</b>
</th>
<th data-options="field:'studentname',width:120">
<b>Student Name</b>
</th>
<th data-options="field:'age',
width:80,align:'center'">
<b>Age</b>
</th>
<th data-options="field:'marksscored',
width:100, align:'center'">
<b>Marks Scored</b>
</th>
<th data-options="field:'gender',
width:60,align:'center'">
<b>Gender</b>
</th>
</tr>
</thead>
</table>
<div style="margin:10px 0;">
<span>Single/Multiple Mode: </span>
<select onchange="$('#tableID').datagrid({
singleSelect:(this.value==0)})">
<option value="0">Single Row</option>
<option value="1">Multiple Rows</option>
</select><br />
</div>
<script>
function getSelectedData() {
var row = $('#tableID').datagrid('getSelected');
if (row) {
/* If row is selected, it displays data */
$.messager.alert('Details', row.studentid
+ ":" + row.studentid + ": "
+ ",Gender: " + row.gender + ",Name: "
+ row.studentid + ": " + row.studentname);
}
}
function getMultipleData() {
/* This array is used to push data */
var resultArray = [];
var rows = $('#tableID')
.datagrid('getSelections');
/* Traversing through multiple selection */
for (var i = 0; i < rows.length; i++) {
var row = rows[i];
/* Push multiple selection in
result array */
resultArray.push('<span>' + row.studentid
+ ":" + row.studentid + ": " +
", Gender:" + row.gender + ", Name: "
+ row.studentid + ": "
+ row.studentname + '</span>');
}
$.messager.alert('Details',
resultArray.join('<br/>'));
}
</script>
</body>
</html>
Output:
https://media.geeksforgeeks.org/wp-content/uploads/20240723150653/2-ezgifcom-gif-to-mp4-converter.mp4
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?
|
https://www.geeksforgeeks.org/how-to-design-checkbox-selection-for-webpage-using-jquery-easyui?ref=asr10
|
CSS
|
How to design checkbox selection for webpage using jQuery EasyUI ?
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0407668166, 0.00593883218, -0.0192594361, 0.0258058216, 0.0530697703, 0.0397339761, 0.0102524599, 0.0100322217, -0.0192442462, -0.00498193596, -0.0106397746, -0.0324129611, 0.0392783135, -0.0289650969, 0.0185455605, -0.025456477, -0.0332027823, -0.0301498268, -0.0167836566, -0.0181962177, 0.00948542356, 0.00496674702, -0.0147939194, 0.0113840271, -0.0153938783, 0.0324129611, 0.00989552215, 0.0143990098, -0.00934872404, -0.00393010955, 0.0136471633, 0.0129712606, 0.0317750312, -0.00543380342, -0.0370911211, -0.0232540984, 0.0254412889, -0.0117181819, -0.0374860317, 0.0140876388, 0.00889306, -0.00168406148, 0.0241502393, 0.00373455347, -0.00514141889, 0.0286157541, 0.000445934536, -0.0288132094, -0.00476549519, -0.0199733097, 0.0199125558, 0.0463259295, 0.0222516339, 0.0236641951, 0.0075450507, 0.0319572948, -0.0270361155, 0.0117409648, 0.00864244346, 0.0244540144, 0.0282664113, -0.0512471087, 0.0189556591, -0.0189708471, 0.0035352, 0.0272031929, -0.0193050019, 0.0172848869, -0.0101765152, 0.0200492553, -0.00999425, 0.00755264517, -0.0151584512, -0.0112777054, -0.0248489249, 0.0063413363, -0.0157356262, -0.0241654273, -0.0170114879, 0.0623349547, -0.0159786474, -0.0284182988, -0.0390960462, 0.00142205413, 0.00830829, 0.00655018259, -0.0193050019, -0.0533735454, 0.0204593521, 0.0192442462, 0.00161096524, -0.033293914, -0.0199125558, -0.000274110906, 0.00697926711, 0.0274462141, 0.0400681309, 0.0162824243, -0.0560467802, 0.0364228114, 0.0250311904, 0.014034478, -0.0121206855, -0.0623957105, -0.0146268429, 0.0076285894, 0.03800245, 0.0138066458, -0.00379720726, -0.024271749, 0.0332635343, -0.00372126326, 0.0181050841, 0.0153786894, -0.0394302, 0.00991071109, -0.0179683845, -0.0432577841, 0.0338407122, 0.00697167264, 0.0132978195, 0.00189385714, 0.00541481748, 0.0380328298, -0.0538899675, 0.028934719, 0.0171937551, 0.00717672193, 0.0542241186, 0.0150065636, 0.0272183828, 0.00668688212, -0.00228212168, 0.00723747723, 0.0372126326, 0.0456576198, 0.0465081967, 0.0121662524, -0.0500623807, 0.00489839725, -0.0384581164, -0.00596921, 0.00637551118, 0.0196543448, -0.036848098, 0.0395517126, 0.0161001589, 0.0454146, -0.0132446587, 0.015211612, -0.0307118129, -0.0241198614, 0.0260640308, -0.00249856245, 0.0427717417, -0.00830069557, -0.0246514697, 0.00385416532, 0.01374589, -0.00815640111, 0.0410402156, -0.0082323458, 0.0192138683, -0.0125231901, -0.0259880871, 0.0205049198, 0.0121966302, -0.000304013898, -0.0640361, 0.0428932533, -0.0388530232, 0.000128511732, 2.72330963e-05, 0.0474195257, -0.04905992, 0.0364228114, 0.0267627165, -0.0133585753, 0.0430451408, -0.0153407175, -0.00143154711, -0.00729823252, 0.0257906318, 0.0256843101, 0.0500927605, 0.00670207106, 0.044108361, -0.0181202739, -0.0252742115, -0.00220807595, -0.0263678078, 0.0295574609, 0.0540722311, 0.014026884, -0.0137686739, -0.0224490892, -0.0361494124, 0.028068956, -0.0317750312, 0.00713495258, 0.00736658229, -0.021628892, -0.015196424, 0.0232844744, 0.036817722, 0.0373645201, 0.0117637478, -0.0160090253, 0.0200948212, -0.0190619808, -0.0452323332, 0.0071007777, -0.006432469, 0.00712356111, -0.0167836566, 0.00414275331, -0.00381049747, -0.0390656702, -0.0322003178, -0.00622742, 0.0387922712, 0.039977, -0.0335673131, 0.0194113236, -0.0742429942, -0.0498801135, 0.033050891, -0.0264741294, 0.00893862639, 0.00821715686, 0.00666789617, -0.0127586164, -0.0158419497, -0.00384467235, 0.00626918906, -0.0101765152, 0.00784503, -0.0219630469, -0.0261703525, 0.0312586091, 0.0106549636, -0.00620843377, -0.0678636879, -0.00963731203, 0.0403719097, 0.0284334887, -0.00913608074, 0.0124700284, 0.0235730633, 0.0181810278, -0.0063451333, -0.00393390656, -0.0371518768, 0.0136167854, 0.0311067216, -0.0041769282, -0.000586668553, -0.0241654273, -0.00364342029, -0.00236376165, -0.00360924564, 0.0321091861, -0.0414655022, 0.0167229, 0.00928796921, -0.000104660525, 0.0424072109, -0.0370911211, 0.00504269125, -0.00732861, 0.0329293832, -0.0220238026, 0.0115738874, 0.0158419497, -0.00980438944, -0.00196505478, -0.0467815921, -0.00426046643, 0.0159027036, 0.0236186292, -0.0031402905, 0.0185151827, 0.0579301938, 0.0407060608, 0.0187430158, -0.0175279081, 0.01168021, -0.00534267072, -0.0274006482, -0.00948542356, -0.0322914496, -0.022844, 0.0161305368, 0.023375608, 0.0265196953, 0.036787346, 0.0171026215, 0.0305751134, -0.0244388264, 0.0138142398, -0.0116650211, -0.0324433409, -0.0267475285, -0.00468575396, -0.0316231437, 0.0301953927, 0.0439564735, 0.00783743616, -0.0329901353, -0.0348735526, 0.0151204793, 0.0255324226, -0.045323465, -0.0250008125, 0.0153027456, 0.0363924354, 0.0432274081, 0.0216440819, -0.0047882786, -0.0146724088, 0.0155837387, -0.0130168265, -0.0208390728, 0.0621830672, 0.0478448123, 0.0020182156, -0.0400681309, -0.00548316725, 0.0310155898, 0.000713875, -0.00660714088, -0.02102134, 0.00997146592, 0.0195480231, 0.0173912086, -0.0643398836, 0.0117789367, -0.00618185336, 0.00820196792, 0.0120675247, -0.0342356227, 0.00465157907, -0.0229958873, -0.0134041421, 0.0294815172, -0.0245147701, 0.00752986223, -0.0110270903, 0.0213706829, -0.00783743616, 0.00162140757, 0.00612109806, 0.0186670702, 0.00614388147, 0.018135462, 0.0127282385, -0.0176949855, -0.00115814828, -0.0431666523, 0.000740455405, 0.0200644433, 0.00281373062, -0.00536165666, 0.0255172327, 0.0222820118, -0.0194872674, -0.0124092735, -0.0107309083, 0.0236338191, 0.00704761688, -0.029238496, 0.00711596664, -0.0111561948, 0.0328078717, -0.0643398836, 0.014323066, 0.026884228, -0.00499332743, -0.0197606664, -0.0155837387, 0.00228971592, 0.0369392335, -0.0440476052, 0.0370303653, 0.0140876388, -0.00586668542, 0.0133509813, 0.00944745168, -0.0243780706, -0.00670586806, -0.011702993, 0.0482397228, -0.000817823515, 0.00730962399, 0.000846302602, -0.0265956391, 0.0280233901, 0.0153862843, 0.0380632058, -0.00962212309, 0.0352684632, 0.0113688391, 0.0193809457, -0.033293914, -0.0462347977, -0.023390796, -0.0321091861, -0.00303017139, 0.0237705186, 0.0256691221, 0.0170114879, 0.0127889942, -0.0188189596, 0.0483308546, 0.0190316029, 0.0498801135, 0.0141863665, 0.0746075287, 0.024864113, -0.0277803689, 0.00792856887, 0.0209909622, 0.00411997, 0.00599958748, -0.0119612031, -0.00391871808, -0.0439260937, -0.00264665345, 0.0174975321, -0.000200302689, 0.00334533956, 0.0295574609, -0.00858168863, -0.0137686739, 0.0244540144, -0.00733620441, 0.0493636951, 0.0125763509, -0.0161305368, -0.0342356227, 0.0146496259, 0.0142774992, 0.0120903077, -0.0474195257, -0.06604103, -0.00422249455, -0.0656764954, 0.0101081654, 0.00027672149, 0.000720520096, -0.0280233901, -0.0805008, -0.0351165719, -0.0326863602, 0.0158875156, -0.0284638666, -0.0116118602, 0.00940188486, 0.000177163456, -0.00212643598, -0.0218415372, 0.0446247794, 0.00418831967, 0.0206112415, -0.0229503214, -0.0276132915, 0.00229920913, 0.017254509, -0.00839182828, -0.00324471365, -0.00587807689, -0.0376986749, 0.0619096681, 0.0497282259, 0.0081488071, 0.018408861, 0.00615527295, -0.0117865317, 0.00283271656, 0.00263905898, 0.0404326618, 0.0028555, 0.0255020447, 0.0102068931, 0.00166792329, -0.0212187935, 0.0466297045, 0.00620463677, 0.0188341476, 0.00322572771, 0.0104271313, 0.0397339761, -0.0569581091, 0.0276588574, -0.00564644719, -0.00344026973, -0.0462651737, -0.0380935818, 0.0237401407, 0.00839942228, -0.00561607, 0.0336584449, -0.0645221472, 0.0191683024, 0.0128497491, -0.0247729812, 0.0085285278, 0.0177405532, 0.0112017617, -0.025714688, 0.00338331168, -0.0103435926, -0.0104119424, 0.000191521642, 0.0170266777, -0.00616286742, -0.0159027036, 0.0159786474, 0.000841556059, 0.00445412425, 0.0230262652, -0.00404402567, 0.0039490955, -0.014907836, 0.00743493205, 0.00703242794, 0.000205642515, -0.000286689145, -0.0158115719, 0.0005045539, -0.0300283153, -0.00022688313, -0.0117941257, 0.0450196899, -0.000613723649, -0.0124396514, -0.00827031769, 0.0141483946, 0.00838423334, -0.00674004294, -0.0442906246, 0.0222516339, -0.0509129539, 0.00849055592, -0.0134041421, 0.0199733097, -0.0101689212, -0.0182721615, 0.0182721615, 0.0493029393, 0.00501611084, 0.018393673, 0.0185303725, 0.00354469311, 0.00981957838, -0.0177557413, -0.0310763437, -0.0291321743, -0.00945504662, -0.0226313546, -0.00613249, -0.0202163309, 0.0584162362, 0.0200340655, 0.0219782367, -0.0212339833, 0.0224187113, 0.0447159149, -0.0120067699, -0.00240932801, -0.0084449891, -0.0110498732, -0.00347444462, -0.0115814824, 0.00888546463, 0.0086576324, 0.0523710847, 0.00125972356, 0.0122042242, -0.00452247402, 0.013738296, -0.0160394032, 0.0227528661, 0.00645904941, 0.0268082842, -0.00155875355, 0.017543098, -0.0113080833, -0.043834962, 0.0178924408, 0.00857409369, 0.0286916979, -0.0010024627, 0.017558286, 0.00763618387, 0.00420730561, -0.0201100092, 0.00448450167, 0.0140800448, -0.0602996536, 0.0084525831, 0.0191379245, 0.0472068824, 0.000499332731, -0.0034364725, -0.00943226274, -0.00594642665, -0.00420350861, -0.00839942228, 0.00674384, -0.0250463802, -0.000146073813, 0.0289499089, -0.00209605834, -0.0155685497, -0.0248337351, -0.0121738464, 0.000677801494, -0.01932019, -0.021340305, 0.00718811341, -0.0462955497, 0.017224133, 0.0120219579, 0.0327167399, 0.00136794394, -0.0173456427, -0.0167836566, 0.0172089431, -0.0101385433, 0.0104271313, 0.00669827359, 0.0177101754, -0.000965439947, 0.0190164149, 0.000260820671, -0.0125991339, 0.00758682, -0.00939429086, 0.0460221507, 0.0241198614, 0.0167684667, -0.0265500732, 0.0950820744, -0.0180595182, 0.00934113, -0.00020718512, 0.0183481053, 0.0198973659, -0.0372126326, -0.0121738464, 0.0232389085, 0.0391264223, 0.0132826315, -0.00396428443, -0.0105866138, 0.00339280465, -0.0114903497, 0.000770358427, -0.00394150103, -0.0337192, -0.0171937551, 0.0336888246, -0.0185911264, 0.00199353392, -0.0238008946, 0.0232844744, 0.0178924408, 0.0205504857, 0.0435311832, 0.0249096807, -0.00114485796, -0.0241958052, 0.00487561431, 0.010806852, -0.0506091788, -0.0118548814, 0.00800451264, 0.00397567591, -0.000216084823, -0.0409794599, 0.0269146059, 0.0371822529, -0.0130016375, -0.0237249509, -0.0179835744, -0.0216440819, 0.0250767563, 0.00940948, 0.0129332878, -0.0100777885, 0.017254509, 0.0400681309, 0.0270968713, -0.0149837798, -0.00460980972, -0.0169051662, 0.000930315815, -0.0181050841, -0.0150217516, 0.0227376781, -0.017224133, -0.00662612682, 0.0194720794, -0.0103284037, 0.0261855423, 0.00229920913, 0.0188949034, -0.0482701, 0.023952784, 0.0340533555, 0.010829635, 0.0145281153, 0.0489080288, 0.00674004294, -0.00296561886, -0.00483004749, -0.0210669059, -0.02983086, 0.00838423334, 0.018135462, 0.0345393978, 0.005988196, -0.0108600128, -0.0159634594, -0.0139509393, 0.016965922, -0.02866132, 0.00788300205, -0.00810324, 0.0217655916, 0.0412832387, 0.0109207686, -0.00492497766, -0.045323465, -0.00818677898, 0.00368139241, 0.010214488, -0.00209985557, -0.00488700578, 0.0348127969, -0.0125155952, -0.0289954748, 0.0328382477, 0.00205428922, -0.00495155854, 0.00103378971, 0.00617046189, 0.0119460141, -0.0292536858, 0.0202467088, 0.00255552051, 0.0289043412, -0.0180747062, -0.0278411247, 0.000870509772, -0.0219630469, 0.0161609147, 0.00689193141, 0.0244843923, -0.0100018438, 0.0290714186, -0.017239321, 0.0214618165, -0.0196391568, 0.0198518, -0.0206416193, -0.0105638308, 0.0154166613, -0.000930315815, 0.0203682203, 0.00720330235, 0.0483004786, 0.00642107753, -0.0122346021, -0.00107366033, -0.00220048171, -0.0304687917, -0.0315320082, -0.0232085306, 0.00896900333, -0.0100398157, 0.00595781812, -0.00854371674, -0.00174101954, -0.018727826, 0.0226313546, 0.0139585342, 0.0225554109, 0.0321699418, -0.0284334887, 0.00920443051, -0.0019441701, 0.0445336476, 0.00667549064, -0.0302865263, -0.00505028572, -0.001276811, 0.00198404072, -0.0208998285, -0.00722228829, -0.0153255286, 0.0111789787, 0.00611350359, 0.023375608, -0.00779186934, -0.0164343137, -0.00475790072, -0.00187392184, -0.00678940676, -0.0192290582, -0.0197910443, -0.0153559064, 0.00483764196, 0.0019441701, 0.00955377333, 0.0101157604, -0.0072450717, -0.00620843377, 0.030681435, -0.0144521706, 0.00116479339, -0.0109131737, -0.0294815172, -0.0298764277, 0.0287980195, 0.00125687558, 0.00309282541, -0.00502370531, -0.0124244625, 0.0168292224, -0.00650081877, -0.0270816833, 0.0359063931, -0.00545658683, -0.00878673792, -0.00654258812, 0.0194720794, 0.0579909496, 0.0263374299, 0.0101157604, 0.0140496669, 0.00175430975, -0.0210061502, -0.00943985768, 0.0168899782, -0.00187771895, 0.006428672, 0.0241806153, 0.00697546965, 0.0106853414, -0.00439336896, -0.016662145, 0.0082323458, -0.00795894675, 0.0270664934, -0.000994868344, 0.0112928944, 0.0145053323, -0.00147711369, 0.00847536698, -0.00386935426, -0.0194417015, 0.0160394032, 0.042984385, -0.00529330689, -0.00870319922, -0.0355722383, -0.0283727329, -0.0173608325, -0.0291473623, -0.00912848674, 0.00535026519, 0.0266412068, 0.00747670094, -0.0254716668, -0.0412832387, -0.00402883673, -0.00648183282, -0.0282360334, 0.0240439158, -0.00984995533, -0.0424375869, -0.0097892005, 0.0317446515, -0.00306054903, -0.0281904675, -0.0332027823, 0.0105942087, -0.00486422237, -0.0163279921, -0.0243325047, 0.00519457972, -0.0328382477, -0.00495155854, 0.017816497, -0.012568756, -0.00822475087, -0.0119308252, 0.0295726508, 0.00508066313, -0.00122554868, -0.000146548467, 0.0361797921, 0.0191834904, 0.00420730561, 0.000512148312, 0.0270664934, 0.0197910443, 0.0198973659, 0.0243325047, 0.0302713364, 0.0151432632, -0.0076285894, 0.0337495767, -0.0133585753, -0.0387011357, 0.00972844474, 0.0166317672, -0.00558569189, -0.00997146592, 0.0011685905, 0.0149989687, 0.0394605771, -0.00439336896, -0.0163431801, -0.0189556591, 0.00384277385, -0.0250615682, 0.0116422372, -0.0122497911, 0.0162672363, 0.0164039358, -0.0202163309, -0.0125839449, -0.0109435515, 0.0205049198, 0.00991071109, -0.0305143576, -0.00477308966, 0.00220238022, 0.0271120593, -0.0189556591, -0.00517939078, 0.00268082833, 0.00265804515, -0.0417085253, 0.00861206651, 0.0128345611, 0.00323901791, -0.0123485178, -0.00741214864, 0.00868801, -0.0177557413, 0.00307383924, -0.0189556591, -0.0299675595, -0.00120276539, 0.00708558876, 0.0154318502, -0.0244236365, -0.0129029108, -0.00858928263, 0.00814121217, 0.0421338119, -0.00908292, 0.0102828378, 0.0150749134, -0.0154622281, -0.0164495017, -0.0142395273, -0.00316117518, 0.0369696096, 0.00448829914, -0.0442906246, 0.00810324, 0.0196695346, -0.025456477, 0.00620463677, -0.0015397676, -0.00118852593, -0.00536165666, 0.000289537071, -0.012864938, 0.0370303653, 0.00757163158, 0.045293089, -0.042984385, -0.00472752331, -0.00718811341, 0.0129408827, 0.00745391799, -0.00480346708, -0.0124852173, -0.00876395404, -0.0152571788, 0.0258969534, -0.0237401407, -0.0254261009, 0.00543760089, 0.00344026973, -0.0147939194, -0.0101309493, 0.056137912, -0.00395289296, 0.0136699462, 0.0202922765, 0.0031402905, -0.000497908797, 0.00474650925, -0.0399162434, -0.00362823159, -0.00455285143, -0.00591225177, 0.0144521706, 0.0256539322, -0.0124244625, 0.0128421551, 0.0355418585, -0.0152647737, 0.0190467909, 0.00517179631, 0.003362427, -0.00943226274, 0.0113004893, 0.026565263, -0.00894622, -0.0199277438, 0.0222972017, -0.0101992991, 0.00225174404, 0.0220693685, -0.0197302885, 0.0248489249, 0.000738556846, 0.00735519035, -0.0306054913, -0.0444728918, -0.00997906085, -0.00370607432, 0.0366962105, -0.00988792814, 0.0248793028, 0.00211504451, -0.0271728151, 0.00306054903, -0.0088171158, 0.0119080422, 0.00517939078, -0.0177861191, 0.00416933373, -0.035359595, 0.0127965882, 0.0051490129, -0.0123333288, 0.00601857342, -0.00767415576, -0.0102676488, 0.0247881692, 0.00551354513, 0.00437438302, -0.0318965428, -0.0115738874, -0.00827791169, 0.0137838628, 0.0111486008, -0.00441994937, -0.00897659827, -0.000542051333, 0.0170874335, 0.0117333708, -0.0263526179, 0.0124168675, -0.000724317273, 0.0338407122, -0.0352684632, -0.00593503518, -0.00221187319, -0.0179683845, -0.00449969061, 0.0299523715, 0.00519457972, 0.0116042653, 0.0300586931, -0.0282664113, -0.00953858439, 0.00352570694, -0.0130851762, -0.00719570788, -0.0130699873, 0.0076247924, 0.0108448239, -0.00238844333, 0.021355493, -0.0171633773, -0.0288283974, -0.012295357, 0.0959934, 0.0203226525, -0.0047882786, -0.0243476927, -0.0350254402, -0.0291625522, -0.00938669685, 0.0068045957, 0.0104423203, -0.0217504036, 0.0269753598, 0.00519078225, 0.00594262965, -0.0119915809, -0.0023238908, -0.00336622423, 0.00265804515, 0.0136699462, 0.0147635415, -0.039187178, -0.0175734758, 0.0165862013, -0.0118093146, 0.0061932453, 0.00573378289, 0.0228288099, 0.00232578954, -0.0142395273, -0.0140724499, 0.0104575092, 0.0296941604, 0.0110270903, 0.00918924157, -0.00736658229, 0.00368898688, 0.0208086967, 0.0102600539, 0.0126143228, -0.00484523643, -0.0137003241, -0.0191683024, 0.00516040483, -0.0466904603, 0.0176190417, -0.00943226274, 0.0102752429, -0.0126522947, 0.00699445605, -0.018408861, 0.00802729651, -0.0253349673, -0.000173484907, -0.0231325869, -0.0018701246, -0.00801210757, 0.0236186292, -0.0187582038, -0.0111561948, 0.00893103145, -0.0304536019, -0.0101385433, 0.0140420729, 0.0105638308, -0.0200340655, 0.0185759384, -0.0107764741, -0.0167684667, 0.0216592699, -0.0150597245, -0.00140211883, 0.0183329172, -0.00319724856, -0.00401364826, 0.00549076172, 0.0112245446, 0.0137003241, 0.00247957627, -0.00100436131, 0.00525533501, 0.00457183737, 6.33659e-05, 0.0209453963, -0.0141635835, 0.00228591869, -0.0101157604, 0.0038883402, -0.0254716668, -0.0120143639, -0.00203910028, 0.0150141576, -0.0174975321, -0.0229503214, -0.0126447007, -0.00803489052, 0.0129484767, 0.00275107659, 0.0165558234, 0.0197454784, -0.00265804515, 0.0130699873, 0.014604059, 0.0337799564, 0.00579453819, -0.010244865, -0.00270930748, -0.00477688666, 0.0160394032, 0.00802729651, 0.00564265, 0.000175858164, 0.0183632951, -0.00315547921, -0.00175715773, 0.00551354513, -0.0176038537, 0.0241502393, -0.0119156362, -0.00813361816, 0.00799691863, 0.0150825074, 0.00450348807, 0.0191379245, 0.0108372299, 0.0139509393, -0.00378391705, -0.00207707239, 0.0110346843, 0.00389213744, -0.00541102048, 0.0113840271, 0.00242261821, -0.00575276883, -0.017133, -0.00187392184, -0.0143610379, -0.0169963, -0.0116498321, 0.0214466266, -0.00522116, 0.0240742937, -0.0327471159, -0.00456804037, -0.0183784831, 0.0127965882, 0.00184449344, 0.00229351316, -0.0112017617, 0.0152799617, -0.00356557756, -0.00977401156, -0.0101081654, -0.00837663934, 0.0107840691, 0.0114903497, 0.0154242562, -0.00834626146, 0.0198669881, -0.0076893447, -0.00786781311, -0.0153559064, -0.00570340548, 0.0266412068, 0.0280233901, 0.0253197774, -0.0247577913, 0.0132750366, 0.00244919863, -0.0224035233, 0.00128060812, 0.00395669, 0.00264665345, -0.00719570788, 0.0173304547, -0.00133851555, 0.00787540805, 0.00168406148, 0.040311154, 0.0105942087, -0.000529710436, 0.0107612852, 0.000350292365, -0.0211276617, -0.0175127201, 0.00574517483, -0.0131611209, -0.0167077128, 0.0101081654, -0.0203682203, -0.0214162488, 0.0175734758, -0.00713874958, 0.0281449, 0.00283841253, 0.0095006125, 0.0297549162, 0.00227073, 0.00556670595, 0.00625020312, -0.0189404693, 0.0250615682, -0.0139585342, 0.023102209, 0.00387884723, 0.0179987624, 0.00302447565, -0.0145433042, -0.011103034, -0.000315405545, 0.0195632111, -0.02336042, 0.011702993, 0.00076656125, 0.00242641545, -0.0147179756, -0.00277765724, -0.00474271178, -0.00719950488, -0.025714688, 0.0134573029, 0.00479967, 0.00896140933, 0.0164039358, -0.00340229785, 0.0165254455, 0.00160906662, -0.0147635415, -0.00248717074, -0.0226465445, -0.0145357093, 0.00928796921, -0.00796654075, 0.0102828378, 0.0282512214, 0.00940188486, 0.00833866745, 0.000595686899, 0.0032883815, -0.0156141166, -0.0287980195, 0.00931834709, 0.00198404072, 0.00670966506, -0.00292764674, 0.00688053947, 0.00760580599, -5.20336071e-05, 0.0236490071, -0.0147255696, -0.0113384612, 0.0188493375, 0.0127054555, -0.0050009219, 0.0103208097, -0.024256561, 0.00972085074, 0.0222972017, -0.0132902255, -0.0080728624, -0.00817918498, -0.0458095074, 0.0251982678, 0.0164039358, -0.0206568073, -0.0289043412, -0.0317142755, -0.0133661693, -0.000863864669, 0.0105562359, 0.0129332878, -0.015781194, -0.0333242901, 0.00339280465, -0.00797413569, -0.00907532498, -0.00641728053, 0.00868801, 0.0196695346, -0.0174063984, 0.0195024572, -0.0162064806, -0.0189100932, 0.00287258741, 0.0187733937, 0.00606793724, -0.0152723677, 0.0125991339, 0.0155837387, 0.00710837217, 0.0248033572, -0.00311750709, 0.0251527019, 0.0249096807, -0.00579453819, 0.00532368477, 0.00560467783, 0.0251527019, -0.00733620441, 0.00141540903, -0.00158628332, -0.00293903844, 0.0136243794, -0.0196999107, -0.0236034412, 0.0153635, -0.00595781812, -0.00105372502, 0.024271749, 0.000996767, 0.034205243, -0.0161153469, -0.0106777465, -0.0315016322, 0.0105638308, -0.0334458, -0.00389973191, -0.006432469, 0.022525033, -0.00139167649, 0.00373075623, 0.00656916853, -0.00953099, -0.0116498321, -0.0235882513, 0.00200872263, 0.0203834083, -0.00718051894, -0.00691091735, 0.00506167719, 0.00525533501, -0.0115738874, 0.00958415121, -0.000967338565, -0.0149989687, 0.00228402019, 0.00734000187, -0.00459082378, -0.0226161666, -0.0191986803, 0.00142300338, 0.0168747883, -0.00697926711, 0.0229503214, -0.00813361816, -0.0034364725, 0.0135180578, -0.00831588358, -0.0145053323, -0.0125383781, -0.0140420729, -0.0185303725, -0.0202922765, -0.000151532309, -0.00338900741, -0.000327983784, 0.0168596, 0.0208694506, 0.00772351958, 0.0164798796, -0.000726690574, 0.0251527019, 0.00168596, 0.0308788903, -0.00654258812, -0.00430603325, -0.0167684667, -0.0170874335, -0.0107460963, 0.00244919863, 0.0197606664, 0.00615527295, -0.0227073, 0.00505788, -0.00755264517, -0.000391112349, 0.00235806569, 0.0151736401, 0.0167380907, 0.0176342316, -0.0203834083, -0.0101689212, -0.011976392, -0.0124548404, -0.00139547372, -0.0166925229, -0.00589326583, 0.0073969597, 0.00147616433, 0.0115662934, -0.00351431547, -0.0169203561, 0.0206568073, 0.00270551024, 0.0339926, -0.0020182156, -0.0338103324, 0.0174823422, -0.024256561, 0.00267703109, -0.0121054966, -0.000125307837, 0.0191379245, 0.010806852, 0.00432122173, 0.00525153754, 0.0317750312, 0.0178013071, -0.00704002241, -0.0306358691, 0.00906773098, -0.0242413711, 0.00660714088, 0.0165558234, 0.017558286, -0.0209150184, -0.00809564628, 0.0197758563, 0.00244350289, 0.0431970321, 0.00549455918, 0.000891394389, 0.0145205203, -0.0184544269, -0.0139129674, -0.0187126379, 0.000960693462, -0.00875636, 0.0210517179, -0.00735519035, -0.024864113, 0.0220086128, -0.00259539112, -0.00985755, 0.00750707882, -0.00106416736, -0.00385226682, 0.00554392254, 0.0262007304, 0.0147407586, 0.0335976891, 0.0328686275, -0.0198062342, 0.014900241, 0.00756783411, 0.0150749134, -0.0115283215, 0.0080728624, 0.0174367763, -0.00307763647, 0.0103891594, 0.00415414479, 0.0198062342, 0.00298460503, -0.023102209, 0.0148091083, -0.00607173424, -0.00610590912, 0.0013375663, -0.0177253634, 0.000563410635, -0.00867282134, 0.00445412425, -0.0216592699, -0.0153027456, 0.0118776644, 0.0307725687, 0.00993349403, 0.0113536501, 0.00162425544, 0.00615527295, -0.00225743977, 0.0122421961, -0.0170874335, 0.00827791169, 0.000580023392, 0.0052287546, 0.00389593467, -0.0217504036, 0.00579833565, -0.00789059699, -0.00770453364, 0.000533507613, 0.0284942444, 6.92990361e-05, 0.0144825485, 0.0120219579, 0.0418604128, 0.00690332288, -0.00214542216, 0.00910570286, -0.00129864493, 0.0157204382, -0.00851333886, -0.0151432632, 0.00868801, -0.00412756437, -0.00677801482, -0.0232389085, 0.0215529483, -0.0133130085, -0.0255931765, 0.00554012554, 0.0148091083, -0.00211314578, -0.014907836, 0.00823994, -7.96226886e-05, -0.00451867655, 0.0100170327, 0.0138294287, 0.00154356472, 0.0180443283, -0.0279474463, -0.0357848816, 0.00967528392, 0.0298004821, -0.00467436202, -0.0147939194, -0.011710587, 0.0153179346, -0.00104043481, 0.0104347253, 0.0161912926, 0.0203985982, -0.015188829, 0.00815640111, -0.0126750777, -0.00581732159, -0.0125004062, 0.0134345191, -0.00495535554, 0.0225402229, 0.00254982477, -0.00196125754, -0.0219478589, -0.0184999947, -0.0233148523, -0.00299030077, -0.0123105459, 0.00236186292, 0.0135484356, 7.29775784e-05, -9.43368723e-05, -0.00759821199, -0.00331306341, -0.00138787925, -0.00950820744, -0.00247957627, -0.0113232723, 0.0014116118, -0.0133509813, 0.00145338115, 0.00796654075, -0.0239831619, 0.00202011433, 0.00374784367, 0.00126067281, 0.000748049817, -0.0101157604, -0.00973604, 0.0126598887, 0.00516420184, -0.0026998145, -0.00244730012, -0.0172848869, -0.0112017617, -0.0193809457, 0.00355988182, 0.0118169095, 0.0131155541, -0.0186518822, -0.00846017804, -0.00108505203, 0.0140648559, 0.00600718195, 0.024545148, 0.00993349403, -0.0103967534, 0.0196239669, -0.00932594109, -0.0191986803, -9.42182087e-05, 0.000354326912, 0.00873357709, -0.0192594361, -0.00902975909, 0.018727826, -0.00462120119, 0.031835787, -0.0182569735, 0.0157052502, 0.0151128853, -0.00141066255, -0.0136699462, 0.0071045747, -0.0166317672, -0.00364342029, -0.0159786474, 0.018986037, -0.000621792686, 0.00447311, -0.0216592699, -0.0243021268, -0.00794375781, -0.0102904318, -0.0025441288, -0.00188341481, -5.31609039e-05, -0.0018767697, -0.0323218293, -0.00618944783, 0.00105847151, -0.0304384138, 0.0107536912, -0.0103132147, 0.0149534019, 0.00221756916, 0.00798173, 0.000861966051, 0.00906013697, 0.0208086967, 0.0143838208, 0.0265500732, -0.00623501418, -0.00740835164, 0.0239375941, 0.000329882372, 0.00469334843, 0.00432122173, -0.0206568073, -0.000806906552, -0.00724127423, 1.06351472e-05, -0.00623501418, 0.0120751197, -0.0124396514, 0.00416553626, -0.00396808144, -0.00519837672, 0.000848201162, 0.00874876603, 0.00814121217, 0.00563505571, -0.0259273313, 0.00357127353, 0.00638310565, -0.00378961279, -0.0162368584, 0.0188797154, -0.00480346708, -0.00205808645, 0.0117485598, -0.0128877219, -0.00997906085, -0.00442754384, 0.0302865263, -0.0321395621, 0.0141787725, 0.00481106155, -0.00259728986, 0.0110119013, 0.0175127201, -7.68341197e-05, 0.00693749776, 0.0236490071, 0.00762099493, -0.0112473276, 0.014307877, 0.0167836566, -0.0118169095, -0.0184848048, 0.0152192069, -0.00616286742, -0.0314712524, 0.000768459809, -0.00887787063, 0.0158571377, 0.0258210097, 0.011399216, -0.0041161729, 0.00271690171, -0.00689193141, 0.00228212168, -0.0306054913, 0.0027605698, 0.0197910443, -0.0185759384, 0.0112549225, 0.00521356566, 0.017224133, 0.000565309252, -0.00475030625, -0.00563125825, -0.0211428497, -0.0198973659, 0.0207783189, -0.0384884924, 0.00667549064, 0.0133054145, -0.00265804515, -0.00016327991, 0.0187733937, -0.00509205507, -0.0136319743, -0.0030681435, 0.00156255078, 0.00419971114, 0.00467815949, -0.00608692318, -0.00303966436, 0.00027244963, -0.0241806153, -0.00813361816, -0.0124776233, 0.020170765, -0.0201403871, -0.0114903497, 0.00839942228, 0.0185303725, 0.0084525831, -0.00211504451, -0.00507306913, -0.00797413569, 0.0125080012, -0.00840701722, -0.0343875103, -0.0113308663, 0.0116650211, -0.017224133, 0.0220541805, -0.0177557413, -0.0184544269, 0.0224035233, -0.0194417015, 0.000737607537, -7.19392801e-06, 0.00609072065, 0.00322762621, 0.00751467329, -0.00738936523, 0.0241046716, 0.0121510634, 0.00774250552, -0.0125155952, -0.00842220616, 0.00869560428, 0.00924999733, 0.0210820958, 0.00390352914, -0.00814121217, 0.00712356111, -0.0190467909, -0.00839182828, 0.00926518627, -0.0226465445, 0.0075412537, -0.0141863665, -0.00985755, -0.00991071109, -0.00169925031, 0.0232085306, -0.00554012554, -0.00497054448, 0.0145205203, -0.0202618986, 0.00755264517, 0.00924240239, 0.00261058, 0.0151660461, -0.00678940676, 0.020747941, 0.00736278482, -0.00174386741, 0.00658056047, -0.0145053323, 0.00298650353, 0.0142243383, -0.00591604877, -0.0191986803, -0.0101917041, 0.0075450507, 0.0227073, -0.0183329172, -0.0252286457, 0.0155381719, 0.00304346159, -0.013145932, 0.0176038537, 0.0234363638, 0.0143610379, -0.0107005304, -0.0139357504, 0.0267779063, 0.00963731203, 0.00821715686, 0.0361494124, -0.00647044135, 0.0181050841, 0.0113460552, -0.0035219097, 0.0244084485, 0.0111486008, -0.0116422372, -0.00930315815, 0.00885508768, -0.00476169772, -0.00284220977, -0.0093335351, 0.0229047537, 0.0104726981, 0.00105657289, 0.00923480839, -0.00302637415, 0.00188531342, 0.0112321395, 0.00448829914, -0.0272487588, 0.0109131737, -0.00892343745, -0.0104575092, -0.027749991, 0.0340229757, -0.0183632951, 0.0178013071, 0.000427897787, -0.0189100932, 0.0144673595, -0.00928037427, 0.00155495643, -0.00813361816, -0.00812602323, -0.00294853142, -0.0194720794, -0.027749991, -0.0150673185, -0.0168747883, 0.00415414479, 0.0221453123, -0.00170399679, 0.00152268016, 0.00544899236, -0.00383517938, 0.0246362817, 0.0167077128, -0.0122270072, -0.0155989276, -0.0043250192, -0.00901457, -0.0100777885, -0.00880952086, -0.00674763741, 0.00453386549, -0.000596161524, -0.0255779885, -0.00374594494, 0.00623501418, 0.0041161729, 0.00985755, -0.0198518, -0.0183329172, 0.000455427537, 0.00585529348, -0.000952149741, 0.0125080012, 0.006428672, 0.0129408827, -0.0199733097, -0.00293903844, 0.00160906662, 0.000638880127, -0.00726785464, 0.0173152648, 0.000760390772, 0.00637930818, 0.00348014059, 0.0133433864, -0.0101917041, -0.01433066, -0.0031288988, -0.00951580144, 0.00470474, 0.032777492, -0.014034478, -0.0061970423, -0.00637551118, -0.0152647737, -0.0178468749, -0.0197454784, 0.028919531, 0.02452996, -0.00519078225, 0.00126826728, 0.0138294287, 0.00262766751, 0.00799691863, 0.0161912926, 0.0182265956, 0.00556290848, 0.00808045734, -0.00430223579, 0.0128725329, 0.0057565663, -0.00798173, 0.0114751607, 0.00210365281, -0.016950734, -0.00883989874, 0.00877914298, 0.0207783189, 0.018393673, 0.0192746241, -0.00457943184, 0.014026884, 0.020428976, -0.00802729651, -0.00828550663, 0.00123314303, -0.00756403711, 0.0034326755, 0.0161305368, 0.00848296098, 0.00197075051, 0.0155533608, -0.022206068, -0.0115890764, 0.0024567931, 0.00748429541, 0.00641728053, -0.00754884817, 0.0224642791, 0.00217200257, 0.00240742951, -0.00827031769, -0.0155381719, -0.0021776983, 0.000302352622, -0.000788395177, -0.00355038885, 0.00497813895, 0.00347824185, -0.0044769072, -0.0115966713, 0.00166507543, 0.00839182828, -0.00577555224, -0.00293714, 0.00630716141, -0.00601097895, 0.0121206855, -0.0188797154, -0.0163431801, 0.0013736398, -0.00395289296, 0.00479967, -0.0106245857, 0.00877154898, -0.00614008401, 0.016054593, 0.00796654075, -0.00705521135, -0.0196391568, -0.00412376691, 0.0104347253, -0.00317446538, 0.00592364324, 0.0145508982, -0.0257754438, -0.00591604877, 0.0159027036, -0.0223731454, 0.00465917354, -0.0137534849, 0.0176494196, 0.00323522068, -0.0307573788, 0.00937910192, -0.00808805134, -0.00760580599, 0.0161001589, 0.0122421961, -0.0279626343, 0.011687804, 0.0140572619, -0.0284790546, -0.00786021911, 0.00118852593, -0.0144749545, 0.00225933827, -0.00308523094, 0.00534267072, -0.0136851352, 0.0230110753, 0.00317446538, 0.0143534439, 0.00840701722, -0.00285170274, -0.0156293046, 0.0153331235, 0.00520597119, -0.00064979709, 0.00744252652, 0.0128421551, 0.00469714543, 0.0110726561, 0.0198821779, 0.00551354513, -0.00175525912, -0.0155153889, 0.0127206445, -0.00623881165, -0.0164950676, 0.00918164756, 0.000729063817, 0.00656916853, 0.00553632807, -0.00943226274, 0.0169051662, -0.00652360218, 0.00771972258, 0.0355418585, 0.00877914298, 0.0147103807, -0.011687804, 0.0125991339, 0.011983986, 0.017254509, -0.0121738464, 0.0189404693, -0.00119232305, -0.011399216, -0.00866522733, -0.00258969539, -0.00203910028, -0.00630336395, 0.00607553171, 0.00595022365, 0.00647423835, 0.0178620629, 0.0167988446, 0.0145357093, 0.0281904675, 0.00483764196, -0.00413136138, -0.0161001589, -0.00743872905, -0.0189556591, 0.0155077949, 0.00202201284, -0.0293448176, 0.0102600539, 0.0239072163, -0.00840701722, 0.00536545413, 0.000617995509, -0.00425666943, 0.00272449618, 0.0135560296, -0.0291777402, -0.0129560716, 0.0210820958, -0.00767035875, -0.0105030751, -0.011125817, -0.0186063163, 0.00240742951, 0.00440476043, -0.00629956694, -0.0213706829, -0.0203682203, -0.0148091083, 0.0189556591, 0.0122194132, 0.00810324, 0.0074804984, 0.0374556519, -0.00868041627, 0.0237097628, 0.022783244, 0.00623121718, 0.00997906085, 0.0177709293, -0.00225933827, -0.00675143441, 0.0118548814, -0.0183481053, 0.00377062685, 0.0101233544, 0.0129712606, -0.0084298, 0.0282816, 0.00683877, 0.00048983976, -0.0102068931, -0.0108524188, -0.00877154898, 0.00272069895, -0.0111941667, -0.00544899236, 0.00162710331, 0.0130472044, -0.036544323, 0.0101081654, 0.00843739416, -7.89107162e-06, 0.00709698, 0.0124396514, 0.00743872905, -0.0114827547, 0.00745771499, 0.0237857066, 0.00862725452, 0.010244865, -0.00164419075, -0.00200302689, 0.0251982678, -0.0146496259, -0.0019441701, 0.0175127201, -0.00549835619, -0.0133357923, 0.0263222419, -0.00232958677, 0.000307573791, -0.00801970158, -0.0151736401, 0.0132370647, 0.0174975321, -0.00851333886, 0.00593123771, 0.00599958748, 0.00342318229, 0.0152419899, -0.0228591878, -0.00631475588, 0.0243173148, -0.0010385362, -0.012295357, 0.00116004678, -0.00742733758, 0.0035200112, -0.0208390728, 0.0112777054, 0.0228743777, -0.0134724919, -0.0170418657, 0.0328686275, 0.00632994436, 0.0205808636, 0.0208542626, 0.0159634594, -0.0241502393, 0.0197151, -0.00554012554, 0.00643626647, -0.0188341476, -0.00378391705, 0.00937150791, 0.014885053, 0.014596465, 0.0036681022, 0.00996387191, 0.000640778744, -0.014619248, 0.00663751829, -0.000997716212, 0.00316876941, 0.00464018714, 0.0442906246, 0.00339280465, -0.0123333288, -2.45780175e-05, -0.0075450507, 0.0087411711, 0.0186063163, 0.028646132, -0.00907532498, 0.006432469, 0.0098727392, -0.000181909956, -0.0205808636, -0.00252514286, -0.00817159, 0.0113156773, 0.003362427, 0.00968287885, 0.00242831395, 0.005840105, -0.00295043015, 0.00168501073, 0.0121282805, -0.00885508768, -0.0256083664, 0.00306054903, -0.0157508161, 0.00105277577, 0.0182569735, -0.00205618772, -0.0098727392, -0.0013508565, 0.00667549064, -0.0315623879, 0.0120827137, -0.0230566431, -0.0123029519, 0.0119156362, 0.00645525241, 0.0119308252, -0.0130016375, 0.0103511875, -0.01168021, 0.00676662335, -0.00357127353, -0.0203834083, -0.00511863548, 0.0165406354, 0.0162672363, -0.00838423334, 0.0146572199, 0.000304488553, -0.00102524599, 0.00811842922, 0.00224414957, 0.00824753381, 0.00526292948, 0.0118245035, 0.000271263, -0.0153407175, -2.24420892e-05, 0.00840701722, 0.0135332467, -0.00815640111, -0.00769693917, -0.0167077128, -0.00034459657, -0.0123637067, -0.0278107468, 0.00487561431, 0.00312700029, 0.0153255286, -0.00670207106, -0.0117865317, 0.0116574261, 0.000337951438, -0.00776528893, 0.0124244625, 0.00795894675, -0.028327167, 0.00864244346, -0.00887787063, -0.00481106155, -0.00587048242, -0.00290486356, -0.011422, 0.00896140933, 0.00423388602, 0.0158723257, 0.00313649327, -0.00250995392, 0.0128117772, -0.00376303238, -0.0171937551, 0.00592744071, 0.011399216, 0.0252742115, -0.0153027456, 0.00943985768, -0.0199125558, -0.00984236132, 0.00601857342, 0.0106473695, -0.00118377933, -0.00414275331, -0.00594262965, -0.000313032273, -0.0248185471, 0.00837663934, 0.0045604459, 0.00194986595, 0.00729443505, 0.000378771423, -0.0145129263, -0.00452627102, 0.0166773349, 0.0125763509, -0.0156293046, 0.00937910192, -0.0213706829, 0.0113156773, 0.000179774026, 0.0118548814, 0.0159634594, 0.00272069895, 0.000185588506, -0.00846777204, -0.000636506884, 0.0382758491, 0.00516040483, -0.0103511875, -0.0239831619, -0.0211276617, -0.0109283626, -0.00371177, -0.0114827547, 0.0180898961, -0.00564644719, -0.0159482714, -0.00409338949, -0.0141408, 0.00871838816, -0.0140496669, -0.0148470802, 0.0331116468, 0.0343571305, -0.00393770402, 0.017558286, -0.0129788546, -0.00913608074, 0.019001225, 0.00611350359, 0.0104271313, -0.00818677898, 0.0153786894, 0.0114295939, 0.013449708, -0.00796654075, 0.00954617932, -0.00761719793, -0.000823994, -0.0113536501, -0.010806852, 0.00103663758, -0.0111410059, 0.0112093557, 0.00111448031, -0.00955377333, -0.0145812761, 0.0138825895, 0.00795135181, 0.00246248883, 0.0152495848, 0.00723367976, -0.0166925229, -0.0210365281, 0.00909051392, -0.0072488687, -0.0124016786, 0.00545658683, -0.00536165666, -0.00674763741, 0.0276436694, 0.0159482714, -0.00726405764, -0.0216440819, 0.00611350359, 0.0197151, -0.000355750846, -0.00258969539, 0.00826272275, -0.00244540139, -0.0174063984, -0.00902216416, 0.00627298653, 0.000719570788, -0.0183784831, -0.000179418043, 0.00755644264, -0.00745012052, -0.0119004473, -0.00263526198, 0.00478068413, -0.00183120323, -0.00274158362, 0.00585909095, -0.0256691221, 0.00161096524, -0.00916645862, 0.028919531, 0.015781194, -0.000922721345, -0.000135038179, -0.00136034947, -0.00618565083, 0.0125155952, -0.00433641067, -0.000568631804, -0.0125004062, 0.0346305296, 0.00658435747, 0.00185588503, 0.00147711369, -0.00475030625, 0.0181810278, -0.0540114753, 0.0100550046, 0.0125231901, -0.001899553, 0.00730202952, 0.0145281153, 0.00984236132, 0.00525913201, 0.0457791314, 0.0128421551, 0.00808045734, 0.00756403711, -0.00116004678, 0.00880952086, -0.0295878388, -0.00135560299, 0.0262766741, 0.00124738261, -0.0146420309, -0.00718051894, 0.0173912086, 0.00161950896, -0.0216744598, -0.00888546463, -0.00582871307, 0.0094170738, 0.00259728986, -0.00735898782, -0.0212339833, -0.00253273733, 0.00319345132, 9.04061653e-06, 0.00952339545, -0.0115738874, -0.0162520465, 0.0124016786, 0.0161153469, -0.00515660737, -0.0142547162, -0.00909810886, -0.00125687558, -0.00246438757, 0.00726026, -0.0134648969, -0.0176494196, 0.00966009498, -0.00265234918, -0.0187733937, -0.00457563484, -0.0117561538, -0.0112701114, -0.00330736744, -0.0288587753, -0.0117789367, 0.0276588574, -0.00236566016, -0.0279322565, -0.00353140268, 0.0140572619, 0.0180747062, -0.00351811247, -0.0150141576, -0.00649702176, 0.00342128379, 0.0229351316, 0.0202922765, -0.0162824243, -0.0018701246, -0.0142926881, 0.0100626, 0.00311181135, 0.00213782769, -0.00670207106, -0.00632614736, -0.00486422237, 0.017254509, 0.00610590912, 0.00316497218, 0.00884749275, 0.0266867727, 0.00762099493, -0.0029959965, 0.0275069699, 0.0167684667, 0.0145584932, 0.00078127539, -0.0267475285, 0.00107935618, 0.00364721753, 0.0114371888, -0.0196087789, 0.00286309421, -0.0184544269, -0.00952339545, -0.015492606, -0.00540342601, -0.00495915255, -0.00569581101, 0.00120656262, 0.00310611562, 0.00870319922, -0.00674384, 0.023967972, 0.00799691863, 0.0285398103, -0.0269905496, 0.00418452267, -0.0235730633, -0.0119232312, -0.00173627306, 0.0125155952, 0.00699445605, 0.00373075623, -0.0179835744, 0.0214010607, -0.00188626267, 0.018393673, 0.00249096798, 0.00243021268, 0.00137079181, 0.00560467783, -0.0278107468, 0.0168596, -0.0155685497, 0.0188797154, 0.014611654, 0.0104575092, -0.00630336395, -0.0193809457, -0.0166925229, -0.00346685015, 0.0142243383, 0.000351004361, -0.0138294287, 0.00264095771, 0.00146382337, 0.00236186292, 0.000527337135, -0.00782224722, 0.00902975909, 0.00513382442, 0.000244445226, -0.00855131075, 0.0106929354, -0.00862725452, 0.0042149, -0.0132294698, -0.0103587816, -0.0219934247, -0.0141787725, 0.017254509, -0.00316687091, 0.00273778639, 0.00526672648, -0.0105030751, -0.0258361977, 0.00792097487, 0.00354089588, 0.00192613341, 0.000231629645, 0.0247426033, 0.00670966506, 0.00364911626, -0.0115586994, 0.020428976, -0.0011173283, 0.00513762143, -0.0129484767, 0.00473132031, -0.0100701936, -0.00661853235, -0.00539962901, -0.00336812297, 0.00445032679, -0.00139452436, -0.0154546341, 0.00332825212, -0.01433066, 0.0286157541, 0.00897659827, 0.0167532787, -0.00446931319, 0.00947023463, -0.00288208039, 0.0107536912, -0.0157356262, 0.00694888923, 0.0237097628, -0.00598060153, 0.0125991339, 0.0227528661, 0.0129940435, -0.00770833064, -0.0077766804, -0.000608027796, 0.00697167264, 0.0021757998, -0.0214010607, 0.00609072065, 0.0103967534, -0.00918924157, -0.0105410479, 0.0220845584, -0.0134573029, -0.0194720794, -0.00718811341, -0.0125991339, 0.0150673185, 0.00261817453, -0.0112777054, 0.00960693415, -0.00240932801, -0.003214336, 0.00860447157, 0.0155229839, -0.00581352459, -0.0131611209, -0.0167380907, -0.000936011609, 0.00852093287, 0.0228895657, 0.00913608074, 0.00691851182, -0.00342508103, 0.0173456427, -0.00525533501, 0.00611730106, 0.00745771499, -0.0106397746, 0.00492118066, 0.00973604, 0.0287828315, 0.0198518, -0.0250767563, 0.006572966, 0.0119536081, -0.000974933, 0.00316117518, -0.0127434274, 0.0088171158, 0.0520976856, 0.0112625165, 0.00759821199, -0.00108410267, 0.0169051662, 0.00338900741, 0.0283575449, 0.00486042537, 0.0187430158, 0.00587807689, 0.0128269661, 0.00378961279, -0.0142319333, 0.0177101754, 0.0239224061, -0.0273550805, -0.0173608325, 0.00231819507, -0.00385226682, 0.0122194132, -0.0182721615, -0.00557050295, 0.00173152657, -0.00880192686, 0.00141256116, -0.0199125558, -0.00263716048, 0.00253273733, 0.0133206034, 0.00465157907, 0.00450728508, -0.00271120598, -0.00438577449, -0.00354659162, 0.0120371468, 0.0161457248, -0.00653119665, 0.0311067216, -0.0152343959, -0.00453766249, -0.0106929354, -0.00483004749, -0.0134345191, 0.00606793724, -0.00731721846, 0.00568441954, -0.0169811118, -0.0181202739, 0.0236338191, 0.0051452159, 0.00975122862, -0.0188797154, 0.00634893076, 0.00904494803, -0.0271728151, -0.0150217516, 0.0208086967, -0.00670586806, 0.000954523, -0.0101309493, 0.00889306, -0.0457183756, 0.00143344572, -0.0164950676, 0.00924240239, -0.0186215043, -0.0210669059, -0.0119536081, -0.00308902818, -0.018408861, 0.00649702176, 0.00656537153, -0.016388746, -0.0111486008, -0.00939429086, 0.00450348807, -0.00386935426, -0.0357848816, 0.0164798796, -0.00474650925, 0.00185493578, 0.00163279916, -0.0188189596, -0.00700584752, -0.00329407724, 0.000525438576, 0.0171633773, -0.00344406697, 0.0057603633, -0.00890824851, 0.00744632352, 0.00400985079, -0.0107233133, 0.0193353798, -0.00289726909, -0.00367189944, -0.00200492539, 0.011118223, -0.000648373156, -0.0347520411, -0.0100853825, 0.0279626343, 0.00123978814, -0.0183481053, 0.0110726561, -0.0148470802, 0.00851333886, -0.0121586574, 0.02452996, 0.00585149648, 0.00639449712, 0.0164191239, -0.000996767, 0.0160242151, -0.00465537608, 0.00875636, -0.0223123897, -0.0186518822, 0.0246666577, -0.00108030543, -0.0139433453, 0.00166412606, -0.0199885, -0.0145812761, 0.00632994436, -0.00197834498, 0.00314598624, 0.00491358619, -0.0177557413, -0.0119536081, 0.00786781311, 0.0201403871, 0.0130851762, 0.0767339617, 0.00894622, -0.00581352459, -0.0485131219, 0.00895381439, -0.0209150184, -0.00986514427, 0.0411009714, -0.00982717238, 0.0358152576, 0.00836904533, 0.00536545413, -0.00722608529, -0.00238654483, 0.0049971249, 0.0051452159, 0.0124776233, -0.0132826315, -0.0129940435, -0.000685870589, -0.00553253107, -0.00694129476, 0.0234971195, -0.003362427, -0.00670207106, 0.00127586164, -0.0216592699, -0.000288825075, 0.00439716596, 0.0141332056, -0.0121434685, -0.00534267072, 0.0208998285, -0.00410857843, -0.0224946551, 0.0110878451, 0.014619248, 0.00423008902, 0.000971135742, -0.0137610789, 0.0407971963, 0.00907532498, 0.0135788135, 0.000250615674, 0.0124852173, -0.00189575576, -0.00147806294, -0.0160242151, 0.0113004893, -0.0200796314, 0.012561162, -0.0179380067, -0.00119042443, -0.0027757585, -0.0045604459, 0.0139281563, 0.00994108897, -0.017816497, 0.000980628771, 0.00412376691, 0.0121358745, -0.00528951, -0.0166013911, 0.029527083, 0.0223579574, -0.0237553287, -0.00842220616, 0.0081488071, -0.0256387442, -8.66831251e-05, 0.00159292843, -0.0196847226, 0.00543380342, -0.0145357093, -0.0162976142, 0.0102676488, -0.0115738874, 0.00273968512, 0.00172203348, -0.0365747, -0.0131307431, -0.00849055592, -0.00752606476, -0.0209605843, -0.0225857887, -0.003214336, -0.021598516, -0.00248717074, -0.0125991339, 0.0234515518, -0.0014296486, 0.0193809457, -0.0300738811, -0.00105562364, 0.00128535472, 0.0199429318, -0.0173608325, 0.00983476732, 0.0221756902, 0.00146667135, 0.0116042653, 0.00940188486, -0.00650081877, -0.0243932605, 0.00135370437, 0.033050891, 0.00244540139, 0.0182265956, 0.0192746241, 0.0176646076, 0.00417313073, 0.0104347253, -0.0026048841, 0.0339318439, -0.00683117611, -0.000454952911, 0.00117618497, 0.0129332878, 0.0060527483, -0.00416553626, 0.0012227007, -0.00448450167, 0.00052686251, -0.00181031856, -0.00706280535, -0.00921202451, 0.0350861959, -0.00645145541, 0.0165102575, -0.0180291403, 0.00916645862, -0.0208086967, 0.0270513054, -0.00255552051, 0.0041769282, 0.0174063984, 0.0122346021, 0.000383280625, 0.0180898961, 0.00895381439, -0.00364721753, 0.00931075215, 0.0252894014, 0.0123409238, 0.0144369826, 0.0121966302, -4.11759684e-05, -0.00537304813, 0.0227680542, -0.00965250097, 0.00627678353, 0.00504269125, -0.00248147501, -0.0161305368, 0.00813361816, 0.0053806426, 0.0053806426, -0.0216896478, 0.00994108897, -0.0140876388, 0.00625779759, 0.0059008603, 0.0278715, 0.0160394032, 0.00482245348, -0.0135712186, -0.00661473488, -0.00602237089, -0.00758302305, -0.0109815234, 0.00652360218, 0.00922721345, 0.00464778161, 0.00626159506, 0.00416553626, -0.00836145, 0.00784503, -0.0194265116, 0.0100018438, -0.0061970423, -0.000903260661, 0.0021776983, 0.0202163309, 0.0466904603, 0.00361494138, -0.00969047286, -0.000198997397, 0.0023238908, -0.00228971592, -0.00773870852, -0.00849055592, 0.00170969253, -0.0220693685, -0.00124833186, -0.0129940435, 0.0164343137, 0.0179076288, 0.00382188917, -0.00341179082, 0.00560088083, 0.00854371674, -0.0188189596, -0.00637551118, 0.00932594109, -0.00837663934, 0.0197758563, -0.00565783866, 0.0126978615, -0.00898419227, 0.00338141317, 0.00199163519]
|
09 Mar, 2022
|
How to design datalists for mobiles using jQuery EasyUI Mobile ?
09 Mar, 2022
EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers.
In this article, we will learn to design datalists for mobile interface. Datalists are dropdown lists with pre-defined input options.
Downloads for EasyUI for jQuery:
https://www.jeasyui.com/download/index.php
Please take care of proper file paths while implementing your mobile application codes.
Example 1: The following code demonstrates the simple datalist using jQuery EasyUI.
html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0,
maximum-scale=1.0, user-scalable=no">
<!-- EasyUI specific stylesheets-->
<link rel="stylesheet" type="text/css"
href="themes/metro/easyui.css">
<link rel="stylesheet" type="text/css"
href="themes/mobile.css">
<link rel="stylesheet" type="text/css"
href="themes/icon.css">
<!--jQuery library -->
<script type="text/javascript"
src="jquery.min.js">
</script>
<!--jQuery libraries of EasyUI and
EasyUI Mobile -->
<script type="text/javascript"
src="jquery.easyui.min.js">
</script>
<script type="text/javascript"
src="jquery.easyui.mobile.js">
</script>
</head>
<body>
<div class="easyui-navpanel">
<header>
<!--EasyUI m-toolbar class is used -->
<div class="m-toolbar">
<span class="m-title">
Basic DataList
</span>
</div>
</header>
<!--EasyUI easyui-datalist class is used -->
<ul class="easyui-datalist" data-options="
fit: true,
lines: true,
border: false
">
<li>BMW</li>
<li>Mercedes</li>
<li>Bentley</li>
<li><a href="javascript:void(0)"
class="datalist-link">
Audi
</a></li>
<li><a href="javascript:void(0)"
class="datalist-link">
Volkswagen
</a>
</li>
<li>Tesla</li>
<li>Brio</li>
</ul>
</div>
</body>
</html>
Output:
Example 2: The following code demonstrates grouped datalist using jQuery EasyUI. On click of each item of the datalist, it displays the respective item content with a “Back” link.
html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0,
maximum-scale=1.0, user-scalable=no">
<!-- EasyUI specific stylesheets-->
<link rel="stylesheet" type="text/css"
href="themes/metro/easyui.css">
<link rel="stylesheet" type="text/css"
href="themes/mobile.css">
<link rel="stylesheet" type="text/css"
href="themes/icon.css">
<!--jQuery library -->
<script type="text/javascript"
src="jquery.min.js">
</script>
<!--jQuery libraries of EasyUI -->
<script type="text/javascript"
src="jquery.easyui.min.js">
</script>
<!--jQuery library EasyUI Mobile -->
<script type="text/javascript"
src="jquery.easyui.mobile.js">
</script>
</head>
<body>
<div class="easyui-navpanel">
<header>
<div class="m-toolbar">
<span class="m-title">
DataList group
</span>
</div>
</header>
<div id="datalistID" data-options="
fit: true,
border: false,
lines: true">
</div>
</div>
<div id="divID" class="easyui-navpanel">
<header>
<!--EasyUI 'm-toolbar' class is used-->
<div class="m-toolbar">
<span id="divID-title" class="m-title">
Car Details
</span>
<!--EasyUI 'easyui-linkbutton' class
is used for link and
'm-back' class is used for backtrack -->
<div class="m-left">
<a href="javascript:void(0)"
class="easyui-linkbutton m-back"
plain="true" outline="true"
onclick="$.mobile.back()">
Back
</a>
</div>
</div>
</header>
</div>
<script>
// The listitems can be grouped
var data = [
{ "group": "Group1", "item": "Audi" },
{ "group": "Group1", "item": "Mercedes" },
{ "group": "Group2", "item": "Bentley" },
{ "group": "Group2", "item": "BMW" },
{ "group": "Group3", "item": "Sedan" },
{ "group": "Group3", "item": "SUV" }
];
// jQuery function for datalist
$(function () {
$('#datalistID').datalist({
data: data,
textField: 'item',
groupField: 'group',
textFormatter: function (value) {
return
'<a href="javascript:void(0)" class="datalist-link">'
+ value + '</a>';
},
/* On click of one row,it takes to the
#divID-title with respective item */
onClickRow: function (index, row) {
$('#divID-title').html(row.item);
$.mobile.go('#divID');
}
})
})
</script>
</body>
</html>
Output:
Example 3: The following example demonstrates checkbox for datalist.
html
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0,
maximum-scale=1.0, user-scalable=no">
<!-- EasyUI specific stylesheets-->
<link rel="stylesheet" type="text/css"
href="themes/metro/easyui.css">
<link rel="stylesheet" type="text/css"
href="themes/mobile.css">
<link rel="stylesheet" type="text/css"
href="themes/icon.css">
<!--jQuery library -->
<script type="text/javascript"
src="jquery.min.js">
</script>
<!--jQuery libraries of EasyUI -->
<script type="text/javascript"
src="jquery.easyui.min.js">
</script>
<!--jQuery library EasyUI Mobile -->
<script type="text/javascript"
src="jquery.easyui.mobile.js">
</script>
</head>
<body>
<div class="easyui-navpanel">
<header>
<div class="m-toolbar">
<span class="m-title">
DataList selection
</span>
</div>
</header>
<div id="datalistID" data-options="
fit: true,
border: false,
lines: true,
checkbox: true,
singleSelect: false
">
</div>
</div>
<script>
// The listitems can be grouped
var data = [
{ "group": "Group1", "item": "Audi" },
{ "group": "Group1", "item": "Mercedes" },
{ "group": "Group2", "item": "Bentley" },
{ "group": "Group2", "item": "BMW" },
{ "group": "Group3", "item": "Sedan" },
{ "group": "Group3", "item": "SUV" }
];
// jQuery function for datalist
$(function () {
$('#datalistID').datalist({
data: data,
textField: 'item',
groupField: 'group'
})
})
</script>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?/How to design datalists for mobiles using jQuery EasyUI Mobile ?
|
https://www.geeksforgeeks.org/how-to-design-datalists-for-mobiles-using-jquery-easyui-mobile?ref=asr10
|
CSS
|
How to design datalists for mobiles using jQuery EasyUI Mobile ?
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, How to design datalists for mobiles using jQuery EasyUI Mobile ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0272457805, 0.0161573812, -0.0218099635, 0.0182083175, 0.0536244959, 0.0497227162, -0.0128475362, 0.0248113349, -0.021459803, -0.00828711875, -0.0108382851, -0.0371503048, 0.0221434496, -0.0103630675, 0.0364833325, -0.028162865, -0.0388177335, -0.0151402503, -0.00710324524, -0.0125807477, -0.00694900798, -0.0112718157, -0.0178748332, 0.0316978134, -0.0312142596, 0.0254616309, 0.0375838354, 0.0113468505, 0.00848304201, 0.00164241693, 0.0323647857, -0.00854557101, 0.0216098726, 0.0059026964, -0.0381174125, 0.008829033, 0.0291299745, -0.00567342527, -0.0507231727, 0.0148067642, 0.0358497091, -0.00433114544, 0.00399974408, 0.000818082073, 0.00671973638, -0.00449788803, 0.00137250195, -0.020726135, -0.025144821, 0.00200716686, 0.0142398383, 0.0339488424, 0.0185084548, 0.00401224941, -0.000117110794, 0.0322313905, -0.010955005, 0.0154403867, -0.0153403413, 0.0264954381, 0.0208595302, -0.0769685, 0.00727415644, -0.0148067642, 0.0261119287, 0.0304805916, -0.0285963975, 0.035316132, -0.0223101918, 0.0234940667, -0.0177080892, 0.0446203835, -0.0112217935, 0.0350493453, -0.0285963975, -0.00576096494, -0.0338821448, 0.00357871829, -0.00176226336, 0.0463211611, 0.00268664397, -0.0426194705, -0.033765424, -0.0127391526, 0.0137145985, 0.00475633936, -0.013080976, -0.0630621389, 0.0357830152, -0.00993787311, -0.0351827405, -0.0491557904, -0.0143565582, 0.00820374768, 0.000153846326, 0.0153486785, 0.0178581588, 0.000849346339, -0.060827788, 0.0137562845, 0.0169827584, 0.0385175981, -0.00273458264, -0.0120221591, -0.0166409351, 0.0216098726, 0.0305139404, 0.00498561095, 0.00877067354, -0.0182583407, 0.0295468308, -0.0249447282, -0.00152152847, 0.00718661631, -0.00179769623, 0.017091142, 0.00838299654, -0.0653631911, 0.0305973105, 0.024611244, 0.00817456748, -0.00119221129, -0.0187252201, 0.0548250452, -0.0692316294, 0.0447871275, 0.0177914612, 0.0125140501, 0.0507565215, -0.00222810125, -0.0137812961, 0.0263120197, -0.00294092693, 0.00789527316, 0.0374170952, 0.0434865318, 0.0285463743, -0.000427278515, -0.0362832434, 0.0059360452, -0.0242610835, -0.0235941112, 0.00450205663, 0.0236608088, -0.0375838354, 0.0282795858, 0.0213764329, 0.054858394, -0.0272958037, 0.00960438792, -0.0146066733, -0.0438533686, 0.0356829688, -0.00187898334, 0.0299303401, -0.0030680683, -0.039451357, -0.0335486606, -0.00177581131, 0.00122139126, 0.0258618146, -0.0168076791, 0.0199424438, -0.0175913703, -0.0214931518, 0.0273291524, 0.0183417127, -0.00562340207, -0.0720329061, 0.0449205227, -0.0212430377, -0.00263870554, -0.0288798604, 0.0124890385, 0.00366208958, 0.0145149641, 0.021626547, -0.000151240965, 0.00782023929, -0.035316132, -0.0134227984, -0.0392512642, 0.0352827869, 0.0169077236, 0.0109383306, 0.00857058167, 0.0314310268, 0.00130684697, -0.00325773819, 0.00681978231, -0.0501562469, 0.0378506258, 0.034782555, 0.0373503976, -0.00686563645, -0.0227437243, -0.0132727297, 0.0470548309, -0.0460877195, 0.0343823731, 0.00779522769, -0.00242610835, -0.0258284658, 0.0599607266, 0.0399515852, 0.0373170488, -0.00193838554, 0.0148067642, 0.0218433123, -0.0353494808, -0.0381841101, 0.00948766805, 0.00842051301, 0.0199757926, -0.0103380559, 0.0100879418, 0.00503146509, -0.0357496664, -0.0156738274, -0.0105631594, 0.0217265915, 0.0409186929, -0.0248446837, 0.0364499837, -0.0539913327, -0.0684312582, 0.0128308618, -0.0126891304, 0.00987117644, -0.00455207936, 0.0249447282, -0.0156654902, -0.0211263187, -0.0278627295, 0.0388177335, 0.00865395367, 0.00528574828, -0.0182083175, -0.0222601686, 0.0239942949, 0.00313476543, -0.0494559258, -0.0492891856, -0.00623201346, 0.0383842029, -0.00409978954, 0.013489496, -0.0180582497, 0.029596854, 0.0208428558, 0.00999623351, -0.0103547303, -0.0260952543, -0.0159739647, 0.0262286495, 0.0237775296, 0.030413894, -0.022977164, 0.0116719985, -0.0216765702, 0.00576513354, 0.0196756553, -0.039984934, 0.0190420318, 0.00673641078, 0.00249072118, 0.0593271032, -0.0244278256, 0.00585267367, -0.0171911865, 0.00955436472, -0.0138813416, 0.0306973569, 0.0526573882, -0.0044645397, -0.000200873023, -0.0396847948, -0.0156488158, 0.01222225, 0.0104047535, 0.0212263633, 0.00714909937, 0.0643627346, 0.0205593929, -0.00489807082, -0.0195089132, -0.00176538981, -0.000795154949, -0.00607777666, 0.0259785354, -0.0370169096, -0.0088873934, 0.0181582961, 0.0230938829, 0.0308474246, 0.0247613117, 0.0213764329, 0.0318812318, 0.00263453694, 0.0201758835, -0.0187585689, -0.0194755644, -0.0238775741, 0.000263141032, -0.0182583407, 0.037116956, 0.0359497555, -0.00694900798, -0.0279294252, -0.0308474246, 0.00841634534, 0.0106465304, -0.0372170024, -0.0306306593, -0.0130226156, 0.0260619055, 0.0395847522, 0.01782481, -0.00967942178, 0.000994204194, 0.000804534182, 0.00605693366, -0.0641626418, 0.0531576164, 0.0410520881, -0.000876442064, -0.0222101472, -0.0238942485, -0.0119888103, 0.00116198917, -0.0274792202, -0.0291466489, 0.0109466678, 0.0284630023, 0.0120054847, -0.0475550592, 0.0122055756, 0.00471465383, 0.0137062613, -0.00957937632, -0.0522572063, -0.00664053345, -0.036950212, -0.00140897697, 0.0366500765, -0.0388844311, -0.00499394815, 0.0138730044, 0.0504563823, -0.020809507, 0.00175079983, 0.00321396836, 0.0336653814, -0.0153903645, 0.0208261814, -0.0272958037, 0.00713242497, -0.029513482, -0.0482220277, 0.0228771176, 0.0061403052, 0.0125557361, -0.00648629665, 0.000360060309, 0.0178081356, -0.028779814, -0.000954602787, 0.00357663399, -0.00403517671, 0.0272791293, -0.0131476726, -0.0178081356, -0.0207594838, 0.0226770267, -0.0579264611, 0.0152819818, 0.0212263633, -0.0151569238, -0.0151819354, -0.0175746959, 0.0073867077, 0.0427862145, -0.0230938829, 0.0313643292, 0.0199591182, 0.00436032517, 0.0108799702, -0.00190816342, -0.0130643016, 0.00952101592, 0.00993787311, 0.0457208864, -0.0298636425, 0.00763265369, 0.00681561371, 0.00409770524, 0.0358497091, 0.0373837464, 0.0292633679, -0.0224769358, 0.0189086385, 0.00387468678, 0.035316132, -0.0130559644, -0.0218433123, -0.0209262259, -0.0346491635, -0.0202592555, 0.00827878248, 0.0197256785, 0.0105214734, -0.0303471964, -0.013656239, 0.0444869883, 0.0393179618, 0.0311975852, 0.00488139689, 0.0719662085, 0.00619032793, 0.0105714966, 0.0136895869, 0.00585684227, -0.0104547758, 0.00897910167, -0.0236941576, 0.0110300388, -0.0504563823, -0.0119888103, -0.0245111976, -0.00224477542, 0.0292967167, 0.04308635, 0.00982949, -0.0244111512, 0.00510649942, -0.00356412819, 0.0188419409, 0.00706155924, -0.0427528657, -0.0414189212, -0.0340322144, -0.0104964618, 0.0169910956, -0.00254699681, -0.0607944392, -0.0163991582, -0.0465546027, -0.0072283023, 0.00866229087, 0.000244382478, -0.00773269916, -0.0436532758, -0.0501895957, -0.0359164067, 0.0432197452, -0.0361498483, -0.00555670494, 0.00962939952, -0.00503563369, -0.00193109049, -0.0361498483, 0.0248446837, -0.0343156755, 0.0364499837, -0.0109883528, -0.0392179154, -0.00222810125, 0.000239041488, -0.0244778488, -0.00163407985, -0.00701153651, -0.0431863964, 0.0621950813, 0.04308635, 0.00436866237, 0.0130643016, 0.00906247366, 0.00822042208, -0.0044395281, 0.00896242727, 0.0215265, 0.029513482, 0.0469214357, 0.00506064529, 0.0243111067, -0.0517236292, 0.0331151299, 0.00140376633, 0.00969609618, 0.0237775296, 0.0147317303, 0.0433531404, -0.0534244068, 0.00604859646, -0.0195756089, -0.0202259067, -0.0628954, -0.0461877659, -0.0180249, 0.0174413, -0.013981387, 0.0260285567, -0.0737003386, 0.0455874912, -0.0111467587, 0.00361831975, -0.0219100099, 0.016390821, 0.0265621338, -0.0298636425, 0.00749925943, -0.0200758372, -0.0142148267, -0.000639354577, 0.00983782765, -0.0107965991, -0.00387468678, 0.0205760673, -0.0124473535, 0.0003694396, 0.0142315011, -0.000757116708, -0.00620700233, -0.0200591646, -0.00549417641, 0.0186085012, 0.0253282376, -0.0139313648, -0.00026118703, -0.0301304311, -0.0406185575, 0.00600274233, 0.0115052564, 0.0306139849, -0.00340572256, 0.00695317658, -0.0121638905, 0.00701987371, -0.000398880133, 0.00912917, -0.066463694, 0.0178915076, -0.0460210256, 0.0135228448, -0.00116407347, 0.014023073, -0.00270540267, -0.00789527316, 0.0104881246, 0.0232106037, 0.000447860861, 0.0240776669, 0.0144482674, 0.000413470145, -0.0177914612, -0.00065915531, -0.0121472161, -0.033565335, -0.0223268662, -0.028046146, -0.0260785799, -0.0107382387, 0.0628287047, 0.0101879872, 0.0307473801, -0.0190420318, 0.0146483583, 0.0429529548, 0.00553586241, 0.0118220672, -0.00808285922, -0.0112217935, -0.00151110697, -0.00839967094, 0.0238275528, 0.0183917359, 0.0380173661, -0.00356412819, -0.00621117093, -0.0101713128, 0.00109320774, -0.0107382387, 0.00997955911, 0.00512734242, 0.0168160163, 0.0327482931, 0.014881799, -0.0104881246, -0.0283796322, 0.0250947978, 0.0123973303, 0.0202592555, 0.0111967819, 0.00112759846, -0.010096279, 0.016841026, -0.0206594374, 0.0329150371, 0.0324648321, -0.0355162248, 0.022076752, 0.0263286941, 0.00629037386, 0.0214097816, -0.00989618804, -0.000208428552, 0.0232773013, -0.0287631396, 0.00468964223, -0.00808702782, -0.0193254948, -0.0134978332, 0.0366834253, 0.0265121125, -0.0288465116, -0.0345157683, 0.00342448102, 0.00609445106, -0.0147067187, -0.00183729769, 0.00165075413, -0.0244611744, 0.000383248, -0.00379548385, 0.0220934264, -0.0046229451, -0.01099669, -0.0260619055, 0.00302012963, -0.00862060487, 0.00556504214, 0.0123723187, 0.00414564367, -0.0120388335, 0.0156821646, 0.0124390163, -0.0152986553, 0.00506898249, -0.00436449377, -0.00862894207, 0.0182249919, 0.0156238042, -0.0467546917, 0.0917752609, -0.0183583871, 0.0167993419, -0.0112718157, 0.0185418036, 0.034182284, -0.0148651246, -0.0159823019, 0.027595941, 0.035482876, 0.00944598205, -0.0259785354, -0.00683228811, 0.0122722732, -0.00432697684, 0.00534410821, 0.015248633, -0.0159156043, -0.0108466214, 0.0288798604, -0.0167243071, -0.00558171654, -0.0221267752, 0.028246237, 0.0226937011, 0.0343490243, 0.00680727651, 0.0124723641, -0.0225936547, -0.00604025926, 0.00972944498, -0.00560672814, -0.0372837, 0.00432697684, 6.21703293e-05, 0.0104047535, -0.0123723187, -0.0307807289, 0.0310475174, 0.0282795858, -0.0111717703, -0.0200424902, -0.0106465304, -0.0144065814, 0.0275292434, -0.0135061704, 0.00469381083, -0.00202592555, 0.0103380559, 0.0243611299, 0.0260285567, -0.0074117193, -0.0281128436, 0.00162991125, 0.00136103842, -0.019092055, -0.0151569238, 0.00391845684, -0.0209929235, -0.0110883992, 0.0241777115, 0.00951267872, 0.0176247191, 0.000232918901, 0.000603400636, -0.0388510823, 0.00536078215, 0.0240443181, -0.00532326521, 0.0281461924, 0.039651446, 0.011897102, 0.0128225246, -0.0192421246, 0.0182416663, -0.0545582585, 0.00343907112, 0.00121409632, 0.010871633, 0.0117136845, 0.0143982442, -0.0137896333, -0.0390511751, 0.00787443109, -0.0220434032, -0.0131393354, -0.00233856845, 0.00688647944, 0.016149044, 0.0125807477, 0.00337862689, -0.0400516316, -0.00013222186, 0.0190753806, 0.0208595302, -0.00992119871, -0.00451456243, 0.0313810036, -0.0280961692, -0.0194088668, 0.0103797419, 0.00213013985, -0.0134644844, 0.00937094726, 0.0105631594, 0.0013756284, -0.0188752897, 0.00915418193, -0.00135791197, 0.027345825, -0.0277460087, -0.0182916895, 0.0118220672, -0.0147900898, 0.0361831971, 0.0112217935, 0.0182249919, 0.005927708, 0.0209595747, -0.0246279184, 0.00909582153, -0.021543175, -0.0211930145, -0.00392054114, -0.00526907388, -0.00302638253, -0.01058817, 0.0113551877, 0.0248780325, 0.0324981809, 0.00664887065, -0.0121138673, -0.00952101592, -0.0153736901, -0.0182083175, -0.014881799, -0.033932168, 0.00405185111, 0.0196089577, 0.00604859646, -0.00861226767, 0.00179561193, 0.00614864239, 0.0256617237, 0.0150652155, 0.00703237951, 0.0217932891, -0.0164074954, 0.00309307966, 0.0108382851, 0.031681139, 0.0241943859, -0.027962774, 0.00108382851, 0.00189357344, -0.00271165534, -0.00194463832, 0.0186251756, -0.0178748332, 0.00812037662, 0.00896242727, -0.00917919353, -0.00221142685, -0.0146400211, -0.00975445658, -0.0200424902, 0.00516485935, -0.0101546394, -0.00974611938, -0.0186585244, 0.00358913955, 0.0027658469, -0.00222184835, 0.0203426257, 0.00271999254, 0.00551085081, 0.0109299934, -0.00584850507, -0.000572657445, 0.0132894041, -0.0188252665, -0.0127308154, 0.0260619055, 0.0192087758, 0.0042331838, 0.00230313558, -0.00778272189, 0.0108966446, -0.0173079073, -0.00690315338, 0.000747737417, -0.00605276506, -0.0238108784, 0.00815372448, 0.0321813673, 0.0518570244, 0.0360498, -0.0162157416, 0.0172412097, -0.00857058167, -0.00252823834, 0.00491057662, -0.00248238398, -0.00068156136, -0.0061403052, 0.00682811951, 0.0258451402, 0.0128558734, -0.000119585879, -0.0237608552, 0.0337154, -0.00399140688, 0.0384509, -0.00714909937, 0.00457709096, 0.033315219, 0.00290966267, -0.00926256459, 0.0119971475, -0.0497227162, 0.0172912329, 0.025344912, -0.0059568882, -0.0147150559, -0.0595938899, -0.031147562, -0.00379548385, -0.0151235759, -0.00945431925, 0.00108174421, 0.0233606715, 0.0031576925, -0.0157572, -0.028946558, 0.00652381359, -0.0170411188, -0.0383842029, 0.0321313441, -0.00936261, -0.0482553765, -0.0250281, 0.0231772549, 0.0120304963, -0.0241610371, -0.0145899989, 0.00352035812, -0.0195422601, 0.00672807358, 0.000658634235, -0.00508148829, -0.0271123853, -0.0222434942, 0.0373170488, -0.0204093233, -0.0238775741, -0.0151735982, 0.0327816419, 0.00805367902, -0.00272207684, -0.0121222045, 0.0315810926, 0.024978077, 0.0226103291, -0.0146066733, 0.0287964884, 0.00777438516, 0.0242444091, 0.0191921014, 0.0118637532, 0.0229938384, -0.0152319586, 0.0240776669, -0.00153820275, -0.0629621, 0.016841026, 0.0162907764, -0.0356829688, 0.0145233013, 0.00567342527, 0.00997122191, 0.0293634143, -0.0164241698, -0.0155487703, -0.0271123853, 0.000327753893, -0.0179582033, -0.000511952618, -0.00877067354, 0.0221101, 0.0223768894, -0.0138646672, 0.000533577113, 0.00695734518, 0.00768267643, 0.00219892128, -0.0359831043, 0.000700319943, 0.0253782608, -0.00358497119, -0.0265454594, -0.0216765702, 0.00554003101, -0.0153903645, -0.0440201089, 0.0120304963, -0.00384967541, 0.0136645762, -0.0108049363, -0.0172912329, 0.0187418945, -0.0206260886, 0.0147317303, -0.0111217471, -0.0261786263, 0.0143565582, -0.00436866237, 0.0171411633, -0.0145066269, -0.0202425811, 0.0232773013, 0.0113718621, 0.0312642828, 0.00289715687, -0.0204760209, 0.0116469879, -0.0147150559, -0.0112468041, -0.00865395367, -0.00338696386, 0.0428529084, 0.0104130907, -0.0314977244, 0.0101046162, -0.0134144612, -0.0273958482, -0.0151152387, 0.000234482126, 0.00450622523, -0.0178414844, -0.000706051709, -0.00414564367, 0.0310641918, 0.0259451866, 0.0357496664, -0.0375838354, -0.00174246274, 0.0166242607, 0.0165075418, -0.0142398383, -0.00230938825, -0.00802033, -0.00685729925, -0.0109883528, -0.00250947964, -0.0164658558, -0.000662802777, -0.00126828777, 0.00800782535, 0.0133394273, -0.00329525536, 0.0465546027, 0.00616948493, 0.01058817, 0.0273291524, -0.0204593465, -0.00375796668, 0.0205427185, -0.0306473337, 0.00497310515, -0.0182249919, -0.00734502217, 0.00821208488, 0.0113385133, 0.000650818169, 0.0116136391, 0.0304639172, -0.0104130907, 0.0183417127, 0.00688231084, 0.00198319764, -0.0195756089, 0.00859559327, 0.0269122943, -0.00298469677, -0.0107382387, 0.0222935174, 0.000925943838, 0.0129392445, 0.0178915076, -0.0103463931, 0.0164908674, 0.0075951363, 0.00912917, -0.0106131816, -0.05469165, -0.0189253129, -0.0166742839, 0.0344490707, 0.000552335638, 0.0257784426, 0.0103797419, -0.0248446837, -0.00589019107, -0.00100983633, 0.0200424902, 0.00082902459, 0.00214056112, 0.000813913473, -0.0031701983, 0.0072032907, 0.00578180794, -0.0108049363, 0.0103130443, -0.0044311909, -0.0155654438, 0.0143648954, 0.0108299479, 0.00667388225, -0.0216098726, 0.00718661631, 0.000598189945, -0.0016799341, 0.0301804543, -0.00897910167, -0.0271624085, -0.00805784762, 0.00311600673, 0.000344167638, -0.00141939847, 0.000307692651, 0.00839550234, 0.0405185111, -0.0215265, -0.0042373524, -0.0177747868, 0.00345991389, 0.00299094967, 0.0216932427, 0.00129121484, 0.022443587, 0.0123473071, -0.0120971929, -0.0201425347, -0.0013839656, -0.0165825747, -0.00971277058, -0.0395847522, 0.0027658469, 0.0138063068, -0.0105131362, 0.033148475, -0.0276292879, -0.0298136193, 0.00302012963, 0.0630621389, -0.000240083638, -0.0119721359, -0.0214097816, -0.0175746959, -0.00629454246, -0.00559839094, -0.00388093968, 0.0237608552, -0.0213430841, 0.0230605341, -0.00475633936, 0.00303471973, -0.0126891304, -0.0148984725, 0.0183917359, -0.00915418193, 0.0170577932, 0.0332651958, -0.0262119751, -0.0134311356, 0.0209262259, 0.00807452202, 0.0072366395, 0.01140521, 0.0201592091, 0.000475217093, -0.0176413935, -0.0273958482, -0.00014915668, 0.0260452311, 0.0147400675, 0.0143065359, -0.0111217471, 0.000943139195, 0.0211096443, 0.0126557816, 0.0144816153, -0.0260452311, -0.0112384679, -0.00407477794, -0.00566925667, -0.0261119287, 0.0152402958, -0.0213430841, 0.0113718621, -0.0247946605, -0.00872065, -0.0188586153, 0.010096279, 0.000921254221, 0.00283671264, -0.0229271408, -0.0158739183, -0.0132560562, 0.0220100544, -0.00822459068, -0.0044311909, 0.0217265915, -0.031931255, -0.0137979705, 0.00982115325, 0.0103630675, -0.012839199, -0.00291591533, -0.0148317758, -0.0168743748, 0.0180082265, -0.019258799, 0.00715326797, -0.00384550681, 0.00849554781, -0.00226978702, -0.00798281375, -0.00399140688, 0.00707823364, 0.00634873379, 0.00830379315, -0.0119888103, -0.00451873103, 0.00710741337, 0.0184084103, -0.0102796964, 0.0158572439, -0.0118804276, -0.0122889476, -0.0167659931, -0.0147067187, -0.0152819818, -0.0175079983, -0.00556504214, -0.022893792, -0.0136479018, -0.00901245, 0.0121472161, 0.00817456748, 0.0168493632, 0.0152569702, 0.0014371149, 0.030947471, 0.0181749705, 0.057559628, 0.00829128735, -0.0226103291, 0.019092055, 0.000542435329, 0.0201758835, -0.00379131525, 0.00597356213, 0.013531182, 0.033565335, 0.000229401674, 0.00931258779, 0.00636540772, -0.00699069351, -0.0178581588, -0.00696151378, -0.0113135017, 0.0167326443, 0.0127808386, 0.0143815698, 0.0202592555, 0.0184584316, 0.00493558822, 0.00808285922, 0.00746591063, 0.0160573348, -0.00818290468, 0.00873732474, -0.00339738536, -0.00662802812, 0.00366834248, -0.0154737355, 0.008870719, -0.00927090179, -0.00617782213, -0.0143398847, 0.0116053019, -0.0158238951, 0.0359497555, -0.0418524519, -0.00381841115, -0.0220600776, -0.00114739919, 0.013898016, -0.00790361, -0.0115052564, 0.0376171842, 0.00108487066, -0.00481469976, -0.0145733245, -0.00554419961, 0.0232939757, -0.00544415368, 0.0179748777, 0.00587351667, 0.0231439061, 0.00822459068, -0.0149484957, -0.0209929235, -0.0128225246, 0.0226603523, 0.0327482931, 0.0059152022, 0.00404559821, 0.00990452431, -0.00450205663, -0.0256450493, -0.00313684973, 0.0111217471, -0.0159239415, -0.00859559327, 0.0271123853, -0.00363707822, 0.00498561095, 0.0146316839, 0.00829128735, 0.0115802903, -0.00405185111, 0.00301804533, 0.005744291, -0.0285463743, -0.0258451402, -0.00468547363, -0.0170577932, -0.0144482674, 0.00439367397, -0.0322980881, -0.022443587, 0.01864185, -0.0116386507, 0.019008683, 0.0130643016, 0.0425527729, 0.0250947978, 0.00109320774, -0.00268455967, 0.0139230276, -0.00170911406, 0.0262119751, -0.0102046616, 0.0279127508, 0.01945889, 0.00199674559, 0.00508982502, -0.016841026, -0.000180160423, 0.00367042678, 0.0404851623, -0.0287631396, -0.00435615657, -0.00535661355, 0.0180582497, -0.0111384215, -0.00633622799, 0.000208037745, 0.00332443533, -0.0270790365, 0.0171578377, -0.00386009668, 0.00416648667, 0.0222601686, 0.00364333112, 0.0128642097, 0.00229062978, -0.00563590787, -0.0103213815, -0.0243611299, -0.0270790365, 0.0185251292, -0.0246445928, 0.0297135748, 0.0278960764, 0.00432280824, 0.00907081086, -0.000471830135, 0.0059235394, -0.01263077, -0.0317311622, 0.00919586793, 0.00979614165, 0.0116303135, -0.0134144612, -0.00542331068, 0.0046271137, -0.00012531766, 0.0167326443, -0.0121805649, -0.012672456, 0.0231772549, 0.00469797943, -0.0169494096, 0.0197423529, -0.00917085633, 0.0044270223, 0.000470006373, 0.0139647126, -0.0250281, -0.0163574722, -0.0332985446, 0.0072199651, 0.0298803169, -0.00346825109, -0.016107358, -0.0225436315, -0.00792445336, -0.008912405, -0.000237999353, 0.0059026964, -0.0120805185, -0.0431197, 0.0182249919, -0.0194922388, -0.00124536059, 0.0074283937, -0.00597356213, 0.0262953453, -0.0262119751, 0.0168493632, -0.0154987471, -0.0235107411, 0.0116219763, 0.000945223495, 0.0121055301, -0.0106965536, 0.00485221669, 0.0138896788, -0.00876233634, 0.0100129079, -0.00200299849, 0.0142148267, 0.0100879418, -0.0167243071, 0.00583599927, 0.00431447104, 0.019825723, 0.00549417641, -0.000245815434, -0.00672390498, -0.00716994237, 0.00935427379, -0.0159572903, -0.029513482, 0.0233106483, 0.0120388335, -0.0255783517, 0.00558588514, -0.0123473071, 0.00484387949, -0.0247946605, -0.00718244771, -0.00094261812, 0.015165261, -0.0139897242, 0.00244278251, -0.00509399362, 0.00728249364, -0.0170411188, -0.00696985098, -0.0169577468, -0.0184250847, -0.00775354216, -0.0164491814, 0.0133394273, 0.00454791076, -0.00626953086, 0.000675308518, 0.00129225699, -0.00776604796, -0.00171953556, 0.0205593929, -0.000935323129, -0.0162157416, 0.00250947964, 0.00471048523, -0.00438116817, -0.00756595656, -0.0140063986, -0.0137979705, 0.0131393354, -0.0195922833, 0.00974611938, -0.00785358809, -0.00997122191, 0.0187418945, -0.000771185616, -0.0189253129, -0.00273875124, -0.0223101918, -0.0189253129, -0.0168160163, -0.0200424902, 0.0219433587, -0.00096606632, 0.0212930609, 0.0123222964, 0.0319812782, -0.00483554229, 0.0177080892, -0.000117631862, -0.0122305872, 0.0204426721, 0.00193630124, -0.00359122385, -0.00384967541, -0.0282962602, -0.00427695364, -0.0115135936, 0.0290466025, 0.0108549586, -0.0283963066, -0.0073992135, -0.00818707328, 0.00119325344, -0.000207777208, 0.00206865347, 0.0111634331, 0.00118804269, -0.0227770712, -0.00419358257, -0.00917919353, -0.00346408249, -0.0181916431, -0.0198423974, -0.00469797943, 0.00603609066, -0.00412480114, 0.0185918268, 0.0181082729, -0.014023073, 0.0156321414, 0.0044645397, 0.0136395646, -0.016307449, -0.0214264542, 0.00418524537, -0.0298302937, 0.0109716794, -0.000598189945, -0.0102713592, 0.0105131362, 0.00134957489, 0.00283879694, 0.0101879872, 0.0221434496, 0.0119387871, 0.00565258227, -0.030297175, 0.0029701069, -0.0222434942, 0.0233106483, 0.0178414844, -0.00540246814, -0.0380173661, -0.0137896333, 0.0173412561, -0.000468964252, 0.0246445928, 0.0154153761, 0.0151986098, 0.0138313184, -0.00131205772, -0.000839967048, -0.0135145076, -0.0029763598, -0.0129225701, 0.00871231314, -0.0215931982, -0.0373170488, -0.0100712674, -0.00649463385, -0.0125640733, -0.00550251361, -0.0071949535, -0.00899577606, -0.0176747404, 0.0177247636, 0.00964607298, 0.0234940667, 0.0194422156, -0.00798698235, 0.021626547, 0.0171578377, 0.0103130443, -0.00277835247, 0.0149318213, 0.0199591182, -0.00814955588, 0.0074117193, 0.0150818899, 0.0207928326, 0.00871231314, -0.0241943859, -0.00141939847, -0.0208762046, -0.00816623, 0.00259493547, -0.0160906836, 0.0135812042, -0.0115219299, -0.0133144157, -0.027595941, -0.0164491814, 0.00354120112, 0.0286464207, 0.00684062485, 0.0157905463, -0.00448121363, -0.000950434187, -0.0072116279, 0.00200716686, -0.0123389699, 0.00622784533, -0.020809507, -0.0117470333, 0.00190816342, -0.0298803169, -0.00018901864, -0.00433114544, -0.00969609618, 0.0166576095, 0.0276793111, 0.0108549586, 0.0209595747, 0.0147734154, 0.0297135748, 0.00484804809, -0.00256783981, 0.00762848509, -0.0126140956, 0.0156905018, -0.0105214734, -0.0157155134, -0.00156008766, -0.0030555625, -0.00559422234, -0.0210429467, 0.0213097353, -0.0072157965, -0.01344781, 0.00970443338, 0.00845803, 0.00518987095, -0.00794529635, -0.00787026249, 0.00626536226, 0.00135999627, -0.00330150826, 0.0174913239, 0.00939595886, 0.0237441808, -0.0322147161, -0.0326482467, -0.00451456243, 0.014840113, -0.0115469415, 0.00586517947, -0.00561506534, 0.00458959676, -0.00697818771, -0.00432697684, 0.00302846683, 0.0088623818, -0.011446896, -0.0016841027, -0.00300137117, -0.013614553, -0.014431593, 0.022160124, -0.00435615657, 0.0168577, 0.0100379186, 0.00269289687, -0.00791194756, -0.0146900443, -0.0145733245, -0.000878005289, -0.00172161986, -0.00708657084, 0.00876233634, 0.00166117551, 0.00313268113, -0.0232606269, -0.00755761936, 0.000446037098, 0.00345574529, 0.00701153651, -0.00637791352, 0.0073867077, -0.010504799, -0.00694483938, -0.00716577377, -0.0245778952, -0.00656549959, -0.00158718345, 0.018558478, 0.0061277994, -0.00325565389, -0.0262619983, 0.00977113, 0.000967629545, -0.0159072671, -0.00358497119, -0.0169077236, -0.00657800492, 0.00393304694, 0.00817873608, 0.00665303925, -5.60151748e-05, -0.0236608088, 0.0012797513, -0.00364749972, 0.0171078146, 0.0216932427, 0.0258951634, 0.00475633936, -0.000287891948, 0.0153320041, -0.00701987371, -0.00902078766, 0.0150318667, -0.0184584316, 0.00267205411, 0.00606527086, 0.00997122191, 0.0128725469, -0.000419723, 0.0484554693, -0.0261953, 0.00428112224, -0.00555670494, 0.00266788551, 0.00344323972, 0.00118908484, -0.000778480666, -0.00189982622, -0.0130476272, 0.0179248545, -0.0150402039, 0.00864561647, -0.00274708821, -0.016307449, -0.0155154215, -0.0263453685, 0.00203217845, -0.00105048, -0.0115469415, 0.000822250615, -0.0306806825, -0.00419775117, -0.00351618975, -0.025878489, 0.00834547915, -0.00621950813, 0.0217932891, -0.000731584209, 0.00118074776, 0.00832880475, 0.0130059412, 0.000476259243, 0.00141106127, 0.0272124317, -0.0107715875, -0.00268872827, 0.00734502217, -0.00762431649, -0.00214889832, -0.008954091, -0.0390178263, 0.00522321928, 0.0140981069, -0.0173412561, -0.00250531128, 0.0075909677, -0.0104714502, 0.00103380566, -0.0310808662, -0.013247719, -0.00343281822, 0.0059235394, 0.0102713592, 0.00616114819, -0.0246445928, -0.0169744212, -0.0110300388, 0.00422276231, 0.000834235281, 0.0117053473, -0.00324106403, -0.0144566046, 0.0260619055, -0.00557754794, -0.00373295532, -0.0183417127, 0.0175746959, -0.0239942949, 0.00516069075, -0.00438950537, -0.00429362804, 0.0102880336, 0.00471465383, 0.0164408442, 0.00186543551, 0.0128558734, 0.00271999254, -0.00797864515, 0.0193588436, 0.0266788546, -0.0044145165, -0.00491057662, 0.0151902726, 0.00150902267, -0.0202926043, 0.00399140688, -0.00803283602, 0.0201091859, 0.0244278256, -0.00220934255, -0.0247779861, 0.00222601695, -0.00701153651, 0.0179915521, -0.00832046755, -0.0131810214, 0.0104214279, -0.0271790829, 0.0042456896, -0.00128913054, 0.00828295108, 0.00116824207, 0.02281042, -0.00200716686, -0.0101879872, -0.0213264097, 0.00147671625, -0.0385842919, -0.00145587348, 0.01303929, 0.00436866237, -0.0014881799, 0.0253282376, -0.00191024772, -0.00684896205, 0.00278043677, -0.00754511356, 0.00314518693, -0.00818707328, -0.0075951363, -0.0042727855, -0.0126140956, -0.0155821182, -0.00264287414, -0.000389500841, 0.00991286151, -0.0198924206, -0.0044436967, 0.00925422739, 0.0262786709, 0.016474193, 0.0280794948, 0.00267830677, 0.0030534782, 0.00374754542, -0.00521071395, -0.0266288314, -0.0153570157, 0.00533993961, -0.0205427185, 0.0102129988, -0.0182750151, -0.00630704779, 0.0265621338, -0.00579848234, -0.0176914148, -1.00713323e-05, 0.00178935914, 0.00263245264, 0.00616948493, -0.00768684503, 0.0110967364, 0.0197423529, 0.00280753267, -0.0169327352, -0.0219600312, 0.000800886715, 0.00919586793, 0.0135228448, 0.022076752, -0.0197757017, -0.000883737055, -0.00623618206, -0.00923755299, 0.0146983815, -0.0219100099, 0.01864185, -0.00897076447, -0.00428945944, -0.00160281558, 0.00403934531, 0.0162824392, 0.00124431844, -0.00566091947, 0.0181749705, -0.00951267872, 0.0124807013, -0.000641959952, 0.00256158691, 0.0139897242, -0.0103714047, -0.004241521, -0.0193921924, 0.00302846683, 0.00133915339, -0.0225269571, -0.0029701069, 0.00797864515, -0.0167743303, -0.0117386961, -0.00345574529, 0.0154904099, 0.0165242162, -0.0253949352, -0.0277626831, 0.0157905463, -0.00866229087, -0.0219767056, 0.0173912775, 0.0211429931, 0.0172412097, -0.00569426781, -0.00837465934, 0.0177747868, 0.0192254502, 0.000367876404, 0.0401850231, 0.021626547, 0.0278960764, 0.00583599927, -0.0104964618, 0.0216598958, 0.00551918801, -0.00729916804, -0.00449788803, -0.00355370669, -5.50381628e-05, -0.00191233191, -0.0101879872, 0.0101879872, 0.0120721813, 0.0073992135, 0.00155070843, 0.0159572903, 0.0178581588, 0.00474383403, -2.54673632e-05, -0.0161740556, 0.0113301761, -0.0123306327, -0.00366417388, -0.0298803169, 0.0167493187, -0.0117553705, 0.00992119871, -0.00953769, -0.00702821091, 0.0266788546, -0.0189753361, 0.00516902795, -0.00926256459, -0.00796197075, -0.0105381478, -0.00265537971, -0.0280794948, -0.00279711117, -0.0223935638, 0.00929591339, 0.00922921579, -0.0173245817, 0.00853306521, -0.00551085081, 0.0114552332, 0.0173912775, -0.00105204317, -0.0324314833, -0.00174871553, -0.00189774192, -0.00430196524, -0.0118720904, -0.00493975682, 0.00601524813, -0.00060079532, -0.00301179267, -0.0291299745, -0.0190587062, 0.0146983815, 0.0163741466, -0.00166013336, -0.00334527832, -0.00917085633, -0.0180749241, 0.00343281822, 0.0046271137, 0.000422849436, 0.013489496, 0.00128079345, -0.0274958946, 0.00961272512, 0.00273458264, -0.0137812961, -0.00152986555, -0.0072032907, 0.00935427379, 0.0115052564, 0.0105298106, 0.00308891106, 0.00394555228, -0.0205927417, -0.0150151933, -0.0116469879, -0.00367042678, 0.00966274738, 0.00661552232, -0.00568176247, -0.00656966772, -0.0206260886, -0.0249447282, -0.00802033, 0.0315310694, 0.032014627, -0.00311183836, -0.00229688268, 0.00652381359, 0.0144816153, 0.00199361914, 0.00781190209, 0.0272291061, 0.00729499944, -0.00585267367, -0.0243611299, 0.00335361529, -0.00167055486, 0.000233179439, 0.00195505982, 0.0031493553, -0.00849137921, -0.0112718157, 0.00260327267, 0.0301637799, 0.022076752, 0.0210262723, -0.0285130255, 0.0136062158, 0.0290966257, -0.011855416, -0.00402892381, 0.0120721813, 0.00193421694, 0.0126807932, 0.00814122, 0.0264620893, 0.0075784619, 0.0212930609, -0.0122972848, -0.012305622, 0.013247719, 0.0139980614, 0.0126224328, 0.00391637255, 0.0262119751, 0.0059443824, 0.0196589809, -0.00328274979, 0.00870397594, -0.00942930765, -0.00433531404, 0.00867062807, 0.0125890849, 0.0142898615, 0.00622367673, -0.0152736446, -0.000878526364, -0.00230105128, 0.0124807013, 0.00195193337, -0.0121388789, 0.00903746206, -0.00480636256, 0.00373295532, -0.0172745585, -0.0192421246, -0.000323064247, 0.00780773349, 0.00696985098, -0.00671556778, -0.00328691816, -0.01263077, 0.0197256785, 0.00982115325, 0.0120971929, -0.0088623818, -0.00371419685, 0.0162157416, 0.0116719985, 0.0216598958, 0.0178581588, -0.0126891304, -0.0157572, 0.0124640269, -0.0176747404, 0.0212930609, -0.00861226767, 0.0208428558, 0.00510233082, -0.0206594374, 0.0182416663, -0.00545249088, 0.00540246814, 0.00270748697, 0.00254908111, -0.0271790829, -0.00969609618, 0.0129642561, -0.025795117, -0.0157655347, -0.00300137117, -0.0155987926, 0.00094678672, -0.0059152022, -0.0044478653, -0.0171078146, 0.00578180794, 0.00548167108, -0.000181072304, 0.000746695267, -0.0150235295, -0.0133727761, 0.0132560562, -0.0151485875, -0.0142648499, 0.00663636485, 0.0291299745, -0.0057151108, 0.0252448656, 0.00646545365, 0.00642376812, -0.00401641801, -0.00220517418, 0.014389907, 0.0016757655, -0.00937094726, -0.00348075689, -0.00749092223, -0.00271999254, 0.0131893586, -0.00932092499, 0.0112051191, -0.00798281375, 0.000637270277, 0.0135895414, 0.00954602752, 0.0027762684, -0.00954602752, 0.0088623818, 0.0112968273, 0.00973778218, -0.00171536696, 0.0105131362, -0.00942930765, 0.00293884263, -0.013656239, -0.013814644, -0.00644461066, 0.016065672, -0.00640709372, -0.000214030064, 0.0102046616, 0.018441759, 0.0114135472, 1.95238936e-05, 0.00402475521, -0.00161427911, -0.0059568882, -0.0237775296, 0.00392470974, -0.0262953453, 0.00498561095, 0.000602879561, -0.0365166813, -0.000857683481, 0.0121805649, -0.0057401224, -0.00090770633, -0.01945889, -0.00589019107, 0.0185918268, 0.0240609925, -0.011488582, -0.00878734794, 0.00556087354, -0.0122139128, -0.013206033, -0.0151569238, -0.0184250847, 0.0103547303, 0.0219266843, -0.0145733245, -0.0230605341, -0.014064759, -0.0125807477, 0.0139146904, -0.0059235394, 0.00981281605, -0.00352035812, 0.0151235759, -0.00707406504, 0.031397678, 0.0219100099, 0.0111467587, 0.012839199, 0.016349135, -0.00456458516, -0.0129809305, 0.0164408442, 0.00024255873, 0.0104214279, -0.008954091, 0.00942930765, -0.0120138219, 0.0269623175, 0.0183417127, 0.00991286151, -0.00755761936, -0.00567759387, -0.00687397365, 0.0148734618, 0.00289298827, -0.00736169657, 0.0206761118, 0.00601941673, -0.0262119751, 0.00105569058, 0.0136062158, -0.00796613935, 0.00997955911, 0.0116553241, -0.00326399109, -0.00937928446, 0.00325356959, 0.0114302216, 0.000887905655, 0.0165242162, 0.0102046616, 0.00642376812, 0.0242944323, -0.0282629114, 0.00839133374, 0.0167993419, -0.014840113, -0.0248446837, 0.0046521253, -0.0134644844, -0.000913438096, 0.000850388489, 0.000412688532, 0.0174246263, 0.00792862196, -0.000556504237, -0.00205510552, -0.00766183343, 0.0203593, -0.00268455967, -0.0132894041, -0.0151069015, 0.0214264542, 0.00515652215, -0.0201758835, -0.00318061979, 0.00270331837, 0.0111801075, -0.00583599927, 0.00134853274, 0.0203926489, -0.00392470974, 0.00566508807, 0.0171244889, 0.0071991221, 0.0240109693, 0.0197256785, 0.00189357344, -0.0216598958, 0.0110967364, -0.0146983815, -0.0073867077, -0.0155404331, 0.000293363177, -0.0140480846, 0.00851222221, 0.00631538499, 0.00833714195, 0.00291383103, -0.0184584316, -0.0136895869, -0.00686146785, 0.00394972088, -0.0073867077, 0.0121472161, 0.0201925579, 0.0200424902, -0.0153403413, -2.60861361e-05, 0.000491891406, 0.0155487703, 0.00931258779, 0.0240109693, 0.00268455967, 0.0042456896, 0.0223268662, 0.0230772085, -0.00969609618, -0.00701570511, 0.00557754794, 0.00170390343, -0.0072074593, -0.000465316727, -0.0130726388, -0.0119054392, -0.00925422739, 0.000969713845, 0.00713242497, -0.013572867, -0.0186585244, -0.00699903071, -0.00687814225, 0.00640709372, 0.0208595302, -0.00068572996, -0.0110717248, 0.0116886729, 0.00538996235, -0.0242110603, 0.00253865984, -0.0175246727, -0.00962939952, 0.00363499392, 0.00570677361, -0.0029471796, -0.0129892677, -0.0072199651, -0.0152152842, 0.0131810214, -0.00177581131, -0.0107715875, 0.0117970556, 0.0201925579, 0.00687814225, -0.0131059876, 0.00798281375, -0.00964607298, 0.000549209246, 0.00348492549, 0.0142565127, 0.00957103912, 0.00393513124, 0.014881799, -0.00826627668, -0.0111967819, 0.0155571066, 0.00388093968, 0.000961376703, 0.00242610835, 0.00873732474, -0.000230053018, 0.00393304694, -0.0162074044, -0.0166325979, 0.00867896527, 0.00862894207, 0.00964607298, 0.00278877397, -0.00822875928, -0.00706572784, 0.00954602752, -8.49997668e-05, 0.0221934728, -0.00349326245, -0.0134644844, 0.00346825109, -0.00145587348, 0.00976279378, -0.00450205663, -0.00302846683, -0.00385384401, -0.000457240123, -0.00119533774, 0.0122139128, 0.00218849978, -0.000545040646, 0.0193588436, -0.0122389244, -0.0100295823, -0.00178310624, 0.0130059412, 0.0247779861, -0.0120888557, 0.0163324606, -0.0120054847, 0.00579014514, -0.020809507, 0.0101212906, 0.00860393047, -0.0074367309, 0.00211346545, -0.00922921579, -0.00775771076, 0.0137062613, -0.000447600323, 0.0155070843, 0.0103964163, 0.00684479345, -0.0103964163, -0.0028513025, 0.0174579751, 0.00727415644, -0.0253282376, 0.00356204389, -0.0112551413, 0.00914584473, -0.00672807358, 0.00180811773, 0.000536703505, 0.0172078609, -0.00232606265, -0.00781190209, -0.00139542914, 0.0246612653, -0.0124223419, 0.00458125956, -0.00882069673, -0.0238942485, -0.00949600432, 0.00659051072, -0.000480167277, 0.0185084548, 0.00508565642, 0.000155149, -0.0126641188, -0.000415293878, -0.00122972846, -0.0198090486, -0.0139230276, 0.0258951634, 0.0239942949, -0.00183729769, 0.0177914612, -0.0215931982, -0.0113135017, 0.0293133911, 0.0186585244, 0.0179748777, -0.0170661304, 0.00834131055, -0.00609028246, 0.00931258779, -0.00599440513, 0.0259785354, 0.0027741841, 0.001532992, -0.00403517671, -0.0221767984, 0.00796613935, -0.0028554711, 0.0173079073, -0.00520237675, 0.00255741831, -0.0248446837, 0.01058817, 0.00176747411, -0.00256158691, 0.016924398, 0.00244903541, -0.035482876, -0.010137965, -0.00344532402, 0.000796718115, -0.00690315338, -0.00563173927, -0.00255116541, -0.00727415644, 0.0347158611, 0.0196423065, 0.00586101087, -0.0258284658, 0.0120138219, 0.025428284, -0.0262453239, 0.00124848704, 0.0185751524, -0.00151631772, 0.0131309992, -0.00709907664, 0.0203926489, 0.00830796175, 0.0046354509, 0.0224602614, 0.00385801238, -0.0153653529, 0.00773686776, 0.0147150559, 0.00168514485, -0.00233231555, -0.00516485935, 0.00100931525, -0.0309307966, -0.00262203114, 0.00119846419, 0.0115052564, -0.00829128735, 0.0046229451, 0.0209762491, 0.00167680765, -0.00226978702, 0.00898743887, -0.00500228535, -0.00606110226, -0.00681561371, 0.0204593465, 0.00172995694, 0.0105548222, 0.0217932891, -0.0141397929, 0.022076752, -0.0788360164, 0.000931154529, 0.0123306327, -0.0117887184, 0.000117110794, 0.016065672, -0.000136781237, 0.00733668497, 0.0362832434, 0.00386634958, -0.0015903099, 0.00189044699, -0.00942097, 0.00852055941, -0.0140981069, -0.00146004197, 0.013247719, 0.00643627346, -0.00677392771, -0.00225102832, 0.0121722277, -0.0103880791, -0.0183583871, -0.00291383103, 0.01181373, 0.0164908674, -0.00112551416, 0.00229896698, -0.00879568513, -0.00979614165, 0.0231272317, 0.0125974212, 0.0158072207, -0.00584433647, -0.0167076327, 0.00340363826, 0.0115469415, 0.00374962972, -0.005927708, -0.0110967364, -0.0113718621, -0.00094470242, -0.0120221591, -0.0137145985, -0.0312142596, 0.0014350306, -0.0109883528, -0.00212388695, 0.0110217016, -0.00228437688, -0.008912405, 0.0193088204, -0.0225769803, -0.00201550405, 0.0189586617, 0.00363499392, -0.0243111067, -0.019092055, 0.014389907, 0.00550668221, 0.00491474522, 0.00842468161, -0.00237608538, 0.00879568513, 0.0198590718, 0.0149568329, -0.0254783053, -0.0027762684, -0.0118387416, 0.039984934, 0.00711158197, -0.00638208212, -0.00855390728, -0.00303055113, -0.0186918732, 0.0202259067, 0.00755345076, -0.00219475268, 0.0218266379, 0.0301137567, 0.00792862196, 0.00340363826, 0.00973778218, 0.00617365353, 0.015573781, 0.00798281375, -0.0154737355, 0.00241151825, 0.00105412735, 0.00363707822, 0.00950434152, -0.00521905115, -0.0183083639, -0.00507315109, 0.0046187765, -0.00618199073, 0.00349743105, -0.0191587526, 0.00511900522, -0.00912083313, -0.00258659828, -0.0106798792, 0.00792862196, 0.0126140956, 0.027429197, -0.033648707, 0.0173579305, -0.0238108784, -0.0172245353, 0.0135895414, 0.00877067354, -0.000823292765, -0.00404351391, -0.0167659931, 0.0238942485, 0.00696568238, 0.0245945696, 0.00226978702, 0.00239901268, 0.0173746049, 0.00494392542, -0.019375518, 0.00789527316, -0.0184250847, 0.0161323696, 0.0234273691, -0.00654048799, 0.000333746226, -0.00616531633, -0.00475633936, -0.0089457538, 0.00879568513, -0.00547750248, -0.0163824838, 0.00103432673, 0.00482303649, -0.0102796964, 0.00620700233, -0.0181249473, -0.00065290241, -0.000843093498, 4.69289917e-05, 0.00624451926, 0.00844969321, -0.0272791293, -0.00417273957, -0.00271373964, -0.0186751988, -0.00227812398, -0.0125890849, 0.011855416, -0.00401850231, -0.0141397929, 0.0120555069, 0.00249905838, -0.0117887184, 0.00204051542, -0.013247719, -0.00931258779, 0.00331818243, 0.0217599403, -0.00387260248, -0.000550772471, -0.00864561647, 0.00514401682, 0.00812871382, 0.0107632503, -0.00343907112, 0.00502729649, -0.0215931982, 0.00350785255, 0.00609445106, -0.00535661355, 0.0144482674, -0.00152986555, -0.0150151933, 0.00339113246, -0.017908182, 0.0352160893, -0.000484856922, 0.0020353049, -0.0075993049, 0.00792028476, 0.00245320401, -0.0129475817, -0.0249280538, -0.00788693596, -0.00216557272, -0.0042686169, 0.0178581588, 0.0139563754, 0.0277960319, -0.0224602614, -0.00917919353, -0.00457709096, 0.0173412561, -0.00584433647, -0.0143315475, 0.0119387871, -0.000592458178, -0.00272832974, -0.0122972848, 0.0165909119, -0.0074367309, -0.00248863688, -0.0210929699, -0.0159239415, 0.0125557361, 0.0013245634, -0.0159322787, 0.0103213815, -0.0117136845, -0.00957937632, 0.0122889476, 0.0171411633, -0.0123389699, -0.00346616679, 0.00215723552, -0.00713659357, 0.00993787311, -8.57325267e-06, 0.0028742298, -0.00377672538, 0.00373087102, 0.00451873103, -0.0146066733, -0.012797513, 0.0149818445, -0.00770351943, 0.00751176476, -0.00909582153, 0.0146400211, 0.0175580215, -0.0262286495, -0.0143565582, 0.0162657648, 0.00779105909, -0.00490223942, -0.020809507, 0.0144482674, 0.043253094, 0.0124640269, 0.000223669893, -0.00959605072, 0.0213597585, 0.00828295108, 0.0328650139, 0.0109716794, 0.0030638997, 0.00653631939, 0.00994621, 0.0168660376, -0.00136103842, 0.0216765702, 0.0231105573, -0.0182583407, -0.03981819, 0.00370169105, 0.00634873379, 0.0103463931, -0.00604025926, -0.0124056675, 0.00768684503, -0.00777855329, 0.00654048799, -0.00846636761, 0.00556087354, -0.00799532, 0.0234940667, -0.00304722553, 0.0102046616, 0.00250322698, -0.0165408906, -0.0113051645, 0.0211763401, -0.00793279056, -0.00812454522, 0.0336153582, -0.00776187936, -0.00855390728, 0.0088540446, -0.00651130779, 0.00293884263, 0.0206094142, -0.0089457538, -0.00314101833, -0.00337237399, -0.0138396556, 0.0168493632, -0.000944181345, -0.00193525909, -0.00663219672, 0.00241360255, 0.00756595656, -0.00897910167, -0.00898743887, 0.0119137764, -0.006131968, -0.00243236125, -0.0200424902, 0.0152736446, -0.0321480185, -0.00569009967, -0.00414355937, -0.00560672814, -0.0275292434, -0.0115469415, -0.00801616162, 0.000448642444, -0.016107358, 0.00837465934, 0.0112968273, -0.00996288471, -0.00701987371, -0.0118887648, -0.00433948264, -0.00847470481, -0.0171244889, 0.013122662, -0.000856120256, 0.00818290468, -0.0010020202, -0.0148234386, -0.00636540772, 0.00106923841, -0.00190191052, 0.0152569702, -0.0257450938, -0.0163824838, -0.00231564115, 0.0058943592, 0.00731167337, -0.0108132735, 0.0106215188, -0.00481469976, 0.00301387673, -0.00661135372, -0.00175079983, 0.0170744676, -0.0172912329, -0.00687814225, -0.00724080764, 0.00799532, -0.0232439525, 0.0145733245, -0.019292146, 0.00489390222, -0.00713242497, 0.0234106947, 0.00659884792, 0.00416857097, 0.000522895134, 0.00616948493, 0.0125473989, -0.00802866742, 0.0279127508, -0.00195818627, -0.017741438, 0.0117887184, -0.00343281822, -0.00731167337, 0.00387468678, -0.0326815955, -0.0113218389, 0.00203426275, -0.00749509083, 0.0059026964, 0.00778272189, -0.0120971929, -0.00828295108, 0.0218433123, 0.0144149186, 0.00964607298, 0.0821708739, 0.0116886729, -0.00648629665, -0.0500895493, 0.016307449, -0.014389907, -0.01263077, 0.0537245423, -0.00433531404, 0.019825723, 0.002759594, 0.000904058863, -0.00372878672, -0.000728457759, -0.0174913239, -0.00600274233, 0.0310808662, 0.000390021916, -0.0152736446, -0.00269081257, -0.00784941949, -0.00321396836, 0.019175427, -0.00254282821, 0.0028679769, 0.00642376812, -0.00873732474, 0.00433948264, -0.00511483662, 0.00749925943, -0.0103797419, 0.00879568513, 0.0155987926, 0.000549209246, -0.0125223873, 0.0107132271, 0.00549000781, -0.0170744676, 0.0072199651, -0.0078786, 0.0308307521, 0.0179582033, 0.0110883992, 0.00250739558, 0.0111134099, -0.000972319162, 0.00952935312, -0.00779522769, 0.010054593, -0.0177581124, 0.00795363355, -0.0106632048, 0.00912917, -0.0161156952, -0.0177247636, 0.0120971929, 0.0170744676, -0.00410395814, -0.00958771352, 0.0148567874, 0.00370794395, 0.00535661355, -0.00951267872, 0.0185418036, 0.00339738536, -0.0245612208, -0.0059235394, 0.00619032793, -0.0229438152, 0.00422901521, 0.00506481389, -0.0205593929, 0.0157822091, -0.0121388789, -0.00646545365, 0.0255616773, -0.0216098726, -0.0015350763, 0.00828295108, -0.0221434496, -0.0261286031, -0.00280127977, -0.00564424507, -0.0233940203, -0.0106882164, -0.0107799247, -0.0212763865, -0.00415189657, -0.021543175, 0.0266455058, -0.000462711381, 0.0178581588, -0.0260452311, -0.00145274703, -0.00840384, 0.0151319131, -0.00657800492, 0.00210512825, 0.0198423974, 0.00797864515, 0.0108299479, 0.00292008393, 0.00180499128, -0.0225603059, -0.00921254233, 0.0295635052, 0.00205927412, 0.0159322787, 0.011446896, 0.00614447379, 0.00200925115, -0.00601524813, -0.00339530106, 0.0347492099, -0.00883737, 0.00402475521, 0.0250447746, 0.0266288314, 0.0121638905, 0.00159239408, 0.00114531489, -0.0165408906, -0.0106465304, -0.0044645397, 0.00459376536, 0.0015350763, 0.0324648321, 0.00399349118, 0.0228771176, -0.0165659022, 0.00552335661, -0.00361415115, -0.00478135096, -0.00784525089, 0.0057401224, 0.0207928326, 0.0042477739, 0.00616948493, 0.0160489976, -0.00233648415, -0.00436449377, 0.0172078609, 0.0241610371, -0.00599023653, 0.0176413935, 0.0100129079, 0.00333694112, -0.00556504214, 0.000135087757, -0.0059193708, -0.00107236486, 0.00707406504, -0.00379756815, -0.0305806361, 0.0141314557, 0.00274083554, -0.00059350027, -0.0238942485, 0.0115969647, 0.00536078215, -0.00265537971, 0.00382049545, 0.0308140777, -0.010263022, 0.00209574914, -0.0214764774, -0.0108883074, 0.00597356213, -0.0100629302, -0.000902495638, -0.000734189583, 0.0104547758, 0.00124848704, 0.0140981069, -0.00559422234, -0.000327493355, -0.010546485, -0.0110550504, 0.00504397089, -0.0028492182, 0.00154237123, 0.00867062807, 0.0263787173, 0.0542581193, -0.0103297187, -0.018441759, -0.00635707099, 0.00300553977, -0.00871231314, 0.00233231555, -0.00864561647, 0.0231605805, -0.0151735982, -0.000984303886, -0.00352661102, -0.00413105404, 0.0243944768, -0.011488582, -0.0142398383, 0.00188732054, 0.0170577932, -0.00451039383, -0.00672807358, -0.00554836821, -0.0188586153, 0.0205260441, -0.00290549407, -0.0113385133, -0.00802449882, 0.00131205772, 0.00830379315]
|
15 Dec, 2020
|
How to design menu using jQuery EasyUI Mobile ?
15 Dec, 2020
In this article, we will learn how to design menu list using jQuery EasyUI Mobile plugin. EasyUI is a HTML5 framework for using user interface components based on jQuery, React, Angular and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers.
Downloads for EasyUI for jQuery:
https://www.jeasyui.com/download/index.php
Example 1: The following example demonstrates simple menu using jQuery EasyUI Mobile plugin.
html
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0,
maximum-scale=1.0, user-scalable=no">
<!-- EasyUI specific stylesheets-->
<link rel="stylesheet" type="text/css"
href="themes/metro/easyui.css">
<link rel="stylesheet" type="text/css"
href="themes/mobile.css">
<link rel="stylesheet" type="text/css"
href="themes/icon.css">
<!--jQuery library -->
<script type="text/javascript" src="jquery.min.js">
</script>
<!--jQuery libraries of EasyUI -->
<script type="text/javascript"
src="jquery.easyui.min.js">
</script>
<!--jQuery library of EasyUI Mobile -->
<script type="text/javascript"
src="jquery.easyui.mobile.js">
</script>
</head>
<body>
<div class="easyui-navpanel" style="position:relative">
<!-- m-title,m-toolbar class is used here-->
<header>
<div class="m-toolbar">
<div class="m-title">Menu</div>
<div class="m-right">
<!-- Icons taken from themes folder-->
<a href="javascript: void(0)"
class="easyui-linkbutton"
data-options="iconCls: 'icon-search',
plain: true">
</a>
<!-- 'easyui-menubutton' class
is used here-->
<a href="javascript:void(0)"
class="easyui-menubutton"
data-options="iconCls:'icon-more',
menu: '#menuID',
menuAlign: 'right',
hasDownArrow: true">
</a>
</div>
</div>
</header>
</div>
<div id="menuID" class="easyui-menu"
style="width:150px;">
<div>New tab</div>
<div>New Window</div>
<!-- EasyUI Menu separator class -->
<div class="menu-sep"></div>
<div>History</div>
<div>Bookmarks</div>
<div>Downloads</div>
<div class="menu-sep"></div>
<div>Edit</div>
<div>Cut</div>
<div>Copy</div>
<div>Paste</div>
<div class="menu-sep"></div>
<div>Settings</div>
<div data-options="iconCls: 'icon-remove'">
Clear
</div>
<div>Exit</div>
</div>
</body>
</html>
Output:
Example 2: The following example demonstrates a menubar using the plugin.
html
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0,
maximum-scale=1.0, user-scalable=no">
<!-- EasyUI specific stylesheets-->
<link rel="stylesheet" type="text/css"
href="themes/metro/easyui.css">
<link rel="stylesheet" type="text/css"
href="themes/mobile.css">
<link rel="stylesheet" type="text/css"
href="themes/icon.css">
<!--jQuery library -->
<script type="text/javascript" src="jquery.min.js">
</script>
<!--jQuery libraries of EasyUI -->
<script type="text/javascript"
src="jquery.easyui.min.js">
</script>
<!--jQuery library of EasyUI Mobile -->
<script type="text/javascript"
src="jquery.easyui.mobile.js">
</script>
</head>
<body>
<div class="easyui-navpanel"
style="position:relative">
<!-- m-title,m-toolbar class
is used here-->
<header>
<div class="m-toolbar">
<div class="m-title">
<!-- easyui-menubutton class
is used here-->
<a href="https://www.geeksforgeeks.org/"
class="easyui-linkbutton"
data-options="plain:true,outline:true"
style="width:70px">
Home
</a>
<a href="javascript:void(0)"
class="easyui-menubutton"
data-options="menu:'#menuID1',outline:true"
style="width:70px">
History
</a>
<a href="javascript:void(0)"
class="easyui-menubutton"
data-options="menu:'#menuID2',outline:true"
style="width:95px">
Bookmarks
</a>
<a href="https://www.geeksforgeeks.org/about/"
class="easyui-linkbutton"
data-options="plain:true,outline:true"
style="width:70px">
About
</a>
</div>
</div>
</header>
</div>
<div id="menuID1" class="easyui-menu"
style="width:150px;">
<div>New tab</div>
<div>New Window</div>
<!--EasyUI Menu separator class-->
<div class="menu-sep"></div>
<div>Edit</div>
<div>Cut</div>
<div>Copy</div>
<div>Paste</div>
<div class="menu-sep"></div>
<div>Settings</div>
<div data-options="iconCls:'icon-remove'">
Clear
</div>
<div>Exit</div>
</div>
<div id="menuID2" style="width:100px;">
<div>History</div>
<div>Downloads</div>
</div>
</body>
</html>
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.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?/How to design datalists for mobiles using jQuery EasyUI Mobile ?/How to design menu using jQuery EasyUI Mobile ?
|
https://www.geeksforgeeks.org/how-to-design-menu-using-jquery-easyui-mobile?ref=asr10
|
CSS
|
How to design menu using jQuery EasyUI Mobile ?
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, How to design menu using jQuery EasyUI Mobile ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, How to design datalists for mobiles using jQuery EasyUI Mobile ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0278855264, 0.0164471883, -0.0106328214, 0.0186879896, 0.0647928417, 0.0255275592, -0.00156984234, 0.0189809054, -0.0368780233, 0.00844328, -0.00633063, -0.0113138491, 0.0216171406, -0.0139354402, 0.0281637963, -0.026464887, -0.0299505778, -0.0284713563, -0.0216610786, 0.011687316, -0.0162567925, -0.0107206963, -0.0182779077, 0.00515164575, -0.00905108, 0.0177067239, 0.0203576051, 0.0156709626, 0.0125733847, 0.0185122397, -0.00960029569, 0.0215292666, 0.0313419253, -8.00367852e-05, -0.0286763981, 0.00339598558, 0.0134814214, -0.014601822, -0.0442301929, 0.0309904274, 0.0133056724, -0.00502715679, 0.0125733847, 0.00302434945, 0.0108451853, -0.0111747142, -0.0178678259, -0.043761529, -0.00592787145, -0.00592054846, 0.0327479169, 0.0618636906, 0.0414182097, 0.0141404811, -0.00162018719, 0.0100616366, -0.0189955495, 0.0104277804, -0.0221883263, 0.0560346767, 0.0355013199, -0.0721157193, 0.0132177984, -0.0133056724, 0.00884603895, 0.04045159, -0.0121120429, 0.0269189067, -0.0063855513, 0.0276658405, -0.0155537967, 0.0211045388, -0.0237993598, 0.0120827518, -0.023286758, -0.0223933663, -0.00854580104, -0.0159052946, -0.00243119616, 0.0385476388, 0.00131903368, -0.0250588953, -0.0448746085, -0.0386648066, 0.0177653059, -0.00362116401, 0.00596448546, -0.0499713309, 0.0442887768, 0.00717642205, -0.0301702656, 0.00220052549, -0.0241508577, 0.00178952876, 0.0217635985, 0.0120095229, 0.0420919135, 0.0049685738, -0.0517581142, 7.1741335e-05, 0.0262012649, 0.0222615544, -0.0183511376, -0.0345639922, -0.00467932038, 0.0142356781, 0.0422090776, -0.00295661273, -0.00882407, -0.0411838777, 0.0107206963, -0.00592421, 0.00321291364, 0.0141404811, 0.00142063864, 0.00966620166, -0.0118191279, -0.0752206221, 0.0224080123, 0.0325135849, 0.0111381, -0.0226130523, 0.00322939, 0.0395435505, -0.0637383461, 0.0411252938, 0.0143748131, 0.00743272295, 0.0336266644, -0.00552511262, 0.00902911089, 0.0460169762, 0.0205772929, 0.000160416836, 0.0476280116, 0.0559468, 0.00730823399, 0.0357063636, -0.0245609395, 0.0100836055, 0.00194971671, -0.026230555, -9.45109205e-05, -0.00608531293, -0.014667728, 0.0304631796, 0.0162567925, 0.0381375588, -0.0413010418, 0.0178971179, -0.0379618108, -0.00034348882, 0.00398730813, 0.0110648712, 0.035237696, -0.00345639931, -0.0416232497, 0.00482577784, -0.0141697722, 0.0171208922, 0.0357942358, -0.0314298, 0.0155830886, -0.0229938421, -0.0236529019, 0.0124342497, 0.0129175596, -0.0227302182, -0.0745176226, 0.0426484533, -0.0381961428, 0.00464636739, -0.0376103111, 0.00320559065, -0.022964552, 0.00288704527, 0.0361750275, -0.00255934661, 0.0101421885, -0.0236089639, -0.0138182743, -0.0256593712, 0.0158760026, 0.00951974373, 0.00575212203, -0.00101513427, 0.0111527462, -0.0273729246, -0.0355013199, -0.0213828087, -0.0403344221, 0.0205772929, 0.00859706104, 0.0321620889, 0.0198742952, -0.0364093594, -0.00392872514, 0.0473058037, -0.0272996966, 0.0278708804, 0.0279880464, -0.0184829496, -0.0130200805, 0.0216171406, 0.0207530409, 0.040832378, -0.00198266981, -0.0316055492, 0.0303167216, -0.0168572702, -0.0628010184, -0.00585830398, -0.00651736325, 0.00824556313, -0.026069453, 0.00253920862, -0.0106035303, -0.0198010672, -0.0199914612, -0.00348202931, 0.020328315, 0.026215909, 0.00635259831, 0.0408616699, -0.0919753686, -0.0455483124, 0.0141990641, -0.0368487313, 0.0134521304, 0.00590224098, -0.0049978653, -0.023184238, -0.011636056, -0.0240629837, 0.0447281487, 0.00831146818, 0.0132104754, -0.0166082922, -0.0411838777, 0.040422298, -0.00475621037, -0.00715445355, -0.0473936796, -0.00688350713, 0.0516116582, 0.00945383776, 0.0119948769, -0.00198266981, -0.00588393398, -0.00269298907, -0.00140965439, -0.00826753117, -0.0253664553, -0.00243302691, 0.0237700678, 0.0288521461, 0.0180582218, -0.0150558408, 0.0140379602, 0.0230231341, 0.00424727052, 0.0220272224, -0.0104717184, 0.0270067807, 0.0169890821, 0.0106474673, 0.0434979051, -0.0185561776, 0.0122658238, -0.0275193825, 0.0265966989, -0.0355891958, 0.0516702384, 0.0636797622, -0.00926344283, -0.0108085703, -0.0384597667, 0.0170916021, 0.0248099174, 0.0207969788, 0.0287496261, 0.00372917647, 0.0724086389, 0.0211777687, 0.0258644111, 0.00949777476, -0.0107719563, -0.0061292504, -0.0174870379, 0.0371416472, -0.0167254582, -0.00768902386, 0.0361164436, 0.00348386, 0.0158760026, 0.0368194394, 0.0157002546, 0.01754562, 0.00811375119, 0.014462688, -0.00628303085, -0.0118410969, -0.00493196, -0.0193616934, 0.00559468, 0.0233306959, 0.028925376, 0.00431317603, -0.0386941, -0.0179996379, 0.0379618108, 0.00882407, -0.0512015745, -0.0415060818, -0.0211484767, 0.0186147597, 0.0595496595, 0.0162860844, -0.032249961, -0.000289940275, 0.0057960595, 0.00413010409, -0.0544236414, 0.0538671054, 0.0397778824, 0.00571550755, -0.0120022, -0.00293647475, 0.000486056146, 0.011526213, -0.0133129954, -0.0302581396, 0.0487117954, 0.0198010672, 0.00239824317, -0.0419747457, 0.0305510554, 0.0159931704, 0.0240629837, 0.00471959589, -0.0480088, -0.0140965441, 0.00971746165, 0.00337401684, 0.0075865034, -0.0443766527, -0.0325721689, 0.0170476642, 0.0562104248, -0.0130347265, 0.00147189887, -0.00902911089, 0.0527247339, -0.0152315898, 0.0155391507, -0.00788674131, 0.000272777281, -0.0033721861, -0.0368194394, 0.0215292666, 0.00930005778, 0.0166229364, -0.0127491336, -0.0148654459, 0.0219100565, -0.0167840403, -0.026274493, 0.00131354155, -0.0228180941, 0.00266186683, 0.000161103351, -0.0211777687, -0.0275779646, 0.0124342497, -0.0420626216, 0.0141478041, 0.0196546093, 0.00859706104, -0.023257466, -0.0151730068, -0.0181900337, 0.0260987431, -0.038049683, 0.0406566299, 0.0398071744, -0.00203576055, 0.00380423618, -0.0249270834, -0.0114017241, 0.0224080123, -0.00600842293, 0.0328357928, -0.00726429699, 0.0228913222, -0.00298590423, -0.00694575161, 0.0106035303, 0.000211905834, 0.0305803455, -0.00823091716, 0.0159931704, 0.00903643388, 0.0528126098, -0.00275889505, -0.00607432891, -0.0217489526, -0.011606765, -0.0280466303, 0.00560566457, -0.0137230773, 0.0426777452, -0.0228327401, -0.0147116659, 0.0551266409, 0.0163593143, 0.0411252938, 0.00879477896, 0.0781497732, 0.0315762572, 0.00518459873, 0.0159345865, 0.00316714542, -0.00609263591, 0.0109477052, -0.0222615544, 0.0230084881, -0.0441423208, -0.0198010672, -0.0126685817, -0.00906572491, 0.000829316152, 0.00126960431, 0.00663086772, -0.0125660617, 0.00193873246, -0.0166082922, 0.0282663163, 0.00176115264, -0.0538963974, -0.0357063636, -0.0255129132, -0.014631114, 0.0368194394, -0.0126319677, -0.063445434, -0.00603039144, -0.0311954673, -0.0253518093, 0.0114895981, -0.0223640744, -0.0305510554, -0.0483895913, -0.0302288476, -0.0217635985, 0.0564154647, -0.0461341441, -0.0294379778, 0.0156270247, 0.00858241506, -0.00943919178, -0.0041008126, 0.0304338895, -0.0217050165, 0.014689697, -0.0165350623, -0.0371416472, 0.0134081934, 0.0225837622, -0.0250296034, -0.011592119, -0.0109477052, -0.0182046797, 0.0615707748, 0.0134008704, 0.0184829496, -0.000811008969, -0.00245316466, -0.0208116248, 0.00937328581, -0.00185635, 0.011526213, 0.0334509164, 0.0565912165, -0.0155391507, -9.26801949e-05, -0.0323964208, 0.0268603228, -0.0154073387, -0.0123390527, 0.02921829, 0.0355891958, 0.0388405547, -0.0544529334, 0.00797461625, -0.0162714384, -0.0163886044, -0.0549508892, -0.0296723098, -0.00589491846, 0.0305217635, -0.0105522694, 0.0170183722, -0.0483310074, 0.0536913536, -0.000789955666, -0.0212217066, -0.00824556313, 0.031693425, 0.000248062541, -0.0184683036, 0.0150411949, -0.0104424264, -0.0162128564, -0.00316348416, -0.00746567594, -0.0220565144, -0.00880942401, 0.034856908, 0.0018856416, 0.0126319677, 0.00538963964, -0.0047159344, -0.000712150068, -0.0219100565, 0.004404712, 0.0221590344, 0.0389577225, -0.0287789181, -0.0191420075, -0.0519338623, -0.0398364663, -0.0013345948, 0.0123610208, 0.0304631796, -0.0173698701, -0.0032165749, -0.0256593712, 0.0248977914, -0.00373100722, 0.00713614654, -0.0250881854, -0.00529078068, -0.0398071744, -0.00413010409, -0.0309318453, 0.014675051, 0.0100836055, -0.038254723, 0.023389278, 0.0284127742, 0.00749130594, 0.0259229951, 0.0182193257, 0.0106987273, 0.00121285196, 0.00285958452, -0.0253078733, -0.0321327969, -0.0154952137, -0.0281784423, -0.017560266, -0.0110209342, 0.058055792, 0.0130859865, 0.0348862, -0.0435271971, -0.00922682881, 0.0377860591, 0.0133862244, 0.0277097765, -0.00613291189, 0.00238725892, -0.00115793035, -0.00628303085, 0.0276658405, 0.00891926792, 0.0531641059, 0.00630866084, 0.00174009928, -0.0101788025, 0.0164178964, 0.00362116401, 0.0283102542, 0.00510404725, 0.00617684936, 0.0083627291, 0.0344175361, -0.00426923903, -0.0362043194, 0.0272704046, 0.00935864076, 0.00946116075, -0.0127637796, 0.017355226, -0.00837005209, 0.0046903044, -0.0161249805, 0.0171501841, 0.014448042, -0.0330701247, 0.0186586976, 0.0165643543, 0.0252053533, 0.0120168459, -0.0131592155, -0.002921829, 0.0248099174, -0.00676267967, -0.000591780234, -0.00971746165, -0.0427070335, -0.0119729089, 0.0200061072, 0.0122365318, -0.0263916589, -0.0374052711, -0.00145633775, -0.0192298833, -0.017457746, -0.011482276, 0.0069494131, -0.0132763814, 0.0372002311, -0.00769634685, -0.00856044609, -0.0122438548, -0.0126978736, 0.00222066324, 0.0188490935, 0.00266369758, -0.0132544124, 0.0124781877, -0.00540062366, -0.0102959694, 0.0012311592, 0.0095929727, -0.00564594055, 0.00428754603, -0.0119802319, -0.00118539121, 0.00456947694, 0.0156416707, -0.040422298, 0.078677021, -0.0194349233, 0.0150558408, 0.00088561076, 0.00123024383, 0.0182925537, -0.0281784423, -0.00682858564, 0.00532007217, 0.0235357359, 0.00648074877, -0.0205919389, 0.00102886464, 0.00204491429, -0.0184390116, 0.00568621606, 0.0129981115, -0.00968084671, -0.0196546093, 0.0449039, 0.0126612596, -0.00288887601, -0.00474156486, 0.0462806, 0.00987856463, 0.0207091048, -0.000518551446, 0.0201525651, 0.00170531566, -0.0107133733, 0.0123463757, -0.014506625, -0.0154512767, 0.00863367505, -0.000120369834, 0.00996644, -0.00856776908, -0.0302288476, 0.0517874062, 0.0219539944, -0.0139134713, -0.0187612176, -0.0124928327, -0.02911577, -0.00559101859, 0.00656862324, -0.00471959589, -0.00227192347, 0.00510038575, 0.0397485904, 0.0477158837, 0.00237810519, -0.0280026924, -0.00331909535, 0.00908037089, -0.00575944502, -0.00292365975, 0.00727528101, -0.0318398811, -0.0233160499, 0.038020391, 0.0151876528, 0.0186001156, 0.000550589, 0.0163007304, -0.040978834, 0.00535302516, 0.0317520052, -0.0135400044, 0.0138255972, 0.0471300557, 0.00119912159, 0.0105888844, -0.00983462762, -0.0110282572, -0.0453139804, -0.00611460488, 0.0264063049, 0.00287606101, 0.00724965101, 0.0176627859, -0.0172673501, -0.0341246203, 0.017325934, -0.0210898947, -0.0157881286, -0.00734118698, -0.00818697922, 0.0251028314, -0.000181012438, 0.00311588543, -0.0384890549, 0.0210020188, 0.0228180941, 0.0102886464, 0.00772563834, 0.00827485416, 0.0205480009, -0.0169012062, -0.0309904274, 0.00420699455, 0.00483310083, 0.00632330682, -0.0008778302, -0.00492829829, 0.00411912, -0.0413303338, 0.0110062882, 0.0130127575, 0.00352047454, -0.0313126333, 0.00932202581, -0.0104424264, -0.014601822, 0.023301404, 0.0055360971, 0.0307853874, 0.00613657339, 0.0163300224, -0.000412140827, 0.00431317603, -0.0191566534, -0.0283541903, 0.00731555698, -0.00730091101, -0.00192774809, -0.00259229937, 0.00623543235, 0.00815768819, 0.0384597667, 0.00294013624, 0.00413010409, -0.0100177, -0.0385769308, -0.0359114036, -0.0267870948, -0.0415646657, 0.00401293812, 0.0125440927, 0.0315469652, -0.00251357839, -0.00122292095, 0.00238908944, 0.0190394875, 0.00695673563, 0.0104717184, 0.0225691162, -0.00495392829, -0.00408982858, -0.00406053709, 0.00651004026, 0.026069453, -0.0218954105, -0.0246781055, 0.00129523443, 0.00154421234, 0.00223530899, 0.0170476642, -0.0256300792, 0.00698602758, 0.0166229364, 0.00774760684, 0.00549948262, -0.0158174206, 0.00127967331, -0.0411838777, -0.0121925948, -0.00369256223, -0.00121468271, -0.0134374844, 0.0141331581, 0.00518459873, 0.0206944589, 0.0372588113, 0.00950509775, 0.0150704868, 0.0252639353, 0.00369988498, 0.0183657818, -0.014491979, -0.00358454976, -0.0368780233, 0.0185708236, 0.0149972579, 0.0279148184, -0.00667846622, 0.00285409251, 0.026274493, -0.0155830886, -0.0103691975, 0.031869173, 0.0105888844, -0.0167986862, 0.00452187844, 0.0276365485, 0.0255129132, 0.0201379191, -0.0227595102, 0.0339781642, -0.00708488608, -0.0175895579, -0.00621712487, 0.00913895387, -0.00572283054, 0.00107920938, 0.01764814, 0.0179703478, 0.00306828669, 0.0027826943, -0.0010334414, 0.0257472452, 0.0102666775, 0.0249563754, -0.0267724488, 0.0104790414, 0.0439079888, -0.0135839423, -0.00154238159, 0.0165350623, -0.0357063636, 0.0178678259, 0.0265674088, -0.0113577871, -0.0129175596, -0.0339781642, -0.0416818336, -0.0238140058, -0.0246927515, 0.0020412528, -0.00878013298, 0.0401000902, 0.0113431411, -0.0191273615, -0.0236529019, 0.0102227405, 0.0111966832, -0.0343882442, 0.0366144, 0.00764508639, -0.0351205319, -0.0196839012, 0.0153487558, 0.0213388726, -0.0273436327, -0.0226276983, 0.0178092439, 0.00203026854, -0.0197571293, 0.014682374, -0.00252273213, -0.0361750275, -0.00647708727, 0.0183072, -0.0290718321, -0.00944651477, -0.00623909384, 0.0256740171, 0.00765240937, -0.00015126323, 0.0061036204, 0.0244877096, 0.00478916336, 0.00904375687, 0.00826753117, 0.0338609964, 0.0115042441, 0.0130493715, 0.0338024125, 0.0183950737, 0.00558003457, -0.0177360158, 0.00626472384, -0.0144260731, -0.0367315635, 0.0142430011, 0.0367901474, -0.0283688363, 0.00960029569, -0.0166375823, 0.00849454105, 0.0188930295, -0.00426923903, -0.00222066324, -0.0138915032, 0.00652834726, -0.00458778441, 0.00557271158, -0.00263623684, 0.0126026766, 0.0167986862, -0.0192884654, -0.0219539944, -0.00477817887, -0.0110355802, 0.0064111813, -0.0376981869, 0.00842863508, 0.0379911, 0.0138402432, -0.0201672111, -0.00889729895, 0.00774028385, -0.0267285109, -0.0555074289, 0.0320449211, -0.0225984063, 0.0011533536, -0.0123390527, -0.0181460958, 0.000457908842, -0.0316055492, 0.0189516135, -0.0066711437, -0.0258204751, -0.00301702647, -0.00604503741, 0.00311954692, -0.0165057704, -0.0363214836, 0.023198884, 0.00930738, 0.0194935054, 0.00757185789, -0.0163153764, -0.000804143725, -0.00866296701, -0.00133093342, -0.00414841156, -0.0104863644, 0.0345932841, -0.0035021673, -0.0296869557, 0.014601822, 0.0101202196, -0.0220858064, -0.0130713405, 0.0124049587, 0.0124855097, 0.0124049587, 0.011540859, 0.00748764444, 0.0335094966, 0.00919753686, 0.0370830633, -0.0396900102, -0.00742906146, 0.0270214267, 0.0106108533, -0.00933667179, -0.0102520315, -0.0211777687, 0.0109037682, -0.00829682313, 0.0447574407, -0.0111820372, 0.00396167813, -0.0299945157, -0.0162421484, -0.000832977588, -0.00505278725, 0.0371709391, 0.0247366875, 0.017428454, 0.0239165258, -0.0192591734, -0.00476353336, 0.00315433042, -0.0381961428, 0.00246048765, -0.00177945977, -0.00488802232, 0.00630866084, 0.0057704295, 0.0141624492, 0.0183218457, 0.0419454575, -0.0152022988, 0.0271093, -0.0222469084, 0.00020778671, -0.0314005092, 0.011863065, 0.0108158933, -0.00620247936, -0.00655031623, 0.0090730479, 0.0163593143, 0.00448160246, 0.0151876528, -0.0172527041, 0.000843504211, 0.0107573103, 0.00745469145, -0.0224080123, -0.0486825034, -0.000388570304, -0.0222176183, 0.0426484533, -0.00416671857, 0.00998840854, 0.0260840971, -0.0213681627, -0.0122951148, 0.000420379074, 0.0139207942, 0.0020247763, -0.00255568512, -0.000952889735, -0.0155245056, 0.0046683359, 0.00459510693, -0.00626472384, 0.0213242266, 0.0129029145, -0.0368194394, 0.0182193257, 0.00944651477, 0.0033374026, -0.00236529019, 0.0030518102, -0.0143089071, -0.00282113953, 0.0170769561, -0.0193324033, -0.0167108122, 0.000389256835, 0.0314005092, 0.00362665625, -0.00622444786, -0.00200463831, 0.0089265909, 0.0107060503, -0.00117166073, -0.00710319355, -0.0185415316, 0.00977604464, -0.0084139891, 0.00177579839, -0.0129029145, 0.0189955495, 0.0192005914, -0.0110795172, -0.0105742384, 0.000145999918, -0.00759382639, -0.00523952069, -0.0388991386, 0.00240373542, 0.0129541745, -0.00324220513, 0.0274168625, -0.0237554219, -0.0246927515, 0.00885336194, 0.0686007366, -0.00577775203, -0.0268017408, -0.023477152, 0.00294745923, -0.0135692963, -0.0161835644, 0.00830414612, 0.0114383381, -0.00653200876, 0.0195374433, 0.0129468516, -0.00320009841, -0.023081718, -0.0167108122, -0.00607432891, 0.00652102428, 0.0149533208, 0.0239311717, -0.0128150396, -0.0132470895, 0.0186294056, 0.0337731205, -0.00552511262, 0.0120241689, 0.00570452353, -0.0132763814, -0.0284420662, -0.040803086, -0.0134667763, 0.0293940399, 0.0160810445, 0.017457746, 0.00547019113, -0.00122841308, 0.032074213, 0.0102007715, 0.00574113801, -0.01754562, -0.0209434368, -0.0120681059, -0.0160517525, -0.0158174206, -0.00262525235, -0.0252053533, 0.00831879117, -0.00929273479, -0.0219686404, -0.0109696742, 0.00353695103, -0.000918563746, -0.0165643543, -0.00432416052, -0.00963691, -0.0111820372, 0.0122804698, -0.00200280757, -0.0127930706, 0.0228766762, -0.0273436327, -0.0207969788, 0.0133862244, 0.0268163867, -0.0124562187, 0.011511567, -0.00889729895, -0.0185268857, 0.0103325834, -0.00410447409, 0.00701531908, 0.00931470282, -0.00450357096, -0.00213095802, -0.000545096875, 0.00309391669, 0.00701531908, -0.00830414612, 0.0107939253, -0.0040532141, -0.00515164575, -0.00737047847, 0.0136059104, -0.00684689265, 0.00667846622, 0.00107005576, -0.00609629741, -0.0107646333, -0.0187758636, -0.00636724383, -0.014506625, -0.014389459, -0.0370244794, -0.0284713563, 0.0090730479, 0.0190834254, -0.00992250256, 0.00418502605, 0.00276255631, 0.00605602143, 0.0162714384, 0.00426557753, 0.0409202538, 0.0109477052, -0.0187319275, 0.0166375823, -0.00203209906, 0.02891073, 0.00973943062, -0.00137761678, 0.00638921279, 0.0240922738, -0.00550680561, -0.00512601575, -0.00089476438, -0.0252346434, -0.00762311788, -0.00652468577, -0.0242094416, 0.0035021673, 0.0141844181, 0.0149752889, 0.0120827518, 0.0153780477, 0.00393970916, 0.0162860844, 0.0123170838, -0.00677366368, 0.000384680025, 0.0195374433, 8.51856894e-05, -0.0110209342, 0.00630133832, -0.0148727689, -0.0229059681, -0.00940990075, -0.0124562187, -0.0161542725, 0.0174870379, -0.00832611416, 0.0301702656, -0.0456068963, 0.0179264098, -0.0301995557, 0.00860438403, 0.00708854757, -0.00434612902, 0.00940990075, 0.0423555374, 0.0167254582, -0.0138695342, -0.0155977337, -0.0121999178, 0.0244437736, 0.00185085787, 0.0305217635, -0.0192298833, 0.0212656427, 0.014572531, -0.0110795172, -0.0148874149, -0.0155098597, 0.0449624807, 0.0263184309, 0.0219393484, 0.00511503173, 0.0110282572, 0.0159492325, -0.031927757, -0.0137157543, -0.0129468516, -0.00201562257, -0.0102007715, 0.0158760026, 0.00100048841, -0.00626472384, -0.0113211721, -0.00601574592, 0.0310783014, -0.0269628428, 0.0199475251, -0.00215292675, -0.0113724321, -0.0138841802, -0.0138329202, 0.000526332, 0.00272228057, -0.0189516135, -0.0341246203, -0.0194202773, 0.0121706259, -0.0178092439, -0.00127051969, 0.0182925537, 0.0330994166, 0.0167986862, 0.0055397586, -0.0107426643, 0.0156856086, -0.0123536987, 0.00981265865, -0.00326783513, 0.000119568896, 0.00430219201, -0.00123939745, 0.00355525827, -0.0265820529, 0.0057960595, 0.00348752155, 0.0468078479, -0.0211191848, -0.00320192915, 0.0188637376, 0.0172673501, -0.00653567025, 0.00246048765, 0.00603405293, 0.00504912576, -0.0200354, 0.0179117639, 0.00461341441, 0.0118850339, 0.0280466303, -0.00448160246, 0.00834808312, 0.00827485416, -0.00394703215, -0.00592787145, -0.0351205319, -0.0137011083, -0.00507475575, -0.0190248415, 0.0273582786, 0.0236675479, -0.00125953532, -0.00378592894, 0.0176042039, 0.00193140958, -0.0166229364, -0.0288667921, 0.0111234542, 0.0142869381, -0.0003993258, 0.00181882025, -0.00578873651, 0.00531641068, -0.000127463878, 0.0154366307, -0.0214706846, -0.0242094416, 0.00752792042, 0.0141404811, 0.00177030615, 0.0274607986, -0.00823091716, 0.0075425664, -0.00192774809, 0.00156435021, -0.0227595102, -0.0103252605, -0.0397778824, 0.00835540611, 0.0107206963, -0.0186586976, -0.0154366307, -0.0170476642, -0.0073045725, -0.0108598312, -0.0119655859, -0.0162860844, -0.0238432959, -0.026128035, -0.005799721, -0.00279917079, -0.00824556313, 0.00474522635, -0.0114310151, 0.0219539944, -0.0160517525, 0.0147043429, -0.0131738605, -0.0040788441, -0.00839202, -0.000231586077, 0.00625740085, 0.00532739516, 0.0142576471, 0.00327881938, -0.0082895, -0.00887533, 0.0206798129, 0.0138988262, 0.0160371065, 0.00517361471, 0.00811375119, -0.0102886464, 0.0212363508, 0.0139207942, 0.00614023488, -0.000197832182, -0.00768170087, 0.0169451442, -0.0193324033, -0.03447612, 0.022964552, -0.0069970116, -0.0157441925, 0.0055141286, -0.0138255972, 0.0122145638, -0.017355226, 0.00129798043, -0.023067072, 0.0141844181, -0.0129981115, 0.00403490663, -0.00225910847, 0.0101128975, -0.0111673921, -0.014462688, -0.00870690402, -0.0118484199, -0.00622810936, -0.00956368074, -0.000882864697, 0.0187905096, -0.0274461545, 0.00445963396, 0.0164764803, 0.0222908463, -0.00885336194, 0.0167108122, -0.00616220338, -0.0172673501, 0.0134448074, -0.00140965439, 0.00529444218, -0.0303167216, -0.00731921848, -0.023169592, 0.00211082, -0.0178678259, 0.00452187844, 0.00163757906, -0.0105522694, -0.000226894859, -0.00883139297, -0.0247952715, 0.0142137101, -0.0130420486, -0.0434393249, -0.0178971179, -0.00486971531, 0.0178092439, 0.0172819961, 0.0357356519, 0.000521297508, 0.0232281741, 0.00780619, 0.0210166648, -0.00241105817, 0.00538231665, 0.0165350623, -0.0113577871, 0.0113431411, -0.00556905, -0.0270214267, -0.00136297103, -0.000888814568, 0.0280905664, 0.00979069062, -0.0163007304, -0.0100909285, -0.00336669409, 0.0187319275, -0.00256300787, 0.0082895, -0.0148068629, 0.00613657339, -0.0312833413, -0.0142722931, -0.00651004026, -0.00419234857, -0.0060999589, -0.0119436169, 0.00993714761, 0.00350399804, 0.00485140784, -0.00183438137, -0.0075425664, -0.0194495693, 0.0252785813, 0.0248099174, 0.00340147759, 0.00825288519, -0.0281198584, -0.00258680736, -0.0301995557, -0.0120973978, -0.00295295124, -0.00889729895, 0.0193909854, -0.0174431, -0.00711783906, 0.00495392829, 0.0224958863, 0.0164032504, -0.000437313225, -0.0229791962, 0.00274791056, -0.0187905096, 0.01723806, 0.0166668743, -0.0132983495, -0.0181900337, -0.00599743845, 0.0174723919, -0.0107206963, 0.0125807077, 0.0417111218, 0.00573381502, 0.0195813812, -0.0160224605, -0.0122511778, -0.0206505209, 0.00566790905, -0.0185561776, 0.0315469652, -0.00549948262, -0.0316348411, 0.0128663, -0.00488802232, -0.0032165749, -0.00832611416, -0.000884695444, -0.00580338249, -0.0100762825, -0.00948313, 0.00546652963, 0.0130933095, 0.0219100565, 0.00274608, 0.026128035, 0.0183511376, -0.00151766685, 0.0102666775, 0.00854580104, 0.00964423269, 0.00137120928, -0.000413742702, 0.0049502668, 0.0376103111, 0.00577775203, -0.0242387317, -0.00421431754, -0.00580338249, -0.00823091716, 0.00209800503, -0.0118923569, 0.00510404725, -0.0225105323, -0.00649905577, -0.0137816602, -0.00567889353, 0.00164490193, 0.0216757245, 0.00972478464, 0.0100103766, -0.0102813235, 0.0206944589, -0.0040788441, 0.00815768819, -0.0314005092, 0.0024842869, -0.01141637, 0.00179959775, 0.00337950909, -0.0281491503, 0.0119509399, 0.00225361623, -0.00424727052, -0.00653933175, 0.0253811013, 0.0157881286, 0.0132251214, -0.00458778441, 0.049531959, 0.00439006649, -0.00685787713, 0.00696772, 0.00512967724, 0.017428454, -0.0198450051, -0.00871422701, 0.00575944502, -0.0170037262, -0.00904375687, -0.020299023, 0.0104497494, 0.00227009272, -0.00568255456, -0.00359736476, 0.00173369178, -0.0135473274, -0.0128443316, -0.00411912, 0.0209580828, -0.005799721, 0.0129614975, 0.0142942611, 0.00200829981, 0.0287789181, -0.0377274752, -0.0282516703, -0.00180051313, 0.0237554219, 0.00681027817, -0.00963691, -0.0228620302, 0.00649539428, -0.00255202362, 0.00856776908, 0.004335145, 0.0236821938, -0.0126392907, 0.00189662585, -0.00486239232, 0.0014581685, -0.0045768, 0.023389278, -0.0100543136, 0.0133569324, 0.0200354, 0.00389577216, -0.00255019288, -0.0170916021, -0.020328315, -0.00394703215, -0.00677000219, -0.00300970371, 0.00375663745, 0.00767437788, -0.00252273213, -0.0210459568, 0.00500152679, 0.0021547575, -0.00935864076, 0.00152773585, -0.011767868, 0.00651736325, -0.00693110563, 0.00213095802, 0.00119179871, -0.00443400396, 0.00656862324, -0.00445231097, 0.0192298833, 0.00345639931, -0.00712516205, -0.0144114271, 0.0131811835, -0.0100177, -0.00835540611, -0.00353145879, -0.00885336194, -0.0214267466, 0.00820894819, 0.0104936864, -0.00355891953, -0.00134283304, -0.00540062366, -0.0017300304, 0.0023579672, 0.0152755277, 0.0247806255, 0.0390748866, 0.0213681627, -0.00192591734, 0.00269665057, -0.00684323115, -0.00607432891, 0.0154659227, -0.0100323455, 0.0177945979, -0.00245499541, 0.000672789582, 0.0212802887, -0.00724965101, 0.0414182097, -0.0306389295, 0.0131665375, -0.00190944097, 0.00419234857, -0.00833343714, -0.00397632364, -0.0162714384, -0.00519192172, -0.0126466136, -0.00281198579, -0.0123756668, 0.00375663745, 0.000954720483, -0.0158760026, -0.00884603895, -0.0228620302, -0.00185818074, -0.0223347843, 0.00533837918, -0.000559742621, -0.0364093594, 0.00294013624, -0.00328065013, -0.0193616934, 0.0125221247, -0.0168572702, 0.0122804698, 0.00435345201, -0.00924147479, 0.0103179375, 0.00861170702, -0.00448892545, 0.00667480519, 0.0192298833, -0.0130420486, -0.00134008704, 0.0253518093, -0.0141111892, 0.00366327073, 0.00768902386, -0.0241655037, 0.00593153248, 0.0120241689, -0.00806981325, -0.00618783338, 0.00192408671, -0.0099444706, -0.00605968293, -0.0220565144, -0.00307927094, 0.00151217473, -0.00700433459, 0.00342161558, 0.0241947956, -0.0157588366, -0.0111747142, -0.017530974, 0.00355708878, -0.00724232802, 0.0220272224, -0.00300787296, -0.0173991621, 0.0158906486, 0.000682400889, -0.00480014784, -0.0259815771, 0.00914627686, -0.020284377, 0.0272264667, -0.00874351896, 5.55509105e-05, 0.0135326823, 0.00323854364, 0.00707024056, -9.8687251e-06, 0.0105888844, 0.00434612902, -0.0248831455, 0.0246341676, 0.0214413926, -0.00987124164, -0.00388112641, 0.00274791056, 0.00256483862, -0.0161103364, 0.00361384125, -0.0167254582, 0.0177945979, 0.0195081513, 0.00483676232, -0.00125587394, -0.000678281765, 0.011533536, 0.00769634685, -0.00182614313, -0.014462688, 0.00930738, -0.0229938421, 0.00378226745, -0.00631964533, 0.000555623497, -0.0136791393, 0.0075132749, -0.00796729326, -0.00812839624, -0.00847989507, 0.00241838116, -0.0314005092, -0.00640019681, 0.0157881286, 0.0166229364, -0.00439006649, 0.0156856086, -0.00431317603, -0.00973210763, 0.00790871, 0.00289802975, -0.00776225282, 0.00721669802, -0.00184994249, 0.00722402101, -0.00399096962, -0.0194788612, -0.0171941221, -0.00500152679, 0.0130420486, -0.00765973236, 0.0049466053, 0.00664551323, 0.0233306959, 0.0111161312, 0.00114053849, -0.0120168459, -0.000534112565, 0.00816501118, -0.000679197081, -0.0246634595, -0.0159345865, 0.0150558408, -0.0123536987, 0.0280026924, -0.014587177, -0.0074254, 0.0226862822, -0.00849454105, -0.0153487558, -5.66736571e-06, 0.00576676801, 0.000681027828, -0.00245499541, -0.0104424264, 0.0134374844, 0.0119143259, 0.00903643388, -0.0113504641, -0.00268749683, 0.00854580104, 0.00440105097, 0.00797461625, 0.0138988262, -0.0109696742, 0.0195374433, -0.0161249805, -0.0085091861, 0.0196253173, -0.0268163867, 0.00713614654, -0.0119143259, -0.00847989507, -0.00110209337, 0.00495392829, 0.0109843202, 0.00761579489, -0.0106035303, 0.0154512767, -0.0328650847, 0.00321474415, 0.00713980803, 0.00357173453, 0.00849454105, -0.00768170087, 0.00472325739, -0.0154219847, 0.00942454673, 0.0187612176, -0.00741807744, -0.00112406211, 0.0169744361, 0.00156251946, -0.0240336917, 0.00396900065, 0.00693842862, 0.00552511262, -0.0196692552, -0.032308545, 0.0165204164, 0.00690913713, -0.0197131932, 0.0220711604, 0.00653200876, 0.0168865602, -0.0121852718, -0.00540428516, 0.0246341676, 0.026069453, 0.0026014531, 0.0285738762, 0.0165350623, 0.0273436327, 0.0137011083, -0.0231403, 0.0367608555, 0.00110300875, -0.0142137101, -0.02334534, 0.00955635775, -0.00726429699, -0.00637456682, -0.00297308923, -0.000732745684, 0.000945566862, 0.00392140215, -0.00694209, 0.00668578921, 0.0211777687, 0.0130127575, 0.0100909285, -0.00765240937, 0.000354930846, 0.00206871354, -0.00603405293, -0.0321620889, 0.017618848, -0.00319277565, 0.00143803051, -0.00212363526, -0.00499054277, 0.0162567925, -0.0168719143, 0.00673338817, -0.0292768739, -0.0102593545, -0.0200793371, -0.00399829261, -0.0294672679, 0.00308476319, 0.000231471655, 0.017428454, 0.0162714384, -0.00171172316, 0.000716726878, -0.00206688279, 0.00572649203, 0.0073302025, 0.00279734, -0.0244584195, -0.0079380013, -0.0103472294, -0.0121852718, -0.0100103766, -0.00931470282, -0.00446329545, -0.000520382135, -0.00594984, -0.0222762, -0.0105449473, 0.0222615544, 0.0135180363, 0.00237627444, -0.0174723919, -0.0123683438, -0.00963691, 0.00291999825, -0.0108525082, 0.00687984563, 0.0101495115, 0.00730091101, -0.0249417294, 0.0221150964, 0.00309574744, -0.00171996141, -0.0046427059, -0.00939525478, 0.0144773331, 0.00482577784, -0.00459876843, 0.00304265646, -0.0196839012, -0.0217635985, -0.00648807175, -0.00795997, -0.000150119042, 0.0018856416, 1.47029696e-05, -0.00439372798, -0.0148434779, -0.0111307772, -0.0147482799, -0.0117898369, 0.0211631227, 0.029130416, -0.000470952713, 0.011665348, 0.0112552661, 0.00646610279, -0.00023959548, 0.00918289088, 0.0315469652, 0.000836639, 0.0138988262, -0.0207530409, 0.00351315155, -0.00380789745, -0.00995911658, -0.00742906146, 0.00246781041, -0.0107646333, -0.0105742384, 0.00149844424, 0.0143674901, 0.0200061072, 0.0273875706, -0.0180875137, 0.0207091048, 0.0300238077, -0.0210166648, -0.0139574092, -0.00279367855, -0.0130640175, 0.0122145638, 0.0046427059, 0.0136571713, 0.00919021387, 0.020196503, -0.00558369607, -0.0274607986, 0.00718008354, 0.0242680237, -0.00126045069, 0.00333557185, 0.0089778509, 0.00372368447, -0.000866388204, 0.00244218041, 0.00743272295, -0.0089778509, 0.00327881938, 0.000999573153, 0.0113724321, -0.00231219921, -0.00719106803, -0.014470011, 0.000987673411, -0.00169982354, 0.00705193309, -0.00224812422, -0.00377494446, -0.00311222393, -0.00285775377, 0.00827485416, -0.0131079545, -0.0163153764, -0.00968817, -0.00190577947, 0.011687316, 0.00172545353, -0.00579239801, -0.0214267466, 0.0170916021, -0.00711417757, 0.00386648066, -0.00272411131, -0.0171941221, 0.0217635985, -0.00275157206, 0.0433514491, 0.0210166648, -0.0250442494, -0.0156709626, 0.00744736893, -0.00720937504, 0.0221736804, -0.023594318, 0.0164325424, -0.00404589111, -0.0299066417, 0.0109110912, -0.00586196547, 0.00240190467, -0.00336303259, 0.0176042039, -0.0245462935, -0.00652834726, 0.00788674131, -0.0338317044, -0.000697504322, -0.00115701498, -0.00726429699, -0.00864099804, -0.0185122397, 0.00664551323, -0.00779154431, 0.00887533, 0.00118630659, -0.0026270831, 0.00921218283, -0.00642582728, -0.0120461369, 0.0156709626, -0.0178971179, -0.00155702734, 0.0124415727, 0.0285445862, -0.00156801159, 0.0104058124, 0.0147189889, 0.00921950582, -0.0128370086, -0.00606334442, -0.00513700023, -0.0109330593, -0.0255129132, -0.00057393068, -0.00613291189, -0.000221974798, 0.00744370744, -0.00198266981, -0.00752792042, -0.00753524341, 0.00197168533, 0.029335456, -0.00619881786, 0.0179849938, -0.0107280193, 0.0168133322, -0.000648990215, 0.0119216479, 0.00213828101, 0.000858149957, 0.0123024378, 0.00160645682, -0.011474953, -0.00659425324, 0.00329163438, 0.00842131209, 0.00563861756, 0.000211219318, 0.0074254, 0.0121706259, 0.0179410558, 0.00501983427, 0.0123463757, -0.000734576373, 0.0063635828, -0.00464636739, -0.00640019681, -0.0122877927, 0.00563129457, -0.0192298833, -0.0393092185, -0.00243485766, 0.0061036204, 0.00172362279, -0.00594251696, -0.0147043429, -0.0229352601, 0.0113651091, 0.0189223215, -0.0148141859, -0.0155391507, 0.0159785245, -0.0105962073, -0.00523952069, -0.00877281, -0.0173991621, 0.00595350144, 0.0118557429, -0.0152608817, -0.0279734, -0.0161396265, -0.0144187501, 0.00977604464, -0.000919021433, 0.00143162301, -0.00877281, 0.0295112059, 0.00993714761, 0.020211149, 0.0218514726, 0.00800390728, 0.0202550851, 0.00581070501, -0.00620247936, -0.000646701839, 0.0138915032, -0.00489534531, 0.00150393648, -0.00395435514, 0.00693110563, 0.00493928231, 0.0220565144, 0.0182632618, 0.00960761867, -0.00591322547, 0.00893391296, 0.000762037176, -0.00131628767, -0.00319643714, -0.00178129051, 0.0109769972, 0.0113577871, -0.0189662594, 0.00258497661, 0.0130127575, -0.0132910265, 0.000538231689, -0.00307927094, 0.0073045725, -0.00532373367, 0.00596448546, 0.0151876528, 0.0147702489, 0.0153780477, 0.00603405293, -0.00747666042, 0.0213681627, -0.0060011, 0.0152169447, 0.0186147597, -0.0145945, -0.0201086272, 0.00584731949, -0.00385183468, -0.00731555698, -0.0066711437, 0.000706657884, 0.0218221825, 0.00382254319, 0.00592787145, 0.00684689265, -0.00480014784, -0.000651278649, 0.00404222962, -0.00853115506, -0.0218368284, 0.020372251, 0.00342893857, -0.0198010672, -0.0122438548, 0.0180875137, 0.00411179708, -0.0150851328, 0.0129688205, 0.0224519502, 0.00705193309, -0.00110392412, 0.00891926792, -0.0049685738, 0.0090730479, 0.0247073974, -0.0013767014, -0.0140013462, 0.0112552661, 0.00457313843, -0.0143089071, -0.0169744361, 0.00441203499, -0.0135400044, 0.0192005914, -0.0120461369, 0.00213828101, 0.00110209337, -0.00898517389, -0.0200207531, -0.00179502089, 0.00139592402, -0.014338199, 0.0128663, 0.0245316476, 0.00526881218, -0.0253811013, -2.59447352e-05, -0.00642216578, 0.0057704295, 0.0148361549, 0.0349154919, -0.0125807077, 0.00447427947, 0.00354976603, 0.0228180941, -0.0173845161, 0.00211082, 0.0180289298, 0.00224446272, 0.00259046885, -0.00223347824, -0.00223347824, -0.00633063, -0.00819430221, 0.000806889846, -0.00180966663, -0.011665348, -0.000632971409, -0.00149661361, -0.000825197, 0.000605052919, 0.0275486745, 0.00255385437, -0.0135253593, 0.0133496104, 0.0014352845, -0.0179264098, -0.00234149094, -0.0182046797, -0.00890462194, -0.00089156063, 0.00982730463, -0.00171446928, -0.0149679668, -0.00363580976, -0.0169304982, 0.00824556313, -0.00423994754, -0.00445963396, 0.0191859454, 0.026215909, 0.000502532639, -0.00693842862, 0.0178385358, -0.00833343714, -0.0020632213, -0.00357722677, -0.000633429096, 0.0278269425, 0.00353695103, 0.00605968293, -0.000952889735, -0.00139683927, 0.00311222393, 0.014455365, 0.000574388367, 0.0122218868, -0.00197900832, -0.0149826119, -0.00687984563, -0.00930005778, -0.0210020188, 0.00450357096, -0.00287606101, 0.014609145, 0.00855312403, -0.0187465716, 0.0037932517, -0.00795264728, -0.0032165749, 0.0141258352, 0.00334106386, -0.0163153764, 0.00368890073, -0.00513333874, 0.00276438706, -0.014601822, -0.00541893113, 0.0046390444, -0.0107939253, 0.00251357839, 0.0102886464, -0.00396533962, -0.00613291189, 0.0127491336, -0.00664917473, -0.00861903, -0.00483676232, 0.0180582218, 0.00119912159, -0.0102080945, 0.020606583, -0.0175749119, -0.00249893265, -0.00830414612, 0.0144260731, -0.00393970916, 0.00163208682, 0.00428388454, 0.00225178548, -0.0219979305, 0.0233306959, -0.00314883841, 0.0100323455, 0.00948313, 0.0150704868, 0.00105266401, -0.00491365232, 0.0154659227, 0.0110355802, -0.0156563167, 0.014660405, -0.00154329697, -2.55585674e-05, 0.0006155796, 0.020181857, 0.0103618754, 0.0089265909, 0.00232501444, -0.0107866023, 0.00244767265, 0.0320449211, -0.0232281741, 0.0121852718, -0.026377013, -0.0165057704, -0.00456947694, -0.0117898369, -0.00855312403, 0.0143089071, -0.00134191778, -0.00409348961, -0.020093983, -0.0152462358, 0.00641484279, -0.00455483142, -0.00588027248, 0.0226423442, 0.014726311, 0.000728168874, 0.0219247025, -0.0159199405, -0.0225251783, 0.0251907073, 0.00921218283, 0.0240483377, -0.0246927515, 0.00279917079, 0.0105449473, 0.0121706259, -0.00574846053, 0.0294379778, -0.00747299893, -0.00509672426, 0.00823824, -0.0170183722, 0.00281015504, -0.0095417127, 0.0135839423, -0.0061292504, -0.00175016827, -0.0236382559, 0.00432782201, 0.0093293488, -0.00239275093, 0.0178531818, -0.00545920711, -0.0157441925, -0.014550562, -0.0111234542, -0.00432416052, -0.0182046797, 0.00318362191, -0.00622444786, 0.00375663745, 0.0151144238, 0.0313712172, 0.00684689265, -0.0288521461, 0.011650702, 0.0149093829, -0.0324257128, 0.00837005209, 0.0181021597, -0.0105888844, 0.00912430789, -0.0128003936, -0.000114191156, 0.0143821361, -0.00566424755, 0.0130640175, 0.0169158522, -0.0139061492, 0.00396900065, 0.0095417127, -0.00826753117, 0.0159492325, 0.00620614085, -0.0027662178, -0.00908769388, -0.00395801663, 0.00605602143, 0.0141697722, -0.00674803369, 0.00744370744, 0.0168279782, 0.00754988892, 0.0118996799, 0.014528594, 0.0148434779, -0.00714346906, -0.00661256071, 0.023477152, 0.00139592402, 0.0197278392, 0.0171501841, -0.0214853287, 0.0239604637, -0.0591981597, -0.00530908769, 0.0165936463, -0.017428454, -0.0036504555, 0.0131958295, 0.00862635206, -0.0182046797, 0.0215146206, 0.00264722109, 0.0028998605, -0.0021803875, -0.00944651477, 0.0126026766, -0.0183804277, 0.00888997596, 0.00776225282, 0.00676267967, -0.0237993598, -0.0010947705, 0.011760545, -0.00442668097, -0.00984195061, -1.69627638e-05, 0.0108378623, 0.00622444786, -0.00827485416, -0.0146457599, -0.020093983, -0.00698236609, 0.0196106713, 0.014462688, 0.0037932517, -0.0135766193, -0.0072789425, 0.000139706812, 0.026142681, 0.00193507096, -0.00432782201, -0.0149240289, -0.0104497494, -0.00983462762, -0.00273875706, -0.0184243657, -0.0165057704, -0.00987124164, -0.0187905096, -0.0191127155, -0.00902911089, -0.00204308354, -0.00298956572, 0.00949045271, -0.0324550048, -0.00679197116, 0.0385769308, 0.00872155, -0.0240190458, -0.00711051654, 0.0204747729, 0.00909501687, 0.00933667179, 0.00666382071, -0.00474522635, -0.00715079205, 0.00658326875, 0.0306975115, -0.0098492736, -0.00861170702, -0.0107792793, 0.0272850506, 0.00689815264, -0.0157588366, -0.00251357839, 0.00346189155, -0.00442301948, 0.00996644, -0.00361201051, 0.00423994754, 0.0066894507, 0.0207676869, 0.0160371065, 0.00936596375, 0.0136864623, 0.00495392829, 0.00351315155, 0.000130324377, -0.026362367, 0.000102005426, -0.00966620166, -0.00927076582, -0.00726795802, -0.000636175158, -0.0108891223, -0.0166082922, -0.0183511376, -0.00463538291, -0.00719106803, -0.0140013462, 0.00475987187, 0.00438640499, 0.00518826, -0.0069970116, 0.0153926937, -0.00278452504, 0.0329529606, -0.0296137258, 0.0306389295, -0.00919021387, 0.00373649946, 0.00205956, 0.0107646333, 0.0091536, -0.00430219201, -0.017560266, 0.0316641331, -0.00173552253, 0.00481113186, -0.00199182332, -0.00127143506, 0.0186733436, 0.000700250384, -0.029130416, -0.00868493505, -0.0241215657, 0.0117751909, 0.0171794761, -0.0169304982, -0.0155830886, -0.0278415885, -0.00462806, -0.00138585502, 0.0093293488, 0.00514432322, -0.0150265498, 0.00567889353, 0.00937328581, -0.0187758636, 0.0104424264, -0.0184243657, 0.00475254888, -0.000446466816, 8.08091215e-07, -0.00243119616, 0.0162275024, -0.0165497083, -0.00625373935, -0.0163007304, -0.0265966989, 0.000977604417, -0.0201232731, 0.00890462194, -0.0128589766, 0.00255751587, 0.000133871392, -0.00672972668, -0.0216610786, -0.00091536, -0.00885336194, -0.00145267625, 0.0157441925, 0.0210752487, 0.000383535837, 0.00355342752, -0.00182339712, 0.0162567925, 0.00831879117, 0.00932202581, -0.00738146296, 0.0113797551, -0.011577473, 0.0139354402, -0.00426191604, -0.00396900065, 0.0124855097, -0.00534936367, -0.0128150396, 0.0117898369, -0.0299359336, 0.0234478619, 0.004309515, 0.00398364663, 0.00737780146, 0.0174870379, -0.0179264098, -0.0170183722, -0.00685421564, -0.00686886115, 0.0197571293, -0.00935864076, 0.0103472294, 0.0188490935, 0.0228620302, -0.020313669, 0.00156709633, -0.00746201444, 0.00646976428, -0.0114969211, -0.00801855326, 0.014675051, 0.000420150231, -0.0031817914, -0.0206358749, 0.0168426242, -0.00322023639, -0.011592119, -0.0169451442, -0.00911698584, 0.026347721, -0.00016007357, -0.0237114858, 0.0202404391, -0.00397632364, -0.00815768819, -0.00212912727, 0.0194056313, -0.0127125196, 0.00383718894, -0.0010206264, 0.00849454105, 0.0167986862, -0.0037932517, -0.00837737415, 0.00945383776, 0.00846524909, 0.0206944589, -0.0110209342, -0.00787209626, 0.00336669409, -0.0157588366, 0.0021932025, -0.0111014862, 0.0118410969, 0.0124488957, -0.02321353, -0.00261243735, 0.00155885809, -0.00778422132, 0.00329163438, -0.00739244698, 0.011694639, 0.0250149574, -0.00586562697, 0.0190248415, 0.00328431162, 0.0200354, 0.0155684426, 0.0217196625, 0.0129614975, -0.00422164, 0.00558003457, 0.0149167059, 0.00227375422, -0.00137304, 0.00700433459, 0.0256300792, -0.00724598952, -0.0345347, 0.00790138729, 0.00133917166, 0.00649905577, -0.00615488039, -0.00298224273, 0.00715811504, -0.0121413348, -0.00475621037, 0.00820894819, -0.01151889, -0.00366876274, 0.0214999747, 0.00229755347, 0.00539330114, 0.0081503652, -0.0160517525, -0.0240336917, 0.00680661667, -0.00698236609, -0.00126594282, 0.0235796738, -0.0120314918, -0.011526213, 0.00683590816, -0.0138255972, 0.0146457599, 0.00850186311, -0.00684323115, -0.0023231837, -0.0040495526, -0.0207237508, 0.017355226, -0.00340147759, 0.00972478464, -0.0165497083, 0.000621071726, 0.0160224605, -0.0164032504, -0.00619881786, 0.014623791, 0.00546652963, 0.000153437213, 0.0052761347, 0.00795997, -0.0413889177, -0.00754988892, -0.0170037262, 0.0069713816, -0.0307560954, -0.0227302182, 0.00110026274, 0.00425459305, -0.0158027746, -0.0142283551, 0.00285043102, -0.00538231665, 0.00274608, -0.0084579261, 0.0141331581, -0.0113358181, -0.0100616366, 0.0075425664, -0.0069970116, -0.00646976428, 0.0196253173, -0.00719839102, -0.00475621037, -0.00540428516, 0.00394703215, 0.0213095807, -0.0141551271, -0.014572531, 0.000133184876, -0.00604503741, -0.00340513908, -0.0174870379, 0.0152755277, -0.0101934485, -0.0084579261, -0.0104863644, 0.00399463112, -0.00366144, -0.0119582629, -0.0158906486, 0.00865564402, -0.00191859447, -0.026171973, 0.0106840814, -0.0246341676, -0.0118923569, -0.00709220907, 0.0150997778, -0.0052102292, -0.00337584759, -0.0214121, 0.0015323126, 0.0180289298, -0.00744004594, 0.0143674901, 0.0066931122, -0.0135253593, 0.00735949446, -0.00196436257, -0.00280649378, 0.00670409668, -0.0195227973, -0.0326307528, 0.0122218868, -0.00814304221, 0.0106035303, 0.0164032504, -0.0141770951, -0.0109623512, 0.0258351192, 0.0158467125, 0.00292915199, 0.0738146305, 0.0151876528, -0.0047159344, -0.0340074524, 0.00473424187, -0.0184097197, -0.0121413348, 0.0398364663, -0.0192884654, 0.0455483124, -0.0061255889, 0.0165643543, 0.0237554219, -0.00129614968, -0.00013341372, -0.00523952069, 0.0135839423, -0.00685055414, -0.0141917411, -0.0114969211, -0.00691279862, -0.00568255456, 0.0170183722, -0.000392231741, -0.00628303085, 0.000883322384, -0.00779886683, 0.00372551521, -0.0136864623, 0.00940990075, -0.0162860844, 0.0131079545, 0.0126612596, -0.007256974, -0.0155098597, 0.0104863644, 0.00471959589, -0.0185708236, 0.0124488957, -0.014513948, 0.0457240604, 0.0167108122, 0.0117825139, 0.0243998356, 0.014733634, -0.017618848, 0.00381522044, -0.00631232234, -0.00338866259, -0.0213535167, 0.0127125196, 0.00236345944, 0.00499420427, -0.0108085703, 0.000318545266, 0.00774760684, 0.004404712, 0.0067150807, 0.00738512445, 0.00378959021, 0.0119582629, 0.00315616117, -0.00844328, 0.00704094907, 0.0156123796, -0.0184097197, -0.00856776908, 0.0212949347, -0.00919021387, -0.00219137175, 0.000863184454, -0.0168865602, 0.0127125196, -0.0230231341, -0.0108451853, 0.0133129954, 0.0040751826, 0.00246414915, 0.0106987273, -0.0215146206, -0.0366729833, -0.0108671533, -0.00622078637, -0.0259815771, -0.00706291758, -0.00408250559, -0.0197131932, -0.00786477327, -0.0132690584, 0.0244144816, 0.00323671289, 0.0150997778, -0.0243266076, 0.00720571354, 0.00760114938, 0.00327515812, 0.00504180277, 0.0121999178, 0.0084579261, 0.00616586488, -0.00374199171, -0.0173845161, -0.00644413428, -0.0100909285, 0.00246598, 0.0252639353, 0.0032074214, 0.0248245634, 0.0195960272, 0.000389256835, 0.0113431411, 0.00477817887, 0.00318545266, 0.0342417844, 0.0100543136, -0.00364496349, 0.0187905096, 0.00752792042, 0.0080551682, 0.00971013866, -0.0108232163, -0.0101495115, -0.00514432322, -0.00776957534, -0.00795997, 0.001101178, 0.0472765118, -0.00768902386, 0.0241947956, -0.00371636148, -0.000947397551, -0.00119271409, -0.00622078637, 0.00406419812, 0.0120607829, 0.0173845161, 0.00834808312, 0.00119362946, 0.0157588366, -0.00174833753, -0.0132690584, 0.0160078146, 0.0191566534, -0.00706291758, 0.0129981115, 0.00659791473, 0.00701898, -0.0128516546, 0.0152608817, -0.00752792042, -0.00423628604, 0.00886068493, -0.0107280193, -0.0341539122, 0.00232135295, 0.00126685819, 0.00661622174, -0.0373173952, 0.00599011593, -0.000101032856, 0.00597180845, 0.00500885, 0.0280173384, 0.0113504641, -0.00351681304, -0.00667480519, 0.00235613668, -0.00944651477, 0.000756545051, -0.00147281424, -0.0194642153, 0.0186879896, -0.0136059104, -0.000168998333, -0.0183511376, -0.0118777109, -0.0158027746, -0.0104643954, 0.00861170702, -0.0128223626, 1.07554797e-05, 0.00757918041, 0.0128223626, 0.0521681942, 0.00218221825, -0.0127711026, -0.011482276, -0.00257399236, 0.0122731468, -0.00441203499, -0.0138988262, -0.00570086204, -0.0172087681, -0.0132470895, -0.00995179359, -0.000104064988, 0.0203576051, -0.0181607418, -0.0100982515, -0.00142887689, 0.0270653646, 0.00835540611, -0.00949777476, -0.0147556029, -0.023389278, 0.0193031114, -0.000322206703, 0.00522121321, -0.0079380013, 0.00298407348, 0.000578049803]
|
31 Mar, 2021
|
EasyUI jQuery menu widget
31 Mar, 2021
EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers.
In this article, we will learn how to design a menu using jQuery EasyUI. The menu is usually used for context menus. It is the base component for building another menu component such as the menu button and split button. It also can be used for both navigation and executing commands.
Downloads for EasyUI for jQuery:
https://www.jeasyui.com/download/index.php
Syntax:
<div class="menu">
</div>
Properties:
zIndex: Menu z-index style, increase from it.
left: Menu left position.
top: Menu top position.
align: The menu alignment.
minWidth: The minimum width of the menu.
itemHeight: The menu item height.
duration: It defines duration time in milliseconds.
hideOnUnhover: When it is set to true, it automatically hides the menu when the mouse exits it.
inline: If it is set to true, it stays inside its parent, and goes on top of all elements when it is set to false.
fit: If it is set to true, it set the menu size.
Events:
onShow: Fires after the menu is shown.
onHide: Fires after the menu is hidden.
onClick: Fires when the menu item is clicked.
Methods:
options: Return the options object.
show: Show a menu in a specified position.
hide: Hide a menu.
destroy: Destroy a menu
getItem: Get the menu item properties that include a ‘target’ property indicating the item DOM element.
setText: Set the specified menu item text.
setIcon: Set the specified menu item icon.
findItem: Find the specified menu item.
appendItem: Append a new menu item.
removeItem: Remove the specified menu item.
enableItem: Enable the menu item.
disableItem: Disable the menu item.
showItem: Show the menu item.
hideItem: Hide the menu item.
resize: Resize the special menu.
CDN Link: First, add jQuery Easy UI scripts needed for your project.
<script type=”text/javascript” src=”jquery.min.js”> </script>
<!–jQuery libraries of EasyUI –>
<script type=”text/javascript” src=”jquery.easyui.min.js”> </script>
<!–jQuery library of EasyUI Mobile –>
<script type=”text/javascript” src=”jquery.easyui.mobile.js”> </script>
Example:
HTML
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0,
maximum-scale=1.0, user-scalable=no">
<!-- EasyUI specific stylesheets-->
<link rel="stylesheet" type="text/css"
href="themes/metro/easyui.css">
<link rel="stylesheet" type="text/css"
href="themes/mobile.css">
<link rel="stylesheet" type="text/css"
href="themes/icon.css">
<!--jQuery library -->
<script type="text/javascript" src="jquery.min.js">
</script>
<!--jQuery libraries of EasyUI -->
<script type="text/javascript"
src="jquery.easyui.min.js">
</script>
<!--jQuery library of EasyUI Mobile -->
<script type="text/javascript"
src="jquery.easyui.mobile.js">
</script>
<script type="text/javascript">
$(document).ready(function (){
$('#gfg').menu('show',{
left: 50,
top: 100
});
});
</script>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h3>EasyUI jQuery menu widget</h3>
<div id="gfg" class="easyui-menu" style="width:120px;">
<div>menu 1</div>
<div>
<span>menu 2</span>
<div style="width:150px;">
<div><b>Sub menu 1</b></div>
<div>Sub menu 2</div>
<div>Sub menu 3</div>
</div>
</div>
<div>menu 3</div>
<div class="menu-sep"></div>
<div>menu 4</div>
</div>
</body>
</html>
Output:
Menu widget
Reference: http://www.jeasyui.com/documentation/
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?/How to design datalists for mobiles using jQuery EasyUI Mobile ?/How to design menu using jQuery EasyUI Mobile ?/EasyUI jQuery menu widget
|
https://www.geeksforgeeks.org/easyui-jquery-menu-widget?ref=asr10
|
CSS
|
EasyUI jQuery menu widget
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, How to design menu using jQuery EasyUI Mobile ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, EasyUI jQuery menu widget, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, How to design datalists for mobiles using jQuery EasyUI Mobile ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0338926464, 0.00834602676, -0.00594916148, 0.0249483362, 0.0562982857, 0.0244846679, 0.0118160592, 0.0258158445, -0.047294151, -0.00589681184, -0.0157048889, -0.00874238741, 0.0268179663, -0.0258308016, 0.0082114134, -0.00771783106, -0.0212689061, -0.0180681, -0.0258457586, 0.00476755528, -0.0144634545, 0.00562384585, -0.0151365213, 0.00741869025, -0.0121974628, 0.0132145416, 0.0242902264, 0.0110382931, -0.00806932151, 0.0321576297, -0.0179035719, 0.0162732564, 0.0443924852, -0.0207902808, -0.0295850188, -0.0119656296, 0.0156749748, 0.00149944297, -0.0372430198, 0.0259654149, 0.0110607287, 0.00906396378, 0.0145531967, -0.0125040822, 0.00646517891, -0.0110308146, -0.000360371108, -0.0375720747, -0.00430014776, 0.00263430807, 0.0174249467, 0.0583324432, 0.0434352346, 0.0271769352, -0.0040384, 0.0173950326, -0.0166621394, 0.0114645688, -0.0335336775, 0.046157416, 0.0233329777, -0.0688621923, 0.00524244132, -0.0174099896, -0.00109653769, 0.0436446331, -0.00833854824, 0.0294204913, 0.00124330365, 0.034102045, 0.00456563523, 0.0133267194, -0.0316490903, -0.00780757284, -0.0201770421, -0.0328755677, -0.0137754306, -0.0336533338, -0.00119656289, 0.0124143399, 0.00892935, -0.0246491954, -0.0246791095, -0.0380207859, 0.0211642068, -0.0066072708, 0.00136669923, -0.0498966724, 0.0456189625, 0.00794218667, -0.0108588086, 0.00331485318, -0.0339225605, -0.00713824574, 0.0170360655, 0.00922849122, 0.0320978, 0.0097744232, -0.0487001091, 0.0230338369, 0.0180681, 0.0269077085, -0.0353584327, -0.0554906055, -0.0118908444, 0.0363156833, 0.034102045, 0.00458807079, -0.00398231111, -0.0394865759, 0.0077552232, -0.00073149259, 0.00694380421, 0.0225552116, -0.0183672402, 0.016482655, -0.0193394478, -0.0807081684, 0.0152935702, 0.0256812312, 0.0076393066, -0.0227646101, 0.0181279276, 0.04618733, -0.0459779315, 0.0518410876, 1.74401375e-05, 0.0152711347, 0.0399352871, -0.00919109862, 0.00757947844, 0.0482513979, 0.0129976645, -0.00311480276, 0.0423882417, 0.0539949, -0.0035522962, 0.026713267, -0.0242453553, 0.00946032535, -0.00696624, -0.0298841596, -0.00668953452, 0.00187430368, -0.0271918923, 0.0147177242, 0.0191599634, 0.0379609577, -0.0440335162, 0.004849819, -0.0283734985, -0.000553410326, 0.0164377838, 0.0129079223, 0.0407429673, -0.00608003512, -0.0393669195, 0.0282987133, -0.0101558277, 0.004849819, 0.0392472632, -0.0262196846, 0.003800957, -0.00857786089, -0.0243500546, 0.015390791, 0.0104400115, -0.0363455974, -0.0619819574, 0.0436147191, -0.0282538421, 0.0153608769, -0.034102045, 0.0252773911, -0.0430164374, 0.00346255396, 0.0438241176, -0.00783000886, 0.00944536831, -0.00776270172, -0.0170510225, -0.015390791, 0.012085285, 0.0116964029, -0.00616229884, -0.00919109862, 0.0161087289, -0.0282388851, -0.0361661129, -0.0163480416, -0.044332657, 0.0200873, 0.0135585535, 0.0352387764, 0.0142465774, -0.0255466178, -0.0143138841, 0.0453198217, -0.0349396355, 0.0150019079, 0.0453198217, -0.0152935702, -0.00663718488, 0.00921353418, 0.0187411662, 0.0487001091, 0.000803005882, -0.0481018312, 0.0227945242, -0.0156151457, -0.0337131619, -0.00514522055, -0.0344610102, 0.010821416, -0.0269525796, -0.00575472, -0.0123844258, -0.0173950326, -0.0253521763, -0.0166920535, 0.0273713768, 0.0206407104, -0.0105073182, 0.040623311, -0.0976395309, -0.0309909787, 0.0281641, -0.0387387238, 0.024125699, 0.011726317, -0.0268179663, -0.03511912, -0.00792723, -0.0108438516, 0.0388583802, -0.000977816293, -0.000855355524, -0.00849559717, -0.0418198742, 0.0367344804, -0.00864516664, -0.00183504145, -0.0572854504, 0.00421040598, 0.0298692025, 0.0171557218, 0.0192197915, -0.0130799282, 0.00541818654, -0.0180531424, -0.020132171, -0.00680545159, -0.0163929127, -0.00368504, 0.0202667844, 0.0423583277, 0.0115169184, -0.0131472349, 0.0162134282, 0.0157048889, 0.00296336296, 0.0276705176, -0.0154356621, 0.0340123028, 0.0162882134, 0.00473390194, 0.0353883468, -0.0282538421, 0.0241705701, -0.037332762, 0.0290016942, -0.0264739543, 0.0507342666, 0.0500462428, -0.003477511, -0.0141493566, -0.036225941, 0.0148972087, 0.0320379734, -0.00602768548, 0.0381404422, 0.00686527975, 0.0633580089, 0.0149869509, 0.022330856, 0.00476381602, -0.00404213928, -0.00638665445, 0.00281566218, 0.0138277803, -0.0189206507, -0.00242303987, 0.0230188798, 0.0147551168, 0.00777018024, 0.0569863096, 0.0170958936, 0.0209548082, 0.00562758511, 0.00258756732, -0.0167369246, -0.0145681538, -0.0121002421, -0.0200873, -0.00687275827, 0.0158544593, 0.0236321185, -0.00516391685, -0.0428070389, -0.00569489179, 0.0261449, 0.0147401597, -0.044213, -0.0231983643, -0.00412814226, 0.021597961, 0.0487599373, 0.00499191089, -0.0188458655, 0.00322511094, -0.0125040822, 0.00947528239, -0.0539051592, 0.0568666533, 0.0412515067, 0.00952763204, -0.0267730951, -0.00195002358, 0.0191001352, 0.000698774063, -0.00296523259, -0.0401746, 0.0244547538, 0.0431360938, 0.0180381853, -0.0423284136, 0.0266683958, 0.00891439337, 0.034730237, 0.00346068433, -0.0264589973, -0.022734696, -0.00360651547, -0.00680545159, 0.00863021, -0.0427771248, -0.015218785, 0.00548175396, 0.0478026904, 0.000548268843, 0.00145083258, -0.00234825467, 0.0424480699, -0.0103278337, 0.0249184221, -0.0164078698, -0.00335598504, 0.000661381462, -0.0326661691, 0.0145307612, 0.0103876619, 0.0154207051, -0.00550045026, -0.0143363196, 0.0116365748, -0.0298692025, -0.0272517204, -0.0146205034, -0.0299739018, -0.000799266621, -0.0116590103, -0.0344011821, -0.0180830564, 0.0178736579, -0.034102045, 0.0177988727, -0.000368083332, 0.00700737163, -0.0327858254, -0.0125339963, -0.0243799686, 0.0162882134, -0.0506445244, 0.0276705176, 0.0400848575, -0.000516952598, 0.00587437628, -0.0317687467, 0.000240481109, -0.0134688113, -0.023841517, 0.0462770723, -0.0188757796, 0.020880023, 0.0122946836, -0.0116365748, 0.00478625158, -0.00670449156, 0.0278051309, -0.00788235851, -0.00671570934, 0.0316790044, 0.0555205196, -0.0140596144, -0.00683162641, -0.0250081643, -0.0178587, -0.0134314187, 0.00376730366, -0.0054406221, 0.0314696059, -0.028582897, -0.00802445, 0.0483112261, 0.0230338369, 0.042866867, 0.00257448, 0.0732296482, 0.0389481224, -0.0189655218, 0.0172454622, -0.00774026616, -0.0065885745, 0.015390791, -0.0210445505, 0.0103801833, -0.0423882417, -0.0188159514, 0.00382900145, -0.0120105008, -0.00420292746, -0.00371121475, 0.00310732424, -0.0117038814, 0.0184719395, 0.00184252, 0.0396062322, 0.0101184351, -0.0211193357, -0.0252923481, -0.00759443548, -0.00172379846, 0.0532470495, -0.00385891553, -0.0620417856, -0.0156899318, -0.0283734985, 0.0010339052, 0.0223757271, -0.00341207394, -0.027476076, -0.0507641807, -0.0177839156, -0.0176343452, 0.052708596, -0.0426574685, -0.0153309628, 0.0158993304, 0.00331298355, -0.0199676435, -0.0108363731, 0.040384, -0.00772530958, 0.0161835141, -0.0257111453, -0.0215231758, 0.0146279819, 0.0236470755, -0.0234825481, -0.00655492116, -0.0250081643, -0.0176193882, 0.0500462428, 0.00281192292, 0.016482655, -0.00888447929, 0.00312789017, -0.0147177242, 0.00868255924, 0.0160189867, 0.0214483906, 0.0441830866, 0.057524763, -0.0103278337, 0.00730277319, -0.0326960832, 0.0535761043, -0.0304973982, 0.00602768548, 0.0253372192, 0.0273115486, 0.0373925902, -0.0614435077, 0.00741869025, -0.00763556734, -0.00862273108, -0.0364353396, -0.0256513171, -0.0026174814, 0.0388583802, 0.0106718456, 0.0251577348, -0.0544735268, 0.0396361463, 0.00554532139, -0.0329054818, 0.00688771531, 0.0244397968, -0.00931075495, -0.0284482837, -0.00563132437, -0.0175296459, -0.0191749204, -0.00695876125, -0.00608377438, -0.0206407104, -0.019384319, 0.0416104756, 0.00257821917, 0.00815158524, 0.00228468725, -0.00160788139, -0.00242864876, -0.0243799686, 0.0105222752, 0.0218223166, 0.0245444961, -0.0279247873, -0.0294354483, -0.0425378121, -0.0423583277, -0.010978465, 0.020521054, 0.0327559114, -0.0218671877, -0.00704476424, -0.0428070389, 0.0234077629, 0.0040870104, -0.00206781039, -0.0293457061, 0.00117412733, -0.041730132, 0.00137417775, -0.0253970474, 0.0150991287, 0.0110532502, -0.0327259973, 0.0239312593, 0.0342516154, 0.0101408707, 0.0130874068, 0.0097744232, 0.0203714836, 0.000579117739, -0.00310358498, -0.0390079506, -0.0274910331, -0.00771783106, -0.0240808278, 0.000155296104, -0.0200873, 0.0430762656, 0.0167668387, 0.0326063409, -0.0292709209, -0.00335037615, 0.0367643945, 0.00192197924, 0.0262495987, -0.00238564727, -0.011741274, -0.00153777027, -0.0110382931, 0.0331447944, 0.00175464735, 0.054174386, -0.00777018024, -3.96127762e-05, -0.00657361746, 0.0204612259, -0.00609499216, 0.0279995725, 0.0207753237, 0.0132968053, 0.0160040297, 0.0303777419, -0.00679423381, -0.0474138074, 0.034102045, 0.00804688595, 0.0137006454, -0.0120628495, 0.0116066607, -0.0110308146, 0.00957998168, -0.0304824412, 0.0204612259, 0.0155254034, -0.0153085273, 0.0298542455, 0.0136856884, 0.0343114436, -0.000648294052, -0.0191749204, 0.0017826918, 0.00682788715, 0.00422910228, 0.00453572115, -0.0266235247, -0.0463369, -0.00747477915, 0.0148747731, 0.00456563523, -0.0225701686, -0.0539949, -0.0170958936, -0.0220765863, -0.014097007, -0.0149495583, 0.00109934213, -0.010432533, 0.0304525271, 0.0158245452, 0.0124517325, 0.00658109598, -0.0164377838, -0.00339898653, 0.0157048889, -0.00897422154, -0.0114122191, 0.007601914, -0.0239163022, -0.00261374214, 0.0231086221, 0.0211193357, -0.0153309628, 0.0102829626, -0.00620717, -0.000124447222, 0.00101894815, 0.0129303578, -0.043584805, 0.0708963498, -0.00844324753, 0.0229291376, 0.00814410672, 0.00797210075, 0.0191599634, -0.019414233, -0.0160788149, 0.0218522307, 0.0141269211, 0.00559393177, -0.0111953421, 0.013162192, -0.00171164586, -0.0305871405, 0.0134762898, 0.0267730951, -0.0194591042, -0.0260102861, 0.0429865234, 0.00972955208, -0.0149121657, -0.00208650669, 0.0531872213, 0.00388509012, 0.008248806, 0.0127284378, 0.0319781452, -0.00179110514, -0.0125190392, 0.00333728874, -0.011928237, -0.0127733089, 0.00240995246, 0.00400848594, 0.0048124264, -0.00945284683, -0.024529539, 0.0530077368, 0.0281192288, -0.00938554, -0.00496947533, -0.0118609304, -0.0307516679, 0.00361960288, 0.00794218667, 0.0138576943, -0.00745234359, 0.00576593773, 0.0501659, 0.0470249243, 0.00312415091, -0.0176343452, -0.00381778367, 0.0115019614, -0.0070672, -0.000509941485, -0.00136015553, -0.0254120044, -0.01281818, 0.0279547013, 0.0105895819, 0.0158245452, 0.00559767103, 0.0317388326, -0.0371233635, 0.00352238212, 0.0297794603, -0.00890691485, 0.00997634325, 0.0445121415, -0.00293718814, 0.00746730063, -0.00851055421, -0.0203714836, -0.0498069301, -0.00384395849, 0.0311405491, 0.0130126216, 0.00101333926, -0.00588559406, -0.0149944294, -0.0352686904, 0.0209248941, -0.0220765863, -0.0208052378, -0.00567993475, -0.000366213702, 0.0334140211, -0.00248286803, 0.00427023415, -0.0309311524, 0.0105222752, 0.0150243435, 0.000438194431, 0.0114944829, -0.00330176577, 0.0136782099, -0.0225103404, -0.0181578416, 0.0101034781, -0.000443335914, 0.0129154008, -9.10860181e-05, -0.00492834346, 0.0246192813, -0.0292858779, 0.0174249467, 0.0053845332, 0.00298018963, -0.0225851256, 0.0140371788, -0.020880023, -0.000473951106, 0.0132369772, -0.00312789017, 0.0286128111, 0.00417301338, 0.00940049719, -0.00928831939, -0.00243612728, -0.0214783046, -0.0173950326, 0.00360464584, -0.00304562645, 0.00848811865, 0.000170486848, 0.0139773507, 0.00749721471, 0.0367045663, 0.00154524879, 0.00405335706, -0.0118684089, -0.0264589973, -0.0375720747, -0.0302281715, -0.0420891, -0.0130425356, 0.0156899318, 0.0253671333, -0.0103727048, -0.00478625158, -0.020132171, 0.0261000283, 0.00751217175, 0.0104699256, 0.031110635, -0.0062034307, -0.00741869025, -0.00270161475, 0.0158993304, 0.0222560707, -0.0159292445, -0.0272218063, -0.00812167116, 0.0116664888, 0.00205285335, 0.0220167581, -0.0189655218, 0.00262122066, 0.0247239806, 0.0268628374, 0.0061847344, -0.0236022044, -0.00715320278, -0.0303478278, -0.00422162376, 0.00141624443, -0.007601914, -0.0274312049, 0.0167967528, 0.00339524727, 0.0081366282, 0.0340721309, -0.00282314071, -0.0015957288, 0.0160788149, 0.0102530485, 0.00695502199, -0.0157198459, -0.00487225456, -0.0454693921, 0.0360763706, 0.0170809366, 0.0255167037, -0.00449458929, -0.00201546075, 0.0189505648, -0.0180082712, -0.0310508069, 0.0322772861, -0.0142764915, -0.0103353122, 0.0172155481, 0.0293905772, 0.0253970474, 0.00898917858, -0.0220765863, 0.0205958392, -0.00153309619, -0.00384021923, -0.00121899846, 0.0165275261, -0.012085285, 0.00924344826, 0.0284482837, 0.00748973619, 0.0149869509, -0.00742616877, 0.00295214518, 0.0148747731, 0.00928084087, 0.030781582, -0.0327559114, 0.0167070106, 0.0353285186, -0.021612918, -0.000224121846, 0.0105297538, -0.0171706788, 0.0295700617, 0.023093665, -0.000653902942, -0.0173651185, -0.0382301845, -0.028552983, -0.00821889192, -0.0294803195, 0.00943041127, 0.00137230812, 0.0339225605, 0.00365512585, -0.00547427544, -0.0259504579, -0.00335411541, -0.0044085863, -0.024873551, 0.0371532775, 0.00696624, -0.0256961882, -0.00688397605, 0.028552983, 0.0258607157, -0.0313200355, -0.01574976, 0.0251726918, -0.0033784206, -0.0215082187, 0.0118235378, -0.0128107015, -0.0441232584, -0.0209548082, 0.0138277803, -0.0297944173, -0.00195002358, 0.00936310459, 0.0308713242, 0.0124218185, -0.000853018486, 0.0205958392, 0.0100885211, 0.00915370602, 0.00727659836, 0.00495077902, 0.0411916785, 0.0139175225, 0.00911631342, 0.0391874351, 0.0367643945, 0.00524244132, -0.0338328183, 0.00403466076, -0.0269226655, -0.0412215926, 0.0157946311, 0.0351789482, -0.0205509681, 0.00886204373, -0.0110607287, 0.0215530898, 0.0195488464, 0.00191824, -0.00734764431, -0.0259654149, 0.00341394357, -0.00689145457, 0.00528731244, -0.00410944596, 0.018277498, 0.0178736579, -0.00515643833, -0.0100810425, -0.0109335938, -0.00279322662, 0.00629317295, -0.036225941, 0.0123245977, 0.0371233635, 0.0266085677, -0.0254568756, 0.0101109566, 0.00871247333, -0.0326063409, -0.0480719171, 0.0278500021, -0.0112551702, 0.0110831643, -0.0216727462, -0.0151813924, -0.00255391398, -0.0205659252, 0.021597961, -0.0145980678, -0.0290166512, -0.0028661422, -0.00953511056, 0.00471520564, -0.0158245452, -0.0308713242, 0.0157048889, 0.0133042838, 0.0284333266, 0.0180082712, -0.0163779557, 0.00513774203, 0.00224542501, 0.00134426367, -0.00862273108, -0.00841333345, 0.0242752694, 0.00065810961, -0.0278948732, 0.0271171071, 0.0184569824, -0.0183522832, -0.00805436447, -0.000717002957, -0.00262122066, 0.0253521763, 0.016123686, 0.0146653745, 0.045080509, -0.00176586513, 0.0449608527, -0.0376319028, -0.0168416239, 0.0303777419, 0.0198629443, -0.00968468096, -0.00853299, -0.0230188798, 0.021612918, -0.00165929622, 0.0354481749, 0.00219868426, 0.00553036435, -0.0196086746, -0.0346105807, -0.00472642342, -0.00665962044, 0.0314995199, 0.0279547013, 0.0049619968, 0.00662222784, -0.0129154008, -0.0065137893, -0.0071045924, -0.0277602598, 0.00699241459, 0.00165368733, 0.000315032579, -0.000255671854, 0.0163629986, 0.0111205569, 0.0241107419, 0.0444523133, -0.00329989614, 0.0145831108, -0.0111579495, 0.00466659525, -0.0424181558, 0.012055371, 0.0138950869, -0.0049059079, 0.00305123534, 0.00579585182, 0.00980433729, 0.00875734445, 0.00737755839, -0.0125938244, 0.00790479407, -0.00422910228, -0.00332607096, -0.022704782, -0.049777016, -0.000960989622, -0.00875734445, 0.0355678312, -0.011539354, 0.00436745444, 0.0248286799, -0.0320379734, -0.00679423381, 0.00108905917, 0.000534714083, 0.00489842938, -0.0127508733, -0.0080768, -0.0258158445, 0.00916866306, -0.0107989805, 0.00111429917, 0.0248436369, 0.0124891251, -0.0423882417, 0.0257261023, 0.0190851782, 0.00167144882, -0.00519757, 0.00868255924, -0.0211492497, -0.00195563259, 0.0238714311, -0.0194740612, -0.0152636562, 0.00923597, 0.0246940665, -0.00196685037, -0.010073564, -0.00694754347, 0.0108812442, 0.0118684089, 0.0027483555, -0.0039935289, -0.0124592111, 0.0121226776, -0.0071793776, 0.0184121113, 0.000102420643, 0.0116814459, 0.0195488464, -0.00835350528, -0.00536209764, 0.000580519962, -0.00445345743, -0.0165873542, -0.0396660604, 0.000156114067, 0.00476007676, 0.00671197, 0.0117337955, -0.0257859305, -0.0213137772, 0.0071232887, 0.0681442618, -0.0058444622, -0.0230039228, -0.0228992235, -0.00121058512, -0.0137455165, -0.0108588086, 0.0114720473, 0.0237218607, -0.00352799101, 0.0149570368, 0.00972207356, -0.00806184299, -0.0223906841, -0.0100436499, -0.00438615074, -0.000518822228, 0.0201022569, 0.0208052378, -0.0105372323, -0.0174548607, 0.021971887, 0.0153459199, -0.00809923559, 0.0158544593, 0.00645022187, 0.00299140741, -0.0277004316, -0.0470548384, -0.0112028206, 0.0207753237, 0.0173800755, 0.0192347486, 0.00969215948, -0.0072541628, 0.0331747085, -0.0026922666, 0.00271657179, -0.00664092414, -0.012803223, -0.00757947844, -0.0176792163, -0.00751591101, 0.00188926072, -0.0231385361, 0.00468529155, -0.018292455, -0.0129154008, -0.0179484431, -0.00109466806, -0.0162433423, -0.00398231111, -0.0023127317, -0.00850307569, -0.0129079223, 0.0166172683, -0.00978190172, 0.00167331845, 0.0249034651, -0.0253372192, -0.0197432879, 0.00848811865, 0.0149570368, -0.0178287867, 0.0158544593, -0.000319706654, -0.0207454097, 0.0240808278, -0.0129453149, 0.00833854824, 0.0211342927, 0.00105821039, 0.00238938653, 0.00745234359, 0.00400474668, -0.00857786089, -0.013162192, 0.0107017597, -0.0107615879, -0.00543314358, -0.0153608769, 0.0160189867, -0.00207528891, 0.00860777404, 0.00713824574, 0.00577715551, -0.0136183817, -0.0277153887, -0.00489469, -0.00353546953, -0.00575845921, -0.0475035496, -0.0172305051, 0.00685406197, 0.0221364144, -0.00546305766, 0.0128929652, 0.011352391, 0.00431884406, 0.013925001, 0.0167219676, 0.0326063409, -0.00753834657, -0.0141717922, -0.00136763405, -0.00798705779, 0.030781582, 0.00187523849, 0.00266235252, 0.00938554, 0.0215680469, -0.013925001, 0.000874519232, 0.00686154049, -0.0141643137, 0.00457311375, -0.00789731555, -0.0194291901, 0.00158170657, 0.0216577891, 0.0111056, 0.0202069562, 0.00377291255, 0.000480962219, 0.0211492497, 0.0150542576, -0.00576967699, -0.00111523399, 0.0214932617, -0.00197806815, -0.0247987658, 0.0149196442, -0.028208971, -0.0163480416, -0.0081366282, 0.000699241471, -0.0259205438, 0.0291213505, 0.00427023415, 0.0166621394, -0.0416403897, 0.0249932073, -0.0296298899, 0.00805436447, 0.00916866306, 0.005309748, 0.0237816889, 0.0293756202, 0.00291288295, -0.0133341979, -0.00761313178, -0.00329241762, 0.0143288411, 0.00572480587, 0.0144111048, -0.0216428321, 0.00569863105, 0.00983425137, -0.0141418781, -0.0116440533, -0.029659804, 0.0502855554, 0.0252026059, 0.0294952765, 0.00404587854, 0.00704102498, 0.0162433423, -0.0184719395, -0.01171136, -0.0164078698, 0.0104026189, -0.00974450912, 0.0175296459, 0.00797210075, -0.000190117949, -0.0054406221, -0.00321389316, 0.0289119519, -0.00604264252, 0.0163480416, 0.00502930349, -0.00655866042, -0.00793470815, -0.00569489179, -0.00173314661, 0.00312228128, -0.00584072294, -0.032636255, -0.0208949801, 0.00843576901, -0.0149719939, -0.0104923612, 0.016856581, 0.0258607157, 0.0167369246, 0.00589681184, -0.000817495515, 0.0169612803, -0.00754208583, 0.0112925628, -0.01408205, -0.00682788715, 0.0122198984, -0.00732520875, 0.000524431118, -0.0258308016, -0.00154711842, 0.00305684423, 0.0352387764, -0.0228992235, 0.0106120175, 0.014298927, 0.00269974512, -0.0228094812, 0.00517513463, -0.00575845921, 0.00707841758, -0.020147128, 0.0158993304, 0.0181578416, 0.0138950869, 0.0228094812, -0.00619595218, 0.00700737163, 0.00842081197, -0.00841333345, -0.000112060923, -0.0326063409, -0.0024062132, -0.00306619238, -0.0191749204, 0.0320379734, 0.02563636, 0.00254269619, 0.00197619852, 0.0139923077, 0.00684658345, -0.015016865, -0.0356276594, 5.70529155e-05, 0.00422162376, 0.00241182209, 0.00421040598, 0.00321763242, -0.00169762364, -0.00017679685, 0.00925840531, -0.021986844, -0.0138726514, 0.0150019079, 0.0164676979, 0.0021182904, 0.0261598565, -0.0118833659, 0.00573228439, 0.0025987851, -0.00189580442, -0.0233628917, -0.0171856359, -0.04765312, 0.0132369772, 0.0127882659, -0.013162192, -0.00761687104, -0.0258906297, -0.0237069037, -0.0139848292, 0.000396127754, -0.00726164132, -0.00994642917, -0.0143288411, -0.0142091848, 0.00475259824, -0.0287922956, 0.0102231344, -0.00855542533, 0.0191898774, -0.018666381, 0.00853299, -0.0086676022, -0.00862273108, -0.000558084401, -0.00108158065, 0.00165929622, -0.00358408, 0.01574976, 0.00822637, -0.0116216177, -0.00456189597, 0.0175146889, 0.0132594127, 0.0112850843, 0.00289231702, 0.016138643, -0.0261000283, 0.0278500021, 0.0065137893, -0.0115318755, 0.000949304434, -0.0188757796, 0.00516765611, -0.021971887, -0.0271619782, 0.00793470815, -0.0193244908, -0.00607629586, 0.0147700738, -0.0130126216, 0.00969215948, -0.0161536, 0.00372430217, -0.0236620326, 0.0152786132, -0.00930327643, 0.0022697302, -0.00338402949, 0.00754582509, -0.00575472, -0.0143662337, -0.00555653917, -0.00814410672, 0.00311480276, -0.0191599634, 0.00581828738, 0.0242752694, -0.0314696059, 0.000672131835, 0.015375834, 0.0263243839, -0.00719059538, 0.0284632407, 0.00147233333, -0.0251876488, 0.0215680469, -0.00596411852, -0.00457311375, -0.0216428321, -0.0107989805, -0.0147925094, 0.00479373, -0.0248585939, 0.00983425137, -0.00189393479, -0.00173221179, 0.000331158139, -0.00373738958, -0.0242902264, 0.0171258077, -0.0194890182, -0.049029164, -0.0119731082, -0.0106718456, 0.00331298355, 0.0134164616, 0.0310508069, 0.0106942812, 0.0129827075, 0.0169164091, 0.0166322254, -0.000126083149, 0.000752993277, 0.0228393953, -0.00748599693, 0.01171136, -0.00941545423, -0.0269525796, -0.00922849122, -0.0025613925, 0.0217624884, 0.0111130783, -0.00468903081, -0.0139175225, 0.018307412, 0.0112551702, 0.0123395547, 0.0123545118, 0.00334663689, -0.00293905777, -0.0271619782, -0.0106868027, 0.00498069311, -0.0186962951, -0.00492086494, -0.0210595075, 0.0131995846, -0.00212202966, 0.00335411541, -0.00100212148, -0.0103427907, -0.0143213626, 0.0354182608, 0.0121002421, 0.00239499542, 0.0133192409, -0.018277498, -0.0096248528, -0.0260402, -0.0168416239, -0.00968468096, -0.012242334, 0.0261748135, -0.0167070106, -0.023093665, 0.00583698368, 0.0267880522, 0.0218671877, -0.0028474459, -0.0219120588, -0.00168827549, -0.0089966571, 0.00740747247, 0.00819645636, -0.0115468325, -0.0253073052, -0.0077327881, 0.00766548142, 0.00499191089, 0.0143737122, 0.0412814207, -0.0142540559, 0.0105147967, -0.00982677285, -0.0117936237, -0.0142615344, 0.0101408707, -0.0226150397, 0.0197283309, -0.00100492593, -0.030288, 0.00688771531, -0.0143363196, -0.0132444557, -0.00690641161, 0.00431136554, 0.00602768548, 1.28610063e-05, -0.0226599108, 0.0172155481, 0.0163929127, 0.0179783572, -0.00151907397, 0.0221065, 0.0258158445, -0.00126760884, 0.00504052127, 0.00477129454, 0.0162732564, -0.00210146373, -0.00323819835, 0.00963981, 0.025995329, 0.00969215948, -0.0226599108, 0.00330550503, 0.000360371108, -0.00703728572, -0.00140409183, -0.0154954894, 0.00867508072, -0.0111280354, 0.00404587854, -0.00185841182, -0.00251278211, -0.00708215684, 0.0198479872, 0.00909387786, 0.00981929433, -0.00884708669, 0.01408205, 0.000244220369, 0.0177390445, -0.0257111453, 0.00906396378, -0.00535461912, 0.00508913165, 0.00676431973, -0.0287773386, 0.015031822, -0.00196311111, -0.00531348726, -0.0169612803, 0.0336234197, 0.0191599634, 0.0226748679, 0.00624456257, 0.0516316891, 8.58276835e-05, 0.00304188719, 0.0126686096, -0.00218746648, 0.0184420254, -0.0149794724, 5.57383319e-05, 0.013723081, -0.0142017063, -0.0120030222, -0.0170360655, 0.0127658304, -0.00986416545, -0.0157048889, -0.0053284443, -0.000222369068, -0.0115468325, -0.0101483492, 0.0048124264, 0.0181129705, -0.00352612138, 0.0169014521, 0.00638665445, 0.00404587854, 0.027476076, -0.0364652537, -0.0281641, 0.00261187251, 0.0288371667, 0.000916118501, -0.0202667844, -0.0180232283, 0.011928237, 0.00806184299, 0.00499565, 0.0123395547, 0.0305572264, -0.0211791638, 0.0100810425, -0.00220055389, 0.0071980739, -0.00152935693, 0.0291063935, -0.00627821591, 0.0169762373, 0.0138352588, -0.00456563523, 0.00362147251, -0.0154356621, -0.016856581, -0.0110009005, -0.0135585535, 0.00756452139, 0.0015957288, -0.00205285335, -0.00990903657, -0.015375834, 0.007601914, 0.00877978, -0.0103353122, -0.00307741016, -0.01755956, -0.000313396653, -0.0176493023, 0.00581454812, 0.00901909266, -0.00318584871, 0.0108139375, -0.00127228291, 0.0132519342, 0.00444223965, -0.00133211107, -0.00934814755, 0.0107989805, -0.00206407113, -0.0110308146, -0.0116290962, -0.00659605302, -0.00999877881, 0.00148168148, 0.00667457748, -0.00190141331, 0.00397483259, -0.00272592, 0.00771035254, -0.00786740147, 0.0211043786, 0.0255167037, 0.0364951678, 0.0188458655, 0.00135922071, 0.00207154965, -0.00346442359, -0.0140521359, 0.0149944294, -0.0154506192, 0.0191150922, 0.00359529769, -0.0081366282, 0.0286875963, -0.00937806163, 0.0253521763, -0.0277453028, 0.00223607686, 0.00616229884, 0.00033185925, -0.0172155481, -0.00558271399, 0.000259878521, -0.0135735106, -0.0143662337, 0.00471146638, -0.0108887227, 0.00550418952, -0.00381778367, -0.0157796741, -0.00945284683, -0.0110233361, -0.00718685612, -0.0250530355, 0.012444254, 0.00615482032, -0.0202817414, 0.00838341936, 0.0114570903, -0.023467591, 0.0181279276, -0.00772530958, 0.0133117624, 0.00937058311, -0.0126985237, 0.00101614371, 0.00304188719, 0.00545557914, 0.00490216864, 0.011741274, -0.0233479347, 0.00345320581, 0.025606446, -0.00502556423, -0.00487973308, 0.0011722577, -0.0225701686, 0.0077327881, 0.0106120175, 0.00420666672, 0.00093388, 0.0101184351, -0.00943789, -0.00761313178, -0.0194291901, 0.00419170968, -0.00234638504, -0.0137305595, -0.0010909288, 0.0193095338, -0.0209847223, -0.00504426053, -0.00894430745, 0.000675403688, -0.0153085273, 0.0192796197, -0.000253802224, -0.00174062513, 0.00978190172, 0.00633056555, -0.0122498125, -0.012055371, 0.00804688595, -0.0114271762, 0.0164078698, -0.00484234048, -0.0049433005, 0.0155702746, 0.00335598504, -0.003664474, -0.00188552146, 0.0173352044, 0.00112364732, -0.0255615748, 0.0205958392, 0.0268628374, -0.0109261153, -0.0145008471, -0.000405943312, -0.00427397341, -0.0204612259, 0.000167098144, -0.0163629986, 0.0109485509, 0.0258457586, 0.0157048889, 0.0016892103, 0.00483486196, 0.0107840234, 0.00142278813, 0.00249595544, -0.00501060719, 0.00560514955, -0.0217176173, 0.0101408707, -0.00465911673, 0.0101558277, -0.00357473176, -0.00940797571, -0.0103951404, -0.02049114, -0.0249333791, 0.0136782099, -0.0341917872, -0.00355603546, 0.0131472349, 0.00373552, 0.000890878495, 0.00380282663, -0.00644648261, -0.00931823347, 0.0150093865, 0.00324193761, -0.007601914, 0.00171071105, 0.00400100742, 0.0103876619, 0.00205472298, -0.0336533338, -0.0237517748, 0.00599777186, 0.00839089788, -0.0147252027, -0.0118459733, -0.00766548142, 0.0268329233, 0.00774774468, 0.00275022513, 0.00333728874, 0.00343824876, 0.0053845332, -0.00493582198, -0.0235722903, -0.00890691485, 0.0159890726, -0.0157048889, 0.0282688, -0.0182027128, -0.00952763204, 0.0224355552, -0.0067194486, -0.00374673773, -6.71532962e-06, 0.00313723832, 0.000593607372, 0.00499565, -0.0186962951, 0.000695502211, 0.022330856, 0.00954258908, -0.00496947533, -0.00805436447, 0.00618099514, 0.00274648587, 0.0128780082, 0.00662970636, -0.00462920265, 0.013192106, -0.0147027671, -0.00179858366, 0.0191898774, -0.0310208928, -0.00579211256, -0.0182027128, -0.00587811554, 0.0013582859, -0.00352986064, 0.0031484561, 0.011554311, -0.0163031705, 0.0121675488, -0.029659804, 0.00524244132, 0.0125713889, 0.0122946836, 0.0218073595, -0.0166172683, 0.00800949335, -0.0143064056, 0.0097744232, 0.0273713768, -0.00369999697, 0.00653622486, 0.0186813381, -0.00579959108, -0.0161536, 0.00413562078, 0.000177030553, 0.00397109333, -0.0186215099, -0.0200873, 0.0187710803, 0.00688771531, -0.0218821447, 0.0212838631, 0.00731025171, 0.0153160058, -0.0129976645, -0.00378039107, 0.0188907366, 0.0255167037, 0.00407579262, 0.0271918923, 0.0112028206, 0.0218073595, 0.0132818483, -0.0236321185, 0.0276555605, 0.00523496279, -0.0233928058, -0.00842829049, 0.000289091462, -0.000776831061, -0.00172192883, 0.00212389929, 0.00411318522, -0.00655866042, 0.00370747549, -0.000518822228, 0.00981181581, 0.0122946836, 0.0130649712, 0.0176941734, -0.0129154008, 0.0052536591, -0.00428145193, -0.00464042043, -0.0262944698, 0.0243650116, -0.0114271762, 8.58861094e-05, -0.00731773, -0.00877978, 0.0158993304, -0.021224035, -0.00228281762, -0.0254867896, -0.0126910452, -0.0195039753, -0.0143587552, -0.0291961357, 0.000394959236, -0.00101053482, 0.00535835838, 0.0054593184, -0.00442728261, 0.00210894225, 0.00109934213, 0.00653996412, 0.021627875, 0.0113000413, -0.0164676979, -0.0239910875, -0.0132444557, -0.000937151839, -0.0124966037, -0.0124143399, -0.00634552259, -0.00268665771, -0.00678301603, -0.0191001352, -0.000644087384, 0.0187710803, 0.0178587, 0.0091088349, -0.0235573333, -0.0141792707, -0.00524618058, -0.0114271762, -0.00754208583, 0.0106419316, 0.0054780147, 0.0123769473, -0.0122797266, 0.0102829626, 0.000720274809, -0.00770287402, -0.0067381449, -0.00602394622, 0.00517887389, 0.0107167168, 0.000128887594, 0.00302506052, -0.029659804, -0.0255167037, -0.00190982665, -0.0141269211, 0.000634271826, 0.00778513728, -0.00354294805, -0.000827311072, -0.0154356621, -0.00553036435, -0.0119357156, -0.00623334479, 0.0204612259, 0.0335336775, 0.00176025624, 0.0149794724, 0.020521054, 0.00733642653, 0.00241743098, 0.00402718224, 0.0286875963, -0.0040496178, 0.0123919044, -0.0147177242, 0.00792723, 0.00235199393, 0.000168149811, -0.0109111583, 0.00413188152, -0.0119506726, -0.0113449125, -0.00770287402, 0.0150692146, 0.0272068493, 0.0166621394, -0.0207454097, 0.0209248941, 0.0214334335, -0.0178437438, -0.0156899318, -0.00572480587, 0.00461050635, 0.00774026616, 0.0017826918, 0.00222111982, 0.00748973619, 0.0167219676, -0.00360464584, -0.031110635, -0.00381217478, 0.026713267, -0.00314097758, -0.00140970072, 0.0226898249, 7.9576108e-05, 0.00925840531, -0.00409822818, 0.00428145193, -0.00863768812, 0.00436745444, -0.00517887389, 0.00420292746, 0.00134987256, -7.68300888e-05, -0.0226449538, -0.0174249467, 0.00195563259, 0.00394117925, -0.0134762898, 0.00852551125, -0.0104998397, -0.00236134208, 0.011554311, -0.0130275786, -0.0120404139, -0.0187112521, 0.00507791387, 0.00260439399, -0.00412066374, -0.00716442056, -0.0242453553, 0.00163405621, -0.00825628452, -0.00349246804, -0.010806459, -0.0172305051, 0.0170510225, 0.000798799214, 0.0409224518, 0.0303926989, -0.0289717801, -0.0157048889, 0.00617351662, -0.00479373, 0.0100062573, -0.0247838087, 0.0210146364, -0.00884708669, -0.0271171071, 0.00943041127, 0.00144428888, 0.00509287091, 0.00765426364, 0.0218073595, -0.0258756727, -0.00655866042, 0.00536209764, -0.0322174579, -0.00927336235, 0.00684284419, -8.51265722e-05, -0.00302319089, -0.0113598695, 0.00405709632, -0.00821889192, 0.00441980409, 0.00125732587, 0.00201172149, -0.00014384462, -0.00549297174, -0.0066259671, 0.0228244383, -0.00876482297, -0.00841333345, 0.0211791638, 0.0279846154, -0.00054125773, 0.00999877881, 0.0244846679, 0.0178587, -0.00447215373, -0.00335224578, -0.0100062573, -0.00437493296, -0.0198629443, 0.00110214658, -0.000125148334, 0.000104056569, 0.00180606218, -0.0070485035, -0.00349433767, -0.000452216656, 0.0081740208, 0.0310807209, -0.0158095881, 0.0103652263, -0.0137305595, 0.0281042717, 0.00640909, 0.00913874898, 0.000472548883, 0.00267730956, 0.0131547134, -3.34123251e-06, -0.00737008, 0.000743177778, -0.00333728874, 0.0028661422, 0.00463668117, 0.00239312579, 0.0117861452, 0.0100810425, 0.0112626487, 0.00667831674, 0.0061099492, -0.00167799252, -0.000408747757, -0.00888447929, 0.00278013921, -0.00214072596, 0.00347003248, -0.0228693094, -0.0412814207, -0.00844324753, 0.0139175225, 0.00510034943, -0.00457685301, -0.00939301867, -0.0189356077, 0.0113449125, 0.0119880652, -0.0301833, -0.011928237, 0.0253820904, -0.00755704287, -0.00667831674, -0.0182027128, -0.0169463232, 0.00340272579, 0.0175894741, -0.0109859435, -0.0097744232, -0.00917614158, -0.0137903877, 0.00952015352, 0.00245295395, 0.00523870206, -0.005048, 0.0210445505, 0.00643152557, 0.0203864407, 0.0141493566, 0.00442354335, 0.0122049414, 0.00585194072, -0.00718685612, 0.00740747247, 0.00733642653, -0.00761313178, 0.000189650542, -0.00800949335, 0.00137043849, 0.00327185169, 0.0236321185, 0.0144784115, 0.00267917919, -0.000553410326, 0.00185934664, 0.00694754347, -0.0138502158, -0.00332046207, -0.0135062039, 0.0109410724, 0.0186065529, -0.00240995246, 0.00203976594, 0.0187411662, -0.0083235912, 0.00328867836, -0.00384021923, 0.0150991287, -0.00937058311, 0.00678301603, 0.02236077, 0.0078449659, 0.0177839156, 0.00450206781, -0.0115842251, 0.0176792163, -0.0100660855, 0.0155403605, 0.0167668387, -0.0215530898, -0.0187262092, 0.01024557, -0.00423284154, -0.010260527, -0.00806184299, -0.0026922666, 0.0274012908, 0.0060725566, 0.0053284443, 0.0110607287, 0.000877323677, 0.0048124264, 0.00165088288, -0.00842081197, -0.0195189323, 0.0189206507, 0.00485729752, -0.0170061514, -0.0143363196, 0.00486103678, 0.011008379, -0.0154356621, 0.0112102991, 0.0204761829, 2.65837953e-05, -0.00407205336, 0.0123245977, -0.0128256585, 0.0109036798, 0.0286576822, 0.00846568309, -0.0242453553, 0.0116216177, 0.000244454073, -0.00888447929, -0.0199826, 0.0137903877, -0.0109635079, 0.0291961357, -0.0029970163, -0.00196872, 0.000953511102, 0.00692510791, -0.0242154412, 0.00270535401, 0.0142390989, -0.00884708669, 0.0126536526, 0.0277303457, -0.00269787549, -0.0142615344, -2.63500915e-05, -0.00340459542, 0.00191169628, 0.0242303982, 0.0466958694, -0.0161984712, 0.00209211558, 0.00136389479, 0.012055371, -0.0138876084, 0.00741869025, 0.0172753762, 0.0110233361, -0.00945284683, -0.00153683545, 5.1706942e-05, -0.00771783106, -0.00158451102, 0.000343310734, 0.00113579992, -0.011928237, -0.0169762373, 0.00146672444, 0.00151253026, 0.00465537747, 0.0249632932, 0.00538827246, -0.010604539, 0.00835350528, -0.00176586513, -0.0226299968, -0.00417675264, -0.0297645032, -0.0112701273, 0.0100885211, 0.0146354605, 0.00321389316, -0.0211342927, 0.00552288583, -0.00693258643, 0.00803940743, -0.00384769775, -0.00819645636, 0.00526113762, 0.0210295934, 0.006682056, -0.0108139375, 0.0189356077, -0.0108438516, -0.000117260832, 0.0040870104, -0.0070858961, 0.0102081774, 0.004124403, -0.00116851844, 0.00566123845, 0.00717563834, 0.0103502693, 0.0218671877, -0.000561823661, 0.0136109032, -0.00205285335, -0.0127957445, 0.00232768874, -0.0123919044, -0.0201770421, 0.016123686, 0.00934066903, 0.0168864951, 0.0103353122, -0.0200873, 0.00125639106, -0.00345694507, 0.00279696588, 0.0178287867, 0.00682788715, -0.0171407647, 0.00143774517, 0.0026735703, -0.00686901901, -0.0119731082, -0.00298392889, 0.000166046477, -0.00332607096, 0.0096622454, 0.0131098423, -0.0139923077, 0.00161629473, 0.00442728261, -1.53075925e-05, -0.000721209624, 0.00884708669, 0.0175894741, 0.020880023, -0.0113000413, 0.0221214574, -0.0117861452, -0.00116851844, 0.00131248, 0.0113823051, -0.00422910228, 0.00432632258, -0.00457311375, 0.00170697179, -0.0231834073, 0.0235274192, -0.000133912225, 0.00851055421, 0.00921353418, 0.0138950869, -0.00308301905, -0.000665120722, 0.0116365748, 0.0210295934, -0.0211342927, 0.00996886473, -0.00513774203, 0.00655866042, 0.000853018486, 0.0248286799, 0.0156001886, 0.00513774203, 0.000632869604, -0.000486103672, -0.0061286455, 0.037332762, -0.014642939, 0.0047376412, -0.0312302914, -0.0180531424, -0.0164676979, -0.00802445, -0.0049619968, 0.0091088349, -0.00302879978, 0.000433520356, -0.011898323, -0.0191300493, 0.00995390769, -0.00742616877, -0.0017452992, 0.0249333791, 0.0120179793, 0.00840585493, 0.022330856, -0.0149719939, -0.0185168106, 0.0279247873, 0.0133341979, 0.0194591042, -0.02710215, 0.000433052948, 0.0221364144, 0.0155104464, -0.00100679556, 0.0243051834, -0.00490964716, 0.000456657028, 0.00998382177, -0.0176193882, 0.00502556423, -0.0058070696, 0.0113224769, -0.000173408145, 0.00531722652, -0.0169463232, -0.00699615385, 0.0143138841, -0.00130032736, 0.00933319051, -0.00158451102, -0.00918362, -0.0158694163, -0.00445719669, -0.00576593773, -0.0125938244, 0.0106419316, -0.00716816, -0.012631217, 0.0154655762, 0.025606446, -0.00196498074, -0.0120179793, 0.0163330846, 0.0140670929, -0.0250679925, 0.00141530961, 0.0144484974, -0.0155852316, 0.0173352044, -0.0165424831, 0.00495451828, 0.0110457717, -0.0162732564, 0.00565749919, 0.0129677504, -0.0130874068, 0.0127957445, 0.00661474932, 0.00263430807, 0.020506097, 0.00864516664, -0.00243986654, -0.0157048889, 0.0102829626, 0.00439362926, 0.011898323, -0.00983425137, -0.000797397, 0.00987164397, 0.00177240884, 0.00754956435, 0.015390791, 0.0133267194, -0.00919109862, -0.0156600177, 0.0240808278, 0.00172192883, 0.0184121113, 0.0116814459, -0.0193394478, 0.0316191763, -0.0553410351, -0.00577341625, 0.00783000886, -0.000782439951, 0.000274835533, 0.0187112521, 0.017544603, -0.0126461741, 0.0303328708, -0.00568367401, 0.00375982514, 0.00131995848, -0.00581828738, 0.00871995185, -0.0217026602, 0.00805436447, 0.0150093865, 0.00165088288, -0.0203116555, 0.000452917768, 0.013910044, -0.00720181316, -0.0104774041, 0.00187149923, 0.00426649489, 0.006035164, -0.00390752591, -0.0215830039, -0.021224035, -0.01428397, 0.0218821447, 0.0109635079, 0.00523496279, -0.00696250051, -0.0143138841, -0.00106942817, 0.0185467247, 0.00617725588, -0.00366634363, -0.019040307, -0.00759443548, -0.00897422154, -0.0004417, -0.0172454622, -0.0167518817, -0.0092210127, -0.0145307612, -0.0230487939, -0.00677553751, -0.0118758874, -0.0169911943, 0.00228468725, -0.0326960832, -0.00466659525, 0.0440335162, 0.00843576901, -0.0255615748, -0.00988660101, 0.0128480941, 0.00186682516, 0.0108363731, 0.00145363703, -0.00887700077, -0.00014512999, 0.00936310459, 0.0232432354, -0.00535088, -0.00260626362, -0.0076953955, 0.0217624884, 0.00307927979, -0.0173352044, 0.00159105472, -0.00298018963, 0.000204023323, -0.00118160585, -0.0081740208, -0.00354855694, 0.00472642342, 0.0345507525, 0.0117711881, 0.00566497771, 0.0148747731, 0.0061099492, 0.00942293275, -0.00592298666, -0.0229740087, 0.00357286213, 0.00166303548, -0.007141985, -0.00756078213, -0.00133211107, -0.0128480941, -0.0189505648, -0.0220765863, -0.0162583, -0.00763556734, -0.00893682893, 0.01171136, 0.00935562607, 0.00147326814, 0.000248193333, 0.0162283853, 0.00217811833, 0.0349994637, -0.0172753762, 0.0265936106, -0.0123919044, 0.00107410224, 0.000948369619, 0.0184569824, 0.0128630511, 0.00245669321, -0.00923597, 0.0345806666, 0.00802445, 0.00344946655, 0.00516017759, -0.000613705895, 0.0061286455, 0.00974450912, -0.0295401476, -0.00742242951, -0.0171856359, 0.0216577891, 0.0120254578, -0.0142914485, -0.0198330302, -0.0184868965, -0.00953511056, -0.00413936, 0.00874986593, 0.00615108106, -0.00816654228, 0.00880221557, 0.00517887389, -0.0122198984, 0.00555653917, -0.00919857714, 0.00875734445, -5.12687475e-05, -0.00116290955, 0.0119880652, 0.0237966459, -0.0154207051, -0.00098436, -0.0100212144, -0.0132668912, -0.00604638178, -0.0224205982, 0.00937806163, -0.00865264516, 0.0185915958, 0.00310919387, 0.00107410224, -0.0189056937, 0.00369999697, -0.000321108877, 0.00386639405, 0.015405748, 0.0214783046, 0.0115169184, 0.0151589569, -0.00511156721, 0.0131472349, 0.011554311, 0.00331111392, 0.00192384887, 0.013910044, -0.00788235851, 0.0133715905, -0.0106120175, -0.0022323376, 0.00334850652, -0.00201359112, -0.0180232283, 0.0132145416, -0.0203266125, 0.0316490903, 0.00981181581, 0.00762808882, 0.00257821917, 0.016512569, -0.0191300493, -0.0103053981, -0.0158245452, -0.0129827075, 0.0313499495, 0.000438661838, 0.00848064, 0.0150841717, 0.0133042838, -0.0132444557, 0.00097314216, -0.010619496, 0.00231460133, -0.00760565326, 0.00095912, 0.0180980135, 0.000444270729, -0.00330737466, -0.0204013977, 0.0225552116, -0.00461050635, -0.0176493023, -0.0188458655, -0.00654370338, 0.01755956, 0.00276518217, -0.0115692681, 0.0165424831, -0.0105297538, -0.00384395849, 0.00159946806, 0.0103652263, -0.0178736579, 0.00221738056, -0.0014396148, 0.00684658345, 0.0116889244, 0.0133940261, -0.00316528277, 0.0127284378, 0.00707093906, 0.0211342927, -0.00707093906, -0.00163592584, 0.0133341979, -0.013910044, 0.00458807079, -0.00801697187, 0.00726538058, 0.0174399037, -0.0143811908, -0.00637169741, 0.00746356137, -0.00741495099, 0.0139698721, -0.00742990803, 0.0132743698, 0.0264889114, -0.00128256588, 0.017544603, 0.00686527975, 0.0234825481, 0.0173651185, 0.0170211084, 0.0137754306, -0.0124143399, 0.00447215373, 0.0199227724, -0.00662222784, 0.0047376412, 0.00395613629, 0.0333841071, -0.00701858941, -0.0302730426, -0.000747851853, -0.00347003248, 0.0134164616, -0.0249632932, -0.00305310497, 0.015764717, -0.0202219132, -0.00113953918, 0.00790479407, -0.0115767466, 0.00823384896, 0.013925001, 0.00621090923, 0.00222859834, -0.00447215373, -0.0172454622, -0.0251128636, 0.0142465774, 0.00617725588, 0.00497321459, 0.0285230689, -0.0211791638, -0.0182176698, -0.00562010659, -0.00591550814, 0.0150093865, 0.00869003776, -0.0009465, 0.00584072294, -0.00388135086, -0.00705224276, 0.01755956, -0.00375795551, 0.00487599382, -0.0143363196, 0.00572480587, 0.00752338953, -0.00937058311, -0.00796462223, 0.00711954944, 0.0114645688, -0.00690641161, -0.00206033187, 0.0133117624, -0.0445420556, -0.00421414524, -0.0215830039, 0.00462920265, -0.0140147433, -0.0156301036, -0.0142390989, 0.00485355826, -0.0192197915, -0.00844324753, -0.00716442056, -0.00605012104, 0.00388135086, -0.00150785618, 0.0127658304, -0.018651424, -0.010604539, 0.016123686, -0.000856757746, 0.00227720872, 0.0218073595, -0.0102979196, -0.000357099256, -0.00113673473, 0.00901909266, 0.0140521359, -0.00674562342, -0.00811419263, -0.00545557914, -0.0010526015, -0.00487599382, -0.0113374339, 0.0155702746, -0.00990155805, -0.00647639669, -0.000810017, -0.00679423381, -0.00671570934, -0.0226150397, -0.017918529, 0.0188608225, -0.00599029334, -0.0277303457, 0.0128107015, -0.0165275261, -0.0024809984, -0.00470772712, 0.0217325743, -0.005496711, 0.00154805323, -0.0246791095, -0.000854888116, 0.0172604192, -0.00999877881, 0.00987912249, 0.00476381602, -0.00990155805, 0.00959493872, -0.00493956124, -0.00318771834, 0.00596037926, -0.00960989576, -0.033743076, 0.00937058311, 0.00227346946, 0.0134837683, 0.0174698178, -0.013192106, -0.0163929127, 0.0192197915, 0.0102530485, 0.00686154049, 0.069460474, 0.0225701686, -0.0120628495, -0.028926909, 0.00621464849, -0.0291811787, -0.0101932203, 0.0426574685, -0.0183672402, 0.0342815295, -0.00502182497, 0.0154506192, 0.0196535457, 0.00976694468, 0.00631186925, -0.00169668882, 0.00483486196, -0.0027670518, -0.0166172683, -0.0101932203, -0.00286240294, -0.00378413033, 0.00951267499, 0.0049246042, -0.0012713481, -0.0129677504, -0.00576967699, 0.00324567687, -0.00838341936, 0.0161984712, -0.0197283309, 0.00826376304, 0.0124816466, 0.000978751108, -0.020147128, -0.00127415254, 0.00821889192, -0.0138576943, 0.010978465, -0.0202069562, 0.0344909243, 0.0216577891, 0.0174847748, 0.0182475839, 0.020521054, -0.017933486, 0.0108662872, -0.00909387786, -0.00139661331, -0.0247090235, 0.0245893672, -0.00635300111, 0.000692697766, -0.00186682516, 0.0130874068, 0.0117936237, 0.00525739836, 0.0102006989, 0.00695876125, -0.00105821039, 0.0131173208, -7.18638839e-05, -0.00467781303, 0.00129378366, 0.00919857714, -0.0224355552, -0.00359903695, 0.00925092679, -0.0120105008, -0.00323819835, -0.00159479398, -0.0179783572, 0.0116515318, -0.0221065, -0.0180082712, 0.0238863882, -0.0017013629, -0.00565376, 0.0031110635, -0.012055371, -0.0310508069, -0.0116739674, -0.00944536831, -0.0323072, -0.0139324795, -0.0114496117, -0.0189804789, -0.0083609838, -0.0188907366, 0.0184719395, 0.00320828427, 0.0295700617, -0.0167369246, -0.00153403101, 0.0207005385, 0.00636047963, 0.00340646505, 0.0187262092, 0.0114570903, -0.00514896, 0.0082861986, -0.0105596678, -0.000821702182, -0.00447589299, 0.00291475258, 0.0279098302, -0.000876388862, 0.0261748135, 0.0169612803, 0.000713263697, 0.0111355139, -8.22052752e-05, 0.013177149, 0.0341917872, 0.00514896, 0.00313723832, 0.0112701273, 0.00610247068, 0.00864516664, 0.00320267538, -0.00462920265, -0.0112850843, -0.00697371829, -0.00243051839, -0.0128555726, -0.00501434645, 0.0528282523, -0.0183522832, 0.0254867896, -0.0016209688, -0.0037448681, -0.00889943633, 0.00122928142, 0.00430388702, 0.016512569, 0.0120329363, 0.0107316738, -0.000391921087, 0.0139025655, 0.00603890326, -0.00066745776, 0.00596785778, 0.0102680055, -0.00526487688, 0.0124592111, 0.00756826065, 0.00165462214, -0.00161255547, 0.0241107419, -0.00844324753, 0.00581080886, 0.0105372323, 6.77156422e-05, -0.0170809366, 0.00878725853, 0.00198554667, 0.00994642917, -0.028941866, 0.00803192891, 0.00119656289, 0.0240808278, 0.00567993475, 0.0247838087, 0.00405709632, -0.00167799252, -0.00235947245, 0.00703728572, -0.0132668912, 0.00270909327, 0.00358408, -0.0170360655, 0.0262495987, -0.0159142874, -0.000475820736, -0.0156450607, -0.017544603, -0.0117861452, -0.00508165313, 0.00705972128, -0.00700737163, -0.00433006184, 0.00075205852, 0.0158245452, 0.0512128919, 0.00169107993, 0.00396735407, -0.00998382177, -0.00273900735, 0.0183223691, -0.0119805867, -0.0081366282, -0.00526487688, -0.018651424, -0.00901909266, -0.00497321459, -0.0118758874, 0.00661848858, -0.0192497056, -0.0148598161, -6.74235125e-05, 0.027835045, 0.00145737629, -0.00583698368, -0.012242334, -0.0191749204, 0.0121675488, -0.00774026616, 0.00682414789, -0.00309049757, -0.000621184416, -0.00878725853]
|
31 Mar, 2021
|
EasyUI jQuery datebox widget
31 Mar, 2021
EasyUI is an HTML5 framework for using user interface components based on jQuery, React, Angular, and Vue technologies. It helps in building features for interactive web and mobile applications saving a lot of time for developers.
In this article, we will learn how to design a datebox using jQuery EasyUI. datebox widget is a calendar to access dates, months, and years.
Downloads for EasyUI for jQuery:
https://www.jeasyui.com/download/index.php
Syntax:
<input class="easyui-datebox">
Properties:
panelWidth: The drop down calendar panel width.
panelHeight: The drop down calendar panel height.
currentText: The text to display for the current day button.
closeText: The text to display for the close button.
okText: The text to display for the ok button, reserved for datetimebox plugin.
disabled: When true to disable the field.
buttons: The buttons underneath the calendar.
Event:
onSelect: Fires when user select a date.
Methods:
options: Return the options object.
calendar: Get the calendar object.
setValue: Set the datebox value.
cloneFrom: Clone the datebox from a source datebox
CDN Link: First, add jQuery Easy UI scripts needed for your project.
<script type=”text/javascript” src=”jquery.min.js”> </script>
<!–jQuery libraries of EasyUI –>
<script type=”text/javascript” src=”jquery.easyui.min.js”>
</script>
<!–jQuery library of EasyUI Mobile –>
<script type=”text/javascript” src=”jquery.easyui.mobile.js”>
</script>
Example 1:
HTML
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0,
maximum-scale=1.0, user-scalable=no">
<!-- EasyUI specific stylesheets-->
<link rel="stylesheet" type="text/css"
href="themes/metro/easyui.css">
<link rel="stylesheet" type="text/css"
href="themes/mobile.css">
<link rel="stylesheet" type="text/css"
href="themes/icon.css">
<!--jQuery library -->
<script type="text/javascript" src="jquery.min.js">
</script>
<!--jQuery libraries of EasyUI -->
<script type="text/javascript"
src="jquery.easyui.min.js">
</script>
<!--jQuery library of EasyUI Mobile -->
<script type="text/javascript"
src="jquery.easyui.mobile.js">
</script>
<script type="text/javascript">
$(document).ready(function (){
$('#gfg').datebox({
closeText: 'text',
});
});
</script>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h3>EasyUI jQuery datebox widget</h3>
<input id="gfg" class="easyui-datebox">
</body>
</html>
Output:
Reference: http://www.jeasyui.com/documentation/
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?/How to design datalists for mobiles using jQuery EasyUI Mobile ?/How to design menu using jQuery EasyUI Mobile ?/EasyUI jQuery menu widget/EasyUI jQuery datebox widget
|
https://www.geeksforgeeks.org/easyui-jquery-datebox-widget?ref=asr10
|
CSS
|
EasyUI jQuery datebox widget
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, How to design menu using jQuery EasyUI Mobile ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, EasyUI jQuery datebox widget, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, EasyUI jQuery menu widget, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, How to design datalists for mobiles using jQuery EasyUI Mobile ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0272554848, 0.0136586446, -0.00115785596, 0.047619842, 0.0513589755, 0.0224502385, 0.0126775084, 0.0356608033, -0.0345174335, -0.0301293619, 0.00584046124, -0.0179849118, 0.018865617, -0.0564268865, 0.0122217052, -0.0147479363, -0.0309019107, -0.0123221371, -0.0128551945, 0.0151033085, -0.00835896656, 0.0106766103, -0.0267765056, 0.0148792695, -0.0171505604, 0.0199626349, 0.0208433382, 0.0124148428, -0.00381638599, 0.0265910942, 0.0197463203, 0.0159299355, 0.021538632, -0.00747439964, -0.0487632155, -0.0330032408, 0.0401415825, 0.0256176833, -0.0366496667, -0.0220021605, 0.00396703277, -0.00154316414, 0.00429536542, 0.00598338246, -0.0204570647, 0.0181857739, 0.0193291456, -0.035629902, 0.00255327043, 0.00112791976, 0.00941735692, 0.0371440947, 0.0429536551, 0.0394617394, 0.0109238252, 0.0256794877, 0.000364063133, 0.0184947941, -0.0107152378, 0.015790876, 0.0639669523, -0.0539547354, 0.00292602461, -0.015667269, 0.00836669188, 0.0389055051, -0.000307329145, 0.036155235, -0.0233772956, 0.0413158536, -0.00160883076, 0.00727353711, -0.00429922808, -0.00644304836, -0.00081262365, -0.0342393182, -0.0256485865, 0.00797269307, -0.024937842, 0.0104216691, -0.0181857739, -0.0213377699, -0.0427682437, -0.00934782811, -0.0328487307, -0.00527650118, 0.00862935837, -0.0542328507, 0.0516061895, 0.0051219915, 0.0109547274, -0.0134500563, -0.0515443869, -0.0128011163, 0.00247987825, 0.0131564885, 0.029557677, 0.0301139113, -0.0660682842, 0.0290168934, 0.0330959447, 0.0194063988, -0.0174286775, -0.0650176182, -0.0101667289, 0.0141376238, 0.0556852408, -0.0149256224, 0.00224618264, -0.0317980647, 0.0452404, 0.00191205565, 0.00742804678, 0.0345174335, -0.0445296541, 0.0405433066, -0.0141762514, -0.0186647531, 0.0346410424, 0.0264674854, 0.0157290716, 0.00577865727, 0.0193291456, 0.048948627, -0.0301293619, 0.0207197312, -0.00324663194, 0.0200707912, 0.0398943648, -0.010545277, -0.0016464924, 0.0677987933, 0.00510267774, -0.00451940438, 0.031056419, 0.058095593, 0.0236399621, 0.0119358627, -0.0427373424, 0.0176295396, -0.0118740592, -0.0255558789, -0.0150724072, 0.00765208574, -0.0465382785, 0.00997359119, 0.0330650434, 0.0335594751, -0.0220485125, 0.0246442743, -0.0103135128, -0.0384728797, 0.0396471508, 0.0228828639, 0.058342807, -0.0362479426, -0.0196536146, 0.017490482, -0.0256485865, -0.0023350257, 0.0218785517, -0.0221566688, 0.0311800279, -0.00694906712, -0.0272863861, -0.0025745153, 0.0195609089, -0.0172741674, -0.0330341421, 0.0461983569, -0.0130715081, -0.00955641549, -0.0259576049, 0.040975932, -0.0627926812, 0.0312109292, 0.0302684214, -0.0219094548, 0.0147942891, -0.00946371, -0.00628081337, 0.0151882889, 0.0245824698, 0.0111015113, -0.000480669551, -0.0147324856, 0.0243816078, -0.024984194, -0.0162080526, -0.0307010487, -0.0293568149, 0.0294186193, 0.0173977762, 0.0318907723, 0.0347028449, -0.0320452824, -0.00675206725, 0.0436644, -0.0602587238, -0.00166194339, 0.0131333116, -0.0322924964, -0.0208587889, -0.00197192817, 0.0187265575, 0.0452404, 0.00996586587, -0.0230837278, 0.0174595788, -0.00910833851, -0.0107847666, 0.00804222189, -0.0210596509, -0.0127006853, -0.0119667649, 0.00313268113, -0.0172741674, -0.04947396, -0.0385655835, -0.0428918526, 0.00551599078, 0.0334976725, -0.0379166454, 0.0168878939, -0.0697147101, -0.0491031371, 0.0179231074, -0.0224193353, 0.0383801721, 0.00953323953, -0.00763663463, -0.0193754975, 0.00480524683, -0.00146108097, 0.0360625274, -0.0136431931, 0.017042404, 0.000722332159, -0.0228828639, 0.0181703232, 0.00339534739, -0.0314117931, -0.0493812524, -0.0183557346, 0.0189583227, 0.0224965904, 0.00876841694, 0.00821990799, 0.016640678, 0.00333933765, 0.00138865458, 0.0123221371, -0.0468163937, 0.0207042806, 0.018340284, 0.00435330672, -0.00011238156, -0.00428764, 0.0218785517, 0.028182542, 0.0192982424, 0.0341466106, -0.0162235033, 0.0229292177, 0.0161462482, 0.0102826105, 0.0397398584, -0.0244125091, 0.0040249736, -0.0245515686, 0.028182542, -0.0196845178, 0.0501538, 0.0287078749, -0.00183673226, 0.00219017291, -0.0490722321, 0.0249996446, 0.0164861698, 0.0210287496, 0.0256640371, 0.0120131178, 0.0778110102, 0.0367114693, 0.0147788385, -0.00781432074, 0.0125461752, 0.0105530024, 0.0196999684, 0.0160998944, -0.017938558, -0.00536534423, 0.0164552666, 0.0299285, 0.0303920284, 0.0406360105, -0.000710743945, 0.0134191541, -0.00995041523, 0.00728898821, -0.0206888281, -0.007895438, -0.0474344306, -0.00279662292, 0.00782204606, 0.0231146291, 0.0515752882, 0.00911606383, -0.0262975264, -0.0230219234, 0.0154895829, 0.0241498426, -0.0315972045, -0.0192364398, 0.0102362577, 0.0332195535, 0.0357226096, 0.0306546949, -0.00279662292, 0.0254940763, -0.00458893366, 0.00913151447, -0.0233463924, 0.0392145254, 0.0734229386, 0.0027097112, -0.0428609513, -0.0188965183, 0.0328178294, 0.00067501358, -0.0261275657, -0.020240752, 0.0122294314, 0.0210596509, 0.00489409, -0.0360934325, 0.0219403561, 0.0125384498, 0.026761055, 0.0326633193, -0.00768685, 0.00876841694, -0.0204570647, -0.0183248334, 0.0119358627, -0.0456112213, 0.0117272753, -0.0211060047, 0.0216004346, 0.00144659565, 0.00148522307, -0.0186493024, 0.0227747075, 0.0233154912, 0.0227901582, -0.0195454583, 0.00912378915, -0.0384728797, -0.0500919968, 0.0196536146, -0.00172181579, 0.0180467162, 0.0122139798, 0.0144775454, 0.0231764335, -0.0554689281, -0.0187574588, -2.809539e-05, -0.0245979205, 0.0233309418, -0.0210751034, -0.0116345696, -0.0303611271, 0.0482069813, -0.0260657612, 0.00415244419, -0.00465846295, 0.00886112265, -0.00681387121, -0.013867232, -0.0488559194, 0.0189119689, -0.0295885783, 0.0226820018, 0.0298512448, -0.00561642228, -0.0255558789, 0.00602587266, 0.0265756436, -0.0202253, -0.0485159978, 0.0429845564, -0.02748725, -0.00811175164, 0.0174286775, -0.0106997862, 0.0230219234, 0.00820445735, 0.0500610955, 0.0273018386, 0.0203798097, 0.0074357721, 0.0220948663, -0.0141762514, -0.0315044969, -0.00819673203, -0.0443133377, -0.004109954, 0.033404965, 0.0292641092, 0.00954096485, -0.00711130211, -0.0177995, 0.00419493439, 0.0367423706, 0.0209360439, 0.0127547635, 0.0625145659, 0.00353440596, -0.00409836601, 0.0133341746, -0.0131951161, -0.0291868541, 0.0215695333, 0.00910833851, 0.0143771134, -0.0714452192, 0.000667288143, 0.00252623111, 0.0182630289, -0.0166097768, 0.0273327399, 0.0106997862, -0.0133419, 0.0582810044, 0.00198544771, 0.0170115, 0.0152191911, -0.0233309418, -0.0176295396, -0.0210287496, -0.00246829, 0.0383492708, -0.00337023963, -0.0591462553, -0.00952551421, -0.0449931808, 0.0171196591, 0.0264365841, 0.0153118968, -0.0296194814, -0.0648322105, -0.00961822, -0.0264829379, 0.0259421542, -0.00913924, -0.00437648315, 0.00654734205, 0.0188038126, -0.0265292898, -0.0166870318, 0.0360934325, -0.0101358267, 0.0388437025, -0.017814951, -0.0327251218, 0.0156749934, 0.00560097117, -0.0111246873, 0.0120208431, -0.0184329897, 0.00797269307, 0.0266838, 0.0373604111, 0.0294495206, 0.0178922061, 0.001892742, -0.00760573288, 0.005384658, 0.00152578182, 0.0275490526, -0.00391295459, 0.0326015167, -0.000873461831, 0.0174132269, -0.0301139113, 0.0148869948, -0.0279198755, 0.0226511, 0.031859871, 0.0241961963, 0.0176295396, -0.0433862805, -0.00312109292, -0.0132105667, -0.0177995, -0.0247987825, -0.0155282095, 0.0125848027, 0.00826626085, 0.00765208574, 0.0241807457, -0.052193325, 0.0454258099, 0.00767139904, -0.0251696054, 0.0199626349, 0.0132491942, 0.00713061588, -0.0301139113, -0.00510654086, -0.037731234, -0.0170578547, 0.0119744902, -0.0054619126, -0.0320761837, -0.0180312637, 0.0242889021, -0.00204725144, 0.00959504303, 0.020889692, 0.00686794939, -0.0136895459, -0.0253241155, 0.0156518184, 0.0220176112, -0.0166715812, -0.0320143774, -0.00544259883, 0.00181741861, -0.0264520347, -0.0151573867, 0.0132800955, 0.0244434103, 0.00142535067, -0.0073005762, -0.0345792361, 0.0241498426, -0.00275992695, -0.0159453861, -0.0450240821, 0.0220948663, -0.0233618449, 0.0167797375, 0.00563187292, -0.00777183054, 0.00146204664, 0.00332002388, 0.00153833569, 0.0466927849, -0.00240455498, 0.0111246873, 0.00948688667, 0.017614089, -0.00150163972, -0.00205304567, -0.0207506325, -0.0231146291, -0.0357535109, -0.00774865411, -0.0013548556, -0.0125075486, 0.0421502069, 0.0140835457, 0.00546577526, -0.0352899805, 0.0141298985, 0.0450240821, -0.0200707912, 0.00661300868, 0.00961822, -0.019591812, 0.00610312726, -0.0033316121, 0.0170115, -0.00339148473, 0.0554380268, -0.00670957705, 0.00534603046, -0.00133264484, 0.0124225682, -0.00426060101, 0.0126697831, 0.00751689, 0.0158526804, 0.0219867099, 0.00580569636, -0.0186184011, -0.0587136298, 0.0314735956, 0.0106302574, 0.0218167491, -0.0109006492, 0.0146011524, -0.000250595185, -0.00983453263, -0.0245824698, 0.0425828323, 0.0160998944, -0.040728718, 0.0281207375, 0.0250459984, 0.0281670913, 0.0191746354, -0.0220021605, -0.00926284771, 0.0102362577, -0.017088756, 0.00367346453, 0.00285649532, -0.0320761837, 0.000112985108, 0.00951778796, 0.00264018192, -0.0140526434, -0.0373604111, -0.0181085188, -0.00563573604, -0.0118740592, -0.0270391721, -0.00267494656, -0.0253241155, 0.0039902092, 0.00688726315, 0.0333740637, 0.0185411461, -0.00372368027, -0.0347028449, 0.00944053382, -0.0304229315, -0.00666322419, 0.00989633705, -0.00283525023, 0.0227901582, 0.0239798818, 0.00852120202, -0.0260503106, 0.00764049729, -0.0224502385, -0.0164243653, 0.000384342507, 0.00844394695, -0.0372059, 0.0878850296, -0.00554689299, 0.0298666954, 0.0139753893, 0.0330341421, 0.0141530745, -0.023160981, -0.0429227538, 0.0219712574, 0.0280743856, 0.00802677125, 0.0159299355, 0.0161307976, 0.0171969123, -0.0204416141, 0.00806539878, 0.00669412641, -0.0209205933, -0.0204107109, 0.0390291139, -0.0265138391, 0.00144756131, -0.0141762514, 0.0326633193, 0.0258649, 0.0123453131, 0.02538592, 0.0158681311, 0.00277151517, -0.011093786, -0.00979590602, -0.00281014247, -0.0322924964, 0.00808084942, 0.0187883619, 0.0162544046, -0.0226974525, -0.0136431931, 0.0230219234, 0.0304383822, 0.0021360945, 0.0070185964, -0.0126234302, -0.017289618, 0.0131796645, 0.00340114161, 0.00229639816, 0.00444215, -0.00737010548, 0.0235318039, 0.0340848081, -0.00987316, -0.000385066785, -0.015466406, -0.00247987825, 0.0117813535, -0.00298203435, -0.0221103169, 0.00302259321, -0.00825081, 0.0256794877, 0.000139662152, 0.0138131538, 0.0143771134, 0.0075362036, -0.0451476909, 0.00915469136, 0.0168106388, 0.0075980071, 0.0149719752, 0.0284143072, -0.0109315505, -0.010120376, 0.0119513134, 0.00802677125, -0.019638164, 0.0239335299, 0.011418256, -0.00808857474, 0.00712675322, -0.00791861489, 0.00451940438, -0.00586363766, 0.0228519626, -0.00728512555, -0.0144620938, -0.00364449411, -0.0137358988, 0.0261739176, 0.00591385318, -0.00752847781, -0.00128629198, -0.0115727652, -0.00442283601, 0.0160535425, -0.00398634654, -0.00644691102, -0.0106766103, -0.0198699292, -0.033157751, 0.00794179086, 0.0135891149, 0.00400179718, 0.0162544046, -0.0118663339, -0.00815810449, -0.0293413643, 0.0224656891, 0.0030708774, 0.00759028178, -0.0247833319, 0.0083357906, 0.00579797104, -0.0125229992, 0.013141037, 0.0140989963, 0.00173243834, 0.0144543685, 0.0163780116, -0.0193754975, 0.00864480902, -0.0216931403, 0.0329105332, -0.00197096239, 0.00378741533, 0.0106766103, 0.0177222453, -0.0138826836, 0.00210519275, 0.0405433066, 0.0148329167, -0.00464301184, -0.00428377744, -0.00016935695, -0.0286151692, -0.0180467162, -0.0199935362, 0.000110993387, 0.00430309121, -0.0119976662, -0.0166561306, 0.0038666015, -0.0332504548, 0.00278310338, 0.00969547406, -0.010019944, 0.0305310879, -0.00722332159, 0.00233695703, 0.0211060047, -0.00182804116, 0.0108233942, -0.0302993227, -0.00460438477, -0.00290284818, 0.0370822921, -0.000974858704, -0.00027956572, 0.00315006357, 0.0168106388, -0.0108156689, 0.0160689931, 0.000687084685, -0.035382688, -0.00220562378, -0.000481635245, -0.00678683212, -0.0073585175, 0.00292795594, -0.0115727652, -0.00729285087, 0.00485546282, 0.0100585716, 0.0101667289, 0.000675979303, -0.0158526804, 0.00816583, 0.0145316236, -0.00402883673, -0.00951778796, -0.0187574588, -0.0164552666, 0.0220639631, 0.0159453861, 0.0225274917, -0.00134230172, -0.00271936809, 0.00647008745, -0.0106070805, -0.0346410424, -0.00220369245, -0.00157889444, -0.0096491212, -0.0018058304, 0.0369895883, 0.0414085612, 0.00662846, -0.00270391721, 0.0218012985, -0.0114723342, 0.00276185828, 0.00281593646, 0.0111633148, -0.0188347138, 0.0089306524, -0.00515289372, -0.0139444871, 0.0210905541, 0.0056241476, -0.0180467162, 0.00811947696, -0.0135041345, 0.0295731276, -0.0154586807, 0.00805767346, 0.0106070805, -0.00612630369, 0.00342045515, 0.00664777355, -0.00469322782, 0.0439734198, 0.0303920284, -0.0119281374, 0.00519924657, -0.021662239, -0.0150183281, -0.0199471824, -0.0312109292, 0.00365415099, 0.0139058596, 0.0165479723, -0.00748598762, -0.00416403264, -0.0153118968, 0.0152037395, 0.010792492, -0.0410068333, 0.0440043211, 0.00593316695, -0.0289241876, -0.00415244419, 0.0316126533, 0.0264983885, -0.0418411866, -0.0310409684, 0.000434075278, 0.00553916721, -0.000875393162, -0.0139135849, -0.00767912483, -0.0403578952, -0.0104525713, 0.0246597249, -0.0317671634, -0.00915469136, 0.0106379827, 0.0100662969, 0.00691816537, -0.000332919793, 0.0405124053, -0.003466808, 0.00126987533, 0.00887657329, -0.0228674132, 0.019761771, 0.0151187601, 0.0344247296, 0.0261584669, 0.0608767644, 0.00403656205, -0.0112096677, 0.0252314098, -0.0278271697, -0.0521624237, 0.0303920284, 0.0255713314, -0.0171814617, -0.00759414444, 0.0150260534, 0.022913767, 0.0362170376, -0.00600655889, -0.0237172153, -0.0194527525, -0.00706881192, 0.00290091685, -0.000292119628, -0.00424901256, 0.0134964092, 0.0311800279, 0.00421038549, -0.0288160313, 0.0121058235, -0.018865617, -0.000397862081, -0.0150106028, -0.0116886478, 0.0272245836, 0.02878513, -0.0346410424, 0.0153891509, -0.00351895508, -0.0299903043, -0.0454258099, 0.0248451363, 0.010869747, -0.00357496482, -0.00858300552, -0.00577093195, 0.00567436311, 8.41352812e-05, 0.00759028178, -0.0213995725, -0.03073195, 0.00754392892, -0.0120440191, 0.0125848027, -0.0258185454, -0.0254168212, -0.00154026714, 0.0183093827, 0.0499374866, -0.0166561306, 0.0179540105, 0.00683318498, 0.00974182691, -0.0299748536, -0.0272554848, -0.00505246222, 0.0336212777, 0.0214768276, -0.018216677, 0.0171042066, 0.0239489805, -0.0167951882, -0.00265756436, -0.0244588628, 0.00530354027, -0.0110088056, 0.00519538345, 0.0169806, 0.0351972766, 0.00252816244, 0.0204107109, -0.0459820442, -0.0260348599, 0.0222030226, 0.0192055367, -0.0147711132, 0.00584046124, -0.0461674556, 0.00133843895, -0.00142148789, 0.0319216736, -0.0242889021, -0.00708812568, -0.0102671599, -0.000496361929, 0.00739714457, -0.0050022467, 0.0378239378, 0.00399407186, 0.0174750295, 0.0104757473, 0.000740197313, -0.0110628838, -0.00467005139, -0.0212450642, -0.00361552346, 2.1395952e-05, 0.00261700549, 0.019112831, 0.0348882563, 0.00576706883, 0.0181085188, 0.00645849947, 0.0127856657, 0.017289618, 0.00558552, 0.00726581179, -0.009170142, 0.00643146, 0.0141608007, -0.020240752, -0.010019944, 0.0044073849, -0.0130328806, 0.00286615221, -0.0021360945, -0.00426446367, 0.0135195861, -0.00937872939, -0.00906198565, -0.00671730284, -0.0400179736, -0.000611278403, 0.00112019421, 0.00584818656, 0.0133496253, 0.00468550203, 0.00322924973, -0.0289241876, 0.0118972352, -0.00195551151, 0.0227438062, -0.00230798637, -0.017042404, -0.00140120846, -0.0147865638, 0.0171505604, 0.00294920104, -0.01366637, -0.00630012713, -0.0174132269, -0.0269773677, 0.0307628512, -0.00562028494, -0.00630012713, -0.0173050705, -0.0104834726, -0.0138054285, 0.00472799223, 0.0257876441, 0.00863708369, -0.0119899409, -0.011194217, 0.0146088777, -0.00604518643, -0.00149584562, -0.0122757843, 0.00209939852, 0.0218785517, -0.0338684954, 0.0177067947, -0.0248296857, -0.0077177519, -0.000927540124, 0.0254477225, 0.0187111069, 0.00336058275, 0.0160226412, -0.0206579268, 0.00318096532, -0.0131255863, -0.0213532206, -0.000939128338, -0.0526877567, -0.00886112265, 0.00223073154, -0.016439816, 0.0111324135, -0.0211678091, -0.0209205933, -0.0041678953, 0.0803449675, -0.00147942896, 0.0247678813, -0.0263438784, -0.0174286775, -0.0306855962, -0.0163007583, 0.0145393489, 0.0159608368, -0.0105375517, 0.0216467883, 0.00722718425, -0.0152500924, -0.0368350782, -0.0190819297, -0.00910833851, -0.00674820459, 0.0230991784, 0.0165943261, -0.0186802056, -0.022388434, 0.0225429442, 0.00937872939, -0.000600173, 0.00483614905, 0.00862935837, 0.011742726, -0.0312881842, -0.0153968772, 0.00481297262, 0.0322615951, 0.00397475809, -0.00600269623, -0.00753234047, -0.00226935907, 0.0304229315, 0.00208781031, -0.0040674638, -0.00102941983, -0.010143552, -0.000103328261, -0.00230026105, -0.0153041715, 0.0124843717, -0.0156363659, 0.0139831146, -0.0220330618, 0.00834351592, -0.0281052869, 0.00393419946, -0.0211060047, 0.0109315505, -0.0413776562, 0.0153041715, -0.0270546228, 0.00627695071, -0.0163471103, -0.000705432671, -0.0062035583, -0.020889692, -0.00748212496, -0.00209746719, -0.00288546598, -0.00602973532, -0.00188115379, -0.0168106388, -0.0158372298, 0.0177067947, -0.0159762874, 0.00641214661, 0.0204416141, 0.00317324, 0.0073585175, -0.00465073762, 0.0148251913, 0.00594089227, -0.00396317, 0.0246906262, 0.00225777086, -0.00556620676, -0.00423742458, 0.00717696873, 0.0195609089, 0.00719242, -0.0101899048, 0.00174982066, -0.020364359, -0.0217394941, 0.00533057936, 0.0327251218, -0.00931692589, -0.02813619, -0.0173514225, 0.00510654086, 0.030407479, -0.00337023963, 0.020240752, 0.0130483313, 0.00425673835, 0.028058935, 0.0296040308, 0.0338066891, 0.00156827189, -0.00671344, -0.020487966, -0.00874524098, 0.0324161053, -0.0113410009, -0.0180003624, 0.014840642, 0.0455494151, 0.00471254112, -0.00781045761, -0.00158758566, 0.00482842326, 0.00141859078, -0.00583659811, -0.0023350257, 0.00381831732, 0.014091271, -0.00784522202, 0.0123762153, -0.000333885488, 0.00844394695, 0.0149719752, 0.00244318228, -0.00934010278, 0.00263825059, 0.0158217773, -0.00642373459, -0.0301757157, 0.00163393852, -0.0321688876, 0.00352861197, -0.02813619, 0.0083357906, -0.0136045665, 0.032107085, -0.0157058965, 0.0118817845, -0.0398634635, 0.00325435749, 0.000560097105, 0.0100044934, -0.00604518643, -0.000776893343, -0.00380479777, 0.0343938246, 0.00360586657, -0.0110165309, -0.0163780116, 0.0191746354, 0.0129788024, 0.0319834761, 0.0220330618, -0.0155127589, 0.0109470021, 2.80501226e-05, -0.0188965183, 0.005384658, -0.0153196221, 0.0499683879, 0.0171505604, 0.0156054646, -0.0145934271, 0.00978045445, 0.00858300552, -0.0297585391, -0.014717035, -0.0089924559, 0.00263631926, 0.0136354677, 0.0128320185, 0.00723490957, 0.0084903, 0.00141472812, 0.0218322, 0.0283061489, -0.00267880945, 0.0302529708, -0.00531126605, -0.002692329, -0.016640678, -0.002530094, -0.0190201253, -0.0105607277, -0.00974955224, -0.0212914161, -0.00988088548, 0.0240262356, 0.00134037039, 0.0245515686, 0.0143693881, 0.0388127975, 0.0261584669, -0.00393613102, -0.00273481896, -0.012793391, 0.00256292708, 0.0184329897, -0.0235009026, 0.0158063266, 0.0170115, -0.000448560546, -0.00761345821, -0.0225274917, -0.00514903059, 0.00421038549, 0.0386273861, -0.016439816, -0.00372754293, -0.0037256116, 0.0180003624, -0.0234390981, -0.0108311195, -0.0160998944, 0.0205188692, -0.0282752477, -0.00102169439, 0.0133187231, 0.00212257495, 0.0291714035, -0.00325435749, 0.013766801, 0.00402111094, 0.0034494258, -0.0138286045, -0.0241189413, -0.0192209873, 0.011194217, -0.0197308697, 0.0144543685, 0.0223266296, 0.00319255353, 0.00855983, 0.0080963, 0.0151342107, -0.0094328085, -0.0296967365, -0.00117234117, -0.017088756, -0.000201948817, -0.0146320546, -0.000844974129, 0.0111633148, -0.000210639977, 0.0119976662, 0.000999483629, -0.00209360453, 0.0129015474, 0.00776796788, 0.0200398881, 0.00880704448, -0.0377930366, -0.00872206409, 0.00103617972, -0.00475116866, -0.0114105307, -0.00102169439, -0.0232845899, 0.0216931403, 0.0113487262, -0.00900018122, -0.00541942241, -0.0428300463, -0.0354444906, 0.0013461645, 0.0172587167, -0.0104989242, -0.0195454583, -0.0158526804, -0.00433013029, 0.012167627, -0.0224502385, -0.0121753523, -0.00333547499, 0.0262666233, -0.0118663339, 0.00843622163, -0.0132955471, -0.00774092833, -0.0207506325, 0.00190239889, 0.0187574588, -0.014392565, 0.0223575328, -0.0123221371, 1.92005268e-06, 0.00787226204, 0.0136818206, 0.0203180052, 0.014717035, -0.00920877, 0.00447691418, -0.0288469326, 0.0210596509, -0.00262279972, 0.0113873538, -0.00504087424, -0.00965684652, 0.00837441813, -0.0180776175, -0.0272554848, 0.0205034167, -0.031581752, -0.00413313042, 0.0161771495, 0.000280772831, 0.0132800955, -0.00482069794, -0.00913924, -0.0027908287, 0.0152037395, -0.0198853798, -0.0138286045, -0.00149970828, 0.0125152739, -0.0126543324, -0.00122159114, 0.00235820212, -0.000305880618, -0.00448850263, -0.020364359, 0.0031307498, 0.01269296, -0.00216506515, -0.0144543685, 0.00636579329, 0.0128860967, -0.00461597275, 0.0132028414, 0.00579024525, -0.0209514946, 0.0044073849, -0.0101976302, 0.00685249874, -0.0327251218, -0.0278117191, 0.00539238332, 0.00825853553, 0.00675593, 0.0228056107, -0.0171505604, -0.00367732742, 0.0223729834, -0.00832806528, -0.00291636772, -0.0118045295, -0.0367114693, -0.0238253735, -0.00808857474, -0.0149256224, 0.00804222189, 0.0158835817, 0.028259797, 0.0362170376, 0.0100817485, 0.00393226789, 0.0127470382, 0.000502156036, -0.0101049244, 0.0135350367, -0.00628853869, 0.00927829836, -0.00409450289, -0.0288314819, -0.0290786978, -0.0140371928, 0.0149797006, -0.00692202803, -0.0233463924, 0.000848836848, 0.00459279632, 0.0167797375, -0.00276185828, 0.0124843717, 0.00431467919, 0.002373653, -0.0309946164, -0.0117890788, -0.015914483, -0.0031906222, -0.00650871499, -0.00966457278, -0.0123993913, -0.0048670508, -0.000981618534, 0.0122448821, -0.00910061225, 0.0111864917, 0.0396780521, 0.0147556625, 0.00669798907, 0.00790702645, -0.0353208818, -0.00745122321, -0.00866798591, -0.0115032364, -0.0059640687, -0.00402883673, 0.0252314098, 0.00918559264, -0.00566277513, 0.00306315185, 0.0342702195, 0.0239026267, 0.00996586587, -0.00705336081, -0.0112869227, -0.0177222453, -0.00824308489, 0.0130792335, 0.0163007583, -0.0300984606, -0.0169960503, 0.00189467333, 0.00580569636, 0.0138131538, 0.028058935, 0.0096722981, -0.00151709071, -0.00453099282, -0.00519924657, -0.0228674132, -0.000531609403, -0.00736238, 0.00895382836, -0.00900790654, -0.0127547635, 0.00873751473, 0.0187883619, -0.0174595788, 0.021136906, 0.00276765227, 0.00759028178, 0.00276185828, 0.0207506325, 0.0217240434, 0.0149719752, 0.0478670597, -0.0153814256, 0.0157599747, 0.0171042066, -0.00250884891, -0.00122641958, 0.00261507416, 0.0241034906, 0.000945405336, 0.0153427981, 0.0183248334, 0.0256485865, 0.00618810765, -0.014392565, 0.0085134767, -0.00570140267, -0.00724263536, -0.000263873342, -0.036155235, 0.0134886838, -0.0200089868, 0.0221566688, -0.00324856327, -0.0112560205, -0.00183866371, 0.020287104, 0.00654734205, 0.011943588, -0.00137803203, 0.00829716306, 0.0106379827, 0.021013299, -0.0333740637, 0.00883794669, -0.00497134496, -0.00219789846, -0.00328912213, -0.0209051427, 0.00857528, -0.0140217422, -0.0014330761, 0.00533830514, 0.0172587167, 0.0161771495, 0.0140294675, 0.0212450642, 0.0433862805, 0.00499065872, -0.00154219847, 0.0126466071, -0.0107229631, 0.0161771495, 0.00349771, -0.00317903399, 0.0179231074, 0.00314620067, 0.0019139871, -0.0158372298, 0.00955641549, -0.0218167491, -0.00954096485, 0.00686022406, 0.0071808314, -0.0130328806, -0.0231146291, 0.0198544767, 0.0196690653, -0.00581342168, -0.00894610304, 0.00609153928, -0.0025899664, 0.00413699308, -0.0233154912, -0.0180312637, 0.0269773677, 0.00667481264, -0.0182939302, -0.0152500924, -0.0130097046, -0.0015441298, -0.00228094729, 0.00963367056, 0.00521856, 0.0148869948, -0.0074937134, 0.00163297285, -0.00633102888, 0.00156054646, 0.00122062548, 0.0141144479, 0.00217858469, 0.0110397078, -0.000409208878, -0.00475503132, 0.0126697831, -0.00970319938, -0.0151728382, -0.00424515, -0.0189428702, 0.000454113237, 0.0073160273, -0.00442283601, 0.00777183054, -0.00419493439, -0.00983453263, 0.00375071936, -0.00557393208, 0.00537306955, -0.00713061588, 0.00106032181, -0.00812720228, 0.000174668225, 0.0143075846, -0.00324470061, 0.023562707, -0.00142245356, 0.0157986023, 0.00876069162, 0.00134519883, -0.00564346137, 0.00977272913, 0.0010574247, -0.00378741533, -0.0122217052, -0.00283718156, 0.00385308196, 0.0106920609, 0.0100740232, -0.00377196446, 0.0131564885, -0.0236399621, 0.00155088957, 0.000901466643, 0.0278271697, 0.0245515686, 0.0272554848, 0.0137049975, -0.00430309121, 0.0207815338, -0.00998131745, -0.00257258397, 0.0104757473, -0.0169960503, 0.0180003624, -0.00698769465, -0.00564732403, 0.0298048928, -0.0187420081, 0.0284606591, -0.0237481184, -0.00458120834, -0.00998131745, 0.000814555038, -0.016640678, -0.00348032755, -0.0196999684, -0.0117968041, -0.0192364398, 0.0189274196, -0.00768685, -0.00171505602, -0.00766753638, -0.0190819297, -0.013117861, -0.0143307606, -0.00970319938, -0.0133496253, 0.00573230442, 0.0157058965, -0.0222957283, 0.0111324135, 0.0113487262, -0.0471872166, 0.0163780116, -0.011093786, 0.0183866359, 0.00884567201, -0.00737396814, 0.00641600927, 0.003148132, 0.00832806528, 0.0121289995, 0.0151573867, -0.012268058, -0.0135891149, 0.0230219234, -0.00247408426, -0.0100122187, 0.00431854185, -0.0249687433, -0.0036387, 0.0065009892, 0.014191702, -0.0103598656, 0.0256176833, -0.0103366887, 0.00369664095, -0.0200244375, -0.0128783714, -0.00869116187, 0.00202986924, -0.0025899664, 0.0118817845, -0.0319525748, 0.00338569051, -0.00203180057, -0.0028931913, -0.0178304017, 0.0195609089, 0.0174595788, 0.00725036068, 0.00555461831, 0.0179849118, -0.0194991045, -0.012167627, 0.0205652211, -0.0238717254, 0.00124187057, 0.00659755804, -0.027008269, 0.0063387542, 0.00333354366, 0.00626536226, -0.00176913431, 0.0264365841, 0.0114800595, -0.003947719, 0.0142998593, 0.0187111069, -0.00582887279, -0.0152191911, 0.0194682032, -0.00731989, -0.017042404, -0.00772547768, 0.00553530455, 0.00617651921, 0.0362788439, 0.0166870318, 0.0130097046, 0.00798041839, -0.00276765227, 0.000595344638, -0.0359389223, 0.00658210693, 0.0150183281, -0.0354753919, 0.0269310139, -0.0136972722, 0.0040249736, 0.00266142702, -0.00398248388, -0.0090542594, -0.0105221, -0.0266374461, 0.0256949384, -0.0232691392, 0.00406360114, 0.0189119689, 0.000742611533, -0.00818128, 0.00533830514, -0.000253733655, -0.0218785517, 0.00657438161, 0.0143230353, -0.00302259321, -0.000150163964, -0.0160535425, 0.0109624527, 0.00614561746, -0.0279353261, -0.0171969123, -0.00974182691, -0.000474875444, -0.0203180052, -0.00845167227, -0.00114433642, 0.00804994721, 0.0116577456, -0.00728898821, 0.000465701451, 0.00752847781, -0.0122989602, -0.00288353441, -0.0183093827, -0.00636579329, 0.00718855672, -0.0131951161, 0.0272709355, -0.0171814617, -0.000994655187, 0.0310409684, -0.00838214345, -0.00415244419, -7.22754658e-06, 0.0142535064, -0.015041505, 0.00555075565, -0.00227515306, 0.00698383152, 0.0319834761, 0.00121289992, -0.0153350728, -0.019591812, 0.0104371198, 0.00468550203, 0.0162235033, -0.00623832317, -0.0109624527, 0.00577093195, -0.0157677, 0.00389557215, 0.010344414, -0.0233309418, -0.00279662292, -0.0180621669, -0.009170142, -0.0136740953, 0.00031819311, 0.00250112335, 0.00388398394, -0.00828943774, 0.0234700013, -0.0126775084, 0.014717035, 0.0252623111, 0.00768298749, 0.0180467162, -0.0181548726, -0.00909288693, -0.0100122187, 0.0122062545, 0.00260541728, -0.0192982424, 0.0121908039, 0.0224965904, -0.0191591848, -0.000814072206, -0.00593702961, 0.00320800464, 0.0176449902, -0.0260194093, -0.00818900578, 0.0207969863, -0.0214613769, -0.0179849118, 0.0180930682, 0.0123066856, 0.00540783443, -0.00148039463, -0.00903880876, 0.0171351098, 0.0239644311, 0.00529195229, 0.0317362621, 0.00494430587, 0.0341775119, 0.00975727849, -0.00341852382, 0.0263438784, 0.00486318814, -0.0110010803, -0.0155436611, 0.00287967175, 0.00794179086, 0.00895382836, -0.0132569196, 0.0218167491, 0.00509108976, -0.0056241476, 0.000234057821, 0.000689981738, -0.010668885, 0.00469322782, -0.00211098674, -0.00953323953, 0.00577093195, -0.0048245606, -0.00677138101, -0.0121830786, 0.0291714035, -0.0151651129, 0.0102903359, -0.00662459712, -0.00713061588, 0.0204725154, -0.00607995084, -0.0117195491, -0.0305156372, -0.00804994721, -0.0118277064, -0.0213995725, -0.0181239713, -0.00823535863, -0.0118122548, -0.0166561306, -0.00531512871, -0.00730443886, 0.00523014832, 0.00900790654, -0.014840642, 0.0150337797, 0.00491340365, -0.0126234302, -0.0195454583, -0.000604518631, -0.0021148494, -0.0245979205, -0.0190355759, -0.0148715442, -0.000516641303, 0.000323504384, -0.0192518905, 0.00171119324, 0.0122526074, 0.0187420081, 0.0238408241, -0.0150724072, -0.00173630111, -0.0121289995, -0.00670571439, -0.000146542647, 0.0261275657, 0.00814265292, 0.0194527525, -0.0145007214, -0.00285263266, -0.0101049244, -0.0109856287, -0.0149487993, 0.0118586076, 0.0162389539, 0.00371788605, 0.00329298479, 0.0127006853, -0.00429150276, -0.0193291456, 0.00312495558, -0.00979590602, 0.00601428421, 0.00290671084, 0.00217085914, -0.0240262356, -0.00514130527, -0.0110319816, -0.00694906712, -0.00990406238, 0.0253086649, 0.0333431624, 0.00696451822, 0.020163497, 0.0306701455, 0.0111169619, -0.00120517449, 0.000703501282, 0.0245206654, 0.00848257449, -0.00455030613, -0.00675979303, 0.0115804905, 0.0103212381, 0.0129942531, 4.93404514e-05, -0.0013461645, -0.0121212741, -0.0187265575, 0.00177396275, 0.0214459263, 0.0144311925, 0.0108311195, -0.016563423, 0.00179424218, 0.0289550908, -0.0274408963, -0.00485159969, -0.0118354317, -0.0147093097, 0.0185411461, 0.00358462171, -0.0157754254, 0.00681773387, 0.0233000405, -0.00925512239, -0.0147324856, 0.00470867846, 0.0102362577, -0.00269426033, -0.00552371657, 0.0353517868, 0.00453099282, 0.0155204842, 0.00401724828, -0.012167627, -0.0101744542, 0.0236090589, 0.0155127589, -0.00245863316, 0.0128320185, 0.0132878218, -0.016841542, -0.0151728382, -0.00287387776, 0.000416210096, -0.00746667385, 0.00647395, -0.00567822624, -0.00264211325, 0.00835124124, 0.00178072252, -0.0111401388, -0.00345135713, 0.017938558, 0.00534603046, -0.00736624282, 0.00559710851, -0.0103830416, -0.00299362256, 0.0030708774, 0.000572651043, -0.00272902497, -0.0148560936, 0.0124148428, -0.00333547499, 0.0157754254, 0.0261430163, -0.0146784075, -0.00791861489, 0.00903108343, -0.011943588, -0.010444846, 0.00264790747, 0.00812720228, -0.00456575723, -0.0116654709, 0.0174286775, 0.010545277, -0.00351895508, 0.012067196, 0.020487966, -0.00417562062, 0.0125307245, -0.00791861489, -0.030160265, -0.0105375517, 0.00435716938, -0.00306122052, 0.000504570256, 0.000390378031, 0.0100508463, -0.0225429442, 0.0166252274, 0.00337023963, 0.0100894738, -0.00450781593, -0.00677910633, 0.00628467603, 0.0312727317, 0.004747306, -0.0262820739, 0.0148638189, 0.0108851977, 0.00133457629, 0.0168260895, 0.0100662969, 0.00586750032, -0.0147556625, -0.00449236529, 0.00212450628, 0.0199008305, -0.00685249874, 0.00332002388, 0.0104139438, 0.0170269534, 0.00777955586, -0.0133496253, 0.00670185173, 0.00159337977, 0.0131719392, 0.0285070129, 0.0052417363, 0.000567822601, -0.00945598446, 0.0157058965, 0.0126697831, 0.0030708774, -0.0171969123, -0.000706398336, 0.0118663339, -0.0015441298, -0.00372754293, -0.00603359798, 0.00554689299, -0.014168526, 0.00954096485, 0.0148560936, 0.0155359358, 0.0058790883, 0.0165788755, 0.0106302574, 0.0226047467, 0.000392550835, -0.00832033902, -0.00375071936, -0.0114337066, -0.013141037, 0.000201948817, -0.00166580605, -0.0432008691, -0.000970513094, 0.020240752, 0.00144466432, 0.0132337427, -0.00687953783, -0.0136354677, 0.00777955586, 0.00746281119, -0.00652030297, -0.00959504303, 0.020364359, -0.00453871815, -0.0155977393, -0.0213068668, -0.00802677125, 0.00435716938, 0.0147093097, -0.00204725144, -0.0057438924, -0.0126466071, -0.0211214554, 0.00492112944, 0.000277634361, 0.013141037, -0.00716151763, 0.0289859921, -0.00588295097, 0.0165943261, 0.0271473285, 0.011217393, 0.00701087108, 0.0129092727, 0.000482359494, 0.00509495242, 0.0243816078, -0.0156440921, 0.0163780116, -0.00815810449, -0.00111053744, -0.00934782811, 0.0155127589, 0.0141762514, 0.00129981164, -0.0132491942, 0.00503314845, -0.00211098674, -0.000720883603, -0.00649326388, -0.0260657612, 0.00961049367, 0.0123298625, -0.0134732332, 0.0118972352, 0.0181548726, 0.00995814055, 0.00930147525, 0.00326401438, 0.0200707912, -0.0167488363, 0.00130850275, 0.00970319938, -0.0119899409, 0.00521083456, 0.000997552299, 0.0178304017, 0.0106920609, -0.00843622163, 0.0145316236, 0.0155900139, -0.0117118238, -0.0194682032, 0.032107085, 0.00133071351, 0.000506984477, -0.00379127823, -0.00903108343, 0.0257412922, 0.0106148059, 0.00113467954, 0.00705722393, 0.00139927713, 0.00439193379, 0.0164089147, -0.0197463203, -0.0213532206, 0.0138826836, 0.00935555343, -0.0157213472, 0.00310371071, 0.00017152974, 0.016640678, -0.00586750032, 0.00579797104, 0.0379475467, -0.00383956241, -0.0293877162, 0.0169806, -0.0063387542, 0.0134886838, 0.0319525748, 0.000429729698, -0.0235936083, 0.00794951618, -0.0233927462, -0.0125075486, -0.0173050705, 0.00309598516, -0.00945598446, 0.0135736642, 0.00902335811, -0.0043648947, 0.003148132, -0.00228674128, -0.0147324856, -0.0128706461, -0.00594475493, -0.00416403264, -0.000829523138, 0.0380402505, 0.00197675661, -0.0260194093, -2.64054415e-05, -0.00955641549, 0.00507563865, 0.0164552666, 0.016316209, -0.016965149, -0.0115418639, 0.0124148428, 0.0113796284, 0.0034880531, 0.00930920057, 0.0101976302, 0.00939418096, -0.0165479723, 0.0159299355, 0.00403269939, -0.0105143748, -0.00357496482, -0.010769316, 0.0114491582, -0.010243983, -0.0135118598, 0.00740873301, 0.00293568149, -0.00524946209, 0.0254322719, 0.00499065872, 0.00885339733, 0.00228674128, 0.00786839891, -0.0230991784, -0.00102845416, -0.00663618511, -0.0161926, 0.0190046746, -0.00308632827, 0.00404815, -0.00717310607, 0.0134346057, 0.00600655889, 0.00399407186, -0.000116908202, -0.0103830416, 0.0158372298, 0.0271164253, 0.0201480463, -0.0369586833, 0.0155513864, -0.00496361917, -0.0117040984, 0.0105143748, 0.00792634, 0.00146590942, 0.00339148473, 0.00268074078, 0.019313693, -0.00763277197, -0.00181548728, 0.00431854185, 0.0112560205, -0.0043648947, 0.00218244735, 0.00482069794, 0.01366637, -0.0100740232, -0.0162235033, 0.0171814617, -0.00497907028, 0.0221412182, 0.00513358, -0.00557006942, 0.00318096532, 0.0080963, -0.000359717553, 0.0108156689, 0.00677524367, -0.0247987825, -0.00608767616, 0.00288932864, -0.00184832048, 0.00675206725, -0.00409836601, 0.000380721205, 0.0167642869, -0.00038482534, 0.0128088417, -0.0108156689, 0.00258417218, 0.00611857837, -0.00356530794, -0.0242425483, -0.0131101357, 0.0228056107, 0.0259730555, -0.0228056107, 0.0163007583, -0.0132337427, -0.00763663463, -0.0103057874, 0.00358848437, 0.00324856327, -0.00154219847, 0.000133747337, -0.00142921333, -0.0156440921, 0.0046275612, 0.0137590757, 0.00125828711, 0.00569753954, 0.000838697131, -0.00538079534, -0.00993496459, 0.0142226042, 0.0141221732, -0.00327367103, 0.0124457441, -0.0109547274, 0.0132723702, -0.00974182691, 0.0119204121, 0.00590612739, -0.00205883966, 0.0096722981, 0.00475503132, -0.0152655439, 0.0341157094, 0.00525332475, 0.00507563865, -0.0192364398, -0.0113410009, -0.0102130817, 0.00781818293, -0.0231764335, 0.0313190855, -0.00839759409, -0.0223266296, -0.0113410009, -0.0186956562, 0.00773706567, -0.0112791974, -0.0102594346, 0.0199780855, 0.0155127589, 0.000504087424, 0.024937842, -0.0118895099, -0.00917786732, 0.0174286775, 0.00895382836, 0.0217549447, -0.0153737, 0.0192982424, 0.00643146, 0.00219789846, -0.00844394695, 0.00866798591, -0.000312157586, 0.00369277829, -0.000769167847, -0.0115264123, 0.0137590757, -0.0032118673, 0.0066786753, 0.00697224354, -0.00758641912, -0.0162544046, 0.0146706821, 0.0132105667, 0.00230798637, 0.00398248388, -0.014817466, -0.00333547499, -0.0177531466, -0.00835896656, -0.0194991045, 0.00823535863, 0.01236849, -0.00545418728, -0.00159627676, 0.0209051427, 0.0283061489, -0.00146590942, -0.0148869948, 0.0113255503, 0.0134114288, -0.0181857739, 0.0118508823, 0.0132723702, -0.00834351592, 0.0132646449, -0.0285842661, 8.992939e-06, 0.00501769781, -0.0106225321, 0.0112869227, -0.00179907063, -0.0144080156, 0.0186029505, 0.0147479363, -0.00227515306, 0.00402883673, 0.00525718741, -0.000800069771, -0.0181703232, 0.0113410009, -0.00639669551, 0.0283061489, -0.0144234663, -0.0149178971, -0.000488636433, -0.000850285403, -0.00427991478, 0.0101358267, 0.00448850263, -0.00268074078, -0.0177686, 0.0284452084, -0.000736817427, 0.0056395987, 0.0170733053, -0.0188810676, 0.0298203435, -0.051946111, 0.00703791, 0.00259382906, -0.00653189141, 0.00704949815, 0.024335254, 0.00825081, 0.00157792878, 0.0308555569, 0.0107770413, -0.00990406238, -0.00186377147, 0.00109122368, 0.00542714819, -0.0159762874, 0.0209360439, 0.0183866359, -0.0060992646, -0.0109315505, -0.00911606383, 0.00570912799, -0.00849802513, -0.0115495892, -0.0104757473, -0.00942508224, -0.00150067406, 0.0169960503, -0.00355951372, -0.0401415825, -0.00882249512, 0.0151960142, 0.0129865278, 0.00591385318, -0.0102903359, -0.00670185173, 0.00201055547, 0.0099117877, -0.007895438, -0.0204261634, -0.0108620217, 0.00221528066, -4.1765863e-05, -0.00289705419, -0.0124457441, -0.00593702961, -0.00455030613, -0.00574775552, -0.0158990324, 0.0129247243, -0.0134500563, -0.0161462482, 0.0081349276, -0.0156131899, 0.00281400513, 0.0314426944, 0.000210277838, -0.0207815338, -0.000857045176, 0.00960276835, 0.0192827918, 0.0060413233, -0.00638896972, -0.00513744261, -0.00177782553, 0.0297739897, 0.0209823977, 0.00335285719, 0.000525332463, 0.00728126243, 0.019591812, -0.0149178971, -0.00465460028, -0.00692202803, -0.00501383515, 2.22861927e-05, -0.00594475493, 0.000409933156, -0.00172181579, -0.00101686595, 0.0392454267, 0.00330843567, -0.00505246222, 0.00117910106, 0.00111246877, 0.00635034265, -0.012167627, -0.0174441282, 0.0202098489, 0.0285224635, 0.0178767554, 0.0044846395, 0.00246442738, -0.0145702511, 0.00762890931, -0.0244897641, 0.000895189703, 0.00134713016, -0.0153814256, 0.00326208281, 0.0128088417, -0.011843157, -0.00383376819, 0.0120285684, 0.00775251677, 0.0309637133, -0.0180930682, 0.012144451, -0.0116422949, -0.00159820821, -0.00858300552, 0.0195609089, 0.00358075881, 0.0136895459, -0.0133959781, 0.0196227133, -0.000104957857, 0.0120053925, -0.00171119324, 0.0120131178, 0.00687181251, 0.0103830416, -0.0145934271, 0.00311723026, -0.00852892734, 0.0200707912, 0.0108465701, -0.00238717254, -0.0122603327, 0.00193619786, -0.0219403561, -0.0099117877, -0.000870564778, 0.00186087436, 0.0050022467, 0.00652802875, 0.002530094, -0.00624991115, 0.00749757607, -0.00294920104, 0.00487477612, 0.0165479723, 0.000199293179, -0.00266915257, 0.0153041715, -0.0223729834, 0.00348225911, -0.00375458202, -0.0146706821, -0.011495511, -0.0256331339, 0.00828943774, -0.000674047915, 0.00497520762, 0.00993496459, 0.00140893401, -0.0137822516, 0.00483228639, -0.0185411461, 0.00432240451, 0.0101821795, 0.022712905, 0.0108542964, 9.76246884e-06, 0.0127393128, 0.00878386758, 0.00674047926, 0.0070610866, -0.00325435749, -0.00726581179, -0.00857528, -0.00322538684, 0.00805767346, -0.00653575407, -0.00450009061, -0.000805863878, -0.0216313377, 0.0126852337, -0.0055816574, 0.0346719436, 0.00174016377, 0.0143616628, -0.0040056603, 0.0128088417, -0.0240571368, -0.0105221, -0.011495511, -0.0141376238, 0.0359698236, 0.00284297578, 0.0127393128, 0.00369084696, 0.0195763595, -0.00264404481, -0.00323697506, -0.00822763331, -0.00467005139, 0.00158662, -0.00971092563, 0.0122139798, -0.0096722981, -0.0104216691, -0.00350350398, 0.0183866359, -0.00645077368, -0.031859871, -0.0122757843, -0.00784136, 0.0128860967, 0.000982584199, -0.00297624012, 0.00988861173, -0.00408677757, -0.0105993552, 0.0127006853, 0.00238330988, -0.00166387472, -0.00256485865, 0.00664777355, -0.0122989602, 0.00904653408, 0.0212450642, -0.00263631926, -0.00587136298, 0.0103675909, 0.0196536146, -0.00214382, 0.00485932548, 0.0144080156, -0.0131796645, 0.00320027908, -0.00121096859, 0.0125461752, 0.015141936, -0.0120980982, -0.0110010803, 0.0142226042, 0.00830488838, 0.00761732087, -0.0146629568, -0.000121072721, 0.0319216736, 0.00569753954, 0.010220807, 7.39955867e-05, 0.0264365841, 0.0157290716, 0.00757096801, 0.00133747328, -0.00257065264, -0.0075555169, 0.0124766463, -0.0141530745, -0.0207351819, 0.00142535067, 0.0208278876, 0.00134906149, -0.0399252698, 0.00262473105, -0.0187729113, 0.0158835817, -0.0192518905, -0.0151573867, 0.00670957705, -0.0182321277, 0.0083357906, -0.0188810676, 0.0166097768, 0.000168270562, 0.00971092563, 0.0112096677, -0.00042465984, -0.0112946481, -0.0134964092, 0.00218051602, 0.0153968772, 0.0119126868, 0.00347839622, 0.0237172153, -0.018216677, -0.00823535863, 0.00282366201, 0.00049443054, 0.00624218583, 0.00614561746, -0.00502156047, 0.00312881847, -0.0158372298, -0.00729671353, 0.00968774874, -0.0040056603, 0.0062614996, -0.00523014832, 0.0132260174, 0.00404428737, -0.00890747551, -0.00616493123, 0.0149178971, 0.00272129942, -0.0106920609, -0.0185102448, 0.0153273474, -0.0390909165, 0.00524559943, -0.0169342477, 0.0109624527, -0.0396162495, -0.00404428737, -0.011495511, 0.00646236213, -0.0196845178, 0.00269039767, -0.00628467603, -0.00821218267, 0.0129324496, -0.00134037039, 0.00385308196, -0.0185720474, -0.0159762874, 0.00891520083, -0.0164861698, 0.0100740232, 0.000947336666, -0.0101590026, 0.00248374115, -8.0876096e-05, 0.0179849118, 0.0232536867, -0.00380286644, 0.00700700795, -0.0148715442, 0.00734692905, 0.0038878466, -0.00379707222, 0.0141839767, -0.00742804678, -0.00829716306, -0.0094714351, -0.0132491942, -0.010869747, -0.0324779078, -0.0310255177, 0.0134114288, -0.00267687789, -0.00662073446, 0.0154818567, -0.0143771134, 0.00739714457, -0.0123144109, 0.0198699292, 0.000965201878, 0.00956414081, -0.00214961404, -0.000802966824, 0.0142226042, 0.00534603046, 0.0182012245, -0.0154355038, -0.00427218899, 0.0116345696, -0.00624218583, -0.0240262356, 0.0175831877, -0.0179849118, -0.0202716533, 0.00563573604, 0.0118895099, -0.00292023062, 0.0112869227, -0.0109856287, -0.00704177283, 0.00613789214, 0.0205188692, 0.00796496775, 0.0643995777, 0.0261739176, 0.000851733901, -0.0410068333, 0.0101744542, -0.0226665512, -0.00712675322, 0.0422429107, -0.00714992965, 0.0206270255, 0.0100894738, 0.00680614589, -0.00778728118, 0.00643532304, 0.0113101, -0.000341128121, 0.0101281013, -0.00371595472, -0.0136045665, -0.00931692589, -0.00619969564, -0.00662459712, 0.0192982424, -0.00845939759, 0.0171196591, -0.00334320031, -0.014740211, -0.00741645833, -0.00326594571, 0.015667269, -0.0202098489, -0.00346101401, 0.00360200391, -0.000741163, -0.00672502816, 0.00022693591, 0.0103135128, -0.0282134432, -0.00704177283, -0.00365994498, 0.0354753919, 0.0216004346, 0.0145934271, 0.0143462121, 0.0102594346, -0.00153447303, 0.00156634056, -0.0250150971, 0.00369084696, -0.0145857017, 0.0259885062, -0.014516172, 0.0040056603, -0.000621900952, 0.0155591117, 0.0102748852, 0.0212141611, 0.00443442399, 0.00512971729, 0.0111169619, -0.000657631259, -0.00145818386, -0.0246751755, 0.0232073348, 0.00649326388, -0.02813619, -0.0104989242, 0.00589453941, -0.0255713314, -0.00253202533, 0.000880221603, -0.0276726615, 0.00540010864, -0.0266065449, -0.011495511, 0.0187420081, -0.0269001126, -0.000946853834, 0.0103984931, 0.000643628824, -0.0258958, -0.0162698552, -0.00613016635, -0.0153118968, -0.0204570647, -0.00348225911, -0.0132646449, -0.0087529663, -0.0213377699, 0.0129865278, -0.00379707222, 0.0104911989, -0.00910833851, -0.0160380919, 0.00470095314, 0.015667269, -0.0147711132, 0.0230064727, 0.0192827918, -0.0158526804, -0.000926091627, 0.00910833851, -0.00725422334, -0.0194836538, 0.00340114161, 0.0278735235, 0.000334609736, 0.037453115, 0.0220485125, 0.00465846295, -0.00499838404, 0.00210712408, 0.00571685331, 0.0232382361, 0.0062614996, 0.000392309419, 0.00462369854, 0.00399793452, 0.018865617, -0.00156344357, 0.00476661976, -0.00804994721, -0.0191900861, 0.00411767932, -0.00468550203, 0.00638896972, 0.0242270976, -0.000609829905, 0.0122757843, -0.0139831146, 0.000397862081, -0.0179076567, -0.00204918301, -7.47198501e-05, 0.026761055, 0.0117736282, 0.0122912349, -0.00239296677, 0.0159608368, 0.00978818, -0.0121908039, 0.00720787048, 0.00828171149, 0.0100971991, 0.0217394941, 0.00450395327, 0.0194218513, -0.000434075278, 0.032879632, 0.0168106388, 0.0164861698, -0.0105066495, -0.00607222551, -0.0187111069, 0.00742418412, 0.0159917381, 0.00225583953, -0.0143153099, 0.012592528, 0.00202021236, 0.0123221371, 0.00210905541, 0.0173668731, 0.0159453861, 0.0037468567, -0.00828943774, 0.00350157265, -0.0129324496, -0.013743625, -0.00939418096, -0.00750143873, 0.0205188692, -0.00861390773, 0.00321959285, 0.00446146308, 0.00379127823, -0.0181085188, -0.0187265575, 0.0113950791, -0.0186338518, -0.0180467162, 0.0188810676, 0.0341466106, 0.0538002253, -0.0083357906, -0.0038666015, 0.000226453063, 0.00169381092, -0.00511040352, -0.0227283556, 0.00463528652, 0.021538632, 0.00153737, 0.00320027908, -0.00116075296, -0.00419493439, 0.0161771495, 0.00116461574, -0.00593316695, -0.00234081969, 0.0106611587, -0.0192518905, -0.0129556255, -0.0229601189, -0.0320452824, 0.0167333838, -0.0133341746, 0.00481297262, 0.00409064, 0.00771002658, 0.000321573]
|
31 Jul, 2024
|
How to make use of multi-mode jtsage-datebox plugin?
31 Jul, 2024
In this article, we will learn to use a multi-mode date and time picker plugin for Bootstrap (3&4), jQueryMobile, and Bulma. The jQuery datebox plugin is completely based on JavaScript, HTML, and CSS technologies.
Some key features of the plugin are as follows
It can limit any condition like date, time, and duration.Many callbacks and triggers are available on create, open, close, change, destroy events.The tool provides features like slidable columns or weeks.Please download the required pre-compiled files from the link and save it in your working folder for implementation.
HTML head section of code: The following HTML code snippet holds the head section which has all the common pre-compiled files required for all the following examples to execute.
Note: Please include all the following library links in your codes with proper file paths.
html
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=utf-8" />
<meta name="viewport"
content="width=device-width,
initial-scale=1, maximum-scale=1">
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13Fy
QuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script type="text/javascript"
src="../src/js/external/widgetLib.js">
</script>
<script type="text/javascript"
src="../src/js/baseObject.js"></script>
<!-- Enhance JavaScript date object-->
<script type="text/javascript"
src="../src/js/lib/dateEnhance.js"></script>
<!--Date / Time output -->
<script type="text/javascript"
src="../src/js/lib/dateFormatter.js"></script>
<!--Limit functions -->
<script type="text/javascript"
src="../src/js/lib/dateLimit.js"></script>
<!-- Date / Time input -->
<script type="text/javascript"
src="../src/js/lib/dateParser.js"></script>
<!--Event loop -->
<script type="text/javascript"
src="../src/js/lib/eventHandler.js"></script>
<!-- Date adjustments -->
<script type="text/javascript"
src="../src/js/lib/offset.js"></script>
<!-- Public functions -->
<script type="text/javascript"
src="../src/js/lib/public.js"></script>
<!-- Short utility functions -->
<script type="text/javascript"
src="../src/js/lib/shortUtil.js"></script>
<script type="text/javascript"
src="../src/js/lib/standardControls.js"></script>
<!-- Create the widget -->
<script type="text/javascript"
src="../src/js/lib/widgetCreate.js"></script>
<script type="text/javascript"
src="../src/js/lib/widgetOpen.js"></script>
<!-- Closing of the widget -->
<script type="text/javascript"
src="../src/js/lib/widgetClose.js"></script>
<!-- Destroy, Enable & Disable the widget -->
<script type="text/javascript"
src="../src/js/lib/widgetDestroyEnableDisable.js">
</script>
<!-- Handle positioning of the widget -->
<script type="text/javascript"
src="../src/js/lib/positioning.js"></script>
<!-- Twitter Bootstrap v3.4.1 -->
<script type="text/javascript"
src="../src/js/framework/bootstrap.js"></script>
<!-- DateBox, TimeBox, DateTimeBox, DurationBox -->
<script type="text/javascript"
src="../src/js/modes/datebox.js"></script>
<!-- FlipBox, TimeFlipBox, DateTimeFlipBox,
DurationFlipBox -->
<script type="text/javascript"
src="../src/js/modes/flipbox.js"></script>
<!-- CalBox -->
<script type="text/javascript"
src="../src/js/modes/calbox.js"></script>
<!-- SlideBox -->
<script type="text/javascript"
src="../src/js/modes/slidebox.js"></script>
<!-- Used only in the test environment -->
<script type="text/javascript"
src="../src/js/widgetBinding.js"></script>
<!-- Auto enhance for data-role on a page -->
<script type="text/javascript"
src="../src/js/autoInit.js"></script>
<script type="text/javascript"
src="https://cdn.jtsage.com/jtsage-datebox/
i18n/jtsage-datebox.lang.utf8.js">
</script>
</head>
Example 1: The following date and time picker demonstrate for Bootstrap 4. Do not forget to include Bootstrap(3 & 4) pre-compiled files in your Bootstrap codes as shown below.
html
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/
4.3.1/css/bootstrap.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/
popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/
4.3.1/js/bootstrap.min.js"></script>
<script type="text/javascript">
jQuery.extend(jQuery.jtsage.datebox.prototype.options, {
mode : "calbox",
/* Display */
displayMode : "inline",
lockInput: false,
displayDropdownPosition : "bottomRight",
useImmediate : true,
useFocus : true,
useButton : true,
/* Callbacks */
beforeOpenCallbackArgs : [ "helloback call", "bye"],
beforeOpenCallback : function(a, b)
{
console.log(a);
console.log(b);
return true;
},
closeCallbackArgs : [ "hi close", "bye close"],
closeCallback : function(a, b)
{
console.log(a);
console.log(b);
},
calDateList : [
["1980-04-25", "JT's Date of Birth"],
["1809-02-12", "Lincoln's Birthday"] ],
calShowDateList : true,
slideDateList : [ ["1980-04-25", "JT's Date of Birth"],
["1809-02-12", "Lincoln's Birthday"] ],
slideShowDateList : true,
minHour : 9,
maxHour : 5,
minTime : "9:00",
maxTime : "17:00",
slideUsePickers : true,
slideYearPickMax : 2020,
slideYearPickMin : 1950,
minuteStep : 15,
/* Control Buttons */
closeTodayButton : true,
useCancelButton : true,
useClearButton : true,
useTodayButton : true,
useCollapsedBut : true,
});
</script>
</head>
<body>
<div class="container" role="main">
<form>
<div class="form-group">
<label class="control-label"for="db">
DateBox</label>
<input class="form-control" name="db"
type="text" data-role="datebox" id="db" />
</div>
</form>
</div>
</body>
</html>
Output:
https://media.geeksforgeeks.org/wp-content/uploads/20240731160813/1.mp4The following is the output shown in the console to demonstrate the working of callback functions.
Example 2: The following code demonstrates for Bulma. Do not forget to include Bulma pre-compiled files in your Bulma codes as shown below.
html
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/
gh/jgthms/bulma@0.8.0/css/bulma.css" />
<script type="text/javascript"
src="../src/js/framework/bulma.js"></script>
<script type="text/javascript">
jQuery.extend(jQuery.jtsage.datebox.prototype.options,
{
/* Modes can be changed as per user*/
mode : "slidebox",
/* Display */
displayMode : "dropdown",
/* Linked fields */
linkedField : false,
slideShowDateList : true,
calDateList : [ ["1980-04-25", "JT's Date of Birth"],
["1809-02-12", "Lincoln's Birthday"] ],
calShowDateList : true,
slideDateList : [ ["1980-04-25", "JT's Date of Birth"],
["1809-02-12", "Lincoln's Birthday"] ],
slideShowDateList : true,
calUsePickers : true,
slideUsePickers : true,
calUsePickers : true,
slideUsePickers : true,
useCancelButton : true,
useTodayButton : true,
useCollapsedBut : true,
useCancelButton : true,
useClearButton : true,
useTodayButton : true,
useCollapsedBut : true,
});
</script>
<style>
body{
width:550px;
padding:10px,10px;
}
h3{
margin:0 auto;
padding:20px,20px;
}
</style>
</head>
<body>
<h3>Datebox in Bulma </h3>
<div class="container" role="main">
<form class="form">
<div class="field is-horizontal">
<div class="field-label is-normal">
<label class="label" for="db">DateBox</label>
</div>
<div class="field-body">
<div class="field">
<div class="control">
<input class="input" name="db" type="text"
data-role="datebox" id="db" />
</div>
</div>
</div>
</div>
</form>
</div>
</html>
Output: The following is the output when the mode selected by the developer is “datebox”
https://media.geeksforgeeks.org/wp-content/uploads/20240731160856/2.mp4The following is the output when the mode selected by the developer is “slidebox”.
https://media.geeksforgeeks.org/wp-content/uploads/20240731160948/3.mp4Note: The developer can try different modes and implement various callback functions and other JavaScript options as per the application’s requirement. Only a few options are shown for the demonstration.
Example 3: The following code demonstrates the date and time picker for jQuery mobile codes. Do not forget to include jQuery mobile pre-compiled files in your codes for mobile designs as shown below. Callback functions can be implemented the same as shown in the first example as required.
html
<!DOCTYPE html>
<html lang="en">
<head>
<!-- jQuery mobile libraries -->
<link rel="stylesheet"
href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.css" />
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.js">
</script>
<script type="text/javascript" src="../src/js/framework/jqm.js"></script>
<!-- jQuery mobile libraries -->
<script type="text/javascript">
jQuery.extend(jQuery.jtsage.datebox.prototype.options, {
/* Mode */
mode : "datebox",
/* Display */
displayMode : "dropdown",
displayDropdownPosition : "bottomMiddle",
linkedField : false,
calDateList : [ ["1980-04-25", "JT's Date of Birth"],
["1809-02-12", "Lincoln's Birthday"] ],
calShowDateList : true,
slideDateList : [ ["1980-04-25", "JT's Date of Birth"],
["1809-02-12", "Lincoln's Birthday"] ],
slideShowDateList : true,
calUsePickers : true,
slideUsePickers : true,
useCancelButton : true,
useClearButton : true,
useTodayButton : true,
});
</script>
</head>
<body>
<div data-role="page" id="main">
<div data-role="header" data-position="fixed">
<h3>DateBox </h3>
</div>
<div class="ui-content" role="main">
<div class="ui-field-contain">
<label for="db">Year Pick</label>
<input name="db" type="text" data-mini="true"
data-role="datebox" id="db" />
</div>
<div id="db-dbAttach"></div>
<div class="ui-field-contain">
<label for="db2">Year Pick</label>
<input name="db2" type="text" data-mini="true"
data-options='{"mode":"datebox", "overrideDateFieldOrder": ["y"],
"overrideHeaderFormat":"%Y", "overrideDateFormat": "%Y" }'
data-role="datebox" id="db2" />
</div>
<div class="ui-field-contain">
<label for="db3">Year Picker - Flipbox</label>
<input name="db3" type="text" data-mini="true"
data-options='{"mode":"flipbox", "overrideDateFieldOrder": ["y"],
"overrideHeaderFormat":"%Y", "overrideDateFormat": "%Y" }'
data-role="datebox" id="db2" />
</div>
</div>
<div data-role="footer" data-position="fixed">
<h1>jQuery Mobile datebox Information</h1>
</div>
</div>
</body>
</html>
Output:
https://media.geeksforgeeks.org/wp-content/uploads/20240731161250/3.mp4
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?/How to design datalists for mobiles using jQuery EasyUI Mobile ?/How to design menu using jQuery EasyUI Mobile ?/EasyUI jQuery menu widget/EasyUI jQuery datebox widget/How to make use of multi-mode jtsage-datebox plugin?
|
https://www.geeksforgeeks.org/how-to-make-use-of-multi-mode-jtsage-datebox-plugin?ref=asr1
|
CSS
|
How to make use of multi-mode jtsage-datebox plugin?
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, How to design menu using jQuery EasyUI Mobile ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, EasyUI jQuery datebox widget, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, EasyUI jQuery menu widget, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, How to make use of multi-mode jtsage-datebox plugin?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, How to design datalists for mobiles using jQuery EasyUI Mobile ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0115430448, -0.00369161973, -0.0129020242, 0.0371233597, 0.0289694779, 0.0117253466, -0.00179401948, 0.0308422185, -0.00685704919, 0.0110458564, 0.0116010495, -0.0253400076, 0.00881679822, -0.0469676778, 0.0160923135, -0.00493458938, -0.0283065606, -0.0049055866, -0.0110790022, 0.0164569169, -0.0242627673, -0.00206954451, -0.0616512932, 0.0128191598, -0.0147664789, 0.0271298829, 0.00178262556, 0.0154293962, -0.0188102741, 0.00882508419, 0.0183462314, 0.0100597674, 0.00717607792, -0.0153050991, -0.0444485918, -0.00610298058, 0.017567303, 0.0179484803, -0.0495862029, 0.00117357052, 0.00331872888, -0.0280413944, 0.0248096734, 0.00983603299, -0.0190091487, 0.0299472809, 0.00067949004, -0.0271630287, 0.00177123165, -0.0208818894, 0.00809173193, 0.026417248, 0.0489564314, 0.0158602931, 0.0201692544, 0.00108967, 0.0111370077, 0.0147747658, 0.00742467167, 0.0182302203, 0.0584361441, -0.0256383196, 0.0109132733, -0.009695163, 0.0311571043, 0.0222740155, -0.000676382624, 0.0310079493, -0.0358969606, 0.011103862, 0.0094548557, 0.0138135357, 0.00923112128, 0.0203184094, -0.00594553817, -0.005406918, -0.00705178082, 0.0626456663, -0.0250748396, 0.0292843636, -0.03175373, -0.0239976, -0.0700703412, -0.00761940377, -0.00607812125, 0.0112032993, 0.00712635927, -0.071263589, 0.0374216735, 0.000989714521, 0.0154708289, -0.0155288335, -0.0279419571, -0.0205504317, -0.0166806523, 0.0141698532, 0.034836296, 0.026417248, -0.0688108, 0.00164693478, 0.0226551928, 0.00780170597, -0.00673275208, -0.0320023261, 0.00799643807, -0.0103746532, 0.0530996621, -0.00106998964, 0.0102917887, -0.0432221964, 0.0241799019, -0.00551878521, -0.00993547, 0.000718332885, -0.0488901399, 0.0365930237, 0.00780584896, -0.0482935123, 0.0335601792, 4.7129266e-05, 0.00704763783, 0.0147084733, 0.0127611551, 0.0488569923, -0.0398744643, 0.00599525683, 0.00939685, 0.0142692914, 0.0483266599, -0.0193737522, 0.00351138925, 0.0251742788, -0.00973659568, -0.0246273708, 0.0382834636, 0.0443491563, 0.0244947877, 0.0153299589, -0.0286048744, 0.0318531692, -0.0275276341, -0.0316874385, 0.0225723274, -0.00532405311, -0.0201692544, 0.0202189721, 0.0107641164, 0.0706006736, -0.03231721, 0.0145676043, -0.0212796405, -0.0389463827, 0.0176667422, 0.053132806, 0.0493210331, -0.013772103, 0.00148534868, 0.0177164599, -0.00974488165, -0.00475643, 0.00719265081, -0.0434873626, 0.0328972638, 0.00808344595, -0.0283894259, -0.00351138925, 0.0307262093, 0.00860135, -0.015462542, 0.0363610052, -0.0114270337, 0.000712118, -0.024875965, 0.0144101614, -0.036957629, 0.00722579658, 0.0100100487, -0.0196389202, -0.00454926863, -0.0165149234, -0.0174015742, 0.0145427445, 0.0151973749, 0.00797157828, 0.0330629908, 0.00499259448, 0.017699888, -0.0254394449, -0.0154376822, -0.0601928756, 0.0113607422, -0.00167386571, 0.033295013, 0.0212630667, 0.0405373834, -0.018114211, -0.0261189342, 0.0299141351, -0.0324166492, 0.0261686537, 0.0131174726, -0.0495862029, -0.0267984252, 0.017567303, 0.0216608178, 0.0118579306, -0.0167800896, -0.0183130857, 0.0515749529, -0.0276436433, -0.00656288, 0.0195560548, 0.00441668555, -0.0247268081, -0.0111287208, 0.0077561303, -0.0285385828, -0.0215613805, -0.0344054, -0.0266492683, -0.000738531118, 0.0528013483, -0.00934713148, -0.00384699088, -0.0603254586, -0.0271630287, 0.0182136483, 0.000692437636, 0.0298644174, 0.00614441326, 0.0237987246, 0.00970345, -0.0184953883, -0.00539863156, 0.052967079, 0.000801197486, 0.0384823382, -0.00260609295, -0.029781552, 0.0349357314, 0.00258123362, -0.0212299209, -0.025141133, -0.0198709406, 0.0194566175, -0.0050174538, -0.00327522494, 0.00621484825, -0.00422402518, -0.0078141354, 0.000857131148, 0.0156945623, -0.0458075739, 0.00784728117, 0.00696891639, -0.00234299782, -0.00332494383, -0.0088333711, 0.0235004127, 0.00744124455, 0.0187771283, 0.0300135724, -0.0312896892, 0.0141615672, 0.0231026616, 0.0177164599, 0.0541603304, -0.0161917508, -0.0318034478, 0.000921351253, 0.0457081348, -0.0454429686, 0.0360626914, 0.0464704894, 0.0128108738, 0.0134074986, -0.024859393, 0.0131009, 0.0199040864, 0.0408356935, 0.0307427812, 0.0432221964, 0.0711310059, 0.0239147358, 0.0114933262, -0.00539863156, 0.00689019496, 0.00845633633, -0.018826846, 0.036261566, -0.0208653174, -0.00579638174, 0.0120650921, 0.0240473188, 0.0633085892, 0.0218265466, -0.00780999241, -0.0038511341, -0.00493458938, 0.0357975252, -0.0124877011, -0.0106232474, -0.043818824, 0.0181805026, 0.018412523, 0.0516080968, 0.0479952, -0.00128958095, -0.0211967751, -0.0106398202, 0.0113441693, -0.00299141346, -0.0345711298, -0.0045368392, -0.0154874017, 0.0451115109, 0.0212630667, 0.0402390696, -0.0195229091, -0.0165729281, 0.0180644915, 0.00374133862, -0.0364272967, 0.0441171341, 0.0729871765, 0.00380555866, -0.0238484442, -0.0395761542, 0.00246315147, 0.0055353581, -0.027676791, -0.0207493063, 0.0185782518, 0.00835275557, -0.0198543686, -0.0335436054, 0.0154956877, 0.0139958374, -0.00703520793, -0.00239271647, -0.0159763023, 0.0126202852, 0.0180644915, -0.0334607437, 0.0172027, -0.0655956492, -0.000149674263, 0.00302248774, 0.0380845889, -0.00947971456, 0.00178366143, 0.00281118299, 0.00889966264, 0.010391226, 0.0400733389, -0.00411215797, 0.00622727768, -0.027395051, -0.0502491184, 0.0219757035, -0.00529919378, -0.00599525683, 0.00788457, 0.00548149599, 0.00561407954, -0.0293340832, -0.0305439066, -0.0157857146, -0.0235501304, 0.0102254963, -0.0385817774, -0.0107061118, -0.0342396684, 0.0114104608, -0.0464041978, -0.00395885808, 0.00674518198, 0.002703459, -0.00531991, 0.0125539927, -0.0547901019, 0.0416311957, -0.0050423136, 0.0305604804, 0.0169375334, -0.00150192156, -0.00518732658, 0.00318407384, -0.00483100861, -0.0189594291, -0.0301627293, 0.0404379442, 0.0127362953, -0.019672066, 0.00114871108, -0.00202189735, 0.0117336335, 0.00355282146, 0.0274944883, -0.00505888648, 0.00916483, 0.00972830877, 0.00461141719, 0.00564722531, -0.0170369707, -0.0208321717, -0.0351346061, 0.00443325844, 0.0174844395, 0.0167055111, 0.0197880771, -0.000805340707, -0.0392446928, -0.00939685, 0.0457081348, 0.036261566, 0.0113275964, 0.0571103096, -0.0118745035, -0.00346374209, 0.0299472809, 0.00273453305, -0.0376536921, 0.00676589785, 0.0146587547, 0.0181473568, -0.0478626154, 0.00552707165, 0.015031646, 0.00117149891, -0.0201526806, 0.0135649415, -0.0117833521, -0.0203515552, 0.0514755137, -0.00294583803, 0.0149902133, 0.0155785521, -0.0474648662, -0.0304278955, -0.0358969606, 0.00743710157, 0.0266824141, -0.00237407186, -0.0488569923, 0.00118910754, -0.0453103855, 0.0023264247, 0.0312399697, 0.0109712789, -0.0195726287, -0.030063292, -0.0202686917, 0.0110872891, 0.0223568808, -0.0214122236, 0.00127818703, -0.00457412796, 0.00709735649, -0.0296986867, 0.0262680911, 0.0336761884, 0.00169458194, 0.014890776, -0.00547320955, -0.0514092222, -0.00433796411, 0.00884994399, -0.00831132382, -0.002142051, -0.00396507327, 0.0133577799, 0.0444485918, 0.0545912273, 0.0358638167, 0.0166640785, -0.00333323027, -0.013772103, -0.0123385452, -0.0292677917, 0.0223900266, 0.0194400456, 0.0457744263, 0.00308463629, 0.0265166853, -0.00374962506, -0.0200200975, 0.0105486689, 0.00829889346, 0.0169706792, 0.0238152985, -0.00422402518, -0.0492878892, 0.0315548554, 0.000760283088, -0.0159680154, -0.022340307, -0.0193406064, 0.00111452944, -0.00972830877, -0.00823674537, 0.0131754782, -0.0433879271, 0.0709984228, 0.0185948256, -0.0266161226, -0.00584195741, 0.00318200211, -0.00180023431, -0.0392115489, 0.00594553817, -0.0102089234, -0.0167800896, 0.01321691, -0.030345032, -0.0323669277, -0.021362504, 0.000619413215, 0.00199807365, -0.0135732284, 0.0409682803, -0.0030494188, -0.0175341573, -0.00920626149, 0.00484343804, 0.00938856415, -0.00336844777, -0.0174844395, 0.00454512564, -0.018130783, -0.034272816, 0.0242130477, 0.0139378328, 0.0229866523, -0.0101260589, -0.0122888265, -0.0179650541, 0.0206167232, -0.0117253466, 0.0158271473, -0.0339413583, 0.0184788145, -0.013482077, 0.00845219381, -0.00438768277, -0.0111535806, 0.0077561303, 0.00706835371, -0.00343266781, 0.0317040123, -0.0137803899, 0.0305936262, 0.0177164599, 0.010672966, -0.0304776151, 0.0154376822, -0.0116010495, -0.0332121477, -0.0319526047, -0.00681976, -0.0206830148, 0.0163906254, 0.0391121097, 0.0191417318, 0.0264006741, -0.0347700045, -0.00495530572, 0.0321349092, 0.00675346842, 0.00483929506, -0.000964337261, 0.0216110982, 0.0182633661, -0.0182136483, 0.0232186727, 0.0197549313, 0.0493541807, -0.0342396684, 0.0145344576, -0.00236578542, 0.00669546286, 0.00686119217, 0.0111618675, -0.0062231347, -0.00491801649, 0.0148244845, -7.18591837e-05, -0.0085599171, -0.0362947136, 0.0158520062, 0.0210144725, 0.0139709786, 0.00420952355, -0.00481443573, 0.00889137574, -0.00943828281, 0.00822845846, 0.00051091233, 0.0068404763, -0.0327812508, -0.000625628047, 0.0180147737, 0.020086389, 0.0353003368, -0.00440839911, -0.0261520799, 0.0166557934, -0.00974488165, 0.0104575176, 0.0139378328, -0.0269807279, -0.00280703977, 0.0232352447, -0.0108884135, -0.00861792266, -0.0226054732, -0.00986917876, 0.0170866884, -0.0136560928, -0.0229700785, -0.0136063742, -0.0170701165, 0.0270635914, 0.00379105727, -0.00313228345, 0.0197217837, -0.000740084797, -0.0309416577, 0.00145738188, -0.0563811027, -0.0109961377, -0.00764012, 0.0228374954, -0.0170369707, 0.01715298, 0.0180147737, -0.00122328929, -0.000684669125, -0.0234341212, 0.00237407186, -0.00456169853, 0.0192743149, -0.0230197981, 0.114883535, -0.0137140984, 0.0435868, -0.0013796963, 0.0244284961, 0.0208321717, 0.010822122, -0.0214287955, -0.00609469414, 0.0303781778, 0.0254560169, -0.00185616792, -0.0244616419, 0.00809173193, -0.0134737911, -0.00374341, 0.0120733781, -0.00660016853, -0.012504274, 0.0347700045, -0.00472328439, 0.012230821, -0.0400733389, 0.022622047, 0.0396424457, 0.0102254963, 0.0298478436, 0.0175175853, 0.00212754961, -0.00299141346, -0.0089991, 0.0110209975, -0.0441502817, -0.0231192354, 0.0193074606, 0.000111802525, -0.0283065606, -0.0351346061, 0.00769398175, 0.0261520799, 0.0180479195, 0.000944656902, -0.00822017249, -0.029997, -0.000353987387, -0.0130263213, 0.00655045, 0.00785556808, 0.0140206972, 0.0282568429, 0.0282402691, -0.015180802, -0.0285717286, -0.0270967372, -0.00407072529, 0.00851019844, -0.0215116609, -0.0124794152, -0.0170866884, -0.0410345718, -0.00562650897, 0.00242379075, 0.0121976752, 0.00603668904, 0.000707974774, -0.00497602159, -0.0160508808, 0.0189262833, 0.0196057744, -0.0120153725, 0.0335436054, 0.00917311572, 0.00767740887, 0.0130843269, -0.00740809878, -0.0104243718, 0.0165232103, 0.0192411691, -0.00272831833, 0.0182467941, -0.00717193447, 0.0158520062, 0.00988575164, 0.00782242231, -0.00466942275, -0.0195726287, -0.00598282693, 0.00337051926, -0.000628735463, 0.0289694779, -0.0090736784, -0.00853505824, -0.00887480285, -0.0162248965, 0.0089493813, -0.0149073489, 0.0317205861, -0.000750442909, -0.0158602931, -0.0254560169, -0.00305356202, 0.0219425578, -0.00439182576, 0.0372890867, 0.00074474595, -0.0165232103, -0.0369907767, -0.00619827537, 0.0205007121, 0.00829060748, -0.0398744643, -0.00208922476, -0.000713671732, -0.0151393702, 0.0243456308, 0.035532359, -0.0110127106, 0.0157857146, 0.0134655042, -0.0131423324, 0.0101426318, -0.0209813267, 0.0193571802, -0.0238650162, 0.000550531957, 0.0193737522, 0.00107413286, 0.0158851519, 0.0179484803, 0.0283397064, 0.0135152228, -0.0105486689, -0.00438353932, -0.00667474698, -0.0197880771, -0.00857649, -0.00898252707, -0.0105238091, 0.00896595418, -0.0103249345, -0.0148659162, 0.0249919761, 0.000735423702, -0.00545663666, 0.0152968131, -0.00236785715, 0.0223071612, 0.0145427445, 0.00846462324, 0.0221082866, 0.00759040099, 0.00686119217, -0.0328972638, 3.69330301e-05, 0.00765669299, 0.00273246155, -0.0265001114, -0.0238152985, -0.0241136104, 0.0104740905, -0.0102337832, 0.00911511, -0.0280579682, -0.0316542946, -0.000363050698, -0.0054649231, 0.00771469809, -0.0123799769, 0.00320271845, -0.0100183347, 0.00556436041, 0.0131009, 0.0161006, 0.0274116229, 0.0073335208, -0.0229535047, 0.0201526806, 0.0110044247, 0.000658256, 0.0104077989, -0.0153713906, -0.0110127106, 0.0242793392, 0.0021182273, 0.0218099728, 0.0239644535, 0.0112530179, 0.00634328835, -0.0221414324, -0.0475974493, 0.00828646403, 0.00120671629, 0.0115264719, 0.00847705267, 0.042161528, 0.0343722515, 0.0254560169, -0.0208155978, 0.0277099367, 0.00576323597, -0.00770226819, 0.0181805026, 0.0224397443, 0.0061526997, 0.00929741282, 0.0205670036, -0.00436282344, 0.040205922, 0.0279751029, -0.0035756093, 0.0148493433, -0.0128523055, 0.0243456308, 0.00526604801, 0.00354453502, 0.0238318704, 0.0151145104, 0.0180313457, 0.00388013688, -0.00257294718, -0.000593000092, 0.0400070474, -0.0115347579, -0.0170038249, -0.0293506552, -0.0467025116, -0.0289860517, -0.0090736784, -0.00526190456, 0.0195726287, 0.0337259099, 0.0110955751, -0.00882508419, -0.0206995867, -0.0204178467, 0.00462799, -0.0297649782, 0.0334110223, 0.00315507129, -0.0496856384, -0.0138964, 0.000889241172, 0.0335270353, -0.0385154858, -0.0351014622, -0.0240804646, -0.00193592522, 0.00726722879, -0.0229369327, 0.00154956884, -0.0506468676, 0.0166972261, 0.0160343088, -0.0164900627, -0.0315051377, -0.0185451061, 0.00917311572, 0.0137140984, 0.0126948627, 0.0136478068, -0.00703935139, 0.0128440196, 0.00498430803, -0.0111121479, 0.0200698152, -0.00573008973, 0.0131257595, 0.0318697393, 0.0277099367, -0.0118330708, -0.000976766925, 0.0375542566, -0.0404710919, -0.0370570682, 0.0211802013, 0.0356317945, -0.0176667422, 0.0045948443, -0.00538620166, -0.0054649231, 0.0423935503, 0.00064738, -0.0200035237, -0.0186445434, -0.00634743134, -0.00467770919, 0.0221911501, 0.00694405707, 0.0207658783, 0.0290689152, 0.00381177338, -0.0267321337, 0.0137140984, -0.0239478815, 0.0473985747, -0.0129683167, -0.00640958, 0.00839418825, 0.0105072362, -0.0133909257, -0.00137866044, -0.000830200093, -0.0147084733, -0.0544917881, 0.0181639288, 0.0136726657, -0.00667889, 0.00443740143, 0.00526604801, 0.0113441693, -0.0196057744, -0.0107226847, 0.00146877579, -0.0275939256, 0.0152388075, 0.00274696294, 0.0323835, -0.0109795649, -0.0113607422, 0.0285054371, 0.0167552307, 0.0460395962, -0.00160135922, 0.0055933632, 0.00593310827, -0.00377862761, -0.0256051738, -0.0169623923, -0.0167386569, 0.0431559049, 0.0219591297, -0.00848534, 0.0190091487, 0.0111535806, -0.0291517805, -0.0103000747, -0.0159431566, 0.0262846649, -0.0304444693, 0.00217312528, -0.00445811776, 0.0266989879, 0.00345545541, 0.0122971125, -0.0456418432, 0.00681147352, 0.0138715412, 0.0144101614, -0.0203018375, 0.00396093, -0.0418963619, -0.012495988, -0.00365640223, 0.0277928, -0.0103083616, -0.0113110235, -0.00623556413, -0.00209440384, 0.0122556807, -0.021345932, 0.0513760783, 0.00938856415, 0.0215779524, 0.00207472336, -0.0164486319, -0.0160757396, 0.00643443922, -0.0120402323, -0.0333778784, -0.0168463811, -0.00452440931, 0.0163160469, 0.0395761542, -0.00563893886, 0.00646758545, 0.000623556436, -0.0169706792, 0.0082491748, -0.00778513309, 0.0199040864, -0.0072630858, 0.00794257596, 0.00958743878, -0.00371855078, -0.00635157479, -0.000976766925, -0.0178158972, -0.00664988765, -0.00059248216, -0.0137886759, 0.0162414704, 0.0111370077, -0.00851848535, -0.00387392193, -0.0448463447, 0.0128440196, -0.00932227168, 0.0140372701, 0.0122888265, 0.00420123711, -0.0109878518, -0.0158188604, -0.00472328439, 0.00359425391, 0.050282266, -0.00241136109, -0.0025439444, -0.00191417325, -0.0104989503, 0.000534994819, 0.00349895936, 0.00630599912, -0.0106978249, -0.017849043, -0.0356649421, 0.0105155231, -0.0125539927, -0.000110443027, -0.00975316856, -0.0175175853, 0.00792186, -0.00424059806, 0.00405208115, 0.0224397443, -0.00965373, -0.0149322087, 0.0143024372, -0.00549806887, -0.00750753656, -0.0136560928, -0.013631233, 0.00461141719, -0.0381840281, 0.0189760029, -0.0171198342, -0.0242296215, 0.00380141544, 0.0122888265, -0.0131589053, 0.0103166476, 0.0270635914, -0.0395098627, -0.00910682417, -0.0122639667, -0.0319194607, 0.00534891244, -0.0280579682, -0.00160964567, 0.000606983493, -0.0185451061, 0.0233844016, -0.0376205482, -0.00899081398, 0.00954600703, 0.104276866, 0.0120153725, 0.0213293582, -0.0192245971, -0.029367229, -0.0211967751, -0.0119573679, 0.02444507, 0.000627181726, -0.018826846, 0.0205172859, 0.00746610435, -0.00749510666, -0.0217768271, -0.0177993253, -0.00214619422, 0.0057176603, 0.0110541433, 0.0137969628, -0.0270470195, -0.00420330884, 0.00112695911, 0.0316045731, 0.00272210338, 0.0187937, 0.00503402716, -0.00482272217, 0.00456998497, -0.0221745782, -0.00216898206, 0.0287374575, 0.0119988, 0.0178158972, 0.00187377667, -0.00321929133, 0.0293340832, 0.00836104248, 0.0112695908, -0.0316708647, -0.00514589436, 0.0050878888, -0.000434780406, -0.0177993253, 0.0302953124, -0.00122018182, 0.00593310827, -0.00589581905, -0.00492215948, -0.0262349453, 0.0017981627, -0.00395885808, -0.0186113976, -0.0365930237, 0.015172516, -0.028107686, 0.00487658428, 0.00236578542, -0.00637643412, 0.0251245592, -0.0121479565, -0.00885823, 0.00628528325, 0.0297484063, -0.013763817, -0.0237490069, -0.00986917876, -0.0237324331, 0.00360461185, 0.000619931088, 0.000149933214, 0.0138301086, 0.0086842142, 0.0074578179, 0.000380659447, 0.00309913768, 0.0100017618, -0.00880022533, 0.0138052488, 0.0133163482, -0.0237821527, -0.000553121499, 0.0153879635, 0.00369369145, 0.011509899, -0.0324995108, -0.00480200583, -0.00651730411, -0.00136933825, -0.0105983876, 0.0139295459, -0.00250251219, -0.00782656576, -0.0238318704, 0.00325865205, 0.0132583426, 0.00191313738, 0.0198543686, -0.00228706398, 0.00819945615, 0.0275110602, 0.015321672, 0.029798124, 0.0154874017, -0.00608640769, -0.0101757776, 0.00750339311, 0.0290523432, -0.000269310083, -0.0202355459, 0.00753653888, 0.0411671549, -0.00503402716, -0.0166143607, -0.0138052488, 0.0259863511, -0.0151476562, 0.0128688784, 0.0233015362, 0.00315714278, -0.00533233956, -0.0130014624, -0.00741638523, 0.0192743149, -0.0108884135, 0.00499673793, 0.00225184672, 0.0119656539, 0.00288161798, 0.0163326208, 0.00320686167, -0.0211636294, -0.00366468867, -0.010250356, 0.0142858643, -0.0227712039, 0.0120070865, 0.000445138488, 0.0264669657, -0.0174347199, 0.0287374575, -0.0153962504, 0.00669132, -0.00942171, 0.0242130477, 0.00333737349, 0.0171861257, -0.0278425198, 0.0187274087, 0.0181805026, 0.00556021743, -0.0137223843, 0.00536962878, 0.00519561302, 0.0174844395, 0.0448463447, -0.0210641921, 0.00707249716, -0.0145427445, -0.0033580896, -0.00897424, 0.00722579658, 0.0329801254, 0.0210641921, -0.00357768079, -0.00548149599, 0.00352381892, -0.0183462314, -0.0589001887, -0.0329967, 0.006393007, -0.00854334421, -0.00190899416, 0.00764840655, -0.0202686917, 0.0163657665, -0.00722994, 0.0357643776, 0.0119739408, 0.0030494188, 0.00367711834, -0.00637229066, 0.00575494952, -0.0326155238, -0.00582538405, -0.00367919, -0.00107413286, -0.0122971125, -0.00278010871, 0.00251701358, 0.0265001114, 0.0104823774, 0.0328806899, 0.00575909251, 0.0213956498, 0.0107641164, -0.01321691, 0.000102933423, -0.0267321337, 0.0223237351, 0.0282402691, -0.0255223103, 0.0141781401, 0.020102961, -0.00177848234, -0.00516661024, -0.0055353581, -0.00476057362, 0.0025211568, 0.0178656168, -0.0116424821, -0.00931398571, 0.00489315717, 0.00987746567, -0.00379727222, -0.0112613048, -0.00468185218, 0.018114211, -0.0249588303, 0.0132666286, 0.00885823, -0.00834032614, 0.0218099728, 0.00015653648, 0.0210476182, -0.000132130255, 0.00482272217, -0.00123571896, -0.0136560928, -0.00602425961, 0.00691505428, -0.0167469438, 0.0167883765, 0.0277762283, -2.67206105e-05, 0.0171032622, 0.0121562425, 0.00594553817, -0.0113027366, -0.0319194607, -0.00265581184, -0.000690883957, 0.0107226847, -0.00219798461, -5.36354346e-05, 0.0138964, 3.56382698e-05, 0.0283397064, 0.0106563931, -0.00870078709, 0.0014263076, -0.013490364, 0.0108967, 0.0129766027, -0.0159100108, -0.00357146608, -0.00611955393, 0.00163036177, 0.00380141544, 0.00264959689, -0.0253731534, 0.0318531692, 0.00567622809, -0.0200532433, -0.0147084733, -0.0238152985, -0.0104989503, -0.00523290224, 0.00526190456, -0.0206664409, -0.0175175853, -0.0286545921, 0.0192080233, 0.016713798, -0.0225060359, -0.00531991, -0.0131506184, 0.0320520438, -0.0121230967, -0.00894109439, -0.014890776, -0.0130263213, -0.021345932, 0.0066581741, 0.00957086589, -0.011659055, 0.038217172, -0.0320686176, -0.0131340455, 0.00191417325, -0.00391742587, 0.0136478068, 0.0179650541, -0.000862310175, -0.00101198442, -0.0195229091, 0.0179484803, 0.0111867264, 0.0257709026, -0.0192411691, -0.00583781395, 0.0164072, -0.0122639667, -0.040901985, 0.0309416577, -0.0338087752, 0.00386770722, 0.0242296215, -0.0229535047, 0.00902396, 0.00455755508, -0.000580570369, -0.0308753643, 0.0105901007, -0.0201858263, -0.0172358453, -0.0238484442, 0.0149404947, -0.00838175882, -0.00351967569, -0.0125208469, 0.00972830877, -0.0293175094, -0.0234341212, -0.0109795649, 0.00255015935, -0.00771055464, -0.0197217837, 0.00697305938, 0.0162911881, -0.00875879265, 0.00490973, -0.0144930258, -0.0132583426, 0.0190257207, -0.0104077989, 0.0275773518, -0.0161503181, -0.00571351685, 0.00608640769, 0.000446951162, 0.0019245313, 0.0137306713, -0.0190920141, 0.00317578739, 0.0189925749, -0.0153548177, 0.00719679426, -0.00928912591, -0.0142941503, -0.0133577799, -0.0170203969, -0.0089493813, 0.0152553804, 0.0242461935, 0.0302124489, 0.0320520438, 0.019953806, 0.0191417318, 0.00520804292, 0.0234175473, 0.00394642865, 0.00325036561, -0.00269724405, -0.00366054545, 0.00387806515, -0.0303284582, -0.0257543307, -0.0143190101, 0.0239478815, 0.018114211, -0.00904053263, 0.0177993253, 0.0121645294, 0.0221248586, -0.00293962308, 0.0205835775, -0.0132997753, 0.00655459333, -0.0263841022, -0.00244865, -0.0119242221, 0.00428824499, -0.0165397823, -0.00640129345, -0.012504274, -0.00240721786, -0.0117502064, 4.92656181e-05, 0.0109298462, 0.0176004507, 0.0221911501, 0.0105735278, 0.0142610045, 0.00908196438, -0.0357312337, 0.00545249321, -0.0215779524, 0.00387185044, -0.0154045364, -0.0124628423, 0.0184953883, 0.00784728117, 0.00123053987, 0.00356732286, 0.0372890867, 0.00276353583, 0.0108718406, 0.00813730806, -0.0136643797, -0.0355655029, 0.00662088487, 0.00842733402, 0.0140206972, -0.0153796775, -0.00814145058, 0.00267859944, -0.00692748418, 0.017567303, 0.014476453, 0.0377531312, -0.0184788145, -0.00339123537, 0.00200636, -0.0234838389, 0.0060284026, -0.00386149227, 0.0228374954, -0.0043421071, -0.00800058153, 0.00490144361, 0.0140124112, -0.0107475435, 0.0137555301, 0.00603668904, -0.0197549313, 0.00101664558, 0.000758729351, 0.00572180329, -0.0125208469, 0.0378857143, -0.0122059612, -0.00369369145, 0.00123675482, -0.0120982379, 0.00811244827, -0.00409351336, 0.0101343459, 0.0010710255, 0.0226717666, 0.0126948627, 0.0140869888, 0.00947142858, -0.00551878521, 0.000915136363, -0.0272790398, -0.00500916736, -0.0123716909, -0.0258206222, 0.00491387304, -0.0116341952, 0.0120402323, -0.0254560169, -0.00876707863, -0.00435868, 0.0155454064, 0.0125788525, 0.0163160469, -0.00456998497, 0.00648415834, -0.000892348588, 0.0101923505, -0.0334773138, -0.00824088883, -0.00333530176, 0.00131029717, 0.00851019844, -0.0181805026, -0.0041245874, -0.0144930258, 0.00942171, 0.0116341952, 0.00277389376, 0.00554364454, 0.00485172495, 0.0169043876, 0.0459733047, 0.00714707514, -0.00887480285, 0.0112115862, -0.000146307881, 0.018395951, -0.000429083477, -0.000493821455, 0.00594553817, 0.00353210536, 0.0227877758, -0.0104326587, 0.0179982, -0.0201858263, -0.0141367074, 0.00485586794, -0.00635157479, 0.00689433794, -0.00410387153, 0.0149902133, 0.00856820401, 0.00575909251, -0.00667060353, 0.00517904, 0.00748267723, 0.00509617524, -0.0213293582, -0.0158437192, 0.0341733769, 0.0170038249, -0.0118164979, 0.00331251393, -0.0155288335, -0.0137803899, -0.00531991, 0.0189760029, -0.00100421591, 0.00120257307, -0.0050174538, -0.00332494383, 0.000117887903, 0.00763597665, 0.0130511811, -0.000224511386, 0.00312606851, 0.00541106099, 0.0062107048, 0.00159100106, 0.0013796963, -0.0197052117, -0.0217934, -0.00734180724, -0.00305149029, 0.0110707162, 0.0228706412, 0.00219798461, 0.0066581741, -0.0105486689, -0.0129103111, -0.00757797156, 0.0109215593, 0.0192411691, -0.00895766728, 0.00165522122, 0.00231813826, -0.0103332205, -0.00346788531, -0.0266658422, 0.0229369327, -0.00563479541, 0.00365847396, 0.0025253, 0.00292512192, -0.00245693652, 0.0101840645, -0.00408729864, 0.00580881117, -0.00473157084, -0.0134737911, -0.0109298462, 0.0150730778, 0.00453269575, 0.0101592047, 0.00499259448, -0.037521109, -0.0072630858, 0.0167386569, 0.0237158611, 0.00758211454, 0.0243787766, 0.0188599918, -0.0159514435, 0.0251079854, -0.00610298058, 0.00428824499, -0.00889137574, -0.0134489313, 0.0105072362, -0.0163740534, 0.0138466815, 0.0387143604, 0.000816734624, 0.041465465, -0.0259863511, 0.0037579115, -0.00748682, -0.00276767905, -0.0179484803, -0.0100846272, -0.0274779145, 0.0117502064, -0.0108469818, -9.92433561e-05, -0.00686947862, -0.0151145104, 0.00140041241, -0.0202686917, -0.00733766379, -0.0314057, -0.00679904362, -0.0178324711, -0.0134737911, 0.0194400456, -0.026549831, -0.00317578739, -0.0104077989, -0.028372854, -0.000988678774, -0.0217934, 0.0117336335, 0.0112281591, -0.00274074799, -0.000822431582, -0.00486415438, -0.0191583056, 0.0159182977, 0.0266161226, 0.0102835018, -0.00575494952, 0.0369244851, -0.00540277455, -0.00864278246, -0.00415566191, -0.00557679031, 0.00822017249, -0.00196492788, 0.00614027, 0.00587924616, 0.00818702672, -0.00204779254, 0.00777684664, -0.027113311, -0.0207327325, -0.000686740736, -0.000242896975, 0.00691919774, 0.0066457442, -0.0147664789, -0.00035165681, -0.004354537, 0.00519975601, -0.0240970384, 0.000771676947, 0.020649869, 0.000738013186, 0.00537377177, 0.0249256846, -0.0112032993, -0.0219922755, 0.0142610045, -0.0235169847, -0.00351967569, 0.00829060748, -0.00981117319, 0.0126617169, 0.00971173588, 0.0106646791, 0.00225599, 0.0175507311, 0.0184290968, -0.0132334828, 0.0128854513, -0.00928912591, -0.0176667422, 0.00932227168, 0.018412523, -0.0257543307, -0.00453269575, 0.00159410853, -0.00504645659, 0.0121562425, 0.0412334464, -0.00053344114, -0.00817045383, 0.00674518198, -0.00280703977, 0.00627285335, -0.0171861257, -0.00556021743, 0.000158090203, -0.0305770524, 0.0169706792, -0.0194731914, 0.0131091867, 0.00947142858, 0.00915654283, 0.00834861305, -0.0204509925, -0.00752825243, 0.0219922755, -0.0256051738, -0.0153962504, 0.0228872132, 0.0150482189, 0.0134323584, 0.0334441699, -0.00789285731, -0.0302787405, 0.00179401948, 0.0105901007, 0.002670313, 0.00482272217, -0.0117584923, 0.0135235097, 0.00682390342, -0.0192908887, -0.0159928761, -0.00485172495, -0.0159100108, -0.0107558304, 0.00351138925, -0.00319028879, 0.0218431186, 0.00817874, 0.0129600298, -0.0145510314, 0.00959572569, -0.00311571057, -0.0041722348, -0.0229700785, 0.011103862, 0.00838590134, -0.0139875514, 0.021925984, -0.0129683167, -0.0062107048, 0.0202686917, -0.00896595418, -0.0148161976, -1.75925525e-05, -0.00263302401, -0.0189760029, 0.00852677133, 0.0144847389, 0.0133412071, 0.0132997753, 0.00778513309, -0.00968687609, 0.00538205821, 0.012230821, -0.000674828945, 0.0243456308, -0.0142610045, -0.0210310463, 0.0140041243, -0.011808211, -0.0216939636, 0.020384701, -0.0151310833, 0.0363278575, -0.00131444039, -0.0164486319, -0.0151642291, 0.0158520062, 0.0153796775, -0.00762354676, 0.00313228345, 0.00474400073, -0.0210973378, 0.0163823403, 0.0136063742, 0.00139937666, 0.00530748, -0.0163657665, -0.00207679509, 0.0080337273, 0.0184290968, -0.00358389574, -0.0057756654, 0.00207058014, 0.0304444693, -0.0110044247, -0.0210476182, 0.00399407558, 0.0202189721, 0.007449531, -0.0362947136, -0.014899062, 0.0243622046, -0.00349481613, -0.00808758941, 0.00845219381, 0.00692334073, 0.0149487816, -0.0102337832, -0.00688190851, 0.0181970745, 0.0195560548, -0.000816216692, 0.0380845889, -0.0164320581, 0.0205338579, 0.0226386208, 0.0162000377, 0.0156779904, -0.00370612112, -0.0131754782, -0.0326486677, 0.00212754961, 0.0113358833, -0.0141532803, 0.0020975112, 0.0178158972, 0.00149259937, -0.0181970745, 0.00947142858, 0.00331872888, -0.0144184474, -0.00626871, -0.0032669385, 0.000416135881, 0.0106066745, -0.00616098614, 0.00473571429, -0.0249091107, 0.0300964378, -0.00915654283, 0.00817874, -0.0197715033, -0.00545249321, 0.019953806, 0.0146670416, -0.00813730806, -0.022058567, -0.0050174538, -0.0128688784, -0.0170701165, -0.0187605545, -0.0158354323, -0.00321307639, 0.0109878518, -0.00300384313, -0.001861347, 0.00274281972, 0.0294832401, 0.00257501868, 0.030345032, -0.00884994399, -0.0184788145, -0.00965373, -0.0023036371, -0.000155500675, -0.0180644915, -0.011236445, -0.00334566, 0.00151124387, 0.00380348694, -0.00834861305, 0.00348652969, 0.0145261716, 0.0121065238, 0.0117502064, -0.0205338579, -0.0165066365, 0.00442082854, -0.00327108172, -0.00768569531, 0.0329635553, 0.00982774608, 0.00503402716, -0.00435868, -0.00635571778, -0.00630185613, 0.0165149234, -0.0156448446, 0.014053843, -0.00180230592, -0.000672757276, 0.00810001884, 0.0139378328, -0.00198253663, -0.0125125609, -0.00786799751, -0.0180810653, -0.00495116226, 0.0101840645, 0.0190920141, -0.0202024, -0.00611126749, -0.0022704911, -0.0117087737, -0.0283894259, 0.0205007121, 0.0193406064, 0.00449955, 0.00496773515, 0.0280248225, 0.00358389574, 0.00575080607, 0.00145738188, 0.00927255303, -0.000468962069, -0.0159348696, -0.0051003187, 0.0178987626, -0.002670313, 0.0118993623, -0.00023655266, 0.00307427812, -0.00565136829, -0.012777728, 0.0255057365, 0.0101012, 0.00163346925, 0.0278425198, -0.00487244083, 0.00651730411, 0.0270801652, -0.0199206602, -0.0055229282, -0.011940795, -0.0363610052, 0.00303906063, 5.05280113e-05, -0.00476471707, -0.00120360893, 0.0269973, -0.0024300057, -0.0213790778, 0.0138964, 0.00494701928, 0.0211470556, -0.0112032993, 0.0286380202, 0.0123219723, 0.00513760792, 0.0154874017, -0.00313849817, -0.0123385452, 0.00576323597, 0.0209150352, -0.00602011615, 0.00912339706, 0.011940795, -0.0114518935, -0.018130783, -0.0198543686, 0.00711392937, 0.00371855078, -0.00295826769, 0.00288990443, -2.29819898e-06, 0.00485172495, -0.00410594279, -0.00168836711, 0.0191417318, 0.00893280841, 0.0113690291, 0.000202629948, 0.0126782898, -0.0217271093, 0.00548978243, 0.00712221581, 0.00703935139, 0.000382472121, -0.0117170606, 0.0128357327, 0.00389670976, 0.0168049484, 0.0177993253, -0.0265001114, -0.00425924268, 0.00488072727, -0.0135069368, -0.00645929854, -0.00118910754, -0.013490364, 0.00734595, -0.00904053263, 0.0262018, -0.00064582628, -0.00651730411, 0.000476989604, 0.0172358453, -0.0121065238, 0.00963715743, -0.000572801859, -0.0254891627, -0.0130180353, 0.0048600114, 0.00130615395, -0.00304113235, -0.0158934388, 0.0204675663, -0.0113938879, 0.00334151671, -0.00299555669, 0.00498845149, 0.012777728, -0.00859306287, -0.0115761906, 0.026566403, -0.00139212597, -0.00700206216, 0.0103663662, 0.0130097484, 0.00175776624, 0.0150565049, -0.0110541433, -0.0106481062, -0.0195394829, -0.0117750652, 0.0148493433, 0.0180810653, -0.00217934, -0.00460313074, 0.00350724603, 0.00595382461, 0.00188102736, 0.00764840655, 0.0120319463, -0.0175010115, 0.0170203969, 0.0160260219, 0.0198709406, 0.0184788145, -0.00322136283, 0.00653802, 0.0227712039, -0.014186427, -0.0100431945, 0.00503817, 0.0235004127, 0.00469428208, -0.00766497944, -0.0145261716, -0.00783070829, 0.000856095343, 0.00594139472, 0.00516246725, 0.0203515552, 0.00456169853, 0.0212299209, 0.00752410945, 0.0230860896, 0.00299762841, -0.00609055115, -0.0152968131, -0.0230032243, -0.0309416577, 0.0155868391, 0.0024880108, -0.0241799019, -0.00221041427, 0.00623970758, -0.00221455749, 0.0163574796, -0.00411422923, -0.00944656879, 0.0180147737, -0.00112074427, 0.00562650897, -0.00203121942, 0.0199206602, -0.00541520445, -0.00344509748, -0.0196554922, -0.0230197981, -0.000113874143, 0.00151435134, -0.0116507681, -0.0117170606, -0.0340739414, -0.0142112859, 0.0170203969, -0.00492630294, 0.0152719533, -0.0226551928, 0.0284391455, -0.0145013118, 0.0354660675, 0.036261566, 0.00374962506, 0.0177330337, 0.0187274087, 0.00406865403, 0.0025253, 0.0245445073, -0.0222408697, 0.00620656181, -0.0138881141, 0.0121645294, 0.00423231162, 0.0228706412, 0.0159845892, 0.00848534, -0.0082036, -0.00427167211, -0.0047771465, 0.00787628442, -0.0133163482, -0.0048973, 0.0276933629, 0.0161088854, -0.0311073866, -0.000877847313, 0.0101592047, 0.0195892, -0.00715536159, 0.00696891639, 0.015595125, -0.0055229282, -0.010250356, 0.0150813647, -0.0121976752, 8.57131163e-05, -0.0119076492, 0.00885823, 0.00950457435, -0.0193737522, 0.0284557175, 0.00567622809, -0.0055353581, -0.0232020989, 0.0161254592, 0.00425924268, -0.013631233, 0.00586267328, -0.0090653915, 0.0343059599, -0.00138176791, -0.00592896529, -0.0150896516, -0.0145013118, -0.00289819087, 0.000461193529, -0.00156821334, 0.00308049307, 0.00524947513, 0.00131029717, -0.0147333331, 0.0101343459, -0.000340262923, 0.00254187291, 0.00506717293, 0.0144101614, 0.0303284582, -0.000526967342, -0.0189760029, 0.0104492316, -0.00901567284, 0.0091896886, 0.0177827515, -0.006393007, -0.0130511811, -0.0039194976, -0.00247350964, 0.00504645659, -0.0136395199, -0.00616927259, -0.0156697035, -0.00822017249, -0.00412873086, 0.00785556808, 0.00882508419, -0.0291352086, -0.00644686911, -0.00854334421, -0.00955429301, -0.0138383955, 0.00120568054, 0.0316045731, 0.0114767523, -0.0206167232, -2.16063072e-05, -0.015039932, 0.0256880391, 0.00236578542, 0.0219922755, -0.018677691, 0.00760283088, 0.0133329211, -0.00163657661, -0.0185119603, 0.00265581184, 0.00265995506, 0.0094299959, 0.000156665963, 0.0199703779, 0.00766912242, 0.0141449943, -0.00762769, -0.0216608178, 0.00260816468, -0.017567303, 0.00261645112, 0.0154459691, -0.0107061118, -0.00374133862, 0.0279253833, 0.00479371939, 0.012926884, -0.00908196438, 0.00292926515, -0.00259366329, 0.0148161976, -0.0153796775, 0.00587924616, 0.0144847389, 0.0123136854, 0.0167883765, -0.00991889741, 0.00349688786, 0.00463627651, -0.00263095228, -0.015031646, -0.00546077965, -0.00408729864, 0.0335270353, 0.00474814372, -0.0252239965, 0.00928084, -0.00581709761, 0.000280445, 0.0110790022, -0.0039775027, 0.00752825243, -0.00122846826, 0.00171736965, 0.00789285731, -0.015876865, -0.00679075718, -0.00846048, 0.0197052117, 0.0152470935, -0.0120402323, 0.00342852459, -0.00831961, -0.0191748776, -0.011509899, 0.0147333331, -0.0024507218, 0.00657530921, 0.013490364, -0.0174512938, -0.012504274, 0.000207420555, -0.000420020137, 0.0246273708, 0.00940513704, -0.0166972261, 0.00815802347, 0.0107972631, 0.00531991, -0.000391535432, -0.0082740346, -0.000669132, 0.00974488165, -0.00104927353, 0.00390085299, 0.00931398571, 0.00881679822, 0.0166060738, -0.00800472405, -0.0101674916, -0.0121148108, 0.00862621, 0.0201361086, -0.015794, 0.0209979, -0.0108386949, 0.000108500892, -0.0118247839, 0.015876865, -0.0164486319, 0.000709528511, 0.00452026632, 0.00271588867, 0.00417016307, 0.00829060748, 0.0163823403, -0.000809484, 0.0135317957, -0.00156407012, -0.0199869517, 0.00882508419, 0.0294500943, -0.0159100108, -0.0110955751, 0.0118579306, 0.00173394266, 0.0152802402, -0.00437111, -0.0062231347, 0.00158582209, 0.00726722879, 0.0105072362, 0.0171861257, -0.00207783096, 0.0307096355, 0.0009166901, -0.00207472336, -0.00830303691, -0.00224356, -0.0117833521, -0.0302787405, -0.0147913387, 0.020384701, -0.00537791522, -0.0138964, -0.0119076492, 0.00185409631, 0.00103632594, -0.0221745782, 0.00331251393, 0.0143770156, 0.00788457, 0.000703831553, 0.0167386569, -0.0210144725, -0.0165232103, 0.00940513704, 0.00617341558, 0.0267818514, -0.0120319463, 7.44487043e-05, -0.00262059434, 0.00865935534, -0.0160094481, 0.0113856019, -0.00283397082, 0.000891830714, 0.00931398571, -0.00704349438, 0.00822431594, -0.0010415049, 0.00200532423, 0.0161668919, -0.0194566175, -0.0168463811, 0.00353832, 0.0167055111, 0.00309292274, 0.00127300806, -0.0131174726, -0.0212464947, -0.0207493063, -0.0113856019, -0.0160923135, 0.00290854881, 0.00129890325, 0.00629771268, 0.00526604801, 0.0295661036, 0.0336098969, -0.0117004877, -0.0184290968, 0.00699791871, 0.0111784404, -0.0225889012, 0.0037247655, 0.0161254592, -0.0168878138, 0.0107392576, -0.0325658023, -0.0166475065, 0.0159265846, 0.00891623553, 0.001299939, -0.00131858361, -0.017981628, 0.00271381694, 0.00949628744, -0.0163409077, 0.00975316856, 0.00819117, -0.0142278587, -0.0166309327, 0.0096703032, 0.00841076113, 0.0118827894, 0.00492215948, -7.8130679e-06, 0.020384701, 0.0168463811, 0.00516246725, 0.012786014, -0.00405000942, 0.00429238845, -0.00197217846, 0.0138301086, -3.82925282e-05, -0.00118600018, 0.0115679037, -0.0284391455, 0.0176833142, -0.0705343857, -0.00293755159, -0.00628114, 0.00633085845, 0.0254228711, 0.00788042694, 0.00846462324, -0.00814145058, 0.0124048367, 0.0133660669, 0.00471085496, -0.000411215791, 0.00305977697, 0.00138798275, -0.0177827515, 0.00823260192, 0.0175507311, -0.003793129, -0.00837761536, -0.00893280841, 0.00425095623, 0.0120319463, -0.00105393468, -0.0110044247, 0.0089991, -0.00918140262, 0.00909853727, 0.0137472441, -0.0334938876, -0.017699888, 0.0184953883, -0.00105600629, -0.0131009, -0.0218928382, -0.00250251219, 0.0107558304, 0.0101923505, -0.0206332952, -0.00493873283, -0.00671203574, -0.00258330512, 0.0132997753, -0.010250356, -0.0225226097, -0.00928912591, 0.00995204318, 0.00118185696, 0.00432139123, 0.00338502065, 0.00270138728, -0.0121893883, 0.0103249345, -0.00544420676, 0.00319028879, 0.00383870443, 0.00606983481, -0.0117750652, -0.0101923505, 0.00389878126, 0.00348031498, -0.00142941508, -0.0125705665, -0.00773955742, -0.00780999241, 0.023334682, 0.0110209975, -0.0100266216, 0.0102835018, 0.00340159354, 0.0212630667, -0.00972002279, -0.0199703779, -0.0055933632, -0.00304734707, -0.00490973, -0.00291269203, 0.00238650176, -0.00676175486, -0.00360046863, 0.0190257207, 0.0224231724, 0.00233471137, 0.00427167211, -0.0198046491, 0.00565136829, 0.00196803524, -0.0184953883, 0.016581215, 0.0213127863, 5.33764833e-05, 0.0240970384, 0.00333115854, -0.00646758545, 0.0170701165, -0.000330681709, 0.0133080613, -0.00318407384, -0.0158105735, 0.000396714458, 0.0234341212, -0.00131236878, 0.00110106391, 0.0123799769, 0.00172151288, 0.0174015742, -0.0209647547, 0.00800058153, -0.0194400456, -6.54177493e-05, 0.0208487436, 0.0283065606, 0.00802129693, 0.0178158972, -0.0156199848, 0.0296655409, -0.00237407186, 0.00770226819, -0.00572594674, 0.00210786937, 0.00286918809, -0.00414323201, -0.0133826397, -0.00133412075, -0.0160011631, 0.00986089185, 0.0057880953, -0.0202189721, -0.00258123362, -0.00994375721, -0.0289031863, 0.00451612286, -0.00251908507, -0.00181577145, 0.00315921451, 0.0151393702, -0.00992718432, -0.00204364932, 0.00785142463, -0.00176190946, 0.0106895389, 0.000453166, -0.00774370087, 0.00219591288, 0.0100680543, -0.0280413944, -0.0124048367, -0.00837347191, -0.00739566935, -0.0238152985, -0.0127445813, 0.000326797424, -0.0115761906, -0.00599525683, 0.018130783, -0.0226054732, -0.0170701165, -0.0117750652, -0.0171695538, 0.000418207492, -0.00425924268, 0.0111784404, -0.00359011046, -0.00384284765, 0.0198377948, 0.00704763783, 0.0135069368, 0.0126865767, 0.00181266398, -0.0125208469, -0.00541520445, -0.0123136854, 0.0217105355, -0.00795914885, -0.00499259448, 0.00160343084, -0.00599111337, 0.00410594279, -0.0146919, 0.0279088113, 0.00217519677, 0.00739566935, 0.00269517256, 0.0161088854, -0.0129766027, -0.012363404, -0.00813316461, 0.000143329933, 0.0252571423, -0.00124814862, 0.000210657454, 0.00487658428, 0.0259034876, -0.0129766027, -0.00794257596, 0.000782552932, -0.00227877754, -0.00505888648, -0.00932227168, -0.00212547812, 0.001915209, 0.0041245874, -0.00476057362, 0.0024175758, -0.0101509187, -0.0182965118, -0.00637229066, -0.00738738291, 0.0225723274, -0.00265374, 0.000423904421, 0.0100017618, -0.0143687287, -0.00322343456, 0.0138383955, 0.0106398202, 0.0106398202, -0.0262349453, 0.0058336705, -0.0205835775, 0.0128688784, 0.0187605545, 0.00611955393, 0.000545870804, 0.0165480692, 0.0232352447, -0.0156282708, 0.010250356, 0.0239644535, 0.00392364059, 0.00520804292, -0.00182095054, 0.00149052776, 0.00175362302, -0.00723822648, -0.00459070131, 0.0219922755, 0.00449126353, 0.0135566555, -0.0103746532, 0.00722579658, 0.0356649421, 0.0030349174, 0.021080764, 0.00444983132, 0.00742052868, 0.016158605, 0.0113441693, -0.0065214471, 0.0112944506, -0.0118164979, -0.00374548184, -0.00631428557, -0.015321672, 0.00672032218, 0.00596625404, -0.00220834278, -0.0315217078, 0.00529919378, -0.0207161605, 0.00903224573, -0.0202686917, -0.0111535806, 0.0108967, -0.00692334073, -0.0101426318, -0.0303781778, 0.016017735, -0.0138549684, 0.00936370436, -0.00972830877, 0.00712635927, -0.0151145104, -0.00816631, 0.00317993062, 6.00121275e-05, -0.00454098219, 0.00880022533, 0.0198046491, -0.0128854513, 0.0069564865, 0.00461970363, -0.0274613425, 2.96176349e-05, 0.00331251393, -0.00369990617, -0.000773748558, -0.00991061144, -0.0138549684, -0.0161006, -0.00171944126, 0.0100349076, 0.00119635824, 0.0128108738, -0.00204882817, -0.0433879271, -0.00365640223, 0.00771055464, -0.0170701165, -0.00330008427, -0.0228209216, 0.0175010115, -0.0240141731, -0.00848119613, 0.00982774608, 0.00317371567, -0.0513760783, -0.0132583426, -0.0163409077, -0.00294790952, -0.0106481062, -0.0154293962, 0.00847290922, -0.0137803899, 0.00525361812, -0.0122805396, -0.00586681673, -0.00628114, -0.0141118485, 0.00389256654, -0.0102006374, 0.000998001, 0.00367504684, -0.0131174726, -0.00122743251, 0.00672446564, -0.0110458564, 0.0273619052, -0.0100680543, -0.0171198342, -0.000692955568, 0.00540277455, -0.000883544213, -0.0112695908, 0.0128937382, -0.00697305938, 0.00460313074, -0.018130783, 0.0061526997, 0.0038511341, -0.0161834639, -0.0188434198, 0.00449126353, -0.0117502064, -0.0142278587, 0.00380555866, -0.0149322087, -0.0103332205, -0.00751167955, 0.0210144725, -0.00612784037, 0.0064054369, 0.00965373, -0.00235335575, 0.022903787, 0.0185119603, 0.0138383955, -0.0300467182, -0.0157774277, 0.0138798272, -0.0182965118, -0.0254560169, 0.0039194976, -0.0118993623, -0.0149653545, -0.00597868394, -0.00429238845, 0.00773127098, 0.00700206216, -0.0210641921, -0.0108967, 0.0198046491, 0.0109961377, 0.00689433794, 0.0873724744, 0.00475228718, 0.00686533563, -0.040205922, -3.57353747e-05, 0.00201257505, -0.00959572569, 0.0492215976, -0.0114850393, 0.0198046491, 0.0052826209, 0.0102420701, -0.00775198732, 0.0147664789, 7.74266518e-05, -0.00997690298, 0.00746610435, 0.000696063, -0.0258703418, -0.0167718027, 0.00110417139, -0.0211636294, 0.0200035237, -0.0188102741, 0.0103249345, 0.00822431594, -0.0297318324, -0.0116176223, -0.0150979375, 0.00578395184, -0.0126948627, 0.00746610435, 0.00303077418, -0.0123136854, -0.0122888265, 0.00192556705, 0.0231523812, -0.018412523, 0.00409558509, -0.00912339706, 0.0312896892, 0.0225723274, 0.00897424, -0.00786799751, -0.0012440054, -0.00018463278, -0.00952943414, -0.0063350019, 0.00157960725, -0.0114684664, 0.00493873283, -0.0108884135, 0.00481443573, -0.0146007501, 0.00872564688, 0.00213583605, 0.0359301083, 0.00545249321, 0.00843147747, 0.0208653174, 0.00592482183, 2.87436724e-05, -0.0111701535, 0.0107724033, 0.00745367445, -0.0342396684, -0.00839004479, 0.0142610045, -0.00626042346, 0.00522875879, 0.014468166, -0.00650487421, 0.010391226, -0.00388842332, 0.00129061681, 0.00556850387, -0.023616422, 0.00790114328, 0.00365640223, -0.00971173588, -0.021909412, 0.000494339387, -0.0159763023, -0.0112861637, -0.00941342302, -0.0110127106, -0.00692334073, 0.00411215797, -0.00616512913, 0.00911511, -0.00744124455, 0.0117419194, -0.00981117319, 0.00942171, 0.00305977697, 0.0186445434, -0.0170701165, 0.0103083616, -0.00789285731, -0.0114767523, -0.0114104608, 0.00863449555, -0.00476886, -0.0369907767, -0.00839004479, 0.0289694779, 0.00165418535, 0.0174844395, 0.00806273, 0.00369161973, 0.00875879265, 0.000281480839, -0.0142858643, 0.0224231724, 0.00382213155, 0.0125788525, -0.00297691231, 0.0104077989, 0.0274944883, -0.00169147446, 0.00464042, 0.00175258715, -0.0113441693, 0.0177330337, 0.00354453502, -0.00592067838, 0.017567303, 0.00984431896, 0.0308090728, -0.0165480692, 0.00261645112, -0.0036108268, -0.00873393286, 0.0152802402, 0.0148493433, 0.0229203589, 0.00241550431, -0.004284102, 0.0179982, 0.00467356574, -0.0140787028, -0.0115596177, -0.000300902233, 0.0151476562, 0.00616098614, -0.000711600122, 0.0187771283, -0.00452855276, 0.0318863131, 0.0142195728, 0.00383456121, -0.000770123268, -0.0160508808, -0.0105901007, 0.0132003371, 0.0237490069, -0.0146256089, -0.0264338199, -0.00699377572, -0.00309706596, -0.00335601787, -0.0010021443, 0.0142361457, 0.0114601795, -5.88468429e-05, -0.023185527, 0.0160591677, -0.0132417697, 0.00779756252, 0.00125850679, 0.0125539927, 0.014609036, -0.00348652969, -0.00211097673, -0.000551567762, 0.0116176223, -0.017699888, -0.0239976, 0.00096019404, -0.0154708289, -0.00586267328, 0.0177330337, 0.0115430448, 0.0429238826, -0.00508374581, 0.010258643, 0.012645144, -0.0011694273, 0.00404793769, -0.0109132733, -0.0125539927, 0.0201526806, -0.00284225727, 0.000649969501, -0.0131671913, -0.00894109439, 0.00973659568, 0.00108759839, 0.00851019844, -0.00753239589, 0.0175507311, -0.0174678657, -0.000917725905, -0.0133992126, -0.0173352826, 0.0112778777, 0.0112198722, 0.00914825592, -0.00191728061, -0.000848844647, 0.00935541838]
|
28 Feb, 2019
|
Step by step guide to make your first WordPress Plugin
28 Feb, 2019
Plugin in WordPress is a component to add or extend functionality that can be enabled or disabled as required and makes no interference with the core program/software and its code. WordPress is designed to be lightweight and smooth to increase the flexibility and reduce code that might not be important for basic website functions. Plugins then add custom features and functionalities that allow users to design the site as their specific requirements.
In this guide, you will learn how to develop your first WordPress plugin.
Prerequisites:
A WordPress Installation
Basic Knowledge of PHP
Steps to make a plugin –
Goto the WordPress Installation -> WordPress/wp-content/plugins.
Make a new folder here and name it as the “Plugin Name” in this case First-Plugin
Next, make a new PHP file in this folder and name it same as the folder in this case First-Plugin.php
Now, we add the name of our plugin. Add Plugin Name enclosed in a PHP comment in the file.
Code of PHP file First-Plugin.php –
<?php
/**
* Plugin Name: First Plugin
**/
?>
Now, Goto the WordPress Dashboard->Plugins, Here you can see our newly created plugin and its name.
We should not leave the description blank as it helps the user know what is plugin meant to do. so let’s add the description of our plugin by adding a new comment line after “Plugin Name:” with the title “Description” and save it. Code of PHP file First-Plugin.php –
<?php
/**
* Plugin Name: First Plugin
* Description: This is my first Plugin.
**/
?>
We Successfully added Description of our plugin now go to Dashboard->plugin to see how it looks like.
Next, we add some functionality to our first Plugin. We will add a basic function named first_plugin() which prints “HELLO This is my first Plugin.” and its shortcode which allows this to be placed on a WordPress post or a Page.
Code –
<?php
/**
* Plugin Name: First Plugin
* Description: This is my first Plugin.
**/
function First_Plugin()
{
$content="HELLO This is my first Plugin.";
return $content;
}
add_shortcode('myplugin', 'First_Plugin')
?>
To display this function output value we are using the shortcode feature of WordPress. Go to Posts->edit or create a new post. There add the shortcode for the Plugin we just made.
Shortcode – [myplugin]
To see the plugin output, browse the website and open the post in which we added the shortcode of our plugin.
Here is how it looks like-
Now, To have this plugin functionality used multiple times we can use this shortcode multiple times. Just add the shortcode wherever we need this output.
Check the post for updated output here we get two same sentences because we used the shortcode two times in this post.
Now we have our Plugin which returns a value and this can be used wherever we want by the use of Shortcode.
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?/How to design datalists for mobiles using jQuery EasyUI Mobile ?/How to design menu using jQuery EasyUI Mobile ?/EasyUI jQuery menu widget/EasyUI jQuery datebox widget/How to make use of multi-mode jtsage-datebox plugin?/Step by step guide to make your first WordPress Plugin
|
https://www.geeksforgeeks.org/step-by-step-guide-to-make-your-first-wordpress-plugin?ref=asr10
|
CSS
|
Step by step guide to make your first WordPress Plugin
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, How to design menu using jQuery EasyUI Mobile ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, Step by step guide to make your first WordPress Plugin, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, EasyUI jQuery datebox widget, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, EasyUI jQuery menu widget, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, How to make use of multi-mode jtsage-datebox plugin?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, How to design datalists for mobiles using jQuery EasyUI Mobile ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.00935277157, 0.000908137416, -0.00307690771, -0.011877249, 0.0396208055, 0.00901232, 0.00585511746, 0.017960405, 0.00269952067, 0.0444256626, -0.00425563939, 0.0189367924, -0.000375379517, -0.039184, 0.0265423432, 0.00533480523, -0.0170354042, -0.00950051472, -0.00834426563, 0.0219044983, 0.00792030711, 0.00360685517, -0.0260284543, 0.00934634823, -0.00899947342, 0.0270305369, -0.0232791509, 0.0184999872, 0.0203885287, 0.0108430479, 0.0293173417, -0.00817725156, -0.0113762077, 0.0172152668, -0.0110614505, -0.0150954761, -0.00176006823, -0.0176777653, -0.0407513604, -0.00819652248, 0.0320152566, -0.00727152266, -0.0143888788, -0.0414194167, 0.00510997931, 0.0284951199, -0.011877249, -0.0370256677, 0.0071366271, -0.00856266823, 0.00954548, -0.00800381415, 0.0872068852, 0.0465326086, -0.00450937217, 0.0160590168, 0.026824981, -0.0266451202, -0.0135538103, 0.011299124, 0.0284694247, -0.022187138, 0.00245863548, 0.0118708257, -0.0114789857, 0.0307305343, -0.0287006758, 0.0115239508, -0.000937043631, 0.0292659532, -0.00812586211, -0.0103805484, -0.0292145628, 0.0104255136, 0.00747065479, -0.0128343664, 0.0457103848, 0.034661781, -0.00147421774, 0.0356895588, -0.00459930254, -0.0391326137, -0.0180888772, -0.00180663937, -0.0210180413, 0.0236131791, 0.000513085572, -0.0462242737, 0.04062289, 0.000722655735, -0.0392867774, 0.00187248131, 0.00241848803, 0.0396721959, -0.0020073771, 0.0163545031, 0.0151725588, 0.0190395713, -0.00570416264, 0.0447853878, 0.00355867809, 0.0201315843, -0.00811943877, -0.03592081, -0.0227267202, -0.00318450294, 0.0584805161, 0.0023269516, 0.00675121089, -0.0400062241, -0.00223862706, -0.0225083176, -0.00208767224, -0.0097510349, 0.00720086321, 0.0251034554, -0.0181145705, -0.0537013523, 0.0148385316, 0.0210822765, 0.027570121, 0.010907284, 0.00947481953, 0.04614719, -0.0107145756, 0.0145045044, -0.024229845, -0.021570472, 0.00301909517, 0.0312958136, 0.0109329782, -0.0247437339, -0.0059322007, 0.0419846922, 0.037590947, -0.00607673218, -0.0276215095, 0.0152753368, 0.0164315868, 0.0284180362, -0.0315527581, -0.0149798505, 0.0165472105, -0.0171895716, -0.00831214711, 0.0118515547, -0.0149413096, 0.0118836723, 0.00856909156, 0.00294843549, -0.0435777493, 0.0164187383, 0.00867829286, 0.0088581536, 0.00184678694, -0.0246794969, -0.014722907, 0.017652072, 7.35201902e-05, -0.00972534064, 0.00471492717, -0.0246666502, 0.0290860906, 0.00216475548, -0.0012991745, 0.00956475083, 0.0210822765, -0.00467638578, -0.0381305292, 0.0238829702, 0.00768263359, -0.025321858, -0.00319253257, 0.0256687328, -0.0741541162, -0.0285208132, 0.0118001653, -0.0278270636, 0.0241142195, 0.00493975356, -0.004217098, 0.00502968393, 0.0164829753, -0.019836098, -0.000378992787, 0.0245767199, 0.0130848866, -0.00118836726, -0.0072458284, -0.00544721866, -0.0122562414, -0.0332228951, 0.011196347, 0.0255531073, 0.0182558913, -0.0123590194, -0.0053605, 0.0532902405, 0.0278270636, 0.0181788076, -0.0145301986, -0.0114211729, -0.0162517242, 0.0390812233, -0.00377386902, 0.0232149139, 0.032991644, 0.0330173373, 0.0262725521, -0.00672551617, 0.00178576272, -0.0176392235, -0.0152624892, -0.0260284543, 0.00982811861, -0.0123012066, -0.0491534397, 0.0135152685, -0.00678332895, -0.0204656105, -0.00711735617, 0.00313793193, 0.0185513757, -0.0112091936, -0.029445814, -0.0359721966, 0.0263624825, -0.0265680384, 0.0087618, 0.0269791484, 0.0402117781, 0.00405008392, -0.00526735745, 0.0376166403, 0.0197461676, 0.0139649212, 0.0331201181, -0.0132968659, -0.0486652441, 0.0441944152, 0.0122433947, 0.0102135343, 0.0151597122, 0.0112798531, -0.0179732516, 0.023857275, -0.00445477106, 0.00489478838, 0.00736787682, 0.000395453302, 0.00627907552, 0.0194378346, 0.0301909521, 0.0386958085, -0.00186124, 0.0269791484, 0.0266965088, -0.0119671794, 0.0289062299, 0.0352527536, -0.00045888641, -0.0023237397, -0.0191295017, -0.0157892257, -0.00252608326, -0.00394409476, 0.0195149165, -0.0273131765, -0.0131812412, -0.00750277285, 0.0756957829, -0.00284726359, 0.0372569188, 0.020414222, 0.0232919976, 0.00235906965, -0.00228519808, 0.0291888695, -0.00345911225, 0.0547805168, 0.0646471754, -0.0258871354, 0.045222193, 0.0417020544, -0.0204656105, -0.0365374759, -0.0309617855, 0.00766336266, -0.0163416564, 0.0486395508, -0.021403458, -0.00576839875, 0.0277499817, -0.0129821096, 0.0535471849, 0.0165215172, 0.00131121872, -0.0063240407, -0.0288034528, 0.019938875, -0.0179475565, -0.0102135343, -0.0161104053, 0.0110742981, -0.0115432218, 0.0593027361, -0.0072458284, -0.0246923435, -0.0372312255, -0.00603819033, 0.0548319072, -0.0106567638, -0.00365824415, -0.026516648, -0.0085433973, 0.0118387071, 0.0470721908, 0.00808732118, -0.00548576, -0.0557055175, -0.0164444335, -0.0347131714, -0.00513567356, 0.0186926965, 0.0269277599, -0.000913758064, 0.0186541546, -0.0311930347, -0.0057362807, -0.0332999788, -0.00445798319, -0.0348416418, 0.0246281084, 0.00131924823, -0.0303451177, -0.0205555409, -0.0278527588, 0.0190909598, 0.0149670038, 0.0129371444, -0.0180888772, -0.00133932196, -0.0182815846, -0.0169454738, 0.0317840055, -0.0309874788, 0.0129050259, -0.0124104079, 0.00400511874, -0.00992447231, 0.000865581038, -0.0181788076, 0.0285208132, -0.0213649161, -0.000496625085, 0.0164572801, 0.0195534583, 0.0052191806, -0.0287520643, 0.022187138, 0.000256542786, -0.00163239904, 0.0176777653, 0.0159819331, 0.0235489421, -0.0551916286, 0.00701457867, -0.0207996387, 0.036023587, -0.0366659462, -0.0217503328, 0.0310645625, 0.00258229, -0.0673707873, -0.0435520522, 0.0196690839, -0.0271590091, -0.0172281135, -0.0330173373, 0.032169424, -0.000506662, 0.0275958143, -0.00182109256, 0.0462242737, 0.0162131842, -0.048331216, -0.00811943877, -0.019155195, 0.0372826122, -0.0362034477, -0.0175364465, 0.0372055285, -0.0334284492, -0.0224440824, -0.029651368, -0.0176263768, -0.0339423381, -0.0401346944, 0.0245767199, 0.0252319276, 0.0140548516, -0.00236870488, -0.0214548465, -0.00135538098, -0.0487166345, -0.0223156102, 0.0272360928, -0.00810659211, 0.00317647355, 0.00468280911, 0.00350086577, 0.00844061933, -0.0423187204, 0.025257621, 0.045941636, 0.0192965139, -0.0511319116, 0.0535471849, -0.0138621433, 0.0300367847, 0.0187569316, 0.00439374708, 0.0011562492, 0.00200095354, -0.0324263684, 0.0175364465, -0.0335569233, -0.00465069106, 0.00284886966, -0.000849522, -0.0265680384, -0.0367687233, -0.014042004, -0.000265776733, 0.00605103746, -0.0133354077, 0.0189624876, -0.00842134841, 0.00107756, 0.0396208055, -0.00548576, -0.032888867, 0.00741926581, 0.0197204724, -0.0619749576, -0.0214805417, -0.0409312211, 0.0274159536, 0.00831214711, -0.0185899176, -0.0484853834, -0.0347131714, -0.0663943961, -0.00505859032, 0.0167270713, -0.0104897497, -0.0449138582, 0.0262340102, 0.022598248, -0.0574013516, 0.000425563951, -0.0208253339, 0.0118515547, 0.0174465161, 0.00641397154, -0.0261569265, -0.0318610892, -0.000123955542, 0.0261569265, 0.0205812361, -0.00440017041, 0.00137625774, 0.0435520522, -0.00132406596, 0.0285978969, 0.003510501, -0.0379763618, -0.0212749857, 0.0214676932, -0.00859478582, -0.0126737757, 0.0729207844, -0.011485409, 0.0123140542, 0.0239472054, 0.0216090139, 0.0126159638, -0.00352334836, 0.0222256798, 0.0240499843, -0.012269089, -0.00732291164, -0.0167142246, -0.00565598579, 0.00540225348, -0.0126095405, -0.0246666502, -0.00609279098, 0.0281867869, -0.00993732, -0.0343791433, 0.013836449, -0.0167142246, 0.0287777577, -0.00933992397, 0.0243711639, -0.0338652544, -0.0595082939, -0.00950693805, 0.0549860746, 0.00373853906, 0.0419333056, -0.0485624671, 0.0130591923, -0.0318867825, 0.0247951224, -0.00598680135, 0.0257586632, -0.00414643809, 0.00142202596, 0.00831214711, -0.0142347123, -0.00850485545, -0.0234333184, -0.00722655747, 0.00601570774, 0.0235746372, -0.03674303, 0.00363254966, -0.0292916466, -0.0033177929, 0.0159690864, 0.0267735925, 0.00415286189, -0.0190524179, 0.00871683471, 0.00191262888, 0.0375395566, -0.00332421646, 0.0165215172, -0.0397492796, -0.0176906139, -0.0510805212, -0.0105796801, -0.026516648, 0.00751562, -0.0150954761, -0.0283152591, -0.00608315552, -0.00789461285, -0.0157506838, 0.00416570902, 0.00899304915, 0.0124617973, 0.000138308285, 0.0256687328, 0.00638827682, -0.0377451144, -0.0112670064, -0.0216347072, 0.0134638799, -0.0262982454, 0.0202086661, -0.0253604, 0.0176906139, 0.0106760347, -0.0132069355, -0.0335569233, 0.0310645625, -0.000147843326, -0.00167334953, -0.013733671, -0.00145173515, 0.00583905866, -0.00870398711, 0.0333513655, 0.0225211661, -0.0322722, -0.0059322007, -0.0157506838, 0.00993089564, 0.0113697844, -0.0158277676, -0.00334027549, -0.00666128, 0.0061345445, -0.00122690888, 0.00933992397, -0.045941636, -0.0133225601, 0.00447725412, 0.0237673447, 0.00781110581, 0.019630542, -0.0311930347, 0.00598037802, 0.0111321108, 0.0142347123, -0.0301395636, 0.00856266823, -0.0106374929, -0.00337560545, 0.0079331547, 0.0260284543, -0.00912152138, -0.0291631743, 0.0319895633, -0.0358180329, 0.0101492982, 0.00517100329, -0.0454791375, -0.0164572801, 0.0225854013, -0.0270048436, -0.017382279, -0.0288805366, -0.00747065479, 0.0148513792, -0.0043198755, -0.0190267228, 0.00920502841, 0.0102841947, 0.0142347123, -0.0131170051, -0.00145494693, 0.0133097135, -0.0041303793, 0.0189881809, -0.0112927007, -0.0516714938, 0.00980242435, -0.0143117961, -0.0110807214, -0.0178704746, -0.00731648831, 0.000359721977, 0.00372569193, 0.0054151006, -0.0111449575, -0.00926926453, -0.0246666502, -0.00769548072, 0.00926926453, 0.135461017, -0.0151597122, 0.0145301986, 0.0195534583, 0.00155451288, 0.0339166448, -0.0109586734, 0.0152239483, -0.0346360877, 0.0108880131, 0.0124553731, -0.0200930424, 0.0175236, -0.020786792, -0.0183586683, 0.00104383612, 0.00608315552, 0.00396978902, -0.0230607484, 0.0388756692, -0.0274673421, 0.00159064564, -0.0198104028, 0.0184229035, -0.00605424959, 0.0104769031, 0.00395694189, -0.00736787682, -0.040109, 0.00776614062, 0.0155194337, -0.00571058644, -0.039184, 0.00675121089, 0.0410339981, 0.0207354035, 0.00687325932, -0.0198489446, -0.0228680409, 0.0187569316, 0.0559110716, -0.00836353563, 0.0194378346, -0.0108109303, -0.0240371358, -0.026516648, 0.00559496135, -0.0132454773, -0.0238187332, 0.0491277426, 0.0203756802, 0.0242555384, 0.000182771691, 0.00654565543, -0.0103355832, -0.0123012066, 0.031424284, 0.0169454738, -0.00626301672, -0.0195663068, -0.0103612775, 0.0153524205, 0.0197718609, -0.0130848866, 0.0131491227, -0.0218531098, -0.0114211729, 0.0267479, 0.0175107513, -0.0228680409, 0.0213649161, 0.00842134841, 0.0327090062, 0.0195791535, -0.0173694324, -0.0169840157, 0.0248722062, -0.0141062401, 0.000316964841, -0.023754498, -0.0238187332, 0.0398263633, -0.0104319369, -0.00486588199, 0.00851127878, 0.0116010336, -0.0169583224, -0.0157506838, -0.000670062494, 0.0119157908, -0.00759270322, -0.00424600393, -0.0122626657, -0.000480566086, 0.011093569, -0.032991644, -0.00589044718, 0.00951336138, -0.00158743386, -0.0340194218, 0.00700173154, -0.0399548337, -0.00102858, 0.0197461676, 0.0275958143, -0.00813871, 0.00717516895, -0.00929495879, -0.0154937394, 0.016084712, -0.00179218629, 0.0224312339, -0.00161714305, -0.0232406091, 0.0288034528, 0.00197044131, -0.0125645744, 0.00573949283, -0.0088581536, 0.00594183616, -0.0130334981, 0.00514852069, -0.011980027, -0.0037096329, -0.0140676992, 0.0144531149, -0.00933350064, -0.000736707414, 0.021403458, 0.00736145349, 0.0191423483, 0.00427812198, -0.0290090088, 0.0192579739, -0.04614719, -0.0201701261, -0.00125982985, 0.00971249305, -0.0345846973, -0.0139649212, -0.0199774168, 0.0294972025, -0.00186926953, 0.00207803678, 0.00344947679, 0.0151854064, -0.0236774143, 0.031115951, 0.0261954684, 0.00558211422, 0.0127765536, 0.0347388647, -0.0388499722, 0.0253732465, 0.00551145477, -0.0198617913, -0.0280069262, 0.023446165, -0.0147100594, -0.0100593679, 0.00581978774, -0.00506822579, -0.0118900957, -0.0344048366, 0.0134510323, -0.022662485, 0.00735502969, 0.0118644014, -0.0217760261, -0.0417277478, 0.0113440892, 0.0229451228, 0.0230093598, 0.033839561, -0.0071366271, -0.0234333184, 0.039980527, -0.0156350583, -0.0209538061, 0.0151083227, 0.0153652672, 0.00163159613, 0.00793957803, 0.0153524205, -0.0128215188, -0.00550824264, 0.0129628386, 0.00566562125, -0.0196433887, 0.00735502969, 0.0360492803, -0.0109329782, 0.0294715073, 0.0183201265, 0.00878107082, 0.0394409448, 0.0169197805, -0.031013174, -0.0223669987, 0.00298537128, -0.0463784412, -0.0275958143, -1.43778389e-05, -0.00946197286, 0.0376166403, 0.0177034605, 0.00989877805, 0.0298826192, -0.0158020724, -0.00743211294, -0.00480806967, 0.0258999821, 0.024473941, -0.0134124905, 0.0012469826, 0.0398006663, 0.00795884896, 0.0181788076, -0.011774471, -0.00736145349, 0.0260798428, 0.037590947, -0.0115753394, -0.0321951173, 0.0096546812, -0.0323492847, -0.0144916568, 0.020414222, -0.00596110709, -0.0121277692, 0.00616666256, -0.0122112762, -0.00314596132, -0.00465711486, -0.0202729031, 0.00716232136, 0.000997265, 0.0186541546, -0.0185128339, 0.0148642259, 0.0112477355, -0.0228166506, 0.00632082904, -0.0127701303, 0.0135666579, 0.00964825694, -0.00305281905, 0.00104062434, -0.0374624729, 0.0236388724, -0.033736784, 0.0298055355, 0.00652317284, -0.00200095354, -0.0146072814, -0.0344819203, 0.00797169562, 0.0120057212, 0.0235360954, 0.0188725572, 0.0343277529, 0.0156479068, -0.014620129, 0.0257843584, 0.0143760322, -0.0111834994, 0.0102906181, -0.0360749774, -0.00766336266, -0.0124874916, -0.0467381626, 0.0260669962, -0.021197902, 0.0358180329, -0.0153010311, 0.0670110658, 0.00917933416, 0.0249235947, 0.00795884896, -0.0119093666, 0.000485383789, -0.0282638706, -0.00437447615, -0.000631520816, 0.00834426563, 0.00845346693, -0.0166628361, -0.00115544628, 0.0110486038, 0.0150183924, 0.0168426968, 0.00679617608, 0.00516779162, -0.0254760236, 0.0189881809, -0.0427812226, 0.0169069339, 0.00122289418, 0.0299853962, -0.0400576107, -0.00772117544, -0.0163801964, -0.0463013574, -0.0113312425, 0.0216732491, -0.0251548439, -0.0201701261, -0.0159562398, -0.0102713471, 0.0166242942, -0.0362291411, -0.0183586683, -0.0148513792, -0.00186605775, -0.000896093145, 0.0191166531, -0.0150183924, 0.0339937285, -0.0197590142, 0.0332485884, 0.00315720262, 0.0475346893, -0.000247710326, -0.0202215146, -0.0205555409, 0.0279555358, 0.00319895614, -0.00995016657, -0.0237031095, 0.0304478966, -0.00710450904, 0.0147100594, 0.00433914643, -0.0347388647, -0.000581737899, 0.00253732456, -0.000834265898, 0.0186027642, 0.00389270578, -0.0166756827, 0.00401796587, -0.00963541, -0.0422673337, 0.00830572378, -0.0269791484, -0.00803593174, -0.0209409576, -0.00151275937, 0.00746423099, -0.000276014354, -0.0195149165, -0.0011072692, 0.00510997931, 0.0161104053, -0.000946679036, -0.00364539679, -0.0133097135, 0.00867186952, -0.0370770581, -0.0116203045, -0.00226110965, 0.0256430376, 0.059097182, -0.0014613705, -0.00766336266, -0.000439214113, -0.00016560861, -0.00588402385, -0.0229451228, -0.00181788066, -0.00726509932, 0.0149670038, 0.00719443941, -0.00799739081, 0.0154808927, -0.000436002301, 0.00336597, 0.0209666528, 0.0102006877, 0.00669339811, -0.0034269942, -0.00797812, 0.00119719969, 0.0305506736, -0.0208381806, 0.0146715175, -0.0260541495, 0.00573306903, 0.00302551873, -0.0174079742, 0.00267703808, -0.00263367873, -0.0257458165, 0.00315880869, -0.0440659411, 0.0426270552, 0.0186926965, 0.026105538, 0.0108558955, -0.0296770632, -0.0120249921, -0.0251419973, 0.0118258605, -0.025013525, -0.0143631846, -0.0336597, -0.00590329478, -0.00622768654, -0.000578526058, -0.00867829286, 0.00374496263, 0.00036433895, 0.0364603922, -0.000139412339, -0.0142861018, -0.0141576296, 0.0284180362, 0.00101332401, 0.000250319921, -0.00738072395, 0.00118756434, 0.0164572801, 0.0166499894, 0.010721, -0.0155836698, 0.0053605, -0.0157378372, 0.0192836672, 0.0229322761, -4.73991931e-05, -0.0254503302, -0.000952299684, -0.0041303793, -0.00378350448, -0.00158261613, 0.0106696105, -0.0169840157, 0.00359400804, 0.0144274207, 0.0132069355, 0.0363319181, -0.0381305292, -0.0414194167, 0.000241085989, -0.000588161522, -0.0149541562, -0.026413871, -0.0243454687, 0.00121807645, -0.000196923691, 0.0171510298, 0.0184999872, 0.00412074383, 0.030704841, 0.0400576107, 0.0182173494, -0.0154423509, 0.0132197831, 0.0177420024, -0.000843098387, -0.0192065835, 0.016393045, 0.00973818824, -0.0190909598, -0.0106567638, 0.00765051553, -0.00293237646, 0.00629192265, -0.00730364071, 0.0123782903, 0.012744436, 0.00998228509, 0.00585832959, 0.00426527485, -0.0393124744, -0.0188725572, 0.00738072395, -0.00799096655, 0.0300110914, 0.00134494272, -0.0010695305, -0.00917933416, -0.0295228958, 0.00573306903, 0.0228038039, -0.00272842706, 0.0290860906, -0.010598951, -0.000187589394, 0.0188725572, 0.00335633452, 0.0317840055, -0.0181017239, 0.0234847069, -0.0041239555, -0.0114661381, 0.0210437365, 0.0101814168, 0.00122610596, -0.00127588888, 0.00366145582, -0.0263624825, -0.0129307201, 0.00738714775, 0.0052416632, -0.00183072791, -0.0283666477, -0.00645572459, 0.00853697304, -0.00324552739, -0.0166499894, 0.00238637, -0.00819652248, -0.00578445802, -0.00829287618, -0.00544721866, 0.0288805366, -0.00908297952, -0.0060189194, 0.0138878375, -0.00906370953, 0.00158101018, 0.0181274191, 0.0118130129, 0.0106374929, 0.0154166566, -0.0161232539, -0.00433593476, 0.0111578051, -0.0237930398, 0.00414322643, 0.00800381415, 0.00139954337, -0.0210565832, -0.0276215095, 0.0248336643, -0.0104319369, 0.0251419973, -0.0117616244, -0.00790103618, -0.0151211703, 0.00356510165, -0.021570472, -0.00553714903, -0.00267382641, -0.00615060329, 0.0188597087, 0.0105025973, 0.0135923522, -0.035278447, 0.00590329478, 0.0214291513, -0.00559496135, 0.0124296788, 0.0165086687, 0.0145301986, -0.00820294581, 0.00118836726, 0.000189897881, 0.0245638713, 0.00982811861, 0.0120956516, -0.0235746372, 0.000996462, 0.00248914771, 0.0070274258, -0.0258614402, 0.0170996413, -0.00278623938, -0.020414222, 0.0109779444, 0.0136822825, 0.0249749832, 0.00951978564, 0.0185385291, 0.0251933858, 0.000640353304, -0.0196048487, -0.0143760322, -0.0189881809, 0.00359400804, 0.0328117833, -0.00775971683, 0.0411367789, -0.00525451032, 0.0352527536, 0.0198104028, -0.0182173494, -0.0399291404, -0.0118451305, -0.00736787682, 0.0319381729, 0.0155322812, 0.016560059, -0.0106567638, -0.00682187034, -0.00996301416, 0.00858193822, -0.012949991, 0.0327603929, -0.0127829779, 0.020311445, -0.0102392295, 0.00770832831, 0.00394730642, -0.00673194, 0.0325548388, 0.0284180362, 0.00895450823, 0.015776379, 0.00602855487, 0.0104704788, -0.00604461413, 0.0121727344, -0.00871041, 0.00086879282, -0.0112091936, -0.00369036198, -0.0134253381, 0.0115432218, 0.000887260656, -0.0247565806, 0.0110293329, 0.0225597061, 0.0256815795, 0.0181017239, 0.00842134841, -0.0337624773, -0.0218017213, -0.0279041473, 0.0376166403, 0.00798454322, -0.0103741251, 0.0263881758, 0.00196241192, 0.0039119767, -0.0143246427, 0.010785236, 0.0029388, 0.0124104079, -0.025630191, -0.0228038039, -0.00827360526, 0.0236260258, -0.00365182036, -0.00554678449, 0.00293398229, -0.0105411382, -0.003510501, 0.00539904134, -0.00244418229, -0.0115175266, 0.0121470401, 0.0373596959, -0.0203756802, -0.00370320934, -0.0102841947, 0.0175749883, -0.00619556895, -0.00610563811, -0.0184999872, -0.00264331419, 0.0220201239, 0.00405650772, -0.00553393736, 0.0102841947, -0.0072522522, 0.00528341671, 0.0200801939, 0.00900589675, 0.0218659565, 0.0125517277, 0.0207097083, 0.00434235809, 0.0162645727, 0.00485303486, -0.00835068896, -0.00408862578, 0.0190781113, -0.0153781148, -0.00340772327, 0.0204399172, 0.00366466772, 0.0255402606, -0.0267479, 0.0204784591, 0.00591935357, -0.0334798396, 0.0313472, -0.0058776, -0.0022000852, -0.0209923461, -0.0317326188, 0.00357473711, 0.0034045116, 0.00732291164, -0.00588723551, -0.00667412719, 0.0020041652, -0.000100820514, 0.0077532935, -0.0152881844, -0.0165472105, 0.0124682207, -0.0143374903, 0.00678332895, 0.0181017239, 0.00599643681, 0.006433242, 0.0396721959, 0.00188854034, -0.0216989443, 0.000562868547, -0.0294715073, -0.0136694349, 0.0229194295, -0.0177034605, -0.0217374861, -0.0176392235, 0.0260541495, 0.00253732456, 0.0128986025, 0.0122562414, -0.00707881479, -0.00479843421, 0.0174722113, 0.0249364413, 0.0127829779, -5.6357112e-05, 0.024640955, -0.00600928394, -0.00466996199, -0.0262468569, -0.000208767218, 0.00346553582, -0.0231635254, 0.014414574, 0.00880676508, 0.0148770735, 0.00285529322, -0.0278527588, -0.0141961705, 0.00741284201, 0.0202086661, 0.0258228984, 0.00872325804, -0.0100465212, 0.0219301935, -0.0081515573, 0.0105411382, -0.00337239355, 0.0189624876, 0.000981206, -0.00842134841, -0.00877464656, 0.00734218257, -0.00387343485, 0.020619778, 0.0183201265, -0.00772117544, -0.0184742939, 0.0185770709, 0.0105282916, 0.000751963467, -0.0180503353, -0.0209281109, -0.00640754774, -0.0359978937, -0.00696961349, 0.00145414402, 0.0226110965, -0.00790745951, 0.0187055431, -0.0206069313, 0.017279502, -0.0163416564, 0.0378478914, -0.000236669759, 0.0124168321, -0.04219025, 0.00406935485, 0.00160509872, 0.0100593679, 0.00373853906, -0.0037128448, -0.0267735925, -0.0130399214, 0.0092499936, 0.000196823326, 0.0144531149, -0.023857275, -0.00951978564, 0.0229965113, -0.00223702099, -0.0225083176, -0.00440980587, 0.00218402641, -0.00678975228, -0.00113376661, -0.0176649187, 0.00219205581, 0.0163545031, -0.0107145756, -0.0159690864, 0.00404366059, -0.010001556, -0.0176649187, 0.0391326137, 0.00737430062, 0.0170996413, 0.014144782, 0.00295807095, -0.0173051972, -0.00226592738, 0.0264395662, -0.00736787682, -0.00804877933, 0.00861405674, -0.0313728936, -0.0151211703, -0.0479201078, -0.0163159613, 0.0120571097, -0.00636900589, -0.00565277413, -0.00606067292, 0.0218531098, -0.00384774036, -0.000557247899, 0.00525129866, 0.000862369197, 0.00576839875, 0.00527056912, -0.0120506864, 0.00444192393, 9.52500413e-05, -0.014620129, 0.0151211703, -0.00971891731, 0.00909582712, -0.00711735617, -0.0105475625, 0.00621483941, 0.0102520762, 0.00444192393, -0.00233176933, 0.0206454713, 0.0127508594, -0.0186798479, -0.0142347123, -0.00356189, -0.00638827682, -0.0058294232, 0.000712618872, 0.0222256798, 0.036845807, -0.0319124795, -0.0108109303, 0.019630542, -0.0066420096, 0.00933350064, 0.0133225601, -0.0121277692, -0.000758788548, -0.00782395341, -0.025797205, -0.00228359224, 0.0047341981, 0.0122048529, -0.0130656166, -0.00413680263, -0.0052191806, 0.00523845153, -0.00392482383, -0.0105861044, -0.0156479068, -0.0239600539, 0.00761197414, 0.0171381831, -0.0251805391, 0.00865902193, -0.0150697818, -0.024538178, -0.00580694061, -0.00743853673, 0.00200577127, -0.0109329782, 0.00414643809, -0.00489157671, -0.0251805391, 0.0059386245, -0.0140933935, -0.00666770386, 0.0196819305, 0.0306277573, 0.0164572801, 0.00168780272, -0.0140034631, 0.0135666579, -0.0149156153, 0.00577161089, -0.0114532905, -0.0164187383, -0.00951336138, 0.0111642284, 0.00222256803, -0.0102841947, 0.0315784514, -0.00510355551, -0.00589044718, 0.00528341671, -0.0172281135, 0.00896093156, 0.0103741251, -0.0235232487, -0.00926284119, 0.00345268869, -0.000894487253, -0.0167399198, 0.00777898775, 0.00294040609, 0.00668697478, 0.0250392184, 0.00815798063, -0.0070338496, -0.0230222065, 0.00766336266, 0.00274448609, 0.00145093212, -0.0177291539, -0.00398263615, -0.00531232264, -0.0410596952, 0.00275251549, -0.0142732542, 0.0291631743, 0.0124104079, -0.00542473607, 0.00332742836, 0.0641332865, 0.00646214839, 0.0167270713, -0.0119093666, -0.00484018773, 0.00295325322, -0.0023269516, -0.0100465212, 0.0108815897, 0.00892881304, -0.0102520762, -0.00869113952, 0.0178833213, -0.0180374887, -0.0201701261, -0.0135152685, 0.00315720262, 0.00862048, -0.0221742913, 0.00205716, 0.00504895486, 0.00297091808, 0.0141576296, 0.0097638825, -0.00984096527, 0.0115367975, -0.0115817627, -0.0108623188, -0.0121149225, 0.0153138787, 0.0138621433, -0.000446039194, 0.00520312134, 0.0132197831, 0.0305249784, 0.0188982505, 0.00774044637, -0.00270915614, -0.00620520394, -0.017754849, -0.00792673, 0.0189367924, 0.008042356, 0.0189753342, -0.0100657921, 0.0145301986, 0.00573949283, -0.00497829542, 0.00237673451, -0.00905728526, -0.00762482127, 0.00483697606, 0.0176263768, -0.0152367949, 0.0186413061, 0.00459609041, 0.022187138, 0.00629513478, 0.00294201192, -0.0101942644, -0.00808089692, -0.00819652248, -0.0217374861, 0.00921787601, -0.014825684, 0.0006796979, -0.00924357, -0.003510501, 0.0101364516, -0.00249235937, -0.0050232606, -0.0237930398, -0.00224986835, -0.0239985939, 0.0106439162, 0.00264813192, -0.0106567638, 0.0326319225, 0.0126673523, 0.00477274, -0.00381241064, -0.000816601038, -0.00441944133, -0.0290603973, -0.0194249861, 0.0185642242, -0.00820936915, 0.0080295084, -0.00149429147, 0.0365374759, 0.0157378372, 0.00822221674, -0.0114982557, 5.12383e-05, -0.00937204249, -0.00386701128, -0.0147614479, -0.00776614062, -0.00467317412, -0.0137465186, 0.0146843651, 0.0111385342, 0.00811301544, -0.0274930373, 0.000441221491, 0.0096418336, 0.0238701236, -0.0289062299, -0.00887742452, -0.0186413061, 0.000305121328, 0.002304469, -0.0279041473, 0.00603819033, -0.00507464912, 0.00281835743, -0.0114532905, -0.00982811861, -0.00714947423, -0.0166628361, -0.00287135225, 0.00973818824, 0.0130013805, -0.0025196597, 0.00406293105, 0.00393767096, -0.0274159536, 0.00115303742, -0.008434196, -0.00644930126, -0.00596753089, -0.00659062061, 0.008639751, -0.0160718635, 0.00466032652, -0.00655207876, 0.00898662582, -0.0289833136, 0.00474383356, 0.0174336694, -0.00481770514, 0.0365888625, -0.0011409932, -0.0151854064, -0.00566240912, -0.0168812387, 0.0128793316, -0.0169454738, -0.00953905564, -0.00678332895, 0.00165247289, -0.0014123905, -0.000144230042, -0.0113505134, 0.00266419095, 0.0324263684, 0.0158406142, -0.00403402513, -0.0213906113, 0.0484853834, 0.00774044637, -0.0253475513, 0.00165568467, 0.0107338466, -0.0193735976, -0.000590971846, 0.017754849, -0.0203628335, 0.00784964766, -0.00598037802, -0.0122433947, 0.000467317383, -0.00609279098, 0.0121920053, -0.0125067625, -0.00114821969, 0.00474704523, -0.00641397154, -0.00997586083, 0.0126930466, -0.00919218082, 0.00110807212, 0.018165959, 0.00677690515, 0.0263881758, 0.00250520674, -0.000404285762, -0.00879391748, -0.00388307031, -0.00152480369, 0.0331971981, 0.0176006816, 0.0131812412, -0.0035169248, 0.00858836249, -0.00444834772, 0.00304639549, -0.00118595839, -0.0168170016, -0.018371515, 0.0071302033, 0.00294682966, 0.00598358968, -0.0228680409, -0.0139649212, -0.00592898903, 0.00245221192, -0.0122241238, 0.0221485961, 0.0100786388, -0.0291888695, -0.0114661381, 0.0323749781, 0.0188083202, 0.0111513818, 0.0160461701, 0.0225340128, 0.00890311878, -0.000116829346, 0.016560059, 0.0102777705, 0.00647820719, 0.00848558452, 0.00541831227, -0.00583905866, -0.0297284517, -0.006629162, 0.00378992804, -0.0100272503, 0.0209024157, -0.0093591949, 0.0104512079, 0.0234204698, -0.00876822323, 0.00899947342, 0.0184871405, 0.0205169991, 0.0106760347, 0.0329145603, -0.0156222116, 8.41091e-05, 0.011401902, -0.0110871457, 0.0142475599, -0.000110706846, 0.00844704267, 0.0128600607, -0.0117616244, 0.0241142195, -2.18804107e-05, -0.0118130129, -0.00695676589, 0.00217599678, -0.00754773803, 0.00454470189, -0.00306887808, -0.00619878061, 0.000872004603, -0.00121004693, -0.0017552505, -0.0181916542, 0.0076312446, 0.00734218257, -0.0239985939, -0.00148706499, 0.00650711358, -0.0168812387, 0.00482412847, -0.0189753342, -0.007856071, 0.00436484069, -0.0150312399, 0.0242812335, 0.00969322305, -0.00516136782, 0.00544400653, -0.0281353984, 0.00743211294, -0.0174850579, 0.0116588464, 0.00792673, -0.0117359292, 0.0150954761, 0.0190267228, 0.00566883292, -0.0117038116, 0.0200801939, -0.00339487614, -0.00612490904, -0.0181274191, 0.0274673421, -0.00998228509, -0.00887742452, 0.00307851355, 0.0249621365, -0.00819652248, -0.0140548516, 0.0128279431, 0.00910867471, 0.00791388378, -0.00212139613, 0.0077532935, 0.00244739419, 0.0303451177, -0.0100979097, -0.00926284119, 0.0316555351, -0.00187087548, 0.0187183898, 0.00846631359, 0.00890954211, 0.0029034703, 0.00133771612, 0.00618593348, 0.0143374903, -0.0161104053, -0.0111321108, -0.00938488916, -0.0153909614, -0.0161361, -0.0182301961, 0.0110614505, 0.00164283742, -0.0131170051, -0.0237930398, -0.00372569193, 0.0113376658, 0.0136951292, 0.00515173282, -0.0100722155, -0.0164572801, 9.9515717e-05, 0.0245895665, 0.0202343613, 0.00259674294, 0.00846631359, 0.00192708208, -0.00309296674, -0.0234076232, 0.00597074255, -0.00605103746, 0.017382279, 0.0108687431, -0.00126946531, -0.012474644, -0.00569131551, -0.010990791, -0.00830572378, 9.50493049e-05, -0.00989877805, 0.0147742955, 0.0077532935, -0.0128536373, -0.0180374887, 0.00776614062, 0.00599643681, 0.0224055406, 0.0200545, -0.0138621433, 0.00208446034, 0.0102584995, -0.00314917322, -0.0265680384, -0.0217631795, -0.0245638713, 0.00748992525, 0.00388307031, 0.0160076283, -0.0324520618, 0.0144274207, -0.00960329175, -0.015506587, -0.0308076181, 0.0051324619, 0.0162902661, 0.0285208132, 0.000606227899, -0.00543437153, -0.0163159613, 0.0122562414, -0.00650711358, 0.016187489, -0.00522560393, 0.00572985737, -0.00270112674, -0.00897377823, 0.012763707, 0.0311673395, 0.00338524068, -0.011999297, 0.0147742955, -0.0188982505, 0.00852412637, -0.00726509932, -0.020247208, -0.0073486059, -0.0034045116, 0.0115111033, -0.0239729, 0.0247051921, -0.00416249735, 0.00387022318, -0.00170546758, 0.00125982985, 0.0151725588, -0.0163159613, 0.0200545, 0.0140548516, -0.024538178, -0.0190524179, 0.00475346902, 0.0244610943, 0.0200673472, -0.0194892231, -0.0100208269, -0.0282638706, -0.00603176653, 0.0250649136, 0.0122305471, -0.0250906087, -0.016868392, 0.010907284, -0.0142475599, 0.00511319097, 0.0143117961, -0.00493975356, 0.00608315552, 0.0188083202, 0.021197902, -0.0105861044, -0.0119029433, -0.0206711665, 0.00273806229, 0.00404366059, 0.00239439937, -0.00385737582, 0.00354583096, -0.0164187383, -0.00832499471, 0.00353940739, 0.0143503379, -0.0191680416, 0.0253090113, 0.0274159536, -0.0321437269, -0.00788176525, 0.00974461157, -0.00777898775, -0.0130591923, -0.0255916491, 0.00903801434, 0.00175043289, 0.00106471276, 0.0138878375, -0.00212621386, -0.0161104053, 0.00447725412, -0.0130977342, -0.00463463226, -0.0146458233, -0.00296931225, 0.0108815897, -0.00419782707, -0.0423701108, 0.00320216804, -0.000922590494, 0.0150183924, 0.0149541562, 0.00332742836, -0.000514691463, -0.00822221674, -0.00530911097, -0.00549860718, 0.0252319276, 0.0243968591, -0.00164123147, 0.0189624876, -0.0270819254, 0.0117359292, 0.0097510349, -0.04771455, -0.0115753394, -0.00642681867, 0.0066355858, 0.00912794564, 0.0155965174, 0.0247180387, 0.0130591923, -0.0236131791, 0.0167270713, -0.00832499471, 0.0163801964, -0.0102456529, 0.0116652697, -0.0140163098, -0.000433593465, -0.0133996438, -0.0189624876, -0.00951336138, 0.0112734297, -0.0125003392, 0.00283120456, -0.0107659651, -0.00660346774, -0.0231763739, 0.000416731491, -0.0104190903, -0.0122498181, 0.00950051472, -0.0147100594, -0.0217246376, 0.0023157103, -0.0139520736, 0.0018676637, 0.0165086687, -0.00214869645, 0.0182687379, -0.000109100947, -0.00734218257, 0.00103500369, -0.00827360526, 0.0134253381, -0.0227010269, -0.00693749543, -0.00787534192, 0.0106953057, 0.00120844098, 0.00363254966, 0.00565598579, -0.0169968642, -0.0264909547, 0.0213520695, -0.0101428749, 0.0100336736, 0.0253732465, 0.0105475625, -0.0173051972, 0.00817082822, 0.0290603973, 0.0313215069, 0.00399548328, -0.00696318969, 0.00828645285, 0.00308975484, -0.0115753394, -0.0318867825, 0.00333064, -0.00186926953, 0.00881961174, 0.00826718193, 0.0048273406, 0.00133209547, 0.00208285451, 0.0137979072, 0.0170097109, -0.00878107082, 0.00995016657, -0.011690964, -0.0170097109, 0.00698888395, 0.00276215095, 0.00598358968, -0.0227909572, 0.014042004, 0.00607673218, 0.00196562358, 0.00144772034, 0.00213906099, -0.0357409492, 0.00625659293, 0.0225468595, 0.00944270194, 0.0243197754, 0.00932065304, -0.00756058516, 0.00189978175, 0.00112252531, -0.0106117986, -0.0106567638, -0.0124168321, -0.0207610969, -0.0174208209, -0.0136180464, -0.0314499773, 0.00203146553, -0.00722013414, -0.00745138386, -0.00732291164, 0.0181017239, 8.50626e-05, 0.0130977342, 0.0076312446, -0.00730364071, -0.000135899434, 0.0187954735, 0.000720246928, 0.0159048494, 0.000896093145, -0.0174722113, -0.0048209168, -0.000751562, 0.016868392, -0.00301588327, 0.0100400969, -0.00467959745, 0.00774044637, -0.0126994709, 0.00655850256, -0.00310420804, -0.00142042, -0.00767621025, -0.00510676717, 0.00164765515, -0.00842777174, -0.016020475, -0.0251163021, -0.0130270747, 0.00360685517, 0.00908297952, -0.0205812361, 0.00750277285, 0.00514530903, -0.0148770735, 0.0317583121, 0.0154551975, -0.00209409581, -0.0263367873, 0.0197847094, -0.00762482127, -0.0216347072, 0.00193671742, -0.00263046706, -0.00093543774, -0.00408220198, 0.000516297412, 0.0135923522, -0.0207739435, -0.0206583198, 0.000574912818, 0.00869756378, 0.0142989485, -0.0103355832, -0.00951978564, -0.00530911097, -0.000392241491, 0.0331971981, 0.0140034631, -0.022598248, 0.0146715175, -0.0222385265, 0.0178447794, -0.00923714694, -0.00698888395, -0.0107916594, -0.0253090113, 0.0245638713, -0.00419461541, 0.00294040609, -0.036871504, -0.00121165288, 0.0194249861, -0.00495902449, 0.0144788092, 0.00382525777, 0.0192451254, -0.0031299023, -0.00022683361, -0.0460187197, -0.0367944203, -0.00829929952, -0.014414574, 0.000456477545, -0.00470529217, -0.0110036386, -0.0131812412, -0.0117359292, 0.00375138642, 0.019527765, 0.0109715201, -0.00980242435, 0.00374496263, 0.0160461701, 0.0171124879, 0.00727152266, -1.54317113e-05, 0.00319092674, 0.0144659625, 0.00132808066, 0.0131426994, 0.0167142246, -0.000422753626, -0.0120314155, 0.00737430062, 0.00656813802, -0.0036197023, -0.00612169737, 0.0299340077, -0.0166756827, -0.000884048874, 0.0318097, 0.0123590194, 0.0093591949, 0.00226110965, -0.0266965088, 0.0070274258, 0.000766015088, -0.0115432218, -0.00993732, 0.00750277285, 0.0289576184, -0.00111690466, 0.00588081218, -0.00642039487, -0.0034302061, -0.0348159485, 0.0187826268, 0.0026208316, 0.00130238628, 0.00268988544, 0.0260926913, 0.00395372976, -0.00423958059, 0.0201058891, 0.00628871098, 0.0087489523, 0.00142523774, -0.00547291292, 0.0132711716, 0.0282124802, -0.0140548516, 0.00158261613, 0.00933350064, 0.00747707812, 0.00864617433, -0.00689895358, -0.0198489446, 0.0251933858, 0.0376680307, -0.00718159229, 0.0239086635, 0.0010470479, -0.0157635305, -0.0124425264, 0.00920502841, 0.010721, -0.00907013286, -0.0127958246, 0.00475025736, -0.0242169984, -0.000771234278, 0.0335312262, 0.000686523, -0.0104062427, 8.38581764e-05, -0.0132326297, -0.0187183898, 0.00470529217, -0.00150392693, 0.0152239483, -0.021403458, -0.0152496425, 0.00554999616, 0.0129885329, 0.00360685517, -0.00545685412, 0.0108302012, -0.00456076069, -0.0184999872, -0.00187248131, -0.00362933776, 0.0176006816, -0.0297284517, -0.00140275515, 0.0036229142, 0.00548897218, 0.00184518099, 0.00368072675, 0.0144531149, 0.000993250171, -0.00738072395, -0.00271718577, 0.0256044958, 0.00898020249, -0.0120121446, -0.0149156153, 0.0096418336, -0.0153781148, 0.00588402385, -0.0109586734, 0.0432180278, 0.0171381831, 0.0152624892, 0.00890954211, 0.00449652458, -0.00668055099, -0.019219432, 0.0123076309, -0.00513567356, -0.00830572378, 0.00493332976, -0.00131523353, -0.00450294837, 0.00595468329, 0.00963541, -0.0167399198, 0.0151340179, 0.00519990968, 0.011485409, 0.00304157776, 0.0118965199, -0.00978957675, 0.00290025841, -0.024846511, -0.0142989485, 0.0126352347, -0.0162902661, -0.000334830489, 0.0362291411, -0.0156736, -0.00448688911, 0.0155579755, -0.00290828804, 0.0122883599, -0.00620520394, 0.0120121446, 0.0151083227, -0.00256301905, 0.00825433433, -0.00870398711, -0.0221614428, -0.0105282916, -0.0103869718, 0.00845989, 0.0248593576, -0.000228038043, -0.00792030711, -0.0178576261, -0.0206840131, -0.0248336643, 0.00407256652, -0.00912794564, 0.00570737477, 0.0177676957, -0.00337560545, 0.0193350557, -0.00300785387, -0.0041078967, -0.00135457807, -0.0233048461, -0.0224312339, 0.0157892257, -0.00649747811, 0.0011674905, 0.0110742981, 0.00073389709, -0.0131683936, -0.0017552505, 0.00387022318, -0.00430060457, -0.0205041524, -0.0128215188, 0.00872325804, 0.0134767266, 0.0107338466, -0.000901713793, 0.0182558913, -0.00563671486, 0.00194314099, 0.00518385088, -0.0272103976, -0.00066725217, 0.00120442628, -0.0156864468, 0.00814513303, -0.0211593602, 0.00885173, 0.0101557225, 0.0108558955, 0.023857275, 0.0104769031, -0.00834426563, 0.00939131342, 0.0037321155, 0.00153363612, -0.00648784265, -0.00325516262, -0.00142604066, 0.00248754164, -0.00472456263, 0.0224697758, 0.00687325932, -0.00401154254, -0.00452543097, 0.00615702709, 0.00246666488, -0.00656492589, -0.00378671614, 0.00718159229, 0.00832499471, -0.00284244609, 0.00193511159, -0.00685398839, -0.0211079717, -0.00405650772, -0.0234333184, 0.0115560684, -0.0312701166, -0.0113248182, -0.00355546642, -0.0221999846, 0.00258550164, -0.0178961679, 0.0223284569, 0.0126031162, 0.00571701024, 0.036409, 0.0120699573, -0.0158791561, -0.00481128134, -0.00514852069, 0.00475668069, -0.0216989443, 0.00325034512, 0.0129435677, -0.00767621025, -0.0126545057, 0.0305506736, 0.0100336736, 0.00243775873, -0.00964825694, -0.00550824264, -0.00802308507, 0.000958723307, 0.000281835761, -0.00996301416, -0.0215447769, -0.0115239508, -0.0219944287, 0.0208510272, -0.0164058916, -0.00170386164, 0.0351756699, 0.00185802823, -0.0068475646, -0.000933831849, 0.000951496768, -0.00298537128, -0.0103420066, 0.0319124795, -0.0159048494, -0.000368755165, 0.00700173154, -0.00341093517, -0.00652317284, -0.00876822323, -0.0221485961, -0.00950051472, 0.0115624918, -0.00344626512, 4.35099e-05, 0.00894808397, 0.00349444197, -0.0206840131, -0.00860120915, 0.00472456263, -0.00512282643, -0.0140933935, -0.0107595418, -0.021570472, -0.0355353914, 0.00446119485, 0.0034269942, -0.0144017264, 0.0206583198, 0.0112477355, 0.00181466888, 0.0215319302, -0.0144274207, 0.0140933935, 0.0108237769, -0.0169069339, -0.00881961174, -0.00107595418, -0.000473741, -0.00406614318, 0.0291888695, -0.00327443355, 0.00871683471, 0.0164058916, 0.00551466644, 0.0217503328, 0.00188532856, -0.0193607509, 0.0239857472, 0.00880034082, -0.00756058516, 0.0167913083, -0.0300110914, -0.0133482544, 0.0142989485, 0.0132069355, 0.0123204775, 0.0126866233, 0.0117680477, -0.0122048529, 0.0322978944, 0.00547612458, -0.0299853962, 0.00872325804, 0.0053219581, 0.00824148767, -0.00660346774, -0.0134895742, -0.00397300068, 0.00853697304, -0.00652959617, 0.0164058916, 0.0102392295, 0.0072394046, -0.0133867962, 0.0351756699, -0.00512924977, -0.0120506864, -0.00876822323, -0.004413018, -0.0130784633, 0.00190459937, -0.0198746398, -0.0097638825, 0.0005536346, 0.0135538103, -0.00605103746, -0.000205756151, 0.00394409476, 0.00640112394, 0.014722907, -0.00231731613, 0.010598951, -0.00901874434, -0.000842295412, -0.0270562321, -0.00343341776, 0.0226496365, 0.00144049386, -0.00928853545, 0.0153781148, -0.0103484308, 0.00695034256, 0.00121084985, 0.0102520762, -0.0124168321, -0.0122433947, 0.0112156169, -0.00251002423, -0.0105861044, 0.00258550164, 0.0143888788, -0.0103677018, -0.0176135302, 0.00457360782, 0.00229483354, 0.00495581282, -0.0101428749, 0.00788818952, 0.0040083304, -0.029445814, 0.00372569193, -0.0105282916, 0.00781110581, -0.00313953776, 0.0154551975, -0.00813228637, -0.0326833129, 0.00222417386, -0.000552430167, 0.000747145736, 0.0335055329, -0.00358116068, -0.000285850489, 0.0316555351, -0.00357794901, -0.0346874781, -0.0203499869, -0.00914721563, 0.0455305241, 0.000888063631, 0.0247951224, 0.0130142272, 0.0151211703, -0.0111899227, -0.0101300282, -0.0111064157, 0.0143888788, -0.0123654427, -0.00317486771, -0.00199453, -0.000808571524, -0.000324592867, -0.0267992876, -0.00636579422, 0.00507464912, -0.0157506838, 0.00531874644, 0.0103548542, -0.00704669673, 0.0200673472, 0.00220490294, 0.0100208269, 0.0124425264, -0.0107274232, 0.0129435677, 0.0112927007, 0.00431024, 0.0081515573, 0.00207000738, 0.0174079742, -0.00739999488, 0.00200898293, -0.00440338254, 0.00782395341, -0.00403402513, 0.0166756827, -0.000138709758, 0.00726509932, -0.00212621386, 0.0231892206, 0.0065424433, -0.0138621433, 0.000156475042, -0.00451900717, 0.0290090088, -0.00143246434, -0.000682909682, 0.0144017264, 0.0190395713, -0.0125453044, 0.00878107082, 0.00156816305, 0.0119414851, -0.00634331163, 0.00723298127, -0.00119719969, 0.0037096329, 0.0259642191, -0.000303113949, -0.00284726359, -0.00890311878, -0.0105796801, -0.00867829286, -0.00907013286, 0.0127765536, 0.00459930254, -0.00358116068, -0.0209024157, -0.00633367617, 0.0238444284, 0.00539904134, 0.00538298255, -0.0247694273, -0.0149027677, 0.0014694, -0.00570737477, -0.00399548328, 0.0130977342, 0.0156736, 0.00864617433, 0.00315880869, -0.0189110991, 0.0076440922, -0.00827360526, 0.0132197831, 0.00656171422, -0.0146329766, -0.0157378372, 0.00923072267, -0.0243968591, -0.00412074383, 0.00723298127, 0.022662485, -0.0233048461, 0.00320377387, 0.00264010229, -0.0320666432, -0.00561102061, 0.0104447845, -0.0133097135, -0.0302423406, -0.0153267253, -0.0243197754, 0.016868392, 0.00198168261, 0.00640112394, -0.0035169248, -0.00346874772, -0.00716874516, 0.00364539679, -0.0030014303, 0.00797169562, -0.019155195, 0.0156864468, -0.0361777544, -0.00118114066, -0.00506501412, 0.00299500674, -0.00792673, -0.00318932068, 0.00558853801, -0.00360043161, 0.000117030082, 0.0110614505, 0.00317005, -0.0196048487, -0.0294715073, -0.0313472, -0.0234333184, -0.00670624524, -0.00552751357, 0.000346473302, -0.0125388801, -0.0136051988, -0.00774044637, 0.0237801913, 0.00101011212, -0.0315013677, 0.0222256798, -0.0269277599, 0.00510355551, 0.0206326246, -0.00661631487, -0.0336340033, 0.00975745823, -0.00847273692, 0.0128407897, -0.0151083227, -0.0013031892, 0.0141833238, -0.000901713793, -0.0138107548, 0.00292434706, 0.0356124751, 0.000967555796, -0.012577422, -0.00023566607, 0.0193093624, -0.00611527357, 0.0054311594, -0.00560780847, 0.0097510349, -0.00434235809, 0.00242009386, 0.000847113144, -0.00882603601, -0.0161746424, -0.000336436409, -0.0136437407, -0.0177420024, -0.00220811483, -0.0177034605, 0.0131105818, -0.00872325804, 0.0194763765, 0.00892881304, 0.000676887576, 0.016804155, 0.0308076181, -0.00408541411, -0.0113312425, 0.00059217622, -0.00286653452, -0.0156736, 0.0149541562, 0.000153965826, 0.0271076206, 0.00804877933, 0.00505216653, -0.0137722129, 0.00119318499, -0.0106246453, 0.0169583224, 0.0125453044, 0.00172313256, 0.0216860957, -0.00901874434, -0.0204784591, -0.0122883599, 0.00568489218, 0.0340451151, -0.00603176653, 0.00483697606, 0.00199453, 0.010598951, -0.00059378217, -0.0211722087, -0.0248336643, -0.0309617855, 0.0206840131, -0.0180246402, -0.0248336643, -0.0122498181, -0.0174850579, -0.000851930818, -0.00322465063, -0.0180888772, -0.00528662838, -0.00995016657, -0.00655207876, -0.0019511705, 0.00466996199, 0.00885173, -0.000314355246, 0.00939131342, 0.0197461676, -0.00571058644, -0.0278013702, -0.00134976034, -0.00504253153, -0.0193479043, 0.0102392295, -0.00581336394, 0.0138107548, 0.000392843707, -0.00389270578, 0.0161746424, 0.0102135343, 0.0045157955, -0.00425242772, -0.0177676957, 0.020247208, -0.0111513818, -0.0174079742, -0.0127187418, 0.00480806967, -0.00124136196, 0.00625016959, 0.0216475539, -0.0018532105, -0.0080295084, -0.00517742708, 0.000149951069, 0.00699530775, -0.00804877933, -0.00885173, 0.000926605251, 0.00416570902, -0.013733671, 0.0332228951, 0.00671909284, -0.00677048136, 0.0124682207, -0.0217760261, -0.0196176954, 0.00970607, -0.00176006823, -0.00729721738, -0.00687968265, 0.0125517277, 0.0146715175, 0.00579409348, -0.0101364516, -0.00061827217, 0.0151468646, -0.00982811861, -0.0247051921, -0.0142347123, -0.0217374861, -0.0154551975, 0.0327347, -0.00315077906, -0.0113762077, -0.0108237769, 0.0122369705, -0.0141190877, 0.0223541521, 0.0191038065, 0.000623491302, -0.00368393841, 0.0070338496, 0.0123333251, -0.0322978944, 0.0301138684, -0.00831857, -0.0147614479, -0.0327603929, -0.0132069355, 0.00948766712, 0.00518385088, 0.0183458216, 0.029445814, 0.027878454, -0.0207482502, 0.000964343955, 0.00981527101, 0.019527765, 0.00955832656, 0.0209666528, -0.00431024, -0.0116973883, -0.00466996199, -0.00631440524, 0.0198746398, 0.015506587, -0.00386701128, 0.00641075941, -0.00358437258, 0.00989235472, -0.00499435421, -0.00254053646, 0.0347645581, -0.00836996, -0.00879391748, -0.00616023876, 0.00272039743, -0.00218242034, 0.012969262, -0.000417534437, 0.0208253339, -0.0175236, -0.00615060329, 0.0107081523, -0.0189110991, -0.00252929516, 0.0207996387, -0.0071366271, 0.00268988544, 0.00160108402, -0.0225083176, -0.0182301961, 0.032888867, 0.00489157671, 0.00849843211, -0.00433272263, -0.0154680451, -0.0126545057, 0.0137079768, 0.0120249921, -0.0104769031, -0.017754849, 0.0196562372, 0.0121598877, 0.0125645744, 0.00180985115, 0.0167270713, -0.0112927007, 0.0213906113, 0.016020475, 0.026516648, 0.0124489497, -0.00201701256, 0.0212878324, 0.0178704746, 0.00765693933, 0.0180117935, 0.0008792312, 0.00762482127, -0.0192451254, 0.0149926981, -0.0212621391, 0.0193864461, -0.0229965113, -0.000787694764, -0.0140933935, 0.00609921478, 0.0150569342, -0.0188725572, -0.00421388587, -0.0045157955, 0.0167399198, 0.00757985609, 0.0184871405, -0.016971169, 0.00995016657, -0.00352334836, -0.0174336694, 0.0331458114, 0.00515173282, -0.00955190323, 0.00202664803, -0.016868392, 0.000702180492, -0.000176548812, 0.0045157955, -0.0119736027, -0.0248079691, -0.000424359518, 0.00551145477, 0.031115951, 0.0151854064, -0.0041175317, -0.000913758064, -0.00872325804]
|
21 May, 2024
|
Explain MonsterInsight Plugin in WordPress
21 May, 2024
MonsterInsights WordPress, a powerful Google Analytics WordPress plugin, makes it easy for anyone to connect their website with Google Analytics. This means you can start seeing detailed reports directly in your WordPress dashboard. MonsterInsights is a WordPress plugin that analyzes your website by tracking how many users visit, monitoring all relevant data, and displaying it in an organized manner on your WordPress dashboard. This allows you to make data-driven decisions for your website’s growth and optimization.
It gives you all the tracking features of Google Analytics in just a few clicks, and it comes with the feature of an analytics dashboard by which you can see all the stats in a single place without having to leave your WordPress environment. What’s working for your users, which content is best, whether it is liked by the users or not—all these insights are part of the WordPress traffic analytics that MonsterInsights provides.
What is MonsterInsights?
MonsterInsights is a Google Analytics WordPress plugin that makes it incredibly easy to connect Google Analytics with your WordPress site. Often referred to as the best MonsterInsights WordPress tool, it allows you to insert Google Analytics into WordPress without any coding expertise. This plugin simplifies the process of tracking how visitors interact with your website, providing valuable WordPress traffic analytics right within your WordPress dashboard. With MonsterInsights, you can see detailed reports about your site’s performance and user behavior, helping you make informed decisions to improve your website.
MonsterInsight’s Features
Audience Report: It gives you the report of your website visitors such as how many visitors are visiting your website daily, their age, country, demographics, gender and from which device they are visiting your website, and many more. by analyzing all of this data you can design and improve your content accordingly.
Publisher’s Report: It reports on which page the visitors are landing and leaving, this feature is good for blogs and on which links they are clicking.
Behavior Report: It gives you the details of how the users are interacting with your website, how much time they are spending on each page, from where they are coming from, which keyword they type to search, and from which referral they are visiting the website.
Site Speed Report: Gives you the loading speed of your website with page speed insight and gives you the information on how you will improve your website speed and hence the website’s SEO.
Search Console Report: It exactly shows how your website is performing on the Google search engine, and on which keywords it is ranking so that you can improve your website SEO and hence improve organic traffic.
MonsterInsights Pricing
MonsterInsights offers paid plans billed annually:
Pro 100 Sites: $559.60/year (up to 100 sites)
Pro 200 Sites: $679.60/year (up to 200 sites)
Pro 500 Sites: $799.60/year (up to 500 sites)
They also have a free plan and possibly a Plus plan .
MonsterInsights Reviews
MonsterInsights gets generally positive reviews for its ease of use and beginner-friendliness. Users appreciate:
Simplicity: Easy setup and straightforward interface for viewing website traffic data.
Convenience: See key analytics directly in your WordPress dashboard without switching to Google Analytics.
Great for Beginners: User-friendly for those new to website analytics.
How to Install MonsterInsights in WordPress ?
Installing MonsterInsights in WordPress is simple and helps you easily insert Google Analytics WordPress. Follow these steps:
Install and Configure MonsterInsight
Let’s see how we can install and configure MonsterInsight to our WordPress website, step by step
Step 1: First hover over the plugin option and then click on Add New.
Step 2: Search the MonsterInsight in the search box and then click on Install Now.
Step 3: After installing MonsterInsight click on Activate button.
Step 4: After Activation of MonserInsight, the MonsterInsight welcome wizard will appear on the screen.
Scroll down you will see the Launch Wizard button, click on this button.
Step 5: When you launch the MonsterInsight wizard, the first step will start for the configuration of the MonsterInsight plugin with your WordPress website.
Choose the category of your website and then click on Save and Continue button.
Step 6: Now the second setup wizard will appear on the screen, for connecting the WordPress website with Google Analytics click on Connect MonsterInsight.
Step 7: Choose the Google account by which you have created your Google Analytics Account.
Step 8: Then the MonsterInsight ask for account access to connect your Google Analytics with your WordPress website.
Click on Allow to give your account access to MonsterInsight.
Step 9: Choose the name of your website or property which you have set in Google Analytics to account for your WordPress website.
And then click on the Complete Connection.
Step 10: MonsterInsight recommends some settings, don’t change the default settings and then click on Save and Continue.
Step 11: It will recommend you some add-ons to up-gradation to pro if you want the pro version you can go or simply click on the save and continue button for the next step.
Then click on Save and Continue button.
Step 12: MonsterInsight Recommends installing WP-form if you want to install WP-form you can go with it or simply skip this step.
Step 13: And the final step you have to do is just click on Finish Setup and Exit Wizard.
Step 14: Now hover over the Insights section in the WordPress dashboard of your website and click on the report you will see all of your website’s reports in a single dashboard of MonsterInsight.
This is how you can set up the MonsterInsight plugin in your WordPress website by following these simple steps.
Conclusion
In conclusion, the MonsterInsights plugin is a powerful tool that makes adding Google Analytics to your WordPress site easy. With the Google Analytics by MonsterInsights plugin, you can track your website’s performance directly from your WordPress dashboard without needing any coding skills. This plugin simplifies the process of collecting data, offering valuable insights into your visitors’ behavior, and helping you make informed decisions to improve your site. If you want to insert Google Analytics WordPress, MonsterInsights is a highly recommended solution for its user-friendly interface and comprehensive features.
Explain MonsterInsight Plugin in WordPress – FAQs
What is the MonsterInsights plugin?
The MonsterInsights plugin is a WordPress tool that allows easy integration of Google Analytics into your website, providing detailed insights into visitor behavior. It offers features like real-time stats, enhanced eCommerce tracking, and custom reports, all accessible from your WordPress dashboard.
How to use MonsterInsights?
To use MonsterInsights, first, install and activate the plugin on your WordPress site. Then, connect it to your Google Analytics account by following the on-screen instructions. Finally, customize your settings to start tracking your website’s performance data directly from your WordPress dashboard.
What is the difference between Google Analytics and MonsterInsights?
Google Analytics tracks website traffic and user behavior, while MonsterInsights is a WordPress plugin that integrates Google Analytics into WordPress, making it easier to access and understand the data.
Is MonsterInsights plugin free?
Yes, the MonsterInsights plugin offers a free version with basic features. However, for more advanced features and in-depth analytics, you can upgrade to their premium plans. The free version is a great starting point for beginners who want to insert Google Analytics into WordPress easily.
Is MonsterInsights trustworthy?
Yes, MonsterInsights is trustworthy. It is one of the most popular and highly-rated plugins for adding Google Analytics to WordPress, with over 3 million active installations and numerous positive reviews. Its reliability and ease of use make it a preferred choice for many website owners.
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?/How to design datalists for mobiles using jQuery EasyUI Mobile ?/How to design menu using jQuery EasyUI Mobile ?/EasyUI jQuery menu widget/EasyUI jQuery datebox widget/How to make use of multi-mode jtsage-datebox plugin?/Step by step guide to make your first WordPress Plugin/Explain MonsterInsight Plugin in WordPress
|
https://www.geeksforgeeks.org/explain-monsterinsight-plugin-in-wordpress?ref=asr10
|
CSS
|
Explain MonsterInsight Plugin in WordPress
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, How to design menu using jQuery EasyUI Mobile ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, Step by step guide to make your first WordPress Plugin, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, EasyUI jQuery datebox widget, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, Explain MonsterInsight Plugin in WordPress, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, EasyUI jQuery menu widget, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, How to make use of multi-mode jtsage-datebox plugin?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, How to design datalists for mobiles using jQuery EasyUI Mobile ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0198271796, -0.0171540249, -0.0230349675, 0.000530335063, 0.000331757765, 0.0223323088, 0.00286027696, 0.00337199541, -0.00441070739, 0.0687383, 0.022179557, -0.0180858094, -0.00558689609, -0.0420372896, -0.0193231, 0.00805001892, -0.0191092473, -0.00458255317, -0.00325552211, 0.000572819146, -0.0051782853, -0.0199646577, -0.0154355671, -0.0226225387, -0.00898180436, 0.0222253837, -0.0141600892, 0.00764522655, -0.016604118, 0.0260900036, 0.012128491, -0.000333667151, -0.0144426804, -0.00492242584, -0.0329332836, -0.0414873809, 0.0484223142, -0.00699985027, -0.0187884681, 0.0581984259, 0.0194911268, 0.00621317839, 0.0350718088, -0.0142517406, -0.0224697869, 0.0243944582, -0.0361105204, -0.036018867, 0.0135261696, 0.0111967055, 0.0266857352, 0.0287631601, 0.0335137397, 0.0298476964, 0.0149467615, 0.028839536, 0.0555405468, -0.0226836391, 0.0182843879, 0.0290075615, 0.0339108929, 0.0107766381, 0.0141753647, 0.0170318224, -0.00422358653, 0.0211255699, -0.0043190564, -0.00514009735, 0.0243791826, 0.00976847578, -0.00679745385, 0.026074728, -0.0125561962, -0.0149009358, 0.00763758877, -0.00677072257, 0.0175053533, 0.000874026562, -0.0122583304, 0.0335137397, -0.00116473227, 0.00171272934, 0.00430378132, -0.0115633095, 0.0325361267, 0.00569764106, -0.0049567949, -0.0539519265, 0.0373936333, 0.0198577307, -0.00831733458, -0.0268995874, -0.011143242, 0.0104253087, -0.0232488196, -0.0134116057, 0.00470857369, 0.0144885061, -0.0111279665, 0.0714267269, 0.0069043804, 0.0145496065, 0.00313332072, -0.0160236619, -0.0105016846, -0.0163749903, 0.0152522651, -0.0160236619, 0.00660269568, 0.00441452628, 0.00486132503, -0.0196591541, -0.0368131772, -0.00127070385, -0.00908109266, 0.0311613623, -0.00918802, -0.019521676, -0.00628955429, -0.0065301382, -0.0172609501, 0.0149925863, 0.0168485213, 0.0607646555, -0.0118306251, 0.0201174095, -0.0211408455, -0.0191856232, 0.0344913527, -0.0211102962, 0.0331471339, 0.0311766379, 0.0327499807, 0.00881377701, 0.00857701246, -0.00251276675, -0.00407083472, 0.0237834509, 0.0211713966, 0.00385698234, -0.0144655928, -0.0192925502, -0.00633538, -0.00501789572, -0.021156121, 0.0442369133, 0.00614825916, 0.0404486693, -0.017627554, -0.00367177092, 0.0127318604, -0.00931785814, 0.00522411056, 0.016497191, -0.0168790706, -0.0308100339, -0.0133046797, 0.00717169605, -0.0551433899, 0.0189106707, -0.0288700853, 0.00476203673, 0.0301379245, 0.0320167728, 0.0273272935, 0.0328416303, 0.0522411056, -0.0095087979, -0.0380351916, 0.0548378862, 0.00473530497, -0.0151453381, -0.0379129909, -0.0225003362, -0.0121972291, 0.0157792587, 0.0156188691, -0.0370575823, 0.00134707976, -0.00472766766, 0.0379129909, -0.00908109266, -0.0206978656, -0.0331471339, 0.0138545856, 0.0341247469, 0.0574041158, -0.00711059524, 0.0288089849, -0.0102190934, -0.0033299888, -0.00478494959, 0.0122812428, 0.0402348191, 0.0223017596, 0.0542574301, -0.00296911271, 0.0827914625, -0.00411666045, -0.0259067, -0.0154966675, -0.0518745035, -0.0215838253, 0.033177685, 0.0039257207, -0.00880614, 0.00892070401, 0.02796885, 0.00817222, -0.0073091723, -0.00709532, 0.0130144516, -0.00119241851, 0.00158289028, 0.0217824038, 0.018605167, -0.0169401728, -0.0186662674, 0.000349419686, -0.0266093593, -0.0321695246, 0.0064614, 0.0325666778, -0.00147500937, -0.0273731183, -0.0100357914, 0.0227447394, -0.0633614361, 0.043076, 0.0208200663, 0.0297407713, 0.000316959922, -0.0237529017, 0.0212324969, -0.0231877193, -0.000602892193, 0.00717169605, 0.00393335801, -0.0411513299, 0.0359577686, 0.00869921315, 0.0132435793, -0.0054837889, 0.0325972289, -0.017734481, -0.022286484, 0.0484223142, -0.00631628605, 0.0245166607, 0.0193689261, 0.010769, -0.0167110451, -0.000998614705, 0.0267468356, 0.00225308863, 0.0381879434, 0.0581373274, 0.0189412199, 0.0243486334, 0.0096386373, 0.00973028783, 0.0221948326, -0.0214616247, -0.00234092097, -0.0199341066, 0.0126096588, 0.0295269191, -0.0326583311, 0.000267076946, -0.00959281158, 0.0452450775, 0.000131032386, 0.0290228371, 0.0112807183, 0.00299393479, 0.00843953528, -0.0129151624, -0.00680509163, 0.0459782854, 0.0150231374, 0.0406625234, -0.0370575823, 0.0154432049, 0.0456422307, 0.010234369, -0.0156876072, 0.0141371768, -0.00830205902, -0.0272661913, 0.0166957695, -0.0197660793, -0.00966155, 0.0280452259, 0.0101732686, 0.0497054271, 0.0187120922, 0.00145687012, 0.020102134, 0.0140455253, -0.00396390865, 0.00139195053, 0.0269606877, -0.020102134, -0.00171845744, 0.00514391623, 0.0467114933, 0.00130984653, 0.00222253823, -0.0337275937, -0.0299393479, 0.0537075251, 0.0179483332, -0.00775215263, -0.0255400967, 0.00572437281, 0.026181655, 0.0361105204, -0.0127624106, -0.00406319741, -0.0547462367, 0.00386271044, -0.0286562331, -0.0214921739, 0.014419768, 0.0186815429, 0.000927967, -0.0175511781, -0.00530430535, -0.00519356038, -0.0192467235, -0.0204534624, -0.0217671283, -0.0128387865, -0.0015685698, 0.00899708, -0.0368437283, -0.0129075246, 0.0482695624, -0.00308367657, 0.0199799314, -0.0502247848, -0.010998128, -0.0339108929, 0.00918038189, 0.041731786, -0.0286715087, -0.00239820289, 0.00677454146, 0.0242111571, 0.00446035201, 0.00150269561, -0.0101503553, -0.00528521137, -0.00528521137, -0.0213546976, 0.0114792958, 0.00688528642, 0.00079430925, 0.00359921367, 0.0222712085, -0.00179005985, 0.00149314862, -0.0190175958, 0.012273605, 0.00284882053, 0.0084089851, -0.0136101833, 0.00567091, 0.0280146748, -0.027205091, -0.0298782475, 0.0147940097, -0.0117007857, -0.028075777, -0.0444202162, 0.0347357541, 0.00922620762, 0.0243944582, -0.0242722575, 0.0252040438, 0.0225919876, -0.00374814658, -0.0272203665, 0.0582900792, 0.0261969287, 0.00716405828, 0.0600925498, -0.0211866722, 0.0720377341, -0.0100205168, -0.053676974, 0.0112196179, -0.0118688131, -0.0390128046, 0.00788962934, -0.00747338077, -0.0295116436, -0.0189412199, 0.0120597528, -0.0187120922, 0.0525771603, -0.0066714338, 0.000542268797, -0.00638120528, -0.0404792204, 0.0188495684, 0.0401431657, -0.000784762262, 0.0104253087, -0.017077649, -0.00409374759, 0.00885196496, -0.0625671297, 0.0477196537, 0.0403570198, 0.0642168447, -0.0135872709, 0.0313446634, 0.0107537247, 0.0102878325, -0.00829442125, 0.0359883197, -0.00523556722, -0.0189106707, -0.0104482211, 0.0103718452, -0.0420372896, 0.0214005243, 0.0196897034, -0.028075777, -0.00934077147, -0.0190328714, 0.0173678771, -0.00896652881, -0.0121437665, -0.0272203665, 0.0460088365, -0.000799560046, 0.010234369, -0.0250054654, 0.0118000749, -0.0323528275, 0.00767959561, -0.00355338817, -0.0592371374, -0.000357295939, -0.0509274416, -0.0149009358, -0.00493006362, -0.0210950207, -0.049338825, -0.0061329836, -0.0730153471, 0.0141600892, 0.0304281544, 0.0127318604, -0.00712205144, 0.00998232886, 0.0303976033, -0.022653088, 0.0117695238, 0.0280452259, -0.0148016466, 0.0094858855, -0.00569764106, -0.00632774225, -0.0644612461, -0.00026827032, 0.0110057658, -0.0219657049, -0.00416248571, -0.0268537626, 0.083463572, 0.0200563073, 0.0222559329, 0.00862283818, 0.00944769755, -0.0138622234, 0.0152751775, 0.017077649, 0.0225614365, 0.0686161, 0.0165582933, 0.00802710559, 0.0347663052, 0.00909636822, 0.0354078598, 0.0218740534, 0.00310849864, -0.0288089849, -0.0338803455, -0.0139615126, -0.0284271054, -0.0175817292, -0.0190786961, -0.0289464612, -0.0287784338, 0.00210797461, -0.0141219012, 0.010341295, -0.00680127274, 0.0144732306, -0.047047548, 0.0234932229, -0.0305503551, 0.0421900414, -0.00921857, -0.000467802311, 0.00234855851, -0.0286562331, -0.000688815, -0.00733208517, -0.020865893, 0.00337199541, -0.00539213745, 0.0158250835, -0.00424649939, 0.0380351916, -0.00745810522, 0.00708768237, 0.0251582172, -0.0138316732, -0.00837843493, -0.00682418561, 0.000218506641, 0.0230960678, 0.00397154596, 0.00376915, 0.0327805318, -0.0208811685, -0.0165277421, -0.00826387107, -0.00444889534, 0.00811875705, -0.0324750282, -0.00173373264, 0.0313752145, 0.0213852488, -0.0054837889, 0.013617821, -0.0279230252, -0.00561362784, -0.0393183082, 0.00316769, 0.00456727808, -0.00889015291, -0.000165998223, -0.0196133275, -0.012708948, 0.0262427554, 0.00183302129, 0.0172915012, 0.0105016846, 0.0015322913, 0.0013346686, 0.00793545507, -0.0240125787, 0.00205451134, -0.0238140021, -0.00523938611, 0.0115403971, -0.0108912019, 0.0201326832, -0.0236459747, 0.010631524, -0.0127471359, -0.0031065892, 0.00462074112, 0.00378060644, -0.00397918373, 0.0149391238, 0.028625682, 0.0069922125, -0.0326583311, 0.0359883197, 0.0194147509, 0.0126936724, -0.0123881688, 0.0118611753, 0.00764140766, 0.0216449257, 0.0101045296, 0.0206978656, 0.00547997, 0.0273578428, 0.00979138911, 0.00284309243, 0.0116549609, -0.029389441, -0.000583320856, 0.0263496805, 0.0284271054, -0.0525160618, 0.00370041165, -0.0283507295, 0.0125714708, 0.00865338836, 0.00219580671, -0.0234473981, 0.00539213745, -0.0148092844, -0.0159014594, 0.0283965543, 0.0338497944, -0.00528139248, -0.000723184203, -0.020102134, 0.00384361646, -0.0128998877, -0.00909636822, -0.04304545, 0.00328607252, 0.0449090227, 0.00299775368, -0.00810348149, -0.019155072, 0.000409088359, -0.00157429802, -0.0145496065, -0.00613680249, 0.00178337703, 0.0257997755, 0.00360876066, -0.0169554465, 0.0292672403, 0.000776169938, 0.00476585561, 0.0157639831, -0.00756121287, -0.018864844, -0.00399827771, -0.00583511777, 0.0248985402, -0.00913455617, 0.0273425672, 0.0102725569, 0.00157620735, -0.00421594921, -0.0069043804, -0.00079430925, -0.0218435042, 0.0292214155, -0.00754593778, 0.165582925, -0.00750393094, 0.0337275937, -0.0157945342, 0.0135032572, 0.0174595285, 0.0280299503, -0.0054952451, 0.00500643952, 0.0186204407, 0.0160389356, -0.0140760764, -0.0225919876, 0.0233251955, -0.0491555221, -0.00327270688, 0.0160542112, 0.0164666418, -0.0167568699, 0.0285645816, 0.0047047548, 0.00192562712, -0.0223170351, -0.00456727808, -0.0117542492, 0.0150918756, 0.00966918748, 0.0178261325, -0.0337581411, -0.0407236218, 0.0311308112, -0.0120597528, -0.0250818413, -0.00241347798, 0.015366829, -0.00199341075, -0.0302754026, -0.034919057, 0.0131290155, 0.01118143, 0.0249290895, -0.0130908275, -0.010234369, -0.0234015714, 0.00286027696, -0.0287937094, -0.010341295, 0.00452145236, -0.0157181583, 0.0535242222, 0.00147119048, 0.0224392358, -0.0278313737, -0.0313141122, -0.0531576164, 0.00527375517, -0.0101350807, -0.000535585918, 0.0163291655, -0.0274494942, -0.0283812806, 0.00305121671, 0.00873740111, 0.00502553349, -0.00636593, -0.00475439895, -0.00216334709, 0.0285034813, 0.022286484, -0.00900471676, 0.0447562709, 0.01095994, 0.0234626718, 0.0157181583, 0.0112043424, -0.00446417043, 0.022653088, 0.0279841255, 0.0292366892, 0.0114105577, -0.0433509536, 0.0117542492, -0.0096921, 0.00546087604, 0.0107155368, -0.0228822157, -0.00466274796, -0.017841408, -0.0139615126, 0.0343997, -0.00728626, -0.00866102614, 0.00382452249, 0.0221337322, -0.00416248571, -0.0134421559, -0.00447562709, 0.00074609695, 0.0158556346, -0.0171081983, 0.00844717305, 0.00600314466, 0.0128464242, 0.0098372139, 0.0247152373, -0.0214921739, 0.00455582188, 0.00843189843, -0.0136407334, -0.0221337322, -0.0282743536, -0.0228669401, -0.00917274412, -0.00458255317, 0.019338375, 0.0112501681, -0.0105398726, -0.00543414429, -0.000642512168, 0.0206978656, 0.0155195808, 0.00172895915, 0.0179483332, -0.0445424169, -0.0262122042, 0.0115327593, 0.00306840125, 0.0156723317, 0.0102801947, 0.0208200663, 0.0289159119, -0.0268690381, -0.00147405465, 0.00619408442, -0.0289159119, -0.0189870466, 0.00441834517, -0.0100663416, 0.0182538368, -0.0172456764, 0.0323528275, 0.0183760393, -0.0184371397, 0.00771396467, 0.00931022, -0.00606806437, 0.0203770865, 0.0170165487, 0.0082562333, -0.0132359415, 0.0104634967, 0.00129552605, 0.00107212656, -0.032413926, -0.0241653305, -0.0277855471, -0.0199341066, 0.00121628598, -0.0233251955, -0.0109675778, -0.0168026946, -0.017841408, -0.0316196159, -0.0130908275, -0.00680509163, -0.00521647325, 0.0225919876, -0.00484986883, 0.0105322348, -0.0278771985, 0.00518592261, 0.00567854708, -0.0110439537, 0.0273883939, -0.00351710967, -0.0230349675, 0.0112730814, 0.00774833374, -0.0154508417, -0.00149028446, -0.0194300264, -0.00216143765, 0.0321695246, 0.029862972, -0.00676308479, -0.00359348557, 0.00053988205, 0.00659887679, -0.00441834517, -0.0146794459, 0.0303365029, -0.0174900778, 0.0186815429, 0.0109523023, 0.00116473227, 0.016680494, 0.00395627087, 0.00741609884, -0.016787421, 0.00478494959, 0.00242684386, -0.0138240354, -0.00648431294, -0.0178719573, 0.00212706858, 0.0478724055, 0.0114869336, -0.00791254174, 0.00762613257, -0.0142822908, 0.0356828161, 0.00475821784, 0.0255400967, 0.00246885046, -0.0166499428, 0.00860756263, 0.0473530516, -0.00172895915, -0.0102649191, 0.0150918756, -0.00452909, 0.0281521529, 0.0384017974, -0.0218740534, -0.0168179702, -0.0221642833, -0.0118459, -0.00740082329, -0.0214616247, -0.0107231745, 0.0592371374, -0.0135490829, -0.0175970048, 0.0145037808, -0.0187884681, -0.000458494, -0.0361105204, 0.042281691, -0.0272203665, 0.020499289, -0.00945533533, -0.0024287533, 0.00402882788, -0.0200410336, 0.0119833769, 0.00509045273, -0.0101656308, -0.00630864827, -0.014748184, -0.0223170351, -0.0180247091, 0.00267124665, 0.0143433921, -0.0256622974, 0.0199799314, -0.0360799693, 0.0191397984, 0.00919565652, 0.0384017974, 0.0252345931, 0.0076184948, 0.00801183097, 0.00562890293, 0.0360799693, 0.0100663416, 0.00399827771, -0.00154947583, -0.0216449257, -0.00366031448, -0.0155730434, -0.0204381868, 0.0356217138, -0.00746956188, -0.0194147509, -0.0222101081, 0.0308405831, -0.0142441029, 0.0166346692, 0.0454283766, 0.00585039286, 0.00341591169, -0.0373936333, -0.0106238862, 0.00322306249, -0.00884432811, -0.0135796331, 0.00936368387, -0.00298820669, 0.00767195784, 0.00770250848, -0.00277053542, -0.0250360165, -0.0215838253, -0.033391539, 0.0657443628, -0.019628603, -0.00518210419, -0.00601078244, 0.0196744278, -0.0255859215, -0.0129686259, -0.0219046045, -0.0463754386, -0.0251123924, 0.0070685884, -0.00664852094, -0.0113952821, -0.00803474337, -0.0052546612, 0.0283507295, -0.012563834, -0.0169248972, -0.0459171832, -0.0187120922, -0.0140989888, 0.0269606877, 0.0212324969, 0.0106467986, -0.0376380384, 0.0162527896, 0.00539595634, 0.0418234356, 0.0489416681, 0.00567091, -0.0329332836, -0.00821804535, 0.0239362027, -0.0037634219, -0.0153744658, 0.0262580309, 0.0330860354, -0.010769, -0.00230273302, -0.0328721814, -0.0231877193, 0.0129915383, -0.00170031819, -0.00533867441, -0.0139538748, 0.0077063269, 0.00717933336, 0.0166652184, -0.0570069626, 0.0312224627, -0.0293130651, -0.011471658, 0.00806529354, -0.0133352298, -0.0203159861, -0.0447868221, -0.0190634225, -0.00107212656, 0.0102420067, 0.0118153496, 0.012525646, -0.0277549978, 0.00547997, 0.00300539122, -0.0336664915, -0.00816458277, 0.00796600524, 0.031864021, 0.0318029188, -0.0332387872, -0.0444813184, 0.0117847994, 0.0011198615, 0.0054837889, -0.0287173335, -0.0280605014, -0.013801123, 0.0281521529, 0.00391808292, 0.000185569545, 0.00610625232, -0.00565181579, -0.00859992485, -0.000792399864, -0.00089025643, 0.0137018347, 0.019995207, 0.00947061, 0.00756885065, 0.0106544364, -0.00558689609, 0.0256317481, -0.00578547362, -0.0047811307, 0.00399445882, 0.0095087979, 0.00443743914, 0.0190939717, -0.028625682, -0.0238292776, -0.0629337281, -0.0092567578, 0.014129539, 0.00856937468, 0.00254140771, -0.012999176, 0.00272280048, -0.0102267312, 0.00188075623, -0.0232335459, -0.0121819545, -0.0170623735, 0.000340827391, -0.0296338443, 0.00748483697, 0.0138087608, -0.00545323826, -0.00638502417, 0.00680127274, 0.00963099953, -0.0332387872, -0.00545705715, 0.0147787342, 0.00244593783, -0.0186509918, -0.00172895915, -0.0237987265, 0.00893597864, 0.00501407683, 0.0270217899, -0.00832497142, -0.00180628977, 0.00385507289, 0.00729389722, 0.0163444392, -0.0118382629, 0.00144445896, -0.000253472477, -0.00974556338, 0.0121972291, -0.0083326092, 0.0182385612, -0.0104482211, -0.013472707, 0.00105589663, 0.0290686637, 0.0241195057, -0.0262122042, -0.0402348191, 0.0197508037, 0.0118000749, -0.00953171123, 0.0132130282, -0.01631389, 0.00940951, -0.0151988016, -0.00192371767, 0.00686619245, 0.0384017974, 0.00100625237, 0.0541352294, -0.00245166593, -0.0248679891, 0.0168179702, -0.0261511039, 0.0182691123, 0.00659123901, 0.0187120922, -0.00837843493, -0.0131290155, -0.00693111168, 0.0034063647, 0.00336244842, -0.00189316727, -0.0163749903, 0.0297102202, -0.0175817292, -0.00807293132, -0.00237147138, -0.018605167, -0.00579693, 1.4902248e-05, 0.0212935973, -0.00219771615, 0.0191703476, -0.0054188692, 0.000449901709, -0.0260289032, -0.0292825159, -0.00671725953, 0.0208964422, 0.0207895171, -0.000528903038, 0.0182232875, 0.00802710559, 0.0474141501, -0.00116568699, 0.0065836017, -0.00834024698, 0.0213241484, 0.00504080858, -0.00890542846, 0.000199412665, 0.0113189062, -0.0261358283, -0.0100205168, -0.0307947583, -0.0321389735, -0.0179177839, 0.0178261325, 0.00460928492, -0.00310277054, -0.016970722, -0.0159167349, 0.0166346692, 0.0205909386, 0.00602223864, -0.014931486, 0.00261778361, 0.00640793703, -0.00448708329, -0.0308100339, 0.00325170346, -0.0055830772, -0.00347510283, 0.00788199157, -0.031650167, 0.0102420067, 0.0148627479, -0.00260059908, -0.000196071225, 0.00639648037, -0.0158098079, 0.0150460498, 0.00635829289, 0.0290228371, -0.0153591912, -0.0257234, 0.00668289, -0.0175970048, 0.000386891596, 0.0270981658, 0.0153744658, 0.00506754033, -0.00769105181, -0.0175511781, -0.000177931957, -0.0274800453, -0.00202396093, 0.000499784714, 0.00901235454, -0.00594204385, -0.0124874581, 0.00764140766, 0.00822568312, -0.0122048669, 0.00549906399, 0.0251429416, 0.00468184194, 0.0252345931, 0.0410596766, 0.0111050541, -0.0219657049, 0.00828678347, -0.00847008638, 0.00563654071, 0.0159778353, 0.00760321971, -0.0212172214, 0.0151682515, 0.00820277072, -0.00571291661, 0.0239209272, 0.00746192411, 0.0201785099, -0.00569382263, 0.0133581432, -0.00915746856, 0.00771396467, 0.0118153496, 0.0241042301, 0.0060451515, -0.00670198398, -0.0255400967, 0.0129457125, 0.0150078619, 0.00215761876, 0.00420831144, 0.0100281537, 0.0319862217, -0.0259372517, 0.0409069248, 0.0060566077, -0.0175053533, -0.0107231745, -0.0059802318, -0.0227905642, 0.0209117178, 0.00240965933, 0.014274653, -0.000335337885, 0.00814930722, 0.0046398351, -0.0242264308, -0.0231113434, 0.0186815429, 0.00505990256, 0.0184524152, -0.0268537626, -0.00532721821, -0.043595355, 0.00189889548, 0.018864844, 0.039807111, 0.024654137, -0.0113570942, 0.00182442903, -0.0266093593, 0.000891211152, -0.00570909772, 0.0104634967, 0.0227447394, 0.00798891764, -0.0344608, -0.0185593404, 0.0111279665, -0.0243639089, 0.0188190192, -0.00624372903, 0.00944769755, 0.0129686259, 0.00879850239, -0.000263974158, -0.0115480339, 0.00146164361, -0.00533485599, 0.0368437283, -0.00556016481, 0.0164055414, 0.0125027327, 0.00746574299, 0.00333762635, 0.0097379256, 0.0233404711, -0.00758794462, 0.0173526015, -0.0224392358, -0.00903526787, 0.00154374761, 0.00679745385, -0.0245166607, -0.00913455617, -0.00245739426, -0.00828678347, 0.0123881688, 0.00716023939, -0.0114029199, -0.0201326832, -0.00451381505, 0.00276862597, -0.00901235454, 0.00714114541, -0.000551338424, 0.00947061, -0.0020067764, -0.0168790706, -0.014274653, 0.0319251195, 0.0240431298, -0.0111508798, -0.00536922505, 0.0140531631, 0.0161916874, 0.0148551101, 0.0284423809, -0.0113494573, 0.0292977914, -0.00459401, -0.0166499428, 0.0101809055, -0.0107308123, 0.0252651442, 0.00649958802, 0.00829442125, 0.0444507673, -0.0218129531, 0.035652265, 0.000983339502, -0.0164208151, 0.0157181583, -0.0058160238, 0.00905054249, 0.00504844636, 0.00109885808, -0.000118621298, 0.0205756649, -0.0138774989, -0.0396849103, -0.0392266549, 0.0155806812, 0.03262778, 0.00907345582, -0.0184524152, -0.0192772746, 0.00669816555, -2.56202316e-06, -0.0112425303, -0.0159778353, -0.00672489684, 0.0384628959, -0.00652632, -0.00906581804, 0.0292672403, -0.0212324969, 0.0228058398, -0.000975701958, -0.0129686259, -0.00725570926, -0.0450617746, -0.0222712085, -0.00862283818, 0.0374547355, 0.000968064356, -0.0387684, -0.0260594524, 0.0288548097, 0.00209460873, 0.0138316732, -0.00530048646, 0.018208012, -0.00170127291, 0.00890542846, 0.00318487454, -0.00551815797, 0.00527757406, 0.00128979783, -0.00416248571, 0.0182385612, -0.0147023583, -0.00850063656, -0.0137782097, 0.0170012731, 0.0291450396, -0.000656355289, 0.008485361, 0.0133581432, -0.00771778356, -0.0237987265, -0.0161916874, 0.00773305865, -0.0142364651, 0.0141600892, -0.00569000375, 0.0104787722, -0.0314974152, 0.0391350053, -0.0218129531, -0.0126936724, -0.00103775738, -0.0104940468, 0.00984485168, -0.00355147873, 0.00947824772, 0.00378824398, 0.013403968, -0.0272509176, 0.0130220884, 0.0188495684, -0.00984485168, 0.00617880933, 0.00924148224, -0.0483001098, 0.0290381126, -0.0107308123, 0.0192161743, -0.0178566817, 0.000491669751, 0.000258723332, 0.0194605757, -0.0120750275, -0.00576256076, -0.0138163976, -0.0271592662, 0.00217098463, 0.0100587048, -0.0211408455, 0.00819513295, 0.0012936166, -0.00679745385, -0.0107231745, -0.00820277072, -0.0425260961, -0.0044068885, 0.00292710587, 0.0188190192, 0.00354384119, 0.012854062, -0.0102038188, -0.00937132165, -0.0129304379, -0.0295574684, -0.0160389356, -0.0222559329, 0.00911164377, 0.0304128788, -0.0126249343, -0.0258608758, 0.00351520022, 0.000582843495, -0.0312377382, 0.000677836, 0.00367749901, -0.00202777982, 0.024180606, -0.00477731181, 0.00214234367, -0.00354766, 0.00126211159, -0.00545323826, 0.00537304347, -0.0225156117, -0.00734736025, -0.0110745039, -0.00691583659, -0.0329943821, -0.0309780594, -0.0102496445, -0.0166193936, 0.0100205168, 0.0117084235, 0.0112043424, -0.000600982748, 0.0242111571, -0.00895125419, -0.0167110451, 0.0310391616, -0.00138049421, 0.0208811685, 0.0133428676, 0.0204534624, -0.0140989888, -0.0191092473, -0.019231448, -0.00491096964, -0.000526516291, -0.00282781734, -0.00681654783, 0.00940187182, 0.0236459747, 0.00552961417, -0.0192467235, -0.0233251955, 0.0287784338, -0.0158250835, -0.0432898514, 0.026548259, -0.00293092476, 0.0113800075, -0.0105016846, -0.00255859224, 0.038493447, 0.0228516664, -0.0261052791, 0.00370232109, -0.0107079, -0.00990595296, -0.00214425311, -0.0309322346, 0.00627427921, 0.0102649191, 0.0266551841, 0.00535395, 0.00233710208, 6.9872e-05, 0.0182538368, -0.0177650321, -0.00117523398, 0.00105016842, 0.0112119801, 0.0152904531, -0.0161000378, -0.0110439537, -0.00830205902, -0.0250360165, 0.0296491198, -0.0116244098, 0.0214921739, -0.0133963311, -0.0244555585, -0.00197431678, 0.0184371397, -0.00787435379, -0.0480557084, 0.0124492701, 0.000733208493, -0.0126631223, -0.0103336573, 0.00461692223, -0.00362976408, -0.0114258332, 0.0219504293, -0.00886724051, -0.0225308873, 0.00906581804, 0.012854062, 0.0194758512, 0.0183607638, -0.0117466114, 0.0158556346, -0.0176122803, 0.0106009729, 0.00881377701, -0.00325552211, 0.0318945721, -0.0124339946, -0.00370614, 0.00767577672, -0.0252345931, 0.0130220884, 0.00847772323, -0.0141371768, -0.00351329078, 0.000420783414, 0.0110974163, -0.0186357163, 0.00083536125, 0.00807293132, 0.013403968, 0.0134421559, -0.00670580287, -0.0115403971, 0.00445653312, -0.00599550735, -0.0121666789, 0.0230349675, -0.0120215649, 0.00779415946, -0.00977611355, -0.00594968162, -0.00420067366, -0.00919565652, 0.0163444392, 0.0121666789, 0.00918802, 0.0196133275, 0.0451839752, 0.0157945342, 0.0141219012, 0.00699603138, 0.0154661173, 0.0319556706, -0.0128617, -0.013182478, 0.0177192055, 0.0176581051, 0.0112730814, -0.00444507645, -0.00382070383, -0.0380962938, -0.0139997005, -0.00395627087, -0.00410138536, 0.0143663045, 0.0313446634, -0.00622463506, 0.00663706474, -0.00588858081, -0.004716211, -0.00720606511, 0.0029022838, 0.00173659669, -0.00669816555, -0.000805288262, 0.00345028075, 0.0256470237, 0.0143739423, -0.00904290471, -0.0146870837, 0.0239209272, 0.0143357543, 0.0076834145, -0.0162222385, -0.0253873449, -0.0130144516, -0.00651104422, -0.00332617, -0.000685473613, -0.0101656308, -0.00202396093, 0.0140149752, 0.026441332, 0.0116320476, -0.00316196168, 0.013617821, -0.00719079, -0.00539977523, -0.00399064, 0.00475058, -0.00606806437, 0.00167549599, -0.0188190192, 0.0211102962, 0.0130984643, 0.00118191692, -0.0480557084, -0.00570146, 0.00127070385, -0.00226454507, 0.0115480339, -0.00396008976, 0.00982957706, -0.0176886562, -0.0128846122, 0.0110745039, -0.0267773867, -0.0125791086, -0.00408229139, 0.0108224628, -0.00953934807, 0.0272203665, 0.00661033299, -0.0173526015, 0.00778652169, 0.00643848721, -0.00439925119, 0.0114029199, 0.00889015291, -0.00509809051, -0.0142059149, -0.0256622974, 0.00190653314, -0.0100357914, 0.018864844, 0.00550288288, 0.0161000378, 0.0242722575, -0.0113876453, -0.0100587048, -0.00409374759, -0.0196744278, 0.000216835921, -0.00686237356, 0.0176122803, 0.00784380361, 0.00367749901, 0.00986776501, 0.000510763726, 0.026181655, -0.00251276675, 0.00177478464, 0.0250054654, 0.0212477725, -0.0173067767, -0.00850827433, -0.00519737927, 0.00110458629, -0.0112654436, 0.0138240354, 0.0121514034, -0.0194147509, 0.00596495671, -0.0154432049, -0.0096921, -0.00743901124, 0.00744283, -0.00366986147, -0.00727480324, 0.000874981284, -0.00634301733, -0.0136101833, -0.00478494959, -0.0262885801, -0.00443743914, 0.00853118673, -0.00504462747, -0.0345830023, -0.00372905261, 0.0141371768, -0.0037634219, -0.0236459747, 0.00371568697, 0.0201632343, 0.00262542116, -0.0058160238, 0.00862283818, 0.0011761887, 0.00638120528, 0.00404410344, -0.0344302505, -0.0150078619, -0.00240774988, 0.0158556346, -0.0108224628, -0.0120826652, -0.000417441974, 0.0059038559, -0.0162833389, -0.0336970426, -0.0054188692, -0.0128464242, 0.00690819882, -0.00412811665, -0.00947824772, -0.00942478422, 0.0212477725, 0.0112730814, -0.00224736053, 0.000484032178, -0.00542650698, -0.0193689261, 0.00187980151, 0.00854646228, -0.0137171093, -0.00924912, -0.0100739794, 0.00741228, -0.0185135156, -0.0263191313, 0.000174829183, -0.0065072258, 0.00865338836, 0.00188743917, 0.00367940846, -0.00512864068, -0.0104405843, -0.00792781729, -0.0133810556, 0.0104405843, -0.0123270685, 0.00293092476, 0.00718697114, -0.00250131031, -0.00747719919, -0.00314477715, -0.0209422689, 0.0222559329, 0.0208200663, 0.0143739423, -0.00985248946, 0.0203465372, -0.0118153496, -0.0222712085, 0.0159014594, -0.0232029948, -0.00830205902, -0.0247457884, -0.00568236597, 0.00339681772, -0.0291144885, -0.00697693741, -0.00607570168, 0.00408611, -0.0195064023, 0.0127165858, 0.0112654436, -0.0220879074, -0.0141830025, 0.00793545507, 0.00028879632, 0.00884432811, 0.0317112692, -0.0103031071, 0.00336244842, 0.000812925864, 0.00543414429, 0.00511336559, -0.00584275555, 0.0261663795, 0.0235084984, 0.00763758877, -0.0264566075, -0.00403646566, 0.0172456764, 0.00686237356, 0.00248985388, -0.0166652184, 0.00857701246, 0.010769, -0.0217518527, 0.00283545488, -0.00903526787, 0.0207436904, 0.00800419319, 0.00297293137, -0.000159554009, 0.00606424548, 0.0178719573, 0.000205140866, 0.000990977162, -0.0201326832, 0.000945151609, -0.00437633833, -0.00539595634, 0.0128158741, -1.65431375e-05, -0.0114792958, 0.00832497142, 0.00354956929, -0.00899708, 0.0076834145, 0.00164876448, 0.0137782097, 0.014786372, -0.00168122421, 0.00212897779, -0.00611388963, 0.0254484452, 0.00275716954, -0.0208811685, 0.0229738671, 0.00729389722, -0.0246235859, 0.00193230994, -0.00718315225, 0.0159320105, -0.00113418198, 0.00577783585, 0.00343500567, 0.0156723317, -0.00619408442, 0.0195827782, -0.00326316, -0.00829442125, -0.00611388963, 0.0197508037, -0.0117924372, -0.0043954323, -0.00548760733, -0.0131213777, -0.00860756263, 0.00139386, 0.0168332458, 0.0112730814, 0.000938468729, 0.0149162104, 0.0286104083, 0.000328893657, -0.00527375517, -0.00238865591, 0.0257234, 0.00630101096, -0.028075777, 0.00724807195, 0.0189106707, 0.00547615113, 0.00263114925, 0.0154279293, 0.0242569819, 0.0352245606, -0.0239973031, -0.0101274429, 0.0340941958, 0.0169096217, 0.0105322348, 0.00818749517, -0.00674399082, 0.00704567553, 0.0114258332, 0.0126631223, 0.00384743535, -0.0236307, -0.00922620762, 0.00203541736, -0.0083096968, -0.00162394228, -0.00482313754, 0.00240393099, -0.00332426047, -0.0389211513, -0.00782852806, 0.000177812617, 0.014129539, 0.0192619991, 0.00816458277, -0.0236459747, -0.00669816555, -0.0168485213, 0.0240889546, 0.0211408455, -0.0141142644, 0.0171387494, 0.0103031071, 0.000846340321, -0.00962336175, -0.00293092476, 0.0103642084, -0.00467802305, 0.00609479565, 0.0018282478, -0.00726334704, -0.00894361641, -0.0316196159, -0.0176428296, -0.0243333578, 0.00212134025, 0.00254331715, -0.00914219394, -0.00654541375, 0.00588476192, 0.014893298, 0.0301684756, -0.0146488957, 0.0185593404, -0.0214616247, -0.0013289405, 0.0130831897, 0.0173526015, -0.00461310381, -0.0137858475, 0.00617117155, 0.0161153115, -0.00376151246, -0.00937895942, -0.00860756263, 0.0124645447, 0.00205069268, 0.00257959566, -0.0247152373, -0.00814930722, 0.00944769755, -0.00133180455, -0.00801183097, -0.0052661174, 0.0202090591, 0.00751920603, 0.0134574315, -0.00264069624, -0.0159320105, -0.00104921381, -0.00139672402, -0.00185211527, -0.023523774, 0.00170795585, 0.00322306249, 0.00850063656, -0.00502171461, -0.0113418195, -0.00468566082, -0.00498352665, 0.00770250848, 0.00115518528, 0.0107995505, 0.0107766381, 0.0122659672, 0.00894361641, 0.0126936724, -0.000327700283, -1.03898055e-05, -0.00168981648, 0.000682132144, 0.000848727068, 0.01460307, 0.00773305865, -0.0127394982, -0.0104940468, 0.00634301733, -0.00354956929, 0.0143892169, -0.0297254957, -0.00327270688, -0.00182061025, 0.0077063269, 0.0204381868, 0.0118993632, -0.04057087, -0.00940187182, -0.00631246716, 0.0124645447, -0.0043954323, 0.0185746159, -0.00882905256, -0.00355147873, 0.0302906763, 0.0124950949, -0.0197049789, 0.00478876801, 0.0117466114, -0.00317341811, -0.0123347063, 0.00591149367, -0.0127394982, 0.00407083472, 0.018101085, -0.0121666789, 0.0300157238, 0.00328034442, 0.00183874951, 0.0275105946, 0.000412429799, 0.00763758877, -0.00336053898, 0.00891306624, -0.0122430548, -0.00354956929, -0.0209880937, 0.00241920631, -0.00728244102, -0.0130602764, 0.0172609501, 0.00625518523, -0.0156341437, -0.00624372903, -0.0213852488, -0.00876031443, 0.025417896, -0.00783616584, 0.0103031071, 0.00741609884, -0.0229891427, 0.00649195025, -0.000113310787, 0.000933695235, 0.0102496445, 0.00609097723, -0.00405174075, -0.007629951, 0.0141142644, 0.00535013108, 0.00860756263, 0.011578585, 0.00651486311, 0.00654541375, 0.00827150885, 0.00265024323, 0.00493006362, -0.0225919876, 0.00894361641, 0.00434196927, 0.0060451515, 0.00185211527, -0.00659123901, 0.00338918, 0.0143968547, -0.0232182704, 0.0227294639, -0.0155806812, 0.0128617, 0.00436870055, 0.00302066631, -0.0254026204, 0.00207360531, -0.00176428305, -0.0124339946, -0.00303785084, 0.00330516649, -0.00987540185, 0.010051067, -0.00129075255, 0.0172762256, -0.0133275921, 0.00275144144, 0.0128998877, -0.00418157969, 0.000592390483, -0.0258608758, -0.00738936709, 0.000612916483, -0.0257386733, 0.0128769744, 0.00682036672, -0.00960808713, 0.00859228708, 0.0159320105, 0.00179578806, 0.00766432052, -0.0107308123, -0.0224086847, -0.00377105945, -0.00188075623, -0.0162222385, -0.008156945, 0.00314668659, 0.00349610625, 0.00417394238, -0.00240202178, -0.021049194, 0.00944769755, 0.00178433163, -0.00465129176, 0.0150918756, 0.0147787342, 0.00119241851, 0.0024745788, 0.00371568697, 0.0214463491, -0.0145801567, -0.00624754746, 0.0231113434, 0.00603751373, -0.0101809055, 0.00616353424, 0.00242111576, 0.00747719919, 0.000761849456, 0.012235417, 0.00847772323, 0.0144274049, -0.00685473578, 0.0100587048, 0.0120673906, -0.00622845348, 0.0035342942, -0.004552003, 0.00370804942, 0.000117845608, 0.0365687758, 0.0193078239, 0.000534153893, 0.0133810556, 0.0259983521, 0.00635065511, -0.0162222385, -0.00264069624, -0.00370995863, 0.0134879816, 0.0258608758, 0.00042961436, 0.0137476595, 0.0208506174, -0.0035285661, 0.00667525269, 0.00537686236, -0.0186662674, 0.00738936709, -0.00707622617, -0.0173220523, -0.0141982771, -0.00541505031, -0.0119146388, 0.00769105181, 0.00530048646, -0.00140245224, -0.000703612866, 0.0111508798, -0.0101045296, 0.0243180823, 0.00124301761, 0.00484986883, 0.0122812428, 0.000937514, 0.00923384447, 6.62322127e-05, 0.0168332458, 0.0161000378, -0.00431141909, 0.0103642084, 0.0216143765, -0.0134345191, 0.00808820687, 0.00674017193, 0.00110554101, 0.0194147509, 0.00158670906, -0.0065950579, 0.0257692244, 0.00514773466, 0.00790490396, 0.00508663431, 0.0138163976, -0.00481931865, -0.00125924742, 0.000286886934, 0.00523174834, 3.98885022e-05, -0.0234015714, 0.0125485584, 0.00773305865, 0.00129075255, 0.00284309243, 0.01460307, 0.014748184, 0.00161821407, 0.0135414451, 0.0166346692, -0.0141753647, 0.0171387494, 0.0114487456, -0.00304166973, -0.0161458626, 0.034155298, 0.0198119059, 0.0104940468, 0.00638120528, -0.00766050164, 0.0191397984, 0.00779034058, -0.0185440648, -0.0218435042, -0.00244784728, 0.00918038189, 0.00855409913, 0.00550288288, -0.0121819545, 0.015328641, -0.0162680633, 0.00195140392, -0.00361448899, -0.0160236619, 0.00347701227, -0.00998232886, 0.00803474337, -0.0242417064, 0.00422358653, 0.0095851738, 0.00134039682, 0.0245013852, -0.017077649, -0.00698457472, 0.000244283496, 0.00503698969, -0.0148551101, -0.00244593783, -0.0138240354, -0.0156723317, -0.0160389356, -0.00358966668, 0.0116702355, 0.00811875705, 0.0219351556, 0.0082562333, -0.0236154236, 0.0196438786, 0.00859992485, 0.0106009729, -0.00842426065, 0.0119222756, 0.00782852806, 0.0128158741, 0.000500262075, -1.91088893e-05, -0.0194605757, 0.00288318982, -0.00295001874, 0.0181469116, 0.00871448871, 0.0016143953, -0.0292672403, 0.0106238862, -0.00585803064, -0.0058160238, -0.00732444786, 0.0127165858, 0.00126783969, 0.0125943841, 0.00711059524, -0.0111890677, -0.000643466832, 0.00317914644, 0.00984485168, -0.00706476951, -0.0096921, -0.00710295746, -0.0128693366, 0.0252193175, 0.00524702342, -0.0177497566, -0.0221490078, -0.0226836391, -0.0247916132, -0.00819513295, 0.0222559329, -0.0180247091, -0.0146488957, -0.00190844247, 0.0225308873, 0.00226263562, -0.00683946069, 0.00203541736, 0.00497207046, -0.00262351171, 0.00641557435, -0.0131672034, 0.021049194, 0.0392266549, -0.00339490827, 0.000365888234, 0.0212477725, -0.00328034442, 0.0147634596, -0.014457956, 0.00396008976, 0.00510954671, 0.0202548858, -0.0061329836, 0.00350183435, -0.0328721814, 0.004552003, -0.0278160982, 0.00805001892, -0.0139920628, -0.00367368013, -0.00315432413, 0.00921093207, -0.0326888785, 0.00160007481, 0.0285187569, -0.0107766381, -0.0142211905, 0.0150995133, 0.000685473613, 0.00378633454, 0.014312841, 0.00378633454, 0.00783616584, 0.00886724051, 0.00377487834, -0.022393411, 0.0136941969, -0.000660174061, -0.000733685854, -0.00862283818, -0.0376685895, -0.0107460869, -0.029756045, -0.0027037065, 0.0124263568, -0.014786372, 0.0230807941, -0.00882905256, -0.0197813548, 0.0151835261, 0.00581984269, 0.00641557435, -0.0117389737, 0.0224086847, 0.00858465, 0.0239514783, -0.0118459, -0.00321733416, -0.0154432049, 0.015366829, -0.0143204788, 0.00905818, 0.00791254174, 0.0347357541, 0.0116244098, 0.0359883197, 0.00235428684, -0.00337199541, -0.0198882818, 0.000480213406, 0.00547615113, -0.0076948707, -0.0264871586, 0.00452527124, 0.0131366523, -0.00618262822, -0.00228554849, 0.00636974908, 0.0161458626, 0.0174289774, 0.0069922125, 0.0147940097, -0.0162833389, 0.0237681754, -0.00940187182, 0.0197202545, -0.0182843879, -0.00821804535, 0.0046283789, -0.0190175958, 0.00418539857, 0.0213699732, -0.0031314115, -0.00620172219, 0.00303976028, 0.00488805678, 0.00159625604, -0.0284576565, -0.00691583659, 0.0101809055, 0.00843953528, 0.0012325159, -0.00889015291, -0.0125867464, -0.00453672791, -0.00396008976, 0.011326544, 0.0257692244, 0.00183874951, 0.00179292401, 0.0120597528, -0.0135032572, -0.00677836, -0.00148360163, 0.0110134026, 0.0179177839, 0.0150689622, -0.00766813895, 0.0010587608, -0.016787421, 0.0232029948, 0.00167740544, -0.0041548484, -0.00153133657, -0.00141486328, 0.00140722573, 0.019521676, -0.0116396854, 0.00331662293, -0.00741609884, -0.0134879816, 0.00123538, 0.0162833389, -0.0119910147, -0.00218244107, 0.00687764864, 0.00551052, 0.0357133634, 0.00960044935, -0.017077649, -0.0143586667, -0.0129457125, -0.00436106324, -0.0154890297, 0.00830205902, 0.000141295386, 0.0103565706, 0.0115862219, -0.00582366157, -0.00192562712, -0.00356866326, 0.0246388614, 0.00247839745, 0.0172151253, -0.0252956934, -0.000636783952, -0.00068786036, -0.00495297648, 0.0458255336, -0.0136712836, -0.0251582172, -0.0218435042, 0.0114487456, 0.00113227253, -0.00280872337, -0.00652250089, 0.00741991727, -0.0015122426, 0.0208811685, -0.0163597148, -0.0136865592, 0.0150078619, -0.0136025455, 0.00601460133, 0.00776742771, 0.0166193936, -0.00749247475, -0.00438779453, -0.0360494182, 0.00639648037, -0.0460393839, 0.00313523016, -0.000664470252, -0.00357630104, 0.00853118673, -0.00818749517, 0.00453672791, 0.0148551101, -0.0292366892, 0.0189259443, 0.00621699728, -0.00795836747, -0.00961572398, -0.0115862219, -0.0159320105, -0.0114029199, 0.000363024155, 0.0164819174, -0.00919565652, -0.0191397984, 0.0290686637, 0.00586184952, 0.00113131781, -0.0112654436, -0.00723661529, -0.0144961439, 0.00214425311, 0.00294810929, -0.0176581051, -0.0155272176, -0.0110210404, -0.00404410344, 0.00732062897, 0.00879086461, -0.00615207758, 0.0139691494, 0.0126249343, -0.0178719573, 0.000733685854, -0.0031065892, -0.00824095868, -0.00748101808, 0.00743137393, -0.0224545114, 0.014931486, 0.00934840832, 0.00546851335, 0.00297102192, 0.00313523016, 0.00569000375, -0.000307412934, 0.0130068138, -0.000682609505, 0.0225767121, -0.00410138536, 0.0144732306, -0.00869157631, -0.00991359, 0.00926439557, 0.00349037815, -0.00312759262, -0.0140378885, -0.0174748022, -0.00107594533, 0.00565181579, 0.000830587756, -0.0227294639, 0.0132664917, -0.00741228, -0.00533485599, 0.0194758512, -0.0155043053, 0.00484605, -0.00553343305, -0.00707622617, 0.0139691494, -0.00662560808, 0.00238865591, -0.0120139271, 0.000288080308, 0.00845481083, -0.00656450773, 0.0330554843, 0.00621699728, -0.00792781729, -0.000889301766, 0.00260059908, 0.0160236619, 0.0039257207, -0.00166976789, 0.00918038189, -0.0116549609, -0.036965929, 0.0315890685, -0.00146355294, 0.00785907917, 0.00117141521, -0.0142211905, 0.0231418945, 0.0239973031, 0.0119604636, -0.0175053533, 0.00522792945, 0.00908109266, -0.000522697461, -0.00827914663, -0.0163597148, -0.00360876066, -0.00392953958, -0.0137018347, 0.0112043424, -0.0115174837, 0.0244861096, 0.00939423405, 0.0332082361, -0.0253873449, -0.00529284915, -0.0211255699, -0.00998232886, -0.00123347063, -0.0163749903, -0.0362632722, 0.0059802318, -0.013510895, -0.00163730804, -0.00161725946, 0.00203159871, 0.00695784343, -0.0221031811, -0.0141219012, 0.00372332451, 0.00563272182, -0.00931785814, 0.00930258352, -0.00427704956, 0.00443362026, 0.0237223506, -0.0173831526, -0.000775215274, 0.00887487829, 0.0162527896, 0.0175511781, -0.009432422, 0.013403968, 0.00807293132, -0.0124492701, 0.00788199157, -0.00536922505, -0.0370881297, -0.0134268813, 0.00890542846, 0.0153591912, 0.00168886187, 0.00722134, -0.0020067764, 0.000356102566, -0.00353047531, 0.022393411, 0.0069922125, -0.0225156117, 0.0177650321, 0.00227027317, -0.0143510289, -0.00311613618, 0.0043954323, -0.00219771615, 0.000185927551, 0.0133275921, 0.00162107823, 0.00316959945, 0.0093560461, 0.00927203242, -0.015221714, 0.011723699, -0.00186548103, -0.0273731183, -0.00243066251, -0.00216525653, 0.0141600892, -0.00940951, 0.00356293516, 0.0021996256, 0.00110649562, 0.00377296889, 0.0020831523, -0.0317418203, 0.00889015291, 0.00863047503, -0.00937132165, 0.00393335801, -0.00915746856, -0.0176122803, -0.022943316, -0.00222062902, -0.000457061949, 0.00530430535, -0.0172915012, -0.0070571322, 0.00531576201, 0.0148245599, 0.0241347812, 0.0151377013, 0.00853882451, 0.00214998121, 0.00684709847, 0.00047448519, 0.00105303258, 0.0232335459, -0.00682418561, 0.0015943466, -0.00638502417, -0.0131519279, -0.0176122803, 0.00261587417, 0.00346937473, -0.00102725567, -0.00999760348, 0.00407465361, 5.9817834e-05, 0.00996705331, 0.00244211894, 0.0131595656, 0.00390471728, -0.00940187182, 0.0330860354, -0.0133123174, 0.0206062142, 0.0175817292, 0.00583893666, -0.00383025082, 0.000579502, 0.00444889534, 0.00803474337, -0.0043954323, -6.62322127e-05, 0.00941714738, 0.0108988388, 0.00381115684, -0.0161916874, 0.0158861838, 0.0124874581, -0.0173984263, -0.0113112694, -0.0224697869, 0.0098372139, -0.00574346678, -0.013220666, -0.00914219394, 0.00611388963, 0.0135872709, -0.000421499426, -0.00407083472, -0.00744283, 0.00406701583, 0.0193078239, 0.00231228, -0.00211370271, 0.00163158, 0.000846340321, 0.0126325721, 0.00310467975, -0.00240965933, 0.00449854, -0.0201326832, -0.00298056891, 0.0177497566, -0.00975320116, -0.00554488925, 0.0114181954, -0.0112348935, 0.00637356797, -0.00273616612, 0.0314974152, -0.025708124, 0.0155883189, -0.00553725194, -0.0307489317, 0.00770250848, -0.0121208532, -0.00767577672, -0.0282896291, -0.0114181954, -0.014893298, 0.0139538748, -0.00970737543, -0.0101350807, -9.03383552e-05, -0.0185746159, -0.00573582901, 0.0239056535, -0.0168637969, 0.00709532, 0.0119910147, -0.00285263942, -0.0257692244, -0.024180606, 0.0045634592, -0.000944196887, -0.0214005243, 0.0179636087, 0.0251429416, 0.00173373264, -8.0433354e-05, 0.0185746159, -0.0201937854, -0.0216754768, -0.00309895165, -0.0268537626, -0.0200868584, -0.00196476979, -0.0248527136, 0.000767100311, -0.00812639482, 0.00280681392, -0.0186509918, 0.00132034812, -0.0154737551, -0.00554107083, 0.00634301733, -0.0120062893, 0.014893298, -0.00518592261, -0.00919565652, -0.010669712, 0.00600314466, 0.00652632, 0.0192467235, -0.00217862218, -0.00755357509, 0.00669816555, -0.00802710559, -0.00688146753, -0.0061100712, 0.0107308123, 0.00511336559, 0.00761085702, -0.00306840125, 0.0160694867, 0.000258245971, -0.00088357355, -0.0131290155, 0.00105494191, 0.00130984653, -0.0138240354, 0.00790490396, 0.000224592848, -0.00783616584, -0.0102801947, 0.0150307743, -0.000911737152, 0.00907345582, -0.0244402848, -0.0128387865, 0.0307183824, 0.00151797081, -0.00337008596, -0.00899708, 0.00752302492, 0.0175970048, 0.00465511, 0.00252613239, -0.012418719, -0.000917465368, -0.0115251215, 0.00941714738, 0.0206978656, 0.0386767499, 0.00493006362, -0.00869157631, -0.000159434669, 0.0130755519, -0.00851591118, 3.61293751e-05, 0.0752760768, -0.00147309992, 0.0101809055, -0.0218587797, 0.0123881688, -0.0146412579, -0.0141524523, 0.0428316, -0.00683946069, -0.00116282294, 0.0197813548, 0.0269912388, 8.81306114e-05, -0.00163730804, -0.0100052413, -0.0181774609, 0.0107537247, -0.0189870466, -0.0137629351, -0.0285340324, -0.0189412199, -0.0164666418, 0.00786671601, -0.0246235859, 0.00158670906, 0.00914219394, 0.00103298388, 0.00873740111, 0.00157811679, 0.0194300264, 0.00141677272, 0.0197813548, 0.00894361641, 0.0101656308, -0.0226225387, 0.00311231753, 0.0191856232, 0.00366413314, 0.0103107449, 0.0105475103, -0.0101198051, -0.00637738639, 0.0106467986, 0.00692729279, 0.0102801947, 0.00526229851, -0.00641175592, -0.0334831886, 0.00559453387, -0.00295001874, 0.00597259449, -0.000541314133, 0.00565181579, -0.0211866722, -0.0039257207, 0.000441070762, 0.0106849866, 0.0070685884, 0.00577401696, 0.00395245198, 0.0194605757, -0.00107403588, 0.00544560095, -0.010379483, 0.00312950206, -0.0168790706, -0.00924912, -0.00615589647, -0.0329332836, 0.0161153115, -0.0140989888, -0.0237681754, 0.00997469109, -0.00832497142, -0.00110554101, 0.011288356, -0.000633919844, -0.00708386349, -0.00565181579, -0.0250818413, -0.0134574315, -0.0034521902, -0.0232946463, -0.0263344068, 0.00214234367, -0.0161916874, -0.0265329834, 0.00518210419, -0.015328641, 0.00177383, -0.00520119816, 0.00143873075, -0.0267010108, 0.0187884681, 0.000117964948, 0.0245777611, 0.00222062902, 0.00425413717, 0.00914983172, -0.00145209662, 0.0168026946, -0.00399827771, -0.01849824, -0.0252651442, -0.0234321225, 0.0154279293, 0.0132817673, 0.0103489328, 0.00276480708, 0.00914219394, 0.00392190181, -0.00357630104, 0.00523556722, 0.0123423431, -0.00467038574, 0.0110592283, 0.0034178209, -0.00839371048, 0.0263649561, -0.023890378, 0.0116320476, -0.0096386373, -0.00885196496, -0.00159721076, -0.00255286414, 0.00449472107, -0.00364313, 0.00785144139, 0.0315585174, -0.00798128, 0.0064423061, -0.016497191, 0.0116855111, -0.0130526396, -0.00295383739, 0.00465892907, 0.0184371397, -0.00493770093, 0.00499116443, 0.0168026946, -0.00640411815, -0.0147787342, -0.000682609505, 0.0238292776, 0.00252804183, 0.0182232875, -0.0204534624, -0.0185135156, -0.0419150889, 0.00212706858, -0.00429996243, 0.0103718452, -0.00915746856, 0.00574728567, 0.0167568699, -0.012418719, -0.0066714338, 0.0156723317, 0.0205298383, -0.0080805691, -0.0184065886, 0.0131977536, 0.00834788475, 0.0205145627, -0.0140149752, 0.00843953528, 0.019231448, -0.0174595285, -0.000164208162, 0.00692729279, -0.00565563468, -0.0119681014, 0.00788962934, 0.012854062, -0.00381306629, 0.00231037056, -0.00255477335, -0.0204229131, 0.0112730814, -0.0109904902, -0.000638693338, -0.005407413, 0.000882141525, 0.0445118658, -0.00269225, 0.010814826, -0.0118764509, 0.0119604636, 0.0351023562, 0.0220573563, -0.00371377752, 0.00285836752, -0.0317418203, -0.00186070753, 0.00329180085, 0.0067478097, -0.0170318224, -0.0191245228, -0.0209422689, 0.000838225358, 0.0120521151, 0.0131290155, -0.0242111571, -0.00358202914, 0.00898180436, 0.0109446645, 0.00728244102, 0.00678217877, 0.00108931109, 0.00410138536, 0.0065836017]
|
30 Mar, 2022
|
How to Install any Plugin on WordPress Website ?
30 Mar, 2022
In WordPress, we can create any website easily, and having more features as per the user’s need for adding these features we required something more for our WordPress website, and this extra thing is called the plugins which add more features to our WordPress website. The plugin is like the app for the WordPress website which adds more features to our WordPress website and makes it more dynamic and will support more features for the visitors.
With the help of the plugin, we can create the contact form for the visitors, and also we can make an Online shop with help of plugins.
Plugins are a piece of software that increases the functionality of the WordPress dashboard. Over 50, 000+ plugins are available in WordPress. However, it is suggested to use 15-20 plugins on a single website. WordPress plugins are written in the PHP programming language and integrate seamlessly with WordPress. They make it easier for users to add features to their website without knowing a single line of code.
Let’s see how we can install any WordPress plugin to our WordPress website step by step:
Installing the Plugin using the WordPress Plugin Directory: WordPress dashboard has a section from where we can install the plugin by searching the particular plugin in the search box. It is the simplest way to install the plugin on the WordPress website, In the WordPress plugin directory there are thousands of plugins available for free and we can use them for our website.
Let’s see how we can install plugins from the WordPress plugin directory –
Step 1: First go to the dashboard of the WordPress website by login into your WordPress dashboard and then go to the Plugin section and then click on “Add New”.
Step 2: Now search the plugin name which you want to install to your WordPress website in the search box and the plugin for which you are searching will appear. Here for the demo purpose, I’m going to install the “WP Form” plugin.
Step 3: Now the “WP form” plugin will appear on the screen, to install the plugin click on the “Install Now” button.
Step 4: After installing the plugin click on the “Activate” button to activate the plugin.
Step 5: After the successful activation of the plugin, the plugin name starts appearing on the WordPress dashboard.
Here our “WP form” plugin is successfully get installed on our WordPress website. This is how we can install any of the WordPress plugins from the WordPress plugin directory.
Installing the Plugin by uploading it to WordPress Dashboard:
Sometimes we want to upload the plugin with some of the customizations or the plugin did not available in the WordPress plugin directory that is why we need to upload the plugin using the plugin upload option.
Let’s see how we can upload the plugin from our computer to WordPress step by step –
Step 1: First go to the Plugin section and then click on “Add New”.
Step 2: After clicking on the “Add New” button you will be redirected to the Plugin area. Now click on the “Upload Plugin” button to upload the plugin which you want to upload to your WordPress website. For the Demo purpose here I’m going to upload the “Contact form” plugin.
After clicking on the “Upload Plugin” button, the upload dialogue box will appear for uploading the plugin.
Step 3: Now choose the plugin from your computer where you have downloaded the plugin, make sure that the plugin should be in the zip format.
Step 4: After choosing the plugin from your computer click on the “Install Now” button.
Step 5: After installing the plugin the activation dialogue box will appear on the screen, Now you have to click on the “Activate Plugin” button to activate the plugin.
Your Plugin has been successfully installed on your WordPress website.
Here the contact form plugin option will appear on the WordPress dashboard.
That is how we can install any WordPress plugin to our WordPress website by using these two methods.
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?/How to design datalists for mobiles using jQuery EasyUI Mobile ?/How to design menu using jQuery EasyUI Mobile ?/EasyUI jQuery menu widget/EasyUI jQuery datebox widget/How to make use of multi-mode jtsage-datebox plugin?/Step by step guide to make your first WordPress Plugin/Explain MonsterInsight Plugin in WordPress/How to Install any Plugin on WordPress Website ?
|
https://www.geeksforgeeks.org/how-to-install-any-plugin-on-wordpress-website?ref=asr9
|
CSS
|
How to Install any Plugin on WordPress Website ?
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, How to design menu using jQuery EasyUI Mobile ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, Step by step guide to make your first WordPress Plugin, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, EasyUI jQuery datebox widget, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, Explain MonsterInsight Plugin in WordPress, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, EasyUI jQuery menu widget, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, How to make use of multi-mode jtsage-datebox plugin?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to Install any Plugin on WordPress Website ?, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, How to design datalists for mobiles using jQuery EasyUI Mobile ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0240811035, -0.0115471827, -0.00994960684, -0.00912732538, 0.0263365041, 0.0140727619, 0.00559151452, 0.0156938303, -0.00313935359, 0.0285684112, 0.024410015, 0.00685430411, -0.02913226, -0.0598151088, 0.0206157733, -0.00977927726, -0.0385062695, -0.0102785192, -0.00264598452, 0.0279105846, -0.0193706043, -0.0175733324, -0.00198375434, -0.0158935282, -0.0341599248, 0.028685879, -0.0143899275, -0.00537713384, 0.0192178953, 0.0263834912, 0.0437453799, -0.000681319, -0.0064079226, 0.00562088192, -0.027534686, -0.0109422179, 0.0229416545, -0.00996135361, -0.0352876261, -0.00351525354, -0.00655475864, 0.00361510203, -0.00714210281, -0.040761672, -0.0158700347, 0.0389056653, -0.0084460061, -0.0335255936, 0.0249268785, -0.00266507315, 0.02525579, -0.00335960742, 0.0570428446, 0.0358044878, 0.00634918828, 0.0125104263, 0.0331027061, 0.00495718326, -0.0117527526, -0.00574128749, 0.05220313, -0.00641379599, 0.0191826541, 0.0211208891, -0.0452019908, 0.0436983928, -0.0210504085, 0.00969117507, -0.0158113, 0.0182311572, -0.0121580204, -0.00292350468, -0.0388821699, -0.0251853094, 0.00661349297, -0.00798200443, 0.016939, -0.000532647537, 0.0124164512, 0.0514043458, -0.0078997761, -0.0312936865, -0.0315286256, -0.00323920208, -0.0339954682, 0.00955021288, -0.0263834912, -0.0333376452, 0.0584994592, 0.0212148633, -0.0134736709, 0.0115471827, 0.0190299451, 0.0387177132, 0.00343302544, -0.000905978086, -0.0227772, 0.0172679126, -0.0157173239, 0.0273467358, 0.0211913697, 0.00763547141, -0.000927269284, -0.0304948986, -0.0343008861, -0.00928590819, 0.0318105482, -0.027534686, -0.00980864465, -0.0370496586, -0.0204395708, -0.0308238119, -0.00782342162, 0.0184543468, 0.00370614044, 0.0608488359, 0.01287458, -0.038623739, 0.00687779766, -0.0116059165, 0.0244335085, 0.0158230457, -0.00229504658, 0.0778583139, -0.0156703368, 0.0170564689, -0.0350057, -0.00872205757, 0.0332906544, 0.00430816785, -0.00953846611, -0.00748276198, 0.0210034195, 0.00974991, 0.0148832966, -0.00310411281, -0.0347707644, 0.0308238119, 0.0203925818, 0.00424649706, -0.0228124391, -0.0232705679, -0.0230356306, 0.00178405736, -0.00858696923, 0.0296491235, -0.0207567364, 0.0227889456, 0.0354755744, -0.0152826896, -0.0140492674, -0.0306828488, 0.00953259226, 0.0245744716, 0.0126044014, -0.0162929222, -0.00620822562, -0.00661936635, -0.0236347206, -0.0230356306, 0.00422006659, -0.0315756127, 0.0501356795, -0.00356224109, 0.0139317987, 0.0105193304, 0.035099674, -0.00389996404, -0.0235172529, 0.0246919412, -0.0118878419, 0.0084753735, -0.0156468432, 0.0156468432, -0.0466351099, -0.0108188763, 0.00414077519, -0.0251383223, 0.0133914426, -0.00361216534, 0.0175145976, -0.018689286, 0.00626108656, -0.0357105136, 0.0245979652, 0.0244804975, -0.00881603267, -0.0119759431, 0.0193588566, -0.0269708354, -0.005940984, 0.00663698697, 0.0124516925, 0.0104312291, 0.0212383587, -0.00997897424, 0.00435809232, 0.0364153273, 0.018195916, -0.010343127, -0.025349766, -0.0198169854, -0.0254907273, 0.000765749719, 0.0385062695, 0.00804073922, 0.0578886196, 0.02525579, 0.00127747317, 0.0153296776, -0.000842838606, 0.0309882686, -0.0136146331, 0.000939016172, -0.0283569675, 0.000244298368, -0.0329852365, -0.0180901941, 0.0204983037, -0.0230708718, -0.00166658848, 0.00185453857, 0.0230826177, -0.0156585909, -0.00386766, -0.0451785, 0.0331262, -0.026101565, 0.0270648096, 0.029531654, 0.0284274481, -0.00376193807, -0.002411047, 0.0043933331, -0.00945623778, -0.0231530983, 0.0268768594, -0.0247389283, -0.050558567, 0.0409731157, 0.0185248293, 0.0243630279, 0.000304684683, 0.0119583234, -0.0082580559, 0.0147070931, 0.00881016, -0.00193970348, -0.0042699906, -0.0215202831, -0.0179374851, 0.0288033485, 0.0130390357, 0.0204278231, -0.0169155058, 0.0458833091, 0.016950747, -0.0210504085, 0.0409261286, 0.00772357313, 0.0181136876, 0.00739466073, -0.0124164512, 0.00948560517, 0.0085693486, -0.00984388497, 0.0111947758, -0.033055719, -0.0136498734, 0.00673683546, 0.0530958958, 0.00374725461, 0.00448437128, 0.0185130816, 0.019981442, -0.0165161118, 0.0047927266, 0.028685879, 0.0390701219, 0.0294611733, 0.0249738656, -0.0546934716, 0.0140375206, 0.039962884, -0.0363918319, -0.0376370028, -0.00553865358, -0.0132034924, -0.0300485175, 0.0356400311, 0.00188977923, -0.00195732387, 0.0144956494, -0.00549753942, 0.0607548617, 0.0221546143, 0.0089276284, -0.00693065859, -0.0245979652, 0.0270883031, -0.00876317173, -0.00308942934, -0.0271587856, -0.00764721865, -0.019981442, 0.0329852365, 0.00352406385, 0.0106015587, -0.0128040984, -0.020827217, 0.0629162863, 0.00439039618, -0.0254437402, -0.0147893215, -0.00853410829, 0.0404327586, 0.0213205852, 0.000767218065, -0.0155528681, -0.0480447374, -0.0219314229, -0.0111536616, -0.0251853094, 0.0350526869, 0.0378484465, 0.00171944941, -0.0158347934, -0.0198169854, 0.0249503721, -0.0181841701, 0.0106720403, -0.0554452688, 0.0449670553, 0.00250061695, 0.00952084549, -0.0146718519, -0.00803486537, -0.000459229574, -0.00165190489, -0.00102197845, 0.00670746807, 0.0243865214, -0.0366267711, -0.0243395343, 0.0362038836, -0.0317400694, 0.00597916171, -0.0322569311, 0.0207332429, -0.0139787868, 0.000849446224, 0.000111503585, 0.030025024, 0.0155763617, -0.0108188763, -0.0139083052, 0.0162106939, -0.010936345, -0.0180667, 0.0281925108, 0.023012137, 0.000447849772, -0.0204513166, -0.00505409483, 0.0126044014, -0.0220019054, -0.00516569, -0.00170623418, 0.0165865943, -0.0511694066, -0.0176203195, 0.0241515841, 0.00676620239, -0.0352641307, -0.0717029497, 0.0245744716, -0.0106485458, -0.014765827, -0.0236817095, 0.0148363085, -0.00294993515, 0.0188067537, -0.0280985348, 0.0341599248, 0.0146953464, -0.0569958575, 0.0157643128, -0.0104664695, 0.0332671627, 0.000395355921, -0.057418745, 0.0506055579, -0.0135089112, -0.0224013, -0.0204748102, -0.0284979288, -0.0254437402, -0.0196760222, 0.0157173239, 0.0227419585, 0.00862808246, -0.00495130941, -0.0380363949, 0.00673683546, -0.0291557554, -0.0203925818, 0.0199462, -0.0312467, 0.00586462952, 0.00994960684, -0.0116998916, 0.0135558983, -0.0373785719, 0.0287563615, 0.0380598903, 0.0250443462, -0.0262895152, 0.0457893349, 0.0275816731, 0.0287563615, 0.00383829279, 0.0376135074, -0.00333317695, -0.0167510491, -0.0099261133, 0.0108717373, -0.0314111561, 0.00630220072, -0.00560619822, 0.000718395109, -0.0177612808, -0.0076002311, 0.0130977705, -0.0132034924, -0.00827567652, 0.000341393694, 0.0109245982, 0.0129920486, 0.00449905498, -0.00943861715, -0.00222016, -0.0250208527, 0.0114532076, -0.00300279609, -0.076542668, 0.0020131215, -0.0345593207, 0.00362684904, 0.0314816348, -0.0164808724, -0.0405737199, -0.0269708354, -0.0732065514, -0.0100318352, 0.0225070212, -0.00368264667, -0.043792367, 0.0217787139, 0.021426307, -0.0413255207, 0.0398219228, -0.0040115593, 0.0258666277, 0.00214086869, 0.0304244179, -0.012827592, -0.0313171819, -0.00767071219, 0.0189007297, 0.00468700472, 0.0214850418, -0.0246684458, 0.0403387845, 0.0152004622, 0.0232588202, 0.00165484159, -0.00503647467, -0.0206862539, 0.0292732231, -0.0207802299, -0.045483917, 0.0651247, -0.00541531155, -0.000343779771, -0.00156820845, 0.015858287, 0.0166218337, 0.00105795334, 0.0423357524, 0.0119876908, 0.0361099057, -0.00816995464, -0.0232823156, 0.0197817441, 0.0272057727, -0.0327503, -0.034394864, -0.0218022075, -0.00213059015, -0.0186657906, 0.008598716, 0.0134501765, -0.018195916, -0.00435221894, -0.0274172164, 0.0447556116, 0.00946211163, -0.0280750412, 0.000159408824, 0.0128980735, 0.0205922797, 0.0387881957, -0.0229534023, -0.00396750867, -0.0246919412, 0.00964418799, -0.0240341146, 0.040761672, -0.0129803019, -0.00716559635, 0.0377544686, -0.0235759877, 0.00477510644, -0.0221898556, -0.0257021729, 0.0324683748, 0.0100142146, -0.000242095848, 0.0239166468, -0.0222603362, -0.00195438694, 0.00504822144, -0.0150477523, -0.0156233497, -0.0362273753, 0.00357986148, 0.00504234806, -0.00295580854, -0.0106720403, 0.0137555953, -0.0277226344, 0.00953259226, -0.0314111561, -0.0200049356, -0.00221428671, 0.0172796603, -0.00151681574, -0.0168802664, -0.0132857207, 0.0169859882, -0.0234350245, 0.0131565053, 0.00917431246, 0.0157643128, -0.0150007652, 0.0519681945, 0.0033948482, -0.0147188399, -0.00765309203, -0.0153296776, -0.0136968615, 0.00822281558, 0.0378954336, -0.0366737582, 0.0189829562, -0.00266654161, -0.0138025833, -0.0298135802, 0.011729259, 0.000906712259, 0.0118937157, 0.0171269495, -0.0284979288, 0.029531654, -0.00123415655, 0.0093798833, 0.0161284655, -0.0100964429, 0.00144046103, -0.00302188471, 0.00428761076, 0.00684843073, -0.000533381768, 0.0288033485, 0.00636680843, 0.0388821699, 0.0123694642, 0.0103724943, -0.0520151816, -0.0112300171, 0.00550047634, 0.0116998916, 0.0210386608, -0.00794676412, -0.0150712458, 0.0375430249, 0.0126513895, -0.00650777109, -0.015458893, 0.00221428671, -0.0236582141, 0.005368324, 0.0165865943, 0.0373785719, 0.00381186232, -0.00452254852, 0.0348412432, -0.0395869836, -0.02574916, -0.00653713848, -0.052344095, -0.00167686702, 0.0445911549, -0.014613118, -0.0146366116, -0.0189594626, 0.00873380434, 0.0445441678, -0.0304948986, -0.014965524, -0.008898261, -0.00154177786, 0.012627895, -0.0289208163, -0.00393226789, 0.00816408079, 0.00158729707, -0.0113122445, -0.0149537772, -0.0507935062, -0.0278635975, -0.0173266474, 0.0152004622, -0.0205335449, 0.0276051667, 0.000941952865, 0.00581470504, -0.0162224397, -0.000383976119, 0.00564437546, -0.0131682521, -0.00162253773, -0.00987325236, 0.143311933, -0.00741228089, 0.0148010682, -0.00449318113, -0.00592630077, 0.0445206724, -0.00141990406, 0.00102711772, -0.0144604081, 0.0166805685, 0.00664873375, -0.0417953953, 0.000947092136, 0.00747101521, -0.0276051667, 0.00230532512, 0.0056120716, 0.0177847762, -0.0122167543, 0.0235877335, -0.00179580413, -0.0252322964, -0.00383829279, -0.00318046752, -0.0147540802, 0.00821694173, 0.0308473054, 0.0204513166, -0.0358279832, -0.00852236059, 0.0180314593, -0.0134501765, -0.0447321162, 0.0196055416, 0.0440507978, 0.0104194824, 0.00906859059, -0.0472224541, -0.0283569675, 0.00807598, 0.0304244179, -0.0212031174, 0.0120229311, -0.0489609949, -0.0304009244, -0.0158230457, 0.000818610657, 0.017549837, -0.000911117357, 0.0359924398, -0.00641966937, 0.0255142227, -0.0174911041, 0.0105310772, -0.0230591241, -0.00146762573, 0.0237756837, 0.00293525145, -0.00908621121, -0.0329617448, -0.0591572858, 0.00637268182, 0.0172326714, -0.0139317987, 0.0148010682, -0.016304668, -0.01396704, 0.0243630279, 0.00398806576, -0.0136381267, 0.020580532, 0.0227772, 0.0262660217, 0.00112329528, -0.0127101233, -0.021473296, 0.0211796239, -0.00306593557, -0.00394401466, -0.00155058806, -0.0033801645, 0.0206040256, -0.00100362406, 0.0279810671, -0.000674344308, 0.0131682521, -0.0136616211, -0.020979926, 0.0232353266, -0.00463414378, -0.00946798455, -0.0157525651, -0.00263130106, 0.008598716, 0.00280897249, -0.019488072, 0.00277666864, -0.0134149361, -0.010636799, -0.0343243815, -0.00494249957, -0.0202868599, 0.018195916, 0.035240639, 0.0195233133, 0.00868681725, -0.018043207, 0.00245803455, -0.00143091672, -0.0102080386, -0.00336548104, -0.00334198726, -0.0378249511, -0.0172914062, 0.0247154348, 0.0217199791, -0.00483677769, 0.015212209, -0.0052831592, -0.0180079658, 0.021226611, -0.0121110324, -0.016010996, -0.0253967531, 0.00301013794, 0.0218609422, 0.00710686203, 0.0168920122, 0.0399863757, 0.00343008875, 0.0188772343, -0.0019162097, -0.0106015587, 0.0296961106, -0.0258196406, -0.00154324633, 0.0249973591, 0.00926241465, -0.0330322236, 0.0130390357, -0.00450199144, 0.00595860463, 0.00585875614, 0.0126866298, 0.000765749719, 0.036579784, 0.000953699753, 0.0197699983, 0.0195468068, 0.0078997761, 0.0208037235, 0.0342773944, -0.0215320289, -0.0135911396, -0.00463708071, 0.0191474129, -0.00680731656, -0.0308003183, -0.000287982082, -0.00934464298, -0.00306593557, 0.0208742041, -0.0136263799, -0.00161519588, 0.0294141863, -0.00663698697, -0.00506877853, 0.00980864465, -0.0222603362, -0.035099674, 0.00538007077, 0.0092565408, -0.0022319071, 0.028685879, -0.00566786947, -0.00585581921, 0.0429700837, 0.0279575735, 0.0119935637, 8.36506297e-05, -0.0100612026, -0.0143311927, -0.0217434745, 0.042805627, -0.0049953605, 0.0168450251, 0.0194528326, 0.006214099, -0.0232118331, 0.00832266361, 0.0336900502, -0.00902747642, 0.0199462, 0.0223073233, 0.0215907637, 0.0174323693, 0.0381773561, -0.0395399965, -0.00468113134, 0.00694240583, -0.0364153273, 0.00401743269, -0.00386472326, 0.000928737631, -0.0205335449, 0.0170094818, 0.0170094818, 0.0118937157, -0.0186657906, -0.0349117257, -0.00112770044, 0.0136263799, 0.0270883031, -0.0161519591, -0.0150360055, 0.0187010318, 0.0267828852, -0.000929471804, 0.00404386315, -0.000130133398, 0.00872205757, 0.041959852, 0.0122167543, -0.0385532565, 0.0127336169, -0.0334551111, -0.0222603362, 0.0272527598, -0.0295786429, -0.0233880375, 0.00314522698, -0.0416309386, 0.000418115495, -0.0246684458, 0.0106779132, 0.0209211912, -0.0205335449, 0.0306123681, -0.00629632734, 0.0329617448, -0.00477510644, -0.0140492674, 0.0151534742, -0.00963831414, 0.00476923306, 0.0185835622, -0.0355695523, 0.00457540946, -0.0437218845, 0.00409672409, -0.0404797457, 0.0337370373, 0.0427586399, 0.0191944, 0.000532280479, -0.0357340053, 0.0134384297, 0.02356424, 0.0180314593, 0.000856788, 0.0164221376, 0.0292732231, -0.00822281558, 0.0201224051, 0.0163986441, -0.0100846961, 0.0221076272, -0.0366032757, -0.0224130452, -0.00363859581, -0.0338545069, 0.0299075544, -0.0179844722, 0.00928003434, -0.0310587492, 0.0551163591, -0.00952084549, 0.0121110324, 0.00857522152, -0.0277931169, 0.0240811035, -0.042100817, 0.0152357025, -0.0163164157, 0.00822868943, 0.00238314806, -0.0131682521, -0.0135324048, 0.00738878688, 0.0127923517, 0.00217023585, -0.00737116672, 0.00960894767, -0.0205687862, 0.02744071, -0.0409496203, -0.0219314229, -0.0173618868, 0.029226236, -0.0151182339, -0.00939163, -0.0311292298, -0.0191591606, -0.0189712103, 0.0191591606, -0.0225540083, -0.0185248293, 0.00271499739, -0.00369145675, 0.0164338835, -0.0354520828, -0.0200989097, 0.00741228089, -0.0168920122, -0.00180020928, 0.0125221731, -0.00133914419, 0.0497597791, -0.0149302837, 0.0111301681, 0.0106837871, 0.0369556807, -0.00395282498, -0.0085693486, -0.0126866298, 0.0263365041, -0.00930940174, -0.00832853746, -0.0321394615, 0.0440273024, -0.0268063787, -0.0199109614, 0.0161519591, -0.0293672, -0.0205335449, -0.00770595297, -0.0215555243, -0.00441388972, 0.0170094818, -0.0144016743, 0.00496893, 0.0113533586, -0.022166362, 0.0279105846, -0.025349766, 0.0108247492, -0.0382243469, -0.00733592594, 0.00799962506, -0.0184308533, -0.0136616211, 0.00816408079, 0.00923892, -0.00505996821, 0.0156350955, -0.0112006497, 0.012827592, -0.0149890184, -0.0362743624, 0.00507758837, 0.0179844722, 0.0314346477, 0.0384592824, -0.014413421, -0.0116117904, 0.0284509417, 0.00553865358, -0.00718909036, -0.0377544686, -0.0414194949, -0.0100846961, 0.0120229311, 0.0178200155, 0.00604376942, 0.0156820845, 0.0120229311, -0.00835790485, -0.00103299122, 0.00821106881, 0.0203221012, -0.0111771561, 0.0025872502, 0.0140375206, 0.0323978923, -0.00983801112, 0.0357575, -0.0409261286, 0.0192648824, 0.00292056799, -0.0162106939, -0.00570604671, 0.0107014067, -0.0240811035, -0.000481989147, -0.0577006713, 0.0345593207, -0.0116235372, 0.0227302108, 0.016551353, -0.0277931169, 0.00185747526, -0.0360159315, 0.0076413448, -0.0179139916, 0.00840489194, -0.0150594991, 0.000343045598, 0.00315991044, -0.00922130048, -0.0146483583, -0.00433459831, -0.0150947403, 0.0167862903, -0.000468406826, -0.036086414, -0.0112417638, 0.0209329389, 0.000850180397, 0.00179727259, 0.00940925069, 0.00430229446, 0.0265479479, 0.0170917101, 0.0049160691, 0.00423475, -0.00181489286, -0.0208389647, 0.0209681801, 0.0115648024, -0.00613187114, -0.0113004977, -0.000234019855, -0.0187597666, -0.0181489289, -0.00689541828, 0.0099261133, -0.0199109614, 0.0227889456, -0.00443738373, 0.0109715853, 0.0157408174, -0.0309882686, -0.0471989624, -0.00129729602, -0.0117175123, -0.0214850418, -0.02744071, -0.0186305512, 0.00101390248, 0.00831679069, 0.0134501765, 0.0262895152, 0.0110949278, 0.0341834202, 0.0585464463, 0.0198287331, -0.0198639724, 0.0197582506, 0.0122637423, -0.00787628256, -0.00787628256, 0.0157173239, 0.0080231186, -0.00573835056, -0.01068966, -0.0267593917, 0.00433753524, 0.0143781807, -0.00827567652, 0.02962563, 0.0140140271, 0.00949735194, -0.00218491955, -0.0111477887, -0.0341364332, -0.0204983037, 0.0244804975, -0.0138260769, 0.029226236, -0.00268122531, -0.0129685551, -0.0277226344, -0.0308473054, 0.00118349807, 0.0265009589, 0.00308942934, -0.00113430806, 0.0136498734, 0.00899811, 0.00849886704, 0.014413421, 0.00494249957, -0.0100670755, 0.039117109, -0.00856347475, -0.0183133855, 0.00589399692, 0.0100200884, 0.00327737932, -0.00365327951, -0.0133444546, -0.0190534387, -0.0237286966, 0.00493368926, 0.00267388346, -0.0150947403, -0.016257681, -0.011881968, 0.00418188889, -0.00821694173, -0.0161167178, 0.0208154693, 0.0163634028, -0.0104018617, -0.000229064142, -0.00506290514, 0.00855172798, -0.00745926844, -0.000927269284, 0.0249268785, -0.00489257509, 0.00472518243, -0.00762959803, 0.0195585545, 0.0211326368, 0.011136042, -0.0233997833, -0.00164162635, 0.0143781807, 0.00172972796, -0.0127453636, -0.0227537062, 0.0194528326, -0.0101199364, -0.0163281616, 0.0109128505, 0.00575890765, 0.0129568083, -0.0058998703, -0.0175028499, -0.0119407028, -0.000777496549, -0.0245509781, 0.00138246082, 0.0154471463, -0.00604964281, 0.00917431246, 0.0108306231, 0.0103020128, -0.0175263435, 0.00644903677, 0.0414664857, 0.000968383392, 0.0100200884, 0.00966768153, 0.0208037235, -0.00170036079, 0.00320983469, -0.0253732596, 0.0248798896, 0.00197494403, 0.00995548069, -0.0262895152, -0.00350057, -0.00214380538, 0.0227889456, -0.00597916171, -0.00718909036, -0.0177495349, 0.00312467, 0.00233616075, -0.000240627487, 0.0040820404, -0.0239166468, 0.00619647885, 0.0176673066, -0.00491900556, -0.0134031894, -0.0183956139, -0.0293437038, 0.00222603371, 0.0318810306, -0.00145808142, 0.0187010318, 0.000573394529, 0.0239518862, 0.00955021288, -0.0121345259, -0.0221428685, -0.0306358617, 0.0058058952, 0.00336548104, 0.0093798833, 0.0112711303, 0.00406442024, -0.0094738584, 0.00592042739, 0.0106015587, -0.00853998121, 0.0174676087, 0.00555921067, 0.0203690883, 0.00285008666, -0.00610837713, -0.00508346222, 0.01287458, 0.026594935, 0.011482575, 0.00102785195, -0.00658999942, 0.0061494913, -0.00445206743, 0.00791739672, -0.00554452697, 0.0114120934, -0.00707749464, -0.0148010682, 0.0107014067, -0.0284274481, 0.00732417917, -0.0102667725, 0.0187010318, 0.00573247718, 0.0179257374, 0.0164221376, 0.0168215316, 0.00546817249, -0.00247124978, 0.0020410202, -0.00124076416, 0.0142254708, -0.0133914426, -0.0187010318, 0.00962069444, -0.000906712259, 0.0112652574, -0.00831091683, 0.00755324354, 0.000145092316, 0.0147893215, -0.0452724732, -0.0330087319, -0.0288503356, -0.00710098865, 0.00578240119, -0.000208140016, 0.00416426873, -0.00088468683, 0.00283246627, 0.0104194824, -0.0291557554, -0.00560326129, 0.00522736134, 0.0426881611, -0.0320219919, -0.014119749, 0.00488376524, 0.0263599977, 0.000567888201, 0.0116294101, -0.0055180965, -0.0170917101, 0.0337840244, 0.0379659124, 0.00123489066, 0.0192178953, -0.0234232768, -0.00725369807, 0.018689286, 0.0095854532, 0.00983801112, 0.0200519226, 0.00609075697, 0.0110538136, 0.00882777944, 0.0144956494, 0.00631982088, 0.012475186, 0.020627521, -0.0192531347, 0.00614361791, 0.0105663184, 0.0017884624, 0.016010996, -0.00987325236, 0.0159640089, 0.0166805685, -0.00544467848, 0.0374725461, 2.09929585e-05, -0.00286623859, -0.012827592, -0.0169859882, 0.0166923162, 0.0160932243, 0.00530077936, 0.00315110036, -0.016504366, 0.00461946, -2.5145664e-05, -0.00106970023, -0.0282629915, 0.00580002181, 0.00150506897, -0.00661349297, -0.0105017098, 0.0268063787, 0.00486320816, 0.0081464611, 0.0223778058, -0.00692478521, -0.00738291349, -0.0301894806, -0.0207802299, -0.0276756473, 0.0153061841, -0.0179844722, -0.00941512361, -0.0174441151, 0.0349822082, -0.00807010569, 0.0118760951, -0.0128393387, 0.000233285682, -0.00945623778, 0.0124634393, 0.0279575735, -0.00636680843, 0.0148480553, 0.0268533658, -0.00573541364, -0.00409378763, -0.0130507825, -0.00228476804, 0.0202398729, -0.0212501045, 0.010636799, -0.0158465412, 0.0114767011, 0.00105648499, -0.0236229748, -0.0237874314, -0.00812884048, -0.00149846135, 0.0147305867, 0.0029425933, -0.00171357603, 0.00163134781, -0.00455191592, 0.0270648096, -0.011036193, 0.00591749046, -0.0120640453, -0.00803486537, 0.00863395631, 0.0173266474, -0.00803486537, 0.00662523974, 0.00485733477, -0.0134266829, -0.00081934483, 0.0316460915, 0.0075708637, 0.000184829798, -0.0100142146, -0.0271587856, 0.0288268421, -0.0246449523, -0.00396750867, 0.0049160691, 0.0121932607, -0.00819932204, 0.029531654, -0.0396339707, 0.00945036486, 0.00413490133, 0.0136146331, 0.00830504391, 0.0258196406, -0.0197582506, 0.0120405518, -0.000647179608, 0.0165748466, 0.0110479398, -0.00288973236, -0.0587813854, 0.00845775288, 0.00438745925, -0.000739319192, 0.0153884124, -0.0287093725, -0.0157995522, 0.0206627604, -0.0200989097, -0.00830504391, -0.0144956494, -0.00609075697, -0.000683521561, 0.0173383933, 0.00118349807, 0.006214099, 0.0241280906, -0.0113122445, -0.0245744716, 0.0211796239, 0.00158142368, -0.0175145976, 0.0142724589, 0.0113298651, 0.00924479403, -0.010343127, -0.00710686203, 0.000965446641, -0.00900398288, 0.00693653245, -0.00362684904, -0.0046282704, 0.00129215675, -0.0242690518, -0.0219784118, -0.0369556807, -0.0277461298, 0.0177730285, 0.016551353, -0.00294553, 0.00408497732, 0.0239283927, -0.00425237045, -0.0012268147, -0.0115706762, -0.0174558628, 0.0172914062, 0.00802899245, -0.00645491, 0.0170329753, 0.00461065024, -0.0183016378, 0.0253967531, 0.00274142786, 0.00799962506, -0.0107190274, -0.00710098865, 0.0107718883, 0.0226597302, 0.00406148331, 0.0107014067, 0.0219784118, -0.0124986796, -0.020134151, -0.00741815427, -0.0167745445, -0.00743577443, 0.00615536468, -0.000432064902, 0.0433929712, 0.0175028499, -0.00822281558, -0.00804073922, 0.00943861715, -0.0315286256, -0.013767343, -0.0223543122, -0.0138495704, 0.00251823734, 0.0109950788, -0.00153590448, -0.0100083416, 0.00609075697, 0.00274730148, -0.0107072806, -0.00751212938, 0.0155763617, 0.0321394615, -0.00257990835, -0.00778818084, -0.0255377162, 0.0121227792, -0.00895699579, 0.0324213877, -0.0240811035, 0.00452254852, -0.00683668396, -0.033878, -0.0118760951, 0.00311292312, 0.00098453532, -0.00595860463, 0.00751212938, 0.00231707189, -0.0200166833, -0.016798038, -0.0184895881, 0.0161754526, 0.0249738656, 0.0100259613, 0.00482503092, -0.0192531347, -0.0110420668, 0.00296755531, -0.00258284505, -8.1081e-05, 0.00981451757, -0.00426705414, -0.016798038, 0.00830504391, -0.000201348856, -0.00609663036, 0.0241750777, 0.00797613151, 0.00468700472, 0.0306593552, -0.030870799, 0.0212853458, 0.00842251256, -0.0107660145, -0.000544394425, -0.00687779766, -0.0065723788, -0.0168685187, -0.00505996821, 0.000700407661, -0.000918459147, 0.034747269, 0.0114120934, 0.000401963538, -0.00715384958, 0.00322158169, 0.00372963422, -0.0013149163, -0.0119994376, -0.000369108981, -0.0102667725, -0.0284509417, 0.0049718665, -0.0152357025, -0.000740053423, 0.0186305512, -0.00290441583, 0.00213646377, 0.079033, 0.00603789603, 0.00676620239, 0.00296021369, 0.0127688581, 0.00508346222, -0.0101551767, -0.01068966, 0.0182781443, 0.00549460296, 0.00155352475, -0.0158113, 0.0134266829, -0.0222133491, 0.0157408174, -0.0154353995, 0.00683668396, 0.00401743269, 0.00143091672, -0.00650777109, 0.00514807, -0.00630807411, 0.0157290716, 0.021919677, 0.00280309911, 0.00394695159, -0.0188654885, -0.0268063787, -0.0195937939, 0.0194058456, 0.00984388497, 0.00166658848, 0.00403211638, 0.0284979288, 0.0257961471, 0.00859284215, 0.0117703732, -0.0109833321, -0.00300279609, -0.00704225432, -0.0102550257, 0.0210973956, 0.0069541526, 0.00732417917, -0.0130507825, 0.0344653428, -0.0127336169, -0.00385003979, 0.0138143301, -0.00906271767, 0.000395723, 0.0217552204, 0.0063139475, -0.0251618158, 0.0183133855, -0.0112123964, 0.0371201374, 0.000154361333, -0.00272821262, -0.013720355, -0.0100435819, -0.00240517361, -0.0151064871, 0.0116117904, -0.00970292278, 0.0107718883, -0.0164103899, -0.0391640961, 0.00314229028, -0.0113886, -0.00436396571, -0.0250443462, 0.0014154989, -0.010343127, 0.0311997123, 0.00465470087, -0.0278166104, 0.00926828757, 0.00316578406, 0.0081170937, -0.00784691516, 0.00509814546, -0.00727131823, -0.0185013358, 0.0016577784, 0.00665460713, 0.00372669753, 0.00305125187, -0.000441242155, 0.0334316194, -0.00594979431, -0.014119749, -0.0212618522, -0.000396824267, -0.0100318352, -0.00271646585, -0.0223778058, -0.00540650124, -0.00198815926, -0.00508933561, -0.00353874732, 0.00770007959, 0.0109069776, -0.00970292278, 0.0102491518, 0.00993786, 0.0227067173, -0.044144772, -0.0159287676, -0.00782342162, 0.0118760951, -0.000454090303, -0.001223878, -0.00115413091, -0.00979102403, 0.0276051667, -0.0139905335, -0.00472811889, -0.00905684382, -0.00053741975, -0.00895699579, -0.00936226267, 0.00297489716, -0.00453723222, -0.0195703, -0.00990849268, -0.0312936865, -0.00775294052, -0.0124634393, -0.00395576144, -0.00698939338, 0.00515394332, 0.00863395631, -0.00959132705, 0.000271830126, -0.00741815427, 0.0154353995, -0.0159992501, -0.00483384077, 0.0119054625, 0.0168332774, 0.0355695523, 0.00454604253, -0.00535070337, -0.0175263435, -0.0183133855, 0.00283980812, -0.0191004258, -0.0210504085, -0.0131682521, 0.0121815139, -0.00313348, -0.0120992856, -0.00522442441, -0.00637268182, 0.0187362731, -0.00143605599, -0.00929765496, -0.00891588163, 0.0279105846, -0.00644903677, -0.0122519955, -0.0173736345, 0.00777056068, -0.042805627, -0.00100656075, 0.0228829216, -0.0247624218, 0.00698352, 0.00422594, -0.00294112484, 0.0141784837, -0.00955021288, -0.00657825265, -0.0216142572, 0.00853410829, 0.0146366116, 0.0110949278, -0.00205423543, 0.0172091778, 0.000192171603, -0.00154911971, 0.00327444263, -0.010589812, 0.014366433, -0.00607901, -0.00473105581, -0.00344770914, -0.00478098, -0.0128980735, 0.0219901577, 0.0156820845, 0.0114767011, -0.0196525287, -0.0128863268, -0.0137790898, 0.00892175455, -0.00558564113, -0.00772357313, -0.0206862539, -0.00805248599, -0.00171504437, 0.0113298651, -0.00682493672, -3.84297323e-07, -0.0149537772, 0.00537126046, -0.0258431341, 0.0210034195, -0.00141256221, -0.0378719382, -0.00689541828, 0.024503991, 0.0144839026, -0.00788215641, 0.0309647731, 0.0174558628, 0.00996722747, 0.0164691247, 0.00493662618, 0.028380461, 0.00798787829, -0.0102726463, 0.0190064516, -0.00502766436, -0.00966768153, -0.0020380835, -0.014366433, -0.00168420887, 0.0147188399, -0.0217552204, 0.00954433903, 0.0160227437, -0.0122050075, 0.0217434745, 0.0218726899, 0.0122989826, 0.0196760222, 0.00613187114, -0.0145896245, 0.000243197108, 0.0268533658, -0.0120757921, 0.0174323693, 0.000961775775, -0.00768833235, 0.00564731238, -0.00882190652, 0.0203925818, -1.69893829e-05, -0.0095032258, -0.0051598167, 0.0218726899, 0.00812884048, 0.0164573789, 0.0122167543, -0.00131051126, 0.00915669277, 0.00760610448, -0.0189359691, -0.00197494403, 0.0261250604, -0.00409378763, -0.0153296776, 0.00366796297, 0.0144604081, -0.0256081969, 0.000287431467, -0.0149890184, 0.0103255073, 0.00626696, -0.00178699405, 0.00799962506, 0.0128040984, -0.00486320816, -0.00273114955, -0.0363918319, 0.00240076846, -0.0118526015, 0.00399100222, 0.00445500389, -0.0178200155, -0.00162694277, 0.0118702212, -0.00606138958, -0.00764721865, 0.013320961, -0.0128510864, 0.00808185339, -0.00554159051, 0.00562969176, 0.00380892563, 0.00247271801, 0.0114473337, 0.0131682521, 0.012228501, -0.0314111561, 0.00969117507, 0.0091331983, 0.00746514183, 0.0014999297, 0.0126396418, 0.00270178216, 0.0145543832, -0.0136263799, -0.0116117904, 0.0165278595, 0.000910383125, 0.0193940978, 0.0228124391, 0.00729481224, 0.0050511579, 0.0123107294, 0.013027289, -0.00887476746, -0.0172561649, -0.00445500389, -0.0115119414, -0.00654301187, -0.016104972, -0.00941512361, 0.00752974954, 0.00436102878, -0.0213088393, -0.0241515841, -0.00945623778, 0.00204689382, 0.008352031, -0.0102667725, -0.0140845086, -0.00728893885, -0.0121227792, 0.0247624218, 0.0176555589, -0.0104429759, -0.00909795798, 0.012428198, -0.00209975475, -0.0132504795, 0.00903335, -0.0183133855, 0.0192178953, 0.00513045, -0.00477804337, -0.00140962552, 0.00412315456, -0.015505881, -0.00411434472, -0.016856771, -0.0113004977, 0.0272292662, -0.000120405515, 0.00466351118, -0.0259136166, 0.0145191429, 0.00393226789, -0.00908033736, 0.0172796603, -0.0053242729, 0.0197817441, 0.0368382148, 0.0172209255, -0.0268533658, -0.0102843931, -0.00701288693, 0.0037384443, 0.00184132333, 0.011429714, -0.00357105141, 0.0196290351, 0.0123224761, -0.00211590668, -0.0353111178, 0.0028633019, 0.00620235223, 0.014119749, -0.0262660217, 0.0171856843, -0.00292937807, -0.000375716598, 0.00242573069, 0.018888982, -0.00729481224, 0.00498361373, -0.00826980267, -0.00560913468, -0.00638442906, 0.0148715489, 0.00192795659, 0.000690863351, -0.00767658558, -0.0166453272, 0.0264774654, -0.0105604446, -0.00667810068, -0.0177377872, -0.00416720565, 0.00713035557, -0.0155293746, 0.0260545779, -0.0111477887, 0.020228127, 0.00811122, 0.00380598893, 0.00120111846, -0.00332143018, 0.0197699983, 0.0145778777, 0.00625521317, -0.0163751505, 0.0122989826, 0.00814058725, 0.00772944652, -0.0215437766, 0.00472811889, -0.017596826, 0.0104723433, 0.0323509052, -0.000903775508, -0.0144839026, -0.0203103535, 0.00805835892, -0.0047516129, -0.0164691247, 0.00849299412, -0.0193588566, 0.00216142577, 0.0208037235, 0.0140727619, 0.00614361791, 0.00219372963, -0.0179844722, 0.013320961, -0.00279869395, 0.00623759301, -0.00803486537, -0.0161872, -0.0140845086, 0.000986003666, 0.00936226267, 0.0165631, 0.00260927551, 0.00578533811, 0.0169977341, -0.00667810068, 0.00703050708, 0.0210856479, -0.0163868964, -0.00395576144, 0.00766483881, -0.00237286952, 0.00625521317, -0.00126499205, 0.0166335814, 0.000844306953, -0.0254672337, -0.00908621121, -0.0135324048, -0.00345945591, -0.00147790427, -0.00202927343, 0.00291616283, 0.0120875388, -0.0430170707, -0.00570017332, -0.020580532, 0.00838139839, 0.0187715124, 0.0117938668, 0.0115648024, -0.0150242588, -0.000141513185, -0.000582204724, 0.00462533394, 0.0212970916, 0.00798200443, 0.0204983037, -0.0253262725, 0.0164926182, 0.00394401466, -0.0408556461, 0.00477216952, -0.00522736134, 0.0177730285, -0.0131917456, 0.0212148633, 0.0215202831, -0.00766483881, -0.00761197787, 0.0316226, -0.00352112716, 0.012674883, 0.0166335814, 0.0153649179, -0.000395723, 0.0101669244, -0.00909795798, -0.0135911396, -0.0197112635, 0.0152591961, -0.0169155058, 0.017549837, -0.0121110324, -0.014765827, -0.00908033736, 0.00549460296, -0.0115060685, 0.00470756181, 0.001354562, -0.016856771, -0.0143194459, 0.00496599311, 0.00417307904, 0.00742990104, 0.00698352, 0.00210122298, -0.00110127, -0.00044381179, 0.00775881391, 0.0194410849, 0.00301307463, -0.016504366, -0.00645491, -0.0376839899, -0.00810534693, -0.0104488488, 0.0153414244, 0.00823456235, 0.0011629411, -0.0101845441, -0.00926241465, 0.0339484811, -0.00891000777, -0.00634331489, 0.0276756473, 0.0133327078, -0.012428198, 0.0106015587, 0.0159992501, 0.00575597072, 0.00155792991, -0.00778818084, 0.0272057727, -0.0345828123, -0.0169859882, -0.0279105846, -0.00529196905, -0.0105310772, -0.00542999478, 0.00187803234, -0.00193089328, -0.00305125187, -0.00503941113, 0.00860458892, 0.0191826541, -0.00940337684, 0.00119157403, -0.0435574278, 0.00739466073, -0.0024653764, 0.00971467, 0.0122402487, -0.0144486614, 0.0177377872, 0.011036193, -0.0043933331, -0.00190299447, 0.0104429759, -0.0326798186, 0.00906859059, 0.0103783682, -0.00132519484, 0.00738878688, -0.00814058725, -0.0228946675, 0.0168802664, -0.0218961835, -0.0115354359, -0.00476335967, -0.00232147705, -0.015458893, -0.0202868599, -0.0165865943, -0.0246214587, 0.00670746807, 0.00411434472, 0.00257403497, 0.00630220072, 0.00298077054, -0.00974991, 0.0126631362, 0.00349176, -0.0106309261, -0.00207919767, 0.0112770041, -0.00812296662, 0.0183486249, -0.00352700055, -0.00675445562, 0.00088248431, 0.000861193112, 0.0153884124, -0.00717146974, 0.00882777944, 0.00610250374, 0.00739466073, -0.0181489289, 0.00284715, -0.0100494549, 0.00326269562, 0.00552690681, 0.00262102252, 0.00829329714, -0.00374138099, -0.0170799624, -0.0109598385, 0.00465763779, -0.011582423, -0.00742990104, -0.00362391234, 0.00805248599, -0.00773532, -0.0232353266, 0.00618473208, 0.00911557861, -0.00263717445, 0.00340953167, 0.0135441516, -0.00308061903, -0.0277696233, 0.00237580645, 0.00117248541, -0.0165631, -0.0231530983, 0.00620822562, 0.0124869328, -0.00186041207, -0.0155646149, -0.0178552568, 0.00138686597, 0.0135558983, -0.0163399093, -0.0196525287, -0.00358573487, 0.0123342229, 0.010589812, 0.0101962909, -0.0241515841, 0.00723607745, -0.0165865943, -0.00381773571, -0.0169742405, -0.0109480917, 0.0103548737, -0.0149302837, 0.00723607745, -0.00876317173, 0.0211561304, -0.0178787503, -0.0149772707, 0.00670159468, 0.00232441374, -0.00144633453, 0.00645491, 0.0164338835, -0.000183728538, -0.00234056567, -0.0413255207, -0.0203455947, -0.0097087957, -0.00556802098, 0.0148480553, -0.0158113, 0.0105075836, 0.0133914426, -0.019488072, -0.00503941113, 0.00583819905, 0.0143899275, -0.0155293746, 0.00123709324, 0.00223631226, -0.00305125187, 0.0127336169, -1.68861388e-05, -0.0120522985, -0.00514219655, -0.0074064075, 0.00738291349, 0.016856771, -0.00910383184, -0.016551353, 0.00257109827, -0.00479566352, 0.00871618465, -0.00543293171, 0.0228829216, -0.0266184285, -0.013520658, 0.0220253989, -0.0141080022, 0.00288532721, 0.0133914426, -0.0153414244, -0.00395282498, 0.0127218701, 0.0115882969, -0.0177612808, -0.000470242259, 0.0245744716, -0.0137790898, -0.00431697816, -0.0205100514, -0.015505881, -0.0207332429, 0.0103313802, -0.00530371582, 0.00300426432, 0.00263864268, 0.0313876607, -0.00621997239, 0.00748276198, 0.00878079236, 0.0048309043, 0.0112065226, 0.0112123964, -0.00805835892, 0.0184778403, 0.0291087665, 0.000187124111, -0.00218491955, 0.0304479115, 0.0140140271, 0.0278635975, -0.0121697672, 0.0020410202, 0.0134619242, 0.0268533658, 0.000167484803, 0.0100553287, -0.00262249075, -0.00184866518, -0.024503991, -0.00240076846, 0.00235231267, -0.0175145976, -0.00700701354, -0.00234203413, -0.024010621, -0.00607901, 0.0216260049, -0.00770595297, 0.00905684382, -0.000917725, -0.0240223687, -0.0136146331, 0.00370320375, 0.00570311, 0.00374431768, -0.0174676087, -0.0202163793, -0.00984388497, -7.14448906e-05, -0.00630807411, 0.0029851757, -0.0110126995, -0.0163751505, -0.0115295621, -0.00503353775, -0.00355049432, 0.0243395343, -0.00404386315, 0.008898261, 0.00579414843, -0.00432285154, 0.00690129166, 0.0118526015, 0.0132857207, -0.0093798833, 0.00866919663, -0.0049718665, 0.01287458, 0.00552984327, -0.0172209255, -0.0117703732, 0.0113063715, -0.00737116672, 0.00423768675, 0.00156233495, 0.0255847033, 0.0319045261, 0.0141784837, -0.00581764197, 0.00126352371, -0.0111184213, -0.017596826, 0.0161989462, -0.0118056135, -0.0191709064, -0.00528609566, 0.00686605088, 0.00683081057, 6.6167966e-05, 0.00571485702, 0.0195468068, 0.00711273542, 0.0125926547, 0.0196642764, 0.00231119851, 0.028286485, -0.0125809079, 0.00654888526, -0.0305418856, -0.0113533586, 0.010343127, 0.00540356431, 0.00143899268, 0.0418658778, -0.0110068256, -0.0159287676, -0.00271940255, -0.00715384958, -0.0132622272, 0.00422594, 0.0202516206, 0.00462239701, 0.00694240583, -0.00305418856, -0.0133679491, -0.0188067537, -0.0146248648, -0.00770007959, 0.0137908366, 0.0123812109, 0.0141432425, -0.0177025478, -0.00742990104, -0.0164221376, -0.0370731503, -0.00215995754, 0.00080980052, -0.00587931322, 0.0203455947, -0.000331665797, 0.0215555243, -0.00623171963, -0.0138613172, 0.00726544484, -0.0320454873, 0.00378543185, -0.0024653764, -0.0161754526, 0.0118173603, 0.00647840416, 0.0026694783, -0.00398806576, -0.0104782162, 0.00766483881, -0.00415545842, -0.00851061381, 0.00636680843, -0.00242426223, 0.010883484, 0.0211678762, 0.00862808246, 0.0173736345, -0.021825701, -0.00602027588, 0.0195468068, -0.0238931533, 0.00851061381, -0.00147863838, -0.00667222729, 0.0094738584, -0.0122402487, 0.0155176278, -0.00195291871, 0.0279810671, 0.0251383223, 0.00156233495, -0.0117233852, -0.00706574786, -0.000859724707, -0.00102344691, 0.00357105141, -0.0146483583, 2.06602836e-05, 0.000597255421, 0.0120757921, 0.0280985348, 0.0242455583, -0.00838727225, -0.00204983051, 0.000432799075, -0.00245509786, -0.0200519226, 0.0151182339, 0.000430963642, 0.00674270885, -0.00356517779, 0.00839901902, -0.00123415655, -0.0277696233, -0.0185718164, -0.0287093725, 0.00581176858, -0.0297900867, 0.0082404362, -0.00370026706, -0.0301659871, -0.0142842056, -0.0099261133, 0.00670159468, 0.0175028499, -0.00637855567, 0.0213323329, 0.0101493038, -0.0215320289, 0.0116059165, -0.00805835892, -0.00459302962, -0.0388116911, 0.00515688024, 0.0244570021, -0.0327033103, -0.00422006659, 0.0435809232, 0.0054622991, 0.0174793564, -0.0164338835, -0.00342421536, -0.00737116672, 0.00445500389, -0.00291469437, -0.00716559635, -0.0307298359, -0.0146601051, -0.0177612808, 0.00739466073, -0.0143076992, 0.00678382302, 0.049712792, 0.016856771, -0.0151534742, -0.0022715528, 0.00282365619, -0.0157995522, -0.00188096904, 0.0120992856, -0.0202986076, -0.00422300305, -0.00683081057, 0.00531252613, -0.0056972364, -0.0200871639, -4.36378214e-05, -0.00183691829, 0.00236405944, 0.0348177515, -0.0150360055, 0.0198169854, 0.00162841112, -0.0209211912, 0.00895699579, -0.0011174219, 0.000273665588, -0.015012512, -0.0142019773, -0.00910970476, -0.0211678762, 0.00616711145, -0.0115471827, -0.0241515841, 0.0138495704, -0.00149258785, 0.0109715853, 0.0351701565, 0.00321277161, 0.0159170218, 0.00419657258, -0.00301307463, 0.0100494549, 0.00484852446, 0.00367383659, 0.00516275363, 0.0223778058, 0.000939750345, -0.00639030244, 0.0233645439, 0.0235877335, 0.020134151, -0.00501591759, -0.0195115674, 0.0136028863, 0.0175850783, -0.0138260769, 0.01287458, -0.00043867252, -0.0305183921, 0.0260310844, 0.0209564324, 0.000948560482, 0.00661349297, -0.0168685187, 0.00743577443, 0.000754002831, 0.0010205101, -0.0241985712, 0.0049307528, 0.00606726296, 0.0164808724, 0.00220107147, -0.0219784118, -0.00414664857, -0.00197200733, -0.00589693338, 0.0146013713, 0.00788215641, 0.0200166833, -0.000701141835, 0.0200049356, -0.00866332371, -0.0153649179, 0.00201458973, -0.0129685551, -0.0133444546, 0.0055180965, -0.0258431341, -0.0162459332, 0.00620235223, 0.00421419274, 0.0022598058, 0.00418188889, 0.0163516551, -0.0163164157, -0.0268533658, -0.0145426365, -0.000883952656, -0.0090509709, -0.0181606747, -0.0209446866, -0.0129685551, 0.0109598385, -0.00865157694, -0.000256779429, 0.00904509705, -0.00725957146, 0.0061494913, 0.0142607111, 0.00945036486, -0.0194410849, -0.020627521, 0.004026243, 0.00797613151, -0.00301601132, -0.00803486537, 0.0126983766, -0.00282218773, -0.00607313681, 0.0145896245, -0.016798038, -0.0161637068, -0.0095972, 0.00415545842, 0.0172796603, -0.0257256664, 6.18890772e-06, -0.000862661458, -0.00803486537, 0.0107483948, 0.027534686, 0.0128158452, -0.017643813, 0.00174147484, 0.0164691247, 0.00550047634, 0.0123929577, -0.0235877335, 0.000280273205, 0.0159170218, 0.00663111359, -0.0101316832, -0.0200871639, -0.0101786712, 0.0415369645, -3.56192e-06, 0.0119054625, 0.00712448219, 0.00357986148, 0.000765015546, 0.0031364169, -0.00982039142, 0.01178212, -0.00329499971, -0.00399100222, 0.00504822144, 0.0198404789, -0.00788215641, -0.0228359327, -0.0146366116, 0.0129333138, -0.00587050291, 0.000669572095, 0.00732417917, -0.00419363612, 0.00809947308, -0.0169977341, 1.7505603e-05, -0.00347413961, -0.0121110324, 0.00643141661, 0.00239783176, 0.00672508823, 0.0134854177, 0.0036709, 0.00632569473, -0.00331555679, 0.00720083714, -0.00114605494, 0.0134854177, -0.0189829562, 0.00431697816, 0.00297783385, -0.00217170431, 0.00431991508, -0.000136557472, 0.00375900138, 0.00855760183, 0.00481034722, 0.00236405944, 0.0227067173, 0.0127453636, 0.0160697307, 0.00717146974, 0.0122050075, -0.0212501045, 0.0227772, 0.0151887154, 0.0155528681, -0.00906271767, 0.00513632316, 0.0101023158, 0.00773532, 0.0261720475, -0.0103548737, 0.00875729881, 0.000866332324, 0.00879253913, -0.0125221731, -0.0201224051, 0.0339954682, -0.0015608666, 0.0101786712, 0.000922864187, 0.00361216534, 0.0121815139, 0.00364740612, -0.00890413485, -0.0143546863, -0.016304668, 0.0125926547, -0.00360335526, -0.00580002181, 0.0191709064, -0.00276051671, 0.000414077484, 0.00107630785, -0.00371788722, 0.0147775738, -0.0108306231, -0.000199146307, 0.0105075836, -0.0277931169, 0.000139677737, 0.0197582506, -0.00903335, -0.00527141197, -0.0124399448, 0.0405502282, -0.0169977341, 0.0171152037, -0.00638442906, -0.0375430249, 0.00429642107, 0.00976753049, -0.0178317633, -0.0164573789, -0.00806423277, -0.0290382858, 0.0182311572, 0.00445206743, 0.0149890184, -0.0353346132, -0.0124047045, -0.0186775383, 0.0169037599, -0.00838139839, -0.00602027588, -1.28366773e-05, -0.0038471031, -0.043651402, -0.013520658, 0.0161754526, -0.0153531712, -0.0279575735, 0.00250061695, -0.00380892563, -0.00177377881, 0.00538888108, 0.0117644994, 0.00560913468, -0.0240811035, -0.0105017098, -0.0216025114, -0.02137932, 0.00575890765, -0.00933289528, 0.00547110895, -0.00159610726, -0.011729259, -0.00307768234, 0.0189359691, -0.0156233497, -0.0346767865, 0.00916256569, -0.0164456312, 0.00641966937, 0.00439920649, -0.00499829696, -0.00513925962, 0.0014698283, -0.00764721865, 0.0180314593, -0.0084460061, 0.0125221731, 0.0113592325, 0.0110303201, -0.0141549893, -0.00225246418, 0.0122872358, 0.00711273542, -0.0167275555, -0.0205335449, -0.00508933561, 0.0079291435, -0.00557976775, -0.016950747, 0.00607313681, -0.0011086117, -0.00546523556, 0.00249768025, 0.00407616701, 0.00841076579, -0.00141035975, -0.00728893885, -0.0103842411, 0.00315991044, -0.00498361373, 0.015458893, 0.00966768153, 0.0226479825, 0.00170182914, 0.00503353775, 0.0123929577, 0.0193118695, -0.00421125628, -0.00175615842, -0.00193970348, -0.000315880927, -0.00544467848, 0.00297636562, -0.000977927702, 0.0256786775, 0.0124869328, -0.0174441151, -0.00484265108, -0.00540356431, -0.000120864373, 0.011036193, 0.0125221731, 0.0204395708, 0.0330087319, -0.0116059165, -0.0117233852, -0.0116587775, -0.00926241465, 0.0327503, 0.00345651922, 0.00605551619, -0.00796438381, 0.00316284737, 0.00963831414, -0.0087749185, -0.0100259613, -0.00364446943, -0.0204160772, -0.029531654, -0.0245274846, -0.0122989826, -0.0196407828, -0.00348588638, 0.0138260769, -0.0113239912, -0.00704225432, -0.00789390318, 0.00440214295, -0.000696736795, 0.00719496375, 0.0193118695, 0.0103313802, 0.0315286256, 0.0144721549, 0.00538594415, -0.0275111906, 0.00315403705, 0.015705578, -0.00619060546, -0.00119744753, -0.00237286952, -0.000835496816, 0.0223073233, 0.0161754526, 0.00409378763, 0.014366433, 0.00962069444, 0.00663698697, -0.0192413889, 0.0036562162, 0.0031099862, -0.00694827922, -0.00667222729, -0.00486027123, 0.00298370747, -0.0072419513, 0.00772944652, 0.00765309203, -0.00699526677, 0.0092565408, -0.0162341874, 0.001342081, -0.0105075836, 0.00850474089, -0.014613118, -0.00262102252, -0.012827592, -0.00602027588, 0.0135324048, -0.0117351329, 0.0109128505, -0.033901494, -0.0135558983, 0.0159052741, 0.00834615808, 0.00378836854, -0.00972641632, 0.008898261, 0.0169037599, 0.00975578371, -0.000396457181, 0.00162253773, 0.0102139115, -0.0331262, -0.00900985673, 0.000568622374, -0.0159992501, -0.0112182694, 0.0347002819, -0.0112946248, -0.00030505177, -0.00333024026, 0.0134384297, -0.00204395689, 0.00731830578, 0.0152591961, 0.0138378236, -0.00677207578, 0.0133092143, 0.0157408174, -0.00214527384, 0.0430640578, -0.0245274846, -0.00168861391, -0.0373080894, -0.0129803019, 0.00274583302, 0.0114238402, 0.0155646149, 0.0292732231, 0.0393285528, -0.0165631, -0.00744752167, -0.00245509786, 0.00228036288, 0.00910970476, 0.0165983401, -0.00553278, -0.0193588566, 0.00184426, -0.0108012557, 0.0146013713, 0.00324801216, -0.0135441516, -0.0137321018, -0.00157995522, 0.0195233133, -0.00396457175, 0.000826686621, 0.027887091, 0.0116000436, 0.00420244597, -0.0144486614, 0.0203690883, 0.00431697816, 0.0270883031, -0.00942687, -0.00259165536, -0.00831091683, -0.00192208309, 0.00308649265, -0.0189477168, 0.00384122948, 0.0159757566, -0.000563483103, 0.000242646478, 0.0119935637, -0.0265009589, -0.0102726463, 0.00476923306, 0.00781754777, 0.00696589937, -0.00273555447, -0.00697764615, -0.0106074316, 0.0241750777, 0.00214233715, -0.0229768958, 0.00149258785, 0.0202398729, -0.00415252196, 0.0104782162, -0.00150947401, 0.00561794499, -0.00795263704, -0.00756499032, 0.00432285154, 0.00834028423, 0.00237874314, -0.00131565053, 4.83641052e-05, 0.00636680843, 0.00374138099, 0.00336254411, -0.00529784244, -0.00943274423, -0.00481915707, 0.00752974954, -0.0107483948, 0.00908033736, -0.0199579485, 0.00908621121, -0.0102726463, -0.000219703346, 0.0112770041, -0.0148832966, -0.00690129166, 0.00216436246, 0.0212148633, -0.0041760155, 0.0392815657, -0.0163164157, 0.00694827922, -0.00903335, -0.00911557861, 0.0410201028, 0.00331261987, 0.000262102258, -0.00775881391, -0.0204748102, 0.0153766647, 0.00373257091, 0.00381479901, -0.0176320653, -0.0264539719, 0.026101565, 0.00214233715, 0.0128510864, 0.00408497732, -0.0152004622, 0.00887476746, 0.0116529046]
|
19 Jul, 2024
|
How to Setup All In One SEO(AIOSEO) Plugin for WordPress?
19 Jul, 2024
All One SEO (AIOSEO) is a powerful WordPress SEO plugin that enables you to optimize your website for search engines and social media platforms effortlessly. In this article, we will guide you on how to install and set up All in One SEO correctly, which will help you improve your SEO rankings.
What is an All In One SEO plugin?
An All in One SEO (AIOSEO) plugin is a tool specifically designed for WordPress websites that helps improve your search engine ranking (SEO). It simplifies tasks like optimizing titles and descriptions, creating sitemaps, and integrating with social media and webmaster tools, all in one place. This makes it a user-friendly option for beginners to improve their website’s visibility in search results.
Why Choose AIOSEO?
AIOSEO offers a range of features to enhance your website’s SEO, including:
Easy setup and configuration
Advanced on-page SEO optimization
Sitemap generation
Social media integration
SEO analysis and audit checklist
Features of All In One SEO plugin:
Easy Migration: Export your entire website, including files and databases, into a single package. You can then import this package to another location to migrate your website.
Free Version Limitations: The free version allows migrations up to 512MB and doesn’t offer scheduling or backups.
Premium Features: The paid version has no size limits, allows backups and scheduling, and offers additional functionalities through extensions like cloud storage and multi-site support.
User-Friendly: Drag-and-drop functionality makes importing and exporting your website simple.
Broad Compatibility: Works on most web hosts, with various languages and devices.
Installing and Setting Up All In One SEO
Follow these steps to install and set up the All In One SEO plugin for your WordPress website:
Log in to your WordPress Dashboard:
Use your user ID and password to access the admin area.
Navigate to Plugins:
Hover over the “Plugins” section and click on “Add New.”
Search for “All In One SEO”:
In the search box, type “All In One SEO” and click “Install Now.”
Activate the Plugin:
After installation, click the “Activate” button.
Step 1: First login to your WordPress website using the user id and password.
Step 2: After login into your WordPress website, hover over the “Plugins” section and then click on the “Add New” button.
Step 3: Search for the “All In One SEO” plugin in the search box and then click on the “Install Now” button.
Step 4: After installing the “All In One SEO plugin” to your website, now click on the “Activate” button.
Step 5: After clicking on the “Activate” button, the “All In the One SEO setup wizard” will pop up on your screen. Click on the “Let’s Get Started” button for a quick setup of the “All In One SEO plugin”.
Step 6: Choose the category of your website and then click on the “Save and Continue” button for the next step.
After choosing the category of your website, click on the “Save and Continue” buttons.
Step 7: In step 2, you have to add the “Additional Site Information” such as the site name, phone number, logo, and social handles URLs. After adding all this information click on the “Save and Continue” button.
Step 8: In Step 3, you have to choose the SEO features and then enable them for your WordPress website.
After choosing the SEO features, click on the “Save and Continue” button for further process.
Step 9: In step 4, you have to set the search appearance for google and then click on the “Save and Continue” button for the next step.
Step 10: In step 5, you can add your email to the “All In One SEO plugin” for further SEO-related tips and tricks on your email address. After adding your email click on the “Save and Continue” button.
Step 11: In the final step 6, the “All In One SEO” plugin will ask you to purchase the premium version of the “All In One SEO” plugin, and you have to add the license key for this plugin. It is up to you, you can also skip this step and go with the free version of the plugin.
The “All In One SEO” plugin is successfully activated on your WordPress website and you can boost your website growth by doing the SEO of your website.
This is how you can install and set up an “All In One SEO” plugin for your WordPress website and optimize the website for SEO.
Basic SEO Optimization
AIOSEO offers a user-friendly interface to manage your website’s SEO:
SEO Title and Description: While creating or editing a page/post, look for the AIOSEO section. Here, you can craft compelling titles and descriptions that entice viewers and search engines alike.
TruSEO Score: AIOSEO offers a real-time TruSEO score to analyze your content’s SEO strength. Follow the on-page guidance to improve your score and optimize your content.
Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?/How to design datalists for mobiles using jQuery EasyUI Mobile ?/How to design menu using jQuery EasyUI Mobile ?/EasyUI jQuery menu widget/EasyUI jQuery datebox widget/How to make use of multi-mode jtsage-datebox plugin?/Step by step guide to make your first WordPress Plugin/Explain MonsterInsight Plugin in WordPress/How to Setup All In One SEO(AIOSEO) Plugin for WordPress?
|
https://www.geeksforgeeks.org/how-to-set-up-all-in-one-seo-plugin-in-wordpress-website?ref=asr7
|
CSS
|
How to Setup All In One SEO(AIOSEO) Plugin for WordPress?
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, How to design menu using jQuery EasyUI Mobile ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, Step by step guide to make your first WordPress Plugin, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, EasyUI jQuery datebox widget, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, Explain MonsterInsight Plugin in WordPress, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, EasyUI jQuery menu widget, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, How to make use of multi-mode jtsage-datebox plugin?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to Setup All In One SEO(AIOSEO) Plugin for WordPress?, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, How to design datalists for mobiles using jQuery EasyUI Mobile ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0053499327, 0.00629058061, -0.00277784979, -0.010164219, 0.0220529586, 0.00771461613, 0.0293429773, 0.005356465, -0.022457961, 0.0481820591, -0.00508864177, -0.0150372963, 0.00223077182, -0.0552369133, 0.0163829457, 0.0100988969, -0.016539719, -0.0164613314, 0.0277229734, -0.016761817, -0.0066073956, -0.0318252407, -0.031198144, -0.00281051127, -0.0448114052, 0.0127118062, -0.00658453302, 0.00934768468, -0.00445174519, -0.0139660034, 0.0275661983, -0.0129273711, 0.0118430136, 0.0106802694, -0.0239081252, -0.0160955247, 0.0283762012, -0.00180780701, -0.0311720148, 0.048417218, 0.00254268781, 0.0119148688, 0.012751, -0.0070809857, -0.0169055276, -0.0119932564, 0.00759703526, -0.0409442969, -0.00161918753, -0.00455952762, 0.0301529802, 0.0494623818, 0.0389062278, -0.00870752241, 0.0190089196, 0.0170753654, 0.0466404408, 0.013253985, 0.0166573, 0.0137961637, 0.0437662415, -0.00330043165, -0.0123721277, 0.00648654858, -0.0238819961, 0.016147783, 0.00127379352, 0.00204623514, -0.0490443185, 0.0258155502, 0.000433171459, -0.00115376303, -0.026991358, -0.0282978136, -0.0168402046, -0.0124570476, 0.0361626707, -0.00678050099, -0.0179768205, 0.0471107662, -0.0231503807, -0.0141881006, -0.0288726538, 0.0151156839, -0.00112436782, -0.0176632702, -0.0318252407, -0.0476856045, 0.0362671874, 0.0454646312, -0.0359013826, -0.0299962051, 0.00470323768, 0.0224057026, 0.0142795527, 0.00137177773, -0.0225363467, 0.00901453942, 0.000867976, 0.00767542282, 0.0165919773, -0.0129208388, 0.0183295626, -0.00470650382, -0.032426212, 0.012071644, 0.0192963388, -0.0127444677, -0.0138353575, -0.00968083087, -0.02957814, -0.0380700976, -0.00125664636, -0.001593875, 0.00458239065, 0.0342291184, -0.036345575, -0.0447068885, 0.0166050419, -0.0128751136, 0.000559734297, -0.0147106824, 0.0258808713, 0.0346210562, -0.0324000828, 0.0275139399, -0.00288726529, -0.00649961317, 0.0601491854, -0.0184863377, 0.0230850577, 0.0505598076, 0.0107978499, 0.0278013609, 0.0308323372, 0.00866832864, -0.0201847292, -0.00758397067, 0.0260637756, -0.0189435966, -0.0432436578, -0.0151156839, -0.018055208, -0.00336738769, -0.00584965199, 0.0440014, -0.00780606829, 0.0116666425, -0.0313810483, -0.0138222929, -0.0423552692, -0.0395594537, -0.0324000828, 0.0106998654, -0.00825679488, -0.00754477736, 0.0195968244, 0.00834824704, -0.0211253762, 0.0398468748, 0.00440928526, -0.0325307287, 0.0052911425, 0.0255803876, 0.0208640844, -0.00634937081, 0.0139529388, 0.0135087436, -0.0390891321, 0.0443672091, 0.03365428, 0.00697646942, -0.0336804092, -0.00821760111, -0.0262728091, 0.00649961317, 0.0279842652, -0.0323478244, 0.0081000207, -0.00860300567, 0.00683929166, -0.0113988193, -0.0152202, -0.047894638, 0.0247834492, 0.0150895547, 0.0149589088, 0.00144199957, 0.00860953797, 0.00209196098, 0.00591497449, -0.0128424522, 0.0490704477, 0.0361365415, 0.00790405273, 0.0215957, -0.0199495666, 0.03365428, 0.0230458658, -0.0259723235, -0.00363521092, -0.0103797847, -0.0306755621, 0.0151287485, -0.0101315584, 0.00297055184, 0.0468756035, 0.0258286148, 0.0225363467, -0.0146453595, -0.0114053516, 0.0184863377, 0.00526501331, -0.00588231348, 0.0112877702, 0.00969389547, -0.0315900818, -0.00916478131, -0.0177155286, 0.0128816459, -0.00391609874, -0.00866179634, 0.0160955247, -0.0107390592, -0.0306755621, -0.0393765531, 0.00948486291, -0.0527807809, 0.0496191569, 0.00724429265, 0.00320898, -0.00893615186, -0.0102948649, 0.023267962, 0.0151810059, 0.019322468, 0.056282077, -0.013365034, -0.0337065384, 0.0276184566, -0.0241040941, 0.0262858737, 0.00447134208, 0.00519315852, 0.000550344121, -0.0178984329, 0.00940647535, -0.0189827904, -0.0100009125, 0.0391936488, 0.00924316887, 0.0139268097, -0.00314365723, 0.0310936272, -0.00789752, 0.0371294506, 0.043687854, -0.0120977722, -0.016892463, 0.0317729823, 0.0103732524, 0.019061178, 0.000502168608, -0.0138092283, -0.008237198, -0.0164613314, 0.0464836657, -0.0249271598, -6.43531093e-05, -0.0087336516, 0.026116034, -0.00898841, 0.0478423797, 0.0527285226, 0.0107390592, -0.00527154561, 0.0120455148, -0.0059084422, 0.0164352022, 0.0227061864, 0.0314333066, -0.0459872149, 0.0580066, 0.0174542386, -0.0066008633, -0.073109217, -0.00942607224, -0.00768848741, -0.0114706745, 0.0297087859, -0.0380962268, 0.0123590641, 0.0204590838, -0.0462223738, 0.0400820374, 0.0333929881, -0.0165527835, -0.0151418131, -0.00077080843, 0.0252537746, -0.00702219503, 0.0104908329, 0.0101707513, 0.0223142505, -0.00618279772, 0.0531465858, 0.0038867034, -0.0256065167, -0.0280887801, -0.0149589088, 0.0349607356, 0.0241171587, 0.00507557718, -0.0162000414, 0.0361365415, 0.0115555935, 0.031485565, 0.000785506039, -0.00989639573, -0.0160040725, -0.0180290788, -0.0510301292, -0.0221444108, 0.0122872088, 0.00791058503, 0.00516376318, -0.0160302017, -0.0219876356, 0.034594927, -0.0136393895, -0.000660168, -0.0421462357, 0.00574186957, 0.000870425603, 0.0256326459, -0.026730068, 0.00868792553, 0.0426165611, -0.003850776, -0.000166062673, -0.0216087643, -0.021229893, -0.000525439857, 0.017767787, 0.0297871716, 0.000141260432, -0.00100597029, -0.0232418329, 0.0343858935, 0.0131037431, 0.000921867264, -0.0349346064, 0.0138222929, -0.00249206275, 0.0250839349, 0.00391609874, -0.0527546518, 0.00181107316, -0.00162082061, 0.00251982501, 0.045725923, -0.0223665088, -0.0187737569, -0.000326001318, -0.0155729428, 0.00172615354, 0.00272559165, 0.0213866681, 0.0259461943, -0.0384097733, -0.00935421698, 0.0104516391, 0.011392287, -0.0151418131, -0.0491488352, 0.0368681587, -0.0192963388, -0.0179898851, -0.0115686581, 0.0350913778, 0.0204068255, 0.0261290986, -0.0106214788, 0.0487830266, 0.0183426272, -0.037286222, 0.0548711084, -0.0199887604, 0.0199756958, 0.0209294073, -0.0383052602, -0.00779300369, -0.0351958945, -0.0290033, -0.013058017, 0.00367767061, -0.0200148895, -0.00307996757, 0.0343858935, -0.00108599069, 0.0507949665, -0.0408920385, -0.0177808516, 0.00166573, -0.0187998861, 0.00113824883, -0.00974615384, -0.0286374912, -0.0136263249, 0.00356008974, -0.0311197564, 0.0201586, -0.0488614142, 0.0115359966, 0.0409442969, 0.0620827377, -0.032948792, 0.0359797701, 0.00987679884, 0.050585933, -0.0443149507, 0.0496975444, 0.0166442357, -0.0608285405, -0.0053499327, 0.00576799829, -0.000302730099, 0.0365807377, 0.0261029694, -0.0313287899, 0.000703852565, -0.0199887604, 0.0299962051, 0.000190762832, 0.00887736119, -0.0394026823, 0.0382530019, -0.0235945769, -0.00231242529, -0.013430357, -0.0309891105, -0.00985720288, 0.00527154561, 0.00773421302, -0.0646956488, -0.0479730256, -0.00320244767, 0.0141358422, 0.0122153535, -0.00457259221, -0.0640685484, -0.0215826351, -0.0623962879, -0.005444651, 0.0298133, 0.00523561798, -0.032008145, 0.0221966691, 0.0305971745, -0.0354833156, -0.00148772553, 0.0285591055, 0.0309107229, -0.0098114768, 0.0264034532, -0.0140313255, -0.0425643027, -0.0432175286, 0.0125876935, -0.0121565629, 0.00524868257, -0.0323216952, 0.0769763216, 0.0297349133, 0.0209686011, 0.00662372634, 0.0130449524, -0.00335105695, 0.0183556918, 0.0220660232, -0.0104124462, 0.0414407514, -0.00899494253, 0.00470650382, 0.0159910079, 0.0206811819, 0.0340984724, 0.0295258816, 0.0210208595, -0.000246389245, -0.0215695705, 0.022719251, -0.0087336516, -0.0281932969, 0.00681316247, -0.0275661983, -0.0206681173, -0.0117450301, -0.00279907975, -0.0010663938, -0.0281149093, 0.0151548767, -0.0442365631, 0.0161739122, -0.00870752241, 0.0158081055, 0.0336804092, 0.000133299225, 0.0306494329, 0.0265079699, 0.0277229734, 0.00628404832, -0.0320342742, 0.0117189009, -0.010954625, 0.0278274901, -0.018995855, 0.0212821513, 7.7979028e-05, -0.0015359011, 0.00203153747, -0.00275335368, -0.00592477294, -0.0189697258, 0.0143971331, 0.00643429067, 0.0176632702, -0.00734227663, 0.0263381321, 0.0106345434, 7.86424644e-05, -0.00961550791, -0.0024463369, -0.00767542282, -0.0295258816, 0.0014044391, 0.00370706595, 0.00808695611, -0.0175587535, 0.00337391975, -0.0422507524, 0.00128604157, -0.0238558669, -0.0303358827, -0.0362149291, 0.0140182618, 0.0228237677, -0.0296565276, -0.00015616219, 0.0487307683, 0.00581045821, 0.0117515624, 0.00624158839, 0.0173758511, -0.013169066, -0.00435702736, -0.0149589088, 0.00621219305, -0.012248015, -0.0284807179, -0.0400820374, -0.0360581577, 0.0281410385, -0.00638529845, 0.00320408074, 0.0110918023, 0.00462158443, -0.0122937411, 0.0135740666, 0.00489594, 0.0127052739, 0.0109676896, 0.000961060927, 0.00686542084, 0.027122004, 0.0150372963, 0.00978534762, -0.0189435966, 0.0164221376, -0.016474396, 0.023398608, -0.00043276319, -0.0141358422, 0.00180617394, 0.0199756958, 0.0151287485, -0.00131053757, -0.0240387712, -0.00321877841, 0.0148413284, 0.0128751136, 0.0169055276, -0.0157297179, -0.0260637756, -0.0346210562, 0.0236468334, -0.016147783, 0.0201324709, -0.0282194261, -0.0140182618, 0.010647608, -0.0332100838, 0.0266516805, 0.063755, -0.0119867241, -0.0114249485, 0.0136785833, 0.00354702515, 0.0389062278, -0.00647021784, -0.0394810662, 0.0299178176, 0.0437139831, -0.0451772101, 0.0243523195, 0.00771461613, 0.00558509491, 0.00753824506, -0.0396117121, -0.0235684477, 0.02116457, 0.0244437717, 0.0259461943, 0.0347778313, -0.00785179436, 0.0233724788, 0.0197535977, 0.0029917818, -0.0331839547, -0.0173627865, -0.0108697051, -0.000961877464, 0.0294997524, -0.0117254332, 0.0163568165, -0.00257698237, 0.0264557116, 0.00523561798, -0.00637223385, 0.00109415594, -0.0198581144, -0.00358621869, -0.00615993515, 0.121970631, -0.00461505214, 0.0494101271, 0.00269619632, -0.00887736119, 0.0331839547, -0.00102720014, -0.0126595479, -0.0230981223, 0.00554590113, 0.0183034334, 0.00738147041, -0.00275335368, -0.0176502056, -0.00516049704, 0.00618279772, -0.00836784393, 0.0211123116, -0.0101315584, 0.0303097535, -0.00359928329, -0.00871405471, -0.00729655055, 0.00355029129, -0.0247311909, 0.0389846154, -0.00248553045, 0.024012642, -0.0293168481, -0.023333285, 0.0307800788, -0.00858994108, -0.0324523412, 0.0212168284, 0.0226931218, 0.00486001233, -0.0185385961, -0.0275139399, 0.00285133789, 0.00222260645, -0.0130841462, -0.0215957, 0.00749905128, -0.0262728091, -0.0104777683, -0.00546751404, -0.00421658345, 0.00288889837, -0.000304159039, 0.0360842869, 0.00689808186, -0.000698545133, -0.0196360182, -0.00219811033, -0.00579086132, 0.0265732929, -0.00455299532, -0.0243392549, 0.000595253543, -0.00457259221, -0.00430476898, 0.00169349217, 0.0200279541, 0.000755294284, -0.0129143074, -0.00174248428, -0.0163698811, 0.00900800712, 0.0197405331, -0.0136001958, 0.0255150646, 0.0362933166, 0.0187868215, 0.00426230906, -0.00105169625, -0.0157558471, 0.0148805212, 0.0223795734, 0.00941954, 0.010340591, -0.0544530414, -0.00265210355, -0.00351762981, -0.000956978241, 0.00276151905, -0.00371686416, -0.0171668176, -0.0319558866, 0.00617953204, -0.0112681733, -0.00367767061, 0.0146453595, 0.0205636, -0.0121043045, -0.00208706176, -0.0267170034, 0.00100678683, 0.000125338018, -0.0051245694, -0.0123917246, 0.000175963141, -0.0204982776, 0.0285852347, 0.00833518244, 0.0209294073, -0.000119928482, -0.0124113215, 0.0106214788, -0.0213082805, -0.00286603556, -0.0244307071, -0.0204329547, -0.0453339852, -0.00992905721, 0.00423291419, -0.00285950326, 0.0202761814, -0.0127771292, 0.0172060113, 0.030257497, 0.0284023304, -0.00477835909, -0.00772768073, -0.0289510414, -0.00783873, 0.0267561972, -0.0192310158, 0.0145408437, -0.0170100424, 0.0277229734, 0.0134826144, -0.0399775207, 0.00686542084, -0.0142664881, -0.035117507, -0.0133715663, 0.00250186119, 0.000200050912, 0.00265047047, -0.00169512525, 0.00173758506, 0.0204198901, -0.0327658914, -0.00352742826, 0.00232059066, 0.055759497, -0.00626445143, 0.0124635799, 0.00722469576, 0.00180454087, 0.00699606631, 0.00156203017, 0.00629711291, -0.00110395439, -0.0355094448, 0.0149327796, -0.0109742219, 0.0233724788, -0.00433743047, -0.00892962, 0.007394535, -0.0257632919, 0.00901453942, -0.0379394516, 0.0215303767, -0.0376781598, 0.0147629408, 0.00772114843, -0.00599989435, -0.0163437519, -0.00464444747, 0.0207595695, -0.000565858267, 0.0109415604, -0.00916478131, -0.0319297574, 0.0364500917, -0.00679356558, 0.0138222929, -0.00113661576, -0.00988986343, -0.0033837182, 0.0141227776, 0.0271481331, 0.00910599064, -0.00200377521, -0.00534340087, 0.00728348643, -0.0467972159, -0.000442561606, 0.0334975049, -0.0109807532, 0.000598111423, 0.0193485972, -0.00916478131, 0.0117515624, 0.00273865624, -0.0163698811, -0.0402126834, -0.0120520471, -0.0239995774, -0.00938034616, 0.0102818, -0.0123851923, -0.00947833061, 0.0476333462, 0.015468426, 0.0237252209, -0.0175456889, 0.0288465247, -0.00294115674, 0.0391413905, 0.0393765531, -0.00382791297, -0.0153639102, 0.0183034334, 0.0241824798, 0.00798897166, 0.0102818, 0.0056112241, 0.0185647253, 0.0463007614, 0.0180160142, -0.00423618034, 0.00312569342, -0.0116078518, -0.0319820158, -0.0140705192, -0.0358491242, -0.0288465247, 0.0432959162, -0.0186692402, 0.000901453895, 0.00998784788, -0.0093084909, 0.000500127266, -0.0279058777, 0.0318775, -0.0293952357, 0.0020592995, 0.00681969477, -0.00314692338, 0.0245874822, -0.0191134363, 0.0119148688, 0.0290033, -0.0111375283, -0.0169316567, -0.0138614867, 0.00665312167, 0.0275661983, 0.0049122707, 0.0359797701, 0.0067609041, -0.00564388512, -0.0158081055, 0.0122284181, 0.0172974635, 0.0144363269, 0.00244960305, -0.00604888611, 0.0230981223, -0.0237252209, 0.042041719, 0.00505924691, -0.00835477933, 0.012946968, -0.0144624561, -0.00308649987, 0.0120324502, 0.0055099735, 0.00596396672, -0.0412317179, 0.0133454371, 0.00941300765, 0.0119214011, 0.0094979275, 0.019936502, 0.0166964941, -0.0162523, 0.0350913778, -0.0422768816, -0.00757090654, 0.00893615186, 0.00812615, 0.00536626345, 0.00794977788, -0.00398142124, 0.0130384201, 0.010164219, 0.00757090654, 0.0128228553, -0.0120324502, -0.0106802694, 0.05534143, -0.0330794379, 0.000224546937, 0.0163960084, 0.00893615186, -0.0249402244, 0.00433416432, -0.00631344365, -0.0545053, 0.001593875, 0.00144444918, 0.0110526085, 0.0227976386, -0.000251492573, -0.0218961854, 0.0154814906, -0.0338371843, 0.00335105695, -0.0350129902, -0.000576881517, -0.0134564862, 0.00668578316, -0.0167879462, 0.0177939162, -0.0338110551, -0.00336085539, 0.00934768468, 0.0393765531, 0.0392459072, -0.00449093897, -0.00520948926, 0.0130122909, -0.0110460762, 0.00736187352, -0.030806208, 0.0263381321, -0.0232810266, -0.0231765099, -0.00121826923, -0.0262336154, -0.0109219635, -0.0104647037, -0.0340723433, -0.00725735724, -0.00635916926, 0.0160302017, -0.0181989167, 0.0158472974, -0.0367375128, 0.0256326459, -0.0165005252, -0.0207595695, -0.0108109144, 0.00662046, 0.00634610467, -0.00988986343, 6.9507485e-05, -0.0121761598, 0.00631997595, 0.0251361933, -0.00351436366, 0.00651921, 2.15616092e-05, -0.00922357198, -0.0526240058, -0.0275139399, 0.0306494329, 0.0210469887, 0.0571704693, 0.00533033628, -0.0393242948, 0.014723747, -0.0270174872, 0.0310936272, -0.020615859, -0.071227923, -0.0129273711, 0.0225886051, 0.0299439467, 0.01478907, -0.0127314031, -0.00010079096, 0.00999438, 0.0394288115, -0.0226016697, -0.02142586, 0.0180944, -0.00825679488, -0.00605868455, 0.0150764901, -0.00762316445, 0.0151679413, -0.0304665286, -0.0161347184, 0.0281149093, -0.000845113, -0.0211384408, -0.0146976179, -0.0299439467, -0.0290555581, -0.0523365848, 0.00169512525, 0.0058365874, 0.027122004, 0.00796284247, -0.032008145, 0.0152855227, -0.0309629813, -0.00566348201, -0.0153769748, -0.00661719404, -0.0384359024, 0.00117825903, 0.00494493172, -0.000867976, 0.0099486541, -0.00567981275, -0.0341246, 0.0324784704, 0.0143056819, -0.0279320069, -0.0010729261, 0.00218994496, -0.0118038207, 0.00191722263, 0.0124374507, -0.00343271042, 0.0053499327, -0.00996825099, 0.0314594358, 0.0111375283, -0.00112600089, 0.00146077992, -0.00123459985, -0.00896228105, 0.00738147041, -0.0107521238, 0.00591497449, -0.0166311711, -0.00580719206, 0.00797590706, 0.0250578057, -0.024273932, -0.00150405627, 0.00382791297, 0.0245221592, 0.0235945769, -0.0238558669, -0.0203415025, -0.00774074532, 0.0185908545, -0.00567981275, -0.0212690867, -0.0278797485, -0.00813268218, 0.0137177771, -0.00800856855, -0.0123851923, 0.017637141, -0.014109713, 0.0276968442, 0.000841030385, -0.0194400493, 0.00617626589, -0.00143138471, 0.0309368521, 0.00953712128, 0.0298655592, -0.0177416578, -0.0167748816, 0.0204460192, 0.00181760546, 0.0143971331, -0.00275335368, -0.000568307878, 0.0354833156, 0.00834824704, 0.0334191173, 0.00468690693, -0.0222358629, -0.0256587751, -0.0107913176, 0.0200410187, 0.0209032781, 0.0294736233, 0.0166703649, 0.00902107172, -0.0309368521, -0.0219876356, -0.00454972917, 0.0247965138, 0.0313287899, 0.00356988818, 0.00376259023, -5.10589125e-05, 0.00684582395, -0.0265079699, 0.0157035887, -0.0167487524, 0.0263120029, -0.0131037431, -0.0274878126, 0.022039894, 0.00956978276, -0.0126530156, 0.0017898432, -0.0220529586, -0.0278797485, -0.0167879462, 0.037286222, 0.000288236624, -0.00074549584, 0.004118599, 0.0146845533, -0.0133911632, -0.00826985948, -0.0128228553, -0.00956978276, -0.00230262685, -0.000502168608, -0.0104385745, 0.012685677, 0.00419698656, -0.00580719206, 0.00864873175, -0.0112812379, -0.0178984329, 0.0111179315, 0.0266386159, -0.0151287485, -0.0120324502, -0.00425577676, -0.0104189785, 0.000525439857, 0.0196490828, 0.0110134147, -0.000119214012, -0.0159387495, 0.0252015162, -0.021778604, 0.0146976179, 0.000410920911, -0.0130776139, 0.00574186957, -0.00290033, -0.00527481176, 0.0032302097, -0.00808695611, -0.022719251, -0.00296728569, -0.0194792431, -0.00488614151, 0.000473589898, 0.0136393895, 0.00832211785, -0.0221574754, 0.0255803876, 0.0388278402, -0.01708843, -0.00776687451, 0.00950446, 0.0140966484, 0.00100597029, 0.0169055276, 0.000231487487, 0.00314529031, 0.000931665651, -0.00138974143, -0.0207334403, -0.00247083278, 0.0098180091, 0.00621219305, -0.00821106881, 0.0179114975, -0.003543759, -0.00274518831, 0.0199103728, 0.0090472, 0.00213932, -0.00536952959, -0.00276315212, 0.0131429369, -0.0128881782, -0.0213344097, -0.0137569699, 0.00782566518, 0.00164613326, 0.00569287734, 0.0251492579, 0.00255248626, 0.00704832422, 0.0218700562, 0.0461178608, -0.0144755207, -0.0100139771, -0.0234639309, -0.0102948649, 0.015860362, -0.00705485651, 0.0240779649, 0.00674130721, -0.00344577478, 0.0330533087, 0.00893615186, -0.0111832544, -0.002256901, 0.00917131361, 0.0414146222, -0.00915824901, 0.0211515054, -0.0172843989, -0.0162261706, 0.0254105479, 0.0169447213, 0.0139006805, -0.00595416827, 0.000626281835, -0.0183687564, -0.00610114448, 0.00814574677, 0.00845276378, 0.0173758511, 0.0187476277, -0.00471630227, -0.0260507111, 0.019061178, 0.00804123, -0.0109023666, 0.00612400752, 0.00945873372, -0.00583332125, 0.0156252012, 0.00112436782, -0.0152332643, 0.0117450301, -0.0222881213, 0.0251100641, 0.00655840384, -0.0117972884, -0.00379851763, 0.0169055276, 0.00501352083, 0.0061501367, 0.0057647326, 0.0169316567, 0.0132147912, -0.0353788, -0.0313287899, 0.000708343519, 0.013495679, 0.000480938732, -0.00313385879, 0.0077080843, -0.00346210552, -0.00921050739, 0.0146061657, -0.0195315015, -0.0283762012, -0.0187998861, 0.0101184938, -0.0252668392, -0.0126987416, 0.0222750567, 0.0159387495, 0.0181858521, -0.0103275264, 0.00524215028, -0.00790405273, 0.0475288294, 0.0417020395, -0.0113726901, -0.0239734482, -0.00352742826, 0.007394535, 0.00519642467, 0.0085507473, 0.00849195663, -0.0306755621, 0.0110330116, 0.0317729823, 0.000941464095, 0.0151156839, 0.00272069243, 0.00636243541, 0.0544530414, -0.0118430136, 0.00923010428, 0.00162490329, -0.0164482668, 0.0109023666, -0.0208118279, 0.0130253555, 0.00858340878, -0.016539719, 0.0113792224, -0.0228107031, 0.00711364718, -0.0136001958, -0.0362149291, 0.0174803678, 0.0106018819, 0.00794324558, -0.0109154312, -0.0049710609, 0.0106737372, -7.0885384e-05, -0.0300745927, -0.0159126204, -0.00725082494, 0.0213605389, -0.000123092555, -0.0260376465, 0.0117907561, -0.0192702096, 0.00792364869, -0.0111048669, -0.0139137451, 0.0137047125, -0.0155206844, -0.0233071558, -0.00414799433, 0.0224840902, 0.000703444297, -0.00768848741, -0.0139529388, 0.0202631168, 0.0172060113, 0.0231765099, 0.0234508663, -0.00452033384, -0.00294278981, -0.0182511751, 0.0159779433, -0.00863566715, 0.000290482101, 0.00476856064, 0.0258286148, -0.0117319655, -0.0254758708, -0.0121173691, 0.0170623, -0.000922683801, 0.0123917246, -0.00435376121, 0.0116862394, 0.00511477096, -0.0314333066, -0.032948792, -0.00899494253, 0.0118234167, -0.00659433147, -0.00765582593, -0.00825679488, -0.00530420709, -0.0301007219, 0.00876631215, -0.00724429265, 0.0174019802, -0.0129992263, -0.00953712128, 0.0215826351, 0.0183948856, -0.00114396459, -0.00106966, 0.0340462141, -0.014919715, 0.00296238647, -0.0173366573, -0.0165789127, 0.00808695611, -0.0130514847, -0.00955018587, 0.0213736035, -0.0298655592, -0.00463138288, -0.00312242727, -0.00535973115, -0.0117580947, 0.00900147483, -0.0171014946, 0.00298524951, -2.1459542e-05, 0.00249859504, -0.00867486093, 0.033366859, -0.0198581144, -0.000258841377, 0.00805429462, -0.0114053516, -0.00539565878, -0.00726388954, -0.0434788205, -0.00468364079, 0.0008369477, 0.0246789344, -0.00130237231, -0.00798897166, 0.0138614867, 0.00189272664, -0.0155860074, -0.0297349133, -0.0281932969, -0.00458239065, 0.0144101977, -0.0164874606, -0.000598111423, 0.00601295894, 0.0204590838, -0.0221313462, -0.0197013412, -0.00590517605, -0.00411533285, -0.0361888, 0.00546098175, 0.0281932969, 0.0246136114, -0.0138876159, -0.0363194458, -0.0296565276, -0.00642775837, -0.00222423952, -0.00027231421, -0.00808042381, -0.000700586475, -0.0224187672, -0.0227715094, -0.0285852347, -0.0191395655, 0.00620566076, -0.00437989, 0.0116274487, 0.0202369876, 0.0204982776, -0.0141881006, 0.0142142298, 0.0102883326, -0.0128489845, 0.0190089196, 0.0359797701, -0.0108697051, 0.00820453651, -0.00971349236, -0.0271481331, 0.00451053586, 0.0040467442, 0.00382464682, -0.00317305233, -0.0110787377, 0.0212168284, 0.000805102871, 0.00310609653, -0.0114576099, 0.000381117396, -0.0063755, -0.0169185922, 0.00263740588, 0.0108174467, -0.0192048866, -0.00100515375, -0.0136785833, 0.0102491388, 0.0273049083, -0.00683929166, 0.00121826923, -0.00662699249, -0.00100352068, -0.0295520108, -0.027409425, -0.0201455355, -0.00414146204, 0.01682714, 0.00127461, -0.00305220531, 0.0175718181, 0.0304142702, -0.00759703526, -0.020877149, -0.0140966484, 0.00351436366, -0.0150242317, -0.00063934637, -0.0201324709, 0.000338861748, -0.0237905439, 0.0280626509, -0.0209032781, 0.0303358827, 0.00942607224, -0.018316498, -0.00812615, 0.00148119323, -0.00348170241, -0.0329749212, -0.0166442357, -0.0163306873, -0.0158211701, -0.00373646105, 0.00287910015, -0.000116968542, -0.00121663616, 0.0190219842, 0.0121826921, -0.0328965336, -0.00381158222, -0.00188129512, -0.0148935858, 0.00352742826, -0.0167748816, -0.00425577676, -0.0112028513, 0.0142142298, 0.0108305113, -0.0166573, 0.0255803876, 0.000732431305, 0.00121010386, 0.00932808779, -0.021229893, 0.0177416578, 0.0345426686, -0.0419633314, -0.000586271635, 0.0110460762, 0.0128881782, -0.00265700277, -0.0162523, -0.00505598076, 0.0101903481, 0.0136524541, 0.00627098372, 0.00698953401, 0.00940647535, 0.0116143841, -0.0201455355, 0.00951752439, -0.0284807179, 0.0101250261, -0.00169349217, -0.0145408437, -0.00607828144, -0.00828292407, 0.00612074137, 0.017023107, -0.00247736508, 0.0104320422, 0.0641208068, 0.0201324709, 0.00607501529, 0.00935421698, -0.0136132604, 0.0219092499, -0.019805856, -0.00609787833, 0.0187476277, 0.00718550198, -0.00430150284, -0.0177416578, 1.75044552e-05, 0.00945873372, -0.0158342347, -0.0129861617, 0.0188652091, -0.00112028513, 0.014371004, 0.0067609041, 0.0276968442, 0.00527481176, -0.00423618034, 0.0155076198, -0.00598356361, 0.00397162279, -0.00869445782, -0.00483061699, -0.00288889837, 0.031485565, 0.00840703771, -0.0112943025, -0.00189272664, 0.000478080852, 0.000906353118, 0.0128359199, -0.000739371812, -0.0172321405, -0.0297349133, -0.0160563309, -0.0212690867, 0.018995855, -9.10435774e-05, 0.00168695988, -0.000726307277, 0.0187868215, 0.00974615384, -0.00152365305, -0.0215826351, -0.00815227907, -0.000615666911, -0.00329553266, -0.0017898432, -0.00609134603, -0.00421984959, -0.0291339457, 0.0202108584, -0.00517682778, -0.00568961119, -0.016213106, -0.0098180091, -0.00144118315, -0.0088447, 0.0187606923, -0.00848542433, 0.00464444747, -0.0100270417, -0.00934768468, -0.0105234943, -0.0223011859, -0.0155468136, -0.0118495459, 0.00761663215, -0.0314333066, 0.00416759122, -0.0047456976, -0.00754477736, 0.0182119813, 0.00596070057, -0.00756437425, -0.00251329271, -0.00484368159, -0.00521602109, -0.00233365502, -0.00858340878, -0.00278111594, 0.0056177564, -0.00972002465, 0.0110134147, 0.0340723433, 0.0019368194, -0.0122414827, 0.00124766445, -0.0190481134, -0.0151418131, 0.00302281, -0.0136785833, -0.000619749539, 0.00923010428, -0.0187998861, -0.00307506835, -0.00258024852, 0.0145147145, 0.0144493915, -0.000618116464, -0.00557856262, 0.0124701122, -0.0346210562, -0.00658126688, -0.0274355542, -0.00164858287, 0.00215565064, -0.00674130721, 0.0259200651, -0.00705485651, 0.0292123314, -0.0166311711, -0.0123264026, 0.00257371622, 0.000908802729, 0.00972655695, -0.00828945637, -0.00044705256, 0.0109023666, -0.0284545887, -0.00795631, -0.0279842652, -0.00334289158, -0.0188129507, -0.0113530932, -0.0213082805, 0.00368420291, 0.0152855227, 0.00519642467, -0.0149458442, -0.0177285932, 0.0350652486, 0.00508537563, 0.0303881411, 0.00877284445, -0.00289543066, 0.0137047125, 0.0114837391, -0.0022993607, -0.0149589088, -0.000748762, 0.00305220531, -0.0211907, -0.0204721484, -0.00292972522, -0.0048240847, -0.000760601717, 0.00698300172, -0.0191003717, -0.00223893719, -0.00650941161, 0.00157346169, -0.0121108368, -0.00846582837, 0.0051245694, 0.0243784487, -0.000849195698, -0.0156643949, 0.00557203032, -0.0296303984, -0.0122153535, 0.0131951952, -0.00441255141, 0.0100988969, 0.0248487722, -0.00564388512, -0.00474896375, -0.0216348935, 0.00280561205, -0.00970696, 0.0145669729, -0.0132735819, -0.00833518244, -0.0169185922, 0.00011890781, -0.00355682359, -0.0120389825, 0.00977881532, -0.0247834492, -0.0271742623, -0.0182642397, 0.00211482402, -0.016892463, -0.0128489845, -0.00664658938, 0.0247050636, 0.0162261706, 0.0096285725, -0.0163306873, 0.00163225213, -0.0226147342, -0.0229936074, 0.0213082805, -0.0320342742, 0.00754477736, -0.0104385745, 0.00910599064, 0.00197601318, 0.00397162279, -0.00487960922, -0.0144101977, 0.0139529388, -0.0100466385, 0.0257894211, 0.00904066768, -0.0363194458, 0.0153639102, 0.00762316445, -0.00650614547, -0.00755784195, 0.0275923274, 0.00394549407, 0.0042655752, 0.0173497219, 0.0117842238, 0.0187476277, 0.00473916531, 0.0176240765, 0.0136263249, -0.00975921843, -0.0124178538, -0.00502658542, -0.00425251061, -0.00977881532, -0.00877284445, -0.0362671874, 0.00781913288, -0.00288073323, -0.00734227663, 0.0246136114, 0.0119344657, 0.0224840902, -0.0159910079, 0.00193518633, -0.0354833156, -0.00807389151, -0.0101446221, -0.0231503807, 0.0186039191, -0.0151548767, 0.0106149465, 0.0132866465, -0.0113465609, 0.00528461, -2.15360924e-05, -0.00366787217, 0.00929542724, 0.0144493915, -0.00162898598, -0.0129077751, 0.0285591055, 0.0121500306, 0.00286440249, -0.00916478131, 0.0002966061, -0.00674783951, 0.0140835838, -0.00463464903, -0.0191395655, 0.00416432507, 0.00760356756, -0.0294736233, 0.00996825099, -0.00607174914, 0.0123982569, 0.000792854815, 0.000969226239, 0.00376912253, 0.0209294073, -0.00977881532, 0.00432436587, -0.0176632702, -0.00847889204, -0.0112812379, -0.00433416432, -0.00341311353, -0.0109088989, -0.00832211785, -0.00805429462, 0.00463464903, 0.00402388116, 0.0169708487, 0.00144036661, -0.00304404, -0.00813268218, 0.0130776139, 0.00605215225, 0.00415126048, -0.0219353791, 0.0245874822, 0.0222227983, -0.0208902135, 0.00394876, 0.00363847706, 0.0179898851, -0.000231895756, 0.0215042476, -0.0151548767, 0.0266647451, 0.00947833061, 0.000249247096, 0.0407091342, 0.0156774595, -0.00629384676, -0.00786485896, 0.00828292407, -0.0080934884, 0.00554590113, 0.0236337688, -0.0159910079, 0.00328573422, -0.0118626105, 0.0109742219, 0.0245090947, -0.00356662204, -0.00952405669, 0.00558182877, -0.00101005298, -0.0206681173, -0.00784526207, -0.0131886629, 0.0104255099, 0.00374299334, -0.0242347382, -0.00493513327, -0.00923663657, -0.00712017948, 0.00851808582, 0.029029429, -0.017441174, 0.00295585417, -0.00551323965, -0.00548384478, -0.00638529845, 0.0189435966, 0.00611747522, 0.0124505153, -0.00496126246, -0.0016093892, 0.00508864177, -0.0177416578, -0.00608154759, 0.00312732649, -0.0255542584, -0.00988333113, 0.0112093836, -0.0211907, 0.00502658542, -0.00829598866, 0.000576881517, 0.0177547224, -0.00547731249, 0.0155206844, -0.0070809857, 0.00287093478, 0.00275008753, 0.00771461613, -0.00092023419, -0.0143187456, -0.00440275297, 0.0128947105, -0.0019858114, 0.00363194477, -0.0255803876, 0.0195445661, 0.0131102754, 0.0051409, -0.0321910493, -0.0135087436, -0.0143971331, 0.0185124669, -0.00786485896, 0.0205636, -0.0139529388, -0.0104385745, -0.00563735282, 0.00489594, -0.0110722054, -0.000146567909, 0.00403367961, -0.00858994108, -0.0106802694, 0.0104059139, 0.00302607613, -0.00485674618, 0.000573615369, -0.00502331927, -0.0131755983, -0.00478815753, -0.0110591408, 0.00467384234, 0.00146976183, 0.0138745513, -0.0128489845, 0.0104777683, -0.00245613535, -0.00187639589, 0.0198189206, 0.00374952564, -0.00388017111, -0.00269946246, -0.00331023, 0.01478907, -0.0101380907, -0.0091778459, 0.019061178, -0.00260147848, 0.0138484221, -0.0123590641, -0.00425577676, 0.00378545327, 0.0104124462, 0.0247311909, 0.0104124462, -0.0271742623, -0.00902760401, -0.00136932812, 0.0149066504, 0.00768195512, 0.0296826568, -0.00353396055, 0.00570267579, -0.00444194674, 0.0240518358, -0.0171014946, -0.00501025468, -0.00883816741, -0.00732921204, -0.000146976177, -0.0130906785, 0.0161608476, -0.00344577478, 0.0119475303, 0.00034416921, 0.0159518141, -0.0183687564, 0.00619912846, 0.00816534366, 0.0161216538, -0.00706792111, -0.010693334, 0.00555896573, 0.0170361716, -0.00496126246, -0.0163568165, 0.0103079295, -0.00798897166, -0.00458892295, 0.0274616834, -0.0156252012, -0.00276315212, -0.0206027944, -0.0118103521, -0.00909945834, 0.00782566518, 0.0201194063, -0.00716590509, 0.00687848497, -0.0249010306, 0.0224318318, -0.00721816346, -0.00838090852, 0.0256718397, 0.00196458166, -0.00329389959, 0.00889042579, 0.00953712128, 0.000386833126, 0.0132931788, 0.0249140952, -0.00083408982, 0.00469343923, -0.0139398742, 0.0218047332, 0.00515723089, -0.0375997722, 0.0065355408, -0.00375605794, 0.00474896375, -0.0159387495, 0.000724265934, -0.000769991893, 0.028898783, -0.0235161893, 0.0330271795, -0.00867486093, 0.00633957237, -0.00709405029, 0.00562755438, -0.00772768073, 0.0231111869, -0.00893615186, -0.00516702933, -0.00499392394, 0.00942607224, -0.00252799038, -0.00259657926, -0.0144232623, 0.000640162907, -0.0201324709, 0.0279581361, 0.012248015, -0.00265210355, -0.0107325269, -0.0198973082, -0.0122741442, 0.00628404832, -0.0177939162, 0.00780606829, 0.0135348728, 0.00439295452, -0.00723776035, -0.0137439063, 0.00666945241, 0.0198973082, -0.00425251061, -0.00691114645, -0.00170492369, -0.00388017111, -0.00536952959, -0.0129600326, -0.00628731446, -0.00649634702, 0.00236141728, -0.00290033, -0.0215826351, 0.0175848827, 0.00743372831, 0.00445827749, 0.0178984329, 0.0134564862, -0.00802816544, 0.00933462, 0.0151418131, 0.0120128533, -0.014175036, 0.00575166801, 0.0296042692, -0.0024528692, -0.0240649, -0.0121434983, -0.0140182618, -0.00251492579, 0.00183720223, -0.000863893307, 0.00430150284, 0.00396835664, 0.000539320929, 0.0245744176, 0.000628731446, -0.00850502122, 0.0112812379, -0.0114837391, 0.000793671352, -0.00867486093, 0.0334452465, 0.0188260153, -0.0187868215, 0.0151156839, 0.0142795527, -0.000639754639, 0.00142485241, -0.00598029746, 0.00352416211, -0.000558101223, 0.0163698811, 0.0022928284, 0.0175064951, 0.00592803909, 0.00788445584, 0.026860714, -0.00990292802, -0.00363194477, -0.00241204235, -0.0139398742, -0.00664658938, -0.0152593935, 0.0134826144, -0.00882510282, 0.0194400493, -0.000750395062, 0.00944566913, 0.00648981472, 0.0324000828, 0.0113465609, 0.00351436366, -0.0128359199, 0.000552793732, -0.00418392196, -0.023947319, -0.00283337408, 0.00299014873, 0.0228368323, 0.000533196901, -0.0104385745, -0.00209359406, 0.0187737569, -0.00290686218, 0.0105365589, 0.00263577281, 0.00934768468, 0.00195968244, 0.0112289805, -0.00288399914, 0.0115294652, 0.0128816459, -0.00209032791, 0.0139529388, -0.000299259846, -0.00648328243, 0.00744679291, -0.0233724788, -0.000511558785, -0.0102426065, -0.0117058363, 0.0138222929, -0.0066890493, 0.0133193079, -0.00387690496, 0.0166964941, 0.0191656947, -0.0101772835, 0.0128032584, 0.01682714, -0.0244176425, 0.0253190957, 0.0279842652, -0.00700259861, -0.00141015474, -0.00027088527, -0.000554426806, -0.00949139521, 0.0118626105, -0.00947833061, -0.00969389547, -0.00189762574, 0.0016273529, -0.019609889, -0.000773666252, -0.00296401954, 0.0273571666, 0.0146322949, -0.0342029892, 0.0032743027, -0.0324000828, -0.00300811254, -0.00419698656, -0.0125158383, 0.00320571382, -0.00144608226, 0.00228466303, -0.00955671817, 0.0123721277, 0.0218831208, 0.000693237642, 0.0173366573, -0.0163045581, -0.00358948484, 0.00670864619, 0.00287746708, -0.00579412747, 0.00648654858, -0.0213997308, -0.017637141, 0.0107455915, 0.0114902714, 0.0103144618, 0.0140313255, 0.0215565059, 0.0114445454, 0.0025753493, 0.0158472974, 0.0124897091, 0.0286897495, -0.0357968658, -0.00364827528, 0.0103797847, -0.0231895745, 0.00683275936, -1.32942e-05, -0.00799550395, -0.00425904291, -0.00864219945, 0.0180290788, 0.0158081055, -0.00921704, -0.0218047332, 0.00956325047, -0.00382138067, -0.012992694, -0.00170002447, -0.0151548767, -0.019936502, 0.000915334967, 0.0134042278, -0.00414799433, 0.0153508456, 0.00515396474, -0.0119540626, 0.00759703526, 0.0195706952, 0.00721163116, -0.0118822074, 0.0238428023, 0.0296826568, -0.0175064951, -0.00793671329, -0.012071644, -0.00291502755, -0.0246528052, 0.00893615186, -0.00391283259, 0.0151810059, -0.00758397067, 0.0387755819, 0.0033771859, -0.00475223, 0.0136524541, 0.00876631215, -0.0175456889, 0.00658779917, -0.00447460823, 0.0113988193, 0.0519969054, -0.0199756958, -0.00257861544, 0.0181727875, -0.00194171863, 0.0182642397, 0.012620355, 0.0100662354, 0.02142586, 0.0368681587, -0.00744679291, 0.0062219915, -0.00154406647, 0.00583985355, -0.020223923, -0.00161347189, 0.00485674618, -0.0096285725, -0.00871405471, -0.0100727677, -0.0169577841, 0.0121043045, 0.0241432879, -0.0127314031, -0.0159387495, 0.0102295419, 0.00461505214, 0.00611094292, 0.0112224482, -0.0156774595, 0.0295520108, -0.0209816657, 0.00413492974, -0.0260115173, -0.0115294652, 0.00719203427, 0.00603908813, -0.0111048669, -0.0199103728, -0.00328410114, -0.015533749, -0.017637141, 0.00673477538, -9.81755e-06, 0.00879244134, 0.00698300172, -0.00112681743, -0.00593783753, -0.00314855645, 0.0288726538, -0.0163437519, 0.0159910079, 0.00958937872, -0.00210665865, 0.00116356136, -0.015337781, -0.0056046918, 0.0160302017, -0.0110003501, 0.00579739362, -0.00955671817, 0.0389846154, 0.021974571, 0.0333929881, 0.000543403614, -0.00661719404, -0.002875834, -0.0198450498, 0.0144363269, -0.00649634702, 0.00318611693, -0.0033036978, 0.00826332718, 0.0144493915, 0.00975268614, 0.00909945834, 0.022653928, 0.0173366573, 0.00806082692, 0.00428517209, -0.00158407656, 0.00492206914, 0.00265863584, 0.00656493613, -0.0135348728, -0.0162000414, 0.00888389349, 0.00112355128, -0.00415452663, -0.0119279334, 0.00142158626, -0.00845276378, -0.00821760111, 0.0194661785, 0.0055230381, -0.00311752805, 0.00355355744, 0.000277213403, 0.0173366573, -0.00119377323, -0.00150323974, -0.0150503609, -0.0165919773, 0.0181597229, -0.00122888421, 0.000714059279, 0.00645062141, 0.027122004, -0.0115555935, 0.00230589299, 0.00382791297, -0.00400755042, -0.00474896375, 0.0134564862, -0.00371686416, -0.00620566076, 0.00224383641, -0.0225232821, 0.0103993816, 0.00271905935, -0.0101511544, 0.00111701898, -0.0185255315, -0.00551323965, 0.00542832026, -0.00115049689, 0.00966776628, -0.00333146, -5.35340332e-05, -0.00828945637, 0.0145016499, -0.000244756171, 0.0055099735, 0.0133780986, 0.00456279377, 0.0433743037, 0.0272787791, 0.00231242529, -0.0327920169, -0.00589537807, -0.0139268097, -0.0246397406, 0.00247083278, 0.0103928493, -0.0178984329, 0.00447460823, -0.00379198533, 0.00811961759, -0.0110591408, 0.0174150448, 0.00264393818, 0.00820453651, -0.0177547224, 0.000569124415, 0.00719203427, 0.00242184079, 0.0313287899, 0.00320408074, 7.04260892e-05, -0.0183687564, 0.0169447213, 0.00916478131, 0.033236213, -0.00225200178, -0.00483714929, 0.00469997153, -0.00252799038, -0.00633304, -0.00232059066, 0.0173497219, -0.00310446345, -0.0229805429, 0.0212429576, -0.00403041346, -0.00804776233, -0.00544138486, -0.0312504023, 0.0158342347, -0.0159518141, 0.0181727875, -0.00188619434, -0.0180290788, -0.00144689879, -0.0240257066, 0.0165266544, 0.0077080843, -0.0113661578, 0.0170361716, 0.00913865212, -0.0120585794, -0.0209294073, -0.0175195597, -0.012946968, -0.0294474941, -0.00594763597, 0.0185516607, -0.0132147912, 0.0114314808, 0.0390107445, 0.00421005115, 0.0110460762, -0.0172713343, -0.0188782737, -0.0044321483, -0.00663025863, -0.00599336205, -0.0151026193, 0.00234671962, -0.0255281292, 0.000449910411, 0.0124897091, -0.00296075339, -0.0137961637, 0.0179114975, 0.0107847853, -0.00868139323, -0.00829598866, -0.0239081252, 0.00767542282, 0.0098245414, 0.0117384978, -0.0182381105, 0.00785179436, -0.00469017308, 0.0120128533, 0.000731206499, 0.00997478329, 0.00229609455, -0.00759703526, -0.0151810059, -0.00649634702, 0.0136785833, 0.00941954, -0.00178004487, -0.00147057837, 0.00666945241, -0.00618933, 0.0129404357, -0.00193192018, -0.0116274487, -0.0162261706, -0.0221966691, -2.39474211e-05, 0.00720509887, -0.0179898851, -0.00681969477, 0.00270109554, 0.0183687564, 0.0065290085, -0.00913212, 0.018930532, -0.00224710256, -0.0177939162, 0.00667598471, -0.00365154142, 0.00836131163, -0.0124309184, 0.00705485651, 0.00189109356, -0.000168104, 0.0360581577, 0.00612727366, -0.00841357, 0.00663352478, 0.0023352881, -0.00432109972, -0.00620566076, -0.00556876417, 0.00259494619, 0.00704179192, -0.0184994023, 0.0159518141, 0.0143448748, -0.012248015, -0.0041055344, 0.00992252491, 0.000173003209, -0.00920397509, 0.00527154561, -0.0415975265, 0.0195184369, 0.0112355128, 0.00265047047, -0.0171929467, -0.00126072904, -0.0121173691, -0.0152724581, 0.000148507184, 0.0212821513, 0.014175036, 0.0191265009, -0.00936074927, 0.0204460192, -0.0137700345, -0.00198907754, -0.00841357, -0.0184340794, 0.00170329062, 0.0013644289, -0.0293952357, -0.0160955247, -0.00944566913, 0.0300223343, 0.0112159159, 0.0173758511, 0.0151418131, -0.0165005252, -0.00410880055, -0.00574513571, 0.00351109752, 0.0173235927, -0.00161183882, -0.00615993515, -0.0132082589, 0.0110330116, -0.0213866681, -0.0113204317, -0.0123198703, 0.0108305113, -0.00524215028, 0.0105953496, 0.0207595695, -0.0022993607, -0.0132082589, 0.00771461613, 0.0094979275, -0.020877149, 0.00651921, 0.0115359966, -0.00205603335, -0.00488614151, 0.00156366325, 0.00176861335, 0.00293299137, -0.00129012426, 0.00629711291, 0.0121043045, -0.0146976179, -0.00406634109, -0.0147629408, -0.0102687357, 0.000761418254, 0.00921050739, -0.010386317, 0.00340331509, 0.0012909408, -0.0101380907, -0.0198189206, -0.0060031605, -0.00840050541, -0.00764929364, 0.0227976386, 0.0180421434, -0.0188521445, 0.00516702933, -0.0147106824, 0.0195968244, -9.48200468e-05, 0.0122676119, 0.0160563309, 0.00935421698, -0.0050657792, -0.0183426272, -0.0112289805, -0.00319918152, 0.00538259419, -0.00214911834, -0.0163437519, 0.0105234943, -0.0111113992, -0.011019947, 0.0043602935, 0.000611175958, 0.00120112195, -0.00836784393, 0.00665312167, -0.00312569342, 0.0243131258, -0.00103863166, -0.00476202834, 0.00759050297, -0.0206942465, 0.0119148688, 0.0121696275, -0.0153247165, 0.00711364718, 0.00793018099, 0.0230458658, 0.00701566273, 0.00978534762, 0.0117842238, -0.0160824601, -0.0191395655, 0.0193355326, -0.0101838158, 0.0135218082, -0.0100139771, 0.00247899815, 0.00689154956, -0.00687195314, -0.00807389151, -0.016409073, 0.0313549191, -0.0177939162, 0.016474396, -0.000433988, 0.00129339041, -0.0163698811, -0.00798897166, 0.0104451068, -0.00296891876, 0.004206785, -0.00210665865, -0.00214095297, -0.0152071351, 0.0446546301, -0.00574186957, 0.00955018587, -6.05256064e-05, -0.0233724788, -0.018995855, 0.00681316247, 0.0379655808, 0.00657800073, 0.0451772101, -0.0122284181, -0.00727695413, 0.0185255315, 0.00662699249, 0.00242020772, 0.00133911625, -0.0012664448, 0.0121500306, -0.010516962, -0.00855728, 0.0183948856, -0.00913865212, 0.00879897363, -0.0109088989, -0.0054577156, 0.01237866, -0.0225494113, -0.0130710816, 0.00996171869, -0.00859647337, -0.0104908329, -0.00720509887, -0.00418065581, -0.00564388512, -0.00350783137, 0.0191787574, -0.031485565, 0.031067498, -0.008237198, -0.035404928, 0.00602275738, -0.0184079502, -0.0301529802, -0.00167716155, 0.0145669729, -0.00588557962, 0.0155598782, -0.0157558471, -0.00924970116, -0.0246397406, -0.0091843782, -0.013058017, 0.0137439063, -0.0276184566, -0.00802816544, 0.0074010673, -0.0011309, -0.0401081666, -0.0366852544, 0.00291339448, 0.0133389048, 0.00268149865, -0.00768848741, 0.00412839744, -0.00696340483, -0.0237121563, 0.0190481134, 0.00860300567, -0.0243523195, -0.0400036499, -0.00681316247, -0.0178853683, 0.00266843429, -0.0055165058, 0.00134483201, -0.016278429, -0.0167487524, -0.0224448964, -0.000707527, -0.0172582697, -0.00962204, -0.00104679703, -0.0158995558, -0.00254105474, 0.00160612306, 0.0142142298, -0.0317468531, 0.0124505153, -0.00815881137, -0.00314365723, 0.000544628419, -0.00467384234, 0.0124831768, -0.0212821513, -0.0115621258, -0.0144232623, 0.0173889156, 0.00138810836, -0.00911252294, -0.00288726529, -0.00461505214, 0.00511150481, 0.0240649, -0.0177155286, 0.00604888611, 0.00717896968, -0.00120275503, -0.00474896375, 0.00133911625, 0.0159518141, -0.00387690496, -0.00358621869, -0.0192963388, -0.0191526301, -0.0042721075, 0.000626690104, 0.0176240765, 0.00489920611, -0.000361112296, 0.00653880695, 0.0193616617, 0.0293691065, -0.00794324558, 0.0152985873, -0.0110656731, -0.0105953496, -0.00601949124, 0.0219223145, 0.00429170439, 0.037181709, 0.00408593798, 0.0110983346, 0.0109219635, -0.016278429, -0.00226996536, 9.85454899e-05, 0.00901453942, -0.0100466385, 0.0102230096, -0.0155468136, -0.000650777889, -0.00647675, -0.00575820031, 0.0385665484, 0.0102230096, -0.0020527672, -0.0150503609, -0.00924970116, -0.0229544137, 0.00798897166, 0.00807389151, -0.0252537746, -0.00611094292, -0.0124962414, -0.0102491388, -0.0191134363, -0.00693727564, -0.00517682778, 0.00768848741, -0.0026488374, -0.00303587457, 0.00056545, 0.00501352083, 0.00674130721, 0.00903413538, 0.0166181065, -0.00674783951, 0.0184340794, 0.0033771859, -0.00120928732, -0.0234247372, -0.00165511505, 0.0076101, -0.0148805212, 0.0151418131, 0.00758397067, 0.00602602353, 0.00936074927, 0.00200214214, 0.00988986343, 0.0107717207, 0.00190742419, -0.00252472423, -0.0101968804, 0.0231765099, -0.0163829457, -0.0114053516, -0.0183426272, -0.0128228553, -0.00539892493, 0.0150242317, -0.0080934884, -0.00341637968, 0.00792364869, -0.00674130721, -0.022784574, 0.00936728157, 0.0033543231, -0.00780606829, -0.0148413284, 0.000284153939, -0.0270174872, -0.00361561403, 0.00102801668, -0.00549690891, 0.00471630227, -0.0135348728, -0.0146584241, -0.0200279541, 0.00196458166, 0.0146584241, -0.0141881006, 0.0185908545, 0.0113530932, 0.0107586561, -0.0151287485, 0.0113334963, -0.0225363467, -0.0280887801, -0.0175326243, -0.0190089196, -0.0188260153, -0.00104108127, 0.017441174, 0.00328736729, -4.63128054e-05, -0.00899494253, 0.0265732929, -0.0294736233, 0.0103928493, 4.34804533e-05, 0.008237198, 0.000958611316, -0.00150813896, 0.0209424719, -0.0139529388, -0.00360908173, 0.00430150284, -0.0234639309, -0.0170100424, -0.0195706952, 0.00985067058, 0.0170100424, 0.0237382855, 0.0217655394, 0.0314333066, -0.00954365358, -0.0270697456, 0.0234378017, 0.0186039191, -0.019061178, 0.021778604, 0.00621872535, -0.00948486291, 0.00848542433, -0.0137700345, 0.0185516607, 0.00118070864, -0.0102818, 0.00303914072, 0.00646695169, 0.00762969675, 0.0065290085, 0.00480122166, 0.00610441063, -0.0102883326, 0.0176632702, -0.0056700143, 0.0206419881, 0.00234671962, 0.0226147342, -0.00844623148, 0.00110803708, -0.0100401063, -0.00764276134, 0.0130122909, -0.0223534442, 0.0129600326, 0.000611584226, -0.023659898, -0.0049710609, 0.00936074927, -0.00638856459, 0.00914518442, 0.00643102452, 0.00553936884, 0.00433743047, -0.00398795353, -0.00754477736, -0.00288399914, -0.0093150232, 0.00580392592, -0.0271481331, -0.00280561205, 0.00137422723, 0.011829949, 0.00110558746, -0.00408593798, 0.010582285, -0.00343597657, -0.00396182435, -0.00301627791, -0.000969226239, 0.00245613535, 0.00328736729, 0.00540872337, 0.0137569699, 0.00267496635, 0.000687521882, -0.00663679093, -0.00756437425, -0.00838744082, 0.0119801918, 0.00186823052, 0.0349084772, -0.0176502056, -0.00546751404, -0.0126334196, -0.000126052488, 0.0225363467, -0.0118626105, 0.00216054986, -0.00919744279, 0.0181205291, 0.00435049506, 0.0165135898, -0.020877149, 0.0361888, -0.0124570476, -0.00553283654, 0.0167356879, 0.0181727875, 0.00207889639, 0.000381525664, 0.00214748527, 0.0103340587, -0.00958937872, 0.0173105281, -0.0260376465, 9.31359464e-05, -0.000207910052, 0.0112224482, 0.00893615186, 0.0174281094, 0.00887736119, -0.00336738769, -0.00446481]
|
01 Dec, 2023
|
WordPress SEO: Step-by-Step Guide, Benefits and Plugin
01 Dec, 2023
Creating an SEO-friendly website is crucial for improving your site's visibility on search engines like Google. With our detailed WordPress SEO guide, you can unleash the power of SEO in 2023. With the help of experienced tactics and pointers, increase the visibility of your website and boost organic traffic. Understand the best hosting options, how to conduct keyword research, improve on-page SEO, increase page speed, secure your online presence, and keep up with the most current SEO developments. Improve the search engine rankings of your website and successfully interact with your target audience. Here's a step-by-step guide to help you create a website that is optimized for search engines:
Important Topics for WordPress SEO
What is WordPress SEO? Benefits of WordPress in SEOGuide to WordPress SEO (step by step)WordPress SEO pluginConclusionWhat is WordPress SEO? WordPress Web optimization imply to the act of enhancing a site based on the WordPress stage to work on its accessible in web search engine results pages (SERPs). This includes different procedures and strategies pointed toward upgrading the site's substance, design, and specialized viewpoints to make it more interesting to web crawlers like Google. WordPress Search engine optimization centers around driving natural, non-paid traffic to your site. It incorporates both on-page and off-page improvement, making it more straightforward for web crawlers to file and rank your substance.
Benefits of WordPress in SEOExpanded Natural Traffic: Viable Search engine optimization can essentially help your site's natural traffic. At the point when your site positions higher in query items for significant catchphrases, more clients are probably going to find and visit your substance.Further developed Client Experience: Website optimization best practices frequently cross-over with streamlining the client experience. A very organized site with significant, simple-to-explore content advantages for both web crawlers and guests.Higher Changes: By focusing on the right catchphrases and making top-notch content, you can draw in a more pertinent crowd, prompting better transformation rates, whether that is as deals, recruits, or different objectives.Upper hand: In a packed web-based scene, Search engine optimization assists you with sticking out. It permits more modest organizations and sites to rival bigger, laid-out players.Financially Intelligent Showcasing: Natural pursuit traffic is basically free, making Search engine optimization a practical promoting system contrasted with paid publicizingGuide to WordPress SEO (step by step)Here is a step-by-step guide to WordPress SEO:
1. Choose a quality hosting provider.Your hosting provider plays a big role in your website's speed and performance. A slow website will frustrate visitors and hurt your SEO ranking. Choose a hosting provider that offers reliable uptime and fast speeds.
2. Use an SEO-friendly WordPress theme.Not all WordPress themes are created equal when it comes to SEO. Some themes are designed to be more SEO-friendly than others. Look for a theme that is mobile-friendly, has a clean and simple codebase, and offers plenty of customization options.
3. Make sure your website is indexable.In order for your website to appear in search results, it needs to be indexed by search engines. This means that search engines need to be able to crawl your website and understand its content. You can make sure your website is indexable by submitting your sitemap to Google Search Console.
4. Set up an SSL certificate.An SSL certificate encrypts data that is transmitted between your website and visitors' browsers. This helps to protect your visitors' data and privacy. It also has a positive impact on your website's SEO ranking.
5. Pick your preferred site address format.Do you want your website's URL to be example.com or www.example.com? It's important to choose one format and stick with it. You can do this in your WordPress settings.
6. Enable SEO-friendly permalinks.Permalinks are the permanent URLs for your pages and posts. WordPress comes with a default permalink structure that is not very SEO-friendly. To change your permalink structure, go to Settings > Permalinks and select the Post name structure.
7. Install and configure a WordPress SEO plugin.There are many different WordPress SEO plugins available. Some popular options include Yoast SEO and Rank Math. A WordPress SEO plugin can help you with a variety of tasks, such as optimizing your titles and meta descriptions, creating XML sitemaps, and more.
8. Conduct keyword research.Keyword research is the process of finding the right keywords to target with your SEO efforts. You want to choose keywords that are relevant to your business and that have a good search volume. You can use a keyword research tool like Google Keyword Planner or SEMrush to find the right keywords for your website.
9. Create SEO-friendly, high-quality content.Content is still king when it comes to SEO. You need to create high-quality content that is informative, engaging, and relevant to your target audience. Be sure to include your target keywords throughout your content, but avoid keyword stuffing.
10. Avoid cannibalization.Cannibalization occurs when you have multiple pages or posts on your website that are targeting the same keyword. This can confuse search engines and make it difficult for them to know which page to rank for that keyword. To avoid cannibalization, focus on creating unique and informative content for each page or post on your website.
11. Optimize meta titles and meta descriptions.Meta titles and meta descriptions are the snippets of text that appear in search results pages. They are important for both SEO and click-through rate (CTR). Your meta titles should be clear, concise, and informative. Your meta descriptions should be engaging and encourage users to click on your link.
12. Use the proper heading tags.Heading tags are HTML tags that are used to structure your content and make it easier for search engines to understand. There are six different heading tags, from H1 to H6. Use the H1 tag for your main heading and the H2-H6 tags for subheadings.
13. Create an internal linking strategy.Internal linking is the process of linking to other pages on your website within your content. This helps search engines to crawl and understand your website better. It also helps to keep visitors on your website longer.
14. Include reliable external links.External links are links to other websites. It's important to include reliable external links in your content. This shows search engines that your website is authoritative and that you are providing valuable information to your visitors.
15. Promote your site.Once you have optimized your website for SEO, you need to promote it. This can be done through social media, email marketing, and other online channels. By promoting your site, you can attract more visitors and improve your SEO ranking.
WordPress SEO pluginWordPress offers different Search engine optimization modules to improve and upgrade your Website design enhancement endeavors. Two well known ones are:
Yoast Website optimization: This module gives an easy to understand connection point to enhancing content, dealing with meta labels, and creating XML sitemaps.Across the board Website optimization Pack: Another exhaustive Search engine optimization module offering highlights like XML sitemap age, authoritative URLs, and Google AMP support.Utilizing Web optimization modules like these can make it more straightforward to deal with your site's Website design enhancement, regardless of whether you're not a Web optimization master.
ConclusionBy following these Web optimization best practices, you can improve your WordPress website's perceivability and positioning on web search tools, eventually driving more natural traffic and accomplishing your internet based objectives. Web optimization is a continuous cycle, so consistent observing and improvement are critical to long haul achievement.
Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?/How to design datalists for mobiles using jQuery EasyUI Mobile ?/How to design menu using jQuery EasyUI Mobile ?/EasyUI jQuery menu widget/EasyUI jQuery datebox widget/How to make use of multi-mode jtsage-datebox plugin?/Step by step guide to make your first WordPress Plugin/Explain MonsterInsight Plugin in WordPress/How to Setup All In One SEO(AIOSEO) Plugin for WordPress?/WordPress SEO: Step-by-Step Guide, Benefits and Plugin
|
https://www.geeksforgeeks.org/wordpress-seo-step-by-step-guide-benefits-and-plugin?ref=asr3
|
CSS
|
WordPress SEO: Step-by-Step Guide, Benefits and Plugin
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, WordPress SEO: Step-by-Step Guide, Benefits and Plugin, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, How to design menu using jQuery EasyUI Mobile ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, Step by step guide to make your first WordPress Plugin, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, EasyUI jQuery datebox widget, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, Explain MonsterInsight Plugin in WordPress, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, EasyUI jQuery menu widget, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, How to make use of multi-mode jtsage-datebox plugin?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to Setup All In One SEO(AIOSEO) Plugin for WordPress?, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, How to design datalists for mobiles using jQuery EasyUI Mobile ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0129513303, -0.0232815575, -0.00704228599, 0.0149171567, 0.0289400555, 0.00807145424, -0.000849931035, 0.00684570288, -0.0254246946, 0.0358320139, 0.034752734, -0.00986768, 0.0270436108, -0.0522061959, 0.0208763108, -0.00957473367, -0.00466787536, -0.0278453603, 0.0180085171, -0.0028003396, -0.0313298851, -0.039470721, -0.0373430029, -0.0243762527, -0.0336426236, 0.0191648845, -0.00299306773, 0.0406425074, -0.0137376608, 0.0270744469, 0.038884826, 0.00585893495, 0.00917385891, -0.000457006565, -0.0340434946, 0.00136547873, 0.0325016715, -0.0136759877, -0.0316074118, 0.0358628482, 0.0272440482, 0.00131826045, 0.0114480508, -0.0103148092, 0.00635617366, 0.0218939148, -0.000482783944, -0.0630914792, 0.00975975208, -0.0179314241, 0.0232044663, 0.0134447142, 0.0434794649, 0.0132365674, 0.025609713, 0.00948993303, 0.057294216, -0.025563458, -0.0111165587, 0.0363562331, 0.034783572, 0.00290826755, -0.0203366727, -0.0140228989, -0.00446743798, 0.0148323569, -0.03490692, 0.014816938, -0.0428318977, -0.00261532073, -0.0284004174, 0.000301137712, 0.00304317707, -0.033303421, 0.0181318615, -0.0231427941, 0.0375588574, 0.0136528602, -0.00360787055, 0.0505410247, 0.00994477142, -0.0154645052, 0.00478736684, -0.00445202, 0.0431711, 0.023050284, -0.00516125932, -0.0693821236, 0.0221097711, 0.018995285, -0.0208608918, -0.0421843342, -0.00630220957, 0.0114634689, -0.00211808202, 0.0214005318, -0.00446743798, 0.0128742391, -0.00192535401, 0.056276612, 0.00175382593, -0.0109623754, 0.0120801991, -0.0292792562, -0.00150809763, -0.0109238299, 0.017438041, -0.0141308261, 0.0365720876, -0.0231890474, 0.0265502259, -0.0362328887, -0.0230194479, 0.0234203227, -0.0192265585, 0.0177001506, -0.0106000472, -0.0548889711, 0.0564616323, 0.0367571078, -0.02433, 0.00450598355, 0.0244533438, 0.0359553583, -0.0329025462, 0.0356469937, -0.0408892, -0.00186368101, 0.0493384, -0.00142522447, 0.0084337825, 0.0194886681, 0.0155030508, 0.0183631368, 0.0187794287, 0.000479170296, 0.0187948477, -0.0125967106, 0.00335539668, -0.0327483639, -0.0323166512, -0.00993706193, 0.00734294159, -0.0174226221, -0.0274753217, 0.0208917297, -0.00177502609, 0.0567083247, 0.00382179883, -0.00652191974, -0.0222947896, -0.0286162719, -0.00078440347, 0.024592109, -0.00706155878, -0.0414442569, -0.00397405401, 0.023034865, -0.0270127747, 0.00597457215, 0.00847232807, -0.0297880601, 0.0122497994, 0.0268431734, 0.00457151094, 0.0189644471, 0.016405018, -0.00565849803, -0.0588360429, 0.0585276783, 0.0102608455, -0.023050284, -0.046131406, -0.00567777082, -0.0484749787, -0.00411281828, 0.0380522422, -0.0178234968, -0.0111473948, -0.00681486679, -0.0119260168, 0.0228035916, -0.00972891599, -0.0257793143, 0.0312682129, 0.0293717664, 0.0320082866, 0.0206604544, 0.00218553701, -0.00296994043, -0.00254401122, -0.0142387543, 0.0495850928, 0.042431023, 0.00586664397, -0.00467943912, -0.0167133827, 0.0418451317, 0.0319466144, -0.0258718245, -0.014562537, -0.0111936498, -0.0105460836, 0.0378055498, 0.0145548284, 0.0119183073, 0.0491225459, 0.0398715958, 0.00351921562, -0.00329179643, -0.0365104154, 0.0233432315, -0.0135911871, -0.0116099427, 0.0180701893, 0.02511633, -0.025609713, -0.00575100724, -0.0142079173, -0.000789221667, -0.0417834595, -0.00208339095, 0.00883465726, 0.00794810802, -0.026087679, -0.030188933, 0.0219401699, -0.0246692, 0.0378980599, 0.0296338759, 0.0198278688, 0.0160966534, -0.00847232807, -0.0177926607, 0.011525142, 0.0025825568, 0.0144546097, -0.0117178699, -0.045514673, 0.0190261211, 0.0259643327, 0.0130746765, -0.00862651132, 0.0259797517, -0.0362020507, 0.00944367796, -0.00586278969, 0.0136066061, -0.000812349, 0.0503868423, 0.00658359285, 0.00284274, -0.0123423096, 0.0161429085, -0.00746628782, 0.0250084, 0.0336117856, 0.0101837544, 0.0125042, -0.0113555416, 0.0287242, 0.0102145905, 0.013560351, 0.0185327362, 0.0170063302, 0.000521329581, 0.0191803034, 0.00196004496, 0.00840294641, -0.0284466706, 0.0381447524, -0.00356547046, 0.0250392389, 0.0311602838, -0.0404883251, -0.000295114936, 0.00644482858, -0.0320082866, 0.0111705223, 0.0576334186, 0.0172992758, -0.0703072175, 0.029710969, 0.039470721, -0.0240062159, -0.0247462913, -0.00837210938, -0.0148709025, -0.0367262736, 0.0103456462, -0.0320082866, 0.00703843124, 0.0299884956, -0.0143698091, 0.0458847135, 0.0301580969, -0.00469100242, 0.000569029769, -0.0153488684, 0.000312701392, 0.0123114726, 0.0147783924, 0.00900425855, 0.0103610642, -0.0398099236, 0.0575100742, 0.00563151576, -0.0382064246, -0.0171759315, -0.0282153971, 0.0590827353, 0.0157034881, 0.0175613873, -0.0176230595, 0.0045560929, 0.0403033048, 0.0375280194, 0.00612489972, -0.0220480971, -0.0404266529, -0.0109007033, -0.0290942378, -0.00580111658, 0.0273365583, 0.012033944, -0.00702301273, -0.0101374993, -0.0113478322, 0.0118335066, -0.0324091613, 0.0195965953, -0.0488450155, -0.0056353705, 0.0153951226, 0.0294642765, -0.0422460064, -0.0204291809, 0.0365104154, -0.00230310112, 0.00431711, -0.0198432878, -0.0146704651, 0.0083335638, -0.00782861654, 0.0456380211, -0.0181318615, 0.0172838587, 0.00706155878, 0.0360170342, -0.00223950087, 0.00149846124, 0.0254401136, 0.0252705123, 0.0119568529, -0.00666839303, 0.00442503765, -0.0114865964, -0.0032031415, -0.00858025625, -0.00297957682, 0.0225569, -0.0251625851, -0.0443428867, -0.000984359, 0.0214776229, 0.019457832, 0.0215855502, -0.00271361205, 0.0347219, -0.0379597321, -0.0285237636, -0.00574715296, 0.0199203789, -0.0342901871, -0.0575717464, 0.0209688209, 0.0054734787, -0.0147552658, -0.0385764614, 0.0148015199, 0.026642736, 0.0192419756, 0.0183785539, 0.0472106822, 0.000912085874, -0.00515740458, 0.0247617103, -0.0317615941, 0.0351536088, -0.0129359122, -0.0442195423, 0.0131980218, -0.0262110252, -0.0497084372, -0.0234049037, 0.00503405882, 0.014847775, 0.0052807508, 0.0160503983, 0.00612875447, 0.0133367861, 0.00363099785, -0.0119722709, 0.00768214324, -0.0228498466, -0.00468714815, 0.0119337253, -0.0426468812, -0.00183862634, 0.0172067676, -0.00864963792, 0.00708083156, -0.0621047132, 0.0234357398, 0.0272748843, 0.067038551, -0.028647108, 0.0189644471, 0.0192265585, 0.0257330593, -0.0333959311, 0.0305743907, -0.00772068882, -0.0237132683, -0.011764125, 0.000219950976, 0.0042477278, 0.00393936271, 0.00777850719, 0.00935116876, -0.0244533438, -0.0180239342, 0.0084337825, -0.0129667483, 0.0166362915, -0.0397174135, 0.0278453603, 0.00712323142, 0.00281768525, -0.020984238, 0.0139766438, -0.0273828115, 0.015849961, -0.00578569854, -0.0736992359, -0.00294295838, -0.0355544835, 0.00794039853, 0.0138918431, 0.00271746656, -0.0469639897, -0.0195503421, -0.0632148236, 0.0315765776, 0.0467172973, -0.0145471189, -0.0262881164, 0.0110857217, 0.0406733453, -0.0227727555, 0.0021335003, 0.0131209306, 0.0102300085, -0.0116253607, 0.0126738017, 0.000493143103, -0.0226185732, -0.0135218054, 0.0108313207, -0.00438649207, 0.00669152057, -0.0497701131, 0.0878840238, 0.0244533438, 0.036387071, 0.0290634017, -0.00766672473, -0.0123500181, 0.0129975844, -0.0167596377, -0.0108852843, 0.0565849766, 0.0098830983, 0.00561224297, -0.00214506406, 0.0311911199, 0.0241295621, 0.013051549, 0.0381139144, 0.00275793951, -0.0388539918, 0.00730054127, -0.0290942378, -0.00636773743, -0.00103687728, -0.0113092866, -0.0381447524, -0.0338276401, 0.00728512323, 0.00213928218, -0.0203983448, 0.0082796, -0.0530387796, 0.0218630787, -0.0373121649, 0.0131440582, -0.00119298708, 0.00289670378, 0.00185308093, 0.0100218626, 0.0386381336, 0.0251471661, -0.0366645977, -0.00865734741, -0.00698446715, 0.0362637229, -0.0106077557, 0.0181164443, 0.00606322708, -0.00548504246, 0.0120724896, 0.0132057313, 0.000234164676, -0.0149094481, 0.00799436308, 0.00585122593, 0.016405018, -0.00747399684, 0.00981371664, -0.0319774523, -0.00421689125, -0.00966724288, -0.00941284187, -0.00594759, -0.00391816301, -0.00647566514, 0.00402801763, 0.0250392389, -0.00482205767, -0.0141847897, -0.043047756, 0.0273519754, -0.0404883251, -0.0242529083, -0.0200283062, 0.00445587421, 0.016420437, -0.00996018946, -0.00897342153, 0.0306668989, 0.00965953339, -0.0117949611, 0.0184556451, 0.0142618818, -0.018995285, 0.0158037059, -0.0294951126, 0.00822563656, 0.0040974, -0.0200437251, -0.0284620896, -0.0260722619, 0.0150327943, -0.0116947424, -0.00278299418, -0.0136605697, 0.015896216, -0.00277335779, -0.00437492831, -0.0183014628, 0.0175151322, 0.0133367861, -0.00763588818, -0.0283695795, -0.000755012443, 0.0226956643, 0.0274290666, -0.00437878305, 0.014863193, 0.0185635723, 0.0033168511, 0.0156803597, -0.00371579826, 0.01745346, 0.0154567957, 0.0201824903, 0.000294633122, -0.00772839785, -0.0154336682, 0.00228961022, 0.00854942, 0.0274444856, -0.0270281918, -0.0061673, -0.0174842961, 0.0229115188, 0.0111242672, -0.00369074359, -0.0170525853, 0.00314917765, 0.00137126062, 0.0102068819, 0.00317423232, 0.0330567285, 0.0101991724, -0.0355236493, 0.00871131103, -5.39036482e-05, 0.0096286973, 0.0237749424, -0.0118874712, 0.0252859294, 0.0379905701, -0.0133599136, 0.00784788933, -0.00980600715, 0.00763588818, -0.00294874026, -0.0131748952, -0.0211075842, 0.00982142519, 0.0357086658, 0.0043942011, -0.00676861173, -0.0026500118, 0.022541482, -0.0020776093, 0.016420437, -0.00889633, -0.0357395038, -0.0190261211, -0.0220480971, 0.0135834785, -0.0373738371, 0.0146781737, 0.00347103365, -0.011031758, -0.0162970908, -0.0102068819, -0.00653733825, -0.0321316347, 0.00902738515, -0.00492227636, 0.169724092, -0.00649493793, 0.0162970908, 0.00944367796, -0.000320169609, 0.0152332308, 0.0135295149, 0.0154722137, -0.0131517677, 0.0271823741, 0.0304664616, -0.00779392524, -0.0146550471, -0.0187794287, -0.00504562259, 0.00568548, 0.00836440083, 0.0226339921, -0.0194115769, 0.0403649807, 0.0236978512, -0.0243454166, -0.00682643, 0.00658359285, -0.00752025144, 0.0272440482, 0.0108236112, 0.0510344096, -0.025578877, -0.00259990245, 0.0077592344, -0.027105283, -0.0165283643, 0.00130284217, 0.0182860438, -0.00487216702, -0.0120493621, -0.0211075842, -0.00715792272, 0.0165129453, 0.00902738515, -0.0281845611, -0.0125042, -0.0275524128, -0.00692664878, -0.0382372588, 0.00629064627, 0.0149479937, 0.00243608351, 0.0436644852, 0.00417834567, -0.000394610834, 0.00144064275, 0.014084572, -0.0178851709, 0.00834898278, -0.0159733072, -0.0104535734, -0.0108236112, -0.00728126848, -0.00562766148, 0.027120702, 0.0213542767, 6.7695757e-05, -0.0134370048, -0.0100681176, -0.0219710059, 0.0348760821, 0.0162816718, -0.0175151322, 0.0292175841, 0.00726970471, 0.032285817, -0.00133078767, 0.0108929938, -0.0204137638, 0.0242529083, 0.0389465, -0.0155415963, -0.00915073138, -0.0344752073, -0.0141847897, 0.00958244223, 0.0152871953, 0.0111473948, -0.00216626422, -0.011000921, 0.000392201735, 0.00117853249, 0.0107927751, 0.00750868767, 0.0146396281, -0.00435565552, 0.0100449901, -0.00206797291, -0.0142850084, 0.0144160641, -0.0038661263, -0.0298805684, -0.0124810738, 0.0183168817, -0.00543493312, 0.0414750911, 0.0340434946, -0.00079355808, -0.00508031342, -0.00597071741, -0.0112244859, -0.021523878, 0.000459174771, -0.0127508929, -0.00307015912, -0.0341976807, -0.0203983448, 0.00116504158, 0.0219401699, -0.00476038456, 0.0013153695, 0.0187177565, 0.0104150278, 0.00925866, 0.0185327362, 0.00138764246, -0.0285546, 0.0128588211, 0.017916007, -0.0156032695, -0.00283117616, -0.00790956244, 0.0435103029, 0.0266119, -0.0370963104, 0.00182995351, -0.00107156835, -0.0198278688, -0.00629835529, 0.00593988085, -0.0118566342, -0.0165746193, -0.00989080779, -0.0179314241, 0.0116022332, -0.0165437832, 0.00844920147, 0.015387414, 0.0165746193, 0.0186252464, 0.00488758553, 0.0222947896, 0.00829501823, 0.00704999501, 0.0106077557, -0.00241102884, -0.0262110252, -0.0214005318, -0.00200629979, -0.0306977369, 0.000192246313, 0.0107542295, -0.0243916716, 0.00116215064, -0.0325941816, 0.00630606432, -0.0209225658, -0.00385263516, 0.0042824191, 0.00629064627, -0.00218939153, 0.0062443912, -0.0338893123, -0.0116484882, -0.00512271374, -0.00221830071, 0.0331800729, -0.00758192455, -0.040519163, 0.0158807971, -0.000355824304, -0.00319543225, -0.00627137348, -0.0148786111, -0.0370963104, 0.0124579463, -0.00290634017, 0.00136644242, 0.00800207164, 0.0248233825, 0.0350611024, -0.0178080797, -0.0167750567, 0.0450212918, -0.0222639535, 0.0220635161, 0.0205679461, 0.00437878305, 0.011286159, 0.0263960436, 0.0108159026, 0.00381794409, -0.00325903273, -0.00864963792, -0.0240062159, -7.36582806e-05, -0.0143775186, -0.021508459, 0.0285854358, 0.0176847335, 0.0184864812, 0.00596686266, -0.0222639535, 0.0168984029, -0.00449442, 0.0105692102, -0.00241488335, 0.0233894847, 0.00609406317, 0.0211538393, 0.00341321505, 0.00724657765, -0.014593374, -0.0132674044, 0.0386689715, -0.0109932125, 0.00058348442, 0.0128356935, -0.0312682129, -0.0484133065, 0.00506104063, -0.00472183898, -0.00871131103, 0.0443737246, -0.0169138201, -0.00662984746, 0.00942055, -0.00560453394, -0.00359823415, -0.0235282499, 0.0380214043, -0.0134524228, -0.0137916245, -0.0116716158, -0.0294796936, -0.00103591371, -0.0403958149, 0.0187023375, 0.0232044663, -0.0180856083, -0.0273057204, -0.00557755213, -0.0136991153, -0.0171605125, 0.0114711784, 0.0326866917, -0.0186869185, 0.00190029934, -0.028662527, 0.0230040289, 0.0146781737, 0.035369467, 0.00127104204, -0.0148940301, 0.00660286564, -0.0153257409, 0.0104458649, -0.00932804123, 0.00502634933, 0.00524991425, -0.028153725, -0.0180239342, -0.0162508357, -0.00928178616, -0.00104169548, -0.0144931553, -0.0116099427, -0.0199974701, 0.0134601323, 0.00708468584, 0.0398715958, -0.0024688472, -0.0233123936, 0.0262110252, -0.0359245241, 0.0177464057, -0.000774285232, 0.0135680605, -0.0115482695, -0.0123885637, -0.0119414348, 0.0251934212, -0.00104073191, 0.0108236112, -0.00487602176, 0.00996789895, -0.0226956643, 0.043602813, -0.0254709497, 0.0039123809, 0.0344752073, 0.00516896835, -0.012558165, -0.021508459, -0.0219864249, -0.0419068038, 0.00618657283, 0.03373513, 0.00404343614, -0.0116870338, -0.0183785539, 0.000957376964, 0.0134524228, -0.03182327, -0.00459463848, -0.0381139144, -0.0321624689, 0.00376205309, -0.000638411904, -0.000565175258, 0.0193190668, -0.0263035353, -0.000463511155, 0.0103225186, 0.0359553583, 0.0155801419, -0.0201208163, -0.00563151576, 0.00208146381, 0.0154259596, -0.0197507776, -0.0154413776, 0.025100911, 0.00384685351, -0.00356932497, 0.0101066632, -0.0306206439, -0.0366029255, 0.0152717764, -0.00259026606, 0.000172853033, -0.00721188635, 0.0112938685, -0.00942055, 0.0311448649, -0.0664835, 0.0213080216, -0.0283849984, -0.0241603982, -0.0117024519, -0.0310215186, -0.00296608591, -0.0226494092, -0.0167133827, -0.00705770403, 0.0171450935, 0.0072427229, 0.0149479937, 0.0215392951, -0.00635231892, 0.0153026134, -0.0308673363, -0.0111782318, 0.0126583837, 0.0238674507, 0.0523603782, -0.013066967, -0.0186098274, 0.0252242573, -0.0180547703, 0.0261030979, -0.0243916716, -0.0284620896, -0.010268555, 0.0359861962, -0.0249621477, -0.000358233403, -0.0303739533, 0.00383721711, -0.0525453947, 0.0190877933, -0.00780163473, -0.00285044895, 0.0133444956, 0.0069420673, 0.0146319196, 0.0190415382, -0.00824876409, 0.00662984746, -0.0105769197, -0.00275986688, 0.0115713971, 0.0187640097, -0.0278145224, -0.00424387353, -0.0142618818, -0.0198587067, -0.0767828822, -0.00175671687, 0.000337996957, 0.00844149198, 0.00259797508, -0.0118412161, 0.00620970037, -0.0188719388, -0.0218939148, -0.00540409656, 0.00955160614, -0.0218784977, -0.00329757831, 0.000299692241, -0.0290634017, -0.000852822, 0.0160812344, -0.0390390083, 0.0124964919, 0.0071964683, -0.0178697519, -0.0161737446, 0.0236670133, 0.0142233353, 0.00323205069, -0.0286008548, -0.0156418141, -0.0165129453, 0.0134215867, 0.0385456271, -0.00862651132, 0.0127586024, -0.0193807408, 0.0158653799, -0.00928949565, 0.0147783924, -0.0269048456, -0.0113169961, 0.00501478603, 0.00512656802, -0.0138687156, -0.00371772563, -0.0116793243, 0.014323554, 0.00800207164, 0.0241295621, 0.0223718807, -0.0186098274, -0.0234357398, 0.0030181224, 0.00311641372, 0.0150482124, -0.00538867852, -0.00701915845, 0.0036483435, -0.000661057478, 0.00337274233, -0.00199088152, 0.0086650569, 0.00373507105, 0.0615188181, -0.0157574508, -0.0251780022, -0.0100758262, 0.00919698644, 0.0390390083, 0.0209688209, 0.00834898278, 0.0130823851, -0.0199049618, 0.0302351881, 0.00159578887, 0.0121187447, 0.0096286973, -0.00752796046, 0.0284312535, 0.00732752355, 0.00526147801, 0.00878069364, 0.012812566, -0.0218322426, -0.0263035353, -0.00617500907, 0.00947451498, 0.0265039727, 0.00030210134, -0.00477965735, -0.0107696475, -0.0177309886, -0.00858796574, 0.0221097711, 0.0218168236, 0.014863193, 0.000738630537, -0.00613260921, 0.0339201503, -0.0163433459, 0.0259643327, -0.00260375696, 0.0116870338, -0.0169446561, -0.0155724324, 0.00363292522, -0.00208917283, -0.0182706267, -0.0148400655, -0.0269819386, -0.022541482, -0.0326866917, 0.0309598465, -0.00675704796, -0.00983684324, -0.00719261356, -0.022001842, 0.00341899693, 0.0176847335, 0.0207375456, 0.0071964683, 0.0105383741, -0.00848774705, -0.0182243716, -0.019442413, 0.0195503421, -0.00698446715, 0.0305589717, 0.00158229796, -0.0222022794, -0.00834127329, -0.000200075883, -0.0155030508, -0.00459849322, 0.00125273282, -0.00855712872, 0.0141308261, 0.0137068247, 0.00438649207, -0.00809458178, -0.025563458, 0.0283387434, -0.0200283062, -0.0154567957, 0.0301735159, -0.027691178, 0.0134138772, -0.00370038, -0.0153180314, -0.0149557022, -0.01894903, -0.0262572803, -0.0174688771, 0.0130284214, -0.0319157764, -0.0169909112, 0.00553129707, 0.0205833632, -0.0489375256, 0.0149557022, 0.0292638391, -0.0029140492, -0.0118874712, 0.0333342552, 0.0175768044, -0.0029044128, -0.0111242672, -0.00457151094, 0.0185635723, 0.0116253607, 0.0170525853, -0.00632919185, 0.0167596377, 0.0103533547, 0.00723501388, -0.00209688209, 0.0147629743, 0.00769756129, -0.0117487069, 0.0114480508, 0.0082410546, 0.00201786356, 0.0185173191, -0.0146627557, 0.0281228889, 0.0126660923, -0.013066967, -0.00140402443, -0.0110548856, 0.00587820774, -0.0151407216, -0.00126622384, 0.0386998095, -0.000351969735, 0.0335501134, 0.0259797517, -0.0215855502, -0.022017261, 0.000881249376, -0.00858796574, 0.00915844087, 0.00645253761, 0.00909676775, -0.0102839731, -0.0103764823, 0.000633593707, -0.00241681072, -0.011000921, -0.00222022808, 0.00606708135, 0.0193499047, 0.0192882307, 0.00693050353, -0.0141308261, -0.0129975844, 0.0131132221, 0.0338276401, 0.0083335638, 0.0042477278, 0.0150559209, -0.0151484311, 4.64354343e-05, -0.0152640678, -0.00932804123, 0.0282153971, 0.0161274895, -0.0091815684, -0.0253167674, 0.00366568891, 0.000477483933, -0.0109084118, -0.00721574109, 0.0116947424, -0.0201516524, -0.00124598737, 0.00909676775, -0.00961327925, -0.00497238571, -0.0244225077, 0.0267815012, 0.0121727083, 0.0222176984, -0.0147013012, 0.00574715296, -0.0029140492, 0.00878069364, 0.0192882307, 0.00202171807, 0.00227804645, -0.0132674044, -0.0324091613, -0.0146781737, 0.02149304, -0.0159578882, -0.00318579585, 0.0105846291, 0.00523064146, 0.00290055829, 0.0292175841, -0.000877876591, -0.0232969765, -0.00308557739, 0.0331492387, -0.036849618, -0.00895800348, 0.00523064146, 0.0124810738, 0.00241488335, -0.0154259596, -0.00205833651, 0.00767443422, 0.0205833632, 0.00601311773, -0.00168251654, 0.00344597897, -0.0022048098, 0.0113169961, 0.00648722891, -0.00374856195, 0.0264422987, 0.0134601323, -0.000521811424, -0.00621355465, 0.00788258, 0.00168348022, 8.21503636e-05, 0.0187177565, 0.0338893123, -0.013275113, 0.00965953339, -0.00744316028, -0.00452911109, 0.0286316909, -0.00980600715, -0.00197739061, 0.00745857833, -0.00246113818, 0.00496082194, 0.00203328184, 0.00723886862, -0.0091815684, -0.00985226221, 0.0253321845, 0.013066967, 0.0354003, -0.0189644471, -0.0109469574, 0.018918192, 3.16571e-06, -0.00725814141, -0.0403649807, -0.00745086931, 0.0349377543, -0.0266273189, -0.0187023375, 0.0241141431, -0.0200745612, 0.0139766438, 0.011239904, -0.0141308261, -0.01074652, -0.0195503421, -0.0243454166, -0.0228035916, 0.0311602838, -0.0223718807, -0.0148709025, -0.021508459, 0.0153488684, -0.00541180559, 0.00673392089, 0.015849961, 0.00954389665, 0.00964411534, 0.0100372806, 0.00860338379, -0.0255172048, 0.00849545561, 0.0151098855, 0.014308136, -0.00273095747, -0.0221406072, -0.00881153, 0.00773610687, 0.0128665296, 0.0184556451, -0.0269048456, 0.018440228, -0.000966531574, -0.0245150179, -0.0417217836, 0.00932033267, 0.012288345, 0.00990622584, 0.0190415382, 0.00172395306, 0.00464860257, -0.0229731929, 0.0272594672, -0.0216934774, -0.0124656549, -0.0183168817, 0.0055544246, 0.0270898659, 0.00141173357, -0.00921240449, 0.00826418214, 0.00730825076, -0.0236361772, 0.0111319767, -0.00354041578, -0.017376367, 0.0149094481, -0.00587820774, -0.0333959311, -0.00060420268, -0.0199974701, 0.00586664397, 0.00114480511, -0.00457151094, -0.00257870229, 0.010476701, -0.0143698091, -0.00753567, 0.000156712063, -0.00642170105, 0.00765901571, 0.0124964919, -0.0186869185, -0.00318386871, 0.00144546095, 0.000454838388, -0.00831814576, -0.00740846898, -0.0523295403, -0.00573173445, 0.00804061722, -0.00517667737, -0.0129359122, -0.00322819618, -0.0071155224, 0.0199049618, -0.0156495236, -0.0236053411, -0.0223102085, -0.018471064, 0.00709239487, 0.0224335548, -0.00938200485, -0.00731596, 0.00210651848, -0.00691508502, -0.00225491915, 0.00785174407, -0.00450212928, 0.000617211801, 0.0265810639, 0.00906593073, 0.0287242, 0.0187640097, -0.00733523257, -0.0311448649, -0.012018526, -0.00864192937, 0.00888862088, -0.0136451516, -0.00977517106, -0.0277991053, -0.0263960436, -0.0220480971, -0.0112476135, 0.022479808, 0.0065874476, -0.00707312208, 0.0226494092, 0.0249775648, -0.00192728126, 0.0111473948, 0.0357086658, -0.00271939393, 0.00320892339, 0.0209688209, -0.0153026134, -0.0140768625, -0.0329333842, -0.0337968059, 0.0170525853, -0.000395574491, -0.000728994142, -0.00380059867, 0.00234935596, 0.0341051705, -0.0257022232, 0.00272710295, -0.0117101613, -0.00597842643, 0.00724657765, -0.0417526215, 0.00496467669, 0.00959015172, -0.00572017068, 0.00777079817, 0.00408198172, 0.00261339336, 0.0212926026, -0.00587435346, -0.00376205309, 0.00582809839, 0.00181742618, -0.0107388115, -0.013352205, 0.0192882307, 0.00499936752, 0.0149788298, -0.00384878065, -0.0155647239, 0.0280457977, 0.0188873559, -0.00754337898, -0.00470256619, 0.0228498466, 0.0139226802, -0.0011544415, 0.0246229451, -0.0154876327, -0.0111319767, -0.0108621577, 0.0167288017, -0.0107079744, 0.0181164443, -0.00921240449, -0.0182860438, 0.0175459683, 0.0191032123, -0.00845691, -0.0106540108, -0.0164821092, -0.0214005318, 7.45014695e-05, 0.00478736684, -0.0234511588, 0.00637930119, 0.00313761388, 0.013275113, 0.00248233834, -0.0282924883, -0.0145394094, 0.0128048565, -0.0296184588, 0.00529231457, -0.00268470286, 0.00698446715, -0.0253938586, 0.0089194579, -8.53424208e-05, -0.00538867852, 0.0172221847, -0.00814083591, 0.00584737118, -0.0141076986, -0.0138532976, 0.00384685351, 0.0242066532, -0.0428010635, -0.00686497567, -0.0059090443, 0.0147244288, 0.00360787055, -0.0162970908, 0.0061673, 0.017900588, 0.0196274333, 0.0172992758, 0.0241603982, -0.0170217473, -0.000541566056, -0.0142618818, 0.00747785112, -0.0254401136, 0.0104844104, 0.00393550843, -0.0095593147, -0.00768985227, -0.0102145905, 0.00662213843, 0.00668381155, -0.00486060325, 0.0184864812, 0.0499859676, 0.0260105878, -0.00566235231, 0.00523064146, -0.00172009855, 0.0160658173, -0.000843667367, -0.0179468431, 0.0194115769, 0.012542747, 0.000185139463, 0.00113035052, 0.00147340656, -0.00986768, -0.0173609499, -0.00709624961, 0.00445972895, 0.00649879221, 0.00260375696, 0.00477194833, 0.0228035916, 0.00676475745, -0.00229346473, 0.0197816156, -0.0039470722, -0.00573944347, -0.01840939, -0.0265039727, 2.05150059e-06, 0.0209379829, 0.00590133527, -0.00505333161, -0.00320506864, 0.0259489156, 0.0153797045, 0.0114788869, -0.0105615016, -0.0101991724, -0.037404675, -0.00381216244, -0.000720321375, 0.0239907969, 0.0233894847, 0.00162566174, -0.00692279451, 0.0303431172, -0.0112090679, -0.00448285602, -0.00366954342, -0.00450212928, -0.00949764252, 0.0070345765, 0.00844920147, -0.00267121173, -0.000548793352, -0.0070345765, 0.00731596, -0.018918192, -0.00239753793, -0.023574505, -0.001404988, -0.00283310353, -0.017962262, 0.0190569572, -0.0168367289, 0.0191186294, -0.00143196993, 0.00329950545, -0.00815625396, -0.0171605125, 0.0100681176, -0.00915073138, 0.000417015486, -0.0213080216, -0.00531544164, 0.00350572472, -0.0146781737, 0.0013529514, -0.00685726665, 0.0022144462, 0.00389310811, 0.00480278488, -0.00424387353, -0.00517282309, -0.0106308833, 0.00181742618, 0.00716948649, 0.0154490862, 0.000400151766, 0.0137376608, 0.0164512731, 0.012797148, -0.0126198381, -0.00840294641, -0.00254593859, 0.00574715296, -0.0210613292, -0.0017037167, 0.000758867, -0.0164975282, 0.00498009473, 0.0088500753, 0.0169446561, -0.0161120705, -0.000522293209, 0.00265964819, 0.0159887262, -0.00597842643, 0.0047179847, -0.0149942478, 0.00194751774, -0.0167288017, -0.0222793706, 0.0033496148, -0.00472183898, 0.0103302272, -0.0381139144, -0.00272132107, -0.0161891636, 0.00372350751, -0.00621355465, 0.000444479228, -0.00575486198, -0.00178948068, -0.0197661966, -0.00187909929, -0.030204352, -0.00143196993, -0.000339924241, 0.00130284217, -0.0134678418, 0.00233201031, -0.00339586963, 0.00800978113, -0.00815625396, 0.00167673465, 0.0146242101, -0.0157034881, -0.0165283643, 0.00544264214, -0.0222176984, -0.000271023921, 0.00178273523, -0.00786330737, -0.0117564155, -0.00858025625, 0.0183322988, -0.00549660623, -0.00349801546, -0.0144700278, -0.00797123555, 0.00683799386, -0.0226648282, -0.0187794287, 0.000331733288, 0.0123114726, 0.00155146141, -0.011509724, -0.00235706498, 0.00790185295, 0.0122420909, -0.0298805684, -0.0130438395, 0.00181549892, -0.00575100724, 0.0275061578, 0.0129821664, -0.00853400119, 0.0036714708, 0.0218630787, -0.00918927696, 0.0032262688, -0.00619428186, 0.0265193898, -0.00427856436, 0.0259643327, 0.00673777517, 0.00952076912, -0.00553515181, 0.0101297908, -0.00962098781, 0.0012112963, 0.0115868151, -0.00247462909, -0.00841836445, -0.00275215763, -0.00679559354, 0.00200629979, -0.000926058623, -0.00855712872, 0.0190877933, 0.0376205295, 0.00564307952, -0.0164358541, 0.0166054554, -0.032840874, -0.0092740776, -0.0047642393, -0.0270127747, -0.00535398722, -0.0239137057, -0.00251124753, -0.000349078822, -0.00421303697, 6.51210257e-06, -0.00564693427, -0.00389696262, -0.0139689343, 0.0354003, 0.00774381636, -0.0258255694, -2.03870222e-05, 0.0129359122, 0.00215277309, -0.00821021851, 0.0438803397, 0.0196120143, -0.0117332879, 0.00175189867, 0.0192728136, 0.0178234968, 0.0049454039, 0.00733908685, 0.0141154081, -0.00919698644, -0.0138532976, 0.00367339817, -0.000414124574, 0.00968266092, -0.0142695904, -0.0254246946, -0.00262110261, -0.00557369739, -0.0090196766, 0.0212926026, -0.0132288588, 0.00904280413, 0.00239946507, 0.0149325756, -0.0096286973, -0.00356354308, 0.00454838388, -0.0183014628, 0.0243145805, -0.00898884, -0.0203212537, 0.0132982405, 0.00398176303, -0.00138089701, -1.87608784e-05, -0.00545806065, 0.0155338868, -0.00773996161, -0.00551587902, -0.00647951942, 0.0104535734, 0.0279532876, -0.007805489, -0.00347103365, 0.00323975971, 0.0081948, 0.0192265585, 0.00941284187, -0.0277836863, 0.00666839303, 0.00429398287, 0.000286201277, 0.0146242101, 0.00996789895, 0.0140151894, 0.00993706193, -0.00485674897, 0.024021633, 0.00932804123, 0.0042014732, -0.00493384, -0.0190569572, 0.00405885419, 0.0178697519, 0.00959015172, -0.0027772123, -0.0188102648, 0.00640628301, -0.0114249233, 0.0086881835, 0.007917271, 0.00280226697, 0.00409354549, -0.00674548466, -0.00518438639, 0.0326250158, -0.00542336935, 0.0139458077, 0.00484903948, 0.0301735159, -0.0154876327, -0.009983317, 0.00176249875, 0.0135988966, 0.0277374312, -0.0118257981, 0.00676861173, 0.00965953339, 0.016882984, -0.00425929157, 0.000573366182, 0.0370346382, 0.00802519917, -0.00432867371, 0.00106193195, 0.00185115368, -0.0134138772, -0.000966531574, 0.0198587067, -0.00421303697, 0.00322048692, -0.0228035916, 0.013020712, -0.0127586024, -0.0107388115, -0.0305743907, -0.0167133827, -0.000334624201, -0.00928178616, -0.0122420909, -0.0131363487, 0.0201670714, -0.0116870338, 0.0083335638, -0.0232044663, -0.00681872107, -0.00346910628, 0.00245342916, 0.00835669134, -0.0304356255, -0.000857158331, 0.0032127779, -0.0115174325, -0.00577798905, 0.00351728825, 0.00469100242, 0.00696134, 0.000986768, -0.0047642393, -0.00760890637, -0.00809458178, -0.00113420503, -0.00700374, -0.0211692583, -0.00839523692, 0.00494925817, 0.00232044654, -0.000149364292, 0.00497238571, 0.0236978512, 0.00700374, -0.0109546669, 0.0170988403, -0.0130130034, 0.00212579127, -0.000388588087, 0.00873443857, -0.0110086305, -0.0109777944, 0.0072427229, 0.0125890011, 0.000226335091, 0.00656046532, -0.013352205, 0.0333342552, 0.0055891159, -0.0160503983, -0.0269202646, -0.00942055, 0.00611333596, 0.0178080797, 0.000815721811, 0.00731210504, 0.000984359, -0.00411281828, -0.00169022568, 0.00717719551, -0.0131286401, -0.00362328882, -0.00342670619, -0.0147090107, -0.00754723325, 0.0205062721, 0.00930491369, 0.0208917297, 0.0281074699, -0.000275360304, 0.00148689747, -0.0122652184, -0.00970578846, -0.00841065589, 0.00800207164, 0.0200591441, -0.010268555, 0.00733137783, 0.0102608455, 0.0225569, 0.0170063302, 0.02203268, 0.0042014732, -0.0149865393, 0.0187023375, 0.00440576486, -0.0170371663, -0.00847232807, 0.0129898759, 0.000457970222, 0.0265656449, -0.0114326328, 0.00777079817, -0.00885778479, 0.0013953516, 0.0232815575, -0.00292368559, -0.0222639535, -0.0207221285, -0.00360979792, 0.0271361209, 0.0172221847, 0.020999657, -0.00743159652, 0.0065065017, 0.00823334605, 0.0165437832, -0.0264114626, 0.000117082338, -0.00287550362, -0.00620970037, 0.00172877125, 0.000707794039, -0.0103610642, -0.00241102884, 0.00473340275, -0.00261146622, 0.0407350175, -0.00108987757, 0.017376367, 0.0194115769, 0.0165592, -0.0102454275, -0.0110934312, 0.00224528275, -0.0029044128, -0.00242837449, -0.026596481, 0.00491456734, -0.00395478122, 0.0153334495, 0.00586278969, -0.00586278969, -0.028677946, -0.0171450935, -0.0168984029, 0.00134235143, 0.0178080797, 0.0163125079, 0.0154645052, 0.0200437251, -0.0187485926, 0.00239368342, 0.0173146948, -0.00915844087, 0.020460017, 0.000505429518, -0.00228382833, -0.00145124283, 0.0168984029, -0.00386998081, 0.00459849322, 0.0125658736, -0.0026500118, 0.0113401227, -0.00509187719, 0.0149788298, 0.0149865393, -0.029171329, 0.00657202909, -0.0110703036, 0.014084572, -0.0114249233, 0.00883465726, 0.00484133046, 0.0269511, -0.0264577176, 0.0329025462, -0.0118720522, 0.00355390669, -0.00761276111, 0.0202441625, -0.0279532876, 0.0199974701, -0.000388106273, -0.00383143523, -0.0106385928, 0.012527328, 0.0178080797, 0.00268855738, 0.00211615488, -0.00710395863, -0.0134678418, 0.0191648845, -0.0068418486, -0.0104304459, 0.00382565334, -0.020984238, -0.000488324906, -0.00422074599, 0.000304510439, -0.0200128891, 0.00797894411, -0.00955160614, -0.0153103219, -0.00401259959, -0.0152640678, -0.00548504246, -0.0197199415, -0.0133830411, 0.00552358804, -0.0123885637, -0.0159578882, -0.00814083591, 0.00903509464, 0.00360594317, 0.009983317, 0.00210266397, -0.016358763, 0.0172684398, -0.00330143282, 0.0277065951, 0.018440228, -0.0142002087, -0.0111396853, 0.00935887825, 0.0305281356, 0.01101634, -0.0019638997, 0.00974433403, 0.00519595, -0.00668766582, -0.00561995199, -0.0193344858, -0.0145317009, 0.0150327943, -0.0207838, -0.000766094308, 0.0110394675, 0.0120801991, -0.00864963792, 0.0186560825, 0.00885778479, -0.00656046532, 0.0146627557, -0.0151638491, 0.0120262355, -0.0112630315, 0.0195349231, 0.00888091233, -0.0144623183, 0.0181935355, 0.0318849422, -0.00127971475, 0.00535784196, 0.0115405601, -0.0167596377, -0.0169754941, 0.0150405029, 0.014608792, 0.00731210504, -0.0099524809, 0.008950294, 0.0103456462, 0.00677632075, -0.0233432315, 0.0029949951, 0.00244764728, -0.0137993339, -0.0145548284, -0.000579148, -0.02819998, 0.0249467287, -0.00180200802, 0.00201400882, 0.017916007, 0.0260105878, 0.00469871191, 0.0206296183, 0.00588206248, 0.00748941489, 0.00737763289, -0.00373121654, 0.0112321954, 0.00398176303, 0.0160041433, -0.017438041, -0.00769370701, -0.00905822217, 0.0117718335, -0.0173609499, 0.0207067095, 0.00811770838, 0.0146550471, 0.0142618818, 0.0135680605, -0.0294796936, 0.0108929938, 0.000211639577, -0.00316074118, -0.00785174407, -0.0128434021, -0.00511500426, 0.0104689915, -0.0172992758, -0.00515740458, -0.0147861019, -0.00110047765, -0.0120031079, 0.00877298415, -0.00596686266, 0.018471064, 0.0247000363, 0.0148554845, -0.0119491443, 0.00522293244, 0.018933611, -0.0176384784, 0.0149557022, 0.0121881263, -0.0128202746, -0.0107696475, -0.00204677274, -0.0014907521, 0.0123885637, 0.00376012572, -0.0157420337, -0.00296994043, -0.0129898759, -0.0241141431, -0.0174226221, 0.00233008317, -0.0175459683, 0.0190877933, 0.000779585273, -0.0119645623, 0.0159424711, -0.0228344277, 0.000479652139, 0.00723115914, -0.0236515962, 0.00474111177, -0.0055891159, -0.00211615488, 0.0039933268, 0.0252088383, 0.00956702419, -0.00322819618, 0.0234049037, -0.017376367, 0.00272710295, 0.0188256837, 0.00387190818, -0.00804061722, 0.00243415614, -0.0187177565, -0.0145702465, 0.0186560825, -0.0151715586, 0.00923553202, 0.0055891159, 0.00708083156, 0.00468714815, 0.00229346473, -0.00740461471, 0.0050379131, 0.0145394094, -0.0159424711, 0.00488758553, 0.0123654362, -0.0135218054, -0.0101837544, -1.80080351e-05, -0.0111705223, 0.00444045616, 0.01101634, 0.0155338868, 0.00107927748, -0.018471064, -0.00768985227, 0.0183631368, -0.0193190668, 0.00384107162, -0.0316999219, 0.0150019573, -0.0202749986, -0.00362136145, 0.0224181358, -0.0155261783, 0.00691123074, 0.00568933412, -0.0160349794, -0.00748170586, 0.00731210504, 0.00251124753, -0.00243801088, 0.0124348188, 0.00419376418, -0.0262881164, 0.000465920253, -0.00824876409, -0.0011592597, -0.0111936498, 0.0236207601, -0.00957473367, 0.00206797291, 0.00479507586, 0.0409200341, 0.0100449901, -0.00339394226, 0.0126198381, -0.00646795612, -0.0214467868, -0.0122960545, -0.0139920618, 0.0208763108, 0.0380522422, -0.0105383741, 0.00280804886, 0.011239904, -0.00300463149, 0.0221251883, 0.00128260569, 0.00500322226, 0.020490855, 0.0250084, -0.00593988085, 0.0173146948, 0.00421689125, 0.0119337253, -0.0251317471, -0.00696134, 0.0082410546, -0.00393550843, -0.00430554617, -0.00708468584, -0.0267198272, -0.0103764823, 0.0371271446, -0.0191494673, -0.0153257409, -0.0013481332, -0.019966634, 0.0072427229, 0.00365798, -0.00474496651, 0.0230965391, 0.0156803597, 0.00777850719, 0.00116215064, -0.00171528035, -0.000398224482, 0.00115058688, -9.18469959e-05, -0.012558165, -0.0079866536, -0.0233123936, -0.00900425855, 0.0105537921, -0.0101606268, 0.00684955763, -0.00140787894, -0.00276564853, 0.00624053692, 0.00601311773, 0.0151407216, -0.00397405401, 0.0349377543, -0.00952847861, 0.0238982886, -0.0111473948, -0.0106617203, -0.00042400189, 0.000144907463, -0.0229577739, -0.00119009614, 0.00356161571, 0.0467481352, 0.0125350375, 0.0221560262, -0.00371387112, -0.00362328882, -0.0111165587, -0.0041398, 0.00490685832, 0.00467172964, -0.00311448658, -0.0011024049, 0.00823334605, 0.00841065589, -0.00935887825, 0.00415136386, 0.00408969074, 0.0248233825, 0.0081948, 0.0231582113, -0.0033631057, 0.00546191493, -0.0110780131, 0.00813312735, -0.0200128891, -0.0200128891, 0.00443274714, -0.000981468, -0.00176538969, 0.0161274895, -0.00834127329, -0.00633690087, -0.00349416095, 0.00136451516, 0.00274252123, -0.0213388577, 0.00217204588, 0.0104844104, -0.0042477278, -0.00772839785, -0.0138687156, -0.0128742391, -0.00686883042, -0.00418220041, 0.00383143523, 0.0114326328, -0.0191648845, 0.0176230595, 0.00596686266, -0.00062877551, 0.0139766438, 0.0125042, 0.0243145805, 0.00652191974, -0.00236284686, -0.00779007096, 0.00760890637, -0.0152101042, 0.0236824322, -0.000249823846, -0.0193499047, -0.00256328401, 0.000431470107, -0.0143698091, -0.0148554845, -0.0116253607, 0.0218168236, -0.00664526597, 0.00282924902, -0.00448671076, 0.0148400655, -0.00172106212, 0.00414750911, 0.0153334495, 0.00588591676, 0.037404675, 0.0154028321, -0.000601311738, -0.0249158926, -0.00954389665, -0.0136682792, -0.0236824322, 0.000197907691, 0.00284852181, 0.00521136867, 0.0158653799, -0.0051535503, 0.00213735504, -0.00211422751, 0.0104304459, -0.00575100724, 0.00989851635, -0.0295413677, 0.00301619526, -0.00110625941, 0.0031087047, 0.0398715958, -0.000228141915, -0.00185211725, -0.03182327, -0.00224528275, 0.00666453876, 0.00440191058, -0.00131055131, -0.00309521379, 0.00215662783, 0.00610177265, 0.00143196993, 0.0055891159, 0.00670308433, -0.00141847902, -0.0118874712, 0.016929239, 0.0130900946, 0.00745086931, 0.0119183073, -0.0300655887, 0.00610562693, -0.0755494237, -0.0113401227, -0.00133271504, -0.00790185295, 0.0129127847, -0.0130438395, 0.0110857217, 0.0212155115, -0.0160041433, 0.030728573, 0.0103687728, -0.0191803034, -0.0121727083, -0.0100681176, 0.00408583647, -0.0300039146, 0.0143698091, 0.0177001506, -0.0174842961, -0.00623282744, 0.0411975645, -0.0130900946, 0.00400874484, -0.00415907288, -0.0117487069, 0.00108698662, -0.0161429085, -0.00323012332, -0.0160658173, 0.00185597187, -0.00199473603, -0.0137222428, 0.0175613873, -0.0032359052, -0.00107735023, 0.00560838869, 0.00805603527, -0.0174842961, -0.00430169189, -0.024607528, 0.000481579395, -0.00718875928, 0.0177618247, -0.0115868151, 0.0142387543, -0.00259990245, 0.0204137638, 0.00500322226, 0.0082410546, -0.00261339336, -0.0136066061, -0.000493384, 0.0114557594, 0.00119105983, 0.0164512731, 0.00279455795, 0.0020776093, -0.011286159, 0.00844149198, 0.0157189053, -0.0161120705, -0.0211230032, -0.00336117856, -0.0209071469, 0.00779778, 0.0203058347, -0.00899654906, 0.0139766438, 0.00171335309, 0.0172067676, 0.0268894285, -0.000813312712, 0.0144237727, 0.001987027, -0.00165264367, -0.00311063207, 0.0029140492, 0.00456380192, 0.00112456863, 0.0152332308, -0.00630991906, 0.00437492831, 0.0369729623, -0.0161274895, 0.00799436308, 0.00593988085, -0.011764125, 0.000861494744, 0.00268663, -0.0101606268, 0.0187640097, -0.00745472405, -0.0179776791, 0.012319182, -0.0021816825, -0.00992935337, -0.00837981887, 0.00512656802, 0.00459849322, 0.00294295838, -0.0142464628, -0.0267969184, 0.00494925817, 0.0177155696, 0.0245150179, -0.00188488106, -0.021523878, -0.00362328882, -0.0119722709, -0.0116022332, 0.0088500753, -0.0009983317, 0.00221637357, -0.0207529645, 0.0199357979, -0.00204099086, 0.0116022332, -0.0255172048, -0.0150713399, -0.00702301273, 0.00715792272, -0.0281228889, -0.00310485018, 0.00694977632, 0.0162354168, -0.00448671076, 0.00708854059, 0.00563151576, -0.00575871626, 0.00247655646, -0.000546866038, -0.00103398645, 0.0161429085, -0.00177117146, 0.00165842555, -0.0104304459, 0.0201670714, -0.0161120705, -0.0105152465, 0.00466787536, -0.00319735962, -0.00387768983, 0.00934345927, 0.0125196194, -0.00930491369, -0.0170217473, -0.0121033266, -0.0127200568, -0.0200591441, -0.0165129453, 0.0270590298, -0.00646410137, -6.42627856e-05, 0.00826418214, -0.00754723325, -0.012018526, -0.00331877824, 0.0101529174, 0.0084337825, -0.00825647265, -0.016358763, -0.0143775186, -0.00142137, -0.00540409656, 0.0176538955, -0.00633690087, -0.0154259596, 0.0129821664, 0.00493769441, -0.00851087365, 0.0147167202, -0.00951306056, -0.00494925817, 0.0317615941, 0.0107388115, -0.0130052939, -0.00404729089, -0.0121572902, 0.00874985661, -0.00735836, 0.00233971956, 0.019504087, 0.0086650569, -0.00597457215, -0.012018526, 0.00434409175, 0.0146858832, 0.00367918, 0.00399718154, 0.00103784096, 0.00889633, -0.00618271809, -0.00679173926, 0.00611333596, -0.00204484537, 0.0072427229, -0.0079866536, 0.0106694289, 0.00163818907, 0.0124810738, 0.0101220813, 0.00614031823, -0.00202557258, -0.0147090107, 0.0186098274, 0.00124984188, -0.0147706838, 0.0215701312, -0.00840294641, 0.0173609499, -0.00244186539, 0.00108698662, 0.00467943912, 0.00465631159, -0.00895800348, 0.00740846898, -0.00677632075, 0.00423230976, -0.00523835048, 0.00474882126, 0.00692664878, 0.000531447819, 0.00461391127, -0.00561224297, 0.0345368795, -0.00829501823, 0.0161274895, 0.0061634453, 0.00692664878, -0.0126429647, 0.00628679153, -0.00667610252, 0.004729548, -0.0155261783, 0.0133753316, -0.00289477641, -0.0175305512, 0.0165283643, -0.0138070434, 0.0229731929, 0.010522956, -0.0125504555, -0.0157111976, -0.012165, 0.0262572803, -0.00794810802, 0.00225877366, 0.0127894385, 0.00574329821, -0.00661057467, 0.016929239, 0.0140614444, -0.00740076, -0.00676861173, 0.0159578882, -0.0167133827, -0.00209302735, 0.0259026606, 0.0114557594, 0.00572017068, -0.0113169961, -0.0049107126, 0.0114865964, -0.000745376048, -0.00247077458, 0.0067262114, -0.0177155696, -0.00612104544, 0.0104150278, -0.00840294641, 0.00562766148, -0.0139612257, 0.0186869185, -0.0274290666, 0.00466016633, -0.0145779559, -0.0157574508, 0.00630606432, -0.00922011398, -0.0329642184, -0.00363099785, -0.00493769441, -0.0180547703, -0.0120879086, -0.0186560825, -0.010985503, -0.0119645623, -0.0158191249, -0.0168521479, 0.00157651608, -0.00740846898, 0.0137993339, 0.0150250848, 0.00608635414, -0.0222793706, -0.014562537, 0.017962262, -0.00520365965, -0.0219710059, 0.00337081496, 0.0197507776, -0.0336426236, -0.0126198381, 0.00523449574, -0.000221155526, -0.036387071, -0.0257947333, -0.0282924883, -0.0218168236, 0.0139689343, -0.0100218626, 0.0141231176, -0.0168367289, -0.000702494, -0.0139072612, 0.0180856083, -0.0126815103, -0.00272324844, 0.00151580677, -0.0173301138, 0.00689195795, -0.0141847897, -0.00141366082, -0.0228035916, 0.00632919185, -0.0175151322, 0.0188256837, -0.00729283225, -0.0123962732, 0.00563922478, -0.00996018946, 0.000611911819, -0.0123962732, 0.0134986779, -0.00527689606, 0.00163144362, -0.0109392488, 0.00820250902, 0.000792594394, -0.000122201673, 0.000938585959, 0.00842607394, 0.0108236112, -0.0201824903, 0.0213080216, -0.0179468431, 0.000842221896, -0.00652577449, 0.00902738515, -0.0153797045, -0.00185404462, -0.0119260168, -0.0149865393, 0.0241912343, 0.00143967906, 0.00543878786, -0.0105152465, 0.00549660623, 0.0115868151, -0.000804639945, 0.0131286401, -0.0156495236, -0.0086881835, -0.0145317009, 0.0114017958, 0.0242529083, 0.0290942378, 0.0144006461, -0.00473725749, 0.00767443422, -0.0109315393, -0.00334576028, -0.00158904342, 0.0782013685, -0.00406270893, 0.0062443912, -0.025609713, -0.00106096838, -0.0209688209, -0.00997560751, 0.0465014428, -0.0060362448, 0.00178080786, 0.000769467035, 0.0152255222, -0.00786330737, 0.00610562693, -0.00557755213, -0.032840874, 0.0135218054, -0.0403033048, -0.0271823741, -0.0209688209, -0.0181935355, -0.00386034441, 0.0100989537, 0.00566620706, -0.00623668218, 0.00728126848, 0.00166228006, 0.00443660142, 0.00302197714, 0.000562284316, -0.00449442, 0.0146704651, 0.018471064, -0.000367387984, -0.0466247872, 0.00291212206, 0.00638701, 0.0125812925, 0.0103302272, 0.0032937238, 0.00297572231, 0.00551587902, 0.0127200568, -0.0128202746, 0.0248850565, -0.007917271, 0.0116793243, -0.0106231747, 0.0210459121, -0.00939742383, -0.000927022309, -0.0195965953, -0.0098830983, -0.00937429629, -0.00454067485, -0.00744316028, 0.0068418486, -0.00351536111, -0.0122189634, -0.0122652184, 0.00382179883, 0.0226185732, 0.00314917765, 0.000569511612, -0.00108602294, -0.019457832, -0.0222793706, -0.00562766148, -0.0196274333, 0.00884236675, -0.0225569, -0.0265039727, 0.00411667302, -0.00300270412, -0.00462547503, -0.0103533547, -0.00309714093, 0.0142002087, 0.000537229644, -0.0243145805, -0.00213542767, 0.0135140959, -0.0282308161, -0.0128588211, -0.00659130188, -0.0138841346, -0.0290942378, 0.00932033267, -0.00550046051, -0.00541566033, -0.0109777944, 0.0231427941, -0.0321007967, 0.0124964919, 0.022479808, 0.0187023375, 0.0164358541, 0.00111396855, 0.0222176984, -0.0118643437, 0.005762571, -0.0100064445, -0.0282308161, -0.0317924321, -0.00677246647, 0.0200899802, -0.000796930806, 0.0303585343, 0.0238674507, 0.0357395038, -0.0251471661, -0.00945138745, 0.0243916716, 0.0239907969, -0.00453296537, 0.00669922959, 0.0227265, -0.0258872416, 0.0266273189, 0.00456765667, 0.000560357, -0.00231273752, -0.0138378795, -0.00134235143, -0.0095593147, 0.0187640097, 0.00906593073, 0.000490493083, 0.0327792, -0.00669922959, -0.00565078855, -0.00620970037, 0.014562537, 0.00878069364, 0.0153257409, 0.000741039636, -0.00469485717, -0.00259412057, -0.0126738017, 0.00318194134, -0.00440961961, 0.00817938149, 0.0152871953, -0.00286008534, 0.0022375735, -0.0110780131, -0.00222022808, -0.00747785112, -0.010761939, 0.00502634933, -0.00118816888, 0.00152255222, -0.013814752, -0.00575871626, 0.0008349946, 0.00520365965, -0.0123962732, 0.00483747618, 0.0075973426, 0.00691123074, 0.00495311292, -0.00466016633, 0.00533856917, -0.0182089526, -0.00462933, 0.00989080779, 0.00515740458, -0.00159386161, 0.0215547141, 0.0144160641, 0.00283888541, -0.00348837906, -0.00248619285, 0.00539638754, -0.0034671789, -0.0107696475, 0.0103841918, -0.0114557594, 0.020475436, -0.0147629743, 0.000471220264, -0.0102223, -0.00362136145, 0.0414134189, 0.0109084118, 0.00692279451, 0.00119684171, 0.00710395863, 0.0245150179, -0.00191668118, -0.0310677737, 0.0085956743, -0.0176847335, -0.0124502368, 0.00989080779, 0.00570860691, 0.00643711956, 0.00754723325, -0.00223950087, 0.0106694289, 0.0216009691, 0.0128434021, -0.00928949565, 0.00281383074, 0.0118951797, 0.0201208163, 0.00975204352, 0.00498009473, -0.000164300727, 0.00430554617, 0.0250854939]
|
26 Sep, 2023
|
Difference Between Black Hat SEO and White Hat SEO
26 Sep, 2023
Prerequisite : Search Engine Optimization
Black Hat SEO: Black hat SEO refers to a set of practices that are used to increase a site or page’s rank in search engines through means that violate the search engine’s terms of service. The term “black hat” originated in Western movies to distinguish the “bad guys” from the “good guys,” who wore white hats (see white hat SEO). Recently, it’s been used more commonly to describe computer hackers, virus creators, and those who perform unethical actions with computers. For Example: Content Automation, Doorway Pages, Hidden Text or Links, Keyword Stuffing, Reporting a Competitor (or Negative SEO), etc.
White Hat SEO: White Hat SEO refers that working within search engines’ terms of service to improve a site’s search engine results page (SERP) rankings while maintaining the integrity of your website and staying within the search engines’ terms of service. For Example: Offering quality content and services, Fast site loading times and mobile-friendliness, Using descriptive, keyword-rich meta tags, Making your site easy to navigate, etc.
Below is a table of differences between Black Hat SEO and White Hat SEO:
S. No.
Black Hat SEO
White Hat SEO
1.
Black Hat SEO refers to the use of aggressive SEO tactics and strategies that focus only on search engine not on human audience.
White Hat SEO refers to the use of optimization SEO tactics and strategies that focus more on human audience as opposed to search engine and completely follow search engines rules and policies.
2.
It is used by those who are looking for quick financial returns on their website.
It improves your search performance on search engine result page(SERP) along maintaining the integrity of the website.
3.
It contains stuff and spam keywords into the on-page contents to fool the search engine spiders and improve ranking.
It contains proper research, craft titles, Meta tags according to webpage, industry, relevance
4.
It consists of irrelevant back links.
It gets the link because of quality content.
5.
It exchanges the links for the ranking.
It consists of natural links.
6.
It is also known as Unethical SEO.
It is also known as Ethical SEO.
7.
It is used for short-term goals and benefits.
It is used for long-term goals and benefits.
8.
This type of optimization is not approved by search engines.
This type of optimization is approved by search engines.
9.
Black Hat SEO does not follow Google’s guidelines.
White Hat SEO provides a better experience to users by following Google’s guidelines.
10.
Techniques used-
Keyword stuffing
Doorway and cloaked pages
Creating blog comment spam
Hidden texts
Hidden links
Participation in Link Schemes
Techniques used-
Research
Analysis
Re- writing of meta tags to be more appropriate
Improvement of content
Redesign web
Having Fast Page Loading Times
Prioritizing Mobile-Friendliness
11.
It doesn’t fulfill the search intent.
It satisfies the aim of the search.
12.
Manipulation takes the place of the algorithm to get better results.
It can achieve a high ranking via Organic means.
13.
It degrades the user experience.
It’s beneficial to the user experience.
14.
It is not concerned in producing high-quality content
It is dedicated to producing high-quality content.
15.
It reduces the trustworthiness of websites.
It improves the credibility of a website.
16.
It reduces the authority of a website.
It increases the authority of a website.
17.
Black Hat SEO is disapproved by the search engines.
White Hat SEO is approved by the search engine.
18.
Black Hat SEO contains Duplicate Content.
White Hat SEO contains relevant content.
19.
There is high risk in Black Hat SEO.
There is low or zero risk in White Hat SEO.
20.
Black Hat SEO also contains irrelevant backlinks.
White Hat SEO also contains relevant backlinks.
Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?/How to design datalists for mobiles using jQuery EasyUI Mobile ?/How to design menu using jQuery EasyUI Mobile ?/EasyUI jQuery menu widget/EasyUI jQuery datebox widget/How to make use of multi-mode jtsage-datebox plugin?/Step by step guide to make your first WordPress Plugin/Explain MonsterInsight Plugin in WordPress/How to Setup All In One SEO(AIOSEO) Plugin for WordPress?/WordPress SEO: Step-by-Step Guide, Benefits and Plugin/Difference Between Black Hat SEO and White Hat SEO
|
https://www.geeksforgeeks.org/difference-between-black-hat-seo-and-white-hat-seo?ref=asr10
|
CSS
|
Difference Between Black Hat SEO and White Hat SEO
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, WordPress SEO: Step-by-Step Guide, Benefits and Plugin, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, How to design menu using jQuery EasyUI Mobile ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, Step by step guide to make your first WordPress Plugin, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, EasyUI jQuery datebox widget, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, Explain MonsterInsight Plugin in WordPress, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, EasyUI jQuery menu widget, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, How to make use of multi-mode jtsage-datebox plugin?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to Setup All In One SEO(AIOSEO) Plugin for WordPress?, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, How to design datalists for mobiles using jQuery EasyUI Mobile ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Difference Between Black Hat SEO and White Hat SEO, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0390249379, -0.0461507849, -0.0133770388, -0.00265611405, 0.0235255808, 0.00958902203, 0.00360472617, -0.0111068012, -0.0097112162, -0.0114540895, 0.0307929143, -0.00891373865, -0.00765321, -0.0475142151, -0.0212746374, 0.0303041395, 0.0116341654, -0.0181490406, 0.0393593647, -0.0331081711, 0.00093896524, -0.00850856863, -0.0565437153, -0.0259566, -0.0147533305, 0.020425709, -0.0169270989, 0.0220849775, -0.0139815789, 0.0102128545, 0.0286062844, 0.00669495063, 0.0394365415, 0.0160910338, -0.0433982, -0.000559520384, 0.0040516993, 0.00845068693, -0.00148401526, 0.00901020784, 0.0218534507, 0.00708082691, -0.0125538372, 3.94166454e-05, -0.0255321376, -0.0163354222, -0.0135957021, -0.0525563285, 0.0226637907, -0.0167212989, 0.0326451212, 0.0244774092, 0.0411601216, 0.0172743872, 0.0267540775, 0.0453790314, 0.0333911479, -0.0143545922, -0.0155122206, -0.0247603841, 0.00518038683, 0.00827061199, -0.0309472661, 0.00360472617, -0.0340342745, -0.0113704829, -0.0224322658, -0.0400282182, -0.00100649358, 0.0134670772, -0.0270885043, 0.0492377952, 0.0326193944, 0.00381695805, 0.0104186554, 0.017428739, 0.0519903786, 0.00762105361, -0.0248890109, 0.0351661779, -0.0288120843, -0.020194184, -0.014714743, -0.00991701614, 0.0237056576, 0.0103286179, -0.0130297504, -0.064312689, 0.0086114686, -0.0138400905, -0.0166827105, -0.029583836, 0.0335969478, -0.0304584894, -0.0386390649, 0.0299439877, -0.00592641439, -0.008701507, 0.000762507319, 0.0516045019, 0.0233583692, -0.0205929223, 0.000239966714, -0.00849570613, -0.000353116862, 0.00241976487, -0.0119878855, -0.0108817071, 0.0196410958, 0.0325164944, 0.00946039613, -0.0171329, -0.0273714811, 0.0413659215, -0.0120264729, -0.0117306346, -0.0187535807, -0.062974982, 0.0596307255, 0.0207858607, -0.0539197586, 0.00229274738, 0.00347610074, 0.062974982, -0.018419154, 0.0029165803, -0.0575212687, -0.000756076, 0.055103112, -0.0353205279, 0.00664350064, 0.0118078096, 0.038561888, -0.0129011255, -0.0111904079, 0.00461765099, 0.0361437313, -0.00567881, -0.0185091924, -0.00394236762, -0.0371212848, -0.0272171292, 0.00270595634, -0.00186828361, -0.00186506798, -0.00736380275, 0.00209177029, 0.0280146077, -0.0440927781, 0.0263167527, -0.0127853621, -0.045790635, 0.00296159927, -0.00904236361, 0.0302784145, -0.0375071615, -0.0016656986, -0.00493599894, -0.0220463891, 0.0129718697, 0.0321563445, -0.0534052551, -0.00541191269, 0.0572125688, -0.0129783, 0.0270885043, 0.0149977189, 0.000178869668, -0.0201813225, 0.0403626449, 0.00906808861, 0.00780112902, -0.0196282323, 0.0201170091, -0.00187310704, -0.0265997276, 0.0330567211, 0.0108559821, 0.00660491316, -0.0248632859, -0.0450188816, 0.00677855732, 0.0136214271, -0.00556947896, 0.018316254, -0.00613864604, 0.0383818112, 0.020399984, -0.00286995363, -0.00163515, -0.0397966914, -0.000619813509, 0.0612771288, 0.00364652951, -0.00175734423, 0.00770466, -0.0191137306, 0.00414173724, 0.0405684449, -0.0092417337, -0.0121229421, -0.0105408495, -0.00700365193, 0.0228695925, -0.0107659437, -0.0156537089, 0.0450446084, 0.038561888, 0.00526077813, 0.0215576123, -0.0432438515, 0.043604, -0.0353205279, 0.0291465111, 0.00158289599, -0.00351468846, -0.00573669188, 0.00544728478, -0.0284776576, 0.00458871, -0.0087208, 0.0038105268, -0.00188275392, -0.0117177721, -0.0453790314, -0.0139429905, -0.0133770388, 0.0144574922, 0.0109395878, -0.018341979, -0.00893303286, -0.00561128184, 0.00562736, -0.0138658155, -0.0140330289, -0.000176357455, -0.0208501741, 0.0255964492, -0.0125345429, 0.0124187805, -0.0196282323, 0.0242716093, -0.0171200372, 0.00901663862, -0.0429608747, -0.0182133541, 0.00389734888, 0.0188822057, -0.0377386846, 0.0162067972, -0.0272685792, 0.00197761506, -0.0401568413, 0.038664788, -0.0226509292, 0.0112933079, 0.0239243209, -0.013801503, 0.0397452414, -0.0215447508, 0.0134284897, 0.0307414643, 0.0277573559, 0.0127853621, -0.0288892593, 0.024837561, 0.0293008611, -0.00326869241, 0.0101871295, 0.00712584564, 0.0471540615, -0.0378415845, -0.0125023862, 0.0214032624, -0.00790402945, 0.00663063815, 0.0113190329, -0.0453018583, 0.0266254526, 0.0336741246, 0.020399984, -0.0400024913, 0.0301240627, -0.00421891222, 0.0228181425, -0.059013322, -0.0346002281, 0.0422148481, -0.0158337839, -0.00809696782, -0.00673353858, 0.0161682107, 0.0329538211, 0.00271078, 0.0407227948, 0.00786544196, 0.0420605, -0.00510642724, 0.027525831, 0.0195510574, 0.0217505507, 0.0180204157, 0.0167341623, 0.0167212989, -0.0306385644, 0.021287499, 0.00992987864, -0.0259566, 0.0235384442, -0.0417003483, 0.0218920391, 0.00722874608, 0.029661011, 0.00931890868, -0.00891373865, -0.009183852, 0.00933177117, 0.000760497525, -0.0229081791, -0.0205543358, -0.0514758751, -0.00978839118, -0.0154221831, 0.021802, 0.0299439877, -0.0268312544, -0.042574998, -0.0380731113, -0.010174267, -0.0404655449, -0.0163740106, -0.0286320094, 0.0181361772, -0.0125795621, 0.0347288512, -0.0183548406, -0.0153835947, 0.0468968116, 0.029403761, -0.0209788, 0.0134413522, 0.0210045241, -0.0536110587, 0.0108624129, 0.0205543358, -0.0100906612, -0.0179432407, 0.0157694705, 0.00462408224, 0.0106180245, 0.000860986125, 0.0143288672, 0.0301497877, -0.00330888783, -0.0142259663, -0.00323653594, -0.0426779, 0.00920314528, 0.00865005702, -0.012405918, 0.0368125811, -0.0369926579, -0.00960188452, -0.0364781581, -0.00719015859, -0.0302269626, 0.00439577224, 0.0303041395, 0.0321563445, -0.00554053811, -0.034806028, -0.00897805113, 0.00396487722, -0.0150748938, -0.0279888827, 0.0382789113, 0.0021689455, 0.000762105337, -0.0234098192, 0.0298668128, 0.0187664423, 0.0369154848, 0.0246188976, 0.0461765118, 0.00231847237, -0.00354362908, 0.0148433689, -0.00695863273, -0.0126824621, 0.0105858687, 0.00621903688, 0.00675926358, -0.0318990946, -0.0254678242, -0.0187278558, 0.0192680806, -0.0102514429, 0.027551556, -0.0168370623, -0.053508155, 0.0241558459, 0.0112289954, -0.0227795541, 0.0413659215, -0.0204900224, -0.013878678, 0.00037844, -0.0249018725, -0.0103286179, 0.0127081871, 0.00366903888, 0.00121149025, -0.0170042757, 0.0152549697, 0.00801336113, 0.0288120843, -0.0180847272, 0.0264196526, 0.0491863452, -0.00238278508, -0.0362980813, -0.00369154825, -0.00679785106, -0.0485946685, 0.0234869942, 0.000987199717, 0.00586210145, 0.0344458744, 0.0356035046, 0.0129011255, -0.0355263278, 0.0125023862, 0.017351564, -0.00418354059, -0.011466952, -0.0288120843, 0.0588075221, 0.0437326282, 0.00148562307, -0.00106517889, 0.0157566089, 0.0265740026, 0.0253263358, -0.0111325262, -0.0724418089, 0.00427036267, -0.0286062844, 0.0235384442, -0.0104701053, -0.00664993189, -0.0396423414, -0.0448130816, -0.0380731113, 0.0217634141, 0.0470254384, -0.00785257947, 0.0444272049, -0.0283747576, 0.0227795541, -0.0219692141, -0.0192938056, 0.0739338696, 0.0394879915, -0.0228438675, 0.0456877351, 0.0172358, -0.0564408153, 0.00566273229, -0.0167984739, -0.000660410908, 0.0101806987, -0.0540741086, 0.00297767739, 0.0357578546, 0.0335969478, 0.0255064126, 0.0445558317, -0.018522054, 0.0283233076, -0.0112997396, -0.00786544196, 0.0234484058, 0.00890087616, -0.0241944324, -0.000988003681, 0.00978839118, 0.0453533083, -0.00486525474, 0.00673997, -0.0461507849, -0.0500095449, 0.00102739525, -0.0123416046, -0.0313588679, 0.00542799104, -0.0227795541, -0.0228181425, -0.0233969558, 0.0141102038, -0.000180778952, 0.0101678362, 0.0249275975, -0.000701812212, 0.0132226888, -0.0162968356, 0.0290950593, -0.0198983457, 0.0644670352, 0.0208373107, 0.000100940772, 0.00754387816, 0.0260595, -0.0133384513, -0.00400668057, -0.00497458642, 0.0545371585, 0.0138658155, -0.00384589867, 0.0135185272, -0.0149076814, 0.00443435973, 0.034857478, 0.017454464, 0.000444561447, 0.0107016312, -0.0148305055, 0.0397195145, -0.00910024531, -0.0201555956, -0.0228953175, 0.00335712242, -0.0138658155, 0.0309729911, -0.0091388328, -0.00908738282, 0.00313524366, 0.027577281, 0.0418289714, 0.0242587458, 0.0118656913, -0.0330052711, 0.0389992148, -0.020168459, -0.0113962088, -0.00842496194, -0.000578814186, 0.0303041395, 0.000768134661, 0.00743454695, 0.00942824, 0.00282975822, -0.000551481324, 0.0110424887, -0.00514179934, 0.00201781071, -0.000762507319, -0.0142516913, 0.00929318368, 0.0373528078, -0.0096211778, -0.0191394556, -0.00528971851, 0.0014759762, 0.0272428542, 0.00842496194, -0.00231043343, -0.0101292487, 0.0278602559, 0.018341979, 0.0115312655, 0.000582431792, 0.00519003393, -0.0167727489, -0.013698603, -0.0265482776, 0.0243101958, -0.017557364, -0.0300211627, 0.0209659357, 0.0131969638, -0.0101163862, 0.000875456491, 0.0142645547, 0.0181876291, 0.0279888827, -0.00964690279, 0.0210816991, 0.00631550606, 0.0114283646, -0.0234355442, 0.0240014959, 0.0348832, -0.00319794845, -0.00240529445, 0.00513858395, 0.0204771608, 0.0180847272, -0.00722874608, -0.0236284826, 0.00791689195, 0.0191265941, -0.000571579032, 0.00255321362, 0.0415974483, 0.00138272275, -0.0378415845, 0.0313074179, 0.0226380657, 0.0238214191, 0.0314617679, -0.0448645316, 0.0130876321, 0.0320534445, -0.0344458744, 0.00571096689, -0.017428739, -0.010502262, -0.00396809308, -0.0205157474, 0.00149125047, -0.00598751148, 0.0171843506, 0.013878678, 0.0161167588, -0.011036057, 0.00663063815, -0.000754468201, 0.0178017523, -0.00410636514, -0.0293008611, -0.0406713448, -0.0206572358, -0.0130940629, -0.0148433689, 1.69574469e-05, -0.00954400282, 0.000645940541, -0.00575920101, -0.0182776656, 0.0092288712, -0.00248246966, 0.00477843266, 0.010476537, 0.119467251, 0.000460639625, 0.029635286, 0.0248632859, 0.036683958, 0.0197054073, 0.00338927866, 0.00336355367, -0.0264453776, 0.00693290774, 0.0124187805, -0.0258151125, -0.0201813225, -0.0268827043, -0.0107016312, 0.0238985941, -0.00471733557, 0.0219049025, -0.0244002342, 0.00978839118, 0.0235513058, -0.0139815789, 0.000714272785, -0.0131262196, -0.021261774, 0.0409543216, 0.011036057, 0.0198468957, -0.0383818112, 0.00157324912, 0.00975623447, 0.00140282046, -0.00304520573, -0.00705510192, 0.0472055115, 0.0102385804, 1.30509534e-05, -0.00384589867, -0.0291207861, 0.00080993789, -0.0142002413, -0.00496172393, -0.00531865936, 0.00722874608, 0.0354491547, -0.0189336557, -0.00122596067, 0.0303298645, -0.0132355513, 0.0204385724, -0.00297446176, 0.0029037178, -0.0297381878, 0.0214032624, -0.0208887607, 0.000967102067, 0.00408064, 0.00259019341, -0.00253391988, -0.00221717986, 0.0035822168, -0.0190880056, 0.0346259512, -0.0107016312, -0.0100585045, 0.0125795621, -0.0204900224, 0.0149205439, 0.0020563982, -0.0110553512, -0.000161585631, -0.00334747531, -0.00342143513, -0.00209016236, 0.00956972782, -0.017531639, 0.00195832131, 0.0196410958, -0.0146247055, 0.0063380152, -0.0139687154, -0.0441442281, 0.019383844, -0.00187793048, 0.00451475056, -0.0237571076, -0.0096083153, 0.0213775374, -0.0165283605, 0.00124686223, -0.00928032119, 0.00920957699, -0.0061322148, 0.0110489195, 0.00453726, 0.0145089421, -0.00418032473, 0.00803908613, -0.00153948495, 0.0279117059, 0.00796834193, 0.010199992, 0.0160395838, 0.0237828325, 0.03406, -0.00180236308, 6.902309e-06, 0.0249147359, -0.0427293517, 0.042472098, -0.0521961786, 0.0194481574, -0.0213646758, -0.0149719939, -0.0330052711, 0.0162067972, 0.0402340181, -0.008701507, 0.0173644256, 0.0194481574, 0.0171457622, -0.00686216401, -0.0126310121, -0.0280146077, 0.00699078944, 0.0544857085, 0.00830919947, 0.0116213029, -0.00254517468, 0.0340342745, 0.020425709, -0.0286062844, 0.0129525755, -0.00314810616, -0.0419576, 0.013801503, 0.0337770246, -0.0109460196, 0.0389220379, 0.00529614976, 0.0143674547, 0.000640715181, -0.0112933079, 0.020425709, 0.00346966949, 0.00353076658, 0.0193967074, 0.00165444391, 0.0365810581, -0.00160620944, 0.0255064126, 0.0040742089, -0.000642323, -0.0321048945, -0.0097369412, -0.0194996074, -0.00104829681, 0.029635286, -0.00360794179, -0.0139944414, -0.000897162, -2.83629e-05, -0.017403014, -0.00712584564, 0.0169013739, 0.00243101967, 0.0285033826, -0.00594249228, 0.0301497877, -0.00826418, 0.0130619071, 0.00573347602, 0.00358864805, 0.019409569, 0.00865005702, 0.00414495263, 0.00771109154, -0.0125216804, -0.00307414657, 0.00443757558, -0.00963404, -0.00902307, 0.0291979611, -0.0048105889, 0.0156794339, -0.002181808, 0.0166827105, 0.0227152407, -0.00581708271, -0.0123030171, -0.00237635383, -0.0179303773, 0.00740239024, 0.00843782444, -0.00140925182, 0.038613338, -0.0176988523, 0.0103736371, -0.00252266531, -0.0162067972, -0.000653175754, 0.00138111494, 0.00361437304, 0.00108366879, -0.0282461327, -0.00199208548, 0.0285548344, 0.0336741246, 0.00856001861, -0.0087208, 0.0536625087, -0.0239629075, 0.0261366758, 0.00395844597, 0.0137886405, -0.00834135525, 0.00415781513, 0.0117177721, 0.0129461437, 0.0045340443, -0.0086436253, 0.0584988222, -0.00488454849, 0.00235384447, 0.00341821928, -0.0117563596, -0.0237056576, -0.0208115857, -0.00638946565, -0.0104186554, 0.0248890109, 0.00552445976, -0.0239371825, 0.0141230663, 0.00902307, 0.0423691981, -0.0148562314, 0.0251977108, -0.0203099474, -0.0259694643, -0.0337770246, 0.00126294047, 0.0205414724, -0.0171071757, -0.0140201664, -0.0198340323, -0.0248890109, -0.0532509051, 0.0143417297, -0.0159752723, -0.0123994863, 0.0493921451, 0.0213775374, 0.0203356724, -0.0230625309, -0.0160524473, 0.0375586115, 0.0222393274, 0.032979548, -0.00102016, -0.00785901, 0.0115505587, 0.000321965403, 0.0115055395, 0.00595857063, -0.0104829678, 0.0040516993, -0.0201298706, -0.00233776611, -0.0250047725, -0.00409350265, 0.00622225273, 0.0139687154, -0.0154993581, -0.0300726127, -0.0121422354, -0.00745384069, 0.0377129614, 0.00284744427, -0.0533538051, 0.0371984579, -0.0158852339, 0.0218920391, 0.0128689688, -0.00115441275, -0.000981572433, -0.00733164651, -0.0042575, 0.0176474024, 0.00383946742, -0.00944753364, -0.0188178923, 0.0396166146, -0.00080993789, 0.0436554514, -0.0330824479, 0.0136728771, 0.0429094248, 0.00863076281, -0.000647146429, -0.017428739, -0.0116084404, -0.0154221831, 0.0178146139, -0.0125474054, 0.00906165782, 0.00701008318, -0.0240658075, -0.015602258, 0.0123866238, -0.0416746214, -0.00240529445, -0.0460736081, -0.0107144937, 0.00839280616, -0.0352176279, 0.0131712388, 0.0402082913, -0.0282975826, 0.0134670772, 0.018419154, 0.0177631639, 0.00143176119, -0.00985270366, 0.00816128, -0.00623833062, 0.0305871144, 0.0064184065, 0.0161682107, 0.032928098, 0.00649879733, -0.0177117139, 0.00495207682, -0.022175014, -0.0271399543, -0.00622546813, -0.00197279174, -0.00745384069, 0.0021576907, 0.0040742089, -0.0170557257, 0.0507813, -0.044118505, 0.0120521979, -0.0326193944, -0.0234998558, 0.0113190329, -0.0185863674, -0.00130233192, -0.0411343947, -0.0106630437, -0.0118528288, -0.00491027394, -0.00593927689, 0.0132484138, -0.0141616538, -0.0239114575, -0.0180332772, -0.00251623383, -0.0111325262, 0.0115055395, 0.0131262196, 0.0355520546, 0.0158980973, 0.00757603487, 0.00498101767, 0.00407099305, 0.0130747696, -0.00283458177, -0.0152292447, -0.0112161329, -0.00629299646, 0.0216219258, 0.0203356724, -0.022123564, -0.00848927442, 0.00196475256, 0.00950541534, -0.00687502651, -0.0135571146, -0.00521897478, 0.0134670772, 0.0103543429, 0.0309472661, -0.0210945625, 0.0210302491, -0.0141487913, -0.0186120924, 0.0119878855, 0.00708082691, 0.00528650312, -0.0123608988, 0.0234098192, -0.0302784145, -0.018316254, 0.00168177683, -0.0102064237, -0.0162453856, -0.0231782924, -0.00313685136, 0.00717729609, -0.00300018699, -0.0191394556, -0.000340053346, 0.00254195905, 4.21298355e-05, -0.00899091363, 0.0210045241, -0.019435294, -0.00208533881, 0.0405169949, -0.0161296222, 0.00588461105, -0.00625440897, -0.00447616307, -0.0110231945, 0.0217505507, 0.014611843, 0.0155379456, -0.00189240091, -0.0144960796, -0.0208115857, 0.0261624, 0.019409569, -0.0127017563, 4.94906235e-05, 0.000830437581, 0.00674640108, -0.025699351, -0.0263296142, -0.0446330048, -0.0147018805, -0.00112306036, -0.00620295899, 0.00102739525, -0.0344201513, -0.0164511856, 0.0117692221, -0.0163354222, 0.0245674476, 0.0292236861, -0.0218663141, -0.0214547124, -0.0126438746, -0.00568202604, -0.0050388989, -0.0343172513, -0.0257379375, -0.00868864451, 0.0134542147, 0.0045790635, -0.00831563, -0.00212553446, 0.0218663141, 0.058910422, -0.00444722222, 0.0156922955, 0.00298571656, 0.0303041395, 0.0163611472, 0.018419154, 0.00184738194, -0.00899091363, -0.0483374149, 0.001135119, -0.00557269435, 0.00164962048, 0.0122579988, -0.00987199787, 0.0344458744, -0.00638946565, -0.0086436253, -0.00288281636, 0.00959545281, -0.029455211, -0.0118528288, 0.00397452433, 0.00726090232, -0.0135056647, 0.0120843537, 0.0112804454, -0.00977552868, 0.013878678, -0.0100327795, 0.0108881379, -0.00658561941, 0.0123287421, -0.0113318954, -0.00641197525, 0.0188950673, -0.0040516993, 0.00309987157, 0.00146150589, -0.019203769, -0.019255219, -0.0224065408, 0.0148433689, -0.00119621598, -0.00277348468, 0.00066483242, -0.0140716163, 0.00466588559, 0.00658561941, 0.00929318368, 0.00451475056, 0.0104829678, 0.0266254526, -0.0179689657, 0.00240690238, 0.00804551691, 0.00796191115, 0.00223004236, 0.00757603487, -0.00621260563, -0.00910667703, -0.00541512854, 0.00493921433, -0.000865005655, 0.0254163742, 0.017403014, -0.0103543429, 0.0171586256, -0.0227666926, -0.00109894306, -0.0122644296, 0.00780756027, 0.000971925503, 0.00105231639, -0.00237153028, 0.0120136105, 0.0161296222, -0.0103672054, 0.017505914, -0.000765321, -0.00664350064, 0.0120393354, -0.0204642974, 0.00494243, 0.00394236762, -0.00549551938, -0.00430251891, -0.0050871335, -0.0161682107, 0.0176731274, 0.0168113373, -0.0306900144, -0.0273714811, -0.0259437393, 0.0305871144, -0.0135828396, -0.00149125047, 0.0315646678, 0.00371084223, -0.0120714912, 0.0259051509, 0.0195381939, -0.0154993581, -0.00315292948, 0.0238728691, -0.027422931, 0.018393429, -0.00628013397, -0.0157051589, -0.010901, 0.00837351196, 0.029480936, 0.0140201664, 0.0116984779, 0.0155636705, -0.00309022469, 0.0228567291, -0.00854715612, -0.00396166183, -0.0113769146, 0.00398738682, 0.0316932946, -0.0063348, -0.0435011, -0.00161022891, 0.00548908813, 0.0116084404, -0.0063701719, -0.00424142182, 0.0198597573, -0.00420283433, 0.00518360268, 0.0201555956, -0.0147018805, 0.00303555885, 0.00244548987, -0.00599394273, 0.00959545281, -0.00387483952, 0.00620939024, 0.00954400282, -0.00245352904, 0.0302526895, 0.0144703547, 0.00256446842, -0.00358543242, -0.0228052791, -0.0128110871, 0.00982054789, -0.0176988523, -0.0127596371, -0.00376550783, -0.00645699399, 0.0092288712, 0.0188050307, 0.00550516602, -0.00279438635, 0.0147018805, 0.0127403438, -0.0150491688, -0.0103800679, 0.0364267081, 0.00427357806, -0.0196925458, -0.00910667703, 0.0163740106, 0.00696506398, 0.0111711137, -0.00667565688, 0.00800049864, -0.00547622563, -0.0096083153, 0.0061418619, 0.0111904079, 0.0201813225, 0.0171071757, -0.000592480646, -0.0285033826, 0.00355327595, -0.00347931636, -0.000563138, -0.00786544196, 0.017300114, 0.0136728771, -0.0231268425, -0.0255064126, -0.00747313444, -0.00847641192, 0.0163482856, 0.0105151245, -0.0113769146, 0.00100568961, -0.000192134161, 0.00843782444, 0.00227666926, 0.0122708613, 0.0124895237, 0.00878511276, 0.0143674547, 0.0157694705, -0.00955686532, -0.00781399198, 0.0309472661, -0.0161553472, -0.000106015446, -0.0040774243, -0.0200784206, 0.0403626449, -0.0028024253, 0.00513858395, -0.000191531231, 0.0188436173, 0.00956329703, -0.0245031342, -0.00832849275, -0.0132612763, 0.0203356724, 0.0132612763, -0.00375907659, 0.00920314528, 0.00715800235, 0.00595857063, -0.00728019653, 0.0161038972, 0.00236670696, 0.0070936894, 0.00270756427, -0.00680428231, 0.0033185347, 0.011466952, -0.0264711026, -0.0129847322, 0.0237185191, 0.00400024932, 0.00360472617, 0.0182519406, 0.000922887062, -0.0226637907, 0.00741525274, 0.0350375511, 0.0151520697, 0.0260723643, -0.008219162, -0.0136214271, 0.0102578737, 3.01716955e-05, -0.00850213785, -0.0168499239, -0.00880440697, 0.0123930555, -0.0127467746, -0.0224965792, 0.0226766542, -0.027603006, 0.0161810722, -0.013775778, -0.0230239425, 0.00868221279, -0.0208759, -0.0338799246, -0.0161939356, 0.0300468877, 0.00496493932, 0.00497137103, 0.00798120443, 0.00267058448, -0.00256286073, -0.00307253865, -0.00832206197, -0.0171329, 0.00149607391, 0.00116405962, 0.022123564, -0.0310501661, 0.0016142485, 0.000926906592, 3.24829307e-05, -0.0186506789, -0.0362466313, -0.0135828396, -0.0207086857, 0.00729949027, 0.00165926735, -0.0389734879, 0.0117113404, 0.00704867067, -0.0115248337, -0.0288892593, -0.00671424484, -0.0043282439, -0.00359186367, 0.0241558459, -0.00482666725, 0.00158048433, -0.0130040254, 0.0268055294, -0.0104250871, -0.00601645187, -0.00389413326, 0.0245031342, 0.0228310041, 0.0171457622, 0.000256647822, 0.0189593807, 0.0178660657, -0.0180332772, 0.00978839118, -0.00439577224, 0.0331338979, -0.00656632567, 0.00684287027, -0.0227023792, 0.0237699691, 0.0065406, -0.00259019341, -0.0238085575, 0.0117113404, 0.00793618616, 0.0212746374, 0.0286577344, -0.0220463891, 0.00798763614, -0.0040742089, -0.00828990526, 0.00300501031, -0.0011865691, 0.00996203534, 0.0119300038, -3.65275955e-05, -0.00762105361, -0.00238600071, -0.0319248177, -0.0155379456, -0.00831563, 0.0186378174, -0.0215190258, -0.0103543429, 0.00532187475, 0.0007002044, -0.0267283525, -0.0159109589, -0.00997489784, -0.0144960796, -0.0154993581, 0.000361155951, -0.0177245773, -0.0178532023, -0.00986556616, -0.00586853269, 0.00215125945, 0.00942180865, -0.0198468957, -0.0149462689, 0.001557171, -0.0170943122, 0.00905522611, -0.00724160857, 0.00649236608, -0.0329538211, -0.0281175077, -0.017531639, 0.010553712, -0.00236349134, -0.000296642276, -0.0364524312, -0.0352433547, -0.0133899013, -0.027705906, 0.0307671893, 0.0081162611, -0.0210302491, 0.00645377813, -0.00215608277, 0.0256864876, 0.00359186367, 0.0357835814, 0.0071644336, 0.00762748485, 0.000919671438, -0.00608719606, -0.015576533, -0.00520611228, -0.0228052791, 0.00554696936, -0.00731235277, -0.00807767361, -0.00695863273, 0.0032703, 0.0216991, 0.00129268505, 0.0231011175, 0.00902950112, 0.00624476187, 0.0316675678, -0.048028715, -0.00365296076, -0.0312302411, -0.0158852339, -0.00607111771, 0.0239114575, 0.00546657853, 0.0119364345, 0.00538297184, -0.00413852138, 0.0140587538, 0.0128496755, -0.0168885123, -0.0134284897, 0.00992344785, -0.00549230352, -0.00983984116, 0.0151263447, -0.0303813145, 0.0177117139, 0.00299054012, 0.00728662778, 0.0152421072, 0.010097092, -0.0109910388, 0.00959545281, -0.0071644336, 0.000336636731, -0.00481380476, 0.0133513138, 0.0200784206, 0.00373335159, 0.0131326513, -0.0272428542, -0.00993631, -0.00556626311, -0.00555018522, -0.0110939387, 0.0104315178, -0.0221621525, -0.0237956941, 0.00819986779, 0.0170171373, -0.0206186473, -0.00413852138, -0.016515499, -0.00420926558, 0.00130554754, -0.0207987241, -0.0169914123, -0.00403562142, -0.00729949027, 0.00573990727, -0.00628335, -0.0156794339, 0.00250980258, 0.00700365193, -0.00267701573, 0.00401954306, 0.0119557288, -0.0196282323, -0.0035693543, -0.0178917907, 0.00364652951, 0.00998133, 0.0081741428, -0.0175702255, 0.0125152487, 0.00704867067, 0.0143803172, 0.00929318368, -0.0031931249, 0.00252748863, 0.0151392072, -0.00430895, 0.00938965287, 0.0110167637, -0.00992344785, 0.0124252113, 0.00418997183, -0.0050388989, -0.0341371745, 0.0209530741, 0.000790242164, -0.0151649322, -0.00757603487, -0.00617723353, 0.00142291829, 0.00699078944, -0.0123673296, 0.00517395558, 0.0495207682, 0.0273200292, 0.00231847237, 0.00501317391, 0.0125538372, -0.0010225717, 0.000375023374, -0.010174267, 0.00951184705, 0.0209273491, -0.025673626, 0.00998133, -0.00479129516, -0.0103157554, -0.00288281636, -0.0191394556, 0.00212714216, 0.00204192777, 0.010122817, 0.0264968276, 0.0171972122, -0.00950541534, -0.0161424857, -0.00390378013, -0.0216219258, -0.0160524473, -0.0128432438, -0.021313224, 0.00270756427, -0.00804551691, -0.0123480363, 0.0142645547, -0.0056144977, 0.0156922955, 0.00365617638, 0.029480936, -0.00250015571, -0.0017042862, -0.0358093046, 0.00183773506, 0.000341058214, 0.0277573559, 0.017351564, -0.0143417297, -0.00412565889, 0.0132355513, 0.00647950312, -0.0123480363, -0.0135699771, -0.018496329, -0.00115119712, 0.0114862463, 0.000378640951, 0.0177374389, -0.0160395838, -0.0182519406, -0.00646020938, -0.00831563, -0.0291465111, -0.0100263478, 0.0018184412, -0.00872723199, 0.0154864956, 0.013930128, -0.0288120843, 0.0338799246, -0.00119701994, 0.0143288672, 0.0068300073, 0.00196636049, 0.0261495393, -0.0323878713, 0.008219162, -0.0120071787, -0.00896518864, -0.00476235477, -0.0119300038, 0.00321724219, 0.0147533305, -0.00177020673, 0.00646985648, -0.00509356475, -0.00934463367, 0.0111775454, -0.00474949181, -0.00945396535, 6.35087781e-05, -0.0148690939, 0.0197697207, -0.00214322028, 0.0045790635, 0.0101678362, -0.00813555531, -0.0240272209, -0.00722231483, -0.0113447579, -0.0320791677, -0.016515499, 0.00819986779, 0.00214804383, 0.0215318874, 0.00524148392, 0.0110746445, -0.0154864956, -0.00907452, 0.010045642, 0.00771752279, 0.0179175157, 0.00619652774, -0.00505497726, -0.0144832171, -0.0109202946, 0.0086436253, 0.00690718275, 0.0256221741, 0.00874009449, -0.0364267081, -0.000123399965, 0.00191008684, -0.00768536609, -0.00897162, -0.017403014, -0.0288378093, 0.0227538291, -0.0201298706, -0.00797477365, -0.0180461407, -0.00260466384, -0.019461019, 0.00866935, -0.0170171373, 0.0097112162, 0.00791689195, 0.0024470978, 0.0121358046, -0.00158771954, 0.0151134813, -0.000737184193, 0.00398417097, -0.019461019, -0.00168660027, 0.00697149523, -0.00563057605, -0.0238728691, 0.000246799929, 0.0170557257, 0.00869507529, -0.0131133571, -0.00364974514, -0.0223293658, -0.00130876317, 0.00866291951, -0.0196925458, -0.017480189, 0.00521254353, 0.00987842865, 0.00316257635, -0.00684287027, -0.0164769106, -0.0125023862, 0.0123673296, -0.0182519406, -0.0013762915, 0.0018039709, -0.00906808861, 0.012939713, 0.017351564, 0.00421891222, 0.00330245658, 0.00794904865, -0.0154350456, 0.00144783943, -0.00722874608, 0.0197311323, -0.0107852379, 0.0144960796, 0.000161284159, 0.0226637907, -0.0140716163, 0.0097112162, 0.00779469777, -0.00471733557, 0.0178917907, -0.0244259592, 0.021236049, -0.00670138234, 0.00019545028, 0.0101806987, 0.00314167491, -0.0195381939, 0.0182262156, 0.0180590022, -0.000183592623, -0.0177374389, -0.0122387046, -0.0314617679, -0.00906165782, -0.0108688446, -0.0318476446, -0.00341178803, -0.00233776611, 0.0050614085, -0.0105665745, -0.00664993189, 0.00379766431, -0.0113126021, 0.00243905862, -0.00990415365, 0.0230496675, -0.000326386886, -0.0279888827, 0.0091388328, 0.00243745092, 0.0124187805, -0.0181747656, 0.0186506789, -0.00058484351, -0.00839280616, -0.0137629155, 0.0035597072, -0.0103350487, 0.0120264729, 0.00324939867, 0.0162839722, 0.0103929304, 0.00728019653, 0.00641519064, -0.00969835371, -0.022123564, -0.0214547124, -0.00989772286, 0.0143674547, -0.0254935492, 0.00145507453, 0.0241043959, 0.00360472617, 0.0119621605, -0.0097369412, 0.0134284897, -0.0133127263, 0.00356613868, 6.21019426e-05, -0.0184577424, -0.00154109276, -0.00190204778, -0.0171714872, 0.0269598793, 0.00679142, -0.00350182597, -2.63531292e-05, -0.00940894615, 0.0119042788, -0.00555018522, -0.00343429763, 0.000721508, -0.00282011135, 0.0235770307, 0.00111019774, -0.00732521527, 0.0168885123, -0.00836064946, 0.0119042788, -0.0105922995, -0.0213904, -0.00575276976, -0.00624154648, -0.00417710887, 0.0105344187, -0.00325904554, 0.0188178923, -3.30042167e-06, -0.000556706684, 0.0148948189, 0.0222264659, -0.0058428077, 0.00800692942, 0.0103800679, -0.00447937893, 0.0228310041, 0.00959545281, 0.00302912761, 0.00920957699, -0.0115762837, -0.0379444845, 0.0178532023, 0.0053508156, 0.00830276776, -0.00561128184, 0.00764034735, 0.00916455779, 0.0428322516, -0.0117242029, 0.019332394, -0.00368833262, -0.00140201661, -0.00380088, -0.0169656873, 0.0228438675, 0.00153385766, 0.00984627288, -0.00890087616, 0.0014004088, 0.0217634141, 0.013775778, -0.00883013196, -0.00354362908, 0.027500106, 0.0181104522, -0.0143545922, -0.00528971851, 0.00585567, -0.0134542147, -0.0176474024, 0.0209016241, -0.00758889737, 0.00992987864, -0.0201427341, 0.0181876291, -0.0224322658, 0.00859217532, -0.0432953, -0.0154607706, -0.00291336467, 0.00725447107, -0.00916455779, -0.0086436253, 0.0163611472, -0.0228310041, -0.00482666725, -0.0150748938, -0.00857931282, -0.0249147359, 8.14962332e-05, 0.00765964109, -0.0297381878, 0.0168499239, 0.00182487257, -0.00592319854, 0.0128754005, 0.0186506789, -0.0280146077, 0.0195510574, 0.000372410665, -0.00232972717, 0.0116084404, -0.0152806947, 0.00290050218, 0.00901020784, -0.0353462547, -0.0227023792, 0.00169785495, 0.00760819111, -0.0131133571, -0.0122901546, -0.00516109308, -0.00210784841, -0.00305002928, 0.0120457662, -0.00636695605, -0.00598429563, -0.0071644336, 0.00744740944, -0.00315132178, 0.000611372467, 0.0113126021, 0.0216733757, -0.0103543429, 0.0265225526, -0.00250497926, 0.0270885043, 0.0142902797, -0.00807124283, -0.00727376482, -0.0106373187, 0.00059167674, 0.00217698445, -0.0152549697, -0.00516752433, 0.000255642924, 0.00546979392, -0.0136214271, 0.0133384513, -0.00536367809, 0.00227345363, -0.000629460439, -0.0154350456, 0.0120393354, 0.0221364275, -0.00478807976, 0.0240529459, 0.00258376217, 0.0205028858, 0.0105922995, -0.00593284564, 0.00190365559, -0.0188693423, 0.00187310704, 0.00391985849, -0.0134027647, 0.00855358783, 0.00509034935, 0.0188178923, 0.00737666525, 0.0117499279, -0.00625119312, 0.00276222988, 0.00914526451, 0.00289407093, 0.00659205066, -0.00819986779, 0.0156408455, 0.00489741098, 0.0221878774, -0.000743213517, -0.0149719939, -0.00435396889, 0.0194224324, 0.0132870013, 0.0129975947, 0.00624797773, -0.00305163697, 0.0130940629, 0.0131648071, 0.0158209205, -0.0124380738, -0.0169270989, 0.0254421, -0.00655346271, -0.00333461282, -0.0110424887, 0.017300114, -0.0045340443, 0.00728019653, -0.0144703547, -0.0096211778, -0.00798120443, 0.00777540402, 0.0105665745, -0.0240658075, 0.0271914043, -0.0128946938, 0.00694577023, 0.0256607626, 0.0301497877, 0.00297928532, -0.00474306056, -0.00161746412, 0.00399060221, 0.00132162578, -0.00328798615, 0.0177760273, -0.00993631, 0.0353719778, 0.00432502851, -0.0227795541, -0.0218148641, -0.0159238223, -0.00704223942, -0.00105553202, 0.00470125768, 0.0232040174, -0.000477119756, -0.010656612, -0.0195510574, -0.0114283646, 0.0191523191, 0.00516430894, 0.00329120178, 0.00237474591, 0.0117949471, 0.00834135525, 0.00310469512, 0.0109653138, 0.0188822057, -0.00869507529, 0.00127178337, 0.00893946365, -0.00664350064, 0.0131712388, 0.0056370073, -0.0330567211, 0.0128818313, -0.00185220537, -0.0153964572, -0.0234484058, 0.00192777289, 0.0175702255, 0.0214032624, -0.0229210425, 0.0237828325, -0.00311916531, 0.0111518204, -0.0061289994, 0.00252105738, -0.0168627873, -0.000104709099, -0.00224933634, -0.00474949181, -9.37055956e-05, 0.0172100756, -0.00620295899, 0.0114155021, -0.0107144937, -0.0239114575, 0.000366180378, -0.00245996029, 0.00822559278, -0.0219177641, 0.00297124614, -0.0216090642, -0.0230496675, 0.0166312605, -0.0080583794, -0.00641519064, 0.000592078664, -0.0108173946, -0.0208244491, 0.0045565539, 0.020322809, -0.0155122206, -0.0282204077, -0.016489774, 0.0208373107, 0.00491348933, 0.010225717, -0.00782685447, -0.0172872506, 0.0167341623, 0.010148542, -0.000201580086, 6.9940048e-05, 0.0303298645, 0.0102771679, 0.00592641439, 0.00173322693, -0.00710012065, 0.00423177471, 0.000380449754, 0.0171457622, 0.0344973244, -0.00747956568, 0.00741525274, -0.00807767361, -0.00882370118, -0.0131841013, -0.0229081791, 0.00116888306, -0.0144832171, -0.0162839722, 0.0233583692, -0.0158980973, 0.0100649353, 0.018444879, 0.0273457542, 0.0180847272, 0.0212746374, 0.0210559741, -0.0272428542, -0.00320277177, -1.04947758e-05, 0.0304584894, -0.00273811282, -0.0269856043, 0.027628731, 0.00355649157, -0.00490062684, 0.00472698268, -0.0127596371, -0.0153964572, -0.0118399663, 0.0136471521, -0.00903593283, 0.0112225637, 0.00077336008, 0.00744740944, -0.00609041145, -0.00134654692, -0.027628731, -0.0245803092, -0.00346645387, -0.0233583692, -0.0236670692, 0.00968549121, -0.036735408, 0.0279631577, -0.00773038529, 0.000777781592, 0.0100327795, 0.0309472661, -0.00988486, 0.0210431125, -0.0153192822, -0.00610649, -0.0150491688, -0.0118528288, 0.00668208813, 0.00329924095, 0.00527364062, -0.0110553512, -0.0107144937, 0.00541512854, 0.00675926358, -0.019306669, 0.0114605213, 0.00359186367, -0.00138915412, 0.0182776656, 0.00251944945, -0.0262009893, -0.00621260563, 0.00141407526, 0.00319794845, -0.0144060422, 0.0250690859, 0.00708725816, 1.94319782e-05, 0.00732521527, -0.0133899013, 9.60294e-06, -0.00551802851, 0.00538618769, 0.0147276055, -0.00015947537, 0.0080583794, 0.0400282182, 0.0267283525, -0.019229494, 0.00493278308, 0.00238600071, -0.0180461407, 0.0071515711, 0.00344072888, -0.013750053, -0.00964690279, -0.000626244815, 0.0100842295, 0.0020435357, -0.00833492447, 0.00321885012, -0.00898448285, -0.0213003624, -0.0244774092, -0.0160910338, 0.00270113302, -0.0121165104, -0.000933337898, 0.0118399663, -0.0324135944, -0.00239403988, 0.012913988, -0.0157951955, 0.0122258421, -0.0177245773, -0.0115376962, -0.00886228867, 0.00692647649, -0.00960188452, 0.0308700912, -0.00337641616, 0.00233133486, 0.0185349174, -0.0278602559, -0.0189207923, 0.0234741308, -0.0164254606, 0.0139944414, -0.00042607155, -0.0131133571, -0.00937679, -0.0169399623, -0.000299054, -0.00220914092, -0.0150234438, 0.0195896439, -0.00660491316, 0.00681071356, 0.0117177721, 0.00673997, 0.0100070545, -0.0159624089, 0.00173483475, -0.00223647384, -0.00105794368, -0.000841692323, -7.39219104e-06, 0.0029278351, -0.000419238349, 0.00991701614, 0.00848927442, 0.00746670319, -0.00144140818, 0.00618044939, 0.0117177721, -0.0105858687, 0.00178789278, -0.011087507, 0.00841853116, -0.0186249539, 0.0374557115, 0.0159238223, -0.042086225, 0.0148562314, 0.0143031422, -0.00619652774, -0.0101421112, 0.00276062218, -0.00942824, -0.00241494155, 0.0253649242, 0.00246799947, -0.014611843, -0.00465945434, -0.00393272098, -0.0152292447, -0.0118335346, 0.00284744427, -0.0111518204, -0.00614829315, -0.000130233195, 0.0297896378, 0.00544728478, 0.001090904, -0.0172358, -0.00790402945, -0.017454464, -0.0137629155, 0.00947969, 0.00291336467, 0.00756960362, -0.0146504305, 0.00579778897, -0.0115827154, -0.010502262, 0.0224708524, 0.0126245804, -0.0197954457, 0.0217376892, 0.00652773771, 0.00593606103, 0.0298668128, 0.0134542147, -0.00728662778, -0.0115762837, -0.00597464852, 0.00863719359, 0.0110939387, 0.00957615953, 0.0119428663, -0.00563379144, -0.0122708613, 0.0178403389, -0.0176602639, 0.00362080429, -0.00996203534, -0.0253520608, -0.00437647849, -0.0125924246, 0.00141085964, 0.00114556972, 0.0166055355, 0.00610649, -0.00904236361, -0.00194706663, -0.0134799397, -0.019229494, -0.00788473524, 0.00216090633, -0.0171200372, -0.00128223421, -0.0364524312, 0.0143288672, -0.0242458843, 0.0023200803, 0.00816771109, 0.0233069174, -0.00378158619, 0.019332394, 0.0045790635, -0.00278634718, 0.051295802, -0.0046144356, 0.0286834594, -0.0236156192, -0.0247217976, -6.82066184e-06, -0.0166569855, -0.00807124283, 0.00144783943, 0.0114347963, 0.0160781723, -0.0107916687, 0.00825131778, -0.00577527937, -0.017505914, -0.0110231945, -0.0132998638, -0.00281850365, 0.00150491693, 0.00819343608, -0.00636695605, 0.00508391811, 0.0141230663, -0.00323171262, 0.0273457542, 0.00479451101, 0.00911953952, -0.0065406, 0.0152421072, -0.0237956941, 0.00178950059, -0.0217376892, 0.0176474024, -0.00379766431, -0.0180590022, 0.0115055395, 0.0196410958, -0.0097240787, 0.0130233197, -0.010476537, -0.0240400825, 0.00228953175, -0.00329924095, -0.00155636703, -0.0219306275, 0.000945396547, 0.00290854136, -0.00164479704, 0.00015053188, 0.00629299646, -0.0239114575, -0.00853429362, -0.0161553472, -0.0148948189, 0.00134413515, -0.0239371825, 0.0185349174, 0.0261238143, -0.00173001131, 0.0038105268, 0.00364974514, 0.029609561, 0.00726090232, -0.0107852379, -0.0168885123, -0.00649236608, -0.0250948109, 0.00181683339, 0.004337891, -0.0139558529, -0.00290693343, 0.00653095357, 0.00853429362, -0.0372499079, -0.00328798615, 0.0140201664, -0.0104701053, 0.00618366478, 0.00549873477, 0.0278602559, -0.0053379531, -0.000502442883, 0.017377289, -0.0138143655, 0.0216219258, 0.0061547244, 0.0141873788, -0.0190236941, -0.0337512977, -0.0170685872, -0.00883013196, 0.0155893955, -0.029532386, -0.00840566866, 0.0237056576, -0.00590712065, 0.0161939356, 0.00627691858, 0.0158980973, 0.00693933899, -0.00513858395, -0.018290529, 0.00736380275, 0.0174673256, 0.0255964492, 0.0227152407, -0.00120907859, -0.00749885943, -0.0341886245, -0.00434753764, 0.00116888306, -0.0114862463, 0.00474627642, -0.0278345309, 0.00946682785, 0.0159495473, -0.0106952, -0.00453726, 0.0155636705, 0.0031690076, 0.00270756427, 0.0203356724, -0.000266897667, 0.00336033804, 0.00438290974, -0.0117756529, -0.00833492447, -0.000379645848, 0.00168177683, 0.000169725201, 0.0106823379, 0.00650844397, -0.0163225606, -0.0131326513, 0.00969835371, -0.00867578201, 0.0248632859, -0.010958882, 0.0123673296, -0.00410314929, -0.0145603931, -0.00393272098, -0.0356035046, 0.0159366839, -0.00494886143, -0.027577281, -0.0035693543, 0.0160395838, 0.0106373187, -0.0139558529, -0.0118592596, -0.0236413442, -0.00119139254, -0.0217248257, -0.0176216774, -0.0040742089, 0.00218341569, -0.0157951955, -0.00607111771, 0.022097839, -0.00472698268, -0.0132612763, 0.0143803172, -0.017403014, 0.00767893484, -0.0124702305, 0.00161666016, -0.00906165782, 0.00347610074, 0.0105922995, 0.00651809108, 0.00883013196, 0.00178789278, 0.0514244251, 0.00529293437, 0.00570775103, 0.00174287381, -0.0360151045, -0.0097369412, -0.00818057358, -0.00111904077, 0.0129911629, -0.0114798145, -0.0267798025, -0.00455976976, -0.00516752433, 0.0118528288, -0.0228695925, -0.00916455779, 0.0104122246, -0.0172872506, 0.004591926, 0.00593284564, 0.00190044, 0.0171329, 0.033262521, 0.0154864956, 0.0109074321, 0.0107595129, -0.000146713326, -0.0091516953, -0.00310791074, 0.00486203935, 0.00906165782, 0.0111068012, 0.00184738194, -0.00124364661, -0.00610005856, 0.00601002062, 0.0205800608, 0.00576241687, 0.00962760951, 0.00568845728, -0.0104636746, -0.0218405891, -0.0178789273, -0.00743454695, 0.0241944324, -0.00516109308, 0.0238085575, 0.0259308759, 0.00190687121, -0.00454369141, -0.0048556081, -0.00933177117, 0.00594249228, -0.00176859892, -0.0158980973, -0.00747956568, 0.00684930151, 0.00437326264, 0.00942180865, -0.00380088, -0.0162711106, -0.0183805656, -0.018239079, -0.00801336113, 0.00214965153, 0.014611843, -0.0119685913, -0.0151392072, 0.0253777876, 0.00142211432, 0.0122515671, -0.0179432407, -0.00749242818, -0.0230239425, -0.00143738859, -0.0592191219, -0.0092545962, 0.017325839, 0.00759532861, 0.00452118181, -0.0143674547, 0.00040436603, -0.00874652527, -0.0153835947, 0.00291979616, -0.00850213785, 0.0313074179, 0.0102643054, -0.00498423353, 0.019409569, -0.00933820195, -0.0232940558, -0.0111132329, 0.00033924944, -0.00713870861, -0.0245417226, 0.00451153517, -0.00947325863, -0.00881083868, -0.0213646758, -0.016566949, 0.00737666525, -0.00915812701, 0.00673353858, 0.0101935612, -0.00980768539, 0.00771109154, -0.00287477719, -0.0127339121, -0.0143160047, 0.00845068693, 0.0121100796, -0.00350182597, -0.000865809561, -0.0104315178, 0.00208533881, -0.00587818, -0.0282204077, 0.0101356795, 0.000721909921, 0.00510642724, 0.010097092, 0.000922083156, -0.0122837238, -0.00250658696, -0.0206958223, 0.0058428077, 0.00970478449, 0.0124959555, -0.0119943162, 0.0128046563, -0.0153064197, 0.010502262, -0.00506462436, -0.00106357108, 0.014766193, 0.0122644296, 0.00632836856, -0.0166698489, 0.0130554754, -0.00799406692, -0.0210431125, 0.0112418579, -0.00510321185, 0.0185992289, -0.00285869907, 0.00408385554, 0.00985913537, -0.0227023792, 0.0107080629, -0.0107144937, 0.00409671804, -0.00881083868, 0.00190847903, 0.0204128474, 0.0137114655, -0.019358119, -0.0205286108, 0.0142388288, 0.00498744892, -0.0195767824, 0.0103800679, 0.00163675786, 0.0200912841, -0.0144960796, -0.014611843, -0.00408064, 0.000783810916, 0.0111068012, 0.00711298315, -0.0289149843, 0.0272428542, -0.0130619071, 0.0125281112, -0.016489774, -0.0208501741, 0.0137886405, -0.0161682107, 0.0127982246, -0.00154189672, -0.0025596451, -0.0177760273, 0.00191491027, -0.0334940478, -0.00202584965, -0.0153707322, 0.00424142182, -0.00744740944, -0.00581065146, -0.000118978474, -0.0128689688, 0.00574633852, -0.027731631, 0.0278088059, 0.0142774172, -0.000492394, 0.0143417297, -0.00392950512, 0.0386390649, -0.0162325222, 0.0217891391, 0.00691361399, -0.0178789273, -0.00177342235, -0.00875938777, 0.0100777978, -0.0190622807, -0.00682357606, 0.00217859237, -0.000354925636, 0.0040774243, 0.00445043808, 0.00289728655, 0.0282718576, -0.0134928022, 0.00137870328, -0.0115827154, 0.00541834394, -0.00192134152, -0.0139429905, 0.0201170091, -0.0142774172, 0.00152340683, 0.0194738824, 0.00262235, -0.0196025074, 0.0127725, -0.00881083868, -0.00800049864, -0.00739595899, -0.0334683247, -0.00399060221, -0.0272171292, -0.0124637987, -0.00280564092, -0.00483952975, -0.00268505467, -0.000866613467, -0.0102900304, -0.0203356724, -0.0050614085, -0.0199112091, -0.0258665625, -0.00284744427, -0.00294712884, -0.0213775374, 0.0120329037, 0.0312302411, -0.034960378, -0.00516752433, 0.0116470279, 0.00948612113, 0.000342264102, -0.0122129796, 0.00968549121, -0.0161810722, -0.00123882317, 0.00800692942, -0.00307897, -0.0145732556, 0.00645377813, -0.0246060342, -0.0103865, 0.0226637907, -0.0334940478, 0.0127146188, -0.00946682785, -0.00371727347, -0.0145346671, 0.0045565539, -0.00643126899, -0.00319473282, 0.0199626591, 0.0031802624, -0.004820236, 0.00127419515, 0.0152806947, -0.00630907482, 0.0162968356, -0.0219177641, 0.00122515671, 0.0181104522, 0.000828829769, 0.00686859526, -0.0107273562, 0.00726090232, 6.62219682e-05, -0.0190622807, -0.00533473771, 0.00795547944, 0.00329280971, 0.00538297184, 0.0159752723, -0.00135297817, -0.00219627819, 0.00524791516, 0.00389734888, -0.0227281041, 0.013801503, -0.00490705809, 0.000356332486, -0.00217216113, 0.0154479081, -0.0186120924, -0.0020194184, -0.00365296076, -0.00209659361, 0.0227666926, -0.0334940478, -0.00266576093, -0.00489741098, 0.0139944414, 0.0225608908, -0.0082320245, -0.00231043343, -0.0244259592, -0.0212489124, -0.00830276776, 0.00422855932, 0.00683643855, 0.0178917907, 0.0141359288, -0.0111518204, 0.0213518124, -0.00455976976, 0.0160395838, -0.0151906572, 0.0071065519, -0.0113576204, -0.0211074241, -0.00291175698, 0.00812269282, -0.000154752401, 0.00624476187, 0.0402340181, -0.000606951, -0.00193902757, -0.0238214191, -0.00937035866, 0.00926102698, 0.0163225606, 0.0046047885, -0.0207472742, 0.0061547244, -0.0367096812, 0.0178660657, 0.00289246324, 0.000299455947, 0.0115441279, -0.00239082426, 0.0160395838, -0.00929961447, 0.0058202981, 0.0160910338, 0.0111196637, -0.0121743921, 0.0119557288, 0.00248407759, 0.0265740026, -0.00135056651, -0.00361437304, -0.031487491, -0.00728662778, -0.00672067609, 0.0159624089, -0.00189561653, -0.00910667703, -0.00111341337, 0.0108109629, -0.00337963179, -0.0136728771, 0.0250819493, 0.00190044, 0.0171200372, -0.00958902203, 0.0215318874, 0.00375907659, 0.00906165782, -0.0149076814, -0.00238117739, 0.0117563596, 0.0195253324, -0.00402597431, 0.00283297384, 0.00119782379, 0.00488133309, 0.0314103179, 0.00602609897, 0.0361694545, 0.0053733252, 8.52645535e-05, -0.00625119312, -0.0119042788, 0.00184898975, -0.00552767562, -0.0328509212, 0.00308379345, -0.00507748686, -0.0131969638, -0.00957615953, -0.0187921673, 0.0403369181, 0.00382017368, 0.00351790409, 0.0271399543, -0.00156922964, -0.0128496755, -0.0173901506, 0.00270434865, -0.0155250831, -0.0153450072, -0.0172743872, -0.0163225606, -0.00500352727, 0.000774967892, -0.0181747656, -0.00504533062, -0.00642805314, 0.0219177641, -0.00970478449, 0.0225223042, -0.00423499057, 0.0170814507, 0.0194738824, -0.00157968036, 0.0180975907, 0.00651487522, -0.00589747354, -0.00690718275, -0.00236670696, 0.0124702305, -0.0239500459, 0.00386519264, -0.00423820596, 0.0272685792, 0.0219434891, 0.0152549697, -0.0188436173, -0.0270627793, 0.0267283525, 0.0119685913, -0.0192938056, -0.000519726891, 0.0092545962, -0.0111196637, 0.000992827117, -0.00120345119, 0.00095022, -0.00238117739, -0.0217119642, -0.0219049025, -0.0144060422, 0.0326451212, -0.00253231218, -0.00112064858, 0.0180718657, -0.00747313444, -0.00451475056, -0.0143545922, 0.00655667856, -0.0114605213, 0.0204900224, 0.0122837238, -0.0154736331, 0.00946682785, -0.00679785106, 0.0331596211, -0.0188950673, 0.00842496194, 0.0107916687, -0.0144446297, 0.00989772286, -0.0206186473, 0.00765964109, 0.00207890756, 0.00980125368, -0.0324135944, 0.0033539068, 0.0121036479, -0.0111389579, -0.0118142413, -0.00384268304, -0.00733164651, -0.00595213939, -0.00653738482, -0.0137886405, 0.0139944414, 0.00651487522, 0.00344716012, -0.013930128, -0.0260595, 0.0139944414, 0.020399984, 0.000248608732, -0.00560485059, 0.0112933079, 0.0235770307, 0.0110939387, -0.00312398886, 0.00546979392, -0.000755272107, -0.00971764699, 0.020374259, 0.0054086973, -0.00799406692, -0.00587174855, -0.0137886405, -0.0132741388, -0.00564987, 0.0149205439, 0.0238600075, 0.00655667856, -0.00780756027, 0.00449867267, -0.013775778, 0.010071367, -0.00825131778, -0.00440541934, 0.031538941, -0.0028008176, -0.0106373187, -0.0207086857, 0.0063701719, 0.0147018805, -0.00619974313, -0.0292751361, -0.00121309806, 0.0163868722, 0.00897805113, 0.000759693619, 0.00827061199, 0.0110682137, 0.00290211, -0.00354041345, -0.00350182597, -0.00145266287, -0.0203871224, 0.0167341623]
|
21 Mar, 2024
|
White Label Local SEO Services : A Complete Guide
21 Mar, 2024
Local SEO boosts a business online to attract nearby customers. This includes optimizing Google listings, building local citations, and earning positive reviews. For small companies, local SEO is vital. It helps them stand out locally, appear in nearby searches, and bring people to their physical locations.
White Label SEO is a service where agencies provide SEO. They offer expertise under their branding. Companies can re-brand and sell those services as their own. Essentially, one firm offers the SEO skills, while another re-sells those services to clients.
Benefits of offering White Label Local SEO servicesWhen it comes to offering White Label Local SEO services, marketing agencies stand to benefit in several ways. Firstly, it allows them to expand their service offerings without having to invest in hiring additional staff or acquiring new skills. This can lead to increased revenue streams as they can upsell SEO services to their existing client base. Additionally, offering White Label Local SEO services can help agencies attract new clients who are specifically looking for local marketing solutions. Overall, White Label Local SEO services can be a win-win for both marketing agencies and small businesses.
Table of Content
What are White Label Local SEO Services?Key Components of White Label Local SEO ServicesBenefits of Offering White Label Local SEO ServicesFinding the Right White Label Local SEO ProviderGetting Started with White-Label Local SEOConclusionFAQs : White Label Local SEO ServicesWhat are White Label Local SEO Services?White Label SEO describes a partnership between companies. One firm supplies SEO services under its brand. The other resells those as its own offerings. The SEO provider works behind-the-scenes, lending expertise the reseller markets and delivers to clients branded as theirs.
For Local SEO, White Label centers on boosting a business's online visibility to draw nearby customers. It optimizes Google listings, manages local citations, garners positive reviews, and employs tactics to enhance rank in localized search results.
How does White Label Local SEO work?Here's how White Label Local SEO typically works:
Partnering with a provider: The marketing agency or reseller partners with an SEO provider that specializes in Local SEO services. This provider has the expertise and resources to execute effective Local SEO strategies.Reselling services under your brand: The reseller then markets and sells these Local SEO services to their clients under their own brand name. The SEO provider remains behind the scenes, working on behalf of the reseller to deliver the services.Difference between White Label and Traditional SEO OutsourcingOne key difference between White Label SEO and traditional SEO outsourcing is branding. In traditional outsourcing, the client knows that the services are being provided by a third-party vendor, and the vendor's brand may be visible in communications and reports. However, with White Label SEO, the services are presented as if they are being provided directly by the reseller. The SEO provider's brand is typically not visible to the end client, and all communication and reporting are done under the reseller's brand name.
Key Components of White Label Local SEO ServicesThe core services offered by White Label Local SEO providers typically include:
Google My Business (GMB) Optimization: This involves optimizing a business's GMB profile to ensure accurate and up-to-date information, such as business hours, contact details, and business category. It also includes optimizing the business description, adding photos, and managing customer reviews.Local Keyword Research: Conducting keyword research to identify relevant search terms that potential customers in the local area are using to find products or services. This helps optimize website content and local listings for better visibility in local search results.Local Citation Management: Ensuring that the business's name, address, and phone number (NAP) are consistently listed across various online directories, review sites, and other platforms. This helps improve local search rankings and establishes credibility and trustworthiness with search engines.On-Page SEO: Website pages get tweaked for local searches. Pertinent keywords are incorporated, optimizing meta tags, headers, URLs. Site structure and navigation stay user-friendly, search engine-friendly.Local Link Building: Quality backlinks from local sites, directories, other relevant sources boost the site's authority, presence in local results.Local Content Creation: Tailored content creation for the local audience - blog posts, articles, landing pages. Attracts local traffic, establishes business as a local market authority.Review Management: Online reviews across Google, Yelp, Facebook, and more get watched closely. Any bad comments are quickly addressed. This helps maintain a good online reputation.Local SEO Reporting and Analysis: Reports analyze how Local SEO is doing. They cover rankings, website visitors, leads from those visitors, and sales from leads. Progress gets tracked, showing what needs improvement.Benefits of Offering White Label Local SEO ServicesHere's a deeper dive into the benefits you mentioned:
1. Expanding Your Reach and Attracting New ClientsBroadened Service Portfolio: Adding White Label Local SEO to your offerings positions you as a one-stop shop for digital marketing, making you more attractive to potential clients who want to focus on local promotion.Targeting a Wider Audience: Local businesses are a vast and ever-growing market. By offering local SEO, you tap into this potential and attract a new client segment.2. Increase revenue with Minimal investment in Staff or TrainingMinimal Investment: White Label Local SEO lets you leverage the expertise of a partner without needing to hire additional staff or invest heavily in training your existing team.Faster ROI: You can start offering high-quality SEO services immediately, generating new revenue streams quickly without significant upfront costs.3. Cater to the growing demand for local SEO, especially among small businessesGrowing Demand: More and more consumers are searching online for local businesses. This creates a surge in demand for Local SEO services, especially among smaller businesses.Helping Local Businesses Thrive: By providing White Label Local SEO, you empower local businesses to improve their online presence, attract more local customers, and ultimately grow.4. Scale your business efficiently by outsourcing SEO tasksFocus on Your Strengths: You can outsource time-consuming SEO tasks to your White Label partner, freeing up your team to focus on core competencies like client acquisition, strategy development, and account management.Increased Capacity: By offloading SEO tasks, your agency can take on more clients and projects, allowing you to scale your business efficiently.Finding the Right White Label Local SEO ProviderOffering White Label Local SEO services can bring several benefits to marketing agencies and resellers:
Reputation and Track Record: It's smart to find a White Label service with a great name. See if they're known for top-notch Local SEO work. Check reviews, success stories, and online ratings to see how pleased clients are.Expertise and Experience: Pick a provider focused on Local SEO who has worked with businesses like yours before. Find pros who really know the ins and outs of getting firms ranked locally. Make sure they keep up with new SEO tactics too.Communication and Support: Consider the provider's communication channels and level of support. Look for providers that offer responsive communication, timely updates, and ongoing support to address any questions, concerns, or issues that may arise.Transparency and Reporting: Choose a provider that offers transparent reporting and regular performance updates on the status of your clients' Local SEO campaigns. Look for providers that provide detailed insights and analytics to track progress and demonstrate the value of their services.Pricing and Value: Compare pricing structures and packages offered by different providers to ensure that you get the best value for your investment. Avoid providers that offer overly cheap or unrealistic pricing, as this may indicate a lack of quality or expertise.Getting Started with White-Label Local SEOStep 1: Research and Selection: Research and choose a reputable White Label Local SEO provider that aligns with your agency's needs. Establish a partnership agreement outlining terms and expectations.Step 2: Onboarding and Training: Coordinate onboarding with the provider and provide necessary training. Familiarize the provider's team with your agency's processes and client expectations.Step 3: Client Discovery and Strategy: Gather client information and collaborate with the provider to develop tailored Local SEO strategies.Step 4: Implementation and Execution: Work closely with the provider to execute Local SEO strategies and monitor progress.Step 5: Ongoing Communication, Support, and Analysis: Maintain regular communication, address issues promptly, and analyze performance reports to optimize strategies.Step 6: Client Satisfaction and Retention: Monitor client satisfaction regularly. Find chances to upsell or expand services. This strengthens your relationship with clients. Keep observing how content they are. Look for more services you could provide.Conclusion In conclusion, starting White Label Local SEO services requires in-depth research and picking a trustworthy provider. After that, proper onboarding and training are crucial. Working together on client strategies, executing campaigns, and maintaining clear communication and analysis are vital for success. By focusing on keeping clients happy and retaining them, agencies can build solid partnerships. This will help drive results for clients while also growing their own businesses.
FAQs : White Label Local SEO ServicesQ 1: Can White Label Local SEO services be customized to suit specific business needs?Yes, White Label Local SEO services can be customized to meet the unique needs and objectives of each client. Providers work closely with agencies to develop tailored strategies and implement targeted tactics that align with the client's goals and target audience.
Q 2: How does White Label Local SEO differ from traditional SEO outsourcing?White Label Local SEO involves reselling services under your own brand name, while traditional SEO outsourcing typically involves hiring a third-party vendor. With White Label SEO, the provider's brand is not visible to the end client.
Q 3: How can White Label Local SEO help marketing agencies differentiate themselves in the market?Offering White Label Local SEO allows agencies to provide comprehensive digital marketing solutions, attracting new clients and positioning themselves as trusted partners for all their clients' needs.
Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?/How to design datalists for mobiles using jQuery EasyUI Mobile ?/How to design menu using jQuery EasyUI Mobile ?/EasyUI jQuery menu widget/EasyUI jQuery datebox widget/How to make use of multi-mode jtsage-datebox plugin?/Step by step guide to make your first WordPress Plugin/Explain MonsterInsight Plugin in WordPress/How to Setup All In One SEO(AIOSEO) Plugin for WordPress?/WordPress SEO: Step-by-Step Guide, Benefits and Plugin/Difference Between Black Hat SEO and White Hat SEO/White Label Local SEO Services : A Complete Guide
|
https://www.geeksforgeeks.org/white-label-local-seo-services-a-complete-guide?ref=asr9
|
CSS
|
White Label Local SEO Services : A Complete Guide
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, WordPress SEO: Step-by-Step Guide, Benefits and Plugin, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, How to design menu using jQuery EasyUI Mobile ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, Step by step guide to make your first WordPress Plugin, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, EasyUI jQuery datebox widget, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, Explain MonsterInsight Plugin in WordPress, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, EasyUI jQuery menu widget, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, How to make use of multi-mode jtsage-datebox plugin?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to Setup All In One SEO(AIOSEO) Plugin for WordPress?, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, White Label Local SEO Services : A Complete Guide, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, How to design datalists for mobiles using jQuery EasyUI Mobile ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Difference Between Black Hat SEO and White Hat SEO, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0155058885, -0.0371284, -0.0174266081, 0.0150607433, 0.0214658882, -0.0176574234, 0.0205096491, 0.0125629846, -0.0185642, 0.0133955711, 0.0290828161, -0.013453275, 0.0191577282, -0.0524611771, -0.013313137, 0.000123007412, -0.0302039217, 0.00178985437, 0.00506558688, 0.00012828836, -0.0147804674, -0.0060300678, -0.0405576676, -0.0186136607, 0.0196853075, 0.0125382543, -0.0136840912, 0.0180036481, -0.0200315304, 0.0193555709, 0.0194544904, 0.0138572035, 0.0330891199, 0.0120766228, -0.0301214866, -0.00812389888, 0.0223726649, -0.0260822084, 0.00338804908, 0.062023554, 0.00254309759, 0.00376518583, -0.00160231639, -0.00567972241, 0.0172617398, -0.0114913397, -0.00766638853, -0.026345998, -0.00712644402, -0.0220923889, 0.0153327771, 0.00910074543, 0.0472843051, -0.0103702331, 0.0238564815, 0.0121837873, 0.0363040604, -0.0180036481, -0.0201964, 0.0308469087, -0.00707286177, -0.025983287, 0.00387647212, -0.0101723904, 0.00528403744, 0.0190423205, -0.0293136314, -0.00689562783, -0.038216535, -0.00501200464, -0.00745618111, 0.0298412107, 0.0395684578, -0.0263789706, 0.0160746854, 0.00622378848, 0.00697806198, -0.00558904465, -0.013750039, 0.0182674378, 0.0448112786, -0.0229497049, 0.0184158199, -0.0105433445, 0.0445474871, 0.00383525505, -0.0183004104, -0.0832916, 0.0221253615, 0.0190423205, -0.0366997421, -0.0320339613, 0.00511504756, -0.0530876778, -0.00343544874, 0.0315888189, -0.00508619519, -0.00312013761, -0.031374488, 0.0388760082, 0.0118870242, 0.0196853075, 0.003130442, -3.85122657e-05, 0.0104938848, 0.00457098102, -0.00871330407, -0.0097272452, 0.0428328551, -0.00305006863, 0.0408544317, -0.055989366, -0.0314569212, 0.0266592484, -0.0162065811, -0.00881222542, -0.0079672737, -0.0481416211, 0.0636392683, 0.0106669962, -0.0523292832, -0.00963656791, 0.00651230849, -0.0195534118, -0.026049234, 0.0430306979, -0.026560327, 0.0179541875, 0.0694426447, -0.0174760688, -0.00971900206, 0.0201634262, -0.0203282945, -0.0132966498, -0.0243346, 0.0180201344, 0.0356775597, -0.0123486556, -0.00178882398, -0.0224551, -0.0138489595, -0.0167176723, -0.00288726087, -0.00139520026, -0.00817748066, 0.0195204392, 0.0069368449, 0.0480097272, -0.0164538827, -0.00675136782, -0.00595587725, -0.00120972318, 0.00482652755, -0.0209877696, 0.0150112836, -0.029857697, -0.027846301, 0.0106999697, -0.0238070209, 0.0300390534, 0.0293466058, -0.0439539589, -0.00155285583, 0.0278627872, 0.0121755442, 0.0419425629, 0.00849073101, -0.0256865229, -0.0499881506, 0.0612981357, -0.00804146472, -0.0292806569, -0.0235267449, -0.0206745192, 0.00747678941, -0.0170803834, 0.0270384457, -0.0292971451, -0.0082186982, -0.0177233703, -0.0137582822, 0.0232299808, -0.0149865532, 0.0233289022, -0.00387647212, 0.0181190558, 0.041382011, 0.00616196264, 0.00656589074, 0.0112028196, 0.00128288358, -0.00120560138, 0.0493946224, 0.0259667989, -0.0074273292, 0.00361680426, -0.0132966498, 0.085401915, 0.0161818508, -0.00747678941, 0.00202994421, -0.0275330506, -0.00208043517, 0.0504497811, 0.03597432, -0.0289179478, 0.0175090414, 0.0340618454, 0.0162230674, 0.00717590423, -0.0512081757, 0.0241202712, -0.0206085704, 0.0136346305, 0.000932537834, 0.0258513913, -0.0218450855, -0.0041526272, -0.0397003517, 0.0143270791, -0.0263624843, 0.00652467366, 0.00586519949, -0.0102713117, -0.0239883773, 0.00195060123, 0.00587344263, -0.00301091233, 0.0433274582, 0.016338475, 0.00285016536, 0.0320669375, -0.0304677114, -0.0159098171, 0.0183828454, 0.0156542715, -0.0137747694, 0.0206250586, -0.0289179478, 0.00279040053, -0.0153575074, 0.00202994421, -0.0121837873, 0.0105186151, -0.029000381, -0.051241152, 0.018349871, 0.0573412888, 0.0126866363, 0.0314898975, -0.0137582822, 0.00881222542, -0.0245654173, 0.0115243131, -0.0338310301, 0.00254309759, 0.0152833164, 0.00452152034, 0.0504497811, -0.00849073101, 0.045404803, -0.0154811582, -0.0108236214, 0.0217956249, -0.0298741851, 0.0108978124, -0.00845775753, -0.0114501221, 0.0169649757, 0.00621142332, 0.0283244196, -0.0270714182, 0.00534998486, 0.0143518085, -0.038216535, -0.00172287656, -0.000523715338, -0.0206415448, 0.00403515808, 0.0319185555, 0.0266097877, -0.0530876778, 0.0555936806, 0.0280111693, -0.00926561374, -0.0144095132, -0.0237905346, -0.0181190558, -0.0538131, -0.0105351014, -0.0405906402, 0.026477892, 0.0212680455, 0.00366008212, 0.0641009, 0.00470699742, 0.0242027063, 0.0178717524, 0.0130163739, 0.031011777, 0.0323966742, -0.0175420158, 0.00947994273, 0.0229332186, -0.0141292363, 0.0533844419, -0.0232959297, -0.0230651125, 0.0210866891, -0.0170638971, 0.0404917188, 0.00201139646, 0.0159510337, -0.02187806, -0.0101559041, 0.0463610403, 0.01798716, 0.0137830125, -0.0261481553, -0.0334848054, 0.000972209324, 0.0239718892, -0.0661452711, 0.0313580036, 0.0151349343, -0.0330891199, -0.0224386118, 0.00893587619, 0.00661122939, -0.0199326091, -0.00732840784, -0.0245324429, 0.00624851882, 0.00620730175, 0.0257194974, -0.0367656909, -0.00576627813, 0.025191918, 0.0119941887, -0.00089904893, -0.00587344263, -0.0364689268, -0.00305006863, 0.0310282651, 0.0495924652, -0.0283079334, -0.0088451989, 0.0319680162, 0.0314734094, 0.0271538533, 0.00168062898, -0.00530876778, 0.000664111227, 0.0281430651, -0.00321905874, -0.0200480185, -0.0521644168, 0.028357394, -0.0112110628, 0.00517275138, 0.0246643387, -0.0303193294, -0.0442177504, 0.0103372596, -0.0122085176, 0.0290993024, 0.00505322171, 0.0154811582, 0.0437231436, -0.0304841977, -0.0201304518, 0.00251424569, 0.00548187969, 0.00139726116, -0.0507135727, 0.0180695951, 0.0457675159, -0.0231475476, -0.0306325797, 0.0219604932, 0.0597483702, 0.0286541581, 0.0181520302, 0.0749162808, 0.0121425698, 0.0106340228, 0.00374251651, -0.00528815947, 0.000380485755, -0.0103372596, -0.0352818742, 0.0226529408, -0.00670602918, -0.0211031772, -0.0410192981, 0.0018887755, -0.0131152943, 0.051241152, 0.0269395243, -0.0205920842, -0.00830113236, 0.0203612689, -0.0159098171, 0.0184982531, -0.0540439151, -0.0304182507, 0.0448772237, -0.00968602858, -0.0114830956, -0.003058312, 0.0137170646, -0.0257194974, -0.0543736555, 0.0307479873, 0.0105351014, 0.0316712521, -0.0179706737, 0.00355291762, 0.0132059725, 0.0114995828, 0.00987562723, 0.0140632885, 0.00539944554, 0.00440199068, 0.00517275138, 0.00970251486, 0.0023679249, 0.01914124, 0.0200315304, 0.0278298147, -0.00477706688, -0.0206250586, 0.00638453523, 0.00746442424, 0.0285387486, -0.0161571205, 0.0271703396, 0.0306985267, -0.0158603564, -0.00596412038, 0.00782713573, -0.0100157652, 0.0229497049, -0.0129174525, -0.0597153939, 0.0073036775, -0.0296598561, -0.0100487396, -0.00273681828, 0.00478531, -0.0533184968, -0.0140138287, -0.0693107471, 0.0452399366, 0.0223396905, -0.0169649757, -0.00553546241, 0.00173111993, 0.043393407, 0.00375694246, -0.0339959, -0.00239883759, 0.0173276868, -0.0129833994, -0.01014766, 0.00544066262, -0.0628808737, -0.0156048099, -0.0152091254, 0.000618772348, 0.000856286148, -0.0215153489, 0.0626500547, 0.00997454859, 0.0285882093, 0.0244994685, 0.0127525842, -0.0466907769, -0.0133296242, -0.0210866891, 0.00669366401, 0.0670355633, 0.0387111418, -0.00434016529, 0.0206085704, 0.00115820172, 0.0187950172, 0.0173936337, 0.0371613763, -0.0381835587, -0.045833461, 0.0163219888, -0.0182674378, -0.000373015151, 0.00592290331, -0.0300225671, 0.00841654, -0.0234278236, 0.00028723196, -0.013815986, 0.00158479915, 0.050383836, -0.031654764, 0.0260822084, -0.0328253321, 0.00484713586, -0.0240708105, 0.0105186151, 0.0230651125, -0.0143682957, 0.0146155991, 0.0431625918, -0.0128185311, -0.00775294425, -0.00268323603, 0.0399311669, -0.0306325797, -0.0152338557, 0.00994157512, -0.00470287586, 0.0100487396, 0.01043618, 0.0333034508, -0.00627737073, -0.00414438359, -0.0121013531, 0.0302039217, -0.00750976335, 0.0496913865, -0.0307809617, -0.00584046915, -0.0134697622, 0.0182839241, 0.0154316984, -0.0157779213, 0.00840005372, 0.0109637594, 0.00882046856, 0.000488938356, -0.0247138, -0.0402609035, 0.0214658882, -0.025768958, 0.000337465346, -0.0135686835, 0.016404422, 0.0521314405, -0.00611250242, 0.00405370584, 0.0170309227, 0.00379197719, -0.0137253087, 0.0222572573, 0.00376724685, 0.00247921119, 0.0112357931, -0.00864735618, -0.00343132718, -0.00440199068, -0.0205426235, -0.0181355421, -0.0123404125, 0.0210207421, 0.0150360139, 0.000499500253, -0.00282337423, 0.00382907246, -0.000887199, -0.041085247, 0.0113347145, 0.0038970809, 0.0246973112, 0.0125547415, -0.0404587463, 0.00907601509, 0.00559316622, 0.00738611165, -0.0150772305, 0.0379527435, 0.00980143622, 0.00303564244, 0.00491308328, 0.00269354018, 0.0386781655, 0.026840603, 0.0141292363, -0.0123156821, 0.00499139586, 0.0268076286, -0.008057951, 0.0180695951, 0.0127773145, -0.0237410739, -0.0191577282, 0.0277144071, 0.0337980576, 0.0370294787, -0.0307315011, 0.0225045588, 0.0100569827, 0.00559728779, -0.00231434242, 0.0128432615, 0.0241202712, -0.00813626405, -0.0278627872, 0.00852370542, 0.0125629846, 0.0325285681, 0.00970251486, -0.010864839, 0.00700279232, 0.0334023722, -0.0242686532, 0.0206415448, -0.0179377012, 0.0141704539, 0.00312219863, -0.00889466, -0.0205920842, -0.00184652791, 0.00617432781, 0.0102465814, -0.00896060653, 0.00683380198, 0.0324296467, 0.0108318646, 0.000768184487, -0.0205426235, -0.0321164, -0.0186960958, -0.0251259692, -0.00788484, -0.00482240552, -0.00511916913, -0.0229661912, -0.0217131898, -0.0112852538, -0.0155223757, -0.0235432312, 0.00539532397, 0.00762517145, 0.0088451989, 0.189664796, -0.00782713573, -0.013164755, 0.00923264, 0.0318361223, 0.0211526379, 0.0123651428, 0.003849681, -0.0169320013, 0.0094717, 0.0247302856, -0.0167836212, -0.0186631214, -0.00864735618, -0.0344245583, -0.00191453623, 0.0131894853, 0.0206085704, -0.000716147828, 0.0239883773, 0.0214658882, -0.0107082138, -0.00793842133, 0.0116974246, 0.0149865532, 0.0293795783, 0.00834235, 0.0171463303, -0.0419755392, 0.00382288988, 0.0165280737, -0.018349871, 0.000935113931, 0.0112028196, -0.00202170084, -0.00690387143, -0.0138407163, -0.0451410152, 0.00368893426, 0.015110204, -0.00241532456, -0.00844127, -0.00979319308, -0.0222902298, 0.0200809911, -0.0250105616, 0.000610013725, 0.0253897589, -0.011944728, 0.0424041972, -0.0210207421, 0.000208790589, -0.00775294425, 0.0148051977, -0.038645193, -0.00464105, -0.00237822905, -0.0229826793, -0.0254392195, 0.00184343674, 0.00777767459, 0.0112357931, 0.0272362884, 0.0028398612, -0.0290333554, 0.0136099, -0.0105268583, 0.0412171409, -0.00756746717, 0.0233618766, 0.0266097877, 0.0239224285, 0.0241037849, 0.00124372728, 0.0110956542, -0.0307809617, 0.0128762349, 0.00868857373, -0.0233453885, 0.014318835, -0.0206415448, -0.0228672698, 0.0121425698, -0.026345998, 0.0303852782, -0.014895875, -0.00520160329, 0.0110049769, -0.0289014596, 0.0100487396, -0.00751388492, 0.0315888189, -0.0391068235, 0.0205426235, -0.00089904893, 0.00205776584, -0.0069368449, 0.0234278236, -0.0272362884, 0.014607355, 0.00258637569, 0.0112440363, 0.0153739937, 0.00696157524, -0.0074479375, -0.00146423897, 0.00132925285, -0.00351376133, -0.037359219, 0.0150689874, -0.0338640027, -0.00119014503, -0.01683308, -0.00426597428, -0.00455861585, 0.00553958397, 0.000555916224, 0.00985914, 0.0283409078, -0.0172782261, -0.000232232836, 0.0163714495, -0.0105186151, -0.0337980576, 1.30011103e-05, 0.0358424261, -0.0302039217, 0.0305171721, 0.00221129972, 0.0126371756, -0.00762929302, -0.00375694246, 0.013461519, -0.00506146485, -0.0324791074, 0.00120869267, -0.00932331756, -0.00569620915, 0.0112028196, 0.00123033172, -0.00863911305, 0.00285428716, -0.00729543436, 0.035479717, 0.00421239203, -0.00332622346, 0.00999927893, 0.00390944583, 0.0380186923, -0.0257359836, -0.0100899562, 0.00330561469, 0.00577452173, -0.0163137447, -0.00849897508, 0.000457252667, -0.0145249208, 0.0243346, -0.0201139655, -0.0170638971, 0.00299236458, -0.0368316397, 0.000878440333, -0.00792605616, -0.0124970376, -0.00315311132, 0.00701103592, -0.00755098043, 0.0198336896, -0.0328583047, 0.0100075221, -0.0101394169, -0.0167424027, 0.0218121111, -0.00249775872, -0.0147062764, 0.01914124, -0.01007347, -0.0109555162, -0.00114789745, -0.00448854687, -0.0456356183, 0.0501200445, -0.00272857491, -0.00312425941, 0.0169979502, 0.0132554332, 0.00445145136, -0.00743969437, -0.0022957949, 0.0344575308, -0.0399971157, 0.00427833945, 0.0184487924, 0.00648345659, 0.0213834532, 0.0173936337, -0.0086556, 9.76975061e-05, 0.000277700485, -0.0190588068, 0.0115407994, 0.00138901768, -0.0202953201, -0.0184158199, 0.0297587775, 0.0185477138, 0.00031325029, 0.0138489595, -0.0111286286, 0.0215648096, 0.00242768973, 0.0102136079, -0.00303770346, 0.0283079334, 0.00694096694, 0.0138242291, -0.00565087, 0.0129586691, -0.00597648555, -0.00109122379, 0.0457345396, -0.0186136607, -0.0103455028, -0.0212845318, -0.0175090414, -0.0183004104, -0.0102465814, -0.0142034274, -0.00890290271, 0.0150112836, -0.0172452517, -0.00583634712, 0.0233124159, 0.0204107296, 0.0309293438, -0.0461631976, 0.0207899269, -0.00375282089, -0.0224386118, -0.0217296779, -0.0276154857, 0.00569208711, -0.0277968403, -0.00226694276, 0.0159840081, -0.0116974246, -0.0528568625, -0.00105928059, -0.00368275167, -0.0255876016, 0.0140797757, 0.0316053033, -0.028274959, 0.00488835294, -0.00676373299, 0.0306325797, 0.00542829745, 0.0406236164, -0.00973548926, -0.0166517254, 0.0144507298, -0.00913371891, 0.0050161262, -0.014755737, -0.0041526272, 0.0106587531, -0.00579100847, -0.0223726649, -0.032611, -0.0217626505, 0.00582398241, 0.0162313115, -0.0406895615, -0.00515214261, 0.00694921, -0.00761692785, 0.0198336896, -0.00617432781, -0.0251259692, 0.0172452517, -0.0310942121, 0.0197347682, 0.0148793887, 0.0215318352, -0.0330726355, -0.00925737, -0.00640102196, 0.0293301176, 0.0212020986, -0.00172390696, -0.00199903129, 0.00179603696, -0.0129339388, 0.0336331874, -0.0450091176, 0.00754685886, 0.0259173382, 0.00110564986, -0.040953353, -0.0219440069, -0.0143600525, -0.0220759, -0.00272857491, 0.00593939, 0.0156295411, -0.0100899562, -0.0162148234, 0.000627015776, 0.00109534559, -0.0153657505, 0.0033427102, -0.0442837, -0.0273681823, -0.00310777244, -0.00630210107, 0.00834235, -0.00742320716, -0.0130575905, -0.000425567, 0.0108565949, 0.0164621267, 0.0476799905, -0.0297752637, -0.00242150715, 0.00507795205, 0.0131565118, 0.00480179721, 0.0088287117, 0.00701103592, 0.0061454759, 0.0167506468, -0.00737374695, -0.0430306979, -0.0442837, -0.0218286, 0.00133852672, -0.0209053345, -0.0127278538, -0.0174760688, 0.00290786941, 0.0374581404, -0.0537141785, -0.0141209932, -0.0199326091, -0.0172947124, -0.00806207303, -0.0014879388, 0.002320525, -0.0504497811, -0.0324131623, -0.0188115034, 0.000756334572, 0.0040289755, 0.012595959, 0.0229826793, -0.0117633725, -0.030006079, -0.028274959, -0.00194647955, -0.00893587619, 0.0355126895, 0.0195039511, -0.00372602977, -0.00308098132, 0.00575391296, -0.0271043926, -0.00494193519, -0.0141951842, -0.00777767459, -0.0143847829, -0.00803322066, 0.00187022786, 0.0128515046, -0.0277144071, -0.0087380344, -0.058000762, 0.00602594623, -0.0156707577, -0.0207569525, 0.0106999697, 0.0080291, 0.013461519, -0.000766123645, -0.00606716331, -0.00424948754, 0.00180428044, -0.00137356122, -0.0024318113, -0.00893587619, -0.0141622098, 0.0106834834, -0.000753758475, -0.00465753721, -0.0424041972, -0.0128597487, 0.0199161228, -0.00919966586, 0.00119323621, -0.0050078826, 0.0208393876, -0.0105680749, -0.018349871, -0.00547363656, 0.0195369255, -0.00857316516, -0.00849073101, -0.00237410748, -0.0157449488, -0.00935629103, 0.00726658199, -0.0165115874, -0.000270229881, -0.0061537195, -0.0048718662, 0.00848248787, 0.0110461945, 0.000613105, 0.0212350711, -0.0104773976, -0.0340288728, -0.0105103711, 0.0334848054, 0.0297093168, -0.0124970376, -0.00139623065, -0.0166764557, 0.00835059304, -0.00875452068, 0.00697394041, -0.0332210176, -0.00262759277, 0.00279864389, -0.00413614, -0.0111945756, -0.0234772842, -0.0207899269, 0.0136428736, -0.0145496512, 0.0456685945, 0.0224056393, -0.00228342973, -0.0242027063, 0.00945521239, 0.00710995682, 0.0196688194, -0.0365019, -0.0106669962, 0.00891939, 0.00337156234, 0.00698218402, -0.00980968, 0.0220429283, -0.0001769761, 0.0655517429, -0.0119612142, -0.01798716, -0.00915020518, -0.0228013229, 0.013667604, 0.0194544904, -0.0124887945, -0.0118293194, -0.0192566495, 0.027417643, -0.0108978124, -0.0101229297, 0.00612074556, -0.00156934268, 0.0311106984, -0.00563026173, -0.0164456405, -0.00184137584, 0.0270054713, -0.026626274, -0.0195534118, 0.0079466654, 0.0188609641, 0.0330066867, 0.013238946, 0.00772409234, -0.000578585605, -0.0218945462, -0.00816923752, 0.00845775753, -0.00034158706, 0.0312425941, -0.00708934851, 0.00357764796, 0.028786052, 0.00208867877, 0.0149783092, 0.00670602918, -0.00774470111, -0.00222984748, -0.00796315167, 0.00285016536, 0.0102960421, -0.0108483518, -0.00585695589, -0.0313085429, -0.00463280687, -0.0147062764, 0.0177893192, -0.00787659548, 0.00452564238, -0.00304800761, -0.0396673791, -0.00659474265, 0.0343586095, -0.000907807553, -0.0112852538, 0.00551485363, -0.0149288485, -0.00411965325, -0.0362381116, 0.0163055, -0.0237575602, 0.0303028431, -0.0027636094, -0.0105433445, 0.00970251486, 0.00854843576, -0.00595587725, 0.0157944094, 0.00877925102, 0.00857316516, 0.0180695951, 0.00467402395, 0.00316547649, 0.00514802104, -0.0285387486, 0.0188279897, -0.0187785309, 0.00697394041, 0.00874627754, -0.032231804, -0.0062897359, 0.0214164276, -0.0163137447, -0.00373221212, -0.0114501221, -0.0161818508, -0.00739847682, 0.00543241948, -0.0271703396, -0.0173276868, -0.00278833974, 0.00665244693, -0.0203777552, 0.0172947124, 0.0158933308, 0.00302327727, -0.0105103711, 0.0145249208, 0.00591878174, 0.0133378673, -0.0108071351, 0.00504497811, -0.0108813252, 0.00439374754, 0.00999927893, -7.50280815e-05, 0.0272527747, 0.016692942, 0.000956237724, 0.0130740777, 0.0438550375, 0.0158768427, -0.00811977684, 0.0131894853, 0.001565221, 0.0119199976, -0.00164868566, -0.0138242291, 0.0397333242, -0.00359619572, -0.0160004944, 0.00722124334, -0.00337568391, 0.00485125743, 0.00814450718, 0.000348542468, 0.0197512545, -0.0108401086, 0.0257194974, -0.0041526272, -0.0108565949, -0.0106587531, 0.00277391355, -0.0127113666, 0.00340865762, 0.00022450462, 0.0100075221, -0.00965305511, -0.0126948794, -0.00831762, 0.00135192228, -0.00310571166, -0.0207569525, -0.014681546, -0.000315826357, 0.0133955711, 0.00410316652, -0.00655352557, 0.00925737, 0.00555194914, -0.00154255156, 0.0146897892, 0.00984265376, -0.0066483249, -0.00681731524, -0.00887817238, -0.0154976454, -0.00875452068, 0.0275495388, 0.0021803868, -0.0186631214, -0.0156460274, 0.00470287586, 0.00661122939, 0.0202788338, -0.0143765388, 0.00407431461, -0.0106834834, 0.00310365087, -0.00641338713, -0.0213504788, 0.0192896221, -0.00753861526, -0.00636392692, -0.00362916943, 0.0227518622, -0.00853194855, 0.00227724714, 0.0124310898, 0.00881222542, 0.00244417647, -0.00107164565, -0.0044679381, -0.0277473796, -0.0106917266, 0.00803734269, 0.0169484895, -0.0261811279, -0.0223067179, 0.00256370613, -0.00497490913, -0.00091502053, 0.0135192228, 0.0146980332, -0.000843921, 0.0144424867, 0.00493781362, -0.0126124453, -0.00531701138, 0.0112522794, -0.00834235, 0.00900182407, -0.0013117356, -0.00645872625, 0.013750039, 0.00118911453, -0.0122250048, -0.00686677592, -0.0073119211, -0.00947994273, -0.00497078756, -0.00683792401, -0.00481828395, 0.0249446146, -0.026840603, -0.000524488161, -0.012373386, 0.00598472916, -0.00762104942, -0.00263583614, 0.028851999, 0.0214494, -0.0185971744, 0.0204437021, 0.0044679381, 0.00398569787, 0.0206415448, -0.0170144364, 0.00784774404, 0.0240543243, 0.00549424486, 0.00887817238, 0.00499551743, 0.0314898975, -0.0204107296, -0.0170803834, 0.01798716, 0.0242851395, 0.0520325191, -0.0302698687, 0.000275124417, -0.000934598676, 8.21766807e-05, 0.000208275378, -0.0279781967, -0.00419384427, 0.0109720035, -0.0182014909, -0.00999103487, 0.0337980576, -0.0253402982, 0.0243840609, -0.00692860177, -0.0185477138, 0.0132719195, -0.00577452173, -0.0295609348, -0.000922748761, 0.0162477978, -0.00193617528, 0.00265438389, -0.0235432312, 0.00330355391, -0.00736138178, 0.00235349871, 0.00656176917, 0.00467402395, 0.00500376103, 0.0108813252, -0.0069162366, -0.0177563448, 0.00295114727, 0.00336125796, -0.00075891061, -0.00676785456, -0.00418354, -0.0140220718, -0.00180324994, 0.0346883461, 0.0102795549, -0.0273187216, -0.00113141059, 0.0202293731, -0.0157202184, -0.00820633303, 0.0159592777, -0.0199490972, -0.00477706688, 0.0415139049, 0.00480179721, -0.000234551306, -0.0314898975, 0.0259008519, -0.00444733, -0.0230651125, -0.0248621795, 0.013238946, 0.0468226746, 0.0125300111, -0.0220759, 0.00506146485, 0.0197182801, -0.0311271865, 0.0128515046, -0.0172287654, -0.000979937613, 0.00882046856, 0.000312477467, -0.0344245583, -0.00981792342, -0.0039568455, -0.000808886427, -0.016692942, 0.00532937655, 0.0108813252, 0.00907601509, 0.00941399485, -0.0291982237, -0.0100404955, -0.0435912497, 0.0146650588, -0.0202458594, -0.00797963887, -0.00434428686, 0.00828876719, 0.003346832, -0.00993333105, 0.00184137584, -0.0355786383, -0.0158603564, 0.000694508839, -0.0034107184, -0.0139478808, 0.012521768, 0.00633507455, 0.0105268583, -0.017195791, -0.0436242223, -0.0307644755, -0.0144259995, 0.00266056648, -0.00048739271, -0.012018919, -0.013172999, 0.00198666635, -0.0190423205, 0.00733665144, 0.00280070491, -0.000910898845, 0.00400836719, 0.000855255697, 0.0141869402, 0.0120601356, 0.0185806882, 0.0181520302, -0.0203942414, 0.00112213672, -0.0093645351, 0.0139066642, -0.00933156069, -0.0052757943, -0.0387770869, -0.0160746854, 0.00804558583, -0.0202128869, 0.0281100906, 0.00588168623, -0.0209218208, 0.0123898732, 0.0283244196, 0.00227106456, 0.00261110603, 0.0436572, -0.00407431461, 0.00526342914, 0.00412789686, 0.00165074656, -0.0261151809, -0.022669429, -0.0208393876, 0.00105155236, -0.0108071351, -0.00213916972, 0.00881222542, -0.00999927893, 0.0380186923, -0.0166764557, -0.00335919717, -0.0041526272, 0.00734077301, 0.0110956542, -0.0351499803, -0.000593526871, -0.00211856118, -0.000128481566, 0.0129669132, -0.00903479755, 0.00107473694, 0.0014899997, -0.00663183816, -0.00411347067, -0.00584459072, 0.0152338557, -0.0236586388, -0.00780652696, 0.0437890925, 0.00188053213, 0.0377219282, -0.0139149074, -0.0409203805, 0.00353643089, -0.00268117501, 0.0192236751, 0.0110709248, -0.00533349812, 0.0061537195, 0.000471421052, 0.0189104248, -0.00417735754, -0.00605891971, 0.00559728779, -0.0153657505, -0.00877925102, -0.00916669238, -0.00842066202, 0.0114253918, -0.00456685945, 0.00642987434, -0.00202067033, -0.0157119744, -0.00547775812, -0.028571723, -0.000297021033, 0.007699362, -0.0102960421, 0.0295939073, -0.0118952673, 0.00403515808, 0.00575391296, -0.0255051684, -0.00500376103, 0.00172081566, -0.0121013531, 0.0116644511, -0.00536647206, 0.0065205521, 0.000383577019, 0.0157861654, -0.0069368449, -0.00268941862, 0.01122755, -0.00764577975, -0.00278421794, -0.0214988608, -0.00786010921, 0.00671427231, 0.0112770097, -0.0239389166, 0.0050078826, -0.0121178394, 0.00331797986, 0.0209877696, 0.000480437302, 0.0184487924, 0.00291405199, 0.00957886409, 0.0148711447, 0.0381176136, 0.00384762022, -0.013453275, -0.0121508138, 0.0181190558, -0.03366616, -0.00167650729, 0.00249363715, -0.00556019228, -0.00534586329, -0.000972724578, 0.00576627813, 0.0086556, -0.0114830956, 0.0273022354, 0.0266757347, 0.0189434, 0.00476058, 0.0129339388, 0.00342926616, 0.0233948492, -0.00562201813, -0.016190093, 0.0112687666, 0.000989211374, -0.00594351208, -0.00705637457, 0.00420414843, -0.00160334678, -0.0244994685, 0.00342308357, -0.00178985437, -0.00868857373, -2.42150709e-05, 0.00060383114, 0.0149041191, 0.0103207724, 0.00263789715, 0.0129256956, 0.00764165819, 0.00418560067, -0.0217791386, 0.000690387154, -0.0111698452, 0.0154481847, 0.000587344286, -0.00496666552, -0.0335012935, 0.00828876719, -0.00336744054, 0.00308922492, -0.015827382, -0.00711407885, -0.0340618454, -0.0176739097, 0.0110874111, 0.0011674756, 0.0172287654, -0.0153410202, 0.0294455271, 0.00422063516, 0.00126227504, -0.0107659176, -0.0164538827, -0.0165115874, -0.0123156821, -0.00458746776, 0.0106752394, -0.00866384339, -0.000290580851, -0.0229002442, 0.0177068841, -0.0108483518, -0.0143270791, -0.0186960958, 0.0107247, -0.00765814492, -0.00823518541, 0.0145826247, 2.46014824e-05, 0.0256865229, 0.0122085176, 0.000273063575, 0.0125135239, -0.00618257141, -0.000695539289, -0.0152420988, 0.0125300111, -0.0316053033, -0.0345894247, -0.0119529711, -0.013527466, -0.00837120134, -0.0206745192, -0.0111038983, 0.0024400549, 0.0126371756, -0.0106257796, 0.00764577975, -0.00441435585, -0.00636392692, 0.0168083515, 0.00802085549, -0.0111780893, 0.0113841742, 0.0109143, 0.0137994988, 0.00492544845, 0.0135357091, -0.00519748172, -0.00828052405, -0.0302368961, -0.0194709785, 0.003130442, 0.00504497811, 0.0204931628, 0.00639277883, 0.0330726355, -0.0184817668, 0.00165280735, 0.0163879357, 0.0184652805, 0.0108813252, 0.00340041425, -0.0126042021, -0.00712644402, -0.00811565574, 0.0105021279, 0.00578276487, 0.00315311132, 0.00866384339, -0.0439539589, -0.00112728879, -0.0197842289, 0.0135521963, 0.00732840784, -0.0061372323, -0.00821045507, -0.0257524699, -0.00438550394, -0.0192071889, -0.0222737435, 0.00546951499, 0.00042402136, 0.0113017401, -0.0119777014, -0.00429070462, -0.0277638678, 0.0147145195, -0.0214658882, 0.0011963275, -0.000572918274, -0.00260904501, -0.0182674378, 8.07598408e-05, -0.012521768, 0.00164559437, -0.00870506, -0.0124640642, -0.00471111946, 0.00853194855, 0.00505734328, -1.71952761e-05, -0.0105680749, -0.0133625977, -0.00755922403, -0.00914196204, -0.0142941047, -0.00198872713, 0.00565499207, 0.0114501221, 0.00394654134, -0.00508207362, -0.0155800795, 0.00438962551, 0.0197017938, -0.0214988608, -0.0124723073, -0.00734077301, -0.0170309227, 0.0247302856, 0.0069162366, -0.00258431491, -0.00293053873, 0.00758395437, -0.00705637457, -0.014104506, -0.00674312469, 0.00946345553, 0.000410368171, 0.0296268817, 0.0159675218, -0.0155883236, 0.0107494304, 0.0231970083, -0.011367688, 0.0150525, 0.0153904809, -0.00219069119, -0.00819396786, 0.00698218402, -0.000627531, -0.00964481104, 0.00358795212, -0.0172122791, 0.0112522794, 0.0350840315, 0.00737374695, -0.0324296467, 0.0215483215, -0.0172452517, -0.00576627813, -0.011441879, -0.0244335216, -0.00525930757, -0.0124640642, 8.73288227e-05, 0.00456273742, -0.00637629209, -0.00443084259, 0.0161323901, -0.00745618111, -0.0192236751, 0.000775912718, 0.0118375635, -0.0513730459, -0.01043618, 0.0119859446, 0.00838356651, -0.0175420158, 0.0348532163, 0.00962832477, -0.0193555709, -0.00927385688, 0.0132307028, 0.012736097, -0.00259461906, 0.0261481553, 0.00592702487, -0.00348903099, -0.0200809911, 0.014104506, 0.00816511549, -0.00293672131, -0.00509856036, -0.0151266912, 0.0013117356, 0.0080744382, -0.0182014909, 0.0189269111, -0.00676373299, 0.000793945219, -0.00737374695, 0.00274506165, -0.0110709248, -0.00475233654, 0.0159675218, -0.0155306188, 0.00254103681, 0.00877100788, -0.0152091254, 0.0117221549, -0.00579100847, -0.00378785538, -2.21381142e-05, 0.00574154779, 0.0189104248, -0.00983441, -0.0198172014, -0.00595999882, 0.0167918634, 0.0134203015, 0.0223396905, 0.00608365, 0.00618669298, 0.0108401086, 0.0218615718, 0.00015610992, -0.0118952673, 0.00492544845, -0.00968602858, -0.0159098171, 0.0204766765, 0.00868033059, 0.00715117436, 0.0149865532, 0.00145908678, 0.0306325797, 0.0126206893, 0.0154069681, -0.00251630647, 0.0120024318, -0.00248127198, 0.0184323061, -0.00431543496, 0.00421033101, -0.00412171427, 0.0138736898, -0.0109802466, 0.0080744382, -0.000947479042, 0.000506970857, 0.00915020518, -0.0107411873, -0.00148278673, 0.026988985, -0.00577452173, 0.00976846274, 0.00439786911, 0.0291322768, -0.0108483518, 0.00126021414, 0.007555102, 0.0302368961, 0.0164373964, -0.00278009614, 0.00776530942, 0.00141477841, 0.025043536, -0.00383525505, -0.00463280687, 0.0122497343, 0.0221583359, -0.00459983293, 0.0114748525, 0.00478531, -0.0139066642, -0.00376106426, 0.0239224285, -0.00631858781, 0.00508207362, -0.0112357931, 0.0121013531, -0.0205261372, 0.0101971207, -0.0287201051, -0.0186960958, -0.0113594448, 0.00937277824, -0.014244644, -0.00338804908, 0.0033427102, -0.0260162596, 0.00584459072, -0.0150112836, 0.00660298625, 0.00716353953, 0.00210310472, -0.00648757815, -0.0331385806, 0.0134367887, -0.0363370329, -0.0159675218, 0.00720887817, 0.000481467752, -0.00394242, -0.00431131292, -0.0071882694, 0.00278215716, -0.00246066344, -0.00318402424, -0.00344781391, -0.00637629209, -0.0290828161, -0.0168001074, 0.000468072161, -0.0112028196, -0.0033859883, 0.00567972241, 0.00978495, 0.0242027063, -0.000919142272, 0.0193061102, -0.00225869939, 0.00874627754, 0.00202891394, 0.0139478808, -0.0116974246, -0.0033818665, 0.00956237689, 0.0145249208, -0.00426185271, -0.00332416245, -0.0108401086, 0.0197842289, 0.00193411438, -0.023823509, -0.0151596647, -0.0079343, -1.87248188e-05, 0.00807856, 0.0094717, 0.0019248405, 0.00499963947, -0.00771172717, 0.0257359836, 0.00918318, -0.0168825407, 0.00602594623, 0.00540768914, -0.0156377833, -0.0047564581, 0.0208888482, -0.00959535, 0.0250600222, 0.0187785309, 0.00800849, -0.00682143681, -0.0011674756, -0.00457510259, -0.0105351014, 0.0092821, 0.00727482559, -0.00231228163, 0.00375694246, 0.0276979189, 0.0354467407, 0.00384143763, 0.0396344028, -0.00566735724, 0.00441023428, 0.0211196635, 0.00579925207, -0.00643399591, -0.00516863, 0.0208888482, 0.000631652714, 0.0174595807, -0.00140962622, 0.0178387798, 0.0130411042, -0.015753191, 0.0300555397, -0.000537883723, -0.00264614052, -0.0141869402, 0.0102300951, 0.0197512545, 0.0152091254, 0.0142034274, 0.00626088399, 0.00858965237, 0.0123239253, 0.0156707577, -0.0207404662, 0.00898533687, -0.00185168011, 0.00106855447, 0.00197327067, 0.00528815947, 0.00158479915, 0.0184487924, 0.0054983669, -0.016330231, 0.0374251641, -0.015975764, 0.00127773138, 0.0172287654, 0.0267911423, -0.0123569, 0.000233263258, -0.00289962604, 0.00564674847, -0.000936659577, -0.0157367047, -0.0121343266, 0.00616608467, 0.0100240093, 0.0118870242, -0.014681546, -0.00350139616, -0.017195791, -0.00617020624, 0.0144837042, 0.0148793887, 0.0143847829, 0.0190093461, 0.0118128331, -0.00703164423, 0.00181149342, 0.0184817668, -0.00215153489, 0.00335713616, 0.0140468022, -0.0188444778, -0.0126454197, 0.0159098171, 0.0105763189, -0.0118210763, -0.00548600173, 0.00382288988, -0.0196853075, -0.00827228, 0.00832998473, -0.000925840053, -0.0283079334, 0.0133625977, 0.000617741898, 0.000593526871, -0.00343132718, -0.00491308328, 0.0158521123, 0.0197182801, -0.017195791, 0.0178717524, -0.0178222917, 0.0212680455, -0.01014766, 0.00222366489, -0.0254392195, 0.0139478808, -0.00388059393, -0.0121920304, -0.00214329129, 0.0108895693, 0.0130658345, 0.00492957, 0.00678021973, -0.0235762056, 0.00455861585, 0.0010160025, -0.00593114691, -0.0223726649, -0.00189804938, -0.0233783629, -0.00343132718, -0.00879573822, 0.0117139118, -0.0225540195, 0.00255340198, -0.000287747185, -0.0179212131, 0.0056426269, 0.00952116, 0.00277803536, -0.0160994157, -0.00895236339, 0.0104444241, -0.00923264, -0.00074860634, -0.00381670729, 0.0150360139, 0.00803322066, -0.0169320013, 0.0101229297, 0.00365802133, 0.0229332186, -0.00946345553, 0.00953764655, 0.00478118844, -0.00396096753, -0.0164951012, 0.0149041191, -0.0131235383, 0.0110544376, -0.0182674378, 0.0096200807, -0.00569620915, -0.0025472194, -0.0119117545, -0.0159592777, -0.0156707577, 0.00585283432, -0.0172122791, 0.00143950875, 0.0237905346, 0.0170968715, 0.00149721268, 0.00205673533, 0.00718002627, -0.000579100859, 0.0137253087, -0.0171628185, -0.00376518583, -0.0132554332, 0.0132307028, -0.00751800695, -0.0189763717, 0.0270219576, 0.00695745368, -0.00732428627, 0.00233907276, -0.000705328363, -0.0175420158, -0.00644636108, 0.0207404662, -0.0117716156, 0.0063969004, 0.0211361498, 0.0125052808, 0.000764578, 0.00195472292, -0.0232629552, 0.015184395, 0.0132719195, -0.0121260835, -0.0313580036, -0.00159407302, -0.0173771475, 0.0302698687, -0.0027594876, -0.00420414843, 0.00361062167, 0.0345894247, -0.00182798028, 0.00231228163, 0.000792914769, 0.0101723904, 0.0122827087, -0.0153327771, 0.00587756466, 0.0105845621, 0.0243016277, -0.00125918374, -0.00871330407, -0.00342308357, -0.00309746829, -0.0128762349, 0.0216637291, -0.00361062167, 0.0105186151, 0.0129916435, -0.0109720035, -0.0181190558, 0.0120518925, 0.0101064434, 0.00113450189, 0.0189598855, 0.0022916731, -0.00609189365, 0.0142281577, -0.00985914, -0.00727894716, -0.0112028196, 0.00354467425, 0.00764577975, 0.00763753662, -0.0156377833, 0.029363092, 0.00920791, 0.0107659176, 0.00682968041, -0.00708522694, 0.0162065811, -0.0124558201, 0.0229826793, 0.0168083515, -0.0172617398, 0.0028707739, 0.00656176917, -0.00126433582, 0.00308922492, 0.00207734387, -0.00506146485, 0.0146568157, -0.0142116705, -0.0288849734, -0.00978495, 0.00990860071, -0.0170968715, 0.00162086415, -0.0096200807, -0.0203447808, -0.00176100235, -0.0110956542, -0.012307439, 0.016264284, -0.00729955593, 0.00577452173, 0.00513977744, 0.00595587725, -0.0126783932, 0.00755098043, 4.41152224e-05, -0.00269972277, 0.0142116705, -0.0160664413, 0.00161468156, 0.016190093, 0.0204601903, -0.00260080164, -0.00138798729, -0.00991684478, -0.00680495, 0.01093903, -0.0103455028, -0.00528403744, 0.0128679918, 0.0010561893, 0.00254103681, -0.0107164569, -0.00112007582, 0.00093305303, 0.00276567019, -0.0117386421, 0.0167918634, 0.0210207421, 0.000674930692, 0.00434428686, -1.53678757e-05, -0.0231310595, -0.00747266784, 0.00971900206, 0.0149206053, -0.00156109931, 0.00145290431, 0.0102877989, 0.00935629103, -0.0191577282, 0.00158685993, -0.0238399953, 0.0103537459, -0.00117262767, 0.00850721821, 0.00292023458, -0.0168001074, 0.0112852538, 0.00339629245, 0.000766638841, -0.0153162898, 0.000249621313, -0.0189598855, -0.00512741227, 0.0051315343, 0.0026914794, -0.00162498583, 0.00322111975, -0.001034035, -0.0213175062, 0.00260698423, 0.00633919658, -0.0120848659, -0.00046369285, 0.00567972241, 0.0156295411, 0.000416035531, -0.00372602977, -0.0021845086, -0.00965305511, -0.0299895927, -0.0092243962, -0.00722948695, 0.00659474265, 0.018349871, -0.0111203846, -0.00682968041, 0.0113099841, -0.00593939, 0.0227024015, 0.00843714923, 0.0194544904, 0.0231475476, -0.00217420422, 0.016618751, 0.00685853232, -0.00161365117, 0.0126948794, -0.00875452068, -0.00898533687, 0.0146897892, -0.00113965396, -0.00164868566, 0.00624027522, -0.0236916132, -0.00964481104, 0.0101064434, -0.0255711153, -0.0145743815, -0.00791781303, -0.0135851698, -0.00587756466, -0.00202994421, 0.00596824242, 0.0055189752, 0.0166352391, 0.00104897632, 0.000743969402, -0.00489659654, 0.0029429039, 0.0138654467, -0.00300472975, -0.0274835899, -0.00148278673, -0.0119529711, -0.00353849167, 0.0170474108, -0.00489247497, 0.00622378848, -0.00247921119, 0.0103207724, 0.0017795501, -0.0125382543, 0.036205139, -0.00847424474, 0.0405906402, 0.000229785568, 0.0160746854, -0.00800849, -0.0209712815, 0.015184395, -0.017344173, -0.0234443098, -0.00198254455, 0.0205426235, 0.037359219, -0.0125300111, 0.0189763717, -0.0138324732, -0.016692942, -0.000972209324, 0.00527167227, -0.00432367809, -0.00808680337, -0.0289179478, -0.00908425823, 0.0102630686, 0.02187806, -0.000365029322, 0.0228013229, -0.00440611271, 0.0195699, 0.00110461935, 0.0103537459, -0.0132471891, 0.0118458066, -0.00902655441, 0.00787247438, -0.0102383383, -0.00605479814, 0.0153904809, -0.00450091204, -0.00856492203, -0.00494193519, 0.00285634794, -0.0138572035, 0.000712026143, 0.00142096099, 0.0163055, -0.0306160934, -0.0130328601, 0.00037430317, -0.00609601522, -0.00567560038, -0.0137170646, -0.00213298714, -0.0182014909, -0.0193720572, 0.013750039, 0.0191247538, -0.0204107296, 0.00323142391, 0.00512741227, 0.00649582176, 0.00572918262, 0.0100817131, 0.0243510883, -0.003777551, -0.00746030267, -0.0325780287, -0.00278215716, -0.00149412139, 0.003777551, 0.00552309724, -0.0282914471, -0.00833410583, 0.00485950103, -0.00762104942, -0.0278133284, -0.00858965237, 0.013238946, -0.00766638853, 0.00895236339, -0.0136428736, 0.0337980576, -0.00486774463, 0.0137335518, 0.0125052808, 0.00602182467, 0.0288849734, 0.0234937705, 0.00328706717, -0.0247138, -0.0159840081, -0.0117139118, -0.0223396905, 0.023823509, -0.000861438282, -0.00619081454, 0.026840603, -0.00739847682, 0.0126866363, -0.00420002686, 0.0155058885, -0.00520572485, -0.00103248947, -0.0286871307, 0.00186713657, 0.0141127491, 0.00289344345, 0.0400960371, 0.000398518256, -0.00402691495, -0.0166847, -0.00298618199, 0.00183931494, -0.0153657505, 0.00162498583, -0.00435665203, 0.014467217, 0.0177233703, 0.0184487924, -0.0227188896, -0.000773851818, 0.00860614, -0.00606716331, 0.00278215716, 0.0107329441, 0.00219893456, 0.00872979, -0.0201634262, 0.00943048205, -0.0463610403, -0.0183663592, 0.00273269648, -0.0110461945, 0.0165363178, -0.016981462, 0.00999927893, 0.0106175356, 0.00416293135, 0.0228013229, -0.000717178278, -0.00183004106, -0.0124063594, -0.0214658882, -0.0125629846, -0.024829207, 0.00944696926, -0.000394138915, 0.00478943205, -0.00264407974, 0.0345564522, -0.00360031729, -0.0154152112, -0.000333343633, -0.0126536628, 0.00529228104, -0.00976022, -0.0033859883, -0.00694096694, -0.00849073101, -0.00600533746, -0.00271414872, 0.0131070511, 0.00515626464, -0.00648757815, -0.000925840053, -0.00760456268, -0.00560965296, -0.00706461817, -0.0160911717, 0.00347048347, 0.00567972241, 0.00155285583, -0.0198007151, -0.00738611165, -0.00398569787, 0.0255381409, 0.00728306919, 0.0102630686, -0.00540768914, -0.0195369255, -0.00155491673, -5.51279263e-05, -0.0106257796, 0.0145908687, 0.00226694276, 0.000685750216, -0.0162148234, 0.0124146035, 0.0108730821, -0.0105763189, -0.0115407994, -0.00260286243, -0.0200809911, -0.0108071351, -0.000263403286, -0.0123898732, 0.0121095963, 0.0158686, 0.0113182273, 0.0101806344, -0.00579925207, -0.0109143, 0.0115737738, 0.011367688, 0.00946345553, 0.00929858722, 0.00381052471, -0.00133337453, 0.0191082675, -0.00291817356, 0.0115655297, 0.0366008207, -0.00471524103, -0.0173276868, -0.0118787801, -0.0142858615, 0.00376724685, -0.0117139118, -0.00778591819, 0.0160087384, -0.00259461906, 0.000685750216, 0.0200645048, -0.0110956542, -0.00861438271, -0.00519748172, -0.0188279897, 0.00725833885, 0.00525106397, 0.0094717, -0.0181190558, 0.00279658311, 0.0150360139, 0.0117716156, 0.000229527956, 0.000154435475, -0.025257865, -0.0118952673, 0.00144569122, 0.00811977684, 0.00185992359, -0.000816099404, -0.00437726034, 0.0258019306, 0.00670190714, 0.00729955593, -0.0154399415, 0.00393623719, 0.0024318113, -0.00417941809, -0.0454707518, 0.00186816696, -0.00352818728, 0.00407843618, 0.00170432881, -0.00079033873, 0.0085978955, -0.0105433445, -0.0055272188, -0.00598885072, 0.00271620974, 0.0034581183, 0.0111368718, 0.00282337423, 0.0147969536, -0.0111863324, -0.00357970875, -0.0137253087, -0.00220717792, -0.0120766228, 0.00308922492, 0.00990860071, 0.00443908619, -0.00826403685, -0.00682555884, -0.00326439762, -0.007699362, -0.0333199389, -0.00837120134, 0.0111698452, -0.0166764557, 0.0158521123, 0.00225869939, 0.00411553169, 0.00721299974, 0.00398775842, 0.0104691545, -0.00644223951, -0.000477603637, -0.00310365087, -0.00788896065, -0.0192731358, -0.00930683, 0.0159345474, 0.0189269111, 0.00509856036, 0.0160829294, -0.00879573822, -0.0170968715, 0.0174925551, 0.00518923812, 0.00142302178, 0.0331220962, -0.00442672102, -0.013750039, -0.00411553169, -0.0248951539, 0.00872979, -0.00959535, 0.0155553492, -0.00329118874, 0.0160911717, 0.000210593833, -0.0110379504, 0.00360031729, 0.00946345553, 0.001529156, 0.00914196204, 0.00204230938, 0.0182014909, -0.00289550424, -0.0131400246, -0.00248951535, -0.00739847682, 0.0154234543, -0.00645460468, 0.0168660544, 0.0110544376, 0.0179706737, -0.00297587761, 0.00272445311, -0.00577452173, -0.00347666605, 0.0149370926, -0.000610528921, -0.0193555709, 0.0132884067, 0.00670190714, 0.0231475476, -0.030220408, 0.00079033873, -0.0033859883, 0.00721299974, -0.00349109201, -0.0160087384, -0.0278133284, 0.0212515593, -0.0156130539, 0.00237410748, -0.00420002686, 0.000628046226, 0.0122414911, -0.0123156821, 0.00729955593, -0.00748503301, -0.00272033131, 0.0102630686, -0.0014920606, -0.0118045891, -0.00266056648, -0.000317114376, -0.00187537994, -0.0151514215, -0.00607128488, 0.00600533746, -0.0139478808, 0.00930683, -0.023246469, 0.0102053648, 0.0355786383, -0.0130740777, -0.00990860071, -0.0110626807, 0.0152668292, 0.00724597368, 0.0046121981, 0.0235597193, 0.00804146472, -0.0104196938, 0.00720063457, 0.0163055, 0.0157861654, -0.00643811747, -0.00152091251, -0.0191247538, -0.0012014797, 0.0152833164, 0.00488011, 0.0259008519, -0.012373386, -0.00313868537, 0.0154316984, -0.00411553169, 0.00625264039, 0.00804558583, -0.01093903, -0.0142858615, 0.000629591872, 0.0139396377, 0.00982616656, -0.0027636094, -0.00434840843, -0.0101723904, -0.00673488108, -0.00858140923, -0.0171133578, 0.00412171427, -0.0188774504, -0.0200645048, -0.013741795, -0.0299895927, -0.00311189424, -0.00962832477, -0.0130081298, 0.00472348463, -0.0149865532, -0.00698630558, -0.0115078259, -0.00515626464, 0.0079343, 0.00448854687, 0.0152668292, 0.0168001074, -0.0169320013, -2.76122646e-05, 0.0018527105, -0.00684204558, -0.0157037303, -0.014244644, 0.0102548245, -0.0192566495, -0.00328294537, -0.00144259993, -0.0079466654, -0.0250270478, -0.0167918634, -0.0152173685, -0.0050078826, -0.00360856089, -0.00944696926, 0.00576627813, -0.0066565685, -0.0135604395, -0.0162395537, 0.0115655297, 0.00273887906, 0.0223891512, -0.00880398136, 0.0151679087, -0.0101888776, -0.0065411604, -0.0033818665, -0.00876276474, 0.0151679087, -0.00737786852, 0.0247797463, 0.00181149342, -0.00683380198, 0.0163961798, -0.015827382, 0.00476058, -0.0186136607, -0.00641750917, -0.0105763189, 0.00845775753, -0.00855667889, 0.0113347145, 0.00757571077, 0.003202572, -0.00328706717, 0.0189434, 0.0114913397, -0.0364689268, 0.0229167305, -0.0224056393, 0.00109534559, -0.000725936901, 0.0142611312, -0.000480694929, 0.0100652259, -0.013956124, -0.000645563472, 0.0366667695, -0.0158850867, -0.00304182502, -0.0102713117, 0.00181973679, 0.00597236399, -0.00915844925, 0.0205591097, -0.025983287, -0.0138489595, -0.0201469399, -0.00194441865, 0.0162395537, 0.00388059393, 0.0044679381, -0.0132719195, 0.00631858781, -0.00404958427, -0.00241944636, 0.000563644397, 0.0884355, -0.0168578103, -0.00150648656, -0.0347213224, 0.0183828454, -0.012810288, -0.00220511714, 0.0521314405, 0.00186816696, -0.00502024777, -0.01043618, 0.00738199, -0.000767669291, 0.0178058054, -0.000172725588, -0.0110709248, 0.00257194974, -0.0261151809, -0.000833101512, 0.00416705292, 0.00198460533, 0.00418766169, 0.0148299281, -0.00334889279, -0.00106752396, 0.00199181843, -0.00215359568, 0.00308098132, -0.00245860242, -0.00316959829, -0.00376518583, 0.013238946, 0.00189804938, 1.00064271e-05, -0.0435253, 0.000148510517, 0.0167094301, 0.0243675746, -0.00296763424, 0.00854843576, 0.00305625121, -0.001601286, 0.00122105784, -0.00341896201, 0.0162313115, -0.0208064131, -0.00110668025, -0.0063969004, 0.0165857784, 0.00912547484, 0.00426185271, -0.0171298441, 0.00694096694, -0.00466165878, 0.0273681823, -0.0097272452, 0.0190093461, 0.00249569793, -0.0104938848, -0.00868033059, -0.0164951012, 0.0418766178, 0.00650406489, -0.0089688506, -0.0123239253, -0.0128597487, 0.00230403827, -0.00135398307, -0.0201799124, 0.00172596786, 0.01007347, -0.0375240855, -0.00143435656, -0.0021845086, 0.0144837042, 0.0112522794, -0.0108071351, 0.0157944094, 0.012884479, -0.00839181058, -0.00404340168, 0.0113841742, -0.0239224285, -0.0214164276, -0.00882046856, 0.0144837042, -0.03597432, -0.0166434813, -0.000238544206, 0.00423300033, -0.0101394169, 0.0209218208, -0.0153410202, 0.0167918634, -0.00387235056, 0.0271373671, 0.0110379504, -0.000672354654, 0.0209877696, 0.0142776184, -0.00301297312, -0.0197347682, -0.0132554332, -0.0215977821, -0.00540768914, 0.0160664413, -0.00414644461, 0.0180366207, 0.0259503126, 0.0169979502, -0.0105186151, -0.0158521123, 0.0116479648, 0.0286211837, 0.0088287117, -0.0129092094, 0.0205096491, -0.0168495681, 0.0191082675, -0.000685750216, -0.000870196905, 0.00780652696, -0.0299401321, -0.00937277824, -0.00896060653, 0.00709347, -0.0016352901, 0.00518099498, 0.00735725975, -0.00856492203, -0.00281513087, -0.0256700367, 0.00807856, -0.00255958457, 0.0079507865, 0.0205755979, 0.00180737174, 0.0123569, 0.00802497752, 0.00691211456, 0.0173112, 0.0102218511, 0.00201551826, 0.00516038621, 0.0126948794, -0.00455861585, 0.0129009653, 0.000877925137, -0.0189928599, -0.0101394169, -0.00129112694, 0.00246272422, 0.00126330543, -0.0192731358, -0.00483889272, -0.00970251486, 5.56109408e-05, -0.0044844253, -0.00946345553, 0.016338475, -0.00671427231, -0.00240914198, 0.0124393338, -0.0169320013, 0.01093903, 0.00759631954, -0.00819396786, 0.0108813252, 0.0357105322, 0.00688326266, 0.0114748525, -0.0105268583, -0.00856492203, 0.0281760376, -0.0179212131, 0.00207734387, 0.00114686694, 0.00125609245, -0.00238853344, -0.013956124, 0.00365389977, 0.00387235056, 0.0168083515, 0.040953353, -0.00379197719, 0.00495430036, 0.0048636226, -0.0040454627, 0.018349871, -0.00890290271, -0.0351170041, 0.0143105919, -0.00699042715, -0.014030315, -0.00250188052, 0.00219481275, 0.00738611165, 0.0123981163, -0.0107741607, -0.0117386421, 0.0103455028, 0.0110049769, 0.000372757524, -0.00383731583, 0.00636804849, 0.033039663, 0.0123898732, -0.0146403285, 0.00946345553, -0.00301091233, 0.0217296779]
|
14 Mar, 2024
|
SEO Checker | Complete SEO Audit in 9 Steps
14 Mar, 2024
SEO audit is crucial for enhancing the performance and visibility of a website in search engine results. This systematic evaluation involves scrutinizing various elements, from keywords and on-page optimization to technical aspects like site structure and page speed. In this guide, we’ll outline 12 essential steps to perform a comprehensive SEO Checker, helping you identify strengths, weaknesses, and opportunities for improvement to elevate your website’s overall search engine standing.
Table of Content
How to Perform SEO Audit
STEP 1. Review Indexing Issues
STEP 2. Review Existing Content
STEP 3. Image Audit
STEP 4. Monitor SEO Metrics for Traffic with Google Analytics
STEP 5. Backlink Audit
STEP 6. Audit Mobile SEO
STEP 7. Keyword Audit for SEO
STEP 8. Page Load Speed Audit using Lighthouse
STEP 9. Social Media SEO Optimization Audit
What Is an SEO Audit?
An SEO audit is a thorough assessment of a website’s performance, structure, and content to identify opportunities for improving search engine visibility and ranking.
How to Perform SEO Audit
SEO Checker SEO Audit can be different according to the requirement, SEO Audit Procedure can be summarised into 12 major steps that are:
STEP 1. Review Indexing Issues
The First Step of the SEO Checker Process is Checking or Auditing indexing issue, identifying all the indexing issue and taking considerable steps for the same.
1. Check for Crawl Errors using Google Search Console:
In Google Search Console, go to the Pages section. This report provides insights into the indexing status of your site. In Pages, following issues must be addressed:
Identify Crawl Errors:
Identify Crawl Errors – SEO Audit
Errors Section: Look for any errors reported, such as crawl errors, URL not found (404 errors), or server errors.
Indexing Issues: Pay attention to issues that may prevent proper indexing, such as pages marked as “Excluded” or “Crawled – currently not indexed.”
Address Crawl Errors:
Address Crawling Error – SEO Audit
404 Errors: If there are pages with 404 errors, fix or redirect them to relevant pages.
Error 404 – SEO Audit
Server Errors: Investigate and resolve any server-related issues causing errors.
2. Ensure that All Important Pages are Indexed:
Sitemap Submission: Submit an XML sitemap to Google Search Console. This helps search engines discover and index important pages on your site.
Robots.txt File: Check your robots.txt file to ensure that it allows search engines to crawl and index the necessary pages. Avoid accidentally blocking important sections.
3. Identify and Resolve Issues:
Duplicate Content: Check for duplicate content issues, as search engines may have difficulty deciding which version to index. Use canonical tags to specify the preferred version.
Noindex Tags: Ensure that critical pages are not inadvertently marked with a “noindex” meta tag, which instructs search engines not to index them.
Redirect Chains: Minimize the use of redirect chains as they can slow down the crawling process. Direct crawlers to the final destination page.
4. Additional Considerations:
Pagination: If your site has paginated content, ensure that search engines can crawl and index paginated pages correctly.
JavaScript Rendering: If your site heavily relies on JavaScript, ensure that search engines can render and index the content correctly.
STEP 2. Review Existing Content
Existing Content Improvement is the base of SEO Checker process, Auditing the quality of the exisiting content is important.
1. Readability
Assess the readability of the content. Use clear and concise language that is easy for the target audience to understand.
2. Depth of Information
Ensure that the content provides valuable and in-depth information relevant to the topic.
3. Content Structure
Content Structure
Headings and Subheadings: Check if content is organized with clear headings and subheadings for easy readability and understanding.
Bullet Points and Lists: Use bullet points and lists to break down information and make it more digestible.
4. Identify and Update Outdated or Irrelevant Content
Publication Dates: If applicable, check for outdated content by reviewing publication dates. Update content with current information.
Relevance: Assess the relevance of the content to current trends and industry standards
Obsolete Pages: Identify pages that are no longer relevant and consider removing them or setting up redirects to relevant content.
5. Content Consistency:
Maintain a consistent tone and voice across your content to build a strong brand identity, and ensure that branding elements, such as logos and messaging, are consistent throughout the content.
6. Readability for All Audiences:
Make sure the content is accessible and understandable for a diverse audience.
7. Optimize Meta Tags:
Title Tags: Ensure each page has a unique and descriptive title tag. Include relevant keywords.
Meta Descriptions: Write compelling meta descriptions that accurately summarize the content and encourage click-throughs.
Header Tags: Optimize header tags (H1, H2, etc.) with relevant keywords to improve content structure and SEO.
8. Schema Markup:
Implement relevant schema markup to enhance the appearance of your content in search engine results with rich snippets.
STEP 3. Image Audit
Image Audit is the third Step of SEO Checker Process, this process involves Auditing the image element of the content:
1. File Size and Format Optimization:
In the SEO audit, prioritize optimizing images by compressing them to reduce file size without compromising quality. Use appropriate formats, such as JPEG for photographs and PNG for images with transparency, to enhance website performance without sacrificing visual appeal.
2. Alt Text Review:
Conduct an audit of image alt text during the SEO assessment. Ensure each image has descriptive and relevant alt text, providing context for search engines and improving accessibility for users with visual impairments. Alt text contributes to better understanding and indexing of images by search engines.
3. Image Naming Convention:
Evaluate image file names as part of the SEO audit. Replace generic names with descriptive ones to assist search engines in comprehending the content of the images. A thoughtful naming convention contributes to improved image search visibility.
4. Responsive Image Implementation:
In the SEO audit, assess the implementation of responsive design to ensure that images adapt seamlessly to various screen sizes and devices. Responsive images enhance user experience and support better performance across a range of platforms.
5. Mobile Optimization for Images:
Optimize images specifically for mobile devices during the SEO audit. This involves refining image delivery and formatting to enhance the user experience on smartphones and tablets, contributing to overall site performance.
6. Image Sitemap Creation:
Generate an image sitemap as part of the SEO audit to offer search engines additional information about the images on your site. Submitting the image sitemap to Google Search Console enhances the visibility and indexation of your images.
7. Image Captions Evaluation:
Consider the use of image captions during the SEO audit where applicable. Captions provide supplementary context for images, aiding both users and search engines in understanding the content and context of the images.
8. Contextual Relevance Check:
Ensure, as part of the SEO audit, that images are contextually relevant to the surrounding text. This alignment helps search engines grasp the content and relevance of images, contributing to a more coherent and SEO-friendly website.
STEP 4. Monitor SEO Metrics for Traffic with Google Analytics
SEO Checker involves Monitoring the Traffic using different tools and services such as Google Analytics:
1. Audit Traffic Sources:
When conducting an SEO audit, closely monitor the flow of organic traffic to your website. Analyze trends, spikes, or declines in organic traffic to discern potential challenges or successes. This evaluation provides valuable insights into the effectiveness of your SEO strategies and helps identify areas for improvement.
2. Audit Revenue Sources:
As part of the SEO audit process, assess the sources contributing to your website’s revenue. Identify how organic traffic aligns with revenue generation and pinpoint areas for optimization. Understanding the correlation between revenue and traffic sources aids in refining marketing strategies and maximizing profitability.
3. Audit Traffic Devices:
In the SEO audit, scrutinize the devices through which your website receives traffic. Analyze whether there are variations in user behavior based on the device used (desktop, mobile, tablet). This insight is crucial for optimizing the user experience on different devices and ensuring your website caters effectively to diverse audiences.
4. Traffic Demographics:
During the SEO audit, delve into the demographics of your website’s traffic. Understand the geographical locations, age groups, and other demographic factors of your audience. This information enables you to tailor your content and SEO strategies to better resonate with your target audience.
5. Identify High-Traffic Pages:
Identify, as part of the SEO audit, the specific pages on your website that receive the highest levels of organic traffic. Prioritize the optimization of these pages to further enhance their performance. This targeted approach ensures that your most valuable content is continually refined to meet user expectations and search engine algorithms.
6. Bounce Rate Analysis:
Track the bounce rate as a key metric during the SEO audit to gauge the effectiveness of your content. A high bounce rate may indicate potential issues with content quality or relevance. Analyze pages with elevated bounce rates and implement strategies to improve engagement, encouraging visitors to explore more of your website.
STEP 5. Backlink Audit
Backlink plays an important role in SEO, So during SEO Checker Process it’s important to audit the backlinks of the website:
Backlinks
1. Internal Link Audit
Anchor Text Optimization: Optimize anchor text by using descriptive terms that clearly convey the content of the linked page. Avoid generic phrases like “click here” and instead, choose specific, keyword-rich anchor text to enhance search engine visibility.
Noreferral Noopener Nofollow Links Audit: Conduct an audit on links with the attributes “noreferrer,” “noopener,” and “nofollow” to ensure they are appropriately implemented. These attributes impact how search engines and browsers handle the links, and a proper audit ensures adherence to SEO best practices.
Relevancy and Context: Guarantee the contextual relevance of internal links by linking to content that seamlessly aligns with the existing information. Link to related articles or pages that add significant value to the user’s experience and contribute to the overall thematic cohesion of the website.
Hierarchy and Structure: Establish a coherent hierarchy in the information architecture of your website. Utilize internal links strategically to guide users through the site structure, facilitating easy navigation and enabling them to locate relevant content seamlessly. A logical hierarchy enhances user experience and search engine understanding.
Diversify Link Types: Diversify internal linking strategies by incorporating various link types. Include contextual links within the content, navigational links in menus, and links to related posts. Additionally, create hub pages that serve as central points for specific topics, providing users with organized pathways to more in-depth content. This diversity strengthens the website’s internal linking profile, contributing to improved SEO.
2. Outbound Backlink Audit:
Backlink Count Analysis:
Conduct a thorough audit of the total backlinks pointing to your site, categorizing them based on their sources. Pay special attention to any abrupt increases or decreases in backlink numbers. Additionally, assess the authority and reliability of the domains linking to your site to ensure a healthy backlink profile.
Domain Authority (DA) Assessment for Backlinks:
Utilize tools such as Moz or Ahrefs to determine the Domain Authority of websites linking to your site. Prioritize backlinks from high-DA websites, as they typically offer more SEO value. Identify and disavow backlinks from low-quality or spammy sites to maintain a robust link profile.
Cost vs. Revenue Examination for Backlinks:
Evaluate the costs associated with obtaining or maintaining each backlink. Track the revenue generated from organic traffic attributed to these backlinks. Calculate the return on investment (ROI) for each backlink, factoring in the costs incurred. Identify backlinks with high costs and low revenue to assess their worthiness for retention.
STEP 6. Audit Mobile SEO
In the world full of Mobile users, it’s important to audit the mobile seo elements so Mobile SEO audit is the sixth step of SEO Checker Process:
1. Mobile Responsiveness:
Ensure that your website is designed to be responsive, adapting seamlessly to various screen sizes and devices.
Test the responsiveness using tools like Google’s Mobile-Friendly Test.
2. Mobile-Friendly Navigation:
Simplify navigation for mobile users with intuitive menus and easy-to-tap buttons.
Prioritize essential content to enhance the mobile user experience.
3. Touch-Friendly Elements:
Optimize elements for touch, ensuring buttons and links are easily clickable on touchscreens.
Adjust font sizes for readability on smaller screens.
4. Accelerated Mobile Pages (AMP):
Consider implementing AMP for content-heavy pages to provide a faster and streamlined experience for mobile users.
AMP can improve mobile loading times and enhance user satisfaction.
5. Mobile-Optimized Images and Media:
Optimize images for mobile devices to reduce load times without sacrificing quality.
Use media queries to deliver appropriately sized images based on the user’s device.
STEP 7. Keyword Audit for SEO
Now All the Technical Elements have been audited, now moving onto the next step of SEO Audit, i.e Keyword Audit:
1. Keyword Placement:
Integrate relevant keywords naturally into your content, including titles, headings, and body text.
Avoid keyword stuffing; maintain a natural and user-friendly flow.
2. Target Keywords in Headings and Subheadings:
Optimize header tags (H1, H2, etc.) with target keywords to structure content for both users and search engines.
Clearly communicate the hierarchy of information.
3. Keyword Placement in Meta Tags:
Craft compelling and keyword-rich title tags and meta descriptions to improve click-through rates from search results.
Ensure each page has a unique and descriptive meta title.
4. Performing Keywords Analysis:
Conduct an SEO audit to identify the keywords that contribute significantly to organic traffic. Prioritize optimization efforts by aligning content around these high-performing keywords, aiming to enhance visibility and achieve better results in search engine rankings.
5. Search Query Analysis:
In the context of an SEO audit, thoroughly review and analyze search queries related to your website. Gain insights into user behavior, preferences, and intent by examining the specific terms users employ. This analysis aids in refining content strategies and optimizing for queries that align with the target audience’s search patterns.
STEP 8. Page Load Speed Audit using Lighthouse
Auditing the Page Load Speed is another aspect of SEO Checker Process, as Page Load imposes a great impact on the bounce rate:
SEO Audit : Lightroom Insights
1. Performance:
Page Speed: Evaluate the loading speed of your web pages. Use tools like Google PageSpeed Insights to identify areas for improvement.
Mobile Performance: Assess the website’s performance on mobile devices. Mobile-friendliness is a crucial factor in SEO rankings.
Optimized Images: Ensure images are compressed and appropriately sized to minimize page load times.
Browser Caching: Check if the website leverages browser caching to reduce load times for returning visitors.
Content Delivery Network (CDN): Consider using a CDN to distribute content geographically, improving loading speed globally.
2. Accessibility:
Mobile Responsiveness: Confirm that the website is responsive and provides a good user experience on various devices.
Alt Text for Images: Ensure all images have descriptive alt text to assist users with visual impairments and improve SEO.
Proper Heading Structure: Verify that the content uses a logical heading structure (H1, H2, H3, etc.) for improved accessibility and SEO.
Keyboard Navigation: Check if the website can be easily navigated using a keyboard alone.
Color Contrast: Assess the color contrast to ensure readability for users with visual impairments.
3. Best Practices:
SSL Security: Confirm that the website uses HTTPS to ensure a secure connection.
Responsive Design: Ensure the website adapts well to various screen sizes and devices.
Valid HTML and CSS: Check for proper HTML and CSS markup to ensure compatibility with different browsers.
Avoidance of Duplicate Content: Identify and address any instances of duplicate content, which can negatively impact SEO.
301 Redirects: Verify the use of proper redirects to avoid broken links and maintain SEO value during site changes.
4. PWA (Progressive Web App):
Offline Functionality: Assess whether the website offers offline functionality for a seamless user experience.
Push Notifications: If applicable, verify the implementation of push notifications for engagement.
App-Like Experience: Ensure the website provides an app-like experience, enhancing user engagement and satisfaction.
Fast Loading on Low Connectivity: Confirm that the PWA performs well even on slow or unreliable network connections.
Responsive Design for PWA: Ensure the progressive web app design is responsive and user-friendly.
Impact of Page Load Speed on Bounce Rate
Bounce Rate on Basis of Page Load Speed
STEP 9. Social Media SEO Optimization Audit
Last step of SEO Checker is Social Media SEO Optimization, as it impacts the visibility of the content:
1. Content Sharing
Strategic Content Distribution:
Share a variety of content types, including blog posts, articles, infographics, videos, and images.
Tailor content for each social media platform to maximize engagement.
Consistent Posting Schedule:
Establish a consistent posting schedule to maintain a regular presence on social media.
Use scheduling tools to plan and automate posts, ensuring a steady flow of content.
Visual Appeal:
Use eye-catching visuals, such as images and videos, to accompany your social media posts.
Visual content tends to attract more attention and engagement.
2. Audience Engagement
Respond to Comments and Messages:
Actively respond to comments, mentions, and direct messages.
Encourage conversations and engage with your audience to build a sense of community.
Ask Questions and Encourage Feedback:
Pose questions in your posts to prompt audience interaction.
Encourage followers to share their opinions, experiences, or feedback.
User-Generated Content:
Encourage users to create and share content related to your brand.
Showcase user-generated content to build authenticity and strengthen community bonds.
Live Sessions and Webinars:
Host live sessions or webinars on social media platforms.
Engage with your audience in real-time, answer questions, and provide valuable insights.
3. Brand Authority Building
Share Industry Insights:
Share relevant industry news, trends, and insights to position your brand as an authority in your niche.
Provide commentary and analysis to showcase your expertise.
Educational Content:
Create and share educational content that addresses common questions or challenges within your industry.
Position your brand as a valuable resource for information.
Behind-the-Scenes Content:
Share behind-the-scenes glimpses of your team, office, or production process.
Humanize your brand and connect with your audience on a personal level.
Participate in Conversations:
Join relevant conversations in your industry or community.
Share insights, participate in Twitter chats, and contribute to discussions to showcase your expertise.
Conclusion
In conclusion, conducting a thorough SEO audit (SEO Checker) is an essential practice for optimizing website performance and enhancing online visibility. By evaluating factors such as on-page elements, backlinks, and technical aspects, businesses can identify areas for improvement, ensuring that their online presence aligns with search engine best practices. Regular SEO audits serve as a strategic tool for maintaining and improving search rankings, ultimately contributing to a more effective and competitive digital presence.
Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?/How to design datalists for mobiles using jQuery EasyUI Mobile ?/How to design menu using jQuery EasyUI Mobile ?/EasyUI jQuery menu widget/EasyUI jQuery datebox widget/How to make use of multi-mode jtsage-datebox plugin?/Step by step guide to make your first WordPress Plugin/Explain MonsterInsight Plugin in WordPress/How to Setup All In One SEO(AIOSEO) Plugin for WordPress?/WordPress SEO: Step-by-Step Guide, Benefits and Plugin/Difference Between Black Hat SEO and White Hat SEO/White Label Local SEO Services : A Complete Guide/SEO Checker | Complete SEO Audit in 9 Steps
|
https://www.geeksforgeeks.org/seo-checker-complete-seo-audit?ref=asr8
|
CSS
|
SEO Checker | Complete SEO Audit in 9 Steps
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, WordPress SEO: Step-by-Step Guide, Benefits and Plugin, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, How to design menu using jQuery EasyUI Mobile ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, Step by step guide to make your first WordPress Plugin, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, EasyUI jQuery datebox widget, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, Explain MonsterInsight Plugin in WordPress, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, EasyUI jQuery menu widget, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, How to make use of multi-mode jtsage-datebox plugin?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to Setup All In One SEO(AIOSEO) Plugin for WordPress?, SEO Checker | Complete SEO Audit in 9 Steps, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, White Label Local SEO Services : A Complete Guide, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, How to design datalists for mobiles using jQuery EasyUI Mobile ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Difference Between Black Hat SEO and White Hat SEO, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0117020719, -0.0309720524, -0.0082384292, 0.011573947, 0.0283070542, 0.000979621429, 0.00711093051, 0.0444507897, 0.0051634321, 0.050259117, 0.0466032848, -0.0217128955, 0.0216616448, -0.0587666072, -0.0159985255, -0.0202778969, -0.00571009843, -0.0150162345, 0.0127954036, -0.014777068, -0.0175274815, -0.0370024629, -0.0215933118, -0.0242583081, -0.0363191292, 0.0181424823, 0.00835374184, 0.0367632955, -0.00204252405, -0.00490291184, 0.0383007936, 0.0129576949, 0.0267012231, -0.00453989115, -0.0234724768, 0.00807613786, 0.0320653841, -0.0447924547, -0.0208758116, 0.0376857966, 0.00705113867, 0.00222083111, -0.000348072557, 0.00311556971, -0.00612436887, -0.0147514436, -0.000157753748, -0.0370707959, 0.00342734018, 0.00843488704, 0.0240020584, 0.0311770514, 0.0511816144, 0.0170406085, 0.0524799451, 0.0196116474, 0.0497807823, -0.0240874756, 0.00972894859, 0.0418882892, 0.0367291309, -0.00224005, -0.0191333145, -0.0188428983, -0.00404661056, -0.00945561565, -0.0412391238, 0.00736718, -0.0276066381, 0.0212345626, -0.0467399545, 0.0170576908, 0.0195091479, -0.038881626, 0.0050609326, -0.0164854, 0.0120181125, 0.0257616397, -0.0164768584, 0.0184158143, 0.01993623, -0.00736718, -0.0028507784, 0.0175104, 0.0692215934, -0.00709811784, -0.0262741409, -0.0830932483, 0.024668308, 0.0234383103, -0.0263766404, -0.0496099517, -0.00175424304, -0.0288708042, -0.00694863871, 0.012265821, 0.00781561714, 0.017143108, -0.0248733088, 0.0422299579, 0.0111981137, -0.00442030793, 0.0213370621, -0.0384374596, -0.00712801376, -0.0127270706, -0.0144781107, -0.0189966466, 0.0326462165, 0.00150226406, 0.0249416418, -0.0287170541, -0.00978019834, 0.00519759906, -0.0218666438, -0.0225328933, -0.00222723745, -0.0629691, 0.0240533091, 0.0432207882, -0.0279653892, -0.0102243647, 0.0151529014, 0.0333808, -0.0388474613, 0.0471499525, -0.0207049791, -0.0111724883, 0.0677524284, -0.0143158184, 0.0180570651, 0.0195945632, -0.0134531111, 0.00910540763, -0.00444593281, -0.0025368724, 0.0174847748, -0.024668308, 0.00163359207, -0.0350549631, -0.0180058144, 0.012752695, 0.0133847781, 0.00347645488, -0.0154433176, 0.025095392, -0.0164341498, 0.0453049541, -0.0226353947, 0.0266841389, -0.0281362217, -0.00705113867, -0.0113518639, 0.00374124618, -0.00698280567, -0.0410341248, -0.0151870679, 0.029964136, -0.043972455, -0.00981436484, 0.029690804, -0.0337395482, -0.0208587293, 0.0246170592, 0.0417857915, 0.0149393603, -0.00289348676, -0.0405216254, -0.0427082889, 0.0622516051, 0.00346150692, -0.0111383218, -0.0366949625, -0.0402824581, -0.0247024745, -0.00230838312, 0.044177454, -0.0145037351, -0.0219349787, -0.0249928907, -0.0178520661, 0.0200216472, -0.0122572789, -0.013871653, 0.0282045547, 0.0140254023, 0.0430841222, 0.0314674675, -0.0194066465, 0.0122145712, -0.0121718626, -0.0205341466, 0.0860315785, 0.038334962, 0.0104976976, -0.00390780857, -0.0338249654, 0.0372074619, 0.0273333061, -0.0369341299, -0.0347132981, -0.00471499516, -0.00826405454, 0.0454416201, 0.0212174784, -0.00296395528, 0.0326120518, 0.0324412175, 0.00622259779, -0.00151187344, -0.0547007769, 0.0130516533, -0.016237691, -0.00739707565, 0.00311984052, 0.0120181125, -0.0345937163, 0.00919936597, -0.0204487294, -0.000994035508, -0.033654131, -0.0107624894, 0.0142560275, 0.0225499775, -0.0269574728, -0.0174420662, 0.0408291258, -0.0127612371, 0.0639257655, 0.00237031, -0.0101474896, 0.00528301531, -0.0219349787, 0.0025027059, 1.13026817e-06, 0.0244462248, -0.00122999877, -0.00877228286, -0.0340470485, 0.0187574811, 0.025163725, 0.0370366275, -0.0107881138, -0.00574426493, -0.0405557938, -0.00796936732, 0.0177324824, 0.0354991294, 0.0168783162, 0.0600991063, 0.01993623, -0.00969478209, -0.019304147, 0.00195283652, -0.00239807041, 0.0282899719, 0.0405899584, -0.00450572465, 0.00675645145, -0.0319116339, 0.0352941304, -0.0149222761, -0.0115312384, 0.0101133231, -0.0036558297, 0.00861426257, 0.0110016558, 0.00070522062, 0.00337609043, -0.0304766353, 0.0714082643, 0.00331629883, 0.0152383177, 0.00121398317, -0.0480724499, -0.00220161234, 0.0105147809, -0.0470132865, -0.0184841473, 0.0468424521, 0.00595780648, -0.0597574413, 0.0449291207, 0.0182962306, -0.0204145629, -0.0534707792, -0.00739707565, -0.00398041261, -0.0385741293, 0.0177153982, -0.0324070491, 0.00562468171, -0.000591509801, -0.00528728636, 0.0389157943, 0.0242753923, 0.00106557179, 0.00823415816, -0.0242241416, 0.00673509715, 0.0223108102, 0.0119497795, 0.00910540763, 0.0343033, -0.0238653924, 0.043357458, 0.00435411, -0.0234724768, 0.00292551797, -0.0344570503, 0.0488241166, 0.00466801599, -0.00508655747, -0.0225499775, -0.0229770597, 0.0154091511, 0.0482091196, 0.0173310246, -0.0260691401, -0.0258983076, -0.0130516533, -0.027316222, -0.0333295502, 0.0622857697, -0.000815194508, -0.0182620641, -0.0190137308, 0.0138374856, 0.0143926935, -0.024394976, 0.0067735347, -0.0267524738, -0.00142966, 0.0240362249, 0.0380274616, -0.0401116274, 0.0083452, 0.0190649815, -0.011915613, 0.00487728696, -0.0174591485, -0.024463309, -0.0179033149, -0.00575280655, 0.0390866287, -0.00899436604, 0.0327145495, -0.00341879856, 0.0373782963, 0.010318323, 0.00174463366, 0.022789143, 0.0254028905, 0.0432549566, 0.0258983076, -0.010941864, -0.0305620525, 0.0194578972, -0.00690165954, -0.000472994318, 0.0365241282, -0.0526849478, -0.038471628, -0.00284650759, -0.000989230815, 0.0175445657, -0.00232119556, 0.014076652, 0.0483116172, -0.0201241467, -0.0240020584, 0.0175104, 0.00288708042, -0.0115056131, -0.0599282719, 0.0222083107, 0.0129149873, -0.0319287181, -0.0427766219, 0.0199874807, 0.0283583049, 0.0148368599, 0.0585957728, 0.0565799437, 0.00189945125, 0.0153066516, 0.0209441446, -0.00032832, 0.00209377403, -0.00111895718, -0.043357458, 0.0268549733, -0.0333295502, -0.0390182957, -0.024668308, 0.0123170707, -0.00199874793, 0.0332270488, 0.00809322111, -0.0328512155, 0.0151101928, 0.00906269904, -0.0119497795, 0.0360116288, -0.0118301967, -0.0128551954, 0.0145549849, -0.0292295534, -0.00376473577, 0.0139314439, 0.00251338282, -0.00292124716, -0.0314162187, 0.0083964495, 0.0205341466, 0.0379591286, -0.033312466, -0.00177773263, 0.0254712235, 0.0109760305, -0.0106770722, 0.0299983025, -0.0310233012, -0.00466374541, -0.00730738835, -0.00996811502, 0.0138118612, 0.0133164451, 0.0171345659, -0.00599197298, -0.0292808041, -0.00846051238, 0.0194066465, 0.0189966466, 0.0315016359, -0.0145122772, 0.0378566273, 0.00553926546, -0.0233358089, -0.0189795643, 0.0150333177, -0.00691020116, 0.000772486208, -0.0255224742, -0.0725015923, -0.0223620608, -0.0576391071, -0.014913735, -0.0101560317, 0.00360671501, -0.0317408, -0.0133933201, -0.0557941087, 0.0401799604, 0.0455782861, -0.0160156097, -0.015263943, -0.00806759577, 0.0271283053, -0.00300239283, -0.0237799753, 0.0285633039, 0.019304147, -0.019304147, 0.0176641494, 3.59683872e-05, -0.0385057926, -0.00279098679, 0.00495416159, -0.0173651911, 0.0137435282, -0.0555891097, 0.0405557938, 0.0388474613, 0.0281874724, 0.0162206087, 0.0132651953, -0.0114799887, 0.0130772786, 0.00391848572, -0.00238525798, 0.0512157828, 0.0470132865, -0.0117276963, -0.000711093, 0.024736641, 0.021815395, 0.015545818, 0.00866124127, -0.0287341382, -0.0640282705, 0.0106001981, -0.0454416201, 0.00538978633, 0.00237885187, -0.0238824766, -0.0457149521, -0.0341324657, -0.0193553977, -0.00226140395, -0.0188770648, 0.00503530726, -0.043357458, 0.0254712235, -0.0357041322, 0.0031710905, -0.0302887186, 0.0354649648, 0.0229428932, -0.00107891823, 0.0294858031, 0.0317920521, -0.0275212228, 0.0235408098, -0.00564176496, 0.0306474697, -0.0183303989, 0.0136324866, 0.019099148, -0.00485166162, 0.00736718, 0.029622471, 0.014640402, -0.00576989, 0.00247708079, -0.00473207841, 0.000317642902, 0.00937874056, 0.0142731108, -0.0370707959, -0.00809749216, -0.00328213209, 0.00594499381, 0.00782842934, -0.00146169122, -0.0038608294, -0.014008319, 0.0195091479, 0.0053812447, -0.0368657969, -0.0398724601, 0.0190820638, -0.0554524437, -0.00368786091, -0.0145464437, 0.00985707343, 0.0200899802, -0.016237691, 0.0111810304, 0.0274016391, 0.0159985255, 0.0112493634, 0.0228062272, 0.0096520735, -0.00105115783, 0.00582968164, -0.0291612204, 0.00174036284, 0.021747062, -0.0108564477, -0.0257274732, -0.0194920637, 0.0144610275, 0.0301008038, -0.00644468097, -0.0227037277, 0.00315187173, 0.0179887321, 0.00220161234, 0.00321379886, 0.00320952805, 0.00580832735, 0.00514634885, -0.0513182804, 0.00628238963, 0.0195603967, 0.0145208184, -0.0162120666, 0.0159387346, 0.0243778918, -0.00360244419, 0.0096520735, -0.00658134744, 0.0192187298, 0.0159045681, -0.00292978878, -0.00483884942, 0.00497551588, -0.00629520183, 0.00320525724, 0.0130004035, 0.0382324606, -0.0187916476, 0.000679595687, -0.0124622788, 0.0148881096, 1.39552676e-05, -0.00808040891, -0.000365422806, -0.000494081527, 0.0177153982, -0.00477051595, -0.00297890324, 0.0162718594, -0.000585103582, -0.0264108069, -0.0175274815, 0.0177324824, 0.00978019834, 0.0250099748, -0.00795655418, 0.0293320529, 0.0116337379, -0.0139826946, 0.0169808157, -0.0135129029, 0.00209911237, -0.00439041201, -0.00885769911, -0.0108649889, -0.00656853523, 0.0312624685, 0.00152895681, -0.00804197136, -0.000940650119, -0.000729244, -0.00620124396, 0.0023318727, -0.00656853523, -0.0300837196, -0.0253858082, -0.0192528963, -0.00349994446, -0.0366607979, -0.00783697143, 0.0131797781, -0.0103524895, -0.00364942336, -0.0041747354, -0.0133591527, -0.0244120583, 0.0217983108, -0.0139656113, 0.187643141, -0.00970332325, -0.00662405603, 0.00136559759, 0.0235066433, -0.000710559194, 0.00274400762, 0.0105147809, -0.00718780514, 0.0286316369, 0.0325949676, -0.0101133231, -0.0181083158, -0.00746540911, -0.00176385243, -0.000239967208, 0.0111554051, 0.014495194, -0.00737145077, 0.0262058061, 0.00476197433, -0.0222595613, -0.00937019847, 0.00478332862, -0.000119383018, 0.0195774809, 0.0241045598, 0.0491657853, -0.0265474729, -0.00553926546, 0.0260691401, -0.0232503936, -0.0114031136, -0.00932749081, -0.00346364244, -0.00799072068, 0.00253260159, -0.0144866519, 0.00193682092, 0.0150760263, 0.00354265259, -0.0451682881, -0.0116764465, -0.0119412383, 0.0279312227, -0.0184158143, -0.00193788868, 0.0029938512, 0.00983144809, 0.038471628, -0.0177153982, -0.0130772786, -0.01024999, 5.67553143e-05, -0.0183133148, 0.0167416502, -0.0219862275, -0.00556061929, -0.0127014453, -0.00732874265, -0.00805478357, 0.00935311522, 0.0262399726, -0.00619697291, -0.0114458222, -0.0095068654, -0.0332953818, 0.0401116274, 0.00352556934, -0.0256249737, 0.0164768584, -0.00718780514, 0.0252662245, -0.00515489047, -0.00136666524, -0.0219349787, 0.0138801942, 0.0112066558, -0.0295028873, -0.00621832721, -0.0363191292, -0.0321508, 0.0199191459, 0.0103524895, 0.0175445657, -0.0224987268, -0.0128466533, 0.0141279027, -0.0397699587, 0.0104208225, -0.00849467888, -0.0122401956, -0.0163914412, -0.00130473822, 0.000293619494, -0.0143414438, 0.0161351915, 0.0131968614, -0.0249758083, 0.0121120708, 0.0189283136, 0.00219307072, 0.0120608211, 0.0126587376, 0.01993623, 0.0183987319, -0.0160754, -0.0230112262, -0.0207733121, 0.0138887363, -0.0248903912, -0.00921644922, -0.0300666355, -0.0181766488, 0.00333124655, -0.00621832721, 0.032902468, 0.0063848896, 0.038403295, -0.00467655761, 0.00574426493, 0.0297762193, -0.00262869522, -0.0330049656, 0.0182278976, 0.0399066247, -0.0063763475, 0.0110529056, -0.00792665873, 0.0480382852, 0.00337181962, -0.0374807939, 0.0079352, 0.00614999374, -0.00898582395, 0.00808040891, -0.00750384666, -0.0234212261, -0.00359603809, -0.0042430684, 0.00081572833, -0.00376473577, 0.00307499687, 0.0190137308, 0.0173908155, 0.00202650833, 0.0261887237, -0.000149745945, 0.00967769884, -0.00161650882, -0.0084477, -0.0188258141, -0.0041405689, -0.0252149738, -0.0203974787, -0.015887484, -0.0351232961, -0.00703405542, -0.00884061586, -0.0243778918, -0.00496270321, -0.0374124609, -0.00398468366, -0.00815301295, -0.0240020584, -0.0060432232, 0.00827686675, 0.00644041, 0.0108393645, -0.0290758032, 0.00522322394, -0.00410853745, -0.000736184127, 0.0192187298, -0.0197141469, -0.0444166213, 0.0166220665, -0.0152554009, -0.0309208017, -0.00178840966, -0.0189283136, -0.0321337171, 0.0374466293, -0.0114201969, 0.0105147809, 0.0255908072, 0.0014093736, 0.014708735, 0.00939582381, -0.0132054035, 0.0354307964, -0.0224303938, 0.0170235243, 0.0118729044, -0.0122145712, 0.01164228, 0.0268720556, 0.00647884747, 0.0047875992, 0.00859717838, 0.0155714424, -0.0154604008, 0.00712374272, 0.00721343, -0.0136666531, 0.0157337338, 0.019867897, 0.0194237307, 0.0319287181, -0.0033419237, 0.0120351957, -0.00345296529, 0.0185012314, 0.0112322802, 0.0279141385, 0.0206708126, 0.00981436484, 0.0111895716, -0.00246426836, -0.0125818625, -0.0302374698, 0.0420591235, -0.00942144915, -0.0151016517, -0.0082427, -0.0261716396, -0.0390524603, -0.0127612371, -0.0139485272, 0.0159131084, 0.0322191343, -0.000673723291, -0.0188428983, 0.01937248, 0.00469791191, 0.0101474896, -0.0194578972, 0.0255908072, -0.0118131135, -0.0353283, -0.0125391539, -0.017493315, 0.00468509924, -0.0211149789, -0.00242156, 0.0136666531, -0.0119583216, -0.0341666304, -0.0041747354, -0.0335516334, -0.038881626, 0.00768322125, 0.0333637148, -0.0164683163, 0.0096520735, -0.0334149674, 0.0114372801, 0.00979728159, 0.0267524738, -0.00606884807, -0.0223108102, -0.00642332667, -0.0277774725, -0.000525578915, -0.00740134669, -0.00878082402, 0.00588093139, -0.015263943, -0.00562468171, -0.0223278943, -0.0115568629, 0.00269702845, 0.00363234, -0.0372416303, -0.0191845633, -0.00375192333, 0.00203718548, 0.0398724601, 0.00734155485, -0.0201924797, 0.0197824799, -0.0411024578, 0.00371348578, -0.00416619377, 0.0121889459, -0.0307670515, 0.00726895081, 0.00241942471, 0.0396674611, 0.0100193648, 0.00650447281, -0.0129406117, 0.0194578972, -0.0248391423, 0.0547691099, -0.0313308, 0.0181424823, 0.0397357941, -0.0119668627, -0.00630374346, -0.0117533216, -0.0186549816, -0.0113860304, 0.0313991345, 0.0275724716, 0.0151870679, 0.0047192662, -0.00736718, 0.00771311717, 0.0309378859, -0.00306859054, 0.00221869559, -0.0447582863, -0.0240191426, 0.0187062304, -0.00513353664, 0.00993394852, 0.000660376914, -0.0284437221, 0.00804624148, 0.0064873891, 0.00877228286, 0.00781988818, -0.0166733172, -0.0102585312, 0.00279312208, 0.0108564477, 0.00213968544, -0.00368572539, 0.0177837312, -0.0119754048, -0.00103567599, 0.00969478209, -0.0269574728, -0.0416832902, 0.00972894859, -0.0047192662, -0.027948305, -0.0299983025, 0.0189112313, 0.00133463403, 0.0361483, -0.0663857684, 0.0242753923, -0.0122999875, -0.0135299861, 0.0108137392, -0.0211833119, 0.00439041201, -0.0299299695, -0.0107283229, -0.0336370505, 0.0175104, 0.00625249371, 0.00585103594, 0.0108649889, 0.00132822781, -0.00468937028, -0.00157380046, -0.0101474896, 0.0107795727, 0.0166476909, 0.0392574593, 0.00179161283, -0.0089687407, 0.0112579055, -0.00610728562, 0.00862280373, -0.00402525626, -0.0198166464, -0.00580832735, 0.0417857915, -0.0100535313, -0.00156098802, -0.0244462248, -0.0145806102, -0.0415124595, -0.00326504884, -0.0200558137, -0.00195070112, 0.000367558212, 0.0142389443, 0.00756790908, 0.0021888, 0.00553499442, -0.0102158226, 0.00118729041, -0.00235322677, 0.0180228986, -0.00199234183, -0.0276237223, 0.0120779043, 0.00473207841, 0.000942251645, -0.0405557938, -0.0090029072, 0.00822988711, -0.00773447147, -0.0269916393, -0.0178179, 0.00463812053, 0.00464239111, -0.0172541495, -0.0129491538, 0.0116251968, 0.00654291, -6.63146284e-06, 0.00103247294, -0.00975457393, 0.00389072532, 0.0133335283, -0.0260520577, 0.00480041187, -0.0100876978, -0.00915665738, 0.0141279027, 0.00842634588, 0.000552538491, -0.00442457898, -0.0258641411, -0.0101304064, -0.0107624894, 0.00843061693, 0.0197824799, -0.0257787239, -0.00757217966, -0.016382901, 0.0139912358, -0.0123426961, 0.0143414438, -0.0243778918, -0.0141620692, -0.00399322528, -0.00517624477, -0.0141706103, -0.00242156, -0.00597916078, 0.012334154, -0.00237671635, 0.0361141302, 0.0319116339, -0.0174079, -0.0186037309, 0.00300879893, -0.00285932, 0.0200899802, -0.00563749438, -0.0123426961, 0.00254968484, -0.00620124396, 0.00412989175, -0.0180570651, 0.0140424855, -0.0106087392, 0.0789932534, -0.0244974755, 0.00842634588, -0.0264278892, -0.013307903, 0.00989124, 0.00351702771, -0.00704259705, 0.00854165759, -0.0405899584, 0.0352941304, -0.00243650796, -0.00790530443, 0.0108649889, 0.00838790834, 0.0333978832, -0.00380957942, -0.000906483445, 0.0146233188, 0.0207903963, -0.014845402, -0.0210637283, -0.0116081135, 0.000756470603, 0.00696572196, 0.0132054035, 0.00591082731, 0.00134104036, -0.0256420579, -0.00345296529, 0.0229770597, 0.0267866403, 0.00632082717, 0.00399536034, 0.0095410319, 0.0302716363, 0.000798645, 0.0118643632, -0.000133196474, -0.0195433144, -0.0106258225, -0.00872530323, -0.0240874756, 0.00314760092, -0.0203462299, -0.00353197567, -0.0223962273, -0.00606457703, -0.00156098802, 0.0254199747, -0.00415765215, 0.000196591602, 0.0013976288, -0.0254028905, 0.00436692266, 0.029690804, -0.000376633747, -0.00907978229, 0.0177495647, -0.0234553926, 0.0117362384, -0.00860999152, 0.0188599806, -0.0100620734, 0.0267353896, 0.0129491538, -0.0109162387, -0.0128039457, -0.0151016517, -0.0102585312, -0.0127954036, 0.0103951981, -0.00425801659, 0.0229087267, -0.000982290716, -0.000190719205, 0.0161351915, -0.0277262218, 0.00855874177, -0.0192528963, -0.000240234134, 0.0230283104, -0.0479699522, 0.0168441497, 0.00860144943, -0.00178627425, -0.00538551528, -0.0215078946, -0.0206024796, -0.0272649731, 0.012265821, -0.0280337222, -0.0213370621, 0.00404661056, 0.0135470694, -0.0395649597, 0.00864842907, 0.0269916393, -0.00130900904, 0.000517571112, 0.0193895642, 0.0095068654, 0.0154262343, -0.0102158226, 0.0175787322, -0.0022507268, 0.010386656, 0.0147856101, -0.000263056369, 0.00778145064, 0.0157166515, -0.0036344754, 0.00688457629, 0.0118045714, 0.00934457406, 0.00738426344, 0.0208928958, 0.0283583049, -0.00187809707, 0.0162633173, -0.00758072129, 0.0428791232, 0.000648098299, -0.014708735, -0.00130687363, 0.00396119384, -0.00425161049, -0.024599975, -0.0113774883, 0.0374466293, 0.00155671721, 0.0344912149, 0.0242412258, -0.0123256128, -0.0159045681, -0.0101731149, 0.000787967932, 0.0157764424, -0.00779426284, 0.00132075383, -0.0119668627, -0.00333978818, -0.0119583216, 0.0120181125, -0.0213199779, -0.00532999448, -0.0153749846, 0.00309635093, 0.0175958164, 0.029759137, -0.00613718107, -0.0272820555, 0.00683759712, 0.0256078914, 0.0230283104, -0.000696679, 0.00162825361, 0.00153536303, 0.0126758208, -0.00537270308, 0.00132182159, 0.0330733, 0.00401030853, -0.0102756144, -0.0133847781, 0.00884061586, 0.0107624894, 0.00978019834, -0.000937980833, 0.0115483217, -0.0275383051, -0.00145848806, 0.000147477069, 0.00449291198, 0.0123256128, -0.00535989041, 0.0167587325, 0.0117874881, 0.0176128987, -0.0160839427, 0.00841780379, -0.0132993618, -0.0104293646, 0.0151870679, -0.00595780648, -0.0223791432, -0.00491572404, -0.00996811502, -0.0104379058, 0.0264962241, -0.00812738761, -0.000805585121, 0.00776863797, 0.00880644936, 0.0157081094, 0.025437057, 0.00288280961, -0.0134274866, 0.00161757646, 0.0214224774, -0.0148795685, -0.00521468231, 0.00999374, 0.000373430608, 0.0176128987, -0.00185353984, -0.00558197359, 0.00153749844, 0.00153002446, 0.0196287297, -0.00894311629, 0.00903707463, 0.0169466492, 0.00592364, -0.000585637405, -0.00840072054, 0.0196970627, -0.0122914463, -0.00475770375, -0.0111981137, 0.00071643159, -0.0118045714, -0.00454416219, 0.0240533091, 0.00723051373, -0.00933603197, 0.013589778, 0.00202650833, -0.00396546489, 0.0222937278, -0.0292466376, 0.000201796676, 0.0096520735, 0.00970332325, 0.0120181125, 0.00860572048, 0.0205341466, -0.0117960293, -0.00789249223, 0.0157081094, 0.0206537284, 0.0343203805, -0.0226183105, 0.00992540643, 0.013658111, 9.58267265e-05, -0.00420676637, -0.0207562298, -0.0126331123, 0.0234895591, -0.00196458143, -0.0328512155, 0.0281191375, -0.0115397796, 0.015614151, -0.00919936597, -0.0119070709, 0.00201903447, -0.0211662278, -0.0208758116, -0.00397827709, 0.0136922775, -0.00607311865, 0.000726574799, -0.0176641494, 0.000586705108, -0.00455270382, 0.0025646328, 0.0140937362, 0.00777717959, 0.0045014536, 0.00565030659, 0.00785832573, -0.00927624106, 0.00212687277, 0.0096520735, 0.0207220633, -0.00258812238, -0.0163914412, -0.0138801942, 0.000748996623, 0.0220033117, 0.0192187298, -0.0233187266, 0.00582968164, 0.000131661654, -0.0143414438, -0.0372416303, 0.0064190561, 0.00568447355, 0.00491999509, 0.0255395584, -0.000696679, 0.00761061721, -0.0261716396, 0.0354307964, -0.0115141552, -0.00791811664, -0.0221912283, 0.00816582516, 0.0197653975, 0.0141449859, -0.0124366544, 0.00971186534, 0.00742270099, -0.0158020668, 0.0227720607, -0.0095068654, -0.00484739104, 0.00729457615, -0.00374765252, -0.0431182906, -0.00997665618, -0.0157935265, 0.00396546489, -0.00348713179, 0.00337822572, 0.00250484119, -0.00477051595, 0.00158554525, -0.0283412207, -0.00425374554, -0.0145976935, 0.00504812, -0.00471072458, -0.00286145555, -0.00858009513, 0.00563749438, -0.0088662412, 0.000554673898, -0.00148197764, -0.0369682945, -0.0236945599, 0.00579978572, -0.00816155411, -0.0198166464, 0.014982068, 0.00505239051, 0.00146382663, -0.0129149873, -0.0148966517, -0.00757645071, -0.0178691484, 0.00765759638, 0.0260862242, -0.00246213283, -0.019867897, 0.0143670691, -0.00690165954, 0.00096200424, 0.000593645207, 0.00185567525, -0.00260307034, 0.0178691484, 0.00661978498, 0.032765802, 0.0281020552, 0.0258812234, -0.0235920586, -0.0154945673, -0.0167331081, 0.0215420611, 0.00092623604, -0.000828007, -0.0247708075, -0.0230283104, -0.00781988818, -0.0220033117, 0.0311087184, -0.0168954, -0.0234212261, 0.00504812, 0.0206708126, -0.00204679486, 0.00628238963, 0.0484482832, 0.00640197285, 0.0175445657, 0.00317749684, -0.0202949792, -0.0215933118, -0.0168868583, -0.0261033066, -0.00391848572, -0.0120949876, -0.00642332667, -0.00068066339, 0.00769176288, 0.043357458, -0.0197312292, 0.00306431972, -0.00128658721, 0.0155543592, 0.0239508096, -0.0352257974, 0.00303015322, -0.00778999226, 0.00383093371, -0.0110016558, -0.00464666216, -0.00553926546, 0.00764051313, -0.00907124113, -4.05728752e-05, -0.010591656, 0.00692728488, -0.00984853134, -0.0192528963, 0.0318433, 0.0063635353, 0.0287170541, -0.0103610316, -0.0242241416, 0.000435357622, 0.00787967909, 0.0119070709, 0.00509936968, 0.0146916518, -0.000481269031, -0.00444166223, 0.0236262269, -0.0081700962, -0.0106856143, -0.00880644936, -0.000726574799, 0.00612436887, 0.0358408, -0.00238098716, 0.0113689471, 0.00606457703, 0.0100535313, -0.0138033191, -0.005470932, -0.0186720639, -0.0267695561, 0.00899436604, 0.0103354063, -0.0231478941, 0.00267140358, -0.00972894859, 0.0174506065, -0.00269702845, -0.0319970511, 0.00229770597, 0.00588093139, -0.0101901982, 0.00206921669, -0.00455270382, 0.008362283, -0.00577843143, 0.00863561593, -0.000276269246, 0.0027077056, -0.0031646844, -0.0157081094, -0.00223577907, -0.02550539, -0.00511645339, 0.0118814465, 0.0225328933, -0.0249074753, -0.00977165718, -0.00702978438, 0.0247024745, 0.0224303938, -0.00805905461, 0.0089687407, -0.00361312134, 0.00655145152, 0.0201241467, 0.0197312292, -0.0157679, -0.00581686897, -0.00641051447, 0.00871676207, -0.0212345626, 0.00759353396, 0.00327786128, -0.00697853463, -0.00708957622, 0.00128979038, 0.0102158226, 0.00574853597, -0.00120117061, 0.0179374814, 0.0399749614, 0.016656233, -0.00975457393, 0.00502249505, 0.000668384717, 0.0285291374, -0.00856728293, -0.0230624769, 0.00378822535, 0.0112579055, 0.00310062198, 0.00337609043, -0.00394411059, -0.0107283229, -0.0269233063, -0.00241942471, -0.00471499516, -0.00320952805, 0.0111981137, 0.0119924881, 0.021678729, -0.0028571845, 0.0118387379, 0.00459114136, 0.00139015482, -0.0154176932, -0.0200899802, -0.0107795727, 0.00249843509, 0.0310062189, 0.0100193648, -0.0109674893, -0.0214395616, 0.0186720639, -0.00548374467, 0.0125391539, -0.0135556115, 9.33576521e-05, -0.0316383019, -0.00424947497, 0.00861426257, 0.00778999226, 0.0169124827, -0.0140510276, 0.00846905354, 0.0197312292, -0.00350635056, -0.00483457837, -0.0156397764, -0.00922499, 0.00980582368, 0.0111041553, 0.0095154075, 0.0103439474, 0.00341239246, -0.00568020251, 0.00190585747, -0.00862707477, -0.0112408223, -0.0287512206, -0.00952394865, -0.0142987352, -0.00627811858, 0.00593218161, -0.0143414438, 0.0324070491, 0.00189411268, 0.0152895683, -0.00173075346, -0.00435197493, 0.005470932, -0.0200558137, 0.00313905929, -0.00730738835, -0.0254883077, -0.00269702845, -0.0230112262, -0.000227021257, -0.00629520183, 0.00134210801, 0.00676072249, 0.00431353739, -0.00833665859, 0.0108308224, -0.022584144, -0.0145293605, 0.0183987319, 0.00686322246, 0.00890895, 0.0111981137, 0.0179545656, -0.00153536303, 0.00155564945, -0.0122401956, -0.0130260289, -0.00312838214, -0.020004563, -0.0154518597, 0.00762770046, 0.00811457541, 0.0164256077, 0.00926769897, 0.0160070676, -0.0213712286, -0.00894311629, 0.00937019847, 0.0202949792, -0.00309635093, 0.00942144915, -0.0131541537, -0.00664113928, -0.0221741442, -0.00196244591, -0.00870822, -0.00564603601, 0.00802488811, -0.025437057, 0.00423452677, -0.00881499145, 0.00628666, 0.00125135295, -0.0085502, -0.000979621429, -0.00647030585, -0.0301349703, -0.00884915795, -0.0193383135, -0.00598343136, 0.00296822609, 0.0105660306, -0.00827686675, -0.00302588241, -0.0164768584, 0.0155116506, -0.00596634811, -0.00262442441, 0.0126758208, -0.00438187039, -0.0236091428, 0.0083281165, -0.0256933067, -0.00868686661, -0.00956665725, -0.010454989, -0.00700843055, 0.0159216505, -0.00276749721, 0.0036344754, -0.000158020674, -0.0119497795, -0.0053812447, -0.00520614069, -0.028084971, 0.0100022815, 0.00616280641, 0.00345082977, 0.00520614069, 0.0011392436, 0.00311556971, -0.00773874205, 0.00968624, -0.0138118612, -0.00852030423, -0.0158020668, -0.000205667107, 0.0321678855, 0.0148795685, -0.00297890324, -0.00386510021, 0.0165708158, -0.0136837363, -0.00759353396, 0.00175210764, 0.0320653841, 0.0103097809, 0.0359432958, 0.0113860304, -8.96874117e-05, 0.00925915688, 0.0038608294, 0.00220161234, 0.0224303938, -0.00220161234, -0.0162206087, -0.0137264449, -0.00202757609, -0.0041747354, -0.0208758116, 0.000861105917, -0.0200899802, 0.0316041335, 0.0229428932, 0.00735436752, -0.0212687291, 0.0210124794, -0.0249587242, -0.00592791056, -9.12889736e-05, -0.0269062221, -0.00795655418, -0.0229087267, -0.00746968, -0.00967769884, 0.00231265393, -0.00498832809, 0.0072903051, -0.00901144929, -0.0102243647, 0.000222083108, 0.0173053984, -0.0287512206, -0.00428364147, 0.00140083197, 0.000683332619, -0.0226012263, 0.0406924598, 0.0167672746, -0.016519567, -0.00521041127, 0.0208074786, 0.0123597793, 0.00793093, 0.0130687365, 0.0253174752, 0.00783697143, -0.0070041595, 0.0156739429, 0.00768322125, -0.00595353544, -0.0120608211, -0.0252833087, 0.00585957756, -0.00425588107, 0.000494615408, 0.0276578888, -0.00621405616, 0.00260734116, -0.00720488839, -0.00221228949, -0.0268037226, 0.0124793621, 0.0033141633, -0.0213199779, 0.00428364147, -0.00663686823, -0.0197653975, 0.00659416, 0.00725186756, -0.0168014411, -2.3456194e-05, 0.0051079113, 0.0205683131, -0.00398041261, -0.00173075346, -0.001254556, 0.0128722787, 0.0320995525, -0.00432848511, -0.00538551528, -0.00240447675, 0.017288316, 0.0282558054, 0.00147877459, -0.014076652, 0.0148026934, 0.00646176422, -0.00581259839, 0.0133676948, 0.012334154, 0.0118899876, 0.00658134744, -0.00736718, 0.0227037277, 0.00697853463, 0.0110529056, -0.00606030645, 0.0026799452, 0.00421957904, 0.0247537252, 0.00466801599, -0.0217299778, -0.0132054035, 0.00932749081, -0.0161095671, 0.0182620641, 0.00690593058, -0.00209590932, 0.00956665725, -0.00237031, -0.0035469234, 0.0310233012, -0.0100876978, -0.00918228272, -0.00531291123, 0.000368359, -0.0148966517, -0.0146916518, 0.00768322125, 0.00657707686, 0.024463309, -0.0147685269, 0.0162120666, 0.00948124, 0.0196628962, -0.00750384666, -0.000684400322, 0.0279824715, 0.0185866486, -0.00199127407, 0.009617907, 0.00662832661, -0.0134104034, -0.00623113941, 0.0139570693, -0.012334154, 0.00748676341, -0.017424982, 0.0097204065, -0.0126501955, 0.0125049874, -0.0263424739, -0.0197141469, 0.00401671464, -0.00271411194, -0.0115568629, -0.00830249116, -0.0031988509, -0.0166818574, 0.0094043659, -0.0145549849, 0.00531718228, -0.00095453026, 0.000301093445, -0.00912249088, -0.0324924663, 0.00289775757, -0.00898582395, -0.00306004891, 0.0241216421, -0.00556489034, -0.00989124, -0.00158127444, -0.0105489474, 0.00647884747, 0.00349567365, 0.00199020631, -0.00375192333, 5.88573639e-05, -0.0203633122, -0.0186891481, 0.0114201969, -0.00125028519, -0.000536789827, 0.00491145346, 0.0163231082, -0.00555207767, 0.00490718242, -0.00300879893, -0.0248220582, 0.00099723856, -0.00821707491, 0.00462530786, -0.0094726989, -0.00303869485, 0.000156018723, 0.0171260238, 0.00272051804, 0.0103781149, -0.00820853375, 0.0241728928, 0.00969478209, -0.0163658168, -0.0259666406, -0.01519561, 0.00888332445, 0.00339957979, 0.000691874302, 0.0130858198, 0.0126416543, -0.00811030436, 0.0159985255, -0.00114992075, -0.00702978438, -0.00525312, 0.00712801376, -0.0176128987, -0.00837082509, 0.00368359, -0.000124521364, 0.0251978915, 0.0193553977, -0.0100706145, 5.72224344e-05, -0.0100791566, -0.00537270308, -0.014358527, 0.00894311629, 0.00521895289, -0.00420249579, 0.00749957561, 0.00983144809, 0.0290758032, 0.00995957293, 0.0316895507, -0.000533853599, -0.0202437304, 0.0233699773, 0.000388912362, -0.0115141552, -0.00307286158, 0.0105745727, 0.00302374689, 0.0115056131, -0.00916519947, 0.00736290915, 0.00592791056, -0.0231820606, 0.0233187266, 0.00351062138, -0.0102158226, -0.0138118612, 0.00466801599, 0.0288537201, 0.0187916476, 0.0153408181, -0.00673509715, 0.0118814465, 0.00592791056, 0.0249245577, -0.0164597742, 0.00176812324, 0.000872316828, 0.00239807041, 0.00278244517, -0.00603041053, 0.00375192333, 0.00561614, -0.00131755078, -0.0181083158, 0.0359091312, 0.0126758208, 0.0118387379, 0.000872850709, 0.0224987268, 0.00301947608, -0.00623541046, -0.00563749438, 0.0118045714, 0.00802915823, -0.0162462331, 0.00583395222, 0.00646603527, 0.0169466492, 0.015964359, -0.013589778, -0.00572718168, -0.0241045598, -0.0080377, 0.0114372801, 0.0130431121, 0.0188770648, 0.0145976935, 0.00895165745, -0.0164170675, -0.00320525724, 0.0314674675, -0.00814874191, 0.0107881138, 0.00978019834, -0.00783697143, -0.00196458143, 0.0196799804, 0.0182791483, 0.00104742078, 0.00296395528, -0.00390994409, 0.00202437304, 0.00194109173, 0.00884915795, 0.0139314439, -0.0257787239, 0.0160070676, 0.00761061721, 0.0077003045, -0.0120437378, -0.00732020102, 0.00271624723, 0.0282728877, -0.0258128904, 0.012616029, -0.0114885299, -0.00340385083, -0.0134445699, -0.00225926866, -0.0271283053, 0.016101025, -0.0064318683, -0.0182449818, -0.0162547752, 0.015964359, 0.0137349861, 0.00485593267, -0.0100193648, -0.0130687365, -0.0026799452, 0.0267524738, -0.0131797781, -0.0110699888, 0.00486447429, -0.0339958, -0.0133335283, -0.0111126974, 0.0089687407, -0.00902853254, 0.0134189446, -0.0107881138, -0.0259837229, -0.00773447147, -0.00533426553, 0.0137264449, -0.0253174752, -0.0186208151, 0.0117020719, -0.0134189446, -0.00430072471, -0.0132481121, 0.00538551528, 0.00762343, -0.00110721239, 0.00195603957, 0.00350207975, 0.0134872785, 0.00870822, 0.0226012263, -0.00790957548, -0.00124708202, -0.0185695644, 0.00394411059, 0.0156910252, 0.0017296857, -0.00753801316, 0.0119583216, -0.00684613874, 0.00524030719, -0.0208416451, 0.000934243842, -0.0197312292, 0.00486020325, -0.0172626916, 0.00199234183, 0.00311343442, 0.00909686554, -0.00254968484, 0.010454989, 0.021747062, 0.00133463403, 0.0060432232, -0.0228233095, 0.00853311643, -0.0117704049, 0.0187745634, -0.0134531111, -0.0169808157, 0.0134445699, 0.0163743589, -0.00894311629, 0.0054154112, 0.00447582873, -0.015896026, -0.00941290706, 0.0252833087, 0.00598343136, -0.0043989541, 0.00297036162, 0.00237244554, -0.00461249519, 0.00016909813, -0.0214053951, -0.00552645279, -3.29487775e-05, -0.0138545698, -0.0224303938, -0.0196970627, -0.0308183022, 0.0257274732, 0.0100791566, 0.0121547794, 0.00790957548, 0.0347816311, 0.00987415668, 0.00665822253, 0.00985707343, 0.00210978952, 0.0100535313, -0.00502676563, 0.015887484, 0.00285504921, 0.0146489432, -0.0150589431, -0.01993623, -0.0116593633, -0.00512072397, -0.0187574811, 0.0235066433, 0.0191162303, 0.0128466533, 0.027384555, 0.00661551394, -0.0123683205, 0.0238141418, 0.00720488839, -0.0043776, -0.00264791399, -0.0011552592, -0.0186891481, 0.0168356076, -0.0203120634, -0.008362283, -0.00539405691, 0.00126309763, -0.00616707699, 0.000435357622, -0.0171004, 0.0343716331, 0.0147429015, 0.00362166297, -0.0112749888, 0.00401671464, 0.0130089456, -0.00482603675, 0.0196628962, 0.00388004817, -0.0169979, -0.0010885275, -0.001167004, -0.0042089019, -0.00310702808, 0.0164256077, -0.0073799924, 0.0108479057, -0.00849467888, -0.0154604008, -0.0166049823, 0.00925915688, -0.0137264449, 0.0122401956, -0.000992433866, 0.00440749573, 0.00210551871, -0.000772486208, -0.0165110249, 0.0151870679, -0.014495194, -0.00197846163, 0.00576134818, 0.00828540791, -0.00268635154, 0.0186378974, 0.012752695, 0.00226994557, 0.0106343646, -0.0193212312, 0.0116679044, 0.000450305524, -0.0191503968, 0.000117714728, -1.5723657e-06, -0.0114543634, -0.0176128987, 0.0156226922, -0.00489437, -0.0081700962, 0.00329708, 0.0148795685, 0.0144866519, -0.012752695, -0.00938728172, 0.00936165731, 0.0127697792, -0.0113689471, -0.000446835475, 0.0260008071, -0.00730311777, 0.00126416539, -1.25121942e-05, 0.00144781102, -0.00130794139, 0.0205341466, 0.0123597793, -0.00125028519, -0.0169637334, -0.0024749455, 0.00801207498, -0.0214737281, 0.000617134792, -0.0207049791, 0.00315827806, -0.00949832331, -0.0064873891, -0.00395692326, -0.0146916518, 0.0144695686, 0.00810176227, -0.0121376961, -0.0096520735, 0.00622686883, 0.0050054118, -0.00271838275, 0.0194237307, 0.000982290716, -0.00762770046, -0.00658134744, 0.00380317331, -0.0106001981, -0.000218212677, -0.00364088174, -0.0154091511, -0.002735466, 0.00906269904, 0.0394282937, 0.0124964453, -0.00762343, 0.0136666531, 3.65689739e-05, -0.017288316, -0.0226012263, -0.00394838164, 0.0131114451, 0.0317578837, -0.00484739104, -0.00254114321, 0.0116508212, -0.00814447086, 0.0167501923, -0.000844022608, -0.00264577847, 0.0147685269, 0.00936165731, 0.00163145666, 0.0121889459, -0.00721343, 0.00932749081, -0.0166135244, -0.00184820127, 0.0130943619, -0.0135726947, -0.00672228495, -0.0122914463, -0.0143926935, -0.0151870679, 0.0179887321, -0.0129491538, 0.00108745985, -0.00761061721, -0.0109333219, -0.00713228434, 0.00806759577, 0.00125028519, 0.0201924797, 0.00690593058, -0.00229984149, 0.00737572182, 0.0101645729, 0.0043989541, -0.00629947288, 0.00151827966, -0.00694436813, 0.00367504847, -0.00978019834, -0.0137008196, 0.0181253981, -0.000173102046, 0.00187809707, 0.0051079113, -0.00598343136, -0.0143158184, -0.00437332876, 0.0133762369, -0.00320312171, 0.0305108018, -0.00983999, 0.0152212344, 0.00374124618, -0.00374978781, -0.00178413885, -0.00911394879, -0.0136666531, 0.00108479057, 0.00165174308, 0.0392232947, 0.00675218087, 0.0184158143, -0.00320312171, -0.00784551259, -0.0123256128, 0.000588840572, -0.000469257327, 0.00385228777, -0.0106343646, 0.0149649847, 0.00184072729, 0.0203803964, 0.00165601401, 0.0133249862, 0.0119326962, 0.00967769884, 0.00712801376, 0.0209099781, -0.00767467963, 0.0025646328, -0.00258598686, 0.00653009769, -0.000731379492, -0.019304147, 0.0164341498, -0.0120864464, -0.0124708209, 0.0073458259, 0.0050054118, -0.0141535271, -0.000975884439, 0.00190478971, 0.00297036162, -0.0340128839, -0.00339103816, 0.00760207558, -0.00663686823, -0.00204679486, -0.0102414479, -0.0228916444, -0.00638916, -0.00971186534, 0.00921644922, 0.00491145346, -0.0241387263, 0.0189112313, 0.0104037393, 0.00913957413, 0.0326974653, 0.0163231082, 0.01715165, -0.00272478885, -0.0108479057, -0.021952061, 0.00263083074, -0.00145101419, 0.0117191551, 0.0047534327, -0.0198337305, -0.0134360278, 0.00199234183, -0.00869540777, -0.0190649815, -0.0023660392, 0.0205683131, 0.00160049321, 0.0154945673, -0.0121376961, 0.0280337222, -0.0105404062, 0.00317536131, 0.0155629013, 0.0158020668, 0.0283241384, 0.0121291541, 0.00185033667, -0.0170662329, -0.0242070593, -0.0199191459, -0.0231649764, 0.0135043617, -0.00399536034, -0.0110614467, 0.0233187266, -0.00973749, -0.000645429, 0.00387791265, 0.00428791251, -0.0235749763, 0.00414483948, -0.0245487243, -0.00212046667, 0.00565030659, 0.00841780379, 0.0552132763, 0.00352770486, -0.00213968544, -0.0203633122, 0.0051634321, 0.00163893064, -0.0054367655, 0.0125647793, -0.00993394852, 0.00399322528, 0.00114351441, 0.00453989115, -0.000334459299, 0.00377968373, -0.00323301763, -0.00398468366, 0.0214566458, 0.00491145346, 0.000790103397, 0.0170320664, -0.0167758167, -0.00249629957, -0.0721599236, -0.0198166464, 0.00349353813, 0.0041128085, 0.0250099748, -0.0171089415, -0.00153536303, 0.0226012263, 0.00889186561, 0.0156568587, 0.00134424341, -0.00701697217, -0.0216445606, 0.0021290083, -0.0124195712, -0.0176299829, 0.0125135286, 0.002823018, -0.00931040756, -0.00645749364, 0.0322020501, -0.00670093065, -0.0120779043, 0.00379036064, -0.00629947288, 0.00309208012, -0.0146745685, 0.00650447281, -0.0233528931, 0.00199554488, -0.0118899876, -0.00761915883, 0.0101304064, -0.00396332936, 0.00451426627, -0.0136666531, 0.00115846237, -0.0128893619, -0.00654718094, -0.0229599774, 0.00263937237, -0.0110272802, 0.00767895067, -0.00485593267, 0.00979728159, 0.0119412383, 0.00970332325, 0.0222766437, 0.0141449859, 0.0118814465, -0.0206366461, -0.00577416085, -0.00340598612, -0.00081946532, -0.0015268214, 0.00454416219, 0.00371135049, -0.0271283053, 0.000699882105, 0.0105147809, -0.0257616397, -0.0195945632, 0.00793093, -0.0169637334, 0.00309421564, 0.0048089535, -0.00439468306, 0.00219947705, 0.00237458083, 0.0109076975, 0.0214908123, 0.00677780574, 0.0140254023, 0.00174143049, -0.0150845684, 0.0117960293, 0.00694436813, 0.00152575364, -0.0159472749, 0.0169124827, -0.0078327, 0.00485593267, 0.0258299746, -0.0123854037, 0.0089602, 0.00641051447, -0.00425801659, 0.00989124, -0.00796936732, -0.00416405825, 0.0192187298, -0.0148881096, -0.014640402, 0.0101304064, -0.0205170624, -0.0129491538, -0.0163743589, -0.0138204023, 0.0152810263, 0.00726040918, 0.00117127481, -0.024531642, 0.00619270187, 0.0189966466, -0.00372843374, -0.00346150692, -0.00517197372, -0.014708735, -0.0209441446, 0.017219983, 0.0142389443, -0.010659989, 0.00994249, -0.01323957, 0.027879972, -0.00127911335, 0.019304147, -0.0179204, 0.00419608969, -0.00780707551, 0.00797790848, -0.0361824632, -0.00623541046, 0.00828113779, 0.017493315, -0.00217705499, 0.00352343405, 0.00384374615, -0.00681197224, 0.000462317228, -0.0123085296, 0.0117704049, 0.0147685269, 0.000113777554, -0.0107539473, 0.00252833078, -0.0041128085, 0.00205533649, -0.0120779043, 0.0127014453, 0.000531451311, -0.00802488811, 0.0145208184, -0.00680343062, -0.0231478941, -0.0240874756, -0.0166049823, -0.00667957636, -0.0223962273, -0.0146062355, 0.0145037351, 9.91633133e-05, -0.0013399726, 0.00129192579, -0.00942999, -0.00997665618, -0.0012524206, 0.0193383135, 0.0089345742, 0.000606457703, -0.00861853268, -0.0095154075, -0.014845402, -0.0196287297, 0.00525312, 0.00301947608, -0.00809322111, 0.0195774809, 0.00663259765, -0.00358536094, 0.0200387295, 0.0035405173, 0.00037049441, 0.0317408, 0.00808895, -0.00322874682, -0.006342181, -0.0175445657, 0.00472353678, -0.00829395, 0.00796082523, 0.0209099781, 0.00941290706, 0.00837082509, 0.000576028076, -0.00343374652, 0.00799926277, -0.00903707463, 0.00120864459, 0.00531291123, 0.019030815, 0.00594926486, -0.00503530726, -0.00277817436, -0.000157620278, 0.010873531, -0.0103610316, -0.00175531069, -0.00028854789, 0.00929332431, 0.0138972774, 0.00300452812, -0.00942144915, -0.00567166088, 0.0118045714, -0.0026799452, -0.0173737332, 0.0117704049, 0.00289562205, 0.0104293646, 0.00504812, -0.000657173805, 0.00271411194, -0.0186037309, -0.00948978215, 0.00797790848, -0.015682485, -0.00375619414, -0.006273848, 0.0193553977, -0.00517624477, 0.00571009843, 0.00931894872, -0.0083452, 0.0289220549, -0.0143414438, 0.0158704, -0.00231051841, -0.00453134952, -0.00160369626, -0.00180442526, 0.014777068, -0.000847225718, -0.00662832661, 0.00925061572, 0.000405461818, -0.0169381071, 0.00747395074, -0.0163145661, 0.0186208151, 0.019304147, -0.00760207558, -0.0113518639, -0.0187062304, 0.00576561922, -0.00720915943, 0.00504812, -0.00053812447, -0.00279525761, -0.00818717945, 0.0141876936, 0.0184841473, 0.00317322602, -0.00561614, 0.00666249311, -0.0173651911, -0.00101912662, 0.021952061, -0.000973749033, 0.0109162387, -0.011983946, -0.00115205615, 0.016237691, 0.00439468306, -0.00989124, 0.00993394852, -0.00803342927, -0.00365155889, -0.00856728293, 0.00147343602, 0.00913957413, 0.00747822179, -0.00973749, -0.0166818574, -0.00790103339, -0.0156226922, -0.00821280386, -0.0028571845, -0.0147429015, -0.0238141418, 0.0060560354, -0.00539405691, -0.00275895558, -0.0195603967, -0.0107539473, -0.00587239, -0.0170320664, 0.000900611049, -0.00143286318, 0.00672228495, 0.00931894872, 0.00269062235, 0.00553499442, 0.00444593281, -0.0176299829, -0.00603468157, 0.0116679044, -0.0111895716, -0.0100193648, 0.00184393045, 0.00561186951, -0.0238653924, -0.00763624208, 0.0105404062, -0.01519561, -0.0342520475, -0.0213712286, -0.0221741442, -0.0177324824, 0.00901144929, -0.00463384949, 0.00686322246, -0.0168441497, -0.00972894859, -0.0137264449, 0.00522322394, -0.00909686554, 0.00215890398, 0.00913103204, -0.00967769884, -0.010454989, -0.000953996438, -0.0036344754, -0.0159814414, 0.0158020668, -0.00529155694, 0.028084971, 0.0130260289, -0.019304147, 0.0063080145, -0.0112408223, -0.000490878418, -0.0236433093, -0.014008319, -0.00644041, 0.0172028989, -0.0144012356, 0.0115397796, 0.0043989541, -0.0151614426, 0.0167331081, 0.0186208151, 0.00888332445, -0.0289903879, 0.0340128839, -0.0219691452, -0.00357895461, 0.00194215949, 0.0228403937, -0.00884061586, -0.0135129029, -0.00860999152, -0.0100962399, 0.0358749628, -0.0115141552, -0.0130089456, -0.00013693345, -0.00330775697, 0.011983946, -0.00297463243, 0.00891749095, -0.0270941388, -0.0235920586, -0.00609020237, -0.00426655822, 0.0122231124, 0.0063763475, -0.000453508663, -0.00283796596, -0.000917694357, -0.00894311629, -0.00542822387, 0.0127099873, 0.0922499076, -0.00452707894, -0.00564176496, -0.0296566375, 0.0125135286, -0.0115312384, -0.0136495698, 0.0594841056, -0.00261374726, 0.0130943619, -0.00794801302, 0.0181083158, -0.0162291508, 0.0120351957, 0.00550082792, -0.0133847781, -0.00361525686, -0.0201753955, -0.0084477, -0.0102158226, 0.00356187136, -0.00909686554, 0.00915665738, -0.00596207753, -0.00735863857, -0.00145101419, -0.00416192273, 0.00375619414, -0.00267140358, 0.0179204, -0.0102926977, 0.0176128987, 0.0154774841, -0.00511218235, -0.0261203907, 0.0036899962, 0.00177773263, 0.01164228, 0.0153151928, -0.0089602, 0.00706395134, 0.00240447675, 0.0134274866, -0.0169722736, 0.0146489432, -0.0122829042, 0.0126758208, -0.0119668627, 0.0094043659, -0.0121462373, 0.0201924797, -0.0235408098, -0.00184179505, -0.0108051971, 0.0106001981, -0.0101987394, -0.000582968176, -0.00697853463, -0.0122145712, -0.00561614, -0.0103695728, 0.0323387161, 0.00682905549, -0.0041726, -0.0136922775, -0.0188770648, -0.0153835258, 0.00298744487, -0.0168099832, 0.00787540898, -0.0137264449, -0.0264791399, -0.00163786288, -0.00828967895, 0.00782842934, -0.0185524821, -0.0166476909, 0.0124024879, 0.00569728576, -0.0135385282, -0.00793093, 0.00552645279, -0.0272137225, -0.0136239445, -0.00573999435, 0.00425374554, -0.0306816362, -0.00332697574, -0.0073799924, -0.0025304663, -0.010386656, 0.0260520577, -0.0178349819, 0.0155116506, 0.0149479015, 0.0255395584, 0.00720488839, 0.0102243647, 0.0184670649, 0.00952394865, -0.00489864079, -0.000623007189, -0.0120266546, -0.0248049758, -0.0166818574, 0.00207241974, -0.00389072532, 0.0252833087, 0.0141022773, 0.0286316369, -0.013521445, -0.0162206087, 0.0335345492, 0.0271453895, -0.00428364147, -0.00559905684, 0.0194578972, -0.0172541495, 0.0129833203, 0.00156952965, 0.00800353382, 0.00235749758, -0.0087552, 0.00909686554, -0.00642759772, 0.00809322111, 0.00367291295, 0.0127014453, 0.00592791056, -0.00563322334, 0.0082427, -0.0166476909, 0.0145379016, -0.00571436901, 0.0101816561, 0.0262570567, -0.0044544749, -0.00318390294, 0.00944707356, 0.0113860304, 0.0125733204, 0.00907124113, 0.0117704049, -0.00113390514, 0.0108051971, -0.0025923932, 0.00923353247, 0.0159301925, 0.00807186682, -0.00405088114, 0.0129149873, 0.000394250907, -0.0083281165, -0.00739280507, 0.00429218309, -0.00955811515, -4.71459498e-05, -0.00685041, 0.00780707551, 0.00395051669, 0.000945988635, 0.00351062138, 0.0142987352, -0.0125733204, 0.00640624342, -0.000745259691, 0.00426869374, 0.00473634945, 0.038403295, 0.00224005, 0.0185012314, -0.00802061707, 0.00776436692, 0.0205853954, 0.0022443207, 0.0201583132, 0.0117020719, -0.00753801316, 0.0141962357, -0.0198508129, -0.0104806144, 0.00202864385, 0.00221869559, 0.0255224742, -0.00202544057, 0.00313478848, -0.00120437378, 0.000211672959, 0.0233870596, 0.00245572673, -0.0300666355, 0.00608166074, -0.0139143607, -0.00362379849, -0.00201476365, -0.0017595815, 0.00557770254, 0.00521895289, -0.0183816478, 9.19229205e-06, 0.0219349787, 0.0157422759, -0.00703405542, 0.0212003961, 0.0060218689, 0.0310233012, 0.00801207498, -0.00528728636, 0.00614572316, 0.0116337379, 0.0111468639]
|
04 Dec, 2023
|
Semrush Backlink Checker
04 Dec, 2023
The Semrush Backlink Checker is a vital tool in SEO. It allows users to explore a website's link profile, important for determining its authority and search engine ranking. This tool provides insights into the quantity and quality of backlinks, helping users improving their strategies. Analyzing competitors and identifying areas for improvement, contributes to optimizing content and enhancing overall SEO performance. As part of the Semrush platform, it plays a key role in establishing and maintaining a strong online presence.
What is Backlink?A backlink, also known as an inbound link, is a hyperlink on one website that directs users to another site. It serves as a reference to search engines that the linked content is valuable or relevant. Backlinks play a pivotal role in search engine optimization (SEO), contributing to a website's authority and search ranking. Essentially, they represent a vote of confidence from one site to another, influencing the perceived credibility and importance of the linked content in the eyes of search algorithms.
What is the Semrush Backlink Checker?The Semrush Backlink Checker is a tool designed for analyzing the backlink profile of a website. Operating outside artificial intelligence, it provides users with valuable insights into the quality and quantity of backlinks, offering a complete overview of a site's link landscape. This tool helps in competitor analysis, allowing users to identify successful strategies and potential link-building opportunities. By assessing anchor text distribution and evaluating the overall link profile, the Semrush Backlink Checker proves useful in improving SEO strategies and improving a website's search engine performance.
What is the use of Semrush Backlink Checker?The Semrush Backlink Checker is a versatile tool with multiple functions crucial for effective Search Engine Optimization (SEO).
Competitor Analysis: Users can analyze the backlink profiles of competitors to identify potential link-building opportunities or understand their link-building strategies.Link Profile Evaluation: Users can assess the quality and quantity of backlinks to their own website, identifying areas for improvement and ensuring a healthy link profile.Anchor Text Distribution: The tool shows the distribution of anchor texts used in backlinks, helping users ensure a diverse and natural anchor text profile.Backlink Quality Assessment: Semrush assigns a "Backlink Score" to each link, indicating its estimated quality. This helps users focus on high-quality backlinks that positively impact SEO.How does Semrush Backlink Checker help in website ranking and traffic?Semrush backlink checker helps in website ranking and traffic generation by following ways:
SEO Strategy: The Semrush Backlink Checker aids in shaping an effective SEO strategy by providing a comprehensive understanding of a website's backlink environment. Users can focus on acquiring high-quality backlinks, which are crucial signals to search engines, indicating the site's credibility and relevance. Avoiding potentially harmful backlinks is equally important, as it ensures the site's link profile remains favorable for search engine algorithms.Competitive Advantage: Analyzing competitors' backlink profiles is a strategic move to gain a competitive edge. By identifying gaps and opportunities, users can replicate successful link-building strategies employed by competitors. This insight enables businesses to stay ahead in the digital landscape by adapting and improving their own backlink strategies.Identifying Issues: The Backlink Checker acts as a diagnostic tool, helping users pinpoint potential issues within their link profiles. Detection of toxic backlinks or sudden changes in the link landscape is critical. Addressing these issues promptly is essential to maintain or improve website ranking, preventing any negative impact on search engine visibility.Content Optimization: Insights derived from the Backlink Checker guide content optimization efforts. Understanding which types of content attract relevant and valuable backlinks allows users to tailor their content creation and marketing strategies. This ensures that the content not only resonates with the target audience but also attracts organic backlinks, contributing positively to the overall SEO efforts.Is Semrush Backlink Checker accurate?Semrush is widely regarded as a reputable SEO tool, and its Backlink Checker is considered accurate. However, like any tool, its accuracy depends on the comprehensiveness and freshness of the data it collects. Users should consider combining insights from multiple sources for a more comprehensive analysis.
Explain in detail about Semrush Backlink CheckerThe Semrush Backlink Checker provides a user-friendly interface for analyzing backlinks. Key features include:
Semrush Backlink Checker Overview: The Semrush Backlink Checker is a user-friendly tool designed to analyze and understand a website's backlink profile. It provides a snapshot of critical metrics, including the total number of backlinks, referring domains, and the authority score associated with linking domains. This overview is instrumental in assessing the overall health and strength of a site's link profile.Backlink Types: The tool categorizes backlinks into various types, such as follow, nofollow, text, and image links. This categorization offers insights into the diversity of the link profile. Understanding the distribution of these link types is essential for maintaining a balanced and natural link structure, as different link types contribute to the overall link profile in distinct ways.Anchor Text Analysis: Semrush Backlink Checker delves into the distribution of anchor texts used in backlinks. This analysis helps users ensure a natural and diverse anchor text profile, a critical aspect of SEO. A balanced anchor text distribution contributes to a more organic and credible link profile, positively influencing search engine rankings.Referring Domains: The tool provides a list of domains that link to the analyzed website. This feature allows users to assess the diversity and authority of referring domains. A diverse set of referring domains contributes to a robust backlink profile, while assessing the authority helps gauge the credibility of the sources linking to the website.Backlink Quality Score: Semrush introduces a Backlink Score for each link, offering an estimated quality assessment based on various factors. This score assists users in prioritizing high-quality backlinks that positively impact SEO efforts. It serves as a valuable metric for identifying the most impactful links within the overall link profile.Toxic Score: The Backlink Checker includes a Toxic Score, flagging potentially harmful backlinks. This feature is crucial for identifying and disavowing links that may have a negative impact on a website's SEO. By addressing potentially toxic links, users can safeguard their site's reputation and prevent any adverse effects on search engine rankings.Explain the Semrush Backlink DatabaseThe Semrush Backlink Database is a vast and regularly updated repository of backlink data. It includes information on a wide range of domains and their respective link profiles. Semrush employs crawling and data collection techniques to continuously update and expand this database, providing users with the most current and comprehensive backlink insights.
The database includes details such as:
Linking Domains: This section of the database provides information on domains that link to a specific website. Understanding linking domains is essential for evaluating the diversity and reach of a website's backlink profile. A diverse set of linking domains contributes to a robust and credible link profile, positively influencing a site's authority and search engine rankings.Backlink Count: The Backlink Database includes the total number of backlinks a website has. This metric serves as a fundamental indicator of a site's overall link popularity. A higher backlink count often correlates with greater online visibility and influence, making it a crucial factor in assessing a website's digital presence.Anchor Texts: This aspect of the database reveals the text used in hyperlinks that point to a particular website. Anchor texts are significant for SEO as they provide context to search engines about the linked content. A diverse and natural distribution of anchor texts is crucial for maintaining a healthy link profile and ensuring the relevance of the linked content.Follow/Nofollow Attributes: The Backlink Database indicates whether a link passes link equity (follow) or not (nofollow). Understanding these attributes is vital for SEO strategy, as follow links contribute to a website's authority and search engine rankings. The mix of follow and nofollow links shapes the overall link profile and influences how search engines perceive the site's credibility.Link Quality Metrics: Semrush assigns scores and metrics indicating the perceived quality of each backlink. These quality metrics consider various factors, such as the authority of the linking domain and the relevance of the link. Users can leverage these scores to prioritize high-quality backlinks, contributing positively to SEO efforts and enhancing the overall credibility of the website in the eyes of search engines.ConclusionThe Semrush Backlink Checker is a valuable tool for SEO professionals, marketers, and website owners. By providing in-depth insights into backlink profiles, it enables users to refine their SEO strategies, gain a competitive edge, and enhance their websites' overall performance in search engine rankings. Regularly monitoring and optimizing the backlink profile using tools like Semrush contribute significantly to a robust and effective SEO strategy.
Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?/How to design datalists for mobiles using jQuery EasyUI Mobile ?/How to design menu using jQuery EasyUI Mobile ?/EasyUI jQuery menu widget/EasyUI jQuery datebox widget/How to make use of multi-mode jtsage-datebox plugin?/Step by step guide to make your first WordPress Plugin/Explain MonsterInsight Plugin in WordPress/How to Setup All In One SEO(AIOSEO) Plugin for WordPress?/WordPress SEO: Step-by-Step Guide, Benefits and Plugin/Difference Between Black Hat SEO and White Hat SEO/White Label Local SEO Services : A Complete Guide/SEO Checker | Complete SEO Audit in 9 Steps/Semrush Backlink Checker
|
https://www.geeksforgeeks.org/semrush-backlink-checker?ref=asr3
|
CSS
|
Semrush Backlink Checker
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, WordPress SEO: Step-by-Step Guide, Benefits and Plugin, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, How to design menu using jQuery EasyUI Mobile ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, Step by step guide to make your first WordPress Plugin, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, EasyUI jQuery datebox widget, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, Explain MonsterInsight Plugin in WordPress, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, EasyUI jQuery menu widget, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, How to make use of multi-mode jtsage-datebox plugin?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to Setup All In One SEO(AIOSEO) Plugin for WordPress?, SEO Checker | Complete SEO Audit in 9 Steps, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Semrush Backlink Checker, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, White Label Local SEO Services : A Complete Guide, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, How to design datalists for mobiles using jQuery EasyUI Mobile ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Difference Between Black Hat SEO and White Hat SEO, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.00686335564, -0.00472121546, -0.0122960405, -0.00543655129, 0.045441214, -0.00558735151, 0.0224731397, 0.0183435269, -0.016178187, 0.0418529361, 0.0540407114, -0.0110277692, 0.0167349875, -0.0466166846, 0.00223107403, -0.0134251108, 0.00465934863, -0.02638622, 0.0285515599, -0.0131157758, 0.00930323079, -0.0287990272, -0.0301291645, -0.0342123769, -0.0418220051, 0.0161936525, 0.0227515418, 0.0407702662, -0.00134657102, -0.000797019282, 0.0477921553, 0.00805816, 0.0302528981, -0.00330021069, -0.0298662316, -0.020957401, 0.0278864913, -0.0433996096, -0.0305777, 0.00221174047, -0.000544718467, -0.0229062084, 0.0220864713, -0.00692135608, -0.0163637865, -0.0234475434, -0.00595855294, -0.0338411778, 0.00679762242, -0.00183377264, 0.0301910322, 0.025705684, 0.0257984847, -0.00431908062, 0.0436161421, 0.0320779718, 0.0412652, -0.0127523085, 0.00088015286, 0.0370891877, 0.0239888784, 0.00935736392, -0.000533601735, -0.0184672605, -0.00458588172, 0.00605522, -0.0279019587, -0.0253963489, 0.00195847312, 0.0078532258, -0.015752852, 0.0171835236, 0.0424406715, -0.0623308718, 0.0145387147, 0.0201531332, 0.0100997668, 0.00540175103, -0.0162091199, 0.0261696856, 0.028489694, 0.00383767928, 0.00304307672, 0.0167040545, 0.05663912, -0.0300982315, -0.024994215, -0.0580001883, 0.0269430224, 0.0123037733, -0.035233181, -0.0481942892, 0.0251024812, -0.0245147459, -0.0134096434, 0.0139664458, 0.0121027064, 0.0291856956, -0.0378006585, 0.0365014523, 0.00645735441, 0.00220980728, 0.0201531332, -0.0283040926, 0.0259840842, 0.00148673821, -0.0481633581, -0.00959709845, 0.0325419717, 0.015041383, 0.0142912464, -0.0234475434, -0.0136571117, 0.0270512886, -0.0149021819, -0.00313587696, -0.0161163192, -0.0390070602, 0.0166731216, -0.00236834097, -0.0302528981, 0.0153197832, 0.0135488445, 0.0257984847, -0.0272987559, 0.0210502017, -0.0247003473, 0.00245147478, 0.0478230901, 0.000686335552, 0.025195282, 0.0259531513, 0.00394787965, 0.0076830918, -0.0122960405, 0.0301446319, 0.0353878476, -0.013649378, -0.0124507071, -0.0395638645, -0.0184672605, -0.0104091009, 0.00574201858, 0.0188229941, 0.00753615797, -0.00888562948, -0.00335047767, 0.0563916527, -0.0240043458, 0.00454721507, 0.0302065, -0.00517748343, 0.0249323491, -0.0119171059, -0.015582718, -0.0502049625, -0.031706769, 0.00423014723, -0.00745495781, 0.0182661936, 0.0340886451, -0.0206171349, 0.00779135898, 0.0446060114, 0.00389181264, 0.0227515418, 0.0142216468, -0.0627020746, -0.0387595929, 0.0537623093, -0.00530121755, -0.00526641728, -0.0127445748, -0.022720607, -0.00745109096, 0.00915629696, 0.0306086335, -0.0269584879, -0.0142139131, -0.0292166285, -0.0219936725, 0.00856082793, -0.0106952349, -0.0127059082, 0.0190549958, 0.0241744798, 0.0522156358, 0.0224731397, -0.0206635334, -0.00176223915, -0.024623014, -0.00556415133, 0.0747351795, 0.0354187824, 0.0303611662, 0.025365416, -0.0431212075, 0.0591137931, 0.0249168817, -0.0736215711, -0.0366561189, -0.00382994581, -0.00041180136, 0.0318305045, 0.0445132107, 0.013649378, 0.021297669, 0.0104941679, -0.0138736451, -0.0108653689, -0.0536076427, 0.0131235095, -0.0253963489, -0.0127755087, -0.00126730418, 0.0208336674, -0.0312891677, -0.0194416642, -0.0128296418, -0.00752455788, -0.0208800677, -0.0074162907, 0.0263088867, 0.0297734309, -0.053112708, 0.0172763225, -0.00540175103, -0.0287371613, 0.0592065938, 0.0189467277, -0.0083365608, 0.0311654359, -0.00227554073, -0.0115845716, -0.0159152523, 0.0210192688, -0.00825922657, -0.0258603506, -0.0205243342, 0.0118243052, 0.0316758379, 0.0495862961, -0.0169515219, -0.00163173862, -0.023401143, -0.0160853863, 0.0427190736, 0.0289227609, -0.0202304665, 0.026726488, 0.00957389828, 0.0127213746, -0.00517361704, 0.0118475053, -0.0172453895, 0.0295259636, 0.037676923, -0.0201840661, 0.0184827279, -0.0321707726, 0.0473900214, -0.0236640777, -0.011600038, 0.00316681038, -0.0208182018, -0.00867682882, 0.0119789727, -0.0100610992, 0.000948303088, -0.0202768669, 0.039966, -0.00646122126, 0.00663522165, -0.00880056247, -0.0503905639, -0.00986003224, 0.0391307957, -0.0340577103, -0.011801105, 0.0167349875, 0.00588895241, -0.0604748651, 0.0295104962, 0.0444204137, -0.00914083, -0.0407393314, -0.0225040745, -0.0181269925, -0.0119480388, 0.00777589204, -0.0180805922, -0.00394594623, 0.0191632621, 0.023432076, 0.021467803, 0.0150877824, 0.0124352407, 0.0119016385, -0.0331915766, -0.00512721669, -0.00157760514, 0.0201685987, -0.012852842, 0.0102467006, -0.0147243151, 0.027639024, 0.0152733829, 0.0293248966, 0.00564535195, -0.0290774293, 0.0386049263, -0.0015853385, -0.010919502, 0.0052973507, -0.0167659223, 0.0044273478, 0.0385739915, -0.0112443035, -0.0372129232, -0.0219936725, 0.0063297539, -0.0179259256, -0.0392545275, 0.0757250488, 0.00801949296, -0.0121568395, -0.0291238278, 0.012937909, 0.013649378, -0.0259222183, 0.00285554258, 0.0190704633, -0.00873096194, 0.0259840842, 0.0274843574, -0.0498647, 0.0068981559, 0.0319233052, 0.00121800404, 0.0191477966, -0.0176320579, -0.0155131174, -0.0320779718, 0.0153661836, 0.0434614755, 0.00419921381, 0.0203696657, 0.00730029074, 0.0145851141, 0.0101384334, 0.00149447157, 0.00759415794, 0.0142371133, 0.0431521423, 0.00483334903, -0.0115227047, -0.020447, -0.00306047662, -0.0126363076, 0.0264480859, 0.0131467097, -0.029201163, -0.0262779519, 0.0334081091, -0.0270822216, 0.00937283, -0.0224112738, 0.010378167, 0.0333771743, -0.0255819503, -0.0144768469, 0.0186992604, 0.0128683085, 0.00799629278, -0.0249787476, 0.0129611092, 0.0176165905, -0.0194725972, -0.0286752935, 0.0229835417, 0.0330678411, -0.000404792983, 0.0403990671, 0.04333774, -0.00289227604, -0.00225040736, 0.0116619049, 0.0161008518, -0.0116696386, -0.00725002354, -0.00793442596, 0.0206635334, -0.0286288932, -0.0294022299, -0.0101693664, 0.00113100372, -0.0494006947, 0.0474209562, 0.0157683175, -0.0153584499, 0.0257211514, 0.0298352968, 0.00350901159, -0.00102177006, -0.0282576922, 0.00953523163, 0.0144536477, -0.0382646583, -0.0181733929, 0.010633368, 0.0155749843, -0.0107416352, -0.0378934555, 0.0044273478, 0.0302374326, 0.0504833646, -0.0252416823, 0.0167504549, 0.0316758379, 0.0237568785, -0.0359755829, 0.0190704633, 0.00379321235, -0.00644575432, -0.0159307197, 0.00861496106, -0.0020416067, 0.00328087737, 0.0139123118, -0.0151960496, 0.00328667741, 0.00589281926, 0.0219627377, 0.0222720727, 0.0332534425, -0.0340577103, 0.0626711398, 0.00629882049, -0.016889656, -0.00229487428, 0.0397185311, -0.00624855375, -0.000208800688, -0.0250406154, -0.0645890087, -0.0289846286, -0.0551543124, -0.0205398, 0.017771259, -0.00780682545, -0.0279483572, -0.0141907129, -0.0631970093, 0.0340577103, 0.0213595368, -0.0270203557, 0.0231382083, -0.00731189037, 0.043585211, 0.024793148, -0.0504524335, 0.0473281555, 0.00791895948, -0.0182352588, -0.00474054879, 0.00924136396, -0.0439564101, 0.00261000847, -0.0088624293, -0.0124661746, 0.0176165905, -0.053112708, 0.0637847409, 0.0220710058, 0.0298507642, 0.0236640777, 0.0397494622, -0.0404918641, 0.00697162282, 0.0131467097, 0.00747042429, 0.0492460281, 0.00632202066, -0.0105405683, 0.0183125939, 0.0150955161, 0.00561441854, 0.0106488345, 0.0321398377, -0.0404918641, -0.0449462794, 0.0145387147, -0.0625164732, -0.0340886451, -0.000184996432, -0.000567918527, -0.0545975119, -0.0183899272, -0.00175837241, -0.0107880356, -0.0252880827, 0.0158301853, -0.0355115831, 0.0144691141, -0.0283350255, 0.0234630108, -0.031706769, 0.0296187643, 0.0178485923, -0.0392545275, 0.0428737402, 0.0119093722, -0.0149795152, 0.0339958444, -0.00162303867, 0.0198283307, -0.016008053, 0.0100533664, 0.00955843087, 0.00506148301, 0.0243446138, 0.00275887572, 0.0172453895, 0.00781455915, 0.00786869228, -0.0155749843, -0.0109427022, 0.0361302532, 0.0154899172, -0.0422550701, 0.00384927937, -0.00227360753, 0.000803302624, 0.0174155235, -0.0140824458, 0.0235867444, -0.0143763134, 0.021839004, -0.000251334161, -0.0245456807, -0.0269120876, 0.0358827822, -0.0397185311, -0.00219434057, -0.00245147478, 0.00533601735, 0.0272059552, -0.00860722829, 0.00719589042, 0.0255664829, 0.0123269735, 0.00106817018, 0.037336655, 0.00888562948, 0.00114647043, 0.0050730831, -0.0256592836, -0.00104110339, 0.019983, 0.0160853863, -0.00777975889, -0.012512574, 0.0154899172, 0.012937909, 0.000289759279, -0.0259067509, 0.0071997568, 0.0261387527, -0.0106643019, 0.000869519485, -0.0081741605, 0.0107957684, 0.0071224235, -0.0308251679, -0.00805042591, 0.024112612, 0.0216224715, -0.00780295907, 0.025334483, 0.0177403241, -0.00183860597, 0.0166421887, -0.0131544434, 0.015582718, 0.0306395665, -0.00360761187, -0.0109272357, -0.0117392382, -0.00516201695, 0.0118320389, 0.00994509924, 0.0154667171, -0.0314129032, -0.022689674, -0.00467868196, 0.0371819884, 0.00405614637, -0.0209883358, 0.0116077717, -0.000692618953, 0.0250560828, -0.0187611282, 0.0163328536, 0.0225040745, 0.0150800496, -0.00649988791, -0.0251179487, 0.0131621761, 0.0121568395, 0.0186373945, -0.023261942, 0.0273606237, 0.0105792349, -0.0050730831, 0.00469028205, -0.00583481928, 0.00907123, 0.00375261228, 0.0178949926, 0.00928776339, 0.0037990124, 0.0347691812, 0.00791122578, -0.0145541811, 0.0123888403, -0.0112443035, -0.0178331248, -0.0106952349, -0.00324994395, -0.0100765666, -0.0375222564, 0.00900162943, 0.00906349625, -0.0325110406, 0.0147320479, 0.00795762613, -0.0104477676, -0.00725389039, -0.0188539289, -0.0172299221, -0.00527028413, 0.00956616458, -0.00444668112, 0.167782947, -0.0172608569, -0.0100610992, -0.00278787571, 0.0320161059, -0.0280720927, -0.00789575931, -0.00432681432, -0.00969763193, -0.0162400529, 0.0222566053, -0.00537468446, -0.0150955161, 0.00157760514, -0.0146083143, 0.00848349463, 0.0304075666, 0.0101152332, -0.0162555203, 0.0221947394, 0.00846802816, 0.000893686258, -0.0313355699, 0.00705669, -0.00262354198, 0.00310687674, 0.0058232192, 0.0330678411, -0.0282422248, -0.0278864913, 0.0259376857, -0.0282886252, 0.00445441436, -0.00670095533, 0.0140205789, 0.00898616295, -0.0379862562, -0.0174773913, -0.00942696445, 0.00887789577, -0.000161917196, -0.0151651166, -0.00987549871, -0.0166731216, 0.0355425179, -0.0261851531, -0.00736989081, 0.00939603057, -0.0146701811, 0.02553555, -0.010633368, 0.0190549958, -0.0213595368, -0.0075090914, -0.0389451943, -0.00729642389, 0.00974403229, 0.00541335111, 0.00330601074, 0.00656948797, -0.0139355119, 0.0100997668, 0.0385739915, -0.00294060959, -0.0322017036, 0.00203387323, -0.0220555384, 0.0196272638, -0.00369461207, -0.00900162943, 0.00265060877, -0.0297270305, 0.0165803209, -0.0138891125, -7.0687729e-06, -0.00708375638, -0.0162555203, 0.0235558096, 0.0062098871, 0.0197355319, -0.0431212075, -0.0272214226, 0.0364705175, 0.012736842, 0.0228288751, -0.0011716038, -0.00291740964, 0.00234900764, 0.00129823759, 0.0146237807, -0.0115227047, -0.0077256253, -0.00748202438, -0.0187611282, -0.0109117692, -0.0293094292, 0.0182197932, 0.00213440694, 0.001627872, 0.0141675128, 0.0255510174, 0.011886172, -0.0044273478, 0.00821282715, 0.00574975228, 0.00514268363, -0.024112612, 0.00239540776, -0.0169824548, 0.0263243522, -0.01319311, -0.0233856756, -0.0188539289, -0.00301020988, -0.00513495, -0.0273606237, 0.0140592456, -0.0084912274, 0.0534220412, -0.00773722539, 0.0115536377, 0.0145619139, 0.0047714822, -0.0365633182, 0.0133787105, 0.0328203738, -0.00987549871, 0.00338721112, -0.00829016, 0.0443894789, -0.0051156166, -0.0309179686, 0.0175237898, -0.0144304475, -0.0167659223, 0.0259531513, -0.000550518453, -0.00842936058, 0.0289536938, -0.00217887387, -0.00355541171, 0.00938056409, 0.0117624383, 0.0312273018, 0.0106256343, 0.00215374026, 0.0458433516, -0.0081741605, -0.0071224235, -0.00367527874, 0.00855309423, -0.00764442515, 0.0110819032, -0.0405846648, -0.00917176344, -0.0243910123, -0.0264635533, 0.025844885, 0.0046941489, -0.0323254392, 0.00496481638, -0.0148016484, -0.027979292, -0.00301601, -0.00222914061, -0.0108267022, 0.0288299602, -0.0010285367, 0.0140360463, -0.025164349, 0.0179104581, 0.0136107113, -0.00754775805, 0.0146547146, -0.0208336674, -0.0175392572, 0.0189312622, 0.00609775307, -0.0299280975, -0.00883922912, -0.0116155045, -0.0167040545, 0.0269430224, 0.0167040545, 0.0202768669, 0.0270203557, -0.00667775515, 0.0269584879, -0.00807362609, -0.0332225077, 0.0190240629, -0.028149426, 0.0154357841, 0.0118088387, -0.0140515128, 0.0127987089, 0.0341814458, 0.000469076535, 0.00779522536, 0.0101848328, 0.00736602396, -0.0239115451, 0.00934963, -0.00706055621, -0.00157470512, 0.0171525888, 0.0347691812, 0.0134869777, 0.0249787476, 0.000847769435, -0.00327507732, 0.00789189246, 0.0139664458, 0.0161627196, 0.0238496773, 0.0323254392, 0.0219472721, 0.0081741605, 0.0108189685, -0.0154512506, -0.0174155235, 0.0555873811, 0.0208182018, -0.00312234345, -0.0125280414, -0.00815096, -0.0159925856, 0.00119963731, -0.0141520463, 0.00878509507, 0.0220710058, 0.0203696657, 0.000694068964, 0.00616348675, 0.00479468238, 0.0208800677, -0.024653947, 0.0511329658, -0.0124507071, -0.0263552871, -0.0185136609, -0.00804269314, 0.00320547726, -0.0340886451, -0.0136648444, -0.00688268896, -0.0159771182, -0.0282886252, -0.00464388169, -0.0342742465, -0.0631042048, -0.00868456159, 0.0103395, -0.0236176774, 0.0222411398, -0.038697727, 0.00510015, 0.00554868486, 0.0291547626, -0.00505761662, -0.0182352588, 0.00344327791, -0.0316603705, 0.00697162282, 0.00642642099, -0.0147784483, 6.97210635e-05, 0.00210927357, 0.0139819123, -0.0227360744, 0.00215954031, -0.00586188585, 0.0215142034, -0.0451937467, -0.00519681722, -0.00980589911, 0.00866136141, 0.0415126681, 0.0132704433, -0.0255819503, 0.0108267022, -0.0497409627, 0.014616048, 0.00627175393, 0.00660815509, -0.0162245855, -0.00227940734, -0.0123269735, 0.0267728884, 0.0089474963, 0.0143144466, -0.0454102829, -0.00481788255, 0.00390147953, 0.0401825309, -0.0330987759, 0.00404068, 0.0455030836, 0.00995283294, -0.0191323292, -0.0131853763, -0.0353259817, -0.0272832885, 0.0441420116, 0.0251179487, 0.0161317866, 0.00393241271, 0.00132143765, -0.00491841603, 0.0128915086, -0.0122960405, -0.0256283507, -0.0561441854, -0.0260768849, 0.00351867825, -0.0241899453, -0.0205243342, 0.0133323101, -0.0336246416, -0.0282422248, 0.00830562692, -0.00100630324, 0.01705979, 0.00571495201, -0.0419457369, -0.0201067328, 0.0176629908, 0.0042881472, 0.0178021919, 0.0273915567, -0.00118803722, 0.00956616458, -0.0191323292, -0.00360761187, -0.0473281555, 0.0216379371, 0.029201163, -0.0210347362, -0.0197509974, 0.0121568395, 0.0407702662, 0.0356662497, -0.0588044599, 0.0167504549, -0.0129224425, -0.0156832505, 0.00873096194, -0.0275616907, -0.0118320389, -0.0291702282, -0.0163328536, -0.0259531513, 0.0215915367, -0.000206504847, 0.00789575931, 0.00607841974, -0.000799435948, 0.00679375557, -0.0240662117, 0.00397881307, -0.00586188585, 0.013394177, 0.026896622, -0.0129069751, -0.0140979132, 0.00675895531, 0.022009138, -0.00727322372, -0.0195963308, -0.0194107294, 0.0074665579, 0.0226587411, -0.0132317767, 0.0165493879, -0.0252726153, -0.0057265521, -0.0299744979, -0.0326038413, 0.00407934655, -0.00166267215, 0.0248395484, 0.0120253731, 0.0166112538, 0.0108189685, -0.00653082132, 0.00529348385, 0.0105637675, -0.00469801528, 0.0120640397, -0.00417214679, -0.0126595078, 0.00830562692, 0.00981363188, -0.00373521214, -0.0457505509, -0.0112443035, 0.0109813688, -0.0145773813, -0.0229216758, -0.0242363457, 0.0184053928, 0.00916403, -0.0254427493, -0.000453851477, -0.00169457216, 0.0140205789, 0.00113680377, 0.00586961908, -0.00607841974, 0.00933416374, 0.0161627196, -0.0254891496, 0.00203580665, -0.0131776435, 0.00127793755, 0.0114221703, 0.0186992604, 0.00164527202, -0.0327585079, -0.0240662117, -0.0046516154, -0.00944243092, 0.0134947104, 0.0253035501, -0.0152811166, 0.00738535728, 0.00384541252, 0.0136648444, -0.00773722539, 0.0178021919, -0.0294950306, -0.0167504549, 0.0165339205, -0.0133245774, -0.00549068442, -0.0166576542, -0.0222102068, -0.00513495, -0.00864589494, 0.0218080711, 0.0283040926, -0.00617508683, -0.0185755268, 0.00831336062, 0.00581935234, 0.0116155045, -0.01705979, -0.0124197742, 0.00766762486, 0.00147707155, -0.00328667741, 5.22303781e-05, 0.00349161145, 0.00457041478, 0.0659500808, -0.0187765956, 0.00192657299, -0.00518135028, -0.00842936058, -0.00282654259, 0.00452014804, 0.0260614194, 0.0230454095, -0.0390689261, 0.0221483391, 0.00344327791, -0.00249207485, -0.00812776, 0.00383381243, 0.0395019948, -0.00519681722, 0.00934189744, 0.0176320579, 0.0318305045, 0.00223687408, -0.011089636, 0.00339881121, 0.00213634036, 0.00556415133, 0.020245932, 0.0267728884, -0.00678215548, -0.00447761454, 0.000187533951, -0.000367334549, 0.0165803209, 0.00576521875, -0.0123192407, 0.0173845906, 0.029371297, 0.0011571038, 0.0276854243, 0.00969763193, -0.00992963277, 0.0061673536, -0.023571277, -0.00178060587, -0.0169669893, -0.0102157667, -0.000421468052, -0.0137421787, -0.0282886252, -0.0140592456, 0.00655788789, 0.00829789415, 0.0198437981, 0.0270203557, -0.0099915, 0.011801105, 0.0184208602, 0.000113342037, -0.0170443226, 0.0348310471, 0.00298314309, -0.00454721507, -0.00369461207, 0.0185445938, -0.0207099337, 0.0157837849, 0.0147088477, -0.00280914246, 0.00570335193, -0.013394177, -0.00269700889, -0.00374874566, 0.0053824177, -0.0048140157, 0.00369461207, 0.0112133697, 0.00217307382, 0.00749749132, -0.0385739915, 0.00715335691, -0.0160235185, 0.00359794521, 0.0174309909, -0.0505452305, 0.00385121256, -0.00319001032, 0.00664295489, -0.0074240244, -0.0134715112, -0.0293248966, -0.0155981844, 0.00929549709, -0.0157915186, -0.0367179886, 0.0126208412, 0.0031861437, 0.000674252224, -0.00701802317, 0.0297115631, -0.00544428453, 0.00510401651, 0.0175083242, -0.00221754052, -0.00986003224, 0.00181733933, 0.00923363, -0.00844482798, 0.00481788255, 0.000686335552, -0.0159307197, 0.00596241932, 0.0209728684, 0.000818286033, 0.0109272357, 0.01705979, 0.00492228288, 0.0198283307, 0.0194725972, 0.0101075, 0.000566951872, 0.0349857137, -0.011429904, 0.0123347072, -0.0187301952, -0.0148248486, 0.00218467391, 0.00339494436, -0.0042108139, -0.023261942, -0.00776042556, 0.0305622332, -0.0064689545, 0.0281648915, 0.0243600793, -0.00988323241, 0.0041682804, -0.00904803, -0.0193179306, 0.0210656691, -0.00661202148, 0.00404454675, -0.019983, -0.0110355029, -0.00513108354, -0.00231034099, -0.00268927542, -0.00713402312, 0.00892429613, -0.00237800786, 0.0192251299, -0.000159863019, -0.00125087076, -0.0120176394, -0.021127535, 0.00951976422, 0.0349238478, -0.0224422067, -0.00649988791, 0.0180187263, 0.0158688519, 0.00517361704, 0.00941923074, 0.0251488816, 0.00294254301, -0.025844885, -0.00455108145, 0.0083365608, -0.00952749792, 0.0111437701, -0.000683918886, 0.00409094663, -0.0319542363, 0.00729255704, 0.0100533664, 0.0121104401, 0.0130771091, -0.0187301952, 0.0144381803, 0.0196581967, 0.0141907129, -0.023432076, 0.00767149171, -0.003539945, 0.00397881307, 0.0254891496, -0.0124584408, -0.0211894028, 0.00163463864, -0.0214987379, -0.00835202727, 0.0195344631, -0.0314283706, -0.00131853763, 0.00426494749, 0.0106565682, 0.016889656, 0.0155672505, 0.00680148881, -0.0112211034, 0.0155208511, 0.00333694415, -0.0144381803, 0.0107339015, -0.000897552934, 0.00532828411, 0.00960483123, -0.00717655662, 0.00838296115, 0.0182661936, 0.00895522907, 0.0094656311, 0.0286598261, 0.0337483771, 0.0283504929, -0.00385314599, 0.0216224715, -0.0220710058, 0.016348321, -0.00992189907, -0.0131389759, -0.0177403241, 0.0155595178, 0.00341814454, 0.00598175311, 0.0203851331, 0.00232967432, -0.00226007402, 0.0144691141, 0.0104477676, 0.0188693944, 0.0141133796, -0.0381409265, -0.00300827646, -0.0126672415, -9.12898831e-05, -0.00929549709, 0.0148944492, 0.00958163105, -0.0303302333, -0.00121703732, 0.0153584499, 0.00203387323, 0.0323254392, -0.0133323101, 0.0240352787, -0.00827469397, 1.57990107e-05, -0.00478308229, -0.0306550339, -0.00361147849, 0.0257366169, -0.00904803, -0.0203542, 0.0423788056, -0.0296342298, 0.0106875012, -0.00474441564, -0.000667485525, -0.000254234154, -0.022009138, -0.00547908479, -0.0193643309, 0.0298198313, -0.00157277181, 0.00332921091, -0.0171989892, 0.012736842, -0.00109717029, -0.00199520658, 0.00989869889, 0.00622535357, 0.0113680372, 0.0161008518, 0.000567435171, 0.00523161702, 0.00332727749, 0.0137499114, 0.0158688519, 0.00325961062, -0.00646122126, -0.0144149801, -0.0137112448, 0.0200603325, 0.0262779519, -0.00930323079, -0.0159616526, -0.0100842994, -0.00913309678, -0.0134715112, -0.0017699725, -0.00198940653, 0.0049880161, 0.0313819684, 0.00445441436, 0.000118356635, -0.0283659603, 0.0509473681, 0.00665068859, -0.0233547427, -0.0159307197, 0.00471734861, 0.0223339405, 0.00493001612, -0.0324182399, 0.0188693944, -0.00189370615, -0.00207254, 6.30752038e-05, 0.000574201869, 0.00421468029, -0.00210734014, 0.0014567714, -0.0443585441, 0.0108421687, -0.00682468899, -0.00412961328, -0.013734445, 0.0134637775, 0.00076270249, 0.00697935605, 0.0142603135, -0.00939603057, 5.85741509e-05, -0.0264480859, 0.0251798164, 0.0131389759, 0.00680922205, -0.0108035021, 0.0124507071, -0.0130693763, -0.00300440984, 0.0078880256, -0.0293558296, -0.0134715112, 0.0126672415, 0.00236447435, 0.00375067885, -5.87554023e-05, -0.00418374687, -0.00986003224, -0.0107416352, -0.0202614, 0.0078106923, -0.00585801899, 0.00802722666, 0.0357590504, 0.0013137043, -0.00812776, 0.00427268073, -0.0131235095, 0.0148635153, 0.00674735522, -0.00137460453, 0.0169515219, -0.00325187738, -0.00384927937, 0.00143453805, 0.026927555, 0.0289536938, -0.0236795433, -0.00305467658, -0.0170288552, 0.00765989162, 0.00169747218, -0.00352641148, -0.0206635334, -0.025844885, -0.00723069, -0.0158224516, 0.0264635533, -0.0221328717, -0.00918723, 0.00378547912, 0.0110355029, -0.00305274338, -0.00327121071, 0.0472353548, 0.0088624293, 0.00739309099, -0.00246114144, -0.0214214027, -0.0166576542, -0.0321089067, -0.0214832705, -0.0159307197, 0.000755452493, 0.00279560918, -0.00200680667, 0.00281300931, 0.0182661936, 0.000164817204, -0.00169167225, -0.00303147663, 0.0209728684, 0.0153352497, -0.0497409627, -0.0171216559, -0.00784935895, 0.000637518766, -0.0249787476, 0.00394787965, 0.00868456159, -0.00193333963, -0.00445441436, 0.00418374687, -0.0238187443, 0.00517748343, -0.00580388587, -0.00146257144, 0.0390070602, -0.00245147478, 0.012566708, 0.0283350255, 0.00149833818, -0.00470961537, 0.0184363276, 0.0161472522, 0.0263243522, -0.00743175764, -0.000850186101, -0.00597015303, 0.0107261688, -0.00680922205, -0.0112907039, -0.0226742066, 0.00786095951, 0.0110741695, 0.030082766, -0.00750522455, 0.0062872204, -0.00701028947, 0.0134715112, -0.00810456, 0.00573815219, -0.0116232382, -0.0204934012, 0.0246384814, 0.0194571298, -0.0240198113, -0.00863816123, -0.0123579074, 0.0125357741, -0.00167717214, -0.0170752555, 0.00204354012, 0.0125821745, -0.00523935026, 0.0127136419, -0.0018134726, 0.00370427873, -0.00510401651, 0.0110741695, -0.00396334613, 0.0170288552, -0.0105947014, -0.00693682255, -0.00483721588, -0.0143763134, 0.00999923237, 0.0133323101, 0.0132472431, 0.00477534905, -0.0160544533, -0.0149949826, 0.024653947, 0.000798952591, -0.00714562321, 0.0184363276, 0.0100842994, -0.0102312332, 0.0224112738, 0.00506921671, -0.0116387047, 0.0100533664, -0.00774882548, 0.00843709428, -0.0277318247, 0.000554385129, 0.00329441088, 0.011429904, -0.00457428163, -0.00670482172, 0.00687882258, 0.01125977, 0.0197509974, 0.0307633, 0.0229835417, 0.0194416642, 0.00400974648, -0.0137267113, 0.00713789, 0.0372438543, -0.00981363188, 0.00346647808, 0.000501701667, 0.0148480488, -0.00147320481, 0.00638002064, -0.00237607444, -0.0107029686, -0.0229062084, -0.00586961908, 0.0104709677, 0.00632588752, 0.0184363276, -0.010919502, 0.0173536576, 0.000834236038, 0.00406388, -0.00399041316, -0.00656562159, 0.00419921381, -0.0129688429, -0.00647668773, 0.00807362609, 0.0222102068, -0.00184827275, 0.0108267022, -0.027097689, 0.02638622, 0.0199211314, 0.0118939057, -0.0249014143, 0.0107416352, -0.0306086335, -0.00821282715, 0.0215296708, -0.00185310608, 0.0227979422, -0.0131235095, 0.0118475053, 0.0255974177, 0.013479244, -0.00649988791, -0.0160235185, -0.0124507071, -0.00656948797, 0.0219782051, -0.011004569, 0.0125821745, -0.0150336493, -0.0189157948, 0.00870776176, -0.0176784582, -0.0300982315, -0.0326347724, -0.00133400434, -0.0154280504, 0.00134753773, 0.00499961618, -0.013734445, 0.0227051415, 0.0166731216, 0.0178485923, 0.00529348385, -0.00530895079, -0.00167233881, -0.0307323672, -0.00259260857, -0.0101539, -0.0301601, -0.00455108145, -0.013448311, 0.00293094292, 0.00808909349, 0.00209960691, 0.00680535566, 0.00101017, -0.00619442, 0.00124990405, 0.00649215467, -0.0172917899, 0.012651775, 0.0125899082, 0.00183280604, 0.0187611282, 0.0228598081, 0.0136184441, -0.0171371233, -0.0253499504, -0.00136590446, 0.00499575, -0.0252880827, 0.00498028286, 0.0278555583, -0.00136203784, -0.00723455707, 0.0170288552, 0.0250870157, -0.034490779, -0.00150123821, 0.0121259065, 0.0158301853, -0.00676668901, -0.00993736554, -0.00976723153, -0.00743949087, -0.00619828701, 0.000716785667, -0.00198554, -0.00653082132, 0.00250174152, -0.0115923043, 0.0170133896, 0.000973436516, 0.00341234449, -0.00617508683, -0.0263243522, -0.0111824367, -0.0011281037, -0.0128141753, -0.0112288371, -0.013278177, 0.00339301117, 0.00344327791, 0.0182816591, 0.00122187065, 0.0182507262, -0.0106411017, 0.00767922495, -0.00947336387, 0.0114840372, 0.00707602315, -0.00904803, -0.0145464474, 0.00258874171, -0.0114608379, -0.00220787385, -0.000605618639, -0.0109736361, -0.0208182018, -0.00510788336, 0.00541335111, 0.00376034575, 0.00621375348, -0.0142525798, 0.0104013672, -0.011174703, -0.0231072754, -0.00150897156, -0.00156890508, 0.00403294666, 0.0127291083, -0.00542108435, 0.00323061063, 0.0012006039, 0.011174703, -0.0177867245, -0.00406001322, -0.00801175926, -0.00589281926, 0.0284278262, 0.00601268653, -0.00438868115, 0.00855309423, 0.0182352588, -0.0169824548, 0.00554868486, -0.000281784247, 0.0266182199, 0.00544428453, 0.0321398377, 0.011174703, 0.00345294457, 0.00851442758, 0.00555641809, -0.0105096344, 0.0198901985, 0.0192405954, -0.0105173681, -0.0142371133, 0.0126053747, 0.0148867154, -0.0200603325, -0.00215954031, -0.00957389828, 0.0239115451, 0.0109813688, 0.00328667741, -0.0038144791, 0.0185909942, -0.0272214226, -0.00595468609, -0.000685852254, -0.028860895, -0.00648442144, -0.022689674, -0.00646122126, -0.0255200826, -0.000947336433, 0.00402521295, 0.00891656242, 0.00228714081, -0.00607455336, 0.00120640395, 0.00751295779, -0.0217771381, -0.0149795152, 0.0106101679, 0.00968216546, -0.0104709677, 0.0316603705, 0.00353414495, -0.0143763134, -0.0196581967, -0.0128760422, -0.000578068546, 0.00129823759, 0.0137421787, 0.0330987759, 0.0310571678, -0.0211894028, 0.00918723, 0.00148673821, -0.0043848143, 0.00101790333, -0.0148789817, 0.0249323491, -0.0042881472, -0.0198128652, 0.00261967513, -0.0133787105, 0.0151419165, 0.0129069751, -0.00277047581, -0.0205243342, 0.00593535276, 0.00424174732, -0.023942478, -0.00574588543, -0.0133787105, -0.006511488, 0.0131235095, 0.00595855294, 0.00863816123, -1.76568283e-05, -0.00282654259, 0.0041257469, -0.0227515418, -0.0121568395, -0.0047289487, 0.0170133896, 0.0259376857, 0.00511948345, -0.0139432456, 0.00221174047, 0.0116464384, 0.0346145146, 0.00227360753, -0.00261194189, 0.0162709858, 0.00523935026, -0.00728482381, -0.000590635289, 0.00852989499, 0.00853762776, 0.0038840794, -0.0118707055, 0.0270358212, 0.00707989, 0.0149021819, 0.00351674482, 0.0140360463, -0.0169669893, 0.0114376377, 0.0122032398, -0.00412961328, -0.00865362864, 0.00219627377, -0.0260304846, 0.00254620821, 0.00804269314, -0.0143995136, 0.00145870482, -0.0125357741, 0.00199327315, 0.0286598261, -0.00967443176, -0.000560185174, -0.0259067509, 0.00763282506, 0.000779135909, -0.0124197742, -0.01319311, 0.0139509793, 0.0182661936, 0.00123250403, 0.0013137043, 0.0216998048, 0.026587287, -0.0154821835, 0.00759029156, 0.0308870338, 0.0307169, -0.000726935687, 0.0164875202, 0.0125821745, -0.00497641647, -0.015636852, 0.0259686187, 0.00358441169, -0.000573718571, -0.00591601944, -0.00520841684, -0.0278555583, 0.023772344, -0.00530895079, -0.0142525798, 0.000720652344, -0.00318421051, -0.0147320479, 0.00573428534, 0.0179568585, -0.00908669643, 0.0111592365, 0.00985229854, 0.00498028286, 0.0132395104, 0.0139741786, -0.00262354198, -0.039440129, -0.00338721112, -0.0115381712, 0.00429588091, 0.0339649096, 0.00240700785, -0.0117779048, -0.0186373945, 0.00598175311, 0.0143376468, -0.0169979222, 0.00216147373, -0.00838296115, -0.0161472522, -0.0183589943, -0.00676282216, 0.0113680372, 0.00414508, 0.00686722249, 0.00672028866, 0.0122651067, -0.000779135909, -0.000989869935, 0.00858402811, -0.0157141853, -0.00146547146, 0.00627948716, 0.00584255252, -0.0138427122, -0.0127059082, -0.00136107113, 0.0251179487, -0.000139321288, 0.0022987409, -0.00140553794, 0.0421622731, -0.00501895, -0.0221483391, -0.0181579255, -0.0130616426, 0.0102621671, 0.00944243092, 0.00696002273, 0.00543655129, 0.00713015674, 0.00135237107, 0.0174155235, -0.0125899082, -0.00528188376, 0.0117624383, 0.00232387427, -0.0111128362, -0.00908669643, 0.012566708, 0.0104941679, 0.0272059552, 0.00730802398, -0.00421468029, 0.00763669144, 0.00284974277, 0.00388987944, -0.0114917709, 0.0113989711, 0.00377387903, -0.00789575931, 0.00615575351, -0.00413348, 0.020679, 0.00683242222, 0.0228752755, 0.00622922042, -0.00039875129, 0.0248859487, 0.013278177, -0.0150491158, 0.00106430345, 0.016008053, -0.00250174152, 0.0116464384, -0.00360567844, 0.0230299421, 0.0025404084, -0.00184827275, 0.00216727378, 0.0122651067, 0.000746752426, -0.0140283126, -0.000932836381, 0.0205552671, 0.0237259436, 0.00153217162, -0.00486428244, 0.00876962859, 0.00130597095, 0.0045124148, -0.0104013672, 0.00433068071, 0.0152965831, -0.0113525707, 0.00281687593, -0.00961256493, 0.00115130376, 0.0156213846, 0.00386474608, -0.0291702282, 0.0401516, -0.00784162525, 0.0148325814, 0.00333307753, 0.00376227894, 0.00511948345, -0.010633368, -0.00164237199, -0.00296187634, -0.00311074359, -0.0108499024, -0.000155271337, 0.00103047, 0.0130848428, 0.00445054797, -0.0115768379, -0.0146701811, -0.00789962616, -0.00749362446, -0.0149408486, 0.0104787005, 0.00254620821, 0.00613642, 0.00113777036, -0.013108043, 0.00272407569, 0.0154357841, 0.00315714371, 0.00744335772, 0.011685105, -0.0200294, -0.0110587031, 0.0141211124, 0.0149408486, 0.0129069751, 0.00121027068, 0.00775655871, -0.00874642842, -0.011004569, -0.0153043168, 0.0140669793, -0.0123888403, -0.000632202078, 0.0146315144, 0.00173323904, -0.0163019206, 0.00395174604, 0.0135565773, 0.0164875202, -0.0321398377, -0.00382414577, -0.0168741886, 0.00401747972, -0.00812776, 0.0191013962, -0.0204006, 0.0186992604, -0.00866136141, -0.00820509344, -0.0109968362, -8.62148663e-05, 0.0192869958, 0.000417843024, 0.01125977, -0.0183280595, 0.00773335854, 0.024313679, -0.0162245855, -0.0160699189, 0.00948883127, -0.0280411579, 0.00400587963, -0.00326154404, -0.0104245674, -0.0106875012, 0.0173845906, 0.00594695285, -0.0203232672, -0.0101307, 0.00944243092, 0.0178795252, -0.00557961827, -0.0259531513, 0.0137653779, 0.00493388297, 0.00990643259, -0.0070373565, 0.00369461207, 0.0121259065, 0.00408708025, 0.000973436516, -0.0119016385, 0.0146701811, 0.00076270249, 0.0226278082, 0.000630268711, -0.00972083211, -0.00699482299, 0.0178485923, 0.00418374687, 0.00397108, -0.0132085765, 0.0172144566, -0.00154570502, 0.0142216468, -0.0146005815, 0.0239888784, -0.0168123208, 0.00420308, -0.0182507262, 0.0210811365, 0.00544815138, 0.00548681803, -0.00140940456, 0.00827469397, 0.02360221, 0.00389181264, 0.0134869777, -0.0336555764, 0.0100533664, -0.0158843193, 0.022550473, -0.0156136509, -0.0178640578, 0.0218544714, 0.011429904, -0.00571495201, 0.00133207103, 0.00172550569, -0.0111515028, 0.0084138941, 0.027437957, -0.0113139041, -0.00837522745, 0.0138659123, 0.00318034366, -0.00671255542, -0.00665842183, -0.0155208511, 0.00280140922, -0.00417601364, -0.0171061885, -0.0118475053, -0.0103240339, -0.013904579, 0.0314747691, 0.0100610992, 0.00714175683, -0.0123656401, 0.0286598261, 0.0107571017, -0.00557575142, 0.0012866375, 0.0107339015, -0.00101597, -0.000647185429, 0.0197355319, 0.00695615588, 0.0206635334, -0.0186064616, -0.0178949926, 0.00658108806, -0.0156136509, -0.00986003224, 0.00540948426, 0.0254582167, 0.00518521713, 0.0234784763, -0.00202227337, -0.0298507642, 0.00100823666, 0.0104013672, 0.00604748633, -0.0106488345, 0.0123347072, -0.015041383, 0.0123811075, -0.0165029876, -0.0200448651, -0.00732349046, 0.00726549048, 0.00873096194, 0.00770629197, -0.00243214122, 0.0141211124, 0.0219472721, 0.0139355119, 0.00687495572, -0.00745109096, 0.0277008899, -0.00349354465, 0.0217616707, 0.000447084807, -0.015721919, 0.0144304475, 0.00906349625, 0.00491454918, 0.0137731116, -0.000681502221, -0.00599335274, 0.00934963, -0.0190859288, -0.0188539289, -0.0125744408, 0.0128296418, -0.0214214027, 0.0164256543, 0.00634522084, 0.00648442144, 0.00377967907, -0.00377581245, -0.0299435649, 0.00230260752, -0.0106024351, 0.00623308728, 0.0065540215, -0.0109349694, -0.00457814848, 0.00982136559, 0.012852842, 0.0137035111, 0.0254736841, -0.0170907229, 0.00754002482, 0.0195963308, -0.022689674, -0.00516201695, 0.00150317163, -0.023571277, -0.0139509793, -0.00281107589, 0.00103337, 0.00696388958, 0.00774882548, 0.00759802479, 0.0114763044, 0.00212280685, 0.000415184681, 0.014871249, 0.00294640963, 0.0113603035, 0.0121645732, 0.014244847, -0.00671255542, -0.00301601, -1.52703633e-05, 0.000795085914, 0.0131776435, 0.0216843374, 0.0252107494, 0.00861496106, -0.0116387047, -0.00401361333, 0.0132936435, -0.0117083052, 0.002971543, -0.0118243052, 0.00656562159, -0.00747815799, -0.000806685945, -0.00999923237, -0.0217616707, 0.00303920987, 0.00709922332, 0.000977303251, -0.0133323101, 0.0019691065, 0.00655788789, -0.00140360463, 0.026417153, -0.00333694415, -0.000634135387, -0.00778749213, -0.00435001403, -0.00489521585, -0.00996829942, 0.000845836126, -0.00863042846, -0.0100610992, 0.00448148139, 0.00737762405, 0.00369461207, -0.0134715112, 0.00155247177, 0.0104477676, -0.0147784483, -0.0123733738, 0.00251334161, 0.00537468446, 0.0359446518, -0.0038144791, -0.00638775434, 0.0103627006, -0.0198592655, 0.00621375348, -0.000117692049, 0.0106179016, -0.00738922413, 0.0205862, -0.00737375766, 0.00917949714, -0.013448311, 0.00539015094, -0.0128992423, 0.00602041977, 0.0112288371, -0.00240507443, 0.000266800867, -0.00178930582, -0.037676923, -0.011971239, 0.000161675533, -0.00567241851, 0.00877736229, -0.00975949876, -0.00992963277, 0.00225234078, 0.0143453805, -0.00863042846, 0.0094656311, 0.021297669, -0.000941053091, -0.00967443176, 0.00824376, -0.00622148719, -0.00166460546, -0.00717655662, -0.00353414495, 0.012141373, -0.00897842925, -0.0107493689, -0.00329441088, -0.00061528536, -0.00258294167, 0.00116387045, -0.0127059082, -0.0186528619, -0.00884696189, 0.0215296708, -0.00875416212, 0.0286598261, -0.00917949714, 0.023772344, 0.000976819894, -0.0162091199, 0.00202034, -0.0103395, -0.0163792539, -0.0124043068, -0.00427268073, 0.0297734309, 0.0122883068, 0.0106179016, 0.00511948345, -0.0125048412, -0.00672028866, 0.00129243755, -0.00591988582, 0.0029444762, -0.00822056, 0.0120640397, -2.36532032e-05, 0.00694842264, -0.00940376427, 0.0174619239, -0.00127793755, 0.00772949215, 0.0131467097, 0.0123347072, -0.0123037733, -0.00455108145, -0.0109968362, 0.00803495944, -0.00764442515, -0.0103163, 0.0154744508, -0.00199134, -0.00887016207, -0.00441961456, -0.0023412744, -0.00196620636, -0.00434614765, 0.00490681594, 0.00905576255, -0.0334390439, 0.00951976422, 0.0143144466, 0.000807169301, -0.00947336387, -0.000816836, -0.016719522, -0.00504601654, -0.0153507171, -0.00162980531, -0.00673962198, -0.0316758379, 0.0163173862, 0.0164411198, -0.013363244, 0.0390689261, 0.0168741886, 0.0187456608, -0.000712435693, 0.00662748842, -0.0145928478, -0.0212667361, 0.00159113854, 0.00864589494, 0.00647282135, -0.00266607548, 0.00200293981, 0.0148557816, -0.00782229193, -0.00842936058, -2.86980116e-06, -0.00796536, -0.00332921091, 0.00887016207, -0.0116541712, 0.0143917808, -0.000391259615, 0.00803495944, 0.00395947974, 0.00922589656, 0.0237104781, 0.00965896528, -0.00215567369, -0.0269739553, -0.0210502017, -0.012311507, -0.0141288461, 0.00450854795, -0.0109117692, 7.20169046e-05, 0.025674751, -0.00182120595, -0.00978269894, 0.013022976, -0.0059005525, -0.00100920326, -0.0048565492, -0.0311499685, 0.0020841402, 0.0186373945, 0.00322481059, 0.0489985608, -0.00587735279, -0.00110587024, -0.026726488, 0.0111205699, -0.00953523163, 0.000877736195, 0.0188229941, -0.00515428372, 0.000128204585, 0.0163173862, -0.00157470512, -0.0122341737, 0.00270280894, -0.0119248386, -0.00907123, 0.0304230321, 0.000391017937, 0.00774109177, 0.00992963277, -0.0213750023, -0.0129224425, -0.0611244664, -0.014360847, 0.0106024351, -0.00540175103, 0.0123733738, -0.0207718015, -0.0105251009, 0.0178331248, -0.00354574504, 0.0088546956, -0.000575168524, -0.00928003062, -0.012651775, -0.000435484748, -0.00889336225, -0.0224112738, 0.00910216291, -0.00206674, -0.00884696189, -0.00133110431, 0.0121800397, -0.00485268235, -0.0141443126, 0.00448534777, -0.00298700971, -0.00754775805, -0.0128373755, 0.00130113761, -0.0105019007, 0.000787835917, -0.0111515028, -0.0148403151, 0.00182023924, -0.00037216788, -0.00838296115, -0.00815096, -0.000214842366, 0.00236060773, -0.00315521029, -0.0052548172, -0.00206287345, -0.00883922912, 0.00227747415, -0.01319311, 0.00405614637, 2.67193591e-05, 0.0105096344, 0.00593148591, 0.0159152523, -0.0004284764, -0.0166885871, 0.00558348512, -0.00793442596, 0.00577295199, 0.0101539, -0.00653082132, -0.00323447725, -0.0186992604, 0.00466708187, 0.015752852, -0.0135797774, -0.0212822035, 0.00895522907, -0.0154667171, 0.00705282297, 0.00036564286, -0.00108750351, -0.000296767626, 0.00183860597, 0.024653947, -0.00154473842, -0.00229294086, 0.00476374896, -0.00821282715, -0.00990643259, 0.0233856756, -0.0113216368, 0.00603975309, -0.00853762776, 0.0102699, 0.00126633747, -0.00111360359, 0.0199675318, -0.00194010639, -0.0116696386, 0.0153971175, 0.00142197136, -0.00121800404, 0.0154125839, 0.00212280685, 0.0111437701, -0.0192869958, -0.0133013772, -0.00232194085, -0.00627562031, -0.0110355029, -0.0163328536, -0.0215142034, 0.0267728884, 0.00741242431, 0.00812776, -0.0275771562, 0.00984456576, 0.0130925765, -0.000253509148, -0.00713789, -0.0176784582, -0.00205900683, -0.0247776806, 0.0143763134, 0.0172763225, -0.0183589943, 0.00524708396, -0.00322674378, 0.0307478346, -0.0156213846, 0.0158997849, -0.0155131174, 0.0129611092, 0.0102157667, 0.00653468817, -0.0255200826, 0.00519295037, 0.00306434324, 0.0182971265, -0.00253460836, -0.00662748842, 0.00849896111, -0.0220246054, 0.00317261042, -0.0239734109, 0.0159461852, 0.0067357556, 0.00771789206, -0.0162864532, 0.00390727958, 0.00357281161, 0.000924136373, -0.00812776, 0.0167659223, -0.0135952448, -0.000869519485, 0.0163173862, -0.0157605857, -0.00213634036, -0.0377697237, -0.00592375267, -0.00358441169, -0.0170133896, -0.000179196417, 0.0163019206, 0.00320161041, -0.000651052105, -0.00527801737, -0.00481014885, -0.00239927461, -0.00239347457, 0.00875416212, 0.003539945, -0.0126363076, -0.00917176344, 0.00349161145, -0.0157837849, -0.0313510373, 0.0174928568, 0.00606681965, -0.00458588172, 0.0134560438, -0.00274534221, -0.0209110025, 0.00132627098, 0.00798082631, 0.00207060669, 0.0138891125, -0.0072422903, 0.00621375348, -0.0133864442, -0.0137808453, -0.0038144791, 0.00760575803, 0.000202154828, 0.0143376468, 0.00941149704, 0.00911762938, 0.0134405773, -0.0202768669, 0.0104709677, -0.00208994024, -0.00665068859, 0.00963576511, 0.0133168437, 0.000191763131, -0.00125860411, 0.00605522, -0.0113216368, 0.0166421887, -0.00707989, -0.00603588624, 0.00670095533, 0.00539015094, 0.0162864532, 0.00914083, -0.00927229691, 0.00387827936, 0.00444668112, -0.00619442, -0.0199520644, 0.0282731596, 0.00892429613, 0.00836749375, 0.00993736554, -0.0125203077, -0.0191168617, -0.012597641, -0.000738535775, -0.0135565773, -0.0169205889, 0.00344907795, -0.00795762613, 0.00992189907, 0.00626788707, 3.88480439e-05, -0.0026003418, -0.026556354, 0.0298043638, -0.0165957883, 0.0198128652, 0.00837522745, -0.00490294956, -0.00596241932, 0.00331374421, 0.0147475153, -0.00193333963, -0.00547521794, -0.0116541712, 0.00541335111, -0.00528961746, -0.00311074359, -0.0115381712, 0.0237568785, 0.0137421787, -0.00578841893, -0.00716882339, -0.00880829524, 0.00882376265, -0.0110355029, 0.00363467867, 0.0121645732, 0.0149949826, -0.00711855665, 0.013278177, -0.00675895531, 0.00215954031, -0.00178833923, 0.00874642842, -0.0201685987, -0.00920269638, 0.015752852, -0.00400587963, 0.0102467006, -0.0143453805, -0.000863236142, 0.0179568585, 0.00262354198, -0.00225427398, 0.0169205889, -0.000547618431, -0.00513881678, -0.00668935524, -0.00164817204, 0.00896296278, 0.0109659024, 0.0118707055, -0.0302838329, -0.0153429834, -0.00404841313, -0.00166170544, 0.00115033705, -0.0162245855, -0.0268347543, -0.00426881388, -0.0192869958, -0.00132047094, -0.00548681803, -0.00803495944, -0.00641868776, -0.0011580704, 0.00253460836, -0.000916403, 0.00856856164, 0.00830562692, -0.00277820905, 0.0183899272, 0.00975176506, -0.00474441564, 0.00597788626, 0.0088546956, -4.91793289e-05, -0.0050305496, 0.0133709768, 0.000221971553, -0.0177867245, -0.00161240529, 0.012481641, -0.000281542598, -0.0324182399, -0.0185291264, -0.0109736361, -0.0203232672, 0.00744335772, -0.0258294176, 0.0109349694, -0.0131776435, -0.00626015384, -0.00787642598, 0.0165184531, -0.0145232473, 0.00120543723, 0.0160699189, -0.00042340139, -0.00811229274, -0.0109813688, -0.000882569526, 0.00522388378, 0.0112520372, 0.00178350578, 0.0320161059, 0.0180341918, -0.0195808634, 0.0166112538, -0.0028845428, -0.00777589204, -0.0236640777, 0.00220787385, -0.0148325814, 0.00470188214, -0.00794989243, -0.000369751215, 0.00814322662, -0.0108035021, -0.00182507269, 0.00140263792, 0.0205862, -0.0298043638, 0.0393782631, -0.0176165905, -0.01222644, -0.00457814848, 0.0304075666, -0.0101848328, 0.0120021729, -0.0219782051, -0.00162303867, 0.0481324233, -0.0272059552, -0.0159616526, 0.00357474503, -0.0026699421, 0.0270048883, 0.00856856164, 0.0289846286, -0.0191168617, -0.0127600413, -0.0151109826, 0.000156721348, 0.0269430224, 0.00189660618, -0.00327507732, -0.0139973788, 0.0208336674, 0.00299667637, -0.0128837759, -0.0183589943, 0.0845101401, -0.00491841603, -0.00298894313, -0.0221019387, 0.0103627006, -0.0133400438, -0.00382027915, 0.0510711, -0.00812776, 0.00245727459, -0.00992963277, 0.00666615507, -0.00569561869, 0.00571881887, 0.00258874171, -0.00333887758, -0.00308174337, -0.0128837759, 0.0182197932, 0.000772852509, -0.00549455127, -0.00525868405, 0.0176939238, 0.0134251108, -0.00452788128, -0.00430361414, 0.00172647228, -0.0025578083, -0.00771789206, 0.0235558096, -0.00640322082, 0.0296651628, 0.00301601, 0.00112617039, -0.0256438181, 0.0167349875, 0.00201454, 0.0216224715, 0.0280102249, 0.00123733736, -0.00336014433, 0.00614415342, 0.00704122288, -0.0118939057, 0.0148325814, -0.00440801447, 0.016178187, -0.0160853863, 0.0111901695, -0.00151863834, 0.012682708, -0.00994509924, -0.000269700889, -0.0220864713, 0.0240971446, -0.00773335854, 0.00517748343, -0.0176629908, 0.00422241399, -0.0146083143, -0.00581161911, 0.0379553251, 0.00602428615, -0.000248675817, -0.00274920906, -0.0378315896, -0.0108112358, 0.00309914351, -0.0210966021, 0.000712919, -0.015041383, -0.0277472902, 0.00444668112, -0.0235867444, 0.020447, -0.0101075, -0.0150723159, 0.0203696657, -0.000696002273, -0.0143685807, 0.00176127243, 0.00932643097, -0.0213286038, 0.000711952336, 0.000356217846, -0.0104091009, -0.0382027924, -0.0158997849, -0.0204160661, 0.00765989162, -0.00563761825, 0.0106024351, -0.0211584698, 0.0136957783, 0.00822056, 0.0227360744, 0.012512574, 0.00599335274, 0.0200758, 0.00762895821, -0.0103549669, -0.0064689545, -0.00313587696, -0.0137653779, -0.00588121917, 0.0106411017, -0.000840519438, 0.0094656311, 0.0174309909, 0.0292939618, -0.00759029156, 0.00743175764, 0.0450700149, 0.0268347543, -0.00264867535, 0.00112133694, 0.0213286038, -0.0166112538, 0.0116387047, -0.00177190581, 0.0196427312, 0.000789285928, -0.0171835236, 0.00372747891, -0.00316101033, 0.00774109177, 0.00883149542, 0.0170907229, -0.00544815138, -0.00935736392, 0.00112327037, -0.0122032398, 0.0107339015, -0.00647668773, 0.0139200455, 0.0197200645, 0.00036056785, 0.00677828863, -0.000523935072, 0.00978269894, 0.00172163895, 0.00102177006, 0.0128992423, -0.00324414391, 0.0154744508, -0.00963576511, 0.0102544334, 0.0114763044, -0.000333259435, -0.0154821835, 0.0214832705, -0.000669418834, -0.00725775724, -0.00917949714, 0.0215296708, -0.00805816, 0.0172299221, -0.000537951768, 0.0214214027, 0.00173227233, -0.00123057072, 0.000456026493, 0.0236486103, -0.0139973788, 0.000357909506, 0.0110509694, 0.00828242674, -0.0118320389, 0.02445288, 0.0050305496, -0.0055022845, -0.0145464474, 0.00357861165, 0.0155363176, 0.000477051566, 0.0339339785, -0.0102467006, -0.00285167596, 0.00260807527, -0.0200294, -0.0189312622, 0.00898616295, 0.00330021069, 0.0328822397, -0.00279174256, 0.00208027358, -0.0062021534, -0.0100842994, 0.0156909842, -0.000259550841, -0.0113293706, 0.0226432737, -0.0184363276, 0.00116967049, -0.00448534777, 0.00658495491, -0.00643415423, 0.00566081842, -0.0356043838, -0.00393434614, 0.0177557915, 0.00682855584, 0.00876962859, 0.0152733829, -6.70627196e-05, 0.011344837, -0.00915629696, -0.00769855874, -0.00525868405, -0.00147610484, 0.0169979222]
|
13 Feb, 2024
|
Basics of SEMrush
13 Feb, 2024
SEMrush is a comprehensive and versatile digital marketing tool that offers a wide range of features and functionalities to help businesses optimize their online presence, improve search engine rankings, and drive traffic and conversions. Here's an overview of the basics of SEMrush and its key features:
1. Keyword Research:SEMrush allows users to conduct keyword research to identify relevant keywords and phrases related to their industry, products, or services.Users can explore keyword metrics such as search volume, competition level, keyword difficulty, and trend data to prioritize and target the most valuable keywords.2. Competitor Analysis:SEMrush enables users to analyze their competitors' online strategies, including their organic search rankings, paid advertising campaigns, backlink profiles, and content strategies.Users can gain insights into competitor performance, identify strengths and weaknesses, and uncover opportunities to improve their digital marketing efforts.3. Site Audit:SEMrush offers a site audit tool that evaluates the technical health and SEO performance of websites.Users can identify issues such as broken links, duplicate content, page speed issues, and crawlability issues that may impact their website's search engine visibility and user experience.4. Backlink Analysis:SEMrush provides insights into a website's backlink profile, including the number of backlinks, referring domains, anchor text distribution, and quality of backlinks.Users can identify high-quality backlink opportunities, analyze competitor backlink profiles, and monitor the impact of backlinks on their search engine rankings.5. On-Page SEO:SEMrush offers on-page SEO tools that help users optimize individual web pages for better search engine visibility.Users can analyze on-page elements such as title tags, meta descriptions, headings, and content optimization to ensure pages are effectively optimized for target keywords.6. Position Tracking:SEMrush allows users to track their website's search engine rankings for specific keywords over time.Users can monitor keyword rankings, track competitor performance, and identify trends to inform their SEO strategy and measure progress over time.7. PPC Advertising:SEMrush provides tools for managing and optimizing pay-per-click (PPC) advertising campaigns across platforms such as Google Ads and Bing Ads.Users can conduct keyword research, create ad campaigns, monitor performance metrics, and optimize ad spending to maximize ROI.8. Social Media Management:SEMrush provides social media management tools that enable users to schedule posts, track engagement metrics, and monitor brand mentions across social media platforms.Users can streamline their social media marketing efforts and gain insights into audience behavior and sentiment.9. Reporting and Analytics:SEMrush offers reporting and analytics features that allow users to generate customizable reports and dashboards to track key performance indicators (KPIs) and measure the effectiveness of their digital marketing efforts.Users can visualize data, share insights with stakeholders, and make data-driven decisions to optimize their online presence.Overall, SEMrush is a powerful and versatile tool that offers a comprehensive suite of features to help businesses improve their digital marketing efforts across various channels, including search engine optimization (SEO), pay-per-click (PPC) advertising, content marketing, and social media management. By leveraging SEMrush's tools and insights, businesses can gain a competitive edge and achieve their digital marketing goals more effectively
Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?/How to design datalists for mobiles using jQuery EasyUI Mobile ?/How to design menu using jQuery EasyUI Mobile ?/EasyUI jQuery menu widget/EasyUI jQuery datebox widget/How to make use of multi-mode jtsage-datebox plugin?/Step by step guide to make your first WordPress Plugin/Explain MonsterInsight Plugin in WordPress/How to Setup All In One SEO(AIOSEO) Plugin for WordPress?/WordPress SEO: Step-by-Step Guide, Benefits and Plugin/Difference Between Black Hat SEO and White Hat SEO/White Label Local SEO Services : A Complete Guide/SEO Checker | Complete SEO Audit in 9 Steps/Semrush Backlink Checker/Basics of SEMrush
|
https://www.geeksforgeeks.org/basics-of-semrush?ref=asr10
|
CSS
|
Basics of SEMrush
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, WordPress SEO: Step-by-Step Guide, Benefits and Plugin, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, How to design menu using jQuery EasyUI Mobile ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, Step by step guide to make your first WordPress Plugin, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Basics of SEMrush, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, EasyUI jQuery datebox widget, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Onsen UI Fab CSS Components, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, Explain MonsterInsight Plugin in WordPress, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, EasyUI jQuery menu widget, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, How to make use of multi-mode jtsage-datebox plugin?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to Setup All In One SEO(AIOSEO) Plugin for WordPress?, SEO Checker | Complete SEO Audit in 9 Steps, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Semrush Backlink Checker, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, White Label Local SEO Services : A Complete Guide, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, How to design datalists for mobiles using jQuery EasyUI Mobile ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Difference Between Black Hat SEO and White Hat SEO, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0402503237, 0.00724349217, -0.015439732, -0.0222264268, 0.0286346339, 0.01224868, 0.00239818334, 0.0111001628, -0.0342989154, 0.0204253439, 0.0256458782, -0.00429062732, 0.00644409796, -0.0495167747, 0.0126075922, 0.00208495115, 0.0079417387, -0.0112241507, 0.00926644914, -0.0061145518, 0.0172408167, -0.00982113183, -0.0255936719, -0.0355518423, -0.0446877778, 0.0101996204, 0.0222264268, 0.0282691978, -0.00667249644, 0.00338682206, 0.0213911422, 0.0279037599, 0.00692373468, -0.00675406726, -0.036073897, 0.00295939087, 0.0140432389, -0.0303574111, -0.0141998548, 0.0205689073, 0.0066953362, -0.0170711502, 0.0179064348, -0.000415399612, -0.0233879965, -0.0211431663, -0.0239361525, -0.0602449737, 0.0155180404, -0.0224483013, 0.0287129432, 0.026716087, 0.0193812363, -0.00149682525, 0.031975776, 0.0173452273, 0.0631684735, -0.00664313091, -0.027929863, 0.0210387558, 0.0275905281, -0.00323020597, -0.00311763817, -0.0171625093, -0.0390757024, 0.0101865688, -0.00567406882, -0.0571126528, -0.0256850328, 0.00672143884, -0.00812445767, 0.0256197751, 0.00726959482, -0.0286085308, -0.0225396603, 0.00489098858, 0.00548808742, 0.0104867499, -0.017749818, 0.0427822843, 0.0262462404, 0.00504434202, 0.0177889727, 0.0163663775, 0.0396499634, -0.03385517, -0.0367264636, -0.0634817, 0.00436893525, 0.0372485183, -0.0379532911, -0.0188200288, 0.00574585143, -0.000442521909, 0.0127446307, 0.00636579, 0.00923382118, 0.0254501086, -0.00817013718, 0.0430172086, 0.0197988786, -0.00533147156, -0.00319431489, -0.0408506878, 0.0181022044, -0.00393497804, -0.0320540853, -0.00226114411, 0.00993859302, -0.0259460583, 0.00234434637, -0.0150220897, -0.0054946132, 0.0282430947, -0.0194986984, 0.00322857453, -0.00390561274, -0.0617067218, 0.0367003605, 0.0156485531, -0.0148263192, 0.00892711524, -0.0166013017, -0.000757385453, -0.0560163409, 0.0292349961, -0.00989291351, 0.0204383936, 0.0618111342, -0.00577521697, 0.0257372372, 0.0367786698, 0.00666270778, -0.00698246574, -0.00221220171, 0.0016722026, 0.0352386124, 0.00252706511, -0.00475394959, -0.0457840934, -0.0340378881, 0.0104606468, 0.00954052806, -0.00369026558, -0.0025058568, -0.0287651476, -0.00595793547, 0.0509002171, -0.0142520601, 0.03641323, 0.00959273335, -0.0242624357, 0.0168101229, -0.0187156182, -0.0123726679, -0.0403808393, -0.0276688356, -0.0258808024, -0.0166535061, 0.0515005775, 0.0389712937, -0.00974282343, 0.00304911868, 0.0692765, 0.0307489503, 0.015622451, 0.0032595715, -0.0253848508, -0.0429650024, 0.0342206061, -0.00622875057, -0.00311274407, -0.0132732103, -0.0514744744, -0.0101865688, 0.00943611655, 0.0355779454, -0.0330198854, -0.0182718728, -0.0131492224, -0.0130709149, 0.0227876343, -0.0258808024, -0.00182718725, 0.0110153286, 0.000464546029, 0.065830946, 0.0220959149, 0.000737808412, 0.00719781267, -0.0226832237, 0.0135211851, 0.0428083874, 0.0221220162, 0.0240014102, 0.0104410695, -0.0611846708, 0.0559641346, 0.0148654729, -0.0592530705, -0.051030729, -0.00934475753, 0.0371180028, 0.0186895151, 0.00569690857, 0.00893364, 0.0425734632, -0.00103758136, 0.000699470111, -0.0222133771, -0.0166926607, 0.0142520601, -0.0208038315, -0.0207124725, -0.0183240771, 0.00120643305, -0.0132666845, -0.0292349961, -0.0155049888, -0.020242624, -0.00534125976, -0.00137283758, 0.0327066518, 0.00875092205, -0.0321845971, 0.0286085308, -0.0110675339, -0.0256197751, 0.0150612434, 0.0335158333, -0.00271794107, 0.0529362261, -0.022670174, -0.0253979024, 0.000763095391, 0.0151395518, 0.0119158709, -0.016627403, -0.0578435287, 0.00678017, 0.0136778019, 0.0271206796, -0.00342271314, -0.0215738602, -0.0135603398, -0.00547177345, 0.0450271145, 0.000420497789, -0.0259330068, 0.0149176791, 0.000598322251, 0.00468869274, -0.00971019547, 0.0382143147, -0.0286868401, -0.00741315959, 0.0430172086, -0.0102191968, -0.000413564267, -0.00460059661, 0.0288956612, -0.0267552417, 0.00685847783, -0.0200729575, -0.0147349602, -0.00331830257, 0.0189896952, -0.0201251619, -0.00347818132, -0.0167970713, 0.0192637742, 0.0121246921, -0.00588289043, 0.0230486616, -0.0500127263, 0.00527926581, 0.0504042655, -0.012398771, -0.0204644967, 0.00765460962, 0.0170058925, -0.0474807657, 0.0580001436, 0.0185198486, -0.0163272228, -0.00288597704, 0.0112437271, -0.00763503229, 0.00297081075, 0.0118245119, -0.0271989871, -0.0121964747, 0.00476373825, 0.0036184832, 0.0450271145, -4.09383756e-05, 0.00672796462, -0.00144706701, -0.00792868715, 0.0159095805, 0.00857472885, 0.0345599428, 0.00273099239, 0.00671491306, -0.00579479383, 0.0309577733, -0.00830717664, 0.0380054936, -0.0112959323, -0.0353691243, 0.0638993457, -0.0080200471, -0.0073218, 0.0190810561, -0.00507044466, 0.0392845273, 0.0337246545, -0.0115830619, -0.0502215475, -0.0129273497, 0.000474334549, -0.038109906, -0.0310099777, 0.0237534344, 0.0165882502, -0.0273295, -0.0346904546, 0.0244843084, 0.0241319221, -0.0062483279, -0.00313232094, 0.00456796819, -0.0248758495, 0.0350558907, 0.0575302951, -0.0513700657, 0.0328371637, 0.0225788131, -0.0231791753, 0.0139649315, -0.0257633403, 0.00208984548, -0.0352125093, 0.0196814165, 0.0377444662, 0.00660397671, -0.0139518799, 0.0126075922, -0.0122291036, 0.0113611892, 0.000832430611, -0.0422341265, 0.000766358222, 0.00633968739, 0.00446682, -0.0281647854, 0.0101930946, -0.0304357186, 0.0132862618, 0.00520095788, 0.0166665576, -0.0449488051, 0.00590899307, 0.0210779104, -0.0326283425, 0.0221350677, -0.0316103399, 0.000274078076, 0.0166926607, 0.0130056581, -0.0125358095, -0.00412422279, 0.039388936, -0.00619285973, -0.024040563, 0.0105520068, 0.00924687274, -0.0107673537, -0.0523358621, 0.0351342, 0.0311665945, 0.00278809201, 0.00833327882, 0.0509002171, 0.00351407262, 0.00243081152, 0.0084833689, -0.0265855752, -0.0022595129, -0.0211953726, -0.00432978105, 0.0275905281, -0.0250194147, 0.00467890454, -0.0246539768, 0.0080396235, -0.0469848141, 0.00715865847, 0.0213650391, 0.00329872547, 0.00734137744, 0.023675127, -0.0148524223, 0.0289217643, -0.0174235348, -0.00752409594, 0.0323412158, -0.0479767174, -0.0243407451, -0.00179782172, -0.0103562362, -0.0261157267, -0.0466715842, 0.0165229924, 0.0244190525, 0.0490469262, -0.0615501069, 0.0319496728, 0.0266769342, 0.0312187988, -0.0420775115, 0.0142129064, 0.00160286739, 0.000213103864, -0.0167579167, 0.0225657616, -0.00425799889, -0.00743273646, -0.000303443609, 0.0179325379, -0.00472784694, -0.0164055303, 0.0242493842, 0.0164968912, 0.0593574829, -0.0182588212, 0.0417381786, 0.029391611, -0.00392845273, -0.0173060726, 0.0153092192, -0.010121312, 0.00248954259, -0.0509524196, -0.077838175, -0.0084833689, -0.0474546626, 0.0114982286, -0.0068780547, 0.00484204618, -0.0271206796, -0.00865303632, -0.0492035411, 0.0364654362, 0.0627508312, -0.0138735715, 0.0244321041, 0.0138083147, 0.0320018791, -0.00157105469, -0.0338812731, 0.00831370149, 0.0150873456, -0.041764278, 0.00659745093, 0.0119941793, -0.0477417931, 0.0143825738, -0.00715865847, 0.00200664322, 0.0303052049, -0.0823800415, 0.0355518423, 0.0344555303, 0.0130121838, 0.0364915393, -0.00620917371, -0.0324978307, 0.024406001, 0.0172930229, -0.00478657801, 0.0273295, -0.0213650391, 0.00777859706, 0.00505413, 0.0130643891, 0.0480811261, -0.00776554598, 0.00578826806, -0.0263637025, -0.0511351414, 0.0157790668, -0.0147610623, -0.0293394066, 0.00747841643, -0.00741968537, -0.0351603031, -0.0101017356, -0.0305140261, -0.0104149673, -0.0251629781, 0.0119615505, -0.0275905281, -0.0127381049, -0.029783152, 0.00248791114, -0.0260113161, 0.044400651, -0.00241449731, -0.0108717643, 0.0361261033, 0.024314642, -0.0259069055, 0.0456274748, 0.0080200471, 0.0208429862, 0.00755019858, 0.0153222699, 0.021821836, 0.00517811812, 0.0115439082, 0.0209082421, 0.0243668463, 0.0010514484, 0.00594488438, -0.0129142981, 0.00444398029, 0.0163011197, 0.0328371637, -0.0252804402, -0.00689110626, -0.029052278, 0.00608844869, 0.0218348876, -0.0208168831, 0.0196161605, -0.0229050964, 0.0044309292, 0.0139127253, -0.0176454075, -0.0251890812, 0.0309838746, -0.0161445048, -0.0266116764, 0.00774596864, -0.00484530907, 0.0127250543, -0.0188852847, 0.0136386473, 0.0241319221, 0.00644736085, -0.00197727769, 0.0338029638, -0.0162097607, -0.00256458786, -0.00306706433, -0.0135211851, 0.0101604667, 0.025893854, -0.00323020597, 0.00143156853, -0.0229834057, 0.0346643515, 0.0474024564, 0.00391866406, -0.0121442694, 0.00742621114, 0.0188852847, -0.0115700103, 0.0104475953, 0.00552397873, 0.0328632668, -0.00961231, -0.0152048077, -0.00764155807, 0.012764208, 0.0171886105, -0.0162097607, 0.0227745846, 0.0210126527, 0.00967104081, 0.0221089665, 0.00875092205, 0.022761533, 0.0225135572, 0.00958620757, 0.0129404012, -0.00367068872, -0.00044945543, 0.0219915044, 0.0183762833, -0.00187449832, -0.030879464, -0.0129534528, 0.00116809469, 0.0172147136, 0.00815708563, -0.0285041202, 0.0251890812, -0.00892711524, 0.0411378145, -0.00179945317, 0.010088684, 0.0527796075, 0.00300996471, 0.00721086375, 0.00133776211, 0.00367068872, 0.00239492045, 0.0141215473, -0.0168231744, 0.0207124725, 0.0254240055, -0.0101865688, 0.0107999817, -0.00320899766, 0.00620917371, -0.00234108372, -0.00958620757, 0.00462996215, 0.0166665576, 0.0207646787, -0.026167931, -0.00305564445, -0.00873787049, 0.00157268613, -0.00894669164, 0.00924687274, -0.00879660156, -0.00654198276, -0.0443745479, -0.00984070823, -0.000572219549, -0.0219915044, 0.0269640628, -0.00073413772, -0.0073218, -0.00434935838, -0.00696288841, -0.0164055303, -0.018506797, 0.0153875267, 0.000560391811, 0.126754582, -0.00860083103, -0.0161836576, 0.0176845621, 0.0295221247, -0.0248105917, -0.0185198486, -0.0059383586, -0.0238317419, -0.0131361708, 0.018754771, -0.0185851045, -0.0132601587, -0.0228659436, -0.00291860523, 0.0074979933, 0.0111458423, 0.00181250449, -0.0176323578, 0.0240666661, 0.00585026201, 9.76301235e-05, -0.0136386473, -0.00281745754, -0.0294177141, -0.0111066885, 0.00828107353, 0.0387102664, -0.0305140261, -0.0225005057, 0.0136125451, -0.0215086043, 0.0182588212, -0.0090054227, 0.0220567603, 0.00770028913, -0.0283736084, -0.0084637925, -0.00237208069, 0.0189374909, -0.0300963838, -0.0278776567, -0.00631684717, 0.00276851491, 0.00755672436, -0.0180369485, -0.0139649315, 0.00494645676, -0.00964493863, 0.0154919373, -0.000169973282, 0.00917509, -0.0278254505, -0.0175409969, -0.0321323946, 0.00545219611, -0.0174887925, 0.00106449972, 0.00103431847, 0.0027717778, -0.0410334058, 0.00572301168, 0.030696746, -0.0168492775, -0.0433826447, -0.00331830257, -0.00494645676, 0.0118245119, -0.03385517, -0.0104998006, -0.0058143707, -0.00468543032, 0.00123253569, 0.0209865514, 0.00590899307, -0.0199946482, -0.0117527293, 0.0406940691, -0.000718231429, 0.021547759, -0.0257111341, 0.00890101213, 0.0278776567, 0.00529558025, -0.00544240791, -0.00219425606, -0.0159487352, 0.0015751333, -0.0116483187, 0.00101066299, 0.000571811746, 0.00760892965, 0.0147610623, -0.00922077, -0.00314047816, -0.0358389728, 0.0279820673, 0.0290000718, 0.00910983328, -0.0104671726, -0.00460059661, -0.00848989468, -0.00501823938, 0.0363088213, 0.00840506144, 0.0192246195, 0.000957641867, -0.018754771, -0.0138083147, 0.018506797, -0.0202817786, -0.0304879248, -0.0261809826, -0.0101865688, -0.00670838729, -0.0267552417, 0.00472132117, 0.0135342367, 0.029208893, 0.0183110256, 0.0242493842, 0.0324717276, 0.00467890454, -0.044217933, 0.0411117114, 0.026076572, -0.00663007936, -0.000801841554, -0.00134836626, 0.0520226322, 0.0176454075, -0.0283214021, 0.00999079924, -0.00705424789, -0.0208299346, 0.0229703542, 0.0143695222, -0.00640820665, 0.00860083103, -0.00145685556, 0.0215999633, -0.0217043739, -0.00594162149, 0.0373790301, 0.00046821672, 0.00403938908, 0.0135994935, 0.00397086935, -0.0253195949, 0.0103431847, 0.041085612, -0.0229050964, -0.00419926783, -0.0409812, -0.0123791937, -0.0334636308, -0.0362044089, 0.0219915044, -0.00202622, -0.0243798979, 0.0241710767, -0.00155637204, -0.0134037239, 0.0346904546, 0.0103431847, -0.0194595437, 0.0482899472, 0.00574585143, 0.012764208, -0.026167931, 0.0236490238, -0.00756977592, 0.00655503431, 0.00303117302, -0.014617498, -0.0285302233, 0.0054946132, 0.00107999821, -0.0570082404, -0.0220828634, -0.00531189423, -0.00520095788, 0.0216521695, 0.0316103399, 0.0112959323, 0.0212997831, -0.00162733858, 0.0296265353, -0.0179716907, -0.0259069055, -0.00426452467, -0.0314276218, 0.0136647504, 0.0234924071, -0.0113742407, 0.0125292838, 0.0391540118, -0.0258155446, -0.019603109, -0.000533473445, -0.0105389552, 0.00756325, -0.0148393707, 0.00980808, 0.00280114333, 0.029208893, 0.0323934183, 0.0107738795, 0.00807877816, 0.000972324633, -0.00259558484, 0.0143042654, 0.0164838396, -0.0110088028, -0.00745883957, 0.0198249817, 0.0149568329, -0.00576216541, 0.0149437813, -0.0229964573, -0.00628095632, 0.0418164842, 0.0090054227, -0.0133188898, 0.00306380144, -0.00340966182, -0.0360477939, -0.0365176424, -0.015896529, -0.000694983697, -0.0173452273, 0.0305140261, 0.00316821225, -0.0108717643, 0.00805920083, 0.0051846439, -0.0239361525, 0.0377183668, -0.0283997096, -0.0164185818, 0.00755019858, 0.0185459498, 0.02079078, -0.0223569404, -0.01805, 0.01249013, 0.00439503789, -0.0563817769, -0.0173191242, -0.0202295724, -0.0636383221, -0.00137283758, -0.00950789917, -0.010088684, 0.0108913407, -0.0269118585, -0.0143042654, -0.0066953362, 0.0212997831, -0.00985376, -0.0120007051, -0.00387951, 0.00961883552, 0.00880965311, 0.00685195206, -0.0177759212, -0.00339334784, -0.00292349956, 0.0100691067, -0.0163402744, -0.0156616047, -0.00391540118, 0.0232052784, -0.0204775482, 0.00604603207, 0.00841811299, 0.0205689073, 0.0299658701, 0.0100430045, -0.0224483013, 0.0102387741, -0.0373790301, 0.0149046276, 0.013586442, 0.000774923188, -0.00333787967, 0.00788300764, -0.024888901, 0.0309577733, 0.00773944333, 0.00522706052, -0.0263898037, -0.0167187639, 0.00264452724, 0.0538759194, -0.0347426608, 0.0188461319, 0.0616023131, -0.0246670283, -0.0273295, -0.00575563964, -0.0485248715, -0.0298875626, 0.0356562547, 0.026076572, 0.0101604667, -0.00385340746, -0.0334375277, 0.00464627612, 0.00108733959, -0.0111262649, -0.0308011565, -0.0617067218, -0.0188069772, -0.00289739692, 0.00167546549, -0.0132601587, 0.00777207129, -0.00400676066, -0.0052825287, 0.0155180404, 0.0282430947, 0.0479767174, -0.00428410154, -0.0273817051, -0.0202948302, 0.0199032892, 5.4499531e-05, -0.00221709604, 0.00387951, -0.0255153645, 0.00357606634, -0.0143825738, -0.00184350146, -0.0321323946, 0.00936433487, 0.00154576777, -0.0239361525, -0.0487597957, 0.029052278, 0.0369091816, 0.0269901659, -0.0380315967, 0.00682584941, -0.0136125451, -0.027172884, -0.00574911432, -0.030253, -0.00976892561, -0.0178020243, -0.0437219813, -0.0321062915, 0.0174626894, 0.0300963838, 0.00899237115, 0.00289087114, -0.0162619669, -0.0117592551, -0.0141084958, -0.0250846706, -0.0225918647, 0.0144347791, 0.00332972244, -0.0162097607, -0.00969061814, 0.023401048, 0.0249933116, 0.0212997831, -0.0218348876, -0.00849642, -0.012431399, 0.0328371637, -0.0120855384, 0.00531189423, -0.0136255966, 0.0213258862, -0.0246539768, -0.0396499634, -0.00552071584, -0.00226277555, -0.00122845708, -0.00336724496, 0.0142520601, 0.00434935838, -0.0272250902, 0.00939696282, 0.00494645676, 0.0168753788, -0.00221057027, -0.000606887217, 0.00340639916, 0.00774596864, 0.00728917215, -0.00730222324, -0.0397543721, -0.00765460962, 0.00765460962, -0.0259460583, -0.0132993124, -0.00984070823, 0.0178281274, -0.00145603984, -0.0157007594, -0.00982765667, -0.0236620754, 0.00841811299, 0.00358259212, -7.43059536e-06, 0.00315352948, -0.000387869426, 0.00234434637, -0.01805, -0.00813098345, 0.00535431132, -0.0235576648, 0.00207189983, 0.027564425, 0.000776146713, -0.0120920641, -0.0217565801, 0.00246017706, -0.0234663039, 0.0204906, 0.0185198486, -0.0268857554, 0.00735442853, -0.0259591099, 0.00589594152, -0.0133515187, -0.00785690546, -0.0100691067, -0.0128947217, 0.0107543021, -0.0341684, -0.00177171908, -0.000287333358, -0.0235968176, 0.00149437808, 0.0117201013, 0.0363088213, -0.00632011, 0.0029691793, -0.0241580252, 0.004528814, 0.0151395518, 0.0132405814, -0.0223308392, -0.0238056388, 0.016379429, 0.0115439082, 0.0197988786, 0.00250259391, 0.012672849, -0.0107869301, 0.0395716541, -0.0126010664, 0.0128490413, 0.00406549172, 0.00375878508, 0.0124248732, 0.0120920641, 0.0196683649, 0.0298614595, -0.0374573395, 0.012398771, 0.00800699554, -0.00823539402, -0.00915551279, 0.00423515914, 0.0292611, 0.00149519381, 0.00953400228, 0.00839853566, 0.015165654, -0.0113024581, 0.00654524565, -0.0168231744, 0.00176356197, -0.00453534, 0.01386052, 0.042364642, -0.00610476313, -0.00617002, 0.000245120435, 0.00706729945, 0.00437872391, 0.00859430525, -0.00437219813, 0.0184806939, 0.0061634942, 0.0213258862, 0.0387885757, 0.010088684, -0.0149437813, -0.0189766455, -0.00834633, 0.010362762, -0.028660737, -0.0174496379, 0.00307848421, -0.00229703542, -0.0399370939, 0.0102257226, 0.0153092192, 0.0134167746, 0.0250585675, 0.0262070857, -0.00352059817, 0.00499866204, 0.0166535061, 0.00219751894, -0.0242624357, 0.00914898794, 0.00888796058, 0.00159307884, 0.0249933116, 0.0234141, -0.0404591449, 0.0362827182, 0.0112502528, 0.0181544106, -0.0032155232, -0.00249280548, -0.00937086064, -0.00233782083, 0.00190223241, -0.000153455185, 0.00959925912, 0.00263310736, 0.0127511565, 0.00024695578, -0.0287912507, 0.00844421517, -0.0113024581, 0.00495950831, 0.0231661238, -0.0285824295, 0.0114982286, -0.0104606468, -0.00766113494, 0.0094034886, -0.011609165, -0.0156093994, -0.00437872391, 0.00882922951, 0.00507370755, -0.0129599776, 0.0170450471, 0.0114721255, -0.000878518156, 0.0291566886, 0.0266377795, -0.0176715106, -0.00359890633, 0.0363088213, -0.000597506529, -0.0122030005, 0.0282169916, 0.00494645676, -0.0221350677, -0.00782427657, -0.0138083147, -0.0155049888, -0.0095470529, 0.0220176056, 0.0183371287, 0.0219915044, 0.0165229924, 0.00647020061, -0.00390561274, 0.0199815985, 0.000104512663, 0.00753062172, 0.0268857554, -0.00600687787, 0.0167709682, -0.00626790477, -0.024797542, 0.0122552058, 0.0375617482, 0.0113546634, -0.0210648589, -0.00435588369, 0.0128947217, -0.00354343816, 0.0272250902, 0.0361783057, -0.0272250902, 0.0148785245, -0.0182979759, -0.0241580252, -0.0105128521, 0.00241123466, -0.00374899665, 0.00597425, -0.0162358638, -0.00971019547, 0.00280930032, -0.00879660156, 0.00689110626, 0.0149176791, 0.00875744782, 0.00466259, 0.0122813089, 0.0015392421, 0.00587962754, 0.00382404192, -0.00831370149, 0.0367003605, -0.0198510848, -0.0105911605, 0.00942306593, 0.0115569597, -0.0066463938, 0.00103350275, 0.0214825012, -0.00165099418, -0.0136386473, -0.0069172089, 0.00872481894, -0.030331308, 0.00423842203, -0.0118767172, 0.0244843084, -0.0143564716, 0.00903805159, -0.00258742762, 0.0066953362, -0.000632174138, -0.0273817051, 0.00414706254, 0.0260896236, 0.00138344173, 0.0130121838, -0.00597751234, -0.0217957329, 0.01087829, 0.0137561094, -0.0148393707, -0.0179977939, 0.00132715784, -0.0143695222, -0.0049725594, 0.0102583515, -0.0183110256, 0.00953400228, 0.0210518073, -0.0194725953, 0.0196161605, 0.0144478306, 0.00348797, -0.000682748097, 0.014800217, -0.00530536845, -0.0246409252, 0.0153744752, 0.0102779279, 0.0172669198, -0.00916203856, -0.00873787049, 0.0178933833, 0.00924687274, 0.00362500898, 0.0128098875, 0.0172538683, 0.0400676057, 0.0525446832, 0.00150090386, 0.0215347074, -0.0116287414, 0.0141215473, -0.0119223967, 0.00871176738, -0.00606560893, 0.0158834774, 0.00623853924, 0.0118571399, 0.00952095073, 0.000229825891, -0.00679974677, 0.00219099317, -0.00380446482, 0.019237671, 0.0157660153, -0.0336985551, 0.0090837311, -0.0115373824, -0.000767173944, -0.0102844536, 0.0168623272, -0.00697594, 0.00152374362, -0.0167187639, -0.00290555391, -0.00156534475, 0.0328371637, -0.00300833327, 0.0171625093, -0.00584699912, -0.000140505799, 0.0053216829, -0.0309838746, -0.00183045, 0.00328078, 0.0100625809, -0.0184415393, 0.0456013717, -0.0138474694, 0.0130252345, -0.0035695408, -0.00372615689, 0.0206602663, -0.00021208424, -0.0245365147, -0.0143564716, 0.0329937823, 0.00237697479, -0.00681932364, -0.0126141179, -0.00986028556, -0.0195639543, -0.00813750923, -0.00730222324, -0.00432978105, 0.00676059257, -0.000566509611, 0.0151395518, 0.00175703631, 0.0127315801, 0.0261287782, 0.00990596507, 0.00195933203, 0.0130513376, -0.0143173169, 0.00384688168, -0.000143054887, 0.0217957329, -0.0418425873, -0.018206615, -0.00714560738, -0.0108065074, -0.0137952641, -0.0105193779, -0.0042090565, 0.0139388284, 0.0304879248, -0.0137300072, -0.0032840427, -0.0335419364, 0.0367264636, 0.00191365241, -0.0113742407, -0.00397086935, 0.0118440883, 0.0206602663, -0.00290229125, -0.0127772596, 0.0149698844, 0.0108326096, -0.0149046276, 0.00990596507, -0.00319920899, -0.0113546634, -0.0107869301, 0.0052825287, -0.018754771, 0.018115256, -0.0106629431, -0.00438198633, -0.0208168831, -0.0148785245, -0.00376857375, -0.00148866815, 0.00553703, -0.0167057123, 0.0116222156, 0.00685847783, 0.0105324294, -0.00825497136, 0.000747189042, -0.0172147136, 0.00419926783, -0.0102518257, -0.00491382834, 0.0140823927, -0.0171233546, 0.00442114053, 0.0250324644, 0.00887490902, 0.000636252691, 0.0033036198, 0.0175801516, -0.0147219086, -0.013769161, -0.00445050607, -0.00493014278, -0.00790258497, 0.0177759212, 0.0200207513, -0.00508675864, -0.0362827182, 0.0339073762, -0.0115047535, 0.00155555631, 0.0132666845, -0.0224221982, 0.0146827549, -0.0231139194, -0.0097232461, 0.00195117493, 0.00415685074, 0.0112241507, -0.0362827182, -0.00477678934, 0.00948832277, -0.0123465648, -0.0238186903, 0.020882139, -0.0155571941, -0.0193290301, -0.0143564716, -0.0225788131, 0.0213911422, -0.0165621471, 0.00461038481, 0.00167546549, 0.018663412, 0.00228072121, 0.0027032583, 0.0463844538, 0.0174365863, 0.0172016621, -0.00570669724, -0.0250846706, -0.00434935838, -0.0173321757, -0.0177237168, -0.0142912148, 0.00155474059, -0.0182588212, 0.00436567236, 0.00369026558, 0.0129599776, -0.00188265543, 0.0174496379, -0.0121964747, 0.00686500361, 0.0173321757, -0.0434870571, -0.0231661238, 0.00467890454, -0.00906415377, -0.00178803317, -0.0134559292, 0.0114851771, -0.00862040836, 0.0115308566, -0.00460712193, -0.00738705695, -0.0110610081, -0.015439732, -0.0175932031, 0.0262070857, 0.00689110626, -0.0198902376, 0.0398065783, -0.0197205711, -0.0103366589, 0.00194301782, -0.00342923892, 0.0164316334, -0.0109435469, -0.00933170598, -0.00225135568, -0.00311600673, -0.0120985899, 0.00130594941, -0.016836226, 0.0215086043, 0.00504107913, 0.0313232094, -0.0108848158, 0.0255806223, -0.0122030005, 0.00982113183, -0.00903805159, 0.0143825738, 3.92814654e-05, -0.0100625809, 0.0217435285, 0.00127903104, -0.00134836626, -0.0116939982, -0.0110805854, 0.00434935838, -0.00281745754, -0.016836226, 0.00323346886, -0.00262821303, -0.0145391896, 0.00839853566, 0.00107755105, 0.00654198276, 0.0123726679, 0.0130709149, -0.00316168647, 0.00673449, -0.00909678265, -0.00485509774, 0.00839853566, -0.0152178593, -0.013495083, 0.00296754786, 0.0127576822, -0.00798089243, 0.00154576777, -0.00204579718, 0.0268335491, -0.0290261749, 0.00193159794, 0.00856820308, 0.0259330068, 0.00159715745, 0.00138507318, -0.00957315601, -0.00573932566, -0.00768723758, -0.00246344, -0.00156208198, -0.0343511216, -0.00647020061, 0.00662029069, 0.0049627712, -0.0196683649, -0.00295286509, -0.00721738953, 0.003859933, 0.00431020418, 0.0178411789, 0.0436958782, 0.00526621472, -0.00175377342, -0.0193290301, -0.00366742583, 0.0220437087, -0.0222525299, 0.0217174254, 0.0161967091, 0.0235054586, 0.00450597424, -0.00615044264, -0.0211692695, -0.0116483187, -0.0152309109, -0.0209473968, 0.00699551683, 0.00462669926, 0.0158573743, -0.0167579167, 0.0059024673, -0.0104932757, -0.00316658081, 0.0029740734, 0.00130839658, 0.00675406726, -0.0240797177, 0.00326772872, -0.00261516171, 0.0292611, -0.00912288483, -0.0113220355, -0.021090962, 0.0177367684, 0.03014859, 0.0145913949, -0.0212214738, -0.00515854126, -0.00833327882, -0.0120268073, 0.0117201013, 0.00561533775, 0.00786995608, -0.012705477, 0.0127185285, 0.0113024581, 0.0137430588, -0.00765460962, -0.0136516988, -0.00850947201, -0.00509981, 0.00877702422, 0.00323346886, 0.0304357186, -0.0132666845, -0.0221872739, 0.0174626894, 0.00214531366, -0.00764155807, -0.012216052, -0.0232444312, -0.0117984088, 0.00286313705, -0.00623201346, 0.00081978715, -0.000479228795, 0.0132471072, 0.0188591834, 0.0157660153, -0.0152439624, 0.00714560738, -0.0230225585, 0.0151917571, 0.00125455984, -0.0261940341, 0.0146305496, -0.0166796092, -0.00733485166, 0.0254501086, 0.00203111442, 0.0173713304, -0.00204742863, -0.0070999274, -0.0136386473, -0.000504107913, -0.013769161, 0.00679974677, 0.0152048077, 0.0170319956, 0.0175409969, 0.0162228122, 0.00621569948, -0.000723533507, -0.03014859, -0.00316494936, 0.00389908697, -0.0240797177, 0.00498234807, 0.0257633403, -0.00368700293, -0.00432325574, 0.00954052806, 0.00621569948, -0.0166013017, -0.000776962435, 0.0106237885, 0.0169667378, -0.000518790679, 0.0105128521, -0.00298386207, -0.0109435469, 0.0051454897, -0.00152782223, 0.0219392981, -0.0136125451, 0.00665291911, -0.00837243255, 0.0145000359, 0.00419926783, -0.00441135187, -0.00546198478, -0.0159356836, -0.017110303, 0.00408506859, -0.00818318874, 0.00399697199, -0.0161314532, 0.00387951, -0.00812445767, 0.0163272228, -0.0296526384, 0.00692373468, -0.0244712569, 0.0206211135, -0.00904457644, -0.000301608263, 0.0145652927, 0.00205558562, -0.0100169014, -0.0203731377, -0.00386645878, -0.0047017443, 0.00615696842, -0.00567406882, -0.0162228122, -3.69363042e-05, -0.00310295541, -0.00751757, -0.00931213, 0.00455165375, 0.0110740596, -0.0156355016, -0.0226832237, 0.00316984369, 0.00289087114, -0.0149176791, 0.00741315959, -0.00936433487, -0.00960578397, -0.00874439627, 0.0107673537, -0.0128686186, 0.0133384671, -0.00527600339, -0.0208429862, 0.0195378512, 0.00935780909, -0.00906415377, -0.0136647504, 0.00808530394, -0.0191854667, -0.0103758136, -0.0273033977, 0.0262462404, 0.0263376, 0.0111915218, 0.00166812411, 0.00194301782, -0.0177628696, -0.0228006858, -0.012216052, 0.0143303685, 0.00906415377, -0.00642778352, 0.00264126435, 0.0149307298, 0.01224868, -0.00661376538, -0.0109370211, -0.0187417213, 0.0155832972, 0.0164316334, 0.00764155807, -0.00120317016, 0.00679322099, -0.0300180763, -0.0139127253, 0.00109549658, -0.0407201722, -0.0185459498, -0.0116352672, -0.00317636924, -0.0192115679, 0.00869219098, 0.00421231939, 0.0193159785, -0.00602319231, -0.00372941978, 0.000682340236, 0.0200207513, -0.036987491, -0.0228659436, 0.00674101571, 0.00680627255, -0.0116809467, 0.030331308, 0.00679974677, 0.00931213, -0.0105520068, -0.0154136298, 0.00929255225, 0.0113416119, 0.0127511565, 0.0270684734, 0.0148393707, -0.0157660153, 0.000295898295, 0.00584047334, 0.00163468, 0.00495298253, -0.0201643165, 0.0238447934, -0.0159095805, -0.0200990587, -0.000289372634, -0.00648977747, 0.0222003255, -0.002264407, 0.00683237519, -0.0188461319, 0.014891576, 0.0122878347, -0.0165099427, 0.00558597222, -0.00968409237, -0.0195248015, 0.00976892561, 0.0194334406, 0.0128425164, -1.86083525e-05, -0.0013214479, 0.00568712037, -0.00234760926, -0.0132862618, 0.000887490925, -0.017749818, 0.0230486616, 0.0099451188, -0.0172408167, 0.00751757, 0.0124509763, 0.00916856434, 0.0219915044, 0.00174887921, 0.0160922986, -0.00761545543, -0.00738705695, -0.00078797451, 0.000783895957, -0.00561860064, -0.00893364, -0.0196422637, 0.0261940341, 0.0169145335, 0.00565775484, -0.000118991491, -0.00364458608, -0.0152961677, -0.0110544832, 0.003859933, -0.00856820308, -0.0246017706, 0.00490730302, -0.0272250902, -0.00412422279, 0.0141737526, 0.0128033618, 0.00559576089, 0.0148524223, 0.0132405814, 0.0202165209, -0.0187025666, 0.0118897688, -0.0102909794, 0.00995164458, 0.00957315601, -0.0239100493, -0.0001153208, 0.00294307666, 0.0317669548, 0.023675127, 0.00939043704, 0.0180369485, 0.0176454075, 0.000727204198, -0.00232803239, 0.0275905281, 0.0226049162, -0.0240666661, 0.00118196174, 0.0178281274, -0.0155180404, -0.027929863, 0.0191332605, -0.0100169014, -0.011700524, -0.016379429, -0.00366416294, -0.0189244393, 0.021913195, -0.0155702457, -0.00875092205, 0.00951442495, -0.00702161947, 0.00177987618, -0.0103888642, 0.00693678576, 0.00745231379, -0.00233618938, 0.0033231969, -0.00298386207, -0.00262005604, 0.0152700646, 0.00681279832, -0.0271206796, -0.0166535061, -0.00427757576, 0.00445703184, 0.0231530722, 0.017749818, -0.00181413593, 0.00392845273, -0.000403775746, 0.0183501802, -0.00584373623, -0.00612434, -0.0153092192, -0.00806572661, -0.0203078818, -0.000337907288, 0.00273914938, -0.0155180404, -0.00796784181, -0.00156779191, -0.00388277299, 0.00224156724, 0.00139486173, 0.0116939982, -0.00915551279, -0.00184187, 0.00390561274, -0.00264289579, -0.00715213269, -0.00483552041, -0.00521074655, 0.0248627979, 0.00486488594, 0.0294699203, 0.00244875718, 0.0515005775, 0.00412422279, -0.0178672802, -0.0149307298, -0.00401002355, 0.00467890454, 0.009025, -0.00623527635, -0.0178150758, 0.0112763559, -0.00702814525, 0.00395455537, 0.00539346505, -0.00125455984, 0.0259460583, 0.00393824093, -0.0272511933, -0.0018173987, 0.00592530705, 0.0212084241, 0.0148654729, 0.0107543021, 0.00652240589, 0.0124248732, 0.0178411789, 0.014891576, -0.0296265353, 0.00620591082, 0.00725654373, -0.00894669164, 0.00592530705, 0.02079078, 0.00679322099, 0.0211170632, 0.0179586411, 0.00639515556, 0.0056675435, 0.0164185818, 0.0110088028, -0.0242232829, -0.00385667, 0.0133188898, -0.0052825287, -0.000617491431, -0.00828107353, 0.0144478306, 0.00835285615, 0.00488120038, -0.00513896393, 0.0164577365, 0.00373268244, -0.0107543021, 0.00748494221, 0.0220306572, 0.0148654729, 0.00550113851, -0.0187025666, 0.00269673252, 0.00285661151, 0.00945569389, -0.0119485, -0.00896626897, -0.0125684375, 0.000939696271, -0.000366661, -0.00993859302, 0.00186470989, -0.00974934921, 0.00454512844, -0.010910918, 0.0182588212, -0.017658459, 0.0140040852, -0.00199196045, 0.004923617, 0.00502802758, 0.00429715263, -0.00101392576, 0.0123400399, -0.0101930946, -0.00463975035, 0.0018973382, -0.0164968912, 0.0131165944, 0.0106890453, -0.00854862574, -0.0279037599, 0.00116564753, 0.00668881042, -0.0249019526, 0.0325239338, -0.00527600339, 0.011974602, -0.00867261365, -0.0123139368, -0.00152782223, 0.0105585316, -0.0052825287, 0.0388929844, 0.00476373825, -0.0138996746, -0.0137300072, 0.00377509929, 0.00409485726, 0.00123172, 0.0103236083, 0.00405244, 0.00771334, 0.00140138739, -0.00229866686, 0.012705477, -0.00496603409, 0.000910330797, -0.00153271644, 0.0376661606, -0.0037065798, -0.0128229391, 0.00503455335, 0.0136386473, -0.011974602, 0.0193812363, 0.011335087, 0.00521074655, -0.00454839133, 0.0071782358, -0.015348373, 0.0342206061, -0.00424168445, 0.00153353217, -0.00863346, 0.0164968912, 0.00952095073, -0.00220078183, 0.00262495014, -0.0261418298, 0.0136778019, 0.0199032892, 0.0051944321, -0.013586442, 0.00922729541, -0.0374051332, -0.0154658351, 0.0115634846, -0.0131165944, -0.00745231379, 0.00987986289, 0.00160694588, -0.01434342, -0.00544567034, -0.00264615868, 0.0269901659, 0.0125358095, -0.0142390095, -0.0117527293, 0.00450271135, 0.00915551279, -0.0066072396, -0.0105520068, 0.013495083, 0.00414379966, -0.0102909794, -0.0197597258, 0.0115634846, -0.0109892264, 0.00621896237, -0.00629400741, -0.0123204626, -0.00539020216, 0.00622222526, 0.00104247557, 0.00838548411, -0.00282235164, 0.0142520601, -0.0189766455, 0.00502802758, -0.0245234631, 0.0268857554, -0.00166730839, 0.0180761032, -0.0391540118, 0.0110740596, 0.00510633597, 0.00632337295, -0.00220404472, 0.0124118216, -0.00534778554, -0.0123530906, 0.0126989512, -0.0366742574, 0.0204122923, -0.0332026035, 0.0314276218, -0.000962536142, -0.0215869118, 0.010029953, -0.0140432389, 0.00901847426, 0.0025499051, -0.017110303, -0.0197988786, 0.0134037239, 0.0219392981, 0.000840995577, -0.00335093099, -0.00763503229, -0.00470827, -0.00720433844, -0.0228137374, -0.00252869655, 0.0013736533, 0.011426446, -0.012398771, -0.0165229924, -0.0127511565, -0.0203078818, 0.0201904196, -0.00226114411, 0.00658113696, 0.00504107913, 0.0418164842, 0.00920771901, -0.00999079924, -0.0132405814, 0.00282561453, -0.0100560552, -0.0035010213, 0.0249672085, 0.0187417213, 0.00942306593, -0.0073609543, -0.00309153553, -0.00656156, -0.0213911422, -0.0100364788, 0.00244712573, 0.0329937823, 0.016927585, 0.00608844869, -0.00584047334, -0.0191593636, 0.00925339852, -0.00432651816, -0.00363153475, -0.00980808, 0.0254501086, 0.000113689384, 0.000916040735, -0.0140954442, -0.0133906724, -0.000189142433, -0.00845726673, 0.0169667378, 0.00939043704, 0.00250096247, 0.0181544106, 0.0205689073, 0.0245756693, 0.00529231736, -0.0235315617, 0.00660071382, -0.0131883761, 0.0192115679, 0.00256295642, -0.0379010849, 0.0202687271, 0.000428247, -0.012398771, -0.00021208424, -0.00539020216, 0.00408506859, -0.00825497136, -0.0204906, 0.00112975645, -0.00562838931, 0.0101408893, -0.024888901, 0.00317473779, 0.00797436759, 0.012522758, 0.00818318874, -0.0135342367, -0.0344033241, -0.0135472883, -0.0189766455, 0.00989943929, -0.00572953699, 0.000396638294, -0.013129645, 0.0197727755, 0.00375878508, 0.0024128661, 0.0154266804, -0.0259069055, 0.00252217101, 0.0277732462, -0.020882139, 0.0126402201, -0.0123074111, -0.0192898773, -0.0214041937, 0.00171298801, -0.015074295, -0.0121638468, 0.0129991323, -0.00414706254, 0.00207189983, 0.00137446902, 0.0181935653, -0.00369352847, 0.0146566518, 0.0154136298, 0.000612597156, 0.00877049845, -0.00837243255, 0.00755672436, -1.14709019e-05, 0.00184023858, 0.00903152581, 0.0086595621, -0.00624506501, 0.0102061462, 0.000991085893, -0.00439830078, 0.00601992942, 0.00560881244, -0.00224319869, -0.000384810526, 0.00678669568, -0.0140562905, -0.018598156, 0.00750451908, -0.0273817051, -0.000531026279, 0.0109435469, 0.00658113696, 0.00209473958, 0.000315475307, 0.00501497649, 0.00318778912, 0.0232966375, 0.000622385647, -0.0215347074, -0.00164365279, 0.00229214109, -0.0032155232, -0.00678669568, -0.00127005833, -0.00289413403, -0.00572953699, 0.00581763359, 0.016627403, 0.0169928409, -0.00672796462, 0.011733152, 0.00746536488, -0.0106172627, -0.0222133771, 0.00193812361, 0.0102126719, 0.0122943595, -0.00714560738, -0.0161053501, -0.00666597066, -0.00358585501, 0.0285302233, 0.0154266804, 0.00348470709, -0.0110414317, 0.00879660156, 0.00054081477, 0.0139518799, 0.0144478306, 0.0106237885, -0.00552724162, -0.00100169017, 0.00889448635, 0.00252869655, -0.00326446583, -0.00800699554, -0.0175148956, 0.00655177142, -0.0096253613, -0.00401002355, 0.00567080593, -0.0104932757, 8.23355876e-05, -0.000132450688, 0.00969061814, -0.000964167528, 0.0221220162, 0.00774596864, -0.0161053501, -0.0136516988, 0.00134428777, 0.008144035, -0.00202458864, 0.004923617, 0.00466259, 0.000887490925, -0.0264811628, -0.00967104081, -0.00151313946, 0.00235576648, 0.00670186197, 0.0105585316, 0.00117380463, -0.0233879965, -0.000147541286, 0.0181413591, -0.000261842448, 0.028843455, -0.0115895877, 0.0116026392, -0.00806572661, 0.00539346505, -0.0113416119, -0.00788300764, -0.00164365279, -0.00745883957, -0.0143564716, 0.0104475953, 0.0170450471, 0.00304422434, 0.000429878419, -0.0149698844, 0.00376204797, 0.000487385871, 0.00414706254, 0.00755019858, -0.0122943595, 0.0170058925, -0.00356627791, -0.0268074479, -0.00237044925, -0.00225298712, -0.00792868715, 0.00675406726, 0.013312364, 0.0072761206, -0.005060656, 0.00990596507, -0.00729569746, 0.00714560738, -0.00452228822, -0.0172930229, 0.00454512844, 0.00412748568, -0.00714560738, 0.0208168831, 0.00837895833, -0.00972977187, 0.00388929853, 0.0335158333, 0.016079247, -0.0310621839, 0.0113807665, 0.00851599779, -0.0052727405, -0.0134298261, -0.00689110626, -0.0120202815, -0.00542609347, -0.0234402027, -0.00988638774, -0.000716192124, -0.0155180404, 0.0249672085, 0.0134559292, -0.023857845, 0.051213447, 0.0181935653, 0.0236229207, 0.0222525299, 0.0110871112, -0.0105063263, -0.0037914135, -0.00654198276, 0.0176062547, 0.00858778, -0.00373268244, 0.00663007936, -0.00663007936, -0.0130513376, -0.00385014457, -0.0224221982, 0.00650282903, 0.00260211038, 0.00200338033, -0.00404917728, 0.0131557481, 0.00347165577, -0.00752409594, -0.00243081152, -0.0128294649, 0.0229834057, 0.00117380463, -0.00865303632, -0.0204644967, -0.0122617316, -0.00558597222, -0.0203600861, 0.0100038499, -0.00914898794, 0.00236718636, 0.02127368, -0.000644001935, 0.00929907802, 0.00366416294, 0.0151003972, -0.00259558484, -0.00107020966, -0.0281647854, 0.0038109906, 0.0136516988, -0.011791883, 0.0639515519, -0.00563817797, -0.0107151484, -0.0240536146, 0.0181805138, -0.0095274765, 0.0125749633, 0.0176454075, 0.0130121838, -0.003859933, 0.0114068687, 0.00292349956, 0.00124232413, 0.0123465648, -0.0195770059, -0.0323151127, 0.0180108454, 0.0187286697, 0.0173713304, 0.0107543021, -0.017384382, 0.00864651147, -0.0129730292, -0.0185720529, 0.00615044264, 0.00322368043, -0.0147610623, -0.01951175, 0.00951442495, -0.0032922, -0.00759587856, 0.00446355762, 0.0177237168, -9.38064913e-05, -0.0138474694, 0.0131622739, -0.00888796058, -0.0218479391, 0.0164968912, -0.0202295724, -0.0226962753, -0.00228561554, 0.0171233546, -0.00171461946, 0.00788300764, 0.00467890454, -0.00626137899, -0.00776554598, -0.0172669198, -0.00770681491, -0.00601014076, 0.00841811299, -0.00889448635, -0.0060753976, -0.00212899945, 0.00261353026, 0.000353201816, -0.0167057123, -0.000894016586, -0.00800047, -0.00696288841, -0.0074979933, 0.00775902, -0.00263800169, 0.00350428419, -0.00798089243, 0.029208893, -2.39614401e-05, 0.0189896952, 0.0136908526, 0.00927950069, 0.00280603766, 0.00329546281, -0.00715865847, -0.00433630683, -0.000155698377, 0.00584373623, -0.00618633395, -0.0126793748, 0.00195770059, -0.0025499051, 0.00717171, -0.0083398046, -0.0273033977, 0.00115912186, -0.0288173538, 0.0135603398, 0.0100821583, -0.0191724151, -0.0121638468, -0.00606887182, 0.0164055303, -0.0268857554, 0.000910330797, 0.0150873456, -0.00442114053, -0.00982765667, 0.0138735715, 0.00626137899, 0.00878355, -0.00135244487, 0.000997611554, -0.0070999274, 0.0125423353, 0.0264028553, -0.000598322251, 0.0109304953, 0.0116483187, 0.00605582073, -1.18086564e-05, -0.00121622148, -0.00743926223, -0.0103758136, -0.00775902, -0.00401654933, -0.00676059257, -0.000114505092, -0.0197988786, -0.00590573, -0.000757793256, 0.0186112076, 0.0138735715, 0.00653219456, -0.0310360808, 0.0121442694, 0.0178672802, 0.00417642808, -0.00882270373, -0.009025, -0.00270978385, -0.0246278737, 0.00345534156, -0.000914409349, -0.0126336943, 0.00688458048, -0.0125619126, 0.0106042121, -0.0196683649, 0.0182327181, -0.0260635205, -0.00144298852, 0.00403612619, 0.0134167746, -0.0262984447, -0.00523032341, 0.00979502872, 0.0197466742, 0.0045647053, 0.0105976863, 0.00407854281, -0.0266377795, 0.00649956614, -0.0193029288, 0.0047017443, 0.0192115679, 0.0177106652, -0.0186112076, 0.0126793748, -0.00239818334, -0.00683890097, -0.0141084958, 0.027929863, -0.00457775639, -0.00747841643, 0.0295743309, -0.0146827549, 0.00239818334, -0.0214955527, 0.00393497804, 0.000425799895, -0.0279820673, 0.00221872726, 0.00568712037, 0.00929907802, 0.00311926962, -0.00393171562, 0.00147072261, -0.00433304394, 0.0105715832, 0.00133939355, 0.000345248671, -2.42163496e-05, -0.00879660156, -0.0105063263, 0.00955357868, -0.0184284877, 0.0260374174, 0.00696941419, 0.00661702827, 0.00653872, -0.010121312, -0.0247844905, 0.018506797, -0.00505739311, 0.00660071382, 0.000263677794, 0.00307522132, 0.00369352847, -0.00613412866, -0.0146436, -0.00368047715, 0.0207385756, 0.00520095788, 0.000492280116, -0.000562838919, -0.0135603398, 0.0039088754, -0.010669468, -0.00334114232, -0.00492688, -0.00350428419, 0.00722391531, 0.00153026928, -0.00696288841, -0.0109500717, -0.0029447081, -0.00965798926, 0.0115569597, -0.0106759937, -0.00140791305, 0.0134820314, 0.0107869301, 0.00478657801, -0.00785038, -0.00837895833, 0.0184415393, 0.000938880607, -0.00839853566, -0.0228659436, 0.0118897688, 0.0128881959, 0.0119680762, 0.00845074095, 0.00219751894, -0.0134559292, -0.00667902175, -0.00420579361, 0.0105324294, -0.00414053677, -0.00897932053, -0.00201969454, 0.0245756693, 0.00224972423, 0.0200468544, -0.00356301502, -0.0296265353, 0.0115243308, -0.00401981175, 0.00470827, -0.00339008495, -0.0199946482, -0.0102518257, 0.0285563264, 0.00582089648, 0.00491382834, -0.00730222324, -0.00153026928, -0.0162097607, -0.00251401379, 0.00312253251, -0.0303574111, 0.0143956253, 0.0219392981, -0.0159617849, -0.00391213829, -0.0108326096, 0.00441461476, 0.0142651116, 0.0109892264, 0.0153744752, -0.000818971428, -0.00226930133, -0.00600361545, 0.00817666296, 0.0105259037, 0.00214531366, 0.0131426966, -0.0156093994, -0.00710645318, 0.0290261749, -0.00762850652, 0.00476373825, 0.0112763559, -0.0130774397, 0.0187286697, -0.0241449736, -0.0153092192, 0.0221872739, -0.0175148956, -0.00136386475, -0.00997774769, 0.0173452273, 0.0112959323, -0.00177008763, 0.0308533609, -0.0437741876, -0.00650609192, -0.0245104115, -0.00585026201, -0.00601992942, -0.0104671726, -0.0366481543, -0.0037718364, -0.0204122923, 0.0170450471, 0.00277340924, -0.00732832588, -0.00873787049, 0.00172440801, -0.0232835859, -0.0115961134, 0.000182922653, -0.00456796819, 0.0222264268, 0.0200729575, 0.00766766071, -0.0136125451, 0.00918814167, 0.00196422637, 0.00431020418, -0.000122458252, -0.000212492087, 0.00362174609, -0.00307685276, 0.0113089839, 0.00115667481, -0.000333624805, -0.00812445767, -0.0204253439, 0.00354017527, -0.0298875626, 0.0066463938, -0.0246409252, 0.0120724868, -0.0226179678, -0.0167840198, -0.00937086064, 0.0085616773, -0.021182321, -0.0032922, 0.00656156, 0.00602971809, -0.0195770059, -0.00677364413, 0.0133254156, 0.00831370149, -0.000277340907, 0.0105389552, 0.00438198633, 0.0165751986, -0.0252021328, 0.0165099427, -0.015622451, -0.0111001628, -0.0253195949, -0.0172669198, -0.019054953, 0.0141215473, 0.00262984447, -0.00639515556, -0.00311111263, -0.0108456612, 0.000956010481, 0.00791563652, 0.000499213638, -0.0194073394, 0.0451054238, -0.011367715, -0.000286925497, 0.00378488796, 0.0262201373, -0.00798741821, 0.0122747831, -0.0190419015, -0.011184996, 0.030879464, -0.0247714389, -0.00705424789, -0.00267552421, 0.0107934559, 0.0129208239, -6.52566887e-05, 0.0308272596, -0.00849642, -0.0169667378, 0.000852415455, 0.000699878, 0.0367786698, 0.0201773681, -0.0101147862, -0.0187025666, 0.0275122188, 0.00329546281, 0.00346839288, -0.0075371475, 0.00862040836, -0.0302007943, 0.011002277, 0.00303933024, 0.00244386285, -0.0223438889, 0.00405896595, 0.0400676057, -0.0188461319, 0.00305401301, -0.0122421542, -0.00105715834, 0.0030572759, 0.0010514484, -0.0050508678, -0.0117788324, -0.00700204261, -0.0124444505, 0.0112110991, 0.00551419, -0.0132275308, 0.000588941621, 0.00465606479, 0.0121246921, -0.0142781632, -0.00786995608, 0.00621896237, 0.00507697044, -0.00440482656, 0.0254892614, 0.016470788, 0.0277471431, -0.000517974957, -0.0192637742, -0.0362044089, 0.0114786513, -0.00069906225, 0.0166926607, 0.0165621471, 0.0154788867, 0.00039561867, -0.00711950473, 0.00490404, 0.0056675435, 0.0131100686, 0.00607866049, 0.00609823735, -0.010578109, 0.0070999274, -0.00215510209, 0.0158704259, -0.0176062547, -0.00786995608, -0.0167318154, 0.0126206437, -0.00499213673, -0.00539999083, -0.0241058208, 0.00107836677, -0.0110871112, -0.00456796819, 0.0214433465, 0.00897932053, -0.00916203856, -0.0073609543, -0.0242624357, 0.00449944846, 0.00751757, -0.026167931, 0.0175018441, -0.0114917029, -0.0169928409, -0.0184676424, -0.015622451, 0.0190157983, -0.00781122549, -0.00543588214, 0.0270945765, 0.0016722026, -0.00640168088, -0.00925339852, -0.00221220171, -0.0247844905, -0.0213128347, 0.00968409237, -0.00433304394, -0.0220306572, -8.74337638e-05, -0.0112698302, -0.0118114604, -0.000593020173, 0.00692373468, -0.0194986984, 0.00444724318, 0.00471805828, 0.00807225239, 0.00919466745, 0.00971672, 0.0200599059, 3.46038883e-06, -0.0139127253, -0.00389582431, 0.0164185818, -0.0235315617, -0.00739358272, 0.0105389552, -0.00396108069, 0.0244843084, 0.0377966724, 0.0341684, -0.0186764635, 0.00234760926, 0.0352908149, 0.0199946482, 0.000729243504, 0.00418621628, 0.0297309458, -0.0126075922, -0.000507370743, 0.00285334862, 0.0107869301, -0.00560554955, -0.00824192, 0.0126859, -0.00373268244, 0.0116874725, 0.0057328, 0.0115112793, -0.0123857195, 0.00190712663, -0.0104345446, -0.0268074479, 0.00801352132, 0.000573443132, 0.0137822125, 0.0308533609, -0.0129795549, -0.00685847783, -0.0102191968, 0.0045647053, 0.000826720672, 0.0215086043, 0.00395129248, -0.0139779821, -0.00931213, -0.0129273497, 0.00527600339, 0.00306053855, 0.0054065166, 0.0109957522, 0.0230356101, 0.0061634942, -0.0111393165, -0.0173452273, 0.0086595621, 0.0240666661, 0.00467890454, 0.0149959866, -0.0109435469, 0.0222264268, 0.0150481919, -0.0138474694, 0.00665291911, -0.00630053319, 0.0128229391, 0.00436567236, 0.00374573376, 0.0070150937, 0.0157268625, 0.00542283058, -0.00457775639, -0.00631684717, -0.00568385748, 0.000586494454, -0.00970367, 0.0273295, -0.00342923892, 0.0133645693, 0.0271989871, -0.018506797, -0.0112828808, 0.00636252714, -0.00874439627, 0.00484204618, -0.00454186555, 0.0217043739, -0.0115765361, 0.00841811299, 0.00886838418, 0.00320736622, -0.00497582229, 0.0173974335, -0.0199554954, -0.00457449397, -0.00734137744, 0.0210257042, 0.0095274765, 0.0203861892, -0.0310621839, -0.0116222156, 0.0178672802, 0.0147349602, -0.000411728921, 0.0115439082, 0.00178966462, 0.00443745451, -0.00729569746, -0.000490240869, 0.00685847783, -0.00515854126, 0.0152700646]
|
05 Mar, 2024
|
Ubersuggest vs SEMrush: Which one is Better?
05 Mar, 2024
Search engine optimization (SEO) is a tool that makes websites more visible and friendly to search engines such as Google, DuckDuckGo, and Bing. It will rank websites based on the keywords used in it. For example, if anyone runs a business store, SEO can make customers who are looking to buy the product that is available in the store easily find it. In this article, we will break down the information regarding the most-used tools Uber suggests and Sem Rush. By examining the unique features, cost structure, performance, and overall comparison.
Uber Suggests, developed by Neil Patel, is a magic box for keyword research. It is a free SEO tool that is user-friendly. It delves deep into keyword research, search volume, trends, and insights. SEMrush is a tool for keyword research, Google trends, and marketing insights.
In this article, we will explore various aspects such as unique features, user interface, cost structure, keyword analysis, data collection, and social media analysis.
Full Comparison Between Uber Suggests and SEMRushBoth SEO tools have their features. Uber suggests, and SEMrush's ultimate goal is to give users the best engagement and rank their websites. Here is a detailed comparison between Uber Suggests and SEMrush.
Uber Suggests vs SEMrush: UI/UXUber SuggestsFigure: Uber Suggests User Interface (UI):Clean and Simple: The interface is uncluttered and easy to navigate, even for SEO beginners. It focuses on essential features without confusionIntuitive Design: analyzingIt has a user-friendly map for SEO searching. Finding keywords, analysing competitors, and exploring related searches is very easy.Visually Appealing: The data is presented in clear graphs, making it very easy for the user to understand trends.Mobile-Friendly: The interface adapts seamlessly to a phone or tablet, allowing it to do quick keyword research anywhere.User Experience (UX):
Fast and Responsive: The SEO research is smooth and efficient. There is no wait time for search results.Actionable Insights: The tool provides clear takeaways and suggestions and helps translate data into actionable steps for improving a website's SEO performance.Learning Resources: confused about any term or feature. Uber Suggest provides helpful guides and tutorials to answer questions and guide users.Supportive Community: The online community is so good for users and experts willing to help and share their knowledge. SEMrushFigure: SEMrush User Interface (UI) Clean and Modern: The design is very clean, with clear menus and a good layout. A well-organised app.Customization: There are plenty of options to personalize the workspace, like rearranging tools and setting up custom dashboards.Visual Appeal: Charts and graphs are easy to read and understand, with helpful tooltips for extra clarity.Accessibility: SEMrush is available in different languages and provides keyboard shortcuts for power users.User Experience (UX)
Easy to Learn: It is beginner-friendly. There are guides and tutorials to help beginners. The basic features can be used easily by beginners without being experts in SEO.Community Support: It has good community support. If you are Subscriptionstruck with an issue when using the website, you can contact customer service.Data-Driven Decisions: The user can easily track their data progress and measure the impact of SEO on their work. It tells the user what's working and where to improve based on the data.Uber Suggests vs SEMrush: Pricing ComparisonPrice comparison of Uber Suggests and SEMrush as follows:
Both Uber Suggests and SEMrush have a 7-day free trial.
Uber Suggests Pricing Free Plan: Uber suggests offering a free plan, which allows users to access limited features without any cost.
Monthly Subscription Plans: Uber suggests having three monthly subscription plans.
Individual plan: This is the basic plan that can be used for one website, which costs $12 per month. Business plan: This can give access to 2–7 websites, which costs $20 per month. Enterprise plan: This is for large businesses to access 8–15 websites, which costs $40 per month.Uber suggests can also have higher-tier plans, which give lifetime access with no monthly charges. lifetimeThe individual plan costs $120 in one-time payments, the business plan costs $200, and the enterprise plan costs $400, giving life-time access.
SEMrush Pricing Monthly Subscription Plans: SEMrush has several subscription options:
Pro Plan: This basic plan is for newbies and small teams. It offers five projects in this plan, which cost approximately $130 per month.Guru Plan: This offers 15 projects. The price is $249 per month.Business plan: This can be helpful for businesses and large enterprises and can be used for up to 40 projects. This costs approximately $500 per month. Some higher-tier plans are also available, with prices varying based on the projects and features.
Annual Subscription Discount: Users can opt for an annual subscription, which offers a discount.
The Pro Plan costs about $108 per month if users opt for an annual subscription.The Guru Plan is around $208 per month.The Business Plan costs $416 per month.Uber Suggests vs SEMrush: Keyword analysis Both Uber Suggestshas and SEMrush have different features and different strengths let's break downSuggest the keyword analysis of both Uber suggest and SEMrush in detail. KeywordHere is data about keyword analysis on Uber Suggests vs SEMrush.
Uber Suggests Keyword Analysis Based on keyword popularity (how many people search for it).How hard is it to rank for that keyword? behaviorHow much does it cost to advertise for that keyword (if any)Similar keywords to exploreSEMrush keyword analysis All of the above, plus :Estimated website traffic a keyword bringsHow many backlinks do you need to rank for that keywordWhether people are looking for information, buying something, or something else (keyword intent).These are the strategies of these keyword tools to give information about our keyword research.Uber Suggest vs. SEMrush: Data Collection Both Uber Suggest and SEMrush are tools that help users give the best keyword output by gathering information in different ways.
Data collection by SEMrushTrusted Partners: They team up with reliable sources like data companies to get information.Clickstream Clues: They follow anonymous online trails (like footprints!) to see what people click on.Social Media Spy: They peek at public data from platforms like Facebook and Twitter to see what's trending.Data collection by UberSuggestBorrowed Information: They get some information from other companies, just like borrowing books from a library.Anonymous Footprints: They track anonymous online behavior (like SEMrush, but with different methods).Google's Secret Tips: They use Google's keyword suggestions to help you find popular searches.SemRush has more sources and goes deeper, but Uber Suggest offers a good starting point for free.
SEMrush vs Uber Suggests: Social Media Analysis Both SEMrush and Uber Suggest are the best tools for keyword research, but when it comes to social media, SEMrush steals the show. It has the best features as compared to break downUber suggests. Let's breakdown it in detail.
Spy on your competitors: SEMrush lets you peek at the user's competitor pages, track their engagement (likes, comments, and shares), and even see what kind of content they are posting that's winning the most hearts. It is like having a social media spy.Grow your social media: SEMrush is not just about spying. It also helps the users improve their own social media game. It analyses the content and suggests ways to make it more engaging, helping the user attract more followers and get more people talking. While Uber Suggest doesn't have these fancy social media features, it is still great for other things.
Finding awesome keywords: It gives data about what people are searching for online. Uber Suggest is a treasure trove of keyword suggestions, helping users write content that people want to read.
If the user is serious about conquering the social media world, SEMrush is the best pick. and analyze the need for a keyword buddy, Uber Suggest can be helpful.
Conclusion In conclusion, Uber Suggest is a free and friendly explorer, perfect for beginners. It throws out tons of keyword ideas like a brainstorming buddy, helping you discover new search terms. However, it is light on details without providing an entire graphical map to analyze the entire keyword density.
On the other hand, SemRush to is a powerful pro for serious SEO warriors. It digs deep, offering detailed information on keywords, competitor analysis, and even future trends. Think of it as a high-tech treasure map with all the markings and hidden paths revealed. But it comes with a price tag that will shock users.Ultimately, choosing the better tool depends on the particular journey. The user can choose based on their budget, experience, and SEO goals.
Uber Suggests vs SemRush which is better -FAQs1. Can I trust the data these tools provide?
Both tools rely on trusted sources; they gather information from trusted domains. SEMrush has more sources for deeper insights when compared to Uber Suggest.
2. Which tool is better for finding long-tail keywords?
Both are great for long-tail keywords, but SEMrush has more filters and advanced options to refine your search. Uber suggests also having good keyword research.
3. Which tool is best for social media keyword research?
SemRush has a social media tracking tool, while Uber Suggest doesn't. If social media is your focus, SEMrush is the best pick.
4. Which tool is easier to use for beginners?
Uber Suggest. It is free and has a simple interface, like a friendly guide helping you brainstorm keyword ideas. SEMrush is more powerful but requires a paid subscription, so it is not suitable for beginners.
Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?/How to design datalists for mobiles using jQuery EasyUI Mobile ?/How to design menu using jQuery EasyUI Mobile ?/EasyUI jQuery menu widget/EasyUI jQuery datebox widget/How to make use of multi-mode jtsage-datebox plugin?/Step by step guide to make your first WordPress Plugin/Explain MonsterInsight Plugin in WordPress/How to Setup All In One SEO(AIOSEO) Plugin for WordPress?/WordPress SEO: Step-by-Step Guide, Benefits and Plugin/Difference Between Black Hat SEO and White Hat SEO/White Label Local SEO Services : A Complete Guide/SEO Checker | Complete SEO Audit in 9 Steps/Semrush Backlink Checker/Basics of SEMrush/Ubersuggest vs SEMrush: Which one is Better?
|
https://www.geeksforgeeks.org/ubersuggest-vs-semrush-which-one-is-better?ref=asr10
|
CSS
|
Ubersuggest vs SEMrush: Which one is Better?
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, WordPress SEO: Step-by-Step Guide, Benefits and Plugin, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, How to design menu using jQuery EasyUI Mobile ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, Step by step guide to make your first WordPress Plugin, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Basics of SEMrush, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, EasyUI jQuery datebox widget, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Ubersuggest vs SEMrush: Which one is Better?, Onsen UI Fab CSS Components, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, Explain MonsterInsight Plugin in WordPress, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, EasyUI jQuery menu widget, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, How to make use of multi-mode jtsage-datebox plugin?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to Setup All In One SEO(AIOSEO) Plugin for WordPress?, SEO Checker | Complete SEO Audit in 9 Steps, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Semrush Backlink Checker, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, White Label Local SEO Services : A Complete Guide, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, How to design datalists for mobiles using jQuery EasyUI Mobile ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Difference Between Black Hat SEO and White Hat SEO, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0374341309, -0.00896488, -0.0223416407, 0.0124111976, 0.022222802, -0.00135085965, 0.00808101892, -0.00124780438, -0.0370182, 0.0165037, 0.00570053514, -0.0256245546, 0.00111596799, -0.0477136634, -0.0158649422, -0.0140749365, 0.0234111883, -0.0241093636, 0.00188377616, -0.0131613659, -0.030125564, -0.0231586564, -0.0277339388, -0.0338095576, -0.0161323287, 0.00776164047, 0.00636528805, 0.0396326445, -0.0212275293, 0.00263672951, 0.00888317917, 0.0110148452, 0.0329182707, -0.0228764135, 0.00274442695, 0.020989852, 0.0189547427, -0.0366319716, -0.0263227317, 0.0456934087, -0.000691213063, 0.00402565487, 0.0257582478, -0.0191924199, -0.0303929504, -0.0211681109, -0.00452329079, -0.0380580351, 0.0217771586, -0.016756231, 0.032769721, 0.024272766, 0.0422768034, 0.00830384158, 0.025505716, 0.0377609394, 0.0212869495, -0.0258473773, -0.00434131967, 0.0406130627, 0.0369587801, -0.00106583291, 0.0010519065, -0.018449679, -0.0100492816, 0.00625016307, -0.0389196128, -0.0325617529, 0.00444158958, 0.00141027896, -0.0250749271, 0.0461687632, 0.0347602665, -0.0418608673, -0.00404422311, 0.0227278657, 0.020989852, 0.00830384158, -0.00253831642, 0.0694611147, 0.0202322565, 0.00440073898, 0.0193261132, -0.024302477, 0.0618554465, -0.0249560885, -0.0119804079, -0.0545468777, 0.0274219867, 0.012700866, -0.0193558242, -0.0251640566, 0.00863064732, -0.0227427203, -0.0140452273, 0.0334233344, 0.0179446153, 0.021836577, -0.0258473773, 0.0370182, 0.0157461036, 0.0109999897, 0.0311951097, -0.0276151, 0.0239311066, -0.0145205809, -0.0189547427, 0.00832612347, 0.0560323596, -0.00163217273, 0.0228169952, -0.000731599634, -0.0366022624, -0.00290782982, -0.0138224047, 0.0149439434, 0.00843753479, -0.0539229773, 0.0180931631, 0.0152707491, -0.0213018041, 0.0368399397, 0.00911342911, 0.0235448815, -0.0364537165, 0.0263227317, -0.018167438, 0.0347305574, 0.0565077141, 0.00799189, 0.0236191545, 0.0436434448, 0.00386596541, 0.0181971472, -0.00781363249, 0.0075908103, 0.030511789, -0.000796125212, -0.00605705054, -0.0258770864, -0.00263858633, 0.00762052, -0.00475725438, 0.0163848605, -0.0278527774, -0.00938081555, -0.00819985755, 0.0574584231, -0.0197717585, 0.0178554878, 0.0310762711, -0.0309574343, 0.0325617529, -0.0212126747, -0.0119284159, -0.0250303634, -0.0302444026, -0.0232180748, -0.00879405, 0.0359486528, 0.0175881, -0.0108068772, -0.00280198944, 0.0338689759, 0.0125374636, 0.0150256446, 0.0269317795, -0.00719715748, -0.0402565487, 0.0660742149, -0.0327400118, -0.00547399931, -0.00481296, 0.0100715645, 0.00994529855, 0.0122849317, 0.030690046, -0.031462498, -0.0369587801, 0.0057636681, -0.00790276099, 0.00304709375, -0.00537372893, -0.032769721, 0.0111931032, 0.0126191648, 0.049704209, 0.0216880292, -0.0203808062, -0.00077152194, -0.0240499452, 0.0202768221, 0.0238419771, 0.0445644446, 0.00704860967, 0.0145131536, -0.0263524409, 0.0670249239, 0.017320713, 0.00687406538, -0.0209304336, -0.0401971266, 0.00627244543, 0.0243173316, 0.0475056954, -0.00860836543, 0.0399594493, 0.0103760883, -0.0104132248, 0.0254611522, -0.0537744276, 0.0113193691, -0.0306603368, 0.00739398412, -0.0147359762, 0.0182862766, -0.0185833722, -0.0400485806, -0.0294868071, 0.0147359762, -0.0381471626, -0.011854142, 0.0346117169, 0.00475725438, -0.0363051668, -0.00173429959, -0.0124260522, -6.27848e-05, 0.0193112586, 0.0276299547, 0.0369290672, 0.0221336745, -0.00919513, -0.0126860114, -0.0220891088, -0.00335718808, -0.00272400165, -0.0220742542, -0.0479216315, 0.0252383295, 0.026560409, -0.000116459421, 0.00207967404, -0.00357443979, -0.0188953243, -0.0329479799, 0.0543092, 0.00329776877, 0.00107975933, 0.0350573622, -0.00655840058, -0.017038472, -0.0297839027, 0.0326508805, -0.0287589207, 0.0050914879, 0.0516353361, -0.0140378, 0.0136441467, -0.0396326445, 0.0603105463, 0.00434131967, 0.0111856749, 0.0216880292, -0.0126191648, 0.0310762711, 0.0117501579, -0.0111411111, -0.010725176, -0.0134436069, 0.0281944387, -0.010777168, -0.0121066738, 0.00268686446, -0.0418608673, -0.00553713227, 0.037285585, -0.0176772289, 0.0333639123, 0.0190735813, 0.0111188283, -0.0425739, 0.0447129905, 0.0265158433, -0.0214206427, -0.0299770162, 0.0182417128, -0.0177217945, -0.0290114526, 0.0057785227, -0.0392167121, -0.00386596541, 0.025327459, 0.00993787125, 0.0307494663, 0.0291451458, 0.00804388244, 0.0279567614, -0.015062782, 0.00903915428, 0.0255651362, 0.0214800611, 0.0137407035, -0.00547771296, -0.0115347635, 0.0289520342, 0.0021093837, 0.00272400165, -0.0256097, -0.0351464897, 0.0535961725, 0.00518433, 0.00205182121, -0.0125671728, 0.0164591353, 0.0427521579, 0.0336907208, -0.00326805911, -0.0331559442, -0.0355624259, -0.0118244328, -0.014550291, -0.024406461, 0.0336015895, 0.0288629048, -0.0401377082, -0.0354435891, 0.0398109034, 0.0334827527, -0.012136383, -0.0124111976, -0.0294273868, 0.00817014836, 0.00934367813, 0.0735016242, -0.0398109034, 0.00881633256, 0.0512491092, 0.000499957358, 0.000554734492, -0.0193112586, 0.00510634249, -0.0039439532, 0.00897973496, 0.0466441177, 0.019504372, 0.00384368328, 0.0110965464, 0.01280485, 0.0219108518, 0.00145670027, -0.0160729084, 0.00211495417, -0.0106509021, -0.00388824777, -0.0106954668, 0.0232180748, -0.016934488, -0.00911342911, 0.0209749974, 0.0116833113, -0.0290857274, -0.0314922072, 0.030081, -0.033928398, 0.0250897817, -0.0130276727, 0.00210381299, 0.0456042811, -0.0241687838, -0.0100195725, -0.012292359, 0.0149142342, -0.0282092933, -0.0625684783, 0.0284766797, 0.0212720949, 0.000683785707, -0.0405833535, 0.0214057881, 0.00837068819, -0.00134436076, 0.0308385957, 0.0689857602, 0.00869006664, 0.000735777547, 0.00536258798, -0.011675884, 0.0129831079, -0.0150182173, -0.0163997151, 0.0116907386, 0.000725100632, -0.0257582478, -0.028432114, 0.0127825681, -0.00925455, 0.000722779543, 0.0210492723, -0.00782106, 0.0168007948, 0.0257433932, -0.00768736657, 0.0114976261, -0.0138743967, 0.0191775654, 0.0154044423, -0.0444456041, -0.0348493941, -0.00448244, -0.0176178105, 0.00137871248, -0.0261593275, 0.044980377, 0.0373152941, 0.0442673489, -0.0294125322, 0.0173801333, 0.0308088847, -0.00759452395, -0.0373450033, 0.0363645852, 0.0244955886, -0.00678865, 0.00208338769, 0.0324429162, -0.00793247111, 0.00479810499, 0.0116610294, 0.013525309, -0.0113862157, -0.0101309838, 0.0106137646, 0.0171721652, 0.0374044217, -0.0210789815, 0.0490505956, 0.0127454307, -0.00805131, -0.0100195725, 0.0192666948, 0.00311022671, 0.00225978857, -0.0531505272, -0.0825927705, 0.014958798, -0.0522295274, -0.00444901688, -0.0347008482, 0.0147582581, -0.0132802045, -0.0186576471, -0.0734422058, 0.0541309454, 0.0587062277, -0.0385036804, 0.0102349669, -0.00473125838, 0.0310465619, -0.00133693335, -0.0173652787, 0.0571316183, -0.00509520154, 0.000646648637, -0.00699661765, 0.00317707355, -0.042365931, 0.00605705054, -0.0189250335, -0.0212869495, -0.0145354364, -0.0407616124, 0.0603996776, 0.0314922072, 0.00475354074, 0.0455745719, 0.0107697407, -0.0273031499, -0.0028985457, 0.0131168012, 0.0172018744, 0.0549033955, 0.0329182707, -0.0426630266, 0.017989181, 0.0177217945, 0.0399594493, 0.00444530323, 0.0211086906, -0.0174841173, -0.0488129221, -0.0147731127, -0.0414449312, -0.0174246971, -0.00402565487, -0.0307494663, -0.055735264, -0.0321161076, -0.0135995829, 0.0162957311, 0.0192221291, 0.0307197571, -0.030229548, 0.0259959251, -0.0250155069, -0.00122459373, -0.0322646573, 0.048604954, 0.00613503857, -0.0284172595, 0.0303780958, 0.0245995726, -0.00335533125, 0.0214354973, 0.0135773, 0.0394543856, 0.0069520534, 0.0433760583, 0.0100789918, -0.0130276727, 0.00929168612, 0.00146784133, 0.027971616, 0.00455300044, 0.0235151704, -0.0078581972, 0.0165037, -0.000735313341, 0.0361269079, -0.0367508121, -0.0200985633, -0.0254165884, 0.000460267154, -0.00975961331, -0.00385853811, 0.00551856356, -0.00634300569, 0.0164294243, 0.0202174019, -0.000318218, -0.0278082136, 0.0220594, -0.0418905765, -0.0119506987, -0.00195340812, 0.0166671015, 0.0165482629, -0.0152039025, 0.00267386669, 0.0385036804, 0.00585279707, 0.0224159155, 0.0225941725, -0.0110742645, 0.00597906299, 0.0188804697, -0.0159986354, 0.0139560979, 0.0139263887, -0.0147879682, -0.0156569742, 0.029204566, 0.0418608673, 0.0201728381, 0.00537001528, -0.0404050946, 0.00491694361, -0.00225793174, -0.0147731127, -0.0090243, -0.00326620229, 0.0285806637, 0.0143348956, -0.0280756, 0.0075908103, 0.0251343455, 0.0118987067, 0.00780620519, 0.0300364345, 0.0217474476, 0.0128939794, 0.033928398, 0.00457899645, 0.0234260429, 0.0238865409, 0.00570424879, 0.00667352555, 0.000208083453, -0.00570796244, 0.0141269285, 0.0120546818, 0.00306751928, -0.0340472348, -0.00972990319, -0.00584536931, 0.0259216521, -0.0028651224, -0.00775421318, 0.00372670148, 0.00562254712, 0.000418023759, -0.00882376, 0.0120621091, 0.0423956402, -0.00731228245, -0.0135178808, -0.000893145741, -0.000804016832, 0.0231438018, -0.000990630477, -0.0194598064, 0.00822213944, 0.0295313708, -0.0121215284, 0.00773193082, -0.0169493426, 0.0199054517, -0.0157461036, -0.00889803376, 0.0121066738, -0.0153153138, 0.00573767209, -0.0182268582, 0.00961106457, -0.00127287197, 0.00466441177, -0.0157758128, 0.00658068294, -0.00238976837, -0.019118147, -0.0396920629, 0.0190884359, 0.0267980862, -0.0153153138, 0.0317001753, -0.0159243606, -0.00805131, 0.00864550192, 0.000576552469, -0.0101235565, 0.00394766685, -0.000102939222, -0.0146765569, 0.152350977, -0.00421505375, -0.0018336412, -0.000139379932, 0.0343740396, 0.00155511335, 0.00102219696, -0.00531059597, -0.00886832457, -0.000700033153, 0.0119209886, -0.00920998491, -0.0274516977, -0.00889803376, -0.0159837808, -0.0116164647, 0.0494962409, 0.0165185537, -0.00370441936, 0.0239905249, 0.00105097808, -0.0105692009, -0.0144240251, -0.000780342, -0.0249412339, -0.00942537934, 0.0137407035, 0.0310168527, -0.0351762, -0.0168750696, 0.0123146409, -0.0151890479, -0.0097076213, 0.00041964851, 0.015805522, 0.02165832, -0.0294719525, -0.019296404, 0.000314968493, 0.0204847883, -0.0256245546, -0.0165631175, -0.0165779721, -0.0254760068, 0.0156718288, -0.0283875503, -0.0060384823, -0.00237862719, -0.00660667894, 0.0161768924, 0.00429675495, 0.0211384017, -0.0296353549, -0.0117724407, -0.0304820798, -0.0181080196, -0.00865292922, -0.00662896084, -0.021554336, 0.00132579217, -0.029204566, -0.00490580266, 0.0155381355, 0.00684806937, -0.0227130111, -0.00990816113, -0.0118764238, 0.015627265, -0.028253857, -0.0349385254, 0.0162214581, -0.00545914425, -0.00414449302, 0.0237231385, 0.0107920226, -0.0175881, 0.00683321478, 0.044623863, 0.0124928989, 0.0327103026, -0.0188061949, -0.00785077, 0.0241539292, 0.00566711184, 0.023069527, 0.00246404228, -0.0108588692, 0.00192741223, -0.0172315855, 0.000820728485, -0.000933068048, 0.00284655392, 0.00960363727, -0.000136942821, -0.0156718288, -0.0238568317, 0.010777168, 0.0155381355, -0.0208264496, -0.00114010705, 0.0155084264, 0.0133544784, -0.00928425882, 0.0084301075, 0.0189398881, -0.00587879261, -0.00166559604, 0.00981903262, -0.00554084592, 0.0085266633, -0.0251789112, -0.0121958023, -0.0423065126, -0.0309277233, 0.0057302448, -0.024480734, 0.00266643916, 0.013369333, 0.0292639844, 0.00594192557, 0.0181971472, 0.0154044423, -0.0103463782, -0.0446832813, 0.0385928079, 0.0252234749, -0.000958135526, 0.012700866, 0.000854616053, 0.0620337054, -0.00920255762, -0.0179594699, 0.0233666226, 0.00707831932, -0.0576366819, -0.0275259707, 0.00606076419, -0.0285063889, 0.0268723592, -0.0118467147, 0.0138521148, -0.0154192979, -0.000334233337, 0.03125453, 0.00938824285, -0.000733456458, 0.0173355676, -0.00700404495, -0.0172018744, 0.00322349486, 0.0398109034, -0.0327103026, -0.0100864191, -0.0297839027, 0.00610532891, -0.0258176681, -0.0201579835, -0.00737541541, 0.00923969503, -0.0129905352, 0.0147434035, -0.010546918, -0.0193261132, 0.000119882992, -0.0184942447, -0.00898716319, 0.0379391946, 0.000878290914, -0.00129236886, -0.0185685176, 0.0240350906, -0.00183178426, 0.00385111058, 0.0149216615, 0.00294682384, -0.0551707819, 0.0207373202, -0.00227650022, -0.000722779543, -0.00292639853, -0.0269614886, -0.0114976261, 0.0291302912, -0.00259402208, 0.0187616311, 0.0278824866, 0.0250452179, -5.99414961e-05, 0.00197011977, -0.0218068678, -0.011059409, -0.0340175256, -0.00571167609, 0.00289111817, -0.00325691816, 0.0161471833, 0.0215691905, -0.00489466125, -0.0194449518, -0.00918770302, 0.000890360447, -0.00329219829, 0.00863064732, -0.019578645, -0.012700866, 0.0278379228, 0.030690046, 0.0100789918, 0.019682629, -0.0063541471, 0.00109647098, 0.0117130214, 0.0218662862, -0.0120992465, 0.00184942444, 0.00796218, 0.0173801333, 0.0127677135, 0.0114010703, -0.036334876, -0.0122329397, 0.0155381355, -0.0132876318, -0.0169047788, -0.0119655533, 0.00756852794, -0.0445050225, -0.0185685176, -0.00771707622, -0.0110148452, 0.000258334505, 0.0114753442, -0.0179149061, 0.0196380652, -0.0048909476, 0.00375455432, -0.0227575749, 0.0242282022, -0.00241947803, -0.0120546818, 0.00399223156, 0.0119729806, 0.0210344177, -0.00702261366, -0.0155975549, 0.018063454, 0.0102423942, -0.0383254215, 0.0114307795, -0.049704209, -0.0491397269, -0.00818500295, -0.0031882145, 0.00656582788, 0.0317893028, -0.0220742542, -0.0019924019, -0.00526603172, 0.0308683049, -0.00329034147, 0.0103686601, 0.00126080238, -0.0277042296, 0.0140823638, -0.00793989841, 0.0198163223, 0.0140526546, 0.00538115669, 0.0247332659, -0.020054, -0.011958126, -0.0166522469, 0.0394841, -0.0270060524, -0.0224604793, 0.00729371374, -0.00849695411, 0.011341651, 0.0226238817, 0.00438588392, 0.015062782, -0.026916923, 0.0170236174, 0.0085118087, 0.0152261853, -0.0335421711, -0.0097893225, -0.000684249913, 0.036334876, 0.00912828371, -0.0211978201, -0.00998243503, -0.000718137424, -0.0193855334, 0.0490208864, -0.0338392667, 0.0139115341, 0.023351768, 0.0126934387, -0.0316704661, -0.0197271928, -0.064588733, 0.00459385151, 0.0339878164, 0.0139263887, 0.00920998491, 0.0121512385, -0.0180040356, -0.00771707622, 0.0189695973, -0.0262336023, -0.0186576471, -0.0596866459, -0.0347305574, -0.0132950591, 0.0033794702, -0.00328848464, -0.00756110065, -0.00823699497, -0.0110519817, 0.0119804079, 0.0219554156, 0.0287589207, 0.000147967876, -0.0173355676, -0.0168007948, 0.0111039737, 0.00729371374, -0.00817014836, 0.0110148452, -0.00566711184, 0.00981903262, -0.00424104976, -0.0195637904, -0.0263375863, 0.0149959354, 0.00819985755, -0.0327400118, -0.00943280756, 0.0226833019, 0.017885197, 0.0235894453, -0.0381174535, -0.00188377616, -0.0298878867, -0.0382660031, 0.0203808062, -0.0306009185, -0.0108885793, -0.0322646573, -0.0242430568, -0.0190141629, 0.0332747847, 0.0194449518, 0.00692977104, -0.00138428307, -0.00374341314, -0.021940561, -0.0175732449, -0.0225347541, 0.000426379585, 0.0237528477, 0.0253720228, 0.0165482629, -0.00984874181, 0.00861579273, 0.0274516977, 0.0145057263, -0.0195637904, -0.0263524409, -0.00163402956, 0.0239608157, 0.0144314524, -0.00732713705, -0.0364537165, 0.0106286202, -0.0325320438, -0.0140972193, -0.0162363127, 0.00228949822, -0.000900108891, 0.00608676, 0.00671809, 0.0054554306, -0.0189101789, -3.01158161e-05, 0.0111782476, 0.0165037, 0.0104206521, 0.00237491354, -0.0018141442, 0.00899459049, 0.0165631175, -0.015731249, -0.0274368431, -0.00359486509, 0.0132727772, -0.0127677135, 0.005811946, -0.00350945, 0.00643213466, 0.00600134488, -0.0256394092, -0.00674037216, 0.00853409059, -0.00305823493, 0.0044935816, -0.00315479119, 0.00505063683, 0.00840782467, 0.0211829655, -0.0328588486, -0.00124501914, 0.00972990319, -0.024272766, 0.0127602853, 0.0256542638, 0.0143126138, 0.00188284775, -0.00416306173, 0.0130276727, -0.0155381355, 0.027020907, 0.0125894556, -0.0181377288, 0.0100641372, -0.0140303727, 0.00360043556, 0.000485566736, -0.0063281511, -0.0175881, -0.00822213944, -0.0315219164, -0.030333532, 0.00240833685, -0.0190141629, -0.00770964893, 0.0179000515, -0.000130675951, 0.0485455319, 0.0107845953, 0.00418163044, -0.0125597455, 0.00981160533, 0.00315293437, 0.00368770771, -0.0267089568, -0.0108737238, 0.00807359163, -0.00277785026, 0.0123072136, 0.00684064208, 0.00803645421, 0.00082676328, 0.0571910366, -0.00999729056, 0.0189250335, -0.0120843919, -0.0278082136, 0.00917284749, -0.0010779025, 0.0165185537, 0.0293531138, -0.0149439434, -0.00136385765, 0.016964199, 0.0136961387, -0.00865292922, -0.00739027, 0.0459013768, -0.0108143054, 0.00158853678, 0.0136738569, 0.0264861342, -0.0244361702, 4.1082847e-05, -0.0130053898, -0.000676822499, 0.0146765569, 0.0210344177, 0.0286995023, -0.00590107497, -0.000270404038, -0.0121289557, 0.0126265921, 0.0131910751, -0.0079696076, -0.00439702487, -0.00811072905, 0.0385333896, 7.96125241e-05, 0.0244658794, 0.00823699497, -0.0140972193, 0.0118392874, -0.00294311019, -0.00827413145, 0.00243061897, -0.0346414261, -0.010034427, -0.014216057, -0.00073995546, 0.00188748993, 0.0152410399, 0.00448615383, 0.014498299, 0.0262336023, -0.0181822926, 0.0134955989, 0.0258770864, 0.0224901885, -0.0179446153, -8.5009e-05, -0.00815529283, -0.00289111817, -0.00169901946, 0.0231438018, -0.0276151, 0.0250155069, 0.00931396894, 0.00222265162, -0.00937338825, -0.0057785227, -0.0322349481, -0.00871977583, 0.0110816918, 0.0153004592, 0.025505716, 0.0131687932, 0.0138372593, -0.00363757275, -0.0219554156, 0.00720829889, -0.0145948548, -0.00575995445, 0.0211829655, -0.0154787172, -0.00531431, -0.00404050946, -4.36650298e-05, -0.010027, 0.000151101311, -0.0155084264, -0.015345023, 0.0125820283, -0.0245995726, -0.023247784, -0.00886832457, 0.00985616911, -0.00355030061, 0.00865292922, 0.0106657567, 0.00824442226, 0.00801417232, 0.0432869308, -0.0151741933, -0.0153004592, 0.0195935, 0.0069594807, -0.00817757566, 0.0148993786, 0.00935110543, -0.0123740602, -0.00428561401, 0.000653147639, -0.00072649325, 0.0014594855, 0.0140526546, 0.0096927667, -0.0173504241, 0.0289817434, -0.0112376669, -0.00428561401, 0.0257285386, -0.00568568, 0.0162511673, -0.00513605215, -0.0478622131, 0.00494293962, 0.0233369134, -0.00529574137, -0.0146691296, 0.0110519817, 0.0255205706, -0.00345188752, 0.0126785841, 0.0156569742, 0.00408507418, 9.67303713e-05, -0.0185239539, -0.0272734389, 0.00880890526, 0.0213909335, 0.0130202454, -0.00252346159, 0.0066846665, -0.0217177384, -0.0159392152, -0.0110891191, -0.00380654633, 0.00942537934, 0.0188061949, 0.0207224656, -0.0205590632, -0.000959992409, -0.0130573818, -0.0123294964, 0.0122255124, 0.0312248208, -0.00478325039, -0.00705232332, 0.00515462086, 0.0155084264, -0.00944766216, 0.00672923075, 0.0282687116, -0.00085043814, -0.0294868071, -0.00746083073, 0.0138743967, -0.0141269285, 0.00599391758, -0.0166671015, 0.02165832, -0.0159837808, -0.00954421796, 0.00528831407, 0.00100641372, -0.00626873178, -0.0228615589, 0.00308423094, 0.0191924199, 0.0177812129, -0.00275185448, 0.00987102464, -0.0137555581, 0.0138743967, 0.0232626386, -0.00391795719, 0.00546285789, 0.00638385676, -0.0179149061, -0.0146691296, 0.0142383398, -0.0120843919, 0.00603476819, 0.0116164647, 0.0166373923, 0.00603105454, 0.0147136934, 0.0129014067, -0.0158946514, 0.0206481926, -0.000717673218, -0.0137258489, 0.0173652787, 0.0159689263, 0.00293753948, 0.010494926, 0.00161638949, -0.0174395517, 0.00553341862, 0.0275556818, 0.0215394814, 0.0160877649, 0.045188345, 0.0216137543, 0.00780620519, 0.00711174263, -0.0374638438, 0.00225050445, -0.0329182707, -0.00936596096, -0.00817014836, 0.0124111976, 0.0140600819, -0.00712288357, 0.0202916767, 0.0179000515, -0.0134287523, 0.0217920132, -0.00626501814, 0.0239756703, 0.0172167309, -0.0350573622, 0.00848952681, 0.00535887433, 0.00403308216, 0.00295610819, 0.0198311768, 0.0130945193, -0.0269317795, -0.0340175256, 0.015835233, 0.00437102932, 0.0450992174, -0.00561140617, -0.00606447784, -0.005811946, 0.000115995208, 0.00816272, -0.0317298844, 0.00511377, 0.00813301094, -0.0194152426, -0.011163393, 0.0441782176, -0.0145577183, 0.0137258489, -0.0151964752, 0.0048092464, 0.00598277664, -0.0251194909, -0.0166373923, -0.0188656151, 0.0241242182, -0.00360043556, -8.76201957e-05, -0.0221485291, -0.012960826, -0.0462876037, 0.00174451224, 0.00265158433, 0.0167710856, 0.00326063181, 0.00958135538, 0.000596513622, -0.00300067244, 0.00541086635, -0.00439331122, 0.019400388, -0.0132579217, -0.0142531944, -0.00941795204, -0.0230843816, 0.0010779025, 0.0091505656, -0.00322906533, -0.0103315236, 0.00101198419, -0.0135327363, -0.0249115247, 0.0038325421, -0.00445644418, 0.0271397457, 0.00975961331, -0.0151890479, 0.00206667604, -0.0249857977, 0.0329776891, -0.0119952625, -0.0217028838, 0.0105617736, 0.00327362982, 0.0340175256, 0.0066698119, -0.011906134, 0.0159540717, 0.0110222725, -0.00465327082, -0.000607190537, 0.0150850639, -0.00479067769, -0.00139449572, -0.0050914879, -0.0329776891, 0.0185239539, 0.00434874697, 0.00679236371, -0.0131910751, -0.000227116194, -0.00159967784, -0.00341103668, 0.0100418543, 0.00195340812, -0.00130258151, -0.0228615589, 0.0203510951, 0.00511377, 0.00574881304, -0.0145057263, -0.000912178424, 0.00263301586, 0.00414449302, -0.0156124104, -0.0391275808, 0.0104206521, 0.0142754763, 0.0078581972, 0.00942537934, 0.00171294576, 0.00972247589, -0.0187467765, 0.00130908052, -0.00299695879, -0.0288777594, -0.011163393, 0.0101681203, 0.0131093739, -0.0326508805, -0.0299027413, 0.035978362, -0.000312183198, 0.00468669413, 0.00997500774, -0.00710431486, 0.0277339388, -0.0108588692, 0.0269317795, 0.023351768, 0.0232329294, 0.0256691203, -0.0274962615, -0.00952936336, -0.00863064732, -0.0107920226, -0.0231438018, -0.0055297045, -0.0174692627, -0.0176920835, -0.0097893225, -0.0124557624, 0.0284469705, -0.00334976078, -0.00727885915, -0.0235003158, 0.020529354, -0.00132300693, 0.00193483965, 0.0262484569, 0.00688520633, 0.00551113626, -0.0200985633, -0.0398703218, -0.0123220682, -0.0114976261, -0.0266643912, -0.0121438112, -0.00114289229, -0.0124037703, 0.0218068678, -0.00017512434, 0.00496893562, -0.0110371271, -0.0149365161, -0.0109034339, 0.0143497512, -0.000809587364, -0.0573990047, -0.000567732437, 0.00479439134, 0.0015569703, 0.00918770302, 0.00540343858, 0.00349459518, -0.00138613989, 0.0149513707, 0.00496150786, -0.00580823235, 0.0138149774, -0.00311208353, -0.0310465619, 0.0336313, -0.00554084592, -0.0064432756, 0.0280904546, -0.020989852, -0.0100938464, 0.00262930221, 0.00892031565, 0.0174395517, -0.025401732, 0.00630958239, -0.015449007, 0.0114976261, 0.00661039259, -0.010027, -0.00349273835, 0.00521032605, -0.00418905774, 0.0278527774, -0.00935110543, 0.00962592, 0.000212493484, 0.0130796637, -0.0198014677, -0.0078581972, -0.0150702093, -0.021836577, 0.00428932765, 0.00274628378, 0.0090688644, -0.00993787125, -0.0236488655, 0.00532545103, -0.00312322471, -0.0134436069, 0.0151964752, 0.00391053, -0.00294125336, 0.0186576471, -0.0117353033, 0.012470617, 0.00558912382, 0.00689634774, -0.00345745799, -0.00720829889, 0.00592707098, 0.00182528538, -0.00324949063, -0.00707089156, -0.015166766, 0.0131316558, 0.0196083561, -0.0183605514, -0.00630586874, -0.013087092, 0.026916923, -0.00762794726, -0.00701147225, -0.00101105578, 0.0141269285, 0.00585279707, 0.00871977583, -0.00137964089, -0.0131762205, 0.00457156915, -0.00249003829, 0.0135624455, -0.0234260429, 0.00265901187, 0.00799931772, -0.00997500774, -0.00563740218, -0.00923226681, -0.00233220588, -0.0102498224, 0.0252234749, 0.00361900427, 0.0144908717, 0.0153598785, -0.0143646058, 0.000668466673, 0.00931396894, 0.0177960675, -0.0186576471, 0.00925455, 0.0103092417, 0.00958135538, -0.0147731127, 0.000478139351, -0.00369142136, -0.0224753339, -0.021732593, -0.0141046466, 0.0120843919, 0.0247629751, 0.0140080899, -0.017142456, 0.00380654633, 0.00527717266, -0.00218365784, 0.0109554259, -0.00120973901, 0.00985616911, -0.0022672161, -0.0072417222, 0.00279084826, 0.0176029559, -0.00317335967, -0.000234079387, -0.0233666226, 0.0383254215, 0.0213018041, 0.00817757566, -0.0161620378, -0.00199054508, -0.0103092417, -0.0177663583, 0.0150405, -0.00848209951, 0.00372298784, -0.0151741933, -0.00781363249, 0.010725176, 0.0114010703, -0.00869006664, 0.00732713705, -0.0199351609, -0.00626873178, 0.00643584831, 0.00999729056, 0.0204847883, -0.000266922434, -0.0177663583, 0.0272437297, -0.00525860442, -0.00999729056, -0.0217920132, -0.0137926955, -0.0210641269, 0.000496243651, 0.00249746558, -0.00827413145, 0.0070003313, 0.0242282022, 0.00912085641, 0.0070003313, -0.00648041302, 0.00880890526, -0.0326508805, 0.00114660594, -0.0112450942, -0.0236043, 0.000358372403, -0.00939567, 0.00908371899, 0.00523632206, -0.0027147173, -0.000681928825, 0.00975218602, 0.00547399931, -0.0148622422, -0.00995272584, 0.00246032863, 0.0148028228, 0.0112748044, -0.00037554829, 0.0104503622, 0.0200985633, 0.00928425882, 0.00712288357, -0.0139560979, 0.00516204815, -0.000271564582, -0.0316407531, 0.00430789636, 0.0209601428, -0.0107028941, 0.00750539498, 0.0183605514, 0.0248521045, -0.0104429349, -0.00418534409, -0.000936781755, 0.0252383295, -0.006402425, 0.0123294964, -0.00872720312, 0.0206927564, -0.00382882846, 0.00287069287, 0.0124260522, -0.0167859402, -0.00186984974, -0.0190290175, 0.00225050445, -0.0161323287, 0.0118689965, -4.22433804e-05, -0.0204402246, -0.0073159961, -0.00654725963, -0.0166076832, -0.0116016101, -0.0175732449, 0.00627615908, -0.0123740602, 0.0222673677, -0.0163254403, 0.0122997863, -0.0048983749, 0.000216787448, -0.0144834444, -0.0022672161, 0.0141046466, -0.0109405713, -0.0157609582, -0.000917749, -0.00142699061, -0.00462727481, 0.00358743779, -0.00863807462, -0.0122997863, 0.00179557572, -0.0060384823, -0.0207521766, -0.00466812542, -0.014832532, -0.00500235893, -0.0385036804, -0.0176772289, -0.00818500295, 0.0201728381, -0.00173337117, 0.0114159249, -0.00124037697, -0.0199054517, -0.00876434054, 0.0109925624, -0.00637271535, 0.00428190036, 0.00554827321, -0.0201728381, 0.0261890385, -0.00320492615, -0.0122552216, -0.00296910596, 0.00568939373, -0.00121252425, -0.0163551513, -0.000106188716, 0.020054, 0.0110891191, 0.0168899242, 0.00671809, 0.0179743264, 0.000350480783, -0.00673665851, -0.00750910863, 0.00938081555, 0.012752858, -0.0108514419, -0.0114010703, -0.000233499115, 0.000549628108, -0.0189101789, -0.00463470211, -0.0152410399, 0.00589736132, 0.0195489358, 0.00216508913, -0.00503206858, 0.0205887724, -0.0107177487, -0.0117055941, -0.0010314812, -0.0226833019, -0.00534401974, -0.00954421796, 0.00273328577, -0.0146245649, 0.00602362724, 0.0129014067, 0.0147136934, 0.00148548139, -0.0136218648, 0.0178406313, 0.0181525834, -0.0317298844, -0.0117724407, 0.0155827, 0.00223750644, -0.00617217552, 0.0222376566, 0.00586765166, -0.00259216502, 0.00109182892, -0.0127157215, 0.0131613659, 0.00724914949, 0.0197717585, 0.0530316867, 0.00544428965, -0.0186725017, 0.0189844538, 0.0131985024, 0.00750168134, 0.00285398122, -0.0145874275, -0.00515090674, -0.0124037703, -0.0283132773, 0.00497636292, -0.0124037703, 0.0140378, 0.00874205865, 0.00327362982, -0.0282687116, -0.000210752682, 0.0251640566, -0.0137778409, -0.002129809, -0.00504320953, -0.0163402967, 0.00339246821, 0.00599763123, -0.00699661765, -2.04688895e-05, -0.00250303629, 0.0134361796, -0.00695576705, -0.0168007948, 0.00511377, -0.00909857359, 0.0169939082, 0.0147731127, -0.0180486, 0.00558912382, 0.012908834, 0.017038472, -0.0103686601, -0.00435988791, 0.0180931631, -0.00408507418, -0.0137109933, 0.00447872654, -0.00904658157, 0.0110074179, 0.0105766281, -0.00561883347, 0.0178257767, 0.0103909429, 0.00288369088, 0.0113565056, 0.00434874697, -0.0172910038, 0.00144370226, -0.00252160477, -0.0108737238, -0.0145280082, 0.00524746301, -0.0308385957, 0.0106063373, 0.00600505853, 0.00583051471, -0.00281498744, 0.00741997967, -0.00409621513, 0.0226981565, -0.0213018041, -0.000197058398, -0.0130276727, 0.0103835156, 0.000282705674, -0.0286252275, -0.00296910596, 0.0193558242, 0.0138669694, 0.00892031565, 0.00722686714, 0.0331856571, 0.0198311768, -0.00215394818, 0.00575252669, 0.0213909335, 0.0349682346, -0.00727143185, 0.00261630421, 0.00277227978, 0.00213723653, -0.00373969949, 0.0282984208, -0.0107177487, -0.0248223953, -0.00871234853, 0.00276670931, -0.0086009372, 0.00834097806, -0.00539601129, -0.0204402246, -0.00480553228, 0.00568939373, -0.00442302087, -0.00456414185, 0.0100121452, -0.0165482629, 0.00547771296, -0.0197123382, 0.00913571101, -0.000975775649, 0.00798446313, 0.00708203297, -0.0303929504, -0.00145112968, -0.00234149024, 0.00175101124, 0.0132282125, 0.00532916468, -0.00992301572, -0.0114159249, -0.0196232107, 0.000828620105, 0.00925455, -0.00452329079, -0.0188210495, -0.0136590023, -0.0229506884, -0.00612018351, -0.00854894612, -0.000234543593, -0.0106657567, 0.0124483341, 0.00572653115, 0.0101755476, 0.0118095772, 0.00932882354, -0.0198757425, 0.00121252425, -0.00351316365, 0.00565597042, -0.000475818291, -0.00869749393, -0.00636528805, 0.0219554156, 0.0125151817, 0.00100177154, 0.0051397658, 0.0229952522, 0.0211086906, -0.0207670312, -0.0212275293, -0.00600505853, -0.000940031256, 0.00170458993, -0.00723058078, -0.00857865531, 0.0155678457, -0.0101235565, -0.0122329397, -0.00473868567, -0.00294311019, -0.00574509939, 0.0197271928, -0.0162660219, 0.0110668372, 0.0127231488, 0.012240367, 0.0211086906, -0.00265344116, -0.000502742652, 0.00511377, -0.00874205865, 0.0153747331, -0.0142383398, -0.0110297, -0.000375316158, -0.00232292153, -0.000778020883, 0.00835583359, 0.00767993927, 0.00629472779, 0.0293679684, -0.0100567099, -0.00789533369, 0.0309277233, 0.00708946027, -0.00780620519, 0.00764280185, 0.0191330016, 0.00336832926, 0.00974475872, -0.0151444832, 0.0102572497, 0.00476096803, 0.00938824285, 0.00483895605, 0.0220742542, 0.00413706573, -0.0137481308, 0.00205182121, 0.010264677, 0.0280310344, 0.0100567099, 0.00343331904, 0.0219554156, 0.0229061246, 0.00131093734, -0.0303483866, -0.00417048903, -0.00868263934, -0.0174841173, -0.00774678588, -0.0228764135, -0.0107177487, 0.00361529039, -0.00837068819, -0.00134157541, 0.0350573622, -0.0187022109, 0.020054, -0.0136812842, 0.0115273362, -0.0040108, 0.00780620519, 0.00355030061, 8.73880854e-05, -0.00791761652, -0.00109275733, -0.00291154371, -0.00900201779, 0.0140823638, 0.0157015398, -0.0118095772, -0.0179149061, -0.00808844622, 0.0141789205, -0.000877826707, 0.0213909335, -0.00442302087, 0.00860836543, -0.00183921168, -0.0176178105, 0.000245568663, 0.0257433932, -0.00598649029, 0.0142012024, -0.0025903082, -0.00648412667, -0.00427447306, 0.0213909335, 0.003695135, -0.000258566608, 0.00022874093, -0.00726029044, 0.0114530623, 0.00941052474, 0.0010584055, 0.0321755297, -0.00822213944, -0.00424847705, 0.0148919513, 0.0142457671, -0.022787286, -0.015805522, 0.00432275096, 0.0104355076, -0.031611044, 0.0144240251, -0.00884604175, -0.00656211423, 0.00254203, 0.02684265, -0.0123740602, 0.0185982268, -0.00328291394, 0.0147731127, -0.00176679448, 0.0141343558, 0.0192815494, 0.000280384615, 0.00711545628, -0.00923226681, 0.00555570051, 0.0244658794, -0.0151370559, -0.0157461036, 0.00903172698, -0.0312842391, -0.00675522676, 0.006402425, -0.00309537188, -0.00594935333, -6.46996778e-05, 0.00808844622, 0.0015179764, -0.0019329827, 0.013933816, 0.00617588917, -0.0115124816, -0.0217771586, 0.00555941416, 0.00756852794, 0.0114827715, -0.0222673677, -0.00437102932, -0.000421505363, -0.00114660594, 0.00443787593, -0.013421325, -0.00037786935, 0.0125894556, 0.0294125322, 0.00160617684, 0.0115867555, 0.0110445544, -0.00665867049, -0.00153097429, 0.0103538055, -0.00600505853, 0.0143051865, -0.00339618186, -0.00255502807, -0.0177217945, 0.00310651306, -0.0109405713, 0.008519236, -0.00866035651, -0.0111782476, 0.00130722369, 0.00781363249, -0.0145280082, 0.0100195725, 0.0169939082, -0.0046161334, -0.000466766127, -0.0185685176, 0.017885197, -0.0221039634, 0.0183902606, -0.00450472254, -0.0139189614, 0.0195340812, 7.67692181e-05, -0.0078804791, -0.00670694886, -0.00405907817, -0.0109702805, 0.0127602853, 0.0330668166, 0.00749796769, 0.0113862157, -0.00104262226, -0.0070189, -0.00616474822, 0.0139412433, -0.0286103729, 0.0213463679, 0.011779868, -0.0202916767, -0.0129236886, -0.0187319219, -0.0170236174, 0.0319972709, 0.0186130833, 0.00433760602, -7.28234081e-05, 0.0327103026, 0.000859722379, 0.0010519065, 0.0134658897, 0.00957392808, 0.00977446791, 0.0085266633, 0.0129831079, 0.0019589786, 0.0211086906, -0.0213166587, -0.00381397363, -0.00413706573, -0.00799931772, -0.0015114774, 0.000534773339, 0.0413855128, -0.00154768594, 1.11048439e-05, 0.00116703135, -0.0285063889, 0.0112673771, 0.00646555796, 0.0184645336, -0.00465698447, 0.0172464401, -0.00125801715, 0.0175583903, -0.0151890479, 0.00713031087, -0.020633338, -0.0161768924, 0.0010027, 0.0060384823, -0.00632443745, 0.0256542638, 0.0168453604, 0.0183159858, 0.0281795822, -0.0176029559, 0.0100492816, -0.00999729056, 0.0230992362, 0.0021632323, -0.0308980141, 0.00183549803, 0.00643956196, -0.0150776366, 0.0145651456, 0.00738655636, 0.00376383867, -0.000240694411, -0.0115644727, -0.0170087628, -0.015166766, -0.00186427927, -0.00551485, 0.0159689263, 0.00819243, -0.0131687932, 0.0142606217, -0.0187467765, -0.032413207, -0.00677750912, -0.0243321862, 0.0064098523, -0.00990816113, -0.0112970863, -0.00612389715, 0.0237528477, 0.0216137543, 0.000641078106, 0.0166225377, -0.0170830358, 0.00259216502, 0.0325320438, -0.014884524, 0.00606819149, -0.000517597422, -0.0214057881, -0.00895002577, -0.00762052, 0.0100864191, 0.00531802373, -0.00161824632, 0.00151983323, 0.00821471214, 0.0043004686, 0.00720087113, -0.00615360681, 0.00220965361, 0.00758709665, 0.00601248629, 0.0123072136, 0.00227092975, -0.000109612287, -1.40424418e-05, -0.00402936852, 0.00680721877, 0.0141714932, 0.0085266633, 0.00221708114, -0.000769665057, 0.00254017324, 0.0168453604, 0.00185592333, -0.00591221638, -0.00495036691, 0.0112970863, -0.0114679169, 0.0102201123, 0.0184793901, -0.0304523706, -0.00949965417, -0.000526417512, 0.00882376, -0.0120621091, 0.00316964602, -0.00854894612, -0.00345003069, 0.012136383, -0.000836047519, -0.0153895877, -0.0134361796, -0.0126860114, -0.00418163044, -0.0156569742, 0.00892774388, -0.0165482629, -0.00773193082, 0.00248446781, 0.00687777903, 0.0153598785, -0.00909114629, -0.00144184544, -0.0040108, -0.0104355076, -0.027585391, 0.00673665851, 0.0168007948, 0.0420985445, -0.00154954288, -0.00382140093, 0.00102498219, 0.0025494576, 0.012344351, -0.00277785026, 0.0085266633, -0.0057636681, -0.00183085585, -0.00496522197, 0.0273625683, -0.00468298048, 0.020707611, -0.0192369856, 0.000915892131, 0.00856380071, 0.00627244543, -0.0228169952, -0.00526603172, -0.0290708728, -0.00299695879, 0.0146617023, -0.0048092464, 0.00420391234, -0.000891288859, 0.00141584955, -0.00808844622, -0.00651383633, 0.00592335733, 0.00221151044, 0.0223416407, 0.00185313809, -0.00622045342, 0.00691862963, 0.00649155397, 0.00402565487, -0.0131390831, -0.0179297607, -0.00378426397, -0.0327103026, -0.00342774834, -0.00225793174, -0.00360414945, 0.00685178302, -0.00758709665, 0.00344446022, -0.0220891088, -0.00193669647, 0.0025903082, -0.011215385, 0.0118912794, -0.0037861208, 0.02289127, 0.0060941875, 0.00693348469, -0.00991558842, -0.00567082549, -0.00763537455, 0.00289297523, -0.0014984794, 0.0392761305, 0.0101978304, 0.000262048212, 0.00144091703, -0.0104874987, -0.00296539231, 0.0137184216, 0.00996758, 0.00275185448, -0.0252531841, 0.00946994405, 0.00819985755, -0.0180040356, 0.0112005305, 0.0161026195, -0.0024120505, -0.00255502807, 0.0028855477, -0.000628544367, -0.0154638616, 0.00322349486, -0.0121215284, 0.0271694548, -0.0101904031, -0.00590850227, -0.0019719766, -0.00848952681, -0.00762052, 0.00423733564, 0.00255874172, -0.000897323654, -0.000638292811, -0.00237677037, 0.00956650078, -0.0218959972, -0.0048092464, 0.00725657679, 0.0115421908, -0.00494665327, -0.00166466762, -0.0164442789, -0.00543686189, -0.00643584831, -0.00169530569, -0.00829641428, -0.0137184216, 0.011854142, 0.0185239539, -0.01601349, 0.0376718082, 0.0264712796, 0.0305414982, 0.00499864528, -0.00493551232, -0.00199054508, -0.0153153138, -0.0023080667, 0.0140675092, 0.00252531841, 0.00464955671, -0.00233777636, 0.00224493374, -0.00503206858, -0.0183308404, -0.0236637201, -0.0124111976, -0.00216137548, -0.000519918511, -0.00612018351, 0.0205887724, -0.000293846795, 0.0186130833, -0.00262558856, -0.0113119408, 0.0307791755, 0.0160729084, -0.0216880292, -0.0213315133, -0.0165482629, -0.00496522197, -0.020633338, 0.0142012024, -0.0188656151, 0.00340917986, 0.0116164647, -0.0090762917, 0.00597906299, -0.000793339917, 0.00765765691, 0.0039439532, -0.0100864191, -0.0261890385, -0.00626130449, 0.0135698728, -0.012136383, 0.0426927358, -0.00388824777, -0.00345745799, -0.0192072745, 0.00405536452, -0.00593449827, 0.00112061, -0.0128791239, -0.0103240963, 0.00360972, 0.0352950394, 0.0170978922, 0.00557426922, -0.000909857394, -0.00817757566, -0.025535427, 0.0344334617, 0.0128271319, 0.00281127356, 0.0184051152, -0.0177812129, 0.00255688489, -0.0328291394, -0.011958126, 0.00444530323, 0.00232292153, 0.00821471214, -0.019296404, -0.0147136934, 0.0123220682, -0.00662896084, 0.0241242182, 0.0109554259, -0.00267572352, -0.0080216, 0.0162808765, 0.0166819561, -0.0252680387, 0.024272766, 0.00841525197, -0.0328588486, -0.0100047179, 0.0261444729, -0.0132727772, 0.00754624559, -0.000218644302, -0.00735313306, -0.0104057975, -0.0120918192, -0.00866035651, -0.0113862157, -0.000291525736, -0.00947737135, -0.0196677744, -0.00148455298, 0.00479067769, 0.00531059597, -0.015627265, -0.0166819561, -0.0160580538, -0.00313622272, -0.00490208901, 0.00593821192, 0.00437102932, 0.0048426697, -0.00805873703, 0.0170533266, -0.0046161334, 0.0107697407, -0.00246218545, 0.0165631175, -0.00558169652, -0.0181080196, -0.000135085967, -0.0222079474, -0.00586393801, -0.00108068774, -0.00459756516, 0.00260887691, -0.00661782, 0.0275705364, 0.0164739899, -0.0207670312, -0.0179743264, -0.00348902447, -0.019400388, 0.00440816628, 0.00806616433, -0.0127751408, 0.00579709141, -0.0138224047, 0.0280013252, 0.0151890479, -0.011958126, 0.0146988388, -0.0106137646, 0.000758988201, 0.017320713, 0.0109034339, -0.00949965417, 0.00281498744, 0.0154341524, 0.0103018135, 0.00624644943, 0.0289074685, 0.0157609582, 0.0123814875, 0.0173652787, -0.00144370226, 0.0100641372, 0.00188284775, -0.0135847274, -0.00600877265, -0.0182120018, 0.00648412667, 0.00319564203, -0.0060459096, -0.0138966786, -0.0042521907, -0.00103426643, 0.0177960675, 0.015731249, 0.00448244, -0.00531059597, 0.00250117946, 0.0109034339, 0.0154935718, -0.0198757425, -0.010777168, 0.00941795204, -0.0282835662, -0.00114660594, -0.000461891876, -0.00964077469, -0.00241762097, -0.0184051152, 0.0187764857, 0.00233406271, 0.02956108, -0.0122997863, 0.00672180345, 0.00811072905, -0.00101198419, -0.0362457484, -0.00120138307, -0.00115403335, 0.0236043, 0.00877176784, -0.00659182388, -0.00398851791, -0.0156866834, -0.0171127468, -0.000331215939, -0.00212795218, 0.00281684427, 0.008519236, -0.0157906674, 0.00870492123, 0.00130722369, -0.0127231488, -0.0209601428, 0.026456425, -0.00597906299, -0.0186873563, 0.000546378666, -0.00232106471, -0.00627615908, -0.0022746434, 0.00707831932, -0.00271100365, -0.0359486528, 0.00658811023, -0.00723429443, 0.0137629854, 0.0199500155, -0.00339061138, -0.0151964752, 0.00858608261, -0.00547399931, -0.000321235362, 0.00671066251, -0.00127658562, 0.00345374434, -0.0129979625, -0.0119358432, -0.0169939082, 0.0220742542, -0.00331076677, 0.0076056649, 0.000174079862, 0.00848952681, -0.0313733667, 0.0086009372, 0.00679979147, -0.00823699497, 0.00694462564, -0.00262744538, -0.0005616977, 0.00305452128, -0.011111401, 0.0042447634, 0.0197866131, 0.000570053526, -0.00377497985, 0.0218514316, -0.000176981193, 0.00968533941, -0.0226090271, -0.00483895605, -0.00804388244, -0.0121141011, 0.00342589151, 0.00613132445, -0.00987102464, -0.00779135, -0.00208338769, 0.00486123795, 0.0168750696, -0.0203659516, 0.0109554259, -0.0025828809, 0.00691491598, 0.00338875456, 0.00224122, 0.0072417222, 0.019400388, -0.0125820283, -0.0051731891, -0.0243618954, 0.015166766, 0.0131242285, 0.00242690532, -4.62182034e-05, -0.0025494576, -0.0042521907, -0.000213305859, -0.00988587923, -0.00116517453, -0.0145280082, 0.0057785227, -0.00857865531, 0.0028985457, -0.00920255762, -0.00333676278, -0.0109851351, -0.00214652065, 0.0172315855, -0.02289127, 0.00857865531, 0.0113490783, -0.0126265921, -0.0097076213, 0.00522518111, 0.0131539386, -0.00342403469, -0.00871234853, -0.00318450085, -0.0115570454, 0.00114567752, 0.0132727772, -0.0172761492, 0.0211532563, 0.0242282022, -0.00333676278, 3.62956489e-05, -0.0018206432, -0.00990073383, 0.00689634774, 0.00920998491, 0.0147731127, 0.0128791239, -0.00959621, 0.0120843919, 0.00510262884, -0.00241390732, -0.00305823493, 0.0146097103, -0.00686663808, -0.0222970769, 0.0320269801, -0.0135178808, 0.0137407035, -0.010027, -0.00116981659, 0.0309574343, -0.00849695411, -0.00489466125, 0.0265455544, -0.00531802373, -0.00819985755, 0.00268686446, 0.0078730518, 0.0114159249, 0.00305823493, 0.00748682627, -0.0215097722, -0.00435246062, -0.0232626386, 0.00779877743, 0.00707460521, -0.00344817387, -0.017989181, -0.00188563298, -0.0256245546, 0.0123517783, -0.0024584718, -0.0187319219, -0.0048426697, 0.0107326033, -0.003695135, -0.0108217327, 0.000696783653, -0.00634671934, -0.0103909429, 0.00494665327, 0.0169939082, -0.0190141629, -0.00686663808, 0.00306009175, -0.0172018744, -0.0218662862, -0.000512026891, 0.00967791211, -0.0154341524, -0.00225793174, -0.00498379, -0.00848952681, -0.0301404186, -0.0078804791, -0.00644698972, -0.011059409, 0.00989330653, -0.0240499452, 0.00681093242, 0.000472336687, -0.0144314524, -0.0179149061, 0.0126265921, -0.0106806112, 0.0163402967, 0.025505716, -0.00482781464, -0.0212423839, -0.0161026195, 0.00819243, -0.0025958789, 0.00282798521, 0.0194300972, 0.0139932353, 0.0149142342, -0.0124780443, 0.0213612225, -0.0100864191, -0.00154025853, -0.0240053795, -0.0135104535, -0.00415934809, 0.00392167084, -0.00854894612, 0.00216880301, 0.0010584055, -0.00476468168, 0.000823978, -0.000195317596, 0.0154044423, -0.0400188714, 0.0238419771, -0.0235597361, -0.0142383398, -0.0045752828, 0.0184051152, -0.0112228123, 0.00805873703, -0.0247184113, 0.0143720331, 0.0317001753, 0.00358372391, -0.0125523182, 0.00526603172, 0.000812372658, 0.0234260429, 0.00566711184, 0.0181080196, -0.0234706067, -0.00859351, -0.00718230288, -0.00176586607, 0.0227575749, 0.0231140908, -0.00259216502, -0.00910600089, 0.0241539292, 0.00741255237, -0.00652497727, 0.00932139624, 0.0814043805, -0.0215394814, 0.0174989719, -0.0190587267, 0.0235448815, -0.0227130111, -0.00244733063, 0.0451289266, -0.0138743967, 0.0039031026, -0.00802902691, -0.0123517783, 0.00318264402, 0.0134881716, -0.00808101892, -0.0115496181, 0.00534401974, -0.0196974836, 0.00344817387, -0.0171276014, -0.011854142, -0.0130351, 0.0160283446, 0.0248372499, -0.0163105857, 0.00972990319, -0.00381397363, 0.000933068048, 0.000512955303, 0.0134436069, -0.00677008182, 0.0178406313, 0.000908000511, -0.0037656955, -0.0200837087, 0.0111782476, 0.00822213944, -0.000150869208, 0.000134969916, -0.00015028895, 0.00766508421, 0.00437845662, 0.00191441423, 0.00908371899, 0.0157461036, 0.00347045599, 0.0147508308, -0.00979675, 0.028996598, 0.00703746825, 0.0096184928, -0.00847467128, -0.00162010326, -0.024406461, 0.0115793282, -0.00477582263, 0.0160877649, -0.0131836478, 0.00665867049, 0.0072417222, 0.00216137548, -0.00477582263, 0.00141213578, 0.00874205865, -0.00825185, -0.0221633837, -0.00138242613, -0.00325134746, -0.00866035651, 0.011111401, -0.00445273053, -0.0307494663, -0.0129905352, -0.0277339388, 0.00170087628, 0.00606819149, -0.0190884359, 0.00313250907, 0.0100864191, -0.0232180748, -0.00315850484, -0.0125671728, -0.0182268582, -0.0147582581, 0.0184199698, 0.00354287331, -0.0274368431, -0.0116016101, -0.0250749271, 0.00441930722, 0.000741812284, 0.00922483951, -0.0102349669, 0.00324577698, -0.0149885081, 0.00655468693, 0.0162957311, 0.0143126138, 0.0150999194, 0.00154025853, 0.00125987397, -0.00749054039, -0.0051397658, -0.0243173316, -0.000511562685, 0.000386921485, 0.00566339819, 0.0145725729, 0.0250303634, 0.0129979625, -0.010027, -0.00247518346, 0.0332450755, 0.0267238114, 0.00804388244, -0.00266458234, 0.0270060524, -0.0105617736, 0.0091431383, 0.00300624315, -0.00117260194, 0.00224122, 0.00186056551, -0.00817014836, -0.0122032305, 0.0181228742, 0.018449679, 0.0137258489, -0.0110519817, 0.0181080196, 0.00122552225, -0.0254165884, 0.0109034339, -0.00920998491, 0.00699661765, 0.0213018041, -0.0106657567, -0.00710802851, -0.00423733564, -0.0013081521, -0.00854151789, 0.00854894612, -0.00659553753, -0.00378240715, 0.00455300044, -0.0178406313, -0.000276206702, -0.00632443745, 0.0115273362, 0.0106731839, 0.0349385254, 0.00197754707, -0.000364175066, -0.00140656519, -0.00656582788, 0.0106954668, 0.0186576471, -0.00123294955, 0.00668838, -0.00314365, 0.000765022938, -0.00646555796, 0.00565597042, 0.00440816628, 0.00598277664, -0.0169196334, 0.00341475056, -0.00697433529, 0.0296056457, 0.0136070102, -0.00038808203, -0.0281053092, 0.0118912794, 0.0211532563, -0.0105320634, 0.0148102501, -0.0107103214, -0.00610532891, 0.00406650547, -0.0136441467, -0.00229692576, 0.00541086635, -0.0133916149, 0.0401674174, -0.0306306276, 0.0120472545, 0.00477582263, 0.00739769777, 0.0119878352, 0.0115199089, -0.00699661765, 0.0012292359, -0.0130722364, -0.00571910338, 0.00218922831, 0.00596049428, 0.00592335733, 0.0157609582, -0.0170830358, 0.00338875456, 0.00964077469, 0.012908834, -0.00603105454, -0.000155163187, 0.0161768924, 0.0235300269, -0.0063281511, 0.00698919035, -0.00825185, -0.00533287833, -0.000438217015]
|
04 Mar, 2024
|
Semrush Vs SpyFu | Which Is the Best Tool In 2024?
04 Mar, 2024
Semrush and SpyFu are two important players in SEO and digital marketing analytics, offering a range of features and capabilities to help businesses enhance their online presence. In this article, we will thoroughly compare Semrush and SpyFu, examining their key attributes such as pricing, features, user interface, data accuracy, customer support, and overall performance. Choosing between them can be daunting, as both offer many features and cater to specific needs. This comprehensive analysis delves into the strengths and weaknesses of Semrush and SpyFu, helping you make an informed decision based on your requirements.
Semrush Vs SpyFu
What is Semrush?Semrush, founded in 2008, is like the wise old owl of the SEO world. It offers a complete suite of tools for keyword research, competitor analysis, and more. With over a decade of experience, Semrush has earned a solid reputation in the digital marketing realm.
What is SpyFu?SpyFu, on the other hand, is the suave underdog, bursting onto the scene in 2005. Specializing in competitive intelligence, SpyFu provides insights into your competitors' strategies, keywords, and ad campaigns. Its mission is to help you spy on the competition (in a legal way).
Semrush vs. SpyFu: Detailed Comparison TableFeature
Semrush
SpyFu
Core Focus
All-in-one SEO toolsuite
Competitor analysis for SEO & PPC
Keyword Research
Extensive, with keyword difficulty, search volume, global capabilities, & keyword suggestions
Decent, with keyword suggestions & search volume, but lacks depth & global capabilities
Competitor Analysis
Robust, including organic & paid search insights, historical data, keyword tracking, & social media analytics
In-depth, with historical data, keyword tracking, & user-friendly interface, but lacks social media insights
Backlink Monitoring
Comprehensive, with link building opportunities, link quality analysis, lost/broken link identification, & competitor backlink analysis
Limited, backlink checker only, lacks link building tools, quality analysis, & competitor backlink features
On-Page SEO
Site audit tool with improvement suggestions & keyword-based on-page SEO recommendations
Limited, no dedicated features, but indirectly helps by analyzing competitors' websites
Social Media
Social media management tools for scheduling posts, tracking engagement, & competitor analysis
None
Content Marketing
Content marketing tools for topic research, content creation suggestions, & plagiarism checker
None
Reporting & Analytics
Extensive reporting & customizable dashboards
Limited reporting options
User Interface
Can be overwhelming for beginners due to vast features, but has tutorials & resources
Generally user-friendly and intuitive
Customer Support
Live chat, email, and phone support
Email support and knowledge base resources
Pricing (Monthly)
$129.95 (Basic) - $449.95 (Business)
$33 (Basic) - $199 (Team)
Free Trial
Yes
Yes
Best for
• Businesses with diverse SEO needs
• Those needing in-depth historical competitor data & advanced features
• Businesses focused on SEO & PPC competitor analysis
• Beginners due to user-friendly interface
• Smaller budgets
Core FocusSemrush: Semrush positions itself as a comprehensive SEO toolkit, aiming to serve as a one-stop shop for various digital marketing and SEO needs. It includes features that go beyond traditional SEO analysis and optimization.SpyFu: SpyFu is primarily a competitor analysis tool. Its focus lies in providing in-depth insights into competitors' SEO and PPC strategies, helping users identify growth opportunities through reverse engineering successful tactics.Keyword ResearchSemrushGlobal Capabilities: Go beyond your local market and explore keyword opportunities in international markets. This is crucial for businesses targeting audiences beyond their geographical borders.Keyword Difficulty Score: Gauge the level of competition for specific keywords, allowing you to prioritize your efforts and target keywords with attainable ranking potential. This data-driven approach helps you formulate realistic strategies and optimize your content for keywords that offer a healthy balance between search volume and difficulty.Keyword Magic Tool: Explore a vast database of keyword suggestions, related terms, and long-tail variations, enabling you to create a comprehensive keyword portfolio that targets both primary and secondary search terms. This comprehensive approach helps you capture potential user searches across various stages of the buying journey.Organic Search Positions Tracker: Monitor your website's ranking for a designated list of keywords over time, providing valuable insights into the effectiveness of your SEO efforts and allowing you to identify areas for improvement.SpyFuKeyword Difficulty Estimation: While not as comprehensive as Semrush's dedicated score, SpyFu provides a basic difficulty rating based on the number of competing websites. This can be a helpful starting point for gauging keyword competitiveness, especially for users prioritizing a simpler interface.Historical Keyword Data: Analyze how competitors' keyword rankings have changed over time, revealing insights into their evolving strategies and helping you identify trending keywords and topics that might present valuable opportunities.Organic Search Click Share: Analyze the estimated percentage of clicks a competitor receives for specific keywords. This data, while an approximation, can offer clues about the effectiveness of their content and PPC campaigns, potentially inspiring your optimization efforts.While both tools provide access to keyword data, Semrush offers a more sophisticated suite with a global focus, advanced difficulty scoring, and a wider range of keyword research tools, making it ideal for users seeking detailed insights and strategic keyword planning. SpyFu, on the other hand, caters more towards those who prioritize user-friendliness and are primarily interested in competitor-focused keyword research and historical data analysis.
Competitor AnalysisSemrushDomain vs. Subdomain Analysis: Compare your website's performance against specific competitor subdomains, allowing for granular analysis of individual sections like blog pages or product categories. This level of detail helps you assess specific weaknesses and identify areas for improvement compared to your direct competitors within their website.Gap Analysis: Identify keyword gaps by comparing your ranking keywords with those of your competitors. This reveals opportunities to target relevant keywords that your competitors are missing, potentially expanding your reach and attracting new audiences.Paid Search Insights: Uncover your competitors' paid advertising strategies, including their ad copy, keywords, and landing pages. This data can be invaluable for crafting effective PPC campaigns that resonate with your target audience, drawing inspiration from successful competitor approaches.Social Media Comparison: Analyze your competitors' social media presence, including their follower base, engagement metrics, and content strategy. Utilize this information to optimize your own social media efforts and identify potential areas where you can outperform your competitors.SpyFuSERP History: View historical snapshots of search engine results pages (SERPs) for specific keywords, revealing how the ranking landscape has evolved over time. This data can be useful for understanding ranking trends, identifying emerging competitors, and adapting your strategy to changing market dynamics.PPC Keyword History: Analyze the historical PPC campaigns of your competitors, including their keyword usage, ad spend, and landing pages. This can shed light on their PPC strategies over time and provide valuable insights for optimizing your own pay-per-click campaigns.Keyword Difficulty Trends: Track the changing difficulty level of specific keywords over time, allowing you to prioritize keywords that are becoming easier to rank for while avoiding those with increasing difficulty. This data-driven approach helps you make informed decisions about your keyword targeting strategy.Both tools offer powerful competitor analysis features, but Semrush leans towards a broader approach with additional functionalities like social media comparison and subdomain analysis. SpyFu, however, excels in providing historical data and insights specifically tailored to competitor research, making it a valuable tool for uncovering historical trends and uncovering hidden opportunities within PPC strategies.
Backlink MonitoringSemrushBacklink Quality Score: Analyze the authority and quality of backlinks, helping you prioritize high-quality links and avoid low-quality or spammy backlinks that can potentially harm your website's SEO performance. This data-driven approach allows you to focus on building backlinks from reputable sources and maintain a healthy backlink profile.Backlink Alerts: Receive notifications whenever your website gains or loses backlinks, enabling you to stay informed about your backlink profile and take necessary actions, such as reaching out to websites that have removed your link or potentially taking action against malicious backlinks.Link Building Tools: Utilize Semrush's suite of link-building tools to identify potential link-building opportunities from relevant websites, analyze competitor backlink profiles, and track your link-building progress. These features streamline the link-building process and help you acquire high-quality backlinks that enhance your website's authority and search engine ranking potential.SpyFuLimited Backlink Analysis: While offering a backlink checker, SpyFu lacks the in-depth analysis features present in Semrush. It can provide a basic overview of a website's backlink profile but lacks functionalities like quality score, backlink alerts, and dedicated link-building tools.While both tools offer the ability to check backlinks, Semrush goes far beyond by offering a comprehensive suite of backlink analysis, monitoring, and building tools. This makes it ideal for users who prioritize building a strong backlink profile and want to actively manage their link acquisition strategies.
On-Page SEOSemrushOn-Page SEO Checker: Conduct a comprehensive website audit to identify technical SEO issues, broken links, and areas for improvement related to page speed, mobile-friendliness, and content optimization. This helps you ensure your website is technically sound and optimized for search engines, laying a solid foundation for successful rankings.Topic Research Tool: Generate topic clusters and subtopics based on your seed keyword, aiding in content creation and ensuring your content comprehensively addresses various aspects of a specific topic. This empowers you to create informative and engaging content that caters to different user search queries and intent.Content Audit Tool: Analyze your existing website content and identify areas for improvement in terms of keyword optimization, readability, and topical relevance. This helps you refine your existing content and ensure it aligns with current SEO best practices and user expectations.SpyFuLimited On-Page SEO Features: SpyFu primarily focuses on competitor analysis and lacks dedicated on-page SEO optimization tools. However, you can indirectly utilize competitor analysis to identify potential on-page improvements.Analyze Top-Ranking Pages: Analyze the content structure, headings, and keyword usage of top-ranking competitor pages to gain insights into effective on-page SEO practices within your niche.Semrush takes the lead in on-page SEO by offering a dedicated suite of tools for technical SEO auditing, content optimization suggestions, and topic research. This comprehensive approach empowers you to optimize your website's structure, content, and technical aspects for improved search engine performance and user satisfaction.
Social MediaSemrushSocial Media Management Tools: Schedule posts, track engagement metrics, and analyze competitor activity across various social media platforms. This allows you to manage your social media presence more efficiently, understand what resonates with your audience, and learn from successful competitor strategies.SpyFuLacks social media features: Its focus remains solely on SEO and PPC competitor analysis.While SpyFu lacks social media functionalities, Semrush offers a comprehensive suite for managing your social media presence and gaining insights into competitors' social media strategies. This can be valuable for businesses that actively engage on social media and aim to optimize their social media efforts for wider reach and brand awareness.
Content MarketingSemrushContent Market Research Tool: Identify trending topics, analyze your competitors' content strategy, and discover high-performing content formats within your niche. This data empowers you to create content that aligns with audience preferences and market trends, potentially increasing engagement and attracting organic traffic.Content Creation Suggestions: Receive suggestions for content titles, outlines, and related topics based on your seed keywords and target audience. This can streamline your content creation process and ensure you're covering relevant and valuable topics for your audience.Plagiarism Checker: Ensure your content is original and avoid copyright infringement by checking for plagiarism before publishing.SpyFuLacks content marketing features: Its focus remains on SEO and PPC competitor analysis.Semrush provides valuable tools for content marketing by offering insights into audience preferences, content strategy suggestions, and plagiarism checking capabilities. This comprehensive approach can save marketing teams time and effort by providing data-driven recommendations for creating engaging and original content.
Reporting & AnalyticsSemrushExtensive Reporting: Generate detailed reports on various aspects of your SEO performance, including keyword rankings, backlink profile, social media engagement, and on-page SEO audits. This data helps you track progress, identify areas for improvement, and demonstrate the impact of your SEO efforts to stakeholders.Customizable Dashboards: Tailor your dashboards to include the most relevant metrics for your needs, enabling you to visualize your SEO performance at a glance and quickly identify trends and patterns.SpyFuLimited Reporting Options: Offers basic reports on competitor keywords and backlink data, with less customization options.While both tools offer some level of reporting, Semrush delivers a more comprehensive and customizable experience. This can be crucial for businesses that need detailed insights into their SEO performance across various channels and require data-driven evidence for decision-making. SpyFu's reporting options are more basic, catering to users who primarily need a quick overview of specific competitor-related data.
User Interface (UI)SemrushCan be overwhelming for beginners: The vast array of features and functionalities can be intimidating for users new to SEO. However, Semrush offers tutorials, resources, and a learning academy to help users navigate the platform effectively.SpyFuGenerally user-friendly and intuitive: The interface is designed for ease of use, making it relatively easy for beginners to start utilizing the tool and glean valuable insights.The choice between these two options depends on your level of experience and comfort with complex interfaces. If you're new to SEO, SpyFu's user-friendly interface might be more appealing. However, if you're comfortable mastering a comprehensive toolkit and value the benefits of extensive features, Semrush can be a powerful asset.
Customer SupportSemrushOffers multiple support channels: Provides live chat, email, and phone support, ensuring users have access to assistance when needed.SpyFuLimited support options: Primarily offers email support and knowledge base resources.While both tools offer support, Semrush provides more comprehensive options with access to live chat and phone support, which can be helpful for users needing immediate assistance with specific issues.
Pricing (Monthly)SemrushTiered pricing structure: Offers varying plans with different features and limitations based on the chosen plan. Prices start at $129.95 per month for the Pro plan and can reach $449.95 per month for the Business plan.SpyFuTiered pricing structure: Also offers varying plans with different functionalities at different price points. Costs range from $33 per month for the Basic plan to $199 per month for the Team plan.Semrush, with its broader feature set, tends to be more expensive than SpyFu. However, the specific cost depends on the chosen plan and the features required for your specific needs.
Best ForSemrushBusinesses with diverse SEO needs.Those requiring in-depth historical competitor data and advanced features like on-page SEO optimization and social media management.Users comfortable navigating a comprehensive user interface.Teams requiring access to various customer support channels, including live chat and phone support.SpyFuBusinesses focused on SEO and PPC competitor analysis.Beginners due to its user-friendly interface.Smaller budgets seeking a cost-effective option.Users who primarily need basic competitor insights and backlink checking functionalities.Choosing Between Semrush and SpyFuSelecting the right tool between Semrush and SpyFu depends entirely on your specific needs and priorities. Here's a breakdown to help you make an informed choice:
Start by considering your primary goals:Are you primarily focused on in-depth competitor analysis for SEO and PPC campaigns?: If so, SpyFu might be a good fit. Its user-friendly interface and historical data focus can be beneficial for gaining insights into competitor strategies.Do you need a comprehensive SEO toolkit that covers various aspects like keyword research, on-page SEO optimization, backlink monitoring, and social media analytics? - If so, Semrush is the better choice. Its extensive feature set caters to diverse SEO needs and offers advanced functionalities for optimizing your website and online presence.Further considerations:Level of Experience:Beginner: SpyFu's user-friendly interface is easier to navigate.Intermediate/Advanced: You might find Semrush's comprehensive features more beneficial, despite the steeper learning curve.Budget:Limited Budget: SpyFu offers more affordable plans.Larger Budget: Semrush's advanced features might justify its higher pricing for businesses with extensive SEO needs.Team Size:Smaller Team: SpyFu can suffice for basic competitor research.Larger Team: Semrush caters to more complex needs and potentially multiple users with its various support options.ConclusionIn the battle of Semrush vs. SpyFu, the right tool for you ultimately depends on your specific needs and preferences. Whether you value data accuracy, robust customer support, lightning-fast performance, or a combination of these factors, both Semrush and SpyFu offer valuable features to help you achieve your SEO goals. So, weigh your options carefully and choose the tool that aligns best with your objectives for success in 2024 and beyond!In conclusion, both Semrush and SpyFu are formidable tools that cater to the diverse needs of digital marketers and SEO professionals. While each platform has its strengths and areas of improvement, the decision ultimately rests on the unique requirements and objectives of the user. By considering factors such as pricing, features, usability, data accuracy, support, and performance, individuals and businesses can make an informed choice to leverage the best tool for achieving their digital marketing goals in 2024 and beyond.
Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?/How to design datalists for mobiles using jQuery EasyUI Mobile ?/How to design menu using jQuery EasyUI Mobile ?/EasyUI jQuery menu widget/EasyUI jQuery datebox widget/How to make use of multi-mode jtsage-datebox plugin?/Step by step guide to make your first WordPress Plugin/Explain MonsterInsight Plugin in WordPress/How to Setup All In One SEO(AIOSEO) Plugin for WordPress?/WordPress SEO: Step-by-Step Guide, Benefits and Plugin/Difference Between Black Hat SEO and White Hat SEO/White Label Local SEO Services : A Complete Guide/SEO Checker | Complete SEO Audit in 9 Steps/Semrush Backlink Checker/Basics of SEMrush/Ubersuggest vs SEMrush: Which one is Better?/Semrush Vs SpyFu | Which Is the Best Tool In 2024?
|
https://www.geeksforgeeks.org/semrush-vs-spyfu-which-is-the-best-tool-in-2024?ref=asr4
|
CSS
|
Semrush Vs SpyFu | Which Is the Best Tool In 2024?
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, WordPress SEO: Step-by-Step Guide, Benefits and Plugin, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, How to design menu using jQuery EasyUI Mobile ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, Step by step guide to make your first WordPress Plugin, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Basics of SEMrush, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, EasyUI jQuery datebox widget, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Ubersuggest vs SEMrush: Which one is Better?, Onsen UI Fab CSS Components, Semrush Vs SpyFu | Which Is the Best Tool In 2024?, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, Explain MonsterInsight Plugin in WordPress, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, EasyUI jQuery menu widget, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, How to make use of multi-mode jtsage-datebox plugin?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to Setup All In One SEO(AIOSEO) Plugin for WordPress?, SEO Checker | Complete SEO Audit in 9 Steps, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Semrush Backlink Checker, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, White Label Local SEO Services : A Complete Guide, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, How to design datalists for mobiles using jQuery EasyUI Mobile ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Difference Between Black Hat SEO and White Hat SEO, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0226774216, -0.0329945497, -0.0189288072, 0.0138124572, 0.0367431641, -0.00933776144, 0.00430583954, 0.0185404383, -0.00212759129, 0.0405930914, 0.0315423831, -0.0176117271, 0.030309733, -0.0494749397, -0.0264429189, -0.00332225068, 0.00858212914, 0.0022922263, -0.0170122869, -0.0439026766, 0.00264260336, -0.0323697813, -0.0366080776, -0.0357637964, -0.0331465192, 0.0108321412, -0.015636107, 0.0368444771, -0.00427206792, -0.00473220181, 0.0191820916, 0.0240620431, 0.032673724, -0.0105957417, 0.000406574662, 0.0064503164, 0.00499392953, -0.0268650614, -0.000172418266, 0.0538652055, 0.00399978692, 0.00670782244, 0.0216136258, -0.0101651577, -0.00427840045, -0.0263922624, -0.0145976394, -0.0534937233, 0.0150028951, -0.0315423831, 0.0197730903, 0.0343622863, 0.044037763, 0.0183884669, 0.0515687577, 0.00584243285, 0.0247205831, -0.0373510458, -0.0100300731, 0.0312384423, 0.0155938929, 0.000759854, 0.00996253081, -0.0152477371, -0.00663183676, -0.00451268861, -0.0401878357, -0.0252778102, -0.02946545, -0.015349051, -0.00512901461, 0.0301071052, 0.0420790277, -0.0430246219, -0.00348055339, -0.00294443429, 0.00868766382, 0.00714262761, -0.0289588813, 0.0275404863, 0.0214785393, 0.0169363022, 0.0277768858, -0.00659806561, 0.0652461275, -0.0263584908, -0.0133227734, -0.0815238953, 0.0227111913, 0.0171895865, -0.00695688557, -0.0330958627, 0.0136013869, -0.0285367388, -0.0122589776, 0.0346831158, 0.0145047689, 0.0138546713, -0.0194184911, 0.0298200492, -0.00013205102, 0.0196380056, 0.0440039895, -0.0320320688, 0.00291277375, -0.0103086857, -0.0319476388, 0.00244841841, 0.0570397079, -0.00501503656, 0.0374523588, 0.00197456498, -0.0478539169, -0.00331169716, -0.0204485152, 0.00548783457, -0.0130610466, -0.0493060835, 0.0370133333, -0.00484195864, -0.0318125561, 0.0427544527, 0.00126853411, 0.0114231389, -0.0287562534, 0.0387019, -0.0190301221, 0.0368107036, 0.0410996601, -0.0146314111, -0.00593952555, 0.0234710462, -0.00663183676, 0.0170629434, -0.0112120677, 0.0278613139, 0.0223903656, -0.00469420943, -0.0130863748, -0.00734525546, -0.0168940872, 0.0055891485, 0.00437760353, -0.0200770311, -0.0182364956, 0.00124953769, 0.0134072015, 0.0732161552, -0.0213096831, 0.02082, -0.00203260942, -0.0220357664, 0.0236567874, -0.0224241354, -0.00426362548, -0.0427882224, -0.0352572277, -0.00024563336, -0.0191145502, 0.0167421158, 0.00411376497, -0.0209888555, -0.013500073, 0.0420790277, 0.00187641731, 0.0158640631, 0.0272534303, -0.0257337224, -0.0371484198, 0.060619466, -0.00718062045, -0.0198068619, -0.0184391234, -0.0274898298, 0.00102421991, 0.00609571766, 0.0232177619, -0.0318125561, -0.017282458, -0.0205667149, -0.0120225791, 0.0277093425, -0.0193171781, -0.0245854985, 0.00867077895, 0.0136604868, 0.0575800501, 0.0274560582, -0.00108279195, -0.00589309, -0.0089240633, 0.00783493929, 0.0502516776, 0.049170997, 0.0220188815, 0.0132467886, -0.0344129428, 0.0810511, -0.0031449513, -0.00740435533, -0.0483604856, -0.0296174213, 0.00446203165, 0.0369120203, 0.0271521173, -0.0117270807, 0.00753099751, 0.0221201945, -0.00828663, -0.00508680055, -0.0480227731, -4.22470912e-05, -0.00606616773, 4.13071666e-06, -0.0207862295, 0.0168349873, -0.00318716536, -0.0154165933, -0.0210395139, -0.00357764587, -0.0316943564, -0.0006390161, 0.014302141, 0.0101736011, -0.0351896845, 0.0137533573, -0.000794680673, 0.00773362536, 0.0333998054, 0.00616326043, 0.0389382951, 0.0190807786, -0.0296174213, -0.0214447696, -0.010274915, 0.00698221428, -0.0139813134, -0.0142936986, -0.0499477386, 0.0271521173, 0.028047055, -0.0143359127, -0.00204421836, -0.00249485392, -0.0343285166, -0.0193002913, 0.0485293418, 0.0284354258, -0.00699487841, 0.0459289551, 0.00276713492, -0.0256492943, -0.0221539661, 0.0226267632, -0.0258350372, 0.0176623836, 0.0389045253, -0.0043564965, 0.0104859853, -0.030698102, 0.0633549392, -0.0293472502, 0.00562291965, 0.0481240861, -0.00942219, 0.0335348919, 0.00348055339, -0.00821064506, 0.0111867394, -0.0175610706, 0.0281652547, -0.00284100976, -0.0127064474, -0.009945645, -0.0422816537, -0.0145469829, 0.0172909, -0.0221033096, 0.0136689292, 0.0252271537, -0.00346788927, -0.0518389307, 0.0505218506, 0.0128077613, -0.0184897818, -0.0203640871, 0.0189963505, -0.0150113385, -0.0440715328, -0.000451163331, -0.0479214601, -0.0121576637, 0.0213603396, 0.00205688248, 0.0239776149, 0.00800379552, 0.0156698786, 0.0169278588, -0.027945742, 0.0124362772, 0.0117524089, 0.0160413627, 0.0284860823, 0.00492638675, -0.0185573231, 0.0258350372, 0.0252609253, 0.00943063293, -0.0213603396, -0.0385668129, 0.0485631153, -0.00895783491, 0.0176961552, -0.00230277982, 0.00867922138, 0.0568708517, 0.0209213141, 0.0127233332, -0.0253453534, -0.0260207783, -0.00225634431, -0.0116764233, -0.0348857418, 0.0315761566, 0.0414036, -0.0117608514, -0.0305292457, 0.0238763019, 0.0217487104, -0.0151295373, 0.00425096089, -0.0175104141, -0.017425986, 0.00807133783, 0.056668222, -0.0492385402, -0.0214616545, 0.0309345014, 0.0100638438, 0.00345522515, -0.0282159131, -0.00126747868, 0.00611682469, 0.0254635513, 0.0595725551, 0.00836683717, -0.00100891723, 0.0093799755, 0.0221370794, 0.0229644775, 0.00181731756, -0.00780961057, 0.0162102189, 0.00679225056, 0.00557648437, -0.00756899035, 0.000837950094, -0.0136182727, 0.00144477794, 0.00269959238, 0.0244166423, -0.0300733335, -0.0368782468, 0.0179325547, -0.0213434547, 0.0309345014, -0.0160329193, 0.0175104141, 0.0406944044, -0.00889873505, -0.00364518864, 0.0121745495, 0.0120056933, 0.0103509, -0.0586607307, 0.0386681259, 0.0265104622, -0.00387103413, -0.0399514362, 0.02264365, 0.0148171531, 0.00975990295, 0.0453886129, 0.0678127483, -0.0043564965, -0.00268692826, 0.0145132113, -0.00824019499, -0.0113724815, -0.0263584908, -0.0270676892, 0.0204147436, -0.0286042821, -0.0129935034, -0.0361352786, -0.00634900248, 0.0127824331, 0.0183884669, 0.0260376632, -0.0183546953, 0.018759951, 0.0250076391, -0.0145723112, 0.01648039, -0.0105281994, 0.00535274949, 0.0219851099, -0.0589984432, -0.0311202426, 0.00753944041, -0.00959948916, -0.0111614112, -0.0461991243, 0.0283172261, 0.0273040868, 0.0408632606, -0.0276080295, 0.00886496343, 0.0261220932, -0.00943063293, -0.0261727497, 0.0348182, 0.0282834545, 0.00240620435, 0.00654318742, 0.00280090631, 0.00679225056, 0.00335813267, 0.000591525226, 0.0133734308, -0.0219175667, 0.00088913471, 0.0171895865, 0.00138989964, 0.0117186373, -0.0112289535, 0.0349195115, 0.032302238, 0.00322304736, -0.00470687356, 0.0164466184, -0.0109925549, 0.0124700489, -0.0615312904, -0.0782143, -0.00348055339, -0.0461991243, -0.00209065387, -0.000899160572, 0.0011872719, -0.0228631627, 0.010089173, -0.0684544072, 0.053628806, 0.032302238, -0.0179325547, -0.00265315687, 0.000675953459, 0.0336530916, 0.00970080309, 0.00394279789, 0.0341258869, 0.0313228704, 0.00209593074, -0.00526832091, 0.0207355712, -0.0541353785, -0.00320405117, 0.000563030713, -0.0215291977, 0.00965014566, -0.03287635, 0.0469083227, 0.0468745492, 0.00775473239, 0.0528858379, 0.0146060828, -0.0262065213, 0.0127486615, 0.0154756932, 0.0285367388, 0.0320658386, 0.0377900712, -0.0368782468, 0.0286211669, 0.022170851, 0.0161257908, 0.00254551088, 0.0359664224, -0.0259870067, -0.0521428697, -0.000251042045, -0.0399176627, -0.00618436746, -0.00910980534, -0.00455490267, -0.044139076, -0.0468745492, 0.000894411467, -0.00965014566, 0.0135591729, 0.0166492462, -0.0384655, 0.0158471782, -0.0335686617, -0.0065220804, -0.0198575184, 0.0460640378, 0.00070075423, -0.0165563747, 0.0469083227, 0.0375874452, -0.00443248171, 0.0208031144, 0.0058171046, 0.0185235515, -0.0111445254, 0.0327919237, 0.0174935274, -0.0129681751, 0.0131201455, -0.00193551707, 0.027287202, -0.000216083485, 0.01989129, -0.0143950125, 0.00968391728, -0.00683024339, 0.0406606309, -0.0340921171, 0.000316342, -0.0230995622, -0.00725660566, 0.0115751093, 0.0023661009, -0.00472798059, -0.0123687349, 0.00250540744, 0.0284016542, -0.0158556197, -0.0400189795, 0.0126220193, -0.0312046707, 0.0101229437, 0.0140910707, 0.00517967157, 0.00815998763, -0.0192665197, 0.00826974493, 0.021225255, 0.0156614352, 0.0157289784, 0.0315086134, 0.0160920192, 0.00336868619, 0.0142261554, -0.01713893, 0.00533586368, -0.00152709545, -0.013685815, -0.00786026753, 0.00291066291, 0.034851972, 0.0277937707, -0.0067584794, -0.032386668, 0.0180338677, 0.00557226269, -0.0189625788, -0.0116088809, -0.00572423358, 0.0279119704, 0.00372750615, -0.0349870548, 0.0108827977, 0.0164044034, 0.024923211, 0.0058171046, 0.0243153274, 0.0193678346, -0.00030420543, 0.0316774696, 0.0109503409, 0.022170851, 0.0254297815, 0.0103171291, 0.00567779783, -0.0114062531, -0.0260038935, 0.0116342092, 0.0114569096, 0.0245010704, -0.0456250124, -0.0128077613, -0.0132299028, 0.0241633579, 0.00532319956, -0.0118621653, 0.00989498757, 0.0097852312, 0.0102158152, -0.00777583942, 0.00133607665, 0.0231333338, -0.0115666669, -0.0120732356, -0.0123265209, 0.00617592456, 0.0085356934, 0.00205477187, -0.00803334545, 0.0112289535, 0.0118452795, -0.0190638937, 0.00835417304, -0.0152815087, 0.0119212652, -0.00592263974, -0.0101736011, 0.00238087587, -0.00771673955, 0.00966703147, -0.0127739906, -0.0143359127, 0.0343960598, 0.00943907537, -0.00878053531, -0.00452957395, -0.00311540137, -0.0319982953, -0.0479214601, 0.00699487841, 0.00157880783, -0.0216136258, 0.00999630149, -0.0173077863, 0.000117210118, -0.00323571172, -0.0187430661, -0.00638277363, -0.0171558149, 0.0062139174, -0.00484618, 0.170747638, -0.00435227482, 0.00201466843, -0.0149353528, 0.0347506553, -0.00170861615, 0.00337712886, -0.00394913, -0.00847659353, 0.0198068619, 0.0284185391, -0.00339612528, -0.0166408028, -0.0076829684, -0.0192496348, 0.0129766176, 0.0324710943, 0.00959104579, 0.00333069335, 0.0346831158, 0.0277262293, -0.00497704372, -0.0171980299, 0.0066782725, 0.00564824836, 0.00883963518, 0.00948973186, 0.051163502, -0.0223903656, -0.0230657905, 0.026155863, -0.0232346468, 0.00639543775, 0.00604083948, 0.0222215075, 0.00550472038, -0.0210901704, -0.0284185391, 0.00918579102, 0.0187261794, -0.0189794637, -0.0265948903, -0.0168856438, -0.0347506553, 0.0162271038, -0.0321502686, 0.00657273736, 0.0198237468, -0.0102833575, 0.0205836017, -0.0063616666, -0.00277557783, -0.0207524579, -0.0207524579, -0.0401878357, -0.0208706576, -0.011034769, -0.00796580315, -0.0148087107, -0.0116426516, -0.0283847693, 0.0149269095, 0.0163537469, 0.0033349148, -0.00886496343, -0.00681335758, -0.0139137711, 0.029566763, -0.0146314111, -0.0231839903, 0.00378027372, 0.00312595489, 0.000824230548, 0.0168940872, 0.00262571778, -0.0256999508, -0.00194923661, 0.0241295863, 0.00507413642, 0.0145385405, -0.0314748399, -0.00661072973, 0.0190638937, 0.0116679808, 0.0452535264, -0.00407577259, -0.0150957666, 0.0177974701, -0.0285367388, 0.0170291718, -0.00715529174, -1.22025167e-05, -0.00330114365, -0.00393435499, -0.00713840639, -0.0103171291, 0.0131539172, 0.0214954261, -0.0174091, 0.00691045029, 0.0280132852, 0.0135422871, 0.0061252676, 0.0159738194, 0.00147854921, 0.00366629567, 0.00281779189, -0.00380349136, -0.0275573712, 0.018759951, -0.0186924078, -0.0223903656, -0.0390058383, -0.0193340629, 0.0010421609, -0.0154165933, 0.0038056022, 0.0132467886, 0.0247036982, 0.0143190268, -0.00187219586, 0.0134494156, -0.00707086362, -0.0435987338, 0.0244672988, 0.0308163017, -0.0225423351, 0.0176117271, 0.00747189764, 0.0544730909, -0.00371062034, -0.03978258, 0.0309513863, -0.00428262167, -0.0156192211, -0.00586776156, 0.00349954981, -0.018945694, 0.0204316303, -0.00739591243, 0.0191820916, -0.0120310215, -0.00725238444, 0.0366756208, 0.00118410587, 0.0197562035, 0.0297525059, -0.00198934, 0.0181182958, -0.0195704624, 0.00808822364, -0.0178818982, -0.019992603, -0.0488332845, -0.0117439656, -0.028232798, -0.0360677354, 0.00396812661, -0.0217993669, -0.0158387348, 0.0191145502, -0.0266455468, -0.0261896346, 0.0134663014, -0.0130441608, -0.00865389314, 0.0184222385, -0.012123893, -0.000422668789, -0.0297693908, 0.0292628221, -0.00509524345, -0.0020378863, 0.00742546236, -0.00958260335, -0.0532910936, 0.00254551088, 0.00648408756, -0.0210395139, 0.00598596083, -0.0193678346, -0.0173077863, 0.0328088067, 0.00350588188, -0.00405044388, 0.0241295863, 0.00399767654, 0.017814355, -0.00105957419, -0.0312384423, 0.018472895, -0.0162355471, -0.000687562337, 0.00923644751, 0.0141754989, 0.00722283451, 0.0417413153, -0.0170207303, -0.0139306569, -0.00611260347, 0.00889029168, 0.015534793, 0.00436916063, -0.0135929435, -0.00369373476, 0.0241802428, 0.0297356211, 0.00234921533, 0.0131370313, 0.00101788773, 0.0126389051, -0.00299931271, 0.0154841365, 0.008712993, 0.0229813624, 0.0216136258, 0.0137111433, 0.00529364962, 0.0149522386, -0.021782482, -0.0404242352, 0.019604234, -0.0118452795, -0.0252271537, -0.00640810234, -0.0198575184, -0.0478201471, -0.0228800494, -0.00837105792, 0.00916890521, 0.0128162047, 0.012453163, -0.0148002673, -0.000769352191, 0.00186902983, 0.0131117031, -0.0134156449, 0.0292628221, -0.00159147196, -0.0210732836, 0.0206342582, -0.00970080309, 0.00545828464, -0.01041, -0.0142683694, 0.00597751839, -0.0056566908, -0.030698102, 0.00453379564, -0.0475499742, -0.037317276, 0.0108236978, 0.00646720175, -0.00900849141, 0.0195029192, -0.0168856438, -0.00360086374, 0.00213920022, 0.0481578596, 0.016767446, -0.0123349633, -0.00938841887, -0.0263753776, 0.00642920937, -0.00657695858, 0.0128668612, -0.00683446461, 0.000368318113, 0.0270676892, -0.027101459, -0.00725660566, -0.00416864362, 0.0296343062, -0.0325386375, 0.00745923351, 0.000663289218, -0.0112120677, 0.0344804861, 0.00895783491, -0.0170798302, 0.0212421417, -0.0189794637, 0.0232346468, -0.00639121654, 0.0102580292, -0.0346493423, -0.00867077895, 0.00103688415, 0.05609411, 0.0216811672, -0.0171980299, -0.0269494895, -0.00290433085, -0.0215629674, 0.0512310453, -0.0223397072, 0.014876253, 0.0344804861, 0.00671204366, -0.0222890507, -0.0184897818, -0.0429570787, -0.0109503409, 0.0311709, 0.0246023834, 0.0216980539, -0.00421085767, -0.0146482969, 0.0062814597, 0.0198744033, -0.0227280781, -0.00668671541, -0.0650435, -0.0309176147, -0.0175104141, 0.00859057158, -0.00410321169, -0.00211703777, 0.00598173961, -0.00616326043, 0.011651095, 0.0334842317, 0.0135085154, -0.0089240633, -0.0319138691, -0.0162355471, 0.0155432355, 0.00312173367, -0.00696532847, 0.0185404383, -0.0052092215, 0.0101989293, -0.00764919724, -0.0250245258, -0.0457263254, 0.00347633217, 0.00469843065, -0.0358313397, -0.0312891, 0.026527347, 0.0048039658, 0.0322684683, -0.0578839891, 0.00403777976, -0.0302084181, -0.026814403, -0.00144688867, -0.0191652067, -0.0102580292, -0.0318632126, -0.0476850607, -0.0332309492, 0.0317956693, 0.00486728689, 0.00942219, -0.00631945254, 0.00101102795, -0.0131961312, -0.0120985648, -0.0204822868, 0.00210331823, 0.0233359616, 0.0207862295, -0.0110685397, -0.00762809, -0.00616326043, 0.0249569826, -0.0180676393, -0.0148340389, -0.0152308512, -0.0166070312, 0.0282665696, -0.0124193914, -0.0142008271, -0.0284860823, 0.0030626338, -0.0495762527, -0.0185404383, -0.0152730653, -0.00972613133, 0.0157880783, 0.0182871539, 0.0117355231, -0.00207165745, 0.00930399, -0.00872143544, 0.0142514845, 0.009945645, 0.0057368977, 0.00453801686, -0.00553849153, 0.0134072015, -0.00894939154, -0.00455068145, -0.0351896845, -0.00502347946, 0.000650625, -0.0134747447, -0.0245686136, 0.00450424571, 0.00293599139, 0.0221201945, -0.037047103, -0.0112289535, 0.0189794637, 0.00479552289, 0.000210806727, -0.00650097337, 0.00622236, 0.00728193438, 0.0131454747, -0.0269326027, -0.00113872567, -0.000390216708, -0.010131387, 0.00977678783, 0.0261220932, 0.000644292857, -0.0162102189, -0.0194353778, 0.00838794373, -0.00605772482, 0.0308838449, 0.0196380056, -0.0168434307, -0.0098358877, -0.0190976635, 0.00415597949, -0.00353543181, 0.00501925778, -0.0211577136, -0.0139813134, -0.01989129, -0.0224916786, -0.00659806561, -0.0257337224, 0.00834150892, 0.0154165933, 0.00900004897, 0.0450509, 0.017425986, -0.00335813267, -0.0124700489, -0.00212653587, 0.000903381966, 0.0160413627, -0.012453163, -0.0161342341, -1.40328939e-05, 0.000942430052, 0.00354809617, -0.00180465332, 0.00948973186, 0.00878053531, 0.0765932873, -0.0111276396, 0.00508257886, -0.0292121656, -0.0141923847, 0.00258561433, 0.0202290025, 0.0303266179, 0.0198575184, -0.0337881744, 0.00791514572, 0.0199757181, -0.0120056933, 4.74908738e-05, -0.0223059375, 0.0368107036, -0.0237074457, 0.00631100964, 0.0119465934, 0.0165648181, -0.0257843789, -0.0135254012, -0.0150704375, 0.0055975914, 0.013643601, 0.000524246483, 0.0227111913, 0.01989129, -0.00686401455, -0.0171895865, 0.00231544394, -0.00580444047, 0.00451268861, 0.00219091238, -0.000575167243, 0.0481240861, 0.0064503164, 0.027388515, 0.0111191971, -0.0171051584, -0.00103371812, -0.0120563507, -0.0168265458, 0.00107962592, -0.0172233582, -0.00311329076, -0.00632367376, -0.0121407788, -0.00742968358, 0.0271183457, 0.000442456658, 0.00559336971, 0.00615481753, -0.0255142096, -0.00972613133, 0.0406944044, 0.01041, -0.00855680089, 0.0157374199, -0.0073832483, 0.00509946467, -0.000529259443, 0.0209888555, -0.0177805834, 0.0127739906, 0.0045844526, -0.00530209253, -0.014116399, -0.0127233332, -0.0286718253, 0.00365574216, -0.00270592445, 0.00801646, 0.0167421158, 0.00664450135, 0.0178650115, 0.0123096351, -0.0342609733, 0.0203978587, -0.0155601213, -0.0036515207, 0.0162862036, -0.0185573231, 0.0174428709, -0.00293388078, -0.00104796537, 0.00696954969, -0.0101398295, -0.0233866181, -0.0265611187, 0.00532742077, -0.0502854511, -0.0214785393, 0.0132045746, -0.00414542574, -0.00162102189, 0.00625613146, 0.0164044034, 0.00105693587, -0.00129491789, 0.0223059375, -0.00586354034, 0.00124742696, 0.000941374688, -0.00636588782, -0.00436916063, 0.0188443791, 0.0236399025, 0.000349057926, 0.0017582177, 0.0126135768, -0.00379504869, 0.0177974701, 0.0225929935, 0.0150957666, 0.00154503644, 0.0191820916, -0.0136351585, -0.00231966539, 0.028232798, -0.00741701946, 0.0344804861, -0.00242097932, -0.025480438, 0.00516700745, 0.0250076391, -0.00952350348, -0.0118537229, 0.000951928203, 0.0299044773, -0.00846392941, 0.0235385895, 0.0187092945, -0.00340667879, -0.00588464737, -0.0125629194, -0.00696954969, 0.0127317756, -0.00220146589, 0.00648830878, -0.0167843308, 0.00746767642, -0.0312722139, -0.00194395985, -0.011178297, 0.00522188563, -0.0263922624, 0.00268481742, 0.0157120917, 0.0052007786, -0.00853991508, -0.0201445743, -0.0109925549, 0.0139813134, 0.0311033577, -0.0104522137, 0.00082739658, 0.000314495119, 0.0208537709, -0.00257928227, 0.0169616304, 0.0206680298, -0.00142472622, -0.0305292457, -0.0235385895, 0.0150535526, -0.0193340629, -0.0034889963, -0.00550049869, 0.0102664717, -0.019604234, -1.36453818e-05, 0.00694422144, 0.00410532253, 0.00246741483, -0.0252271537, 0.00544562051, 0.00774628948, 0.035426084, 0.00452113152, 0.00920267589, -0.0164550599, 0.00447891746, 0.0334166922, -0.00454223854, -0.00136140513, 0.00963326, -0.0174091, -0.00557648437, 0.0292290505, -0.0211577136, 0.00751833338, 0.00803756714, -0.00929554738, 0.0164044034, 0.019705547, 0.00836261548, -0.0140319709, -0.000151838889, 0.00965858903, -0.00409476878, 0.0121323355, 0.0176792704, 0.00412220787, 0.0117524089, 0.00282623479, -0.00724816276, 0.0151042091, 0.0089409491, 0.0136942575, 0.00628568139, 0.0213603396, 0.0149269095, 0.0126895616, 0.00131919095, -0.0345142595, 0.0124953771, -0.019992603, -0.0286380537, -0.00642498769, 0.00294232368, 0.0170798302, 0.00709619233, 0.00905070547, 0.00753099751, -0.01989129, 0.0162102189, -0.00514590042, 0.0229307059, 0.00927021913, -0.0364392214, -0.00524299266, 0.00545828464, -0.00130863744, 0.00655163033, 0.0234541614, 0.00455490267, -0.0274560582, -0.014589197, 0.0174597558, 0.0179156698, 0.0268481746, -0.0148593672, 0.0049728225, -0.00109440088, 0.000178090777, -0.000249327102, -0.0428895392, -0.0052092215, 0.0175948422, -0.0164972749, -0.0159738194, 0.0496100225, -0.0231502187, 0.0131201455, -0.0175104141, -0.00369162415, 0.0162777621, -0.0224410221, -0.0173077863, -0.00318716536, 0.01989129, 0.00279668486, -0.000954566582, -0.0249907542, -0.0100638438, -0.0224410221, 0.000197878646, -0.00917734765, 0.0130779315, -0.00444092462, 0.0199419465, -0.00211070548, -0.00194290443, 0.00967547484, 0.00566935539, 0.00710885646, -0.00307740876, -0.0121998787, -0.0162693188, -0.0134494156, 0.00101261097, 0.0109081268, -0.0297693908, -0.00872143544, 0.00598596083, -0.00390269468, -0.00192601886, -0.00105746347, -0.00599018252, 0.0227956194, 0.0227956194, -0.00521344272, 0.00433961069, -0.0185404383, 0.0358313397, -0.0221877377, -0.0274560582, -0.00267004245, 0.00739169074, 0.0354936235, -3.79267403e-05, -0.0201108027, 0.0143527975, 0.00924489088, -0.0237581022, 0.0128162047, 0.0187937226, 0.000651680341, -0.0015503132, 0.000846920593, -0.0536625795, -0.00231966539, -0.00618858868, -0.00544562051, -0.0210226271, -0.00398712279, 0.00190174568, 0.00622658152, 0.00620125281, 0.00805445295, -0.00401667273, -0.0227956194, 0.0124953771, 0.00315339421, 0.0152646229, -0.0146314111, -0.00633633835, -0.00829507317, -0.00661495142, -0.00389847322, -0.0340245739, 0.00758165447, 0.00976834539, 0.0124953771, -0.00606194651, 0.00691889273, 0.00208432181, -0.00180043187, -0.00869610719, -0.0180169828, -0.0149522386, -0.0118621653, 0.0117101949, 0.0289251097, -0.0159907062, -0.0439364463, 0.0195366908, 9.39923575e-06, -0.0143190268, 0.0135929435, -0.0110009974, 0.00977678783, -0.00523454975, 0.0193847194, 0.00975990295, 0.0226605348, 0.0232853033, -0.0244504139, -0.0188781507, -0.00559336971, -0.00274180644, -0.0130526032, 0.0132890027, -0.0228293911, -0.0187937226, -0.00352276769, -0.024636155, 0.0281314831, -0.0121914353, -0.0124362772, -0.0218669102, 0.0238425303, 0.00312384428, -0.0108574694, 0.041977711, -0.00143527985, 0.0136182727, -0.00327792577, -0.0292121656, -0.0198068619, -0.0299044773, -0.0284523107, 0.00463510957, 0.00278613134, -0.0134325307, 0.00472798059, -0.00271225674, 0.037047103, -0.0131201455, -0.00538229942, -0.0169025306, 0.0259701218, 0.0215629674, -0.041673772, -0.00908447709, -0.0125460336, 0.00901693385, -0.0138799995, -0.0022837834, 0.00132763386, 0.00142367091, 0.00961637497, 0.00181626214, -0.0012590359, 0.0075225546, -0.00195556879, -0.00141522812, 0.0367769338, -0.000784654811, 0.00419819355, -0.000649569673, -0.0256324094, 0.00168328767, 0.000894939178, 0.00361563871, 0.0189625788, -0.00199672743, 0.00103846716, -0.0110432114, 0.00277557783, 0.00629412383, -0.0157543067, -0.00365574216, -0.0063532237, 0.00916890521, 0.0164972749, -0.00927021913, 0.00466043781, -0.0048926156, 0.0168265458, -0.0262065213, -0.00507413642, -0.0119972508, -0.0220357664, 0.0107983695, 0.0127148908, -0.0108743552, -0.00383726275, -0.0220019948, 0.0026088322, -0.00963326, -0.0162102189, 0.0101482728, 0.0114991236, -0.0157796349, 0.019047007, -0.00230911188, 0.00300986622, 0.00213920022, -0.00183631387, 0.00688090036, 0.00784338173, 0.00149226887, 0.000929765811, 0.00205160584, -0.0238594152, -0.00658540148, 0.00405677594, 0.0146482969, -0.0184053518, -0.00167273416, -0.0214447696, 0.022356594, -0.0131201455, -0.000798902067, 0.00725238444, 0.0154334791, 0.00554271275, 0.0136942575, 0.0169194154, -0.014774939, -0.0116848657, 0.00232388685, 0.00832884386, -0.0196717754, -0.00460555963, -0.00232177624, 0.00234499387, -0.00680913636, -0.00668249372, 0.00168856443, -0.0131792454, 0.0190976635, 0.00390902674, 0.0188443791, 0.0123940632, 0.00313861924, 0.0033433577, 0.00391958049, 0.021225255, -0.0209550858, -0.00558070559, 0.00910980534, 0.0136689292, 0.0102073718, -0.00198300788, 0.00474064471, -0.0267975181, -0.0329270065, 0.0111445254, 0.00630678842, 0.015534793, 0.00300142332, 0.00160835765, 0.0042762896, 0.00609149644, 0.00886496343, 0.000801012793, -0.0108236978, 0.0112373969, -0.0151295373, -0.00587198278, 0.00802912377, 0.00840483, 0.00299931271, -0.0155263506, -0.0205667149, 0.0193171781, 0.0168349873, 0.0147664966, -0.0151126524, -0.00278613134, -0.0171136018, -0.0138040148, 0.0111445254, 0.00840483, 0.0136942575, -0.0121998787, 0.000298928673, 0.00995408744, 0.00113450421, -0.00906759128, 0.00361774932, -0.0124953771, -0.0123349633, 0.010089173, 0.00523877144, 0.0125629194, -0.0124869347, -0.0124953771, 0.0230489057, 0.00424885051, -0.00903382, -0.0291615091, 0.00247163628, -0.00875520706, -0.0064418735, 0.0104522137, -0.00981055945, 0.0119043794, 0.0134325307, -0.00525987847, 0.00183103711, -0.00124531635, 0.015061995, -0.0284185391, 0.0125798052, -0.0145976394, -0.0144794406, 0.0168181024, -0.014732725, -0.00287055969, -0.00661072973, 0.0111107538, 0.00352276769, 0.00992875919, 0.00303730532, -0.00868766382, -0.0086159, -0.0164297316, 0.0274391733, 0.000721861317, -0.00241464726, -0.00751833338, 0.0132214595, 0.00187219586, 0.00145955291, -0.011938151, -0.00113239349, -0.0133987591, -0.0282665696, 0.0065220804, 0.0151042091, 0.000379399338, 0.00878897775, 0.0216305107, 0.0159738194, -0.0131032607, -0.0042235218, 0.00302253035, 0.0156783219, -0.00106854469, 0.00268270681, -0.013972871, -0.00123159669, -0.011364039, -0.00219302322, 0.0155770071, -0.0140657416, 0.00181098538, -0.0255479813, -0.0031365084, -0.0163537469, 0.00469420943, -0.0106463991, -0.0106970556, -0.0144878831, -0.013069489, -0.0122167636, -0.009329319, -0.0238931868, 0.00217824825, -0.00858635, 0.0101398295, -0.0195704624, 0.0204485152, -0.0144118974, 0.0112880534, -0.00525987847, -0.00185108883, -0.00290222024, -0.00981900282, -0.0176286139, 0.00972613133, 0.000351432478, 0.00887340587, 0.0062814597, -0.0237581022, -0.0277093425, 0.0154841365, 0.00801223796, 0.000135480921, -0.00209382, -0.0069864355, -0.000706558698, -0.0193509497, -0.0214278828, -0.000311592914, 0.00544562051, 0.00601551076, -0.000948234461, 0.00411587581, -0.00176349457, 0.0118537229, 0.0159653779, -0.0263753776, 0.00265948894, 0.00216558389, -0.00504880771, 0.024821898, 0.00862012152, -0.00311329076, 0.00120415748, 0.00645875931, -0.0133227734, 0.00393857667, 0.00237032236, 0.0194184911, 0.0089240633, 0.0138040148, 0.0108236978, 0.012596691, 0.00707930652, 0.00348477485, -0.00615903875, 0.0173753276, 0.00437338185, -0.00438182475, 0.000842699199, -0.00859901495, -0.00172972318, -0.0166745745, 0.00743390527, -0.0298707057, 0.0169531871, 0.0285198539, 0.0029824269, -0.00676270062, 0.0115919951, -0.0246868134, -0.0142936986, 0.00269326032, -0.0192834064, -0.00586776156, -0.0187937226, 0.00140678522, -0.0214278828, 0.009945645, 0.0032167153, 0.0109165693, -0.00693155732, -0.0151886372, 0.0082190875, 0.0207355712, -0.0305461306, -0.0288406815, 0.0146651827, -0.00037227571, -0.0215798542, 0.018945694, 0.00501081487, -0.0186079796, -0.00482929451, -0.0101736011, 0.0150535526, 0.00578333344, 0.0224072505, 0.0441728458, 0.0061421534, -0.0148931388, 0.0112120677, 0.00843015779, 0.00351221417, 0.00201572385, -0.0173077863, 0.0102242576, -0.00805445295, -0.0136351585, 0.0103593431, -0.00502347946, 0.0103086857, 0.00204210775, -0.0107730413, -0.0288575664, 0.00852725096, 0.0125460336, -0.00251596095, -0.00298453774, -0.00553427, -0.024923211, 0.00968391728, 0.0115919951, -0.000320035731, -2.18326113e-05, 2.43720533e-05, 0.0144794406, 0.00293388078, -0.0205667149, -0.000862223213, -0.00916046184, 0.0109756691, 0.0136520434, -0.0129006328, 0.0101145012, 0.00539496355, 0.0128330896, -0.00731148431, -0.00961637497, 0.0175441857, -0.00347633217, -0.0122420928, 0.00512901461, -0.00623924565, 0.00246108277, 0.0126135768, 0.00310484786, 0.0190807786, 0.00658118, 0.00566091249, -0.00943063293, 0.005205, -0.0163959619, 0.012267421, -0.00359875313, -0.00556804147, -0.0145723112, 0.0054202918, -0.0268481746, 0.0109841116, 0.0210226271, -0.00530631375, -0.00413065078, 0.0061421534, 0.00832462311, 0.0221539661, -0.00640810234, 0.00648408756, -0.00272069941, 0.000644292857, 0.000932404189, -0.0253791232, -0.00487995148, 0.00576644763, 0.00719750626, 0.00710041355, 0.00504458649, 0.0289757662, 0.0157205351, -0.0121407788, 0.00398290157, 0.0321840383, 0.022069538, -0.00323782233, 0.00477863755, 0.00708352774, -0.00294443429, 0.00759431859, 0.0256999508, -0.0181014109, -0.0109925549, -0.00319138682, 0.00504458649, -0.013787129, 0.0200432595, -0.0291615091, -0.0259363502, -0.00562714087, 0.00897472, -0.0166576877, -0.0131117031, -0.00105957419, -0.0113724815, -0.00231122272, -0.0207355712, 0.00189646892, -0.000114769617, 0.0196548905, -0.00186797441, -0.029279707, 0.000499445712, -0.0069779926, -0.00331802922, 0.015906278, 0.00428262167, -0.0055891485, -0.0186079796, -0.00320405117, -0.00128330896, 0.000373594899, -0.00980211701, -0.014259927, -0.0178987831, -0.0207693428, -0.00820220169, -0.0139897568, -0.0121829929, -0.0110009974, 0.00640388066, 0.0114822388, 0.0126557909, -0.0039955657, 0.00578755466, -0.0268988311, -0.00101947074, -0.00462666666, 0.0118621653, 0.00630678842, -0.013685815, -0.00482929451, 0.0216811672, 0.0105281994, 0.0114062531, 0.0200263746, 0.0285536256, 0.00731570553, -0.00929554738, -0.0180507544, -0.00721861329, 0.00443670293, 0.000184818651, -0.0182364956, -0.00477863755, 0.0213096831, -0.0252778102, 0.00634055957, -0.00623080274, -0.00320616178, -0.00200939178, 0.020178346, -0.0126726767, 0.0023661009, 0.0212083701, -0.0132299028, 0.0292628221, -0.00780538935, 0.000196163703, 0.00789403915, 0.00315339421, 0.0107392697, -0.0120479073, 0.013027275, 0.0151210949, -7.78982285e-05, 0.0115666669, 0.00415809, 0.0258012656, 0.00509524345, 0.0250076391, 0.00341723231, 0.00832884386, 0.0256324094, 0.00585509744, -0.00310906931, 0.00600284664, 0.0178818982, -0.0158978347, 0.00200939178, -0.0138124572, 0.0111107538, 0.0015503132, -0.00700332131, 0.0122083211, 0.00683446461, -0.00517967157, -0.0158893913, 0.00209170929, 0.021225255, 0.0255986378, 0.0210226271, 0.00190491183, 0.00933776144, 0.00296554132, 0.0121576637, -0.014302141, 0.00558492681, 0.00484618, -0.00733681256, -0.00224368, -0.0106463991, -0.00801646, 0.00728193438, -0.000967230822, -0.00883119181, 0.0273716301, -0.0124869347, 0.0198744033, -0.012596691, 0.0166830178, -0.00490527973, 0.000766186102, -0.000607883208, 0.00100680662, 1.16418605e-05, -0.00906759128, -0.00301197683, -0.0066782725, 0.0172909, 0.0112964967, -0.00311751221, -0.0155685646, -0.0208031144, -0.00169806264, -0.00535274949, 0.027000146, 0.00151654193, 0.00530209253, 0.00539074186, -0.00800379552, 0.00430583954, 0.0326568373, -0.00405255472, 0.00789826, -0.00575800473, -0.00764919724, -0.00389425177, 0.0209719706, 0.0142683694, 0.00122737535, -0.00253284676, 0.00144372263, 0.0203303155, 0.00507835764, 0.000915518554, 0.0210563987, -0.0111360829, 0.000547200441, -0.00289166672, 0.00917734765, -0.0122843068, -0.0101145012, 0.00371906324, 0.015534793, -0.0343116298, 0.0110600973, -0.0136182727, -0.00872143544, -0.00650519459, 0.011034769, -0.0171220433, 0.0299044773, -0.000203287331, -0.00448313868, -0.00840060785, 0.0143950125, 0.00581288338, 0.00681335758, 0.0129259611, -0.0136351585, 0.0022837834, 0.0167083461, -0.0130103892, -0.0144541115, 0.0114400247, -0.0322178118, -0.0025201824, 0.00315761566, -0.00771673955, -0.00354598532, 0.00728193438, 0.00237454381, -0.00322093675, -0.00406521885, -0.00101999845, 0.00945596118, -0.0197899751, -0.0219006818, 0.011507567, -0.00304363738, 0.00104110548, -0.00667405128, -0.00780961057, 0.0130019467, 0.00990343094, 0.00345100369, -0.00129808392, 0.0130188316, 0.00109334546, 0.0304617025, -0.00367473834, 0.00306685525, -0.0055089416, 0.00606616773, 0.00210226281, 0.0157880783, -0.00788137503, 0.00939686131, -0.0238087587, -0.00384570565, -0.0274054017, 0.00847659353, -0.00847237185, 0.0101229437, -0.0331127495, 0.00509524345, 0.0178312398, 0.0117524089, -0.0118959369, 0.00797424559, 0.0222552791, -0.0061421534, 0.000201044706, -0.0169363022, 0.0157289784, -0.019604234, 0.017814355, -0.014918467, -0.0014954349, 0.00761542562, 0.0136013869, -0.00424462883, -0.0102664717, -0.0116679808, 0.00374439172, -0.00424040761, 0.0270845741, 0.00103952247, 0.00829085149, 0.01041, 0.00274180644, -0.0166323595, 0.00555959856, -0.0213941112, 0.013314331, 0.0119634792, -0.0176623836, -0.00611260347, -0.0105872992, -0.016151119, 0.0183209237, 0.00802912377, 0.00487573, 0.00579177635, 0.0280639417, 0.00926177576, 0.00882274937, 0.00729037728, 0.0077505107, 0.00365363131, -0.00287900236, 0.0193340629, 0.00325048668, 0.013685815, -0.0158387348, -0.0131792454, -0.00879742112, -0.0197562035, -0.0117692947, 0.0140319709, 0.0245517269, 0.00986121688, -0.0026088322, -0.000560392335, -0.0252271537, 0.0104859853, 0.00336868619, 0.00675425772, -0.00514590042, 0.0336024314, 0.00142894767, 0.0106379557, -0.023690559, -0.00529787084, -0.0236736741, -0.0068977857, 0.00680913636, 0.00131602492, -0.0152646229, 0.0207862295, 0.0173077863, 0.00323571172, 0.0139813134, -0.0195198059, 0.00785604585, -0.00832462311, 0.0100300731, -0.00793625321, -0.0260376632, 0.00477019465, 0.0239438433, -0.00784760341, 0.00376760936, 0.0142768128, 0.000901271298, 0.00568624074, -0.0131961312, -0.0233866181, -0.0177974701, 4.82329187e-06, -0.0133312168, 0.0110516548, 0.00351010333, 0.0101904869, 0.01041, -0.0119972508, -0.0217993669, -0.0036874027, -0.0146229686, 0.0213772263, 0.00743812649, -0.0060450607, -0.0138799995, 0.0273209736, 0.0025645073, -0.00134240871, 0.0203978587, -0.00987810176, 0.0032610402, 0.0250751823, -0.0148678105, 0.0131623596, -0.00160835765, -0.0214447696, -0.00222257292, -0.00588464737, -0.0184560101, -0.00543295639, -0.00278613134, 0.00648408756, 0.00730304141, 0.000610521587, 0.00630678842, 0.00711307768, 0.000993087, 0.000497071189, 0.0170291718, 0.0181858391, 0.00270170323, 0.000794680673, -1.35876671e-05, -0.0122336494, 0.00988654513, 0.0166408028, 0.0247712415, -0.00320827239, 0.0120647931, -0.00907603372, 0.0136942575, -0.0076829684, -0.00612104638, -0.0206004865, 0.0176454987, -0.0113809248, 0.0126895616, -0.0061421534, -0.0146820685, 0.00128225365, -0.00316394772, 0.00929554738, -0.0164719466, 0.00778850354, -0.000742968346, 0.00228589424, 0.0129006328, -0.0131032607, -0.0129597327, -0.0176792704, -0.010747713, -0.0066698296, -0.00127592147, 0.00438182475, -0.0126726767, -0.0102495868, -0.00524721388, 0.0231333338, 0.0162777621, -0.0195873473, 0.00727771269, 0.00269748177, -0.0212927982, -0.0178818982, 0.00242309, 0.0217487104, 0.044915814, 0.000128159401, -0.000518178218, -0.000100522353, 0.0103593431, 0.0195029192, -0.00227111927, 0.000319244224, 0.00133396592, 0.00895783491, 0.00116510945, 0.0192665197, -0.00967547484, -0.0105788568, -0.00756054744, 0.00114083639, 0.0104268854, 0.0111360829, -0.0129850609, -0.00340034673, -0.0235048179, 0.00375283463, 0.000393382739, 0.00292332727, 0.000229011552, -0.00878053531, -0.00105482514, -0.00997941568, -0.00134663016, 0.0039596837, 0.0166492462, 0.0293979067, 0.00893250573, -0.0155010214, 0.00525987847, 0.00194079382, 0.00713840639, -0.00537385652, -0.0130948173, -0.000674370443, -0.0149860093, -0.0230995622, 0.00969236, -0.00504458649, 0.00924489088, -0.00515856454, 0.00607883185, -0.0131876888, -0.0122843068, 0.0227111913, -0.00635744538, 0.0263078343, -0.00602817535, 0.0192496348, 0.0118874935, -0.00359031023, -0.0107730413, -0.0156783219, -0.00935464725, 0.00525143556, 0.0120056933, 0.0419101715, 0.00278613134, 0.0107899271, -0.00218458031, -0.00860745739, 0.00151443121, 0.0198575184, -0.00670360075, 0.011938151, -0.0103677856, 0.0179494396, 0.00883963518, 0.00218246947, -0.00102263689, 0.013643601, 0.00286633824, 0.010891241, 0.00472798059, 0.0157796349, -0.015534793, 0.000333227654, -0.00786871, 0.0106801698, -0.00775895361, -0.0179494396, 0.00375283463, 0.00154609187, -0.0120647931, 0.011980365, 0.00410321169, -0.0109841116, 0.012267421, -0.00603239657, 0.0105957417, -0.0274898298, 0.0073748054, 0.00292965933, 0.000929238158, -0.00514590042, -0.0044155959, -0.00421085767, -0.0069779926, -0.0092195617, -0.00255395379, 0.0095572751, -0.0214616545, 0.00718484167, 0.00872143544, -0.0149522386, 0.0375874452, 0.0212590266, 0.0194184911, 0.0106632849, -0.0084470436, -0.010747713, -0.0166914593, 0.00130125, 0.0149015812, 0.000774101296, -0.00193657237, -0.00586354034, -0.00312173367, -0.00443248171, -0.0225761067, -0.0164550599, -0.00394490873, -0.00171389291, 0.00407999381, -0.00977678783, 0.0295329932, -0.00993720163, 0.00367473834, 0.0163284186, -0.00567357661, 0.0265611187, 0.0158134066, 1.49645723e-06, -0.017527299, -0.0207693428, -0.0180676393, -0.00658540148, 0.00593108265, -0.00964170322, -0.0024463078, 0.0156023353, -0.00279246341, -0.000542979, -0.00372750615, 0.00125481444, -0.0112373969, -0.00490950141, -0.0217655953, 0.00795313902, 0.0173753276, -0.00377816311, 0.0513999, -0.0044155959, -0.0188781507, -0.0322009251, -0.00459289551, -0.00545828464, 0.00537385652, 0.00741701946, -0.00998785906, -0.00780538935, 0.0173922144, 0.00409687962, -0.0167421158, -0.000803123461, -0.00543295639, -0.017425986, 0.0204822868, 0.000920795312, 0.00856946502, 0.0164719466, -0.0222215075, -0.00843015779, -0.0540678352, -0.0106210709, -0.00907603372, -0.00596907549, 0.00734525546, -0.0130948173, -0.0114737954, 0.0143527975, 0.00138567819, 0.0161764473, 0.00405255472, -0.0172486864, -0.0163537469, 0.0111445254, 0.000732414832, -0.0363716781, 0.0109250117, 0.00372750615, -0.0185910948, 0.00386681268, 0.0357975662, -0.0086159, 0.00409899047, -7.91514613e-05, -0.00623924565, -0.0115497811, -0.0237412173, -0.0166070312, -0.0134663014, 0.00462666666, -0.00712574227, -0.0213772263, 0.0179663263, 0.0127993189, 0.00368951331, -0.0133818733, -0.00409899047, -0.0137195867, -0.00780116767, -0.0128921894, -0.00182892638, 0.0045844526, 0.0104522137, -0.0118030654, 0.011938151, 0.00100997265, 0.0101145012, 0.0111951828, 0.0143950125, 0.000775156601, -0.015205523, -0.00369795621, -0.00450424571, 0.00611682469, 0.0135845011, 0.0042762896, -0.00898316316, -0.00985277351, 0.0164466184, 0.0121914353, -0.0147242825, -0.0207355712, 0.013787129, -0.0117270807, -0.00945596118, 0.000463827542, -0.014259927, 0.000365679734, 0.00191440992, 0.0144625548, 0.0107730413, -0.00419819355, 0.017527299, -0.00218035886, 0.000186269768, 0.0155432355, 0.00452957395, -0.00154820259, -0.000927655085, 0.00866233557, -0.00351854623, -0.00336657534, 0.037418589, 0.00788137503, 0.00379082724, 0.0151210949, 0.0052092215, 0.000367790461, 0.00133818737, -0.00740013365, 0.000731359469, -0.00436916063, 0.00166218064, 0.0204991736, -0.0143865691, -0.016581703, -0.0075141117, -0.0103086857, 0.0201108027, 0.0100216297, 0.00515856454, -0.00948973186, -0.00957416091, 0.0119043794, 0.0101229437, -0.0134156449, -0.0196886621, -0.00558070559, -0.022356594, 0.00897472, -0.000967758533, -0.0152224088, 0.00775895361, -0.0145385405, -8.56154948e-05, -0.00562714087, 0.0125291487, -0.0301408749, 0.00321460469, 0.011465353, 0.010131387, -0.0296849627, -0.00132446771, 0.00751833338, 0.0115751093, -0.00115033449, -0.00533164246, -0.00292754872, -0.0109250117, -0.0116426516, -0.00939686131, 0.0224916786, 0.00859479327, 0.0104522137, 0.00644609472, 0.0102495868, 0.00414753659, -0.0113049392, -0.0120056933, 0.00568201952, -0.00679225056, -0.011651095, 0.00562714087, 0.00477863755, -0.0146989534, -0.0093799755, 0.00343622873, 0.00188802613, -0.0317112394, -0.0126473475, -0.00028573678, 0.0132636735, 0.00937153306, 0.00103266269, -0.00292121642, 0.0075141117, 0.0068893428, 0.00155242393, 0.00656851567, 0.00367051712, -0.0144963255, -0.0102411434, -0.0169278588, -0.0223903656, 0.0102833575, -0.00214236625, -3.08690687e-05, -0.00280934921, 0.000991503941, -0.00606616773, 0.0123518491, 0.00685979333, -0.00962481741, 0.0167758875, -0.00851880759, 0.00536119239, -0.0123687349, -0.0119888075, 0.00452957395, 0.014302141, -0.0155516788, -0.00369795621, 0.0186924078, 0.00946440361, 0.0114146955, -0.0139559852, -0.00466888072, -0.00126220193, -0.0044958028, 0.00474486593, 0.019047007, 0.00710041355, -0.0139053287, -0.00365574216, 0.0107392697, 0.00905070547, -0.01713893, 0.0105281994, 0.00823175162, 0.00873832125, 0.000135349, 0.00156086683, -0.0209044274, 0.00130230538, -0.00108384737, 0.00474486593, -0.0183884669, 0.0166830178, 0.00957416091, 0.0207693428, -3.49585607e-05, -0.00562291965, -0.0136013869, -0.011321825, -0.014732725, 0.00193024031, -0.0327074938, -0.00300353416, -0.00154503644, 0.00927866157, -0.00575800473, 0.00175083033, 0.00471953768, -0.0204654019, 0.0106548415, -0.0186417513, 0.0157627501, 0.00753099751, -0.00867922138, -0.00668671541, 0.0144118974, 0.013643601, 0.00501503656, -0.0106210709, -0.0101482728, 0.000342989661, -0.00941374712, -0.00392591255, -0.0198237468, 0.0279288571, 0.0355949402, -0.00744234771, -0.00783916097, -0.0151464231, -0.00616748165, 0.00366418483, -0.00330747571, 0.00428262167, 0.0115497811, -0.0043564965, 0.0239945017, 0.0185404383, 0.0144372266, -0.00122631993, 0.0111445254, -0.00975990295, -0.0107392697, 0.02264365, -0.00731992675, 0.0106548415, -0.00817687344, 0.000603134104, 0.0361690521, -0.00670782244, 0.00221835147, 0.00824441575, -0.00287900236, 0.0116257668, 0.00590153271, 0.000647458946, 0.00952350348, -0.00126642338, 0.0112373969, -0.0176454987, -0.00750566926, -0.0264598057, -0.00814310182, 0.00117988442, -0.0142177129, -0.0158640631, 0.000575694954, -0.0242140144, 0.00709619233, -0.00719750626, -0.0113809248, -0.00982744526, 0.00637855241, -0.00263204984, -0.0143359127, 0.012267421, -0.00444514584, -0.000321618776, 0.0151295373, 0.00695266435, -0.0109250117, 0.00403144769, 0.00651363749, -0.0130103892, -0.0171811432, -0.00300564477, -0.00203999691, -0.00926177576, 0.0121070072, -0.00448736, -0.00842171535, -0.0290433094, -0.0153406085, -0.00677958643, -0.0114315813, 0.00146377436, -0.00615059584, 0.00825285912, -0.0128415329, -0.00622658152, -0.00654318742, 0.00808822364, -0.00986965932, 0.0174766425, 0.0188781507, -0.000692839094, -0.012410949, -0.0238425303, -0.0128415329, -0.00418975065, 0.00516700745, -0.000513692969, 0.0237243306, 0.0201276876, -0.00819798093, -1.66300506e-05, -0.0019028011, -0.0041791969, -0.0163790751, -0.00630678842, -0.012081679, 0.00567779783, -0.0114315813, 0.000665399944, -0.000590469863, -0.0157880783, 0.00349532836, 0.0132890027, 0.013027275, -0.0337037481, 0.0316099264, -0.0244672988, -0.0035692032, -0.00846392941, 0.0336530916, -0.00957416091, -0.00506569352, -0.0142092695, 0.00716795633, 0.0410996601, -0.00996253081, -0.0134916306, 0.00181837287, -0.00208326639, 0.0228800494, -0.0151379807, 0.00642076647, -0.0171220433, -0.0140488567, -0.0234710462, -0.0077505107, 0.0344804861, 0.0136604868, 0.00150809914, -0.00444514584, 0.0221033096, -0.00686401455, -0.00813888106, 0.00252862531, 0.0992875919, -0.0236567874, 0.00679647177, -0.0280977134, 0.0288237948, -0.011178297, -0.00564402668, 0.0555199981, -0.00574111938, 0.00883119181, -0.0137364715, -0.00957416091, -0.00626457436, 0.0166323595, -0.0117439656, -0.0178650115, -0.0142852552, -0.0200263746, -0.00611260347, -0.00819798093, -0.00998785906, 0.00320616178, 0.00601128954, 0.0156614352, -0.0259701218, 0.000533744693, -0.00160097016, -0.00279457425, -0.00303308386, 0.00664450135, -0.0109756691, 0.0247036982, 0.0173415579, 0.00651785871, -0.0197224338, 0.00439026766, 0.0036515207, 0.0136773726, 0.0115497811, -0.00562291965, 0.00391958049, -0.000429264735, 0.00279668486, -0.0057453406, 0.0182533823, -0.0152561804, 0.0215629674, -0.00927866157, 0.0183546953, -0.00266793184, 0.0108574694, -0.0175104141, 0.00487150857, -0.0208537709, 0.00786448922, -0.00770407543, 0.0227111913, -0.00158830592, 0.000925544417, 0.00123898417, -0.00128014293, 0.0192496348, 0.0151126524, 0.0110009974, -0.00272492087, -0.0132974451, -0.00184475665, -0.00384570565, -0.0256830659, 0.0111867394, -0.00141628343, -0.0275404863, -0.00709197065, -0.0146989534, 0.0179832112, -0.0173077863, -0.0181182958, 0.00908447709, 0.00927866157, -0.021410998, -0.00609993935, 0.00285578473, -0.0348182, -0.0139475428, 0.0144541115, 0.00789826, -0.0400189795, -0.0148846954, -0.0155094648, -0.00485884445, -0.00445781, 0.0181014109, -0.0165648181, 0.00188908156, 0.00442403881, 0.00799535308, 0.00750989048, 0.0108152553, 0.0157120917, -0.00333702564, 0.00186586368, -0.0011049544, -0.0219006818, -0.00868766382, 0.00421930058, 0.019705547, 0.00657273736, 0.0348857418, 0.0178481266, 0.014445669, -0.00351643539, -0.00718062045, 0.0101989293, 0.0125882477, 0.0157627501, -0.0055173845, 0.0224916786, -0.00315339421, 0.00867077895, 0.00296765217, 0.0118874935, 0.00441137468, -0.00102158147, -0.00965014566, -0.0114484672, 0.0171051584, 0.00366629567, 0.0126473475, 0.00276713492, 0.0170038436, 0.0131876888, -0.00096037105, 0.00906759128, 0.00575378351, 0.0148171531, 0.0167927742, -0.00631100964, -0.0015313169, 0.00363463513, 0.00639543775, -0.00264049275, 0.011220511, -0.00180570863, 0.011321825, 0.0097176889, -0.0263753776, 0.00632367376, -0.00342989666, -0.0041791969, -0.00843860116, 0.0221370794, 0.00618014578, -0.00470687356, -0.00965014566, 0.0150535526, 0.00683024339, 0.00144266721, -0.00017307786, 0.0151379807, 0.000737163937, 0.0182364956, -0.00847237185, 0.0119043794, 0.0103509, 0.00519655738, -0.0227280781, 0.00804178789, 0.00663605845, 0.0366080776, 0.00647142343, 0.00444936752, -0.0108152553, 0.00140361919, 0.00696532847, -0.0106717274, 0.019047007, -0.00862012152, 0.0093799755, 0.0164044034, -0.015906278, 0.00210965029, 0.00320827239, -0.00729881972, 0.0423154272, -0.0160920192, 0.00774628948, 0.00329059, 0.000385467603, 0.0279626269, 0.00784338173, -0.0213096831, 0.0055173845, -0.0239776149, 0.00234710472, 0.00024945903, 0.00563980546, 0.00473642349, 0.0134156449, -0.0175441857, -0.00582976872, 0.0156192211, 0.0140404133, 0.000638488447, 0.0122252069, 0.00465199491, 0.0116004376, 0.00344678224, -0.00766186137, 0.000167405335, -0.000989920925, 0.00351643539]
|
15 Mar, 2024
|
Semrush in 2024: Exploring the Pros and Cons
15 Mar, 2024
The internet is a vast marketplace, and just like any marketplace, competition is fierce. If you're a business owner or marketer looking to stand out online, you need the right tools in your arsenal. Enter SEMrush, an all-in-one digital marketing platform designed to help you conquer the online world. But before you dive in, let's explore what SEMrush offers and how it can benefit your business.
SEMrush can seem intimidating at first glance, but fear not! It's essentially a powerful toolbox filled with features to boost your website's traffic, attract more customers, and ultimately increase your sales. Imagine SEMrush as your digital marketing assistant, guiding you through every step of the process.
Table of Content
What SEMrush can do for you?Pros of SEMrushCons of SEMrushCustomer Support and ResourcesConclusionWhat SEMrush can do for you?Uncover hidden keywords: Like finding buried treasure, SEMrush helps you discover the keywords people are searching for online that are relevant to your business.Spy on your competitors (ethically, of course!): SEMrush lets you analyze what your competitors are doing online, so you can learn from their successes and avoid their mistakes.Fine-tune your website: Think of SEMrush as a website doctor. It identifies areas for improvement to ensure your website is running smoothly and attracting visitors.Craft captivating content: SEMrush gives you insights into what kind of content resonates with your audience, so you can create content that keeps them coming back for more.Run targeted ads: SEMrush helps you launch effective online advertising campaigns to reach the right people at the right time.Track your progress: Just like with any journey, it's important to see how far you've come. SEMrush provides valuable data and reports to track your progress and measure the success of your online marketing efforts.Pros of SEMrushNow that you have a general idea of what SEMrush can do, let's delve deeper into some of its key advantages:
Comprehensive Keyword ResearchFinding the right keywords is like having a treasure map for your online marketing journey. SEMrush offers a powerful keyword research tool that helps you discover:
Search Volume: This tells you how many people are searching for a particular keyword each month. The higher the search volume, the more potential customers you can reach.Competition Level: This indicates how difficult it is to rank for a specific keyword. Lower competition is ideal, as it means you have a better chance of appearing at the top of search results.Related Keywords: SEMrush suggests additional keywords related to your main topic, helping you expand your reach and attract a wider audience.Imagine you run a bakery. Using SEMrush's keyword research tool, you might discover that "best cupcakes near me" has a high search volume but also high competition. However, you might find "easy chocolate chip cookie recipe" has a good search volume with lower competition. This allows you to target both high-intent searchers looking for a bakery and potential customers searching for baking recipes, potentially leading them to discover your bakery and try your delicious treats!
Competitor AnalysisKnowledge is power, and when it comes to online marketing, knowing what your competitors are doing can give you a significant edge. SEMrush's competitor analysis tools allow you to:
See their top keywords: Uncover the keywords your competitors are ranking for and identify potential gaps in your own keyword strategy.Analyze their website traffic: Gain insights into how much traffic your competitors are attracting and where it's coming from.Compare your advertising strategies: See what kind of ads your competitors are running and identify opportunities to create more effective campaigns for your own business.Feature
What You Can Learn
Example
Top Keywords
Identify keywords your competitor ranks for but you don't.
You discover a local bakery competitor ranks highly for "gluten-free cake pops."
Website Traffic
See where your competitor's website traffic comes from (organic search, social media, etc.).
You learn your competitor receives a lot of traffic from recipe blogs featuring their desserts.
Advertising Strategies
Analyze the type of ads your competitor runs (search ads, social media ads).
You see your competitor runs targeted ads on Facebook featuring their new line of seasonal cupcakes.
On-Page SEO OptimizationSearch Engine Optimization (SEO) is all about making your website search engine friendly, so it appears higher in search results when people search for keywords related to your business. SEMrush equips you with tools to:
Identify technical SEO issues: Think of these as roadblocks on your website that might prevent search engines from finding and indexing your content. SEMrush helps you identify and fix these issues to ensure your website is running smoothly.Optimize your website content: SEMrush analyzes your website content and suggests improvements to target relevant keywords and make it more appealing to search engines.Track your SEO progress: Monitor your website's ranking for important keywords over time and see how your SEO efforts are paying off.Imagine you have a blog post on your bakery website about the perfect chocolate chip cookie recipe. SEMrush might suggest optimizing the title to include relevant keywords like "easy chocolate chip cookie recipe" and adding internal links to other baking recipe blog posts on your website. This improves the overall SEO health of your website and increases the chances of your recipe appearing higher in search results when people search for cookie recipes.
Backlink AnalysisBacklinks are like votes of confidence for your website in the online world. When other websites link to your content, it tells search engines that your website is valuable and trustworthy. SEMrush helps you:
Identify your backlinks: See where your backlinks are coming from and understand the quality of these links. High-quality backlinks from reputable websites can significantly boost your SEO ranking.Find backlink opportunities: Discover potential websites where you can earn valuable backlinks and expand your online reach.Let's say your bakery partners with a local food blogger who features your delicious cupcakes on their website with a link back to your bakery website. SEMrush would identify this as a valuable backlink, helping to improve your website's authority and search engine ranking.
Content MarketingCreating high-quality content is essential for attracting and engaging your audience. SEMrush offers features to:
Discover trending topics: See what kind of content is currently popular and relevant to your audience.Analyze your content performance: Track how well your existing content is performing and identify areas for improvement.Create content calendars: Organize your content creation process and ensure you're consistently publishing fresh and engaging content.Using SEMrush's content marketing tools, you discover that blog posts featuring "vegan baking tips" are trending. This might inspire you to create a blog post on your bakery website showcasing delicious vegan cookie recipe options, attracting a new audience segment interested in vegan treats.
Paid Advertising (PPC)Pay-per-click (PPC) advertising allows you to display targeted ads to potential customers searching for keywords related to your business. SEMrush helps you:
Manage your PPC campaigns: Create, monitor, and optimize your PPC campaigns to ensure you're getting the most out of your advertising budget.Target the right audience: Reach potential customers who are most likely to be interested in your products or services.Track your PPC performance: See how your PPC campaigns are performing and adjust your strategy for better results.Imagine you're launching a new line of seasonal pumpkin spice cookies at your bakery. SEMrush can help you create targeted PPC ads displayed when people search for "pumpkin spice cookies near me," driving them to your website and potentially increasing sales of your new seasonal treat.
User-Friendly InterfaceEven the most powerful tools can be useless if they're too complex to use. Thankfully, SEMrush boasts a user-friendly interface that makes it easy to navigate, even for beginners. With clear menus, helpful tutorials, and visual reports, you can quickly grasp the information you need to make informed decisions about your online marketing strategy.
Feature
Benefit
Keyword Research
Discover valuable keywords to attract potential customers.
Competitor Analysis
Learn from your competitors' successes and avoid their mistakes.
On-Page SEO Optimization
Make your website search engine friendly to appear higher in search results.
Backlink Analysis
Understand the quality and source of backlinks to your website.
Content Marketing
Create engaging content that attracts and retains your audience.
Paid Advertising (PPC)
Reach the right audience with targeted online ads.
User-Friendly Interface
Navigate the platform easily and access valuable insights.
Remember, SEMrush is not a magic bullet. Success in online marketing requires dedication and ongoing effort. However, with the right tools and strategies, SEMrush can be a powerful ally in your quest to achieve your online marketing goals.
Cons of SEMrushWhile SEMrush offers a treasure trove of benefits, it's important to consider some potential drawbacks before diving in:
Pricing and Plans: SEMrush offers various subscription plans, but they can be expensive for small businesses or startups on a tight budget. The most basic plan offers limited features, and higher tiers with more functionality come at a steeper price.Learning Curve: While the interface is user-friendly, SEMrush has a vast array of features. It might take some time to learn the ropes and discover the full potential of the platform, especially for complete beginners in the world of SEO and digital marketing.Data Overload: SEMrush provides a wealth of data and reports. This can be overwhelming at times, especially for those new to the platform. It's important to identify the most relevant data and focus on the metrics that matter most to your specific marketing goals.Limited Backlink Control: While SEMrush helps you identify backlinks and potential backlink opportunities, you can't directly control which websites link to yours. Earning high-quality backlinks takes time and effort, and building relationships with other websites is crucial.Focus on Paid Features: Some of the most advanced features within SEMrush are only available in higher-tier, more expensive plans. This can be limiting for businesses on a tight budget who might not need all the bells and whistles.Con
Potential Impact
Pricing
Can be expensive for small businesses or start-ups.
Learning Curve
Requires time and effort to master the platform.
Data Overload
Can be overwhelming for new users.
Limited Backlink Control
You can't directly control which websites link to yours.
Focus on Paid Features
Advanced features might be locked in higher-tier plans.
Customer Support and ResourcesSEMrush offers various resources to help you navigate the platform and get the most out of its features. Here are some helpful options:
Comprehensive Knowledge Base: SEMrush boasts a vast library of articles, tutorials, and videos covering every aspect of the platform and online marketing best practices in general.Webinars and Events: SEMrush regularly hosts webinars and online events featuring industry experts offering valuable insights and strategies.Customer Support: SEMrush offers customer support via email and live chat. While response times might vary depending on your plan tier, support agents are available to answer your questions and assist with any technical issues.Remember, customer support is a valuable resource. Don't hesitate to reach out if you encounter any difficulties or have questions about using SEMrush.
ConclusionThe world of online marketing can be complex and ever-changing. However, with the right tools and strategies, you can navigate this landscape effectively and achieve your online marketing goals. SEMrush, with its comprehensive suite of features and user-friendly interface, can be a powerful ally in your online marketing journey.
Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?/How to design datalists for mobiles using jQuery EasyUI Mobile ?/How to design menu using jQuery EasyUI Mobile ?/EasyUI jQuery menu widget/EasyUI jQuery datebox widget/How to make use of multi-mode jtsage-datebox plugin?/Step by step guide to make your first WordPress Plugin/Explain MonsterInsight Plugin in WordPress/How to Setup All In One SEO(AIOSEO) Plugin for WordPress?/WordPress SEO: Step-by-Step Guide, Benefits and Plugin/Difference Between Black Hat SEO and White Hat SEO/White Label Local SEO Services : A Complete Guide/SEO Checker | Complete SEO Audit in 9 Steps/Semrush Backlink Checker/Basics of SEMrush/Ubersuggest vs SEMrush: Which one is Better?/Semrush Vs SpyFu | Which Is the Best Tool In 2024?/Semrush in 2024: Exploring the Pros and Cons
|
https://www.geeksforgeeks.org/semrush-in-2024-exploring-the-pros-and-cons?ref=asr8
|
CSS
|
Semrush in 2024: Exploring the Pros and Cons
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, WordPress SEO: Step-by-Step Guide, Benefits and Plugin, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, How to design menu using jQuery EasyUI Mobile ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, Step by step guide to make your first WordPress Plugin, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Basics of SEMrush, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, EasyUI jQuery datebox widget, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Ubersuggest vs SEMrush: Which one is Better?, Onsen UI Fab CSS Components, Semrush Vs SpyFu | Which Is the Best Tool In 2024?, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, Explain MonsterInsight Plugin in WordPress, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, EasyUI jQuery menu widget, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, How to make use of multi-mode jtsage-datebox plugin?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to Setup All In One SEO(AIOSEO) Plugin for WordPress?, SEO Checker | Complete SEO Audit in 9 Steps, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Semrush Backlink Checker, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, White Label Local SEO Services : A Complete Guide, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Semrush in 2024: Exploring the Pros and Cons, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, How to design datalists for mobiles using jQuery EasyUI Mobile ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Difference Between Black Hat SEO and White Hat SEO, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0329628363, -0.0125749512, -0.0165782738, 0.00910432916, 0.0266350061, -0.00543999812, 0.00532296533, 0.0101858722, -0.0179665219, 0.0492344052, 0.0351904929, -0.0133820726, 0.00866041239, -0.0540448464, -0.0109849218, -0.0154967308, 0.00677174842, -0.00978231151, -0.000769287581, -0.00508082891, -0.00751833571, -0.0185637921, -0.0253113266, -0.0349322148, -0.0329144113, 0.0130107971, -0.00258278847, 0.0337699577, -0.00328498404, -0.00575477537, 0.0203556, 0.0288142338, 0.024859339, -0.0208075885, -0.0220182706, 0.0221312679, 0.0292662214, -0.0264412966, -0.0146976802, 0.0398395099, 0.0168688372, 0.00301661622, 0.021695422, -0.00620272802, -0.0103876526, -0.0225509722, -0.0195000526, -0.0531408712, 0.0202910323, -0.00566599192, 0.0181440879, 0.0191126335, 0.0496218242, -0.00388023607, 0.0331888311, 0.0140116271, 0.0376118571, -0.0415506102, -0.0106540024, 0.0279748272, 0.0190480649, 0.00295608211, 0.0150689567, -0.0231482405, -0.0195323378, -0.00659014611, -0.0498155318, -0.027635837, -0.0265542939, -0.0118323993, -0.0196776185, 0.0159325767, 0.020694593, -0.0484595671, 0.000588189694, 0.0130188679, 0.0163442083, 0.00506468676, -0.0194677673, 0.0416797474, 0.0387741104, 0.0160778575, 0.0154321613, -0.00350492471, 0.0661193803, -0.02247026, -0.0156581551, -0.0744488761, 0.024601059, 0.0329628363, -0.0205654521, -0.0344156548, 0.0126556633, -0.02958907, -0.0166751277, 0.0161666404, -0.00387821835, 0.0267157182, -0.0237939376, 0.0478461571, 0.000886320195, 0.00770397345, 0.0243266392, -0.0516880527, 0.00690895924, -0.00239109714, -0.0322525688, 0.00531489449, 0.0375472866, -0.0141649805, 0.0358684734, -0.00938682165, -0.0291855093, 0.00441495376, -0.0218407046, 0.0170948301, -0.00662646675, -0.0488469861, 0.0357393362, 0.0235033743, -0.0499769561, 0.02334195, -0.00111483643, 0.0137372063, -0.0358684734, 0.0351582058, -0.0242620688, 0.0198390428, 0.0644082874, -0.0072318078, 0.0123328147, 0.0263444427, -0.00442302506, 0.0165621303, -0.00784522, 0.0149801727, 0.0202910323, -0.00733269798, -0.0040921052, -0.0343188, -0.0113319838, 0.0152061665, 0.00388427172, -0.0178373829, -0.0169172641, -0.00309732836, -0.0189027824, 0.0534314364, -0.0072842706, 0.0406789184, -0.000743056124, -0.0052583958, 0.0053108586, -0.0175952464, -0.00215501408, -0.0426482931, -0.016094001, 0.0001358234, -0.0119696101, 0.0379024185, 0.011977681, -0.0177566707, -0.0153110931, 0.0540771335, 0.0120261088, 0.0260861628, 0.0232773814, -0.0365787409, -0.0549165383, 0.0602112561, -0.0241490714, -0.0222119801, -0.0217277072, -0.0352873467, 0.000375563657, 0.0110575631, 0.0455862172, -0.0315261595, -0.0247947685, -0.00891062, -0.0139067015, 0.0258117411, -0.0145685412, -0.00587584358, 0.0198551863, 0.0258763116, 0.0496541075, 0.0218084194, -0.00505661545, 0.00170403498, -0.0121068209, -0.000925667351, 0.0498801023, 0.0495895371, 0.0177566707, 0.0141084818, -0.0410986207, 0.0864588395, 0.00652154069, -0.0194031987, -0.0500092395, -0.0276681203, 0.0360944681, 0.023906935, 0.02360023, 0.00941103511, 0.0136080664, 0.0179665219, -0.00765958196, -0.00842634682, -0.0496218242, 0.0254888926, -0.0131076509, -0.00824070908, -0.0169979762, 0.0192094892, -0.0131883631, -0.0201134644, -0.0195000526, -0.00326077035, -0.0373858623, -0.00930610951, 0.0269739963, -0.000398768403, -0.037966989, 0.0135596395, -0.00544806942, -0.00686053187, 0.0389355347, 0.0154644456, 0.0121875331, 0.0290079433, -0.0234549474, -0.0283461027, 0.0092576826, 0.0127202328, -0.0171109736, -0.013059224, -0.0523337498, 0.0116064055, 0.00841020513, 0.0064166151, -0.00919311214, 0.00197542948, -0.0354810543, -0.0157227237, 0.0574024729, 0.0271031354, -0.00211667572, 0.0351582058, -0.00617447868, -0.00748605095, -0.0209367294, 0.0364818871, -0.0254404657, 0.0136726359, 0.0535928607, -0.0137937041, 0.00862005632, -0.00422124472, 0.0665068, -0.0180795193, 0.00571038388, 0.0258601699, -0.0115256933, 0.0256664604, -0.000112555601, -0.0115337642, 0.00250005838, -0.0185637921, 0.0417443179, -0.0194839109, 0.0058879503, 0.00389032508, -0.0374181457, -0.00260901987, 0.0351582058, -0.0228415355, -0.00696949335, 0.0234388057, 0.0148671763, -0.0566922054, 0.0606309585, 0.0214048587, -0.012405456, -0.0137372063, 0.00739323208, -0.0214855708, -0.039484378, 0.0114772664, -0.0395166613, -0.0146331107, 0.00991145056, 0.00786943361, 0.058403302, 0.0251014754, 0.00632379623, 0.0127767315, -0.0226639677, 0.0126395207, 0.00680806907, 0.00626729755, 0.00286931661, 0.0113481265, -0.00701388484, 0.0425514393, 0.00868462585, 0.0189512093, -0.0221958384, -0.0291855093, 0.0598561205, 0.00147097872, 0.0193386283, -0.011888898, -0.0216469951, 0.0520109, 0.0328982659, 0.00131157227, -0.0339636691, -0.0448113792, 0.0128493728, -0.0230513867, -0.0329144113, 0.0291855093, 0.00968545675, -0.0287658069, -0.0457153544, 0.0359976143, 0.0200004671, -0.0042777434, 0.0142456926, 0.00245364895, -0.00580320274, 0.0257471725, 0.0524951741, -0.054141704, -0.00133275916, 0.0244073514, -0.00662243087, 0.0256341752, -0.0325431339, -0.00684035383, -0.0167396981, 0.01636035, 0.0533345826, -0.000362952385, 0.0100325188, 0.0133013604, 0.0114449812, 0.0221635532, 0.00151133479, -0.0184507947, 0.00613815803, 0.0199036133, 0.0107105011, -0.0138582746, 0.00349483569, -0.00777257886, -0.00422124472, -0.000422225363, 0.0257956, -0.0372890085, -0.0198067594, 0.0402269289, -0.0174176786, 0.025553463, -0.0245849174, 0.0236325134, 0.02958907, -0.019564623, -0.00761922589, -0.00649732724, 0.0140035562, -0.0116467616, -0.0422285907, 0.0287980903, 0.0334148258, -0.00759501243, -0.0518817641, 0.01848308, 0.0244880635, 0.00213281834, 0.0308320373, 0.0640854388, 0.0116306189, 0.00382979098, 0.00795418117, -0.0159164332, -0.012147177, -0.0246979147, -0.0232935231, 0.0249077659, -0.0269739963, -0.0116871176, -0.0310257468, -0.00991145056, -0.011065634, 0.0224864017, 0.0356747657, -0.00329709076, 0.0165056325, 0.0179019514, 0.00318812951, 0.0163280647, -0.0140681257, -0.00608166, 0.0188220702, -0.0410663374, -0.028636666, -0.00170302612, 0.00152445049, -0.0193870552, -0.0360621847, 0.0291209389, 0.0244396348, 0.0588875748, -0.0253758971, 0.0102020139, 0.0405497774, 0.00451988, -0.0381284133, 0.0313163102, 0.0132529335, 0.0195000526, 0.00155976205, 0.0268287156, -0.010411866, -0.00728023471, -0.0161343571, 0.0282331053, -0.00753851375, -0.0033172688, 0.0195969064, 0.011323913, 0.0500092395, -0.0163926352, 0.0428097174, 0.0362558924, 0.0073448047, -0.0111140618, 0.00272605242, -0.0189027824, 0.000410370791, -0.0483627133, -0.0741905943, -0.00225590426, -0.0636334494, 0.000535726838, 0.0095159607, 0.00371074048, -0.0286850948, 0.000705222308, -0.0551102497, 0.0506226532, 0.0482981429, -0.030541474, -0.0129220132, 0.011065634, 0.0244880635, 0.0184023678, -0.00770397345, 0.0181118045, 0.00799453724, -0.0100244479, -0.00257068151, 0.0191449188, -0.0529794469, 0.00667085825, -0.000474940491, -0.0181925166, 0.0116144763, -0.0519140474, 0.056272503, 0.033543963, 0.018095661, 0.0334793963, 0.00822456647, -0.0417120345, 0.0108557828, -0.000620474573, 0.0107266428, 0.0425191559, 0.0212434344, -0.0110494914, 0.0148187485, 0.0231643841, 0.0268448573, -0.00419299537, 0.0270385668, -0.0209044442, -0.0663776621, 0.00538349943, -0.0304607619, -0.00993566401, -0.00346860406, -0.0188382138, -0.035061352, -0.0392261, -0.0162554253, 0.00032663194, -0.010847711, 0.0238746498, -0.0388063975, 0.0133497873, -0.0458767787, -0.0125507377, -0.0329466946, 0.0284268148, 0.0034908, -0.014883318, 0.0429388583, 0.0358039029, -0.0136968503, 0.0360944681, 0.0150447423, 0.0253436118, -0.00812367629, 0.0324462801, 0.0141488379, -0.000800059061, 0.018095661, 0.0127928741, 0.0326238461, -0.0043302062, 0.00899133179, -0.015795365, 0.0016061716, 0.0037289008, 0.0385804027, -0.0449728034, -0.00434634881, -0.0297182091, -0.00808332, 0.0179988071, -0.0153272348, -0.00116931705, -0.00456427131, -0.00287940563, 0.0160697866, -0.0222765505, -0.0253920387, 0.0339959525, -0.0402915, -0.0139551284, 0.0155048016, 0.00180088961, 0.0227769651, -0.0120099662, 0.00187151274, 0.0297182091, 0.00152646832, 0.00817614, 0.0345447958, -0.00132872362, -0.00468533952, 0.00709056156, -0.018999638, 0.00586777227, 0.0084505612, 0.00661032414, -0.0114691947, -0.00629958231, 0.0428097174, 0.0166105572, -0.00613412261, -0.0314615928, 0.00539157074, 0.00836984906, -0.006291511, -0.0124619538, 0.00961281545, 0.0271838475, -0.00257471716, -0.031800583, 0.00762326131, 0.0238262229, 0.0247140564, -0.00192801119, 0.0300410576, 0.0181118045, 0.00685649598, 0.024859339, 0.00989530794, 0.0167558398, 0.0233580936, 0.0155370869, 0.00483465707, 0.000234947991, -0.0171594, 0.0115660494, 0.00721162977, 0.00912047178, -0.0443271063, -0.0212272927, -0.0044432031, 0.0245526321, 0.0142779769, -0.0151658105, 0.0266027208, 0.00188462844, 0.0252467562, -0.00648522051, -0.00202486571, 0.0367078818, -0.0169979762, -0.0156985112, -0.0189673528, 0.00950789, 0.0166428424, 0.0117920432, -0.0122117465, 0.0249561928, 0.0184346531, -0.00298231351, 0.00227406458, -0.0155451577, 0.00483465707, -9.59244881e-06, -0.00518575497, 0.00772818737, 0.000225741765, 0.0194354821, -0.0192579161, -0.0192902014, 0.0129865827, 0.0189027824, -0.0109607084, 0.00590409292, -0.0103715099, -0.0363850333, -0.0296697821, 0.00103815983, 0.000978634693, -0.0293469336, 0.0334793963, 0.00850705896, -0.00786136184, -0.0140761966, -0.0178050976, -0.0171432588, -0.00393471681, 0.00821649563, -0.00936260819, 0.192546874, -0.00778065, -0.0171109736, 0.00179281842, 0.0374504328, -0.00801068, -0.00463287672, -0.0121310344, -0.00213281834, 0.000976112438, 0.0259731654, -0.00784925558, -0.0156420115, -0.00923346821, -0.0154240895, -0.00311347074, 0.0204201713, 0.0095159607, -0.0085554868, 0.037224438, 0.020258747, 0.000178197268, -0.0173692517, 0.00351904915, -0.00546017615, 0.0029802958, 0.0190480649, 0.0382898375, -0.0312517397, -0.0199197549, 0.0206138808, -0.0284913853, 0.00015524475, 0.000233686864, 0.0192417745, 0.00658611069, -0.0183216557, -0.0170302615, -0.000838397362, 0.0193870552, -0.0234388057, -0.0203233156, -0.0112270582, -0.0174015369, 0.0224218313, -0.025166044, -0.00254445, 0.00998409186, -0.0116306189, 0.0256018899, -0.0200973228, 0.0146331107, -0.0188059285, -0.0217599925, -0.0402915, -0.0057144193, -0.0125991646, -0.00654979, -0.0135838529, -0.00984688103, -0.0199036133, 0.0106217172, 0.0216308534, 0.00130350108, -0.031106459, -0.00435038423, -0.0197583307, 0.0271515641, -0.0152545944, -0.0203233156, 0.0109445658, -0.00296213548, -0.00205109711, 0.0154240895, 0.0105329342, -0.0245364904, -0.000781394367, 0.0419057421, 0.00513732759, 0.00949981902, -0.027070852, -0.0079864664, 0.0257148873, 0.0119211832, 0.0246656295, -0.00212474703, -0.0146896094, 0.00707038352, -0.0273452718, 0.0132287191, -0.00344237266, 0.00817614, -0.00164249202, 0.0124135269, -0.00379750622, -0.0315745883, 0.027942542, 0.0118566127, -0.0174822491, 0.00685246056, 0.0112189874, 0.0059605916, -0.00832142122, 0.0157711525, 0.0023366164, 0.0091124, -0.0142618353, -0.0253113266, -0.0229383893, 0.00811964087, -0.024859339, -0.0400655046, -0.0271354206, -0.011323913, 0.000385904917, -0.0261668749, 0.00928189605, 0.0174499638, 0.0207914468, 0.0167074129, 0.00603726786, 0.0274905544, 0.00465305476, -0.0475555919, 0.0267964303, 0.0310096033, -0.0131237935, 0.00500818808, 0.000338486541, 0.0472973138, 0.0147703215, -0.0385804027, 0.0199520402, -0.00608973065, -0.0239553619, -0.0015637977, -0.000977121294, -0.00545210484, 0.0133094313, -0.00580320274, 0.0165621303, -0.0217599925, -0.00193810021, 0.0222926922, 0.00678385515, -0.00822860282, 0.0290079433, -0.00387821835, -0.00125709153, -0.0136161381, 0.022518687, -0.0169011224, -0.0153675908, -0.0359653272, -0.0116306189, -0.0237455107, -0.026812572, 0.00141851581, -0.0112432009, -0.0299280602, 0.0184185095, -0.0168365519, -0.00815596152, 0.00451988, -0.0267964303, -0.0243589226, 0.0359976143, -0.00529068056, 0.0130350105, -0.0376764275, 0.0278134029, -0.00348272873, -0.00121976214, 0.0163280647, -0.00303881196, -0.0542385578, 0.00895097572, 0.0109042097, -0.0389032513, -0.00826492254, -0.0219375584, -0.0309611764, 0.0371921547, 0.0139228441, 0.0126314498, 0.0266995747, 0.00856355764, 0.0130915092, -0.0085554868, -0.0292339362, 0.0287012365, -0.027070852, 0.01024237, 0.0085877711, 0.00818824675, 0.0129220132, 0.0410017669, -0.0160294306, -0.0136322798, -0.00667489367, 0.00731252, 0.0156016564, 0.00152747717, -0.00475798035, 0.00220545917, 0.0276681203, 0.0314454474, -0.00260094856, 0.0307028983, -0.00445934571, 0.00176356023, 0.00836177729, 0.00661435956, 0.00334350043, 0.0189673528, 0.0188866407, 0.0282653905, -5.50166733e-05, 0.0105571477, -0.0151254544, -0.0243104957, 0.0228415355, -0.00302670524, -0.0168526936, -0.00505258, -0.0203717444, -0.0400977917, -0.0231805257, -0.00741744554, -0.00224985089, 0.00228818902, 0.00526243122, -0.00882990751, 0.00269174972, 0.00812771264, 0.00486694183, -0.0229545329, 0.0335116796, -0.0159164332, -0.00881376583, 0.00325673469, 0.00496379659, 0.00820438843, -0.0242297836, -0.0141084818, 0.00325068133, 0.00639240118, -0.0429388583, -0.00824070908, -0.0414214693, -0.0460382029, 0.000508234254, 0.0235195179, -0.0243427809, 0.0141246244, -0.0227285381, -0.000923145097, 0.00322041428, 0.0274098422, 0.0100567322, -0.0147703215, -0.00167982141, -0.0253597535, 0.0141811231, -0.00434634881, 0.00664664479, -0.00529068056, 0.00424949406, 0.0102907978, -0.0333502553, -0.0116629042, -0.00138522207, 0.0279748272, -0.0366433114, 0.00437056227, 0.0130350105, -0.0055489596, 0.025940882, 0.00813981891, -0.0118162567, 0.0129381558, -0.0364818871, 0.0270869937, 0.00384593336, 0.0133094313, -0.0320104323, 0.00270587439, -0.00598480506, 0.0534637198, 0.0171916857, -0.00405780273, -0.0128574437, 8.95400262e-06, -0.0243427809, 0.0565953515, -0.0312517397, 0.0175952464, 0.0397749431, 0.00886219274, -0.0281685367, -0.0168204103, -0.050332088, -0.0210335832, 0.0299926307, 0.0205331687, 0.0207268763, -0.0124619538, -0.025989309, 0.0111302035, 0.0177082438, -0.0193224866, -0.0159002915, -0.0633106, -0.0323494263, -0.0203233156, -0.00120967312, 0.00310539943, -0.0128170876, -0.018999638, -0.000735993788, 0.00901554618, 0.021517856, 0.0334793963, -0.00511714956, -0.0309773181, -0.0178373829, 0.0207591616, 0.00614622934, -0.00177163142, 0.00836984906, -0.00481447903, 0.00618255, -0.00178373826, -0.0176275317, -0.0340605229, 0.0111544179, 0.0119615393, -0.0285398122, -0.0394198075, 0.019871328, 0.0105410051, 0.0410986207, -0.059920691, 0.00264937594, -0.0331888311, -0.0184185095, -0.000442151184, -0.0323494263, -0.0164249204, -0.0319135785, -0.0312033128, -0.0372890085, 0.025036905, 0.0134547139, 0.0115095507, 0.00597673375, 0.00267762528, -0.0153191639, -0.023729369, -0.0174338222, -0.00189572631, 0.0314615928, 0.0130027253, -0.0108315693, -0.0034908, 0.0108880671, 0.0148591045, -0.00301056285, -0.018095661, -0.0103634382, -0.00589198619, 0.038741827, -0.0144959, -0.00119554857, -0.014705752, -0.00755062047, -0.0551102497, -0.0215501413, -0.0122521026, 0.00665068, 0.00561756501, 0.00757887, 0.015270737, 0.0015426107, -0.00273815938, -0.00633590296, 0.00905590225, 0.0147622498, 0.0019643316, 0.0041526393, -0.0119615393, 0.0174015369, -0.00892676227, -0.00708652567, -0.0378701352, -0.0131641496, 6.29381293e-06, -0.0138502028, -0.0123731708, -0.007853291, 0.00970159937, 0.00995987747, -0.0171271153, -0.0159487184, 0.00685246056, 0.00414860388, -0.000771809835, -0.00159910927, -0.00232047401, -0.00671121432, 0.0192256309, -0.0304607619, 0.000879762287, -0.0101616578, -0.0239392202, 0.0154079469, 0.019177204, 0.00248996937, -0.00702599157, -0.0179988071, -0.00661435956, -0.0125749512, 0.023212811, 0.0220182706, -0.0257148873, 0.00388628943, -0.027199991, 0.00959667284, -0.00527453842, -0.00509697152, -0.0166751277, -0.0146008255, 0.00241127517, -0.0266350061, -0.0138986306, -0.0053108586, -0.00685246056, 0.0195484795, 0.00278658653, 0.0423254445, 0.00810349826, -0.00736901816, -0.0191610623, -0.00712284632, 0.0130915092, 0.0119453967, -0.0149640301, -0.0131641496, 0.00144373835, -0.00110272958, 0.00903976, -0.0088864062, 0.0117516872, -0.00227608229, 0.0577576049, -0.0146976802, 0.00279667554, -0.0162957814, -0.0142537635, 0.00343430159, 0.0216469951, 0.00195121591, 0.0255696047, -0.0288465191, 0.0235679448, 0.00846670289, -0.00609780196, -0.00145281851, -0.00551263895, 0.032413993, -0.013712992, 0.00451584393, 0.0122036757, 0.027764976, -0.0138017759, -0.0119857527, -0.00782100577, 0.00933032297, 0.0149156032, 0.0108315693, 0.0305899, -0.000175170557, -0.0273129884, -0.0112028448, 0.0050929361, 0.00920925476, 0.00909625832, 0.00454812916, 0.00142356032, 0.0373212919, 0.00984688103, 0.0334471092, 0.00135394617, -0.0249561928, -0.00499608135, -0.0115660494, -0.0152384518, -0.0085554868, -0.030283194, -0.00729637733, -0.0119534675, -0.0377732813, -0.00228213565, 0.0186283607, 0.00347465766, 0.00387014705, 0.0151093127, -0.0183539409, 0.00257068151, 0.024294354, 0.0092576826, -0.0149882445, 0.00950789, -0.00121774443, 0.000840919616, 0.00150225463, 0.0198874716, -0.0138905589, 0.0275551248, 0.012583022, 0.00739323208, -0.000291068136, -0.0115741203, -0.0177405272, 0.00913661439, 0.0103876526, -0.00210860465, 0.0143829035, 0.0105248624, 0.0119615393, 0.0119696101, -0.0324462801, 0.00797032379, -0.01422955, -0.00104824884, 0.0244880635, -0.0216469951, 0.0110979192, -0.000544806942, -0.00806717854, 0.00689281663, -0.00545210484, -0.0169172641, -0.0260054506, 0.01535952, -0.0271192789, -0.030154055, 0.0127444463, 0.00387216476, -0.0130511532, 0.00991145056, 0.0191933457, -0.00219335244, 0.00491133379, 0.0260377359, -0.00679192645, 0.00731252, -0.00154462853, 0.00769186672, -0.00880569406, 0.0161182135, 0.014883318, -0.00231643836, 0.00350088906, 0.015924504, -0.00100284826, 0.0171916857, 0.0255211778, 0.010847711, -0.00872498192, 0.0132206483, -0.00373293646, 0.00352510274, 0.0288142338, -0.00836984906, 0.0306706131, -0.00346456864, -0.0176275317, 0.0154079469, 0.0236970838, -0.00207833759, -0.0238907933, -0.000632581359, 0.0301701967, -0.00726005668, 0.0283622462, 0.0152223092, -0.0175145343, -0.00158296677, -0.0177889559, -0.0109607084, 0.00513732759, 0.00426563667, -0.00079854572, -0.0118323993, -0.00207228423, -0.0243266392, -0.0131722214, -0.0152223092, 0.000893382472, -0.0102746552, 0.00658611069, 0.0189834945, 0.00315988017, 0.0103553673, 0.000967536762, 0.00112492545, 0.00837792, 0.0380315594, -0.00707441894, -0.00881376583, -0.00505661545, 0.0107669989, -0.00811964087, 0.0139632, 0.0202910323, -0.00200367882, -0.0239230786, -0.0257633142, -0.00164854538, -0.0121956039, 0.0209367294, -0.0120018953, 0.0219698437, -0.0159810036, -0.00057255174, -0.000484777294, 0.00133376813, -0.00526243122, -0.0283138175, 0.0108638536, 0.0179342367, 0.0273937, -0.00349887111, 0.014447473, -0.021001298, 0.00611798, 0.0117920432, -0.0134789273, -0.0107669989, -0.00260498421, -0.0146169681, -0.00493151182, 0.0242620688, -0.0289756581, 0.00253032544, 0.00546421157, -0.00548438961, 0.0222119801, 0.0145523986, -0.00441898964, -0.00414456846, 0.0128735863, 0.00313566648, -0.00862812717, 0.00290160137, 0.00368047343, 0.0105490768, 0.000247054821, -0.0105087208, -0.00629554689, 0.0134143578, 0.0173369665, 0.00987109449, 0.0179665219, 0.0355133414, 0.0183862243, 0.0094836764, 0.0128251584, -0.0124780964, 0.00949174725, -0.0196291916, -0.0115014799, -0.00974195544, 0.0133497873, 0.00336973183, 0.00719548715, 0.00827299431, 0.00351299578, -0.00600901851, 0.0175791029, -0.00292177941, 0.0253436118, 0.00648925593, -0.025553463, -0.00425352948, -0.00258278847, -9.28820155e-05, 0.00833756384, 0.015448303, 0.00260901987, -0.00758290524, -0.0112028448, 0.01535952, 0.014794535, 0.0376118571, -0.00797435921, 0.0082568517, 0.00470551755, 7.86312812e-05, 0.00481851446, -0.0319135785, 0.0017908006, 0.0144555438, -0.00362195726, -0.0240683593, 0.0581127405, -0.0231320988, 0.0100325188, -0.00821246, -0.012405456, 0.0168526936, -0.0226639677, -0.0307674669, -0.0103715099, 0.0353842, -0.00511714956, -0.00189875311, -0.0265542939, -0.00912047178, -0.0220989827, -0.00211667572, -0.00659418153, 0.00952403247, -0.00761922589, 0.0200811792, -0.00173329317, 0.00470955344, 0.00617044279, 0.0139632, 0.0131560788, -0.00172723981, 0.00121370878, -0.0169011224, -0.010500649, 0.0175952464, 0.0154402321, -0.0308158938, -0.0115660494, 0.00782504212, -0.00299643818, -0.0179988071, -0.00852320157, -0.00430599274, 0.0198390428, 0.0291209389, -0.00159204693, -0.00628344, -0.0151093127, 0.0352227762, -0.0123005295, -0.0203394592, -0.0109445658, 0.0167235546, 0.0388063975, -0.00539560663, -0.0243266392, 0.0114853373, -0.00878955144, -0.00180996966, 0.022825392, 0.00190480647, -0.0175629612, 0.0021126403, 0.00518575497, -0.0466839, 0.00186243257, -0.00638836576, -0.00056296715, -0.0154805882, -0.0108234975, 0.00739323208, 0.00359169021, -0.00441495376, -0.00109163171, 0.00215501408, -0.0287980903, 0.00547228288, -0.00231240271, -0.00418896, -0.00650136266, -0.000393976137, -0.00375109655, -0.00667085825, 0.000757180736, -0.0361913219, 0.00443916768, 0.00960474461, 0.00166367891, 0.00283097825, 0.00180593412, 0.000250964309, -0.0129220132, -0.00799453724, -0.0168204103, -0.0150043862, -0.00424949406, 0.0164491329, 0.0335762501, -0.0124458121, -0.0300087724, 0.0284752417, -0.00684842514, 0.00815596152, 0.00539964205, -0.00656996807, 0.0227123965, -0.0117920432, 0.0109042097, 0.0143667608, 0.0235033743, 0.03071904, -0.0318974368, -0.0029742422, -0.000115771472, -0.00667892955, -0.0215501413, 0.00424545864, -0.0160859283, -0.0124135269, -0.014536256, -0.0206784494, 0.0325754173, -0.00182611216, -0.0122440318, -0.0073448047, 0.0373858623, -0.0108557828, -0.0148671763, 0.0428097174, 0.00933032297, 0.0119453967, -0.00167376793, -0.025424324, -0.00806717854, -0.0231320988, -0.0146734668, -0.00797032379, -0.00270587439, -0.00546824746, 0.0013105633, 0.00442706095, 0.0204847399, -0.0130511532, 0.00108255155, -0.0162796378, 0.0190157797, 0.011670975, -0.0413891859, -0.0189673528, 0.00374302547, 0.0100325188, 0.0026877143, -0.005205933, 0.00375715015, -0.0119131114, -0.0050848648, 0.00295608211, -0.00576284667, 0.00321436091, -0.00812771264, -0.0268771425, 0.0465224758, -0.00827299431, -0.0108315693, 0.0135596395, -0.0325915627, -0.0116951885, 0.00477008754, 0.0064771492, 0.0146896094, -0.013664565, 0.00531489449, -0.00449970178, 0.00924154, 0.000652254967, -0.00652154069, -0.011800115, 0.000170630505, 0.00596462702, 0.0253436118, -0.00853934418, 0.0133982152, -0.0123086013, 0.0117032602, -0.0194677673, 0.00443109637, -0.00173430203, -0.0195323378, 0.0141488379, 0.0094836764, -0.0112109156, -0.00567809911, -0.0145039717, 2.99675339e-05, -0.00440688292, -0.0101051601, 0.00770800933, 0.0125668803, -0.00964510068, 0.0125426659, 0.00156581553, 0.0035493162, -0.00159507361, 0.00822053105, -0.00933839474, 0.0167074129, -0.00928189605, 0.00343228364, 0.00352712045, -0.0175145343, -0.0110091353, 0.0069816, 0.0213241465, -0.0130027253, -0.00227608229, -0.00823667366, 0.0262475871, -0.010847711, -0.0034100879, 0.0106217172, 0.00847477466, 0.0117436163, 0.0149478884, 0.00931418, -0.0207430199, -0.0205977373, -0.00294195744, 0.00602919655, -0.0288142338, -0.000319569634, 0.00349483569, 0.0074497303, -0.0210981537, -0.00447952375, -0.00571845518, -0.00949981902, 0.0151012409, 0.0166751277, 0.0254888926, 0.00340807, -0.00300854491, -0.00510100694, 0.0075627272, 0.0282492489, -0.0244396348, -0.000849495234, 0.0114046251, 0.0136080664, 0.0085554868, -0.00392866321, -0.010064804, -0.0276519787, -0.0286528096, -0.0075021931, 0.00208439096, 0.017659815, 0.00581530947, -0.0220182706, 0.0159810036, -0.00608569523, 0.0087814806, -0.00437863357, -0.00047267045, 0.0106459307, -0.016658986, -0.00803085789, 0.00642468641, 0.0215339977, 0.000302418281, -0.0104764355, -0.0204524565, 0.0258924533, 0.00705424091, 0.012970441, -0.0164733473, -0.000278709107, -0.0169172641, -0.0135273542, 0.021953702, 0.00793803856, 0.00672735693, -0.0178050976, 0.00155976205, 0.0113965543, 0.00170907949, -0.00797839463, -0.00273614144, -0.00696142204, -0.00205109711, 0.00871691108, 0.00487501314, 0.0147541789, -0.00772415148, -0.00651346939, 0.0132852178, 0.00459252065, -0.0119373249, -0.0253920387, -0.0212918613, -0.0155370869, -0.00680806907, 0.00352106709, -0.00299442024, 0.0128170876, 0.0224541165, 0.0052583958, 0.00859584287, 0.00532700121, 0.0103311539, -0.0209044442, 0.010064804, -0.016182784, -0.026296014, 0.00494361855, -0.0239392202, -0.00254646805, -0.00210053334, 0.00020442871, 0.0149640301, 0.0103634382, -0.00313970214, -0.00270183873, -0.0108315693, -0.00697756419, 0.0146573242, 0.0140196988, 0.000676973083, 0.0123086013, 0.0234872326, 0.00929803867, -0.000324614142, -0.0254081804, -0.00247180928, 0.00126818952, -0.0275874082, 0.0059000575, 0.0181118045, -0.0056014224, 0.00288142334, 0.0187736433, 0.0256826021, -0.0153030213, 0.00371477613, 0.0144716864, 0.0186445042, -0.00254041445, 0.00129341206, -0.0125507377, -0.00178676494, -0.0141488379, -0.00581127405, 0.00995180663, -0.0151900249, 0.00603726786, -0.0257148873, 0.00700581353, -0.00274017709, 0.00954824593, -0.00128937641, -0.0247302, -0.00737708947, -0.0140681257, -0.0103230821, -0.00670717889, -0.0220344141, 0.000642165949, 0.0026291979, 0.0133820726, -0.0233580936, 0.0116386907, -0.0151335262, 0.0122440318, -0.0183539409, 0.00207833759, 0.000191439103, -0.00718741585, -0.0161504988, 0.00363809965, -0.00551667484, -0.00141649798, 0.00504450873, -0.0152465226, -0.0276196934, 0.000325875269, -0.000940800877, -0.000404317369, -0.00606955262, -0.00737708947, -0.00147097872, -0.0345125087, -0.0297343526, 0.0029802958, -0.000736498274, -0.00161827833, 0.00168385694, 0.00264735823, -0.00995987747, 0.00225388655, 0.00628747558, -0.028894946, 0.0112835569, -0.00250611198, -0.0131399361, 0.0258763116, 0.00831335, -0.0119373249, -0.00672735693, 0.0176759586, -0.0122117465, -0.00625519082, -0.002022848, 0.0266995747, 0.0189027824, 0.0208398737, 0.00751833571, 0.00188563729, 0.00128332304, -0.00684438925, -0.005205933, 0.0187736433, 0.000664361811, -0.00135293719, -0.00567002781, 0.0126879485, -0.00822860282, -0.0151900249, -0.00411430141, -0.0323494263, 0.0187736433, 0.0261668749, 0.00208237325, -0.000129265536, 0.0210174415, -0.0321072899, -0.0144071169, -0.000180971751, -0.0339959525, -0.00506872218, -0.0226155408, -0.00589602161, -0.0188220702, 0.00515347, 0.0103715099, 0.00828913692, -0.0033838565, -0.0230029598, 0.00462077, 0.0145281851, -0.0309934616, -0.0223895479, 0.0108880671, 0.00692913728, -0.0114691947, 0.0308804642, 0.00464094803, -0.0138017759, -0.00117738836, -0.00485887052, 0.0204524565, 0.0115741203, 0.0145120425, 0.0324301384, 0.013059224, -0.0152788078, 0.00980652496, -0.00190783315, 0.00769993803, 0.0095159607, -0.0178050976, 0.0131883631, -0.0102020139, -0.0150286006, 0.0100567322, -0.0143909743, 0.00893483404, 0.00476605166, 0.00105732901, -0.0158034358, 0.0122601734, 0.00956438854, -0.0107266428, 0.00685246056, -0.00767572457, -0.0159890745, 0.0108234975, 0.0138340602, -0.00261103758, -2.66097832e-05, 0.00891869143, 0.0102504417, 0.00142759597, -0.0198874716, -0.00156480656, -0.0153110931, 0.0195000526, 0.00746183703, -0.0144151878, 0.00258682412, 0.00856355764, 0.0204201713, -0.0011945396, -0.00569424126, 0.0218084194, 0.00117537053, -0.010847711, -0.000921631756, -0.00552878156, 0.00429388555, -0.00107548921, -0.00196534046, 0.028200822, 0.0174176786, 0.0130188679, 0.00527453842, 0.00220949482, -0.00744165899, 0.00935453642, 0.0013872399, -0.0148591045, -0.0158115085, 0.00456023589, -0.0223572627, 0.00709056156, 0.00805103593, -0.00389436074, 0.00226801098, 0.0123247439, -0.000326379697, 0.0230998136, -0.00394682353, 0.00262718019, -0.0128574437, 0.0109445658, 0.00198551849, -0.0235518012, -0.00117940607, 0.00928189605, 0.0188059285, 0.00594848441, 0.00534717925, 0.0360298976, 0.0192902014, 0.00146492536, 0.0106943585, 0.0241490714, 0.024859339, -0.01110599, 0.0116871176, 0.0149236741, -0.00738112489, -0.00518171908, 0.0182732288, -0.014665396, -0.0208075885, -0.0136807077, 0.0032910374, -0.0178535245, 0.0092576826, -0.0170464031, -0.0145443277, -0.000391453883, 0.00945139118, -0.00828106515, -0.0146976802, 0.00322243222, -0.0140681257, 0.00532296533, -0.00817210414, 0.00129139423, 0.00478219427, 0.0156097272, -0.000917596102, -0.030283194, 0.00214290735, -0.00879762322, 0.00133982149, 0.0110091353, 0.014883318, -0.00264534028, -0.0133820726, 0.00382373761, 0.00823667366, -0.00604533916, -0.00514943432, -0.0185153652, -0.0197744742, -0.0162877087, 0.0025767351, 0.00240925723, -0.0116629042, -0.00940296426, 0.0119696101, 0.00954017509, -7.0497008e-05, -0.00749008637, 0.00558528, -0.0157792233, -0.00571038388, 0.00203192816, 0.00473780232, -0.00853127334, -0.0115014799, -0.00302670524, 0.030848179, 0.0167235546, 0.00954017509, 0.00975809712, 0.0327691287, -0.00108961388, -0.0140196988, -0.0187252164, -0.0132932896, 0.012841301, 0.00980652496, -0.00583952339, 0.000891364703, 0.0191610623, -0.0120664649, 0.0114853373, -0.00721970061, -0.00813174807, 0.00125709153, 0.0102181565, -0.0244880635, -0.00747394422, 0.0174015369, 0.015052814, 0.0292662214, -0.00419299537, -0.00871691108, 0.0141326953, 0.00404973142, 0.00845863204, -0.0208883, 0.0129785119, 0.016271567, 0.00230634934, 0.00625519082, 0.00913661439, 0.0250853319, 0.011977681, 0.0293469336, 0.00146896089, 0.00920925476, 0.0289595146, 0.00688878121, -0.0168688372, -0.0037289008, 0.015270737, -0.00300047384, 0.00584759424, -0.0133820726, 0.0104037942, 0.0158034358, -0.0038741827, 0.00558124436, 0.00388023607, -0.00189471745, -0.0155048016, 0.00755062047, 0.0217922777, 0.0201780349, 0.017223971, -0.00435441965, 0.0110091353, 0.00396700157, 0.014665396, -0.0157872941, 0.000421468692, -0.00691703, -0.00801068, 0.00256261043, -0.00275631947, -0.00483465707, 0.00422931602, -0.00740130292, -0.014883318, 0.0286850948, -0.00654979, 0.0177728124, -0.00218931679, 0.013624209, -0.00597673375, 0.00164249202, -0.00418492453, 0.00266551832, -0.0015769134, -0.0162312109, 0.000574569509, -0.0128655145, 0.0160052162, 0.00782100577, -0.00416071061, -0.0176275317, -0.0139067015, 0.00250611198, -0.00689685205, 0.0303316209, -0.00109264057, 0.00890254881, 0.00156581553, -0.0110252779, 0.00826088712, 0.0327852704, -0.00254041445, 0.017530676, -0.00104623113, -0.00456427131, -0.00425756536, 0.015706582, 0.0124700256, -0.00092768512, 0.00785732642, 0.00125910935, 0.00412237225, 0.00631976034, 0.0004015429, 0.0149075324, -0.00683631795, -0.00448355917, -7.8946563e-05, 0.0191610623, -0.00972581282, -0.0164249204, 0.000793501211, 0.0149478884, -0.0285398122, -0.00186848606, -0.00564985, 0.000678486424, -0.00343026593, 0.0117032602, -0.0176436733, 0.0250691902, 0.00360783259, 0.00293993973, -0.00920925476, 0.00915275607, 0.0107750706, 0.00129845657, 0.0103230821, -0.00964510068, 0.000805608055, 0.0200327523, -0.0165056325, -0.0117678298, 0.0172885396, -0.0291370824, -0.00163643865, -0.00246777362, -0.0133013604, -0.0101374444, 0.00997602, 0.000991246, -0.00990338, -0.000284258072, -0.00970159937, 0.0209690128, -0.00767572457, -0.0210820101, -0.00482255034, -0.00593637768, -0.000713798, -0.00502836611, 0.000939791964, 0.00680403318, -0.00230634934, 0.00300249155, -0.0154644456, 0.0137694906, -0.00760711916, 0.0204040278, -0.00758290524, 0.00604533916, -0.00616640737, 0.00594444899, -0.00493554724, 0.000652254967, -0.00832949299, 0.0188704971, -0.0183700826, -0.000601305452, -0.0228899624, 0.0123973843, -0.00694124401, 0.0112916278, -0.0324785635, -0.00189774414, 0.0124135269, 0.00654171873, -0.0122521026, 0.00414860388, 0.0121148918, -0.0107347146, -0.000114258124, -0.0359976143, 0.0170948301, -0.0217115656, 0.0170786884, -0.0153353065, -0.0153998761, 0.00896711834, 0.00410421239, 7.11275716e-05, -0.00191186881, -0.00432213489, -0.0120987492, 0.012970441, 0.0306706131, 0.00169899047, -0.00423335144, 0.00661032414, 0.00162937632, -0.00397305517, 0.000987714739, -0.00944332, 0.00636818772, 0.0151658105, -0.00994373579, -0.0146008255, -0.0106540024, -0.0233096648, 0.0224218313, 0.00177364924, -0.000773827604, 0.000628041336, 0.0320911445, 0.0100083053, 0.000941305305, 0.00231845607, 0.00300854491, 0.00504450873, 0.00263525127, 0.0170141179, 0.00399726862, 0.016271567, -0.00891869143, -0.00757887, -0.00559335109, -0.0225671139, -0.00936260819, 0.0174499638, 0.0236970838, 0.0150447423, 0.0178858098, -0.00146391639, -0.0184185095, 0.00780486362, -0.00652557658, 0.00490326248, 0.000697655545, 0.0126718059, -0.00950789, 0.00735287601, -0.0149236741, -0.00548035419, -0.0170141179, -0.00148409442, 0.00600901851, 0.00594848441, -0.0115660494, 0.0211950075, 0.0239715055, 0.0091124, 0.0130995801, -0.0205815956, 0.00546824746, -0.0113884825, 0.0207914468, 0.000867151, -0.0293630753, 0.0196776185, 0.0119615393, -0.0134708555, 0.00845863204, -0.000675964169, -0.00275026611, -0.000116906485, -0.0184992217, -0.0274582691, -0.0209367294, 0.0104280086, -0.0230191015, 0.00889447797, 0.0025101474, 0.0149801727, 0.00186747708, -0.0213564318, -0.0250207633, -0.00263928692, -0.0171271153, 0.0120583931, -0.0117678298, -0.0118566127, -0.00371881179, 0.0188866407, 0.00193910918, 0.00795014575, 0.0162312109, -0.0254566092, 0.00267358962, 0.0155693712, -0.0185315069, 0.0180149488, -0.008091392, -0.0217761341, -0.0161020719, 0.00323655666, -0.0145201134, -0.00351703144, 0.00677174842, 0.00294195744, 0.000396750605, -0.000355890079, -0.000238605266, 0.0017191685, 0.00945139118, -0.00251418306, 0.00958053116, 0.0156016564, -0.00968545675, -0.000379094825, -1.05698218e-05, -0.0111786313, 0.00953210331, 0.0158922207, 0.0122440318, -0.00273815938, 0.0045037372, 1.70252167e-06, 0.0156097272, 0.00330314436, -0.00639643706, -0.00995180663, 0.00171210628, -0.00957245938, -0.00184124568, 0.000126491053, -0.0218084194, -0.00610587327, -0.00557317305, 0.00594848441, -0.00564985, -0.00437863357, -0.00517364824, -0.00357756554, 0.0110898474, -0.0111705596, -0.0157630797, -0.0167719815, -0.00696545746, 0.000799050147, -0.000308723917, 0.00493554724, -0.00931418, -0.0103957234, -0.00277649751, 0.0181440879, 0.0194516256, -0.0140600549, 0.0119534675, -0.00018273732, -0.023729369, -0.0153756626, 0.00393875223, 0.017918095, 0.0309934616, 0.000348827773, -0.00573056191, 0.00292379712, -0.0118646845, 0.0215985682, 0.00661032414, 0.00631572492, -0.01024237, 0.0116790468, 0.00125608267, 0.0134950699, -0.00109566725, 0.00872498192, -0.0184346531, 0.00477815839, 0.0154402321, 0.0050889, -0.0035553698, -0.00860391371, -0.0213402901, -3.83382649e-05, -0.00301258056, -0.00302670524, 0.00783311296, -0.00921732653, -0.00387821835, -0.00723987864, 0.00426160078, 0.00174237334, 0.0179019514, 0.0196614768, -0.0013317503, -0.00665471563, 0.00521803973, 0.00608569523, -0.00352106709, 0.00112694327, -0.00179988064, 0.00415667519, -0.0235195179, -0.0041647465, 0.0101616578, 0.000886824622, 0.00978231151, -0.00547631877, -0.00528664514, -0.00721566519, -0.0051453989, 0.0190642066, -0.00520996843, 0.0289918, -0.0106136464, 0.0222442653, 0.000843441871, -0.00208035531, -0.0177082438, -0.010629789, -0.011800115, -0.00958053116, -0.00995180663, 0.0349322148, 0.00609780196, 0.00630765362, 0.00206623063, -0.0172401126, 0.00404166, 0.0102100857, -0.00285115629, 0.00423335144, -0.00506872218, 0.0186283607, 0.00736094685, -0.00663050218, -0.00601709, 0.0085554868, 0.00849091727, 0.00623501278, 0.00608973065, 0.016965691, -0.0099921627, 6.10070274e-05, -0.00776854344, 0.0104441503, -0.00832949299, -0.0109526375, 0.00253637903, -0.0028269426, -0.0160536449, 0.0112997, -0.000144020727, -0.0133578591, 0.000428783242, 0.000666379579, 0.0156339407, -0.035448771, 0.0041647465, -0.0021913345, -0.00069059321, -0.00891869143, -0.00644082855, -0.0107831415, -0.0121875331, -0.00769993803, -0.00376118557, 0.00325875264, -0.0153353065, 0.0104925781, 0.00758290524, -0.0122117465, 0.0467807539, 0.021695422, 0.0256018899, 0.00590812834, 0.000165838224, -0.014883318, -0.0105732903, 0.00239513279, 0.0174015369, 0.00108557823, -0.00326682371, -0.009588602, -0.00759904785, -0.00708652567, -0.010500649, -0.0203233156, 0.00148207659, 0.00510100694, 0.00184528122, -0.0116306189, 0.0264090113, -0.00900747441, 0.0068282471, 0.0030065272, -0.00906397309, 0.033931382, 0.00690088794, 0.00242741755, -0.0151738822, -0.0137856333, -0.00969352759, -0.0167074129, 0.00350492471, 0.00438266899, 0.00478219427, 0.00975002628, -0.011412696, 0.00927382428, 0.00841827597, 0.0053713927, -0.00648118462, -0.00852320157, -0.0352550633, -0.00284510292, 0.010847711, -0.0171916857, 0.0467807539, 0.001714124, -0.0155613, -0.03071904, 0.00263525127, 0.000835370622, 0.000253486563, 0.00912854262, 0.000492848514, -0.00705020549, 0.0215501413, 0.00290361908, -0.00817210414, -0.00727216387, -0.00957245938, -0.0115095507, 0.0225025434, 0.0110091353, 0.00952403247, 0.0142860487, -0.00972581282, 0.00359169021, -0.0434877, -0.0129623692, 0.00456830719, 0.0035230848, -0.00318611157, -0.0132852178, 0.0060130544, 0.0098872371, 0.00195424259, 0.0143990451, 0.00997602, -0.0100405896, -0.0127686607, 0.0113481265, -0.00365020637, -0.0281039663, 0.0108961388, -0.00201679463, -0.021953702, 0.000405074039, 0.023906935, -0.00970967, -0.00829720777, -0.000351097813, -0.0192417745, -0.00385804032, -0.0174822491, -0.00609780196, -0.0125345951, 0.00732462667, -0.0108638536, -0.0185637921, 0.0106459307, 0.0126072364, 0.00515347, -0.0137856333, 0.00684438925, -0.011582192, -0.00754658505, -0.00709459698, -6.74703042e-05, -0.00213483605, 0.00156177988, -0.00487097772, 0.00946753379, -0.0036098503, 0.0125345951, 0.0145846838, 0.0100405896, 0.00933839474, -0.0112189874, 0.000641157036, 0.00142456929, -0.00288545899, 0.0137937041, 0.00122783345, 0.00539157074, -0.0199843254, 0.0062309769, 0.00816403236, -0.00689281663, -0.023729369, 0.00540771335, -0.0187736433, -0.00101949519, 0.00125608267, -0.00965317152, -0.00769186672, -0.00558931567, 0.0171755422, 0.0138986306, -0.00120563759, 0.0148510337, -0.00899133179, 0.00032738861, 0.010670145, 0.00784925558, 0.00205412391, -0.0108073549, 0.0120422514, -0.00376320351, 0.0115256933, 0.0371275842, -0.000531691185, 0.00531489449, 0.0154321613, -0.00271394569, 0.00736498274, 0.00728830602, -0.0150205288, -0.00180896081, -0.00740130292, -0.011065634, 0.00795418117, -0.00583548751, -0.0135677103, -0.00758290524, -0.00945946295, 0.030541474, 0.0128897289, 0.00227204664, -0.0152868787, 0.00435441965, 0.0147703215, 0.00841827597, -0.0138098467, -0.0173208248, 0.0004015429, -0.0279909689, 0.0133659299, 0.0079138251, -0.0196130499, 0.00603726786, -0.0153030213, 0.0181602314, -0.00649732724, 0.0130430814, -0.0276681203, 0.00544806942, 0.00852320157, 0.00296011777, -0.0251499023, -0.00177264039, 0.00647311332, 0.0202426035, -0.00583952339, 0.00114712131, -0.00246979133, -0.00904783048, -0.0149963154, -0.00149317458, 0.0204685982, 0.0130350105, 0.0138421319, -0.0118162567, 0.00968545675, 0.00182913884, 0.00139732892, -0.00685246056, 0.0162069965, -0.0066950717, -0.00379548827, 0.0130027253, 0.00320830755, 0.00727216387, -0.0208560172, 0.000620474573, -0.00222967286, -0.0309611764, -0.0080792848, 0.0118243285, 0.00752640702, 0.0112512717, 0.00171513297, -0.000189673519, 0.000649732712, 0.0046288413, 0.00375311449, 0.00805507135, 0.00104724, -0.00634800969, -0.0091850413, -0.0128816571, -0.0118808271, 0.0185960773, 0.00139934674, 0.00899133179, 0.00784522, -0.0102020139, -0.0170302615, 0.00892676227, 0.00762326131, -0.00532296533, 0.0099195214, -0.00324462797, 0.00866041239, -0.0123328147, -0.0120099662, -0.00522207515, 0.00634800969, -0.00535121467, 0.000641661522, 0.0165621303, 0.00555299502, 0.0099195214, -0.0200488959, 0.0063641523, -0.00152243266, -0.00654979, 0.00922539737, 0.0125265243, -0.00537542859, -0.00487501314, -0.00189673528, -0.00445127441, 0.0110898474, -0.0096612433, 0.0104925781, 0.0116064055, 0.0100002335, 0.00967738498, -5.36294319e-05, -0.0120503223, 0.00884605, 0.00230433163, -0.0047418382, -0.0109284231, 0.0165217742, 0.00764747523, 0.0145281851, 0.0114772664, -0.0060655172, -0.00395085895, -0.00752237113, -0.0109687792, -0.00290967268, -0.0245042052, -0.00478622969, -0.00765554653, 0.0159487184, -0.0027159634, 0.0179503802, -0.00371074048, -0.0146573242, 0.0163038522, -0.00528260926, 0.0122440318, 0.0124135269, -0.0126314498, -0.00952403247, 0.012453883, 0.0205815956, 0.00379347056, -0.00838599075, -0.0038136486, -0.00286326301, -0.00359370792, 9.37648074e-05, -0.0212272927, 0.0208075885, 0.0278295446, -0.0078411838, -0.00622290606, -0.0107427854, -0.00615833607, 0.00524628907, -0.00245364895, 0.0159406476, 0.00289151235, -0.0142456926, 0.011065634, 0.00829720777, 0.00287537, 0.00439477572, 0.00548035419, -0.007853291, -0.0177728124, 0.0309934616, -0.00741744554, 0.0120987492, -0.00252629, -0.00345851504, 0.026683433, -0.0137775624, -0.00363608194, 0.0278941151, -0.0132287191, -0.0056619565, 0.00015120914, 0.0160375014, 0.0150608849, 0.0036683667, 0.0116951885, -0.0264574382, -0.0054238555, -0.0247947685, 0.00492747594, 0.00835370645, -0.0106782159, -0.0322364271, 0.00562563585, -0.0252306145, 0.0113319838, -0.0105410051, -0.0144232595, -0.011323913, -0.00269174972, -0.00611394458, -0.0150043862, 0.00931418, -0.0109364949, 0.0075748344, 0.0171432588, 0.0178535245, -0.0165944155, 0.00276237284, 0.00775643671, -0.00206017727, -0.0148106776, 0.00708249025, 0.000761216332, -0.0182893705, 0.00533103663, 0.000165081539, -0.00410623, -0.0235033743, -0.00607762393, -0.00126718055, -0.020436313, 0.00504854415, -0.023906935, 0.00467726821, -0.0120018953, -0.00677174842, -0.0119373249, 0.0108234975, -0.0195969064, 0.00518171908, 0.0173692517, 0.0022781, -0.017530676, -0.00943524856, 0.000483768381, -0.00417685322, -0.00463691214, 0.0073448047, 0.0185799338, 0.0164168496, -0.0138744162, 0.00730848406, -0.0060130544, -0.00408403436, -0.0275874082, -0.00790979, -0.0183700826, 0.00195121591, -0.0122278892, -1.69463965e-05, -0.00572652603, -0.0136968503, 0.00366634899, 0.00989530794, 0.0141488379, -0.0309127495, 0.0356424786, -0.0223895479, -0.00345246168, 0.000122014055, 0.0275551248, -0.0102907978, 0.00884605, -0.0107105011, -0.00240118615, 0.0378378518, -0.0118808271, -0.0125588086, 0.000992759247, 0.00887026358, 0.0158276502, -0.00726812799, 0.0237132255, -0.0161101427, -0.0115983346, -0.0134627847, 0.000385652675, 0.0263767261, 0.0129220132, -0.00492344052, -0.00519382628, 0.0219698437, -0.0017746581, -0.00416878192, 0.0021913345, 0.0883959308, -0.0237132255, 0.0112432009, -0.0181440879, 0.0218568463, -0.026683433, -0.00721566519, 0.051849477, -0.0139470575, 0.0057224906, -0.011929254, 0.00387014705, -0.00311548845, 0.00790575426, 0.00374100753, -0.0121713905, -0.0100567322, -0.0142537635, 0.00289756572, -0.00643275725, -0.00928189605, -0.0103311539, 0.0078411838, 0.00471762428, -0.0191287771, -0.009588602, -0.00537946401, -0.000473931577, -0.000819732668, 0.0116790468, 0.00082275935, 0.02334195, -5.10125938e-05, -0.0164249204, -0.0297504943, 0.0226155408, 0.00816806871, 0.00710266829, 0.0181279462, -0.00392462779, 0.00627940428, 0.00111382746, 0.0123812417, -0.0120583931, 0.0156742968, -0.015141597, 0.00996794924, -0.0116790468, 0.0165782738, 0.00299240253, 0.0140923392, -0.0140600549, -0.00259893085, -0.0229222476, 0.0147218937, -0.0155451577, 0.00866041239, -0.0151980957, -0.00353115611, -0.00812771264, -0.00496379659, 0.0238423664, 0.016311923, -0.00823263824, -0.00973388366, -0.024988478, -0.00499608135, -0.00563370716, -0.019742189, 0.010064804, -0.00698967138, -0.0306221861, -0.0108880671, -0.013406286, 0.0127040902, -0.00303477631, -0.0203556, 0.00766765326, 0.00515750563, -0.0239553619, -0.0104037942, 0.00364818866, -0.020129608, -0.0199520402, 0.0110817766, 0.00352913816, -0.0367078818, -0.0134869982, -0.0118808271, -0.00818421, -0.00528260926, 0.0126072364, -0.0175468195, 0.000472922693, 0.00541578466, 0.0153433774, 0.0137694906, 0.0162877087, 0.0239553619, -0.00183317449, -0.00123893132, -0.00369863375, -0.00684842514, -0.021566283, 0.000861602079, -0.00209448, -0.000474436034, 0.0247302, 0.0182086583, 0.0270869937, -0.0127767315, 0.00162534066, 0.0249077659, 0.0184185095, 0.00242539984, -0.00425352948, 0.0368693061, -0.00581934536, 0.0102746552, 0.00365424203, 0.00764343934, -0.00127020723, -0.0120018953, 0.00464498345, -0.00947560463, 0.00993566401, 0.00660225283, 0.0174176786, 0.00213080039, 0.00404166, -0.00426967209, -0.0165459886, 0.0159729328, 0.00624308409, 0.00425352948, 0.0274259839, -0.0119534675, 0.000776349858, -0.000328649738, 0.00139228441, 0.000259539956, 0.00618255, 0.00491133379, 0.00312355976, 0.00880569406, -0.0130350105, 0.00995180663, 0.0119615393, 0.00995987747, 0.00933032297, 0.0162392817, 0.0100890175, -0.00603323244, -0.00539157074, 0.0104683647, 0.00867655501, 0.00716320239, 0.00344842602, 0.00318611157, -0.0016455187, 0.00458041392, -0.00533910794, 0.0139389867, -0.000884302368, 0.00773222279, -0.0100567322, 0.0046288413, -0.00090649823, 0.0268771425, 0.0103553673, -0.00339192757, -0.0160697866, -0.00428177882, 0.0125265243, -0.0130350105, 0.0186767895, 0.00558124436, 0.00819631759, 0.0199036133, -0.0168365519, -0.0059605916, 0.0127928741, -0.0126072364, 0.0330274068, -0.00984688103, 0.0143425474, 0.00510907825, 0.00597269833, 0.0167719815, -0.00753044244, -0.0252306145, 0.0143909743, -0.0229222476, -0.00567809911, -0.00997602, 0.0112593435, 0.00826492254, 0.0164329913, -0.0195161942, -0.00178979163, 0.0141326953, 0.00826088712, -0.00317602255, 0.0122763161, -0.00104522216, 0.0151093127, 0.00122379779, -0.00652154069, -6.16060643e-05, 0.00339798094, 0.00713495305]
|
21 Oct, 2024
|
Difference between SE Ranking and SEMrush
21 Oct, 2024
In the digital marketing realm, SE Ranking and SEMrush stand out as two prominent tools, each offering many features to enhance online visibility and drive organic traffic. Understanding the nuances and distinctions between these platforms is crucial for businesses seeking to optimize their digital marketing strategies effectively.Difference between SE Ranking and SEMrushSE RankingSE Ranking is a comprehensive SEO (Search Engine Optimization) platform designed to assist businesses in enhancing their online visibility and improving their search engine rankings. It offers a variety of tools and features tailored to meet the needs of businesses of all sizes, from small startups to large enterprises. SE Ranking provides functionalities such as keyword research, rank tracking, backlink analysis, technical SEO audits, competitor analysis, content marketing, and more. With its user-friendly interface and customizable reports, SE Ranking empowers users to make data-driven decisions to optimize their digital marketing strategies and achieve better results in search engine results pages (SERPs).SEMrushSEMrush is a comprehensive digital marketing platform that provides a wide range of tools and features to help businesses improve their online visibility and digital marketing strategies. It offers solutions for SEO (Search Engine Optimization), PPC (Pay-Per-Click) advertising, content marketing, social media management, and market research. SEMrush's robust toolkit includes functionalities such as keyword research, rank tracking, backlink analysis, technical SEO audits, competitive analysis, content optimization, PPC campaign management, social media monitoring, and market trend analysis. With its extensive database, advanced analytics, and user-friendly interface, SEMrush empowers businesses to optimize their digital marketing efforts, gain insights into their competitors' strategies, and achieve better results across various online channels.Difference between SE Ranking and SEMrushParameterSE Ranking SEMrushIntroduction SE Ranking offers a comprehensive SEO platform with tools for improving online visibility.SEMrush provides a comprehensive digital marketing platform catering to SEO, PPC, content, and more.Overview Focuses primarily on SEO solutions, offering features like keyword research, rank tracking, and backlink analysis. Offers a broader range of features including SEO, PPC, content marketing, social media management, and market research.Keyword Research Provides solid keyword research tools with suggestions, volume analysis, and competitor analysis. Offers comprehensive keyword research with trends, related keywords, difficulty scores, and SERP analysis.Backlink Analysis Offers backlink monitoring, analysis for link-building efforts, and spam detection. Provides advanced backlink analysis with historical data, gap analysis, and competitor insights.Technical SEO Analysis Provides tools for technical SEO audits identifying on-page and off-page issues. Offers comprehensive site audit covering technical factors like site speed, mobile-friendliness, and crawlability.Rank Tracking Allows users to monitor website's search engine rankings for specific keywords over time. Provides detailed reports and visualizations to track keyword movements and identify trends.Competitive Analysis Users can conduct competitive analysis to benchmark their performance against competitors. Offers advanced competitive analysis tools to identify competitor strategies and market opportunities.Content Marketing Provides tools for content optimization, performance tracking, and gap analysis. Offers robust content marketing features including content audit, topic research, and optimization recommendations.Pricing and Plans Offers budget-friendly plans suitable for small to medium-sized businesses. Provides multiple pricing tiers catering to businesses of all sizes, including enterprise-level organizations.User Interface and Ease of Use Boasts an intuitive and user-friendly interface accessible to users with varying levels of expertise. Features a well-designed interface with a wealth of features, but may have a steeper learning curve for novice users.Customer Support and Training Provides responsive support via email, live chat, and phone, with extensive documentation and training resources. Offers comprehensive support including dedicated account managers, a knowledge base, and online courses.Use Cases and Recommendations Ideal for businesses focusing primarily on SEO strategies. Suitable for businesses looking for comprehensive digital marketing solutions beyond just SEO.ConclusionSE Ranking is a solid choice for businesses seeking robust SEO tools at a budget-friendly price. SEMrush is suitable for businesses requiring a wide range of digital marketing solutions including SEO, PPC, and content marketing.Head-to-Head Features: SE Ranking vs. SEMrushKeyword ResearchSE Ranking: Offers a good selection of tools, but the keyword database is smaller (around 7 billion keywords) compared to SEMrush. It provides essential metrics like search volume and difficulty score.SEMrush: Boasts a massive keyword database (over 25 billion keywords) giving you more options. It offers advanced features like competitor research and search intent analysis to help you find the most profitable keywords.Rank TrackingSE Ranking: Tracks rankings across various search engines (including local searches) and for both mobile and desktop. It prides itself on accurate data and offers detailed reports.SEMrush: Provides rank tracking with a nice interface, but the database might not be as extensive as SE Ranking for specific locations. It offers competitor tracking alongside rank tracking.Making your website shine (On-page Optimization)SE Ranking: Offers website audit tools that analyze hundreds of ranking factors and compare your on-page SEO to competitors. It includes an AI-powered content editor to help you optimize your content.SEMrush: Provides on-page SEO checker tools that analyze your landing pages and suggest improvements based on competitor analysis and technical SEO insights. It offers similar content optimization features but may lack the specific AI-powered functionalities of SE Ranking.BacklinksSE Ranking: Offers backlink analysis tools that provide essential information like link source and anchor text. It may lack the depth of data compared to SEMrush.SEMrush: Provides a comprehensive backlink analysis suite. You'll get detailed information on backlinks, including domain authority and link-building opportunities. It allows you to compare your backlink profile to competitors for a strategic edge.ConclusionIn conclusion, while both SE Ranking and SEMrush are powerful digital marketing platforms, they cater to different needs and preferences within the realm of online marketing. SE Ranking stands out for its focus on providing comprehensive SEO solutions, making it an ideal choice for businesses primarily focused on improving their search engine visibility. With its budget-friendly pricing plans and user-friendly interface, SE Ranking is well-suited for small to medium-sized businesses looking for robust SEO tools at an affordable price.On the other hand, SEMrush offers a broader range of features encompassing not only SEO but also PPC advertising, content marketing, social media management, and market research. It caters to businesses seeking comprehensive digital marketing solutions beyond just SEO, making it suitable for larger enterprises and agencies with diverse marketing needs.Ultimately, the choice between SE Ranking and SEMrush depends on the specific goals, budget, and preferences of each business. Whether focusing primarily on SEO or seeking a more comprehensive digital marketing toolkit, businesses can leverage the strengths of either platform to enhance their online presence and drive success in the competitive digital landscape.Difference between SE Ranking and SEMrush - FAQ'sWhich platform is better for small businesses on a tight budget: SE Ranking or SEMrush?SE Ranking is generally more budget-friendly compared to SEMrush, making it a suitable choice for small businesses with limited financial resources. However, SEMrush offers a broader range of features and capabilities, which may be beneficial for businesses willing to invest in a more comprehensive digital marketing platform.Does SE Ranking offer features beyond SEO?SE Ranking primarily focuses on providing SEO solutions, offering features such as keyword research, rank tracking, backlink analysis, and technical SEO audits. While it may not offer as many features as SEMrush, it provides a robust toolkit tailored to meet the needs of businesses focused on improving their search engine visibility.Can SEMrush help with PPC advertising campaigns?Yes, SEMrush offers comprehensive PPC advertising tools for managing ad campaigns, conducting keyword research, analyzing ad performance, and optimizing ad spend. These features make it a valuable asset for businesses looking to enhance their PPC advertising strategies alongside SEO efforts.Which platform has a steeper learning curve for new users: SE Ranking or SEMrush?While both platforms offer user-friendly interfaces, SEMrush may have a slightly steeper learning curve for novice users due to its extensive range of features and capabilities. However, both platforms provide documentation, tutorials, and customer support to assist users in navigating the platforms effectively.Can SE Ranking and SEMrush be used together?Yes, SE Ranking and SEMrush can complement each other effectively, especially for businesses seeking a comprehensive digital marketing strategy. Businesses can leverage the strengths of each platform to optimize different aspects of their online presence, such as SEO, PPC advertising, content marketing, and social media management.
Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?/How to design datalists for mobiles using jQuery EasyUI Mobile ?/How to design menu using jQuery EasyUI Mobile ?/EasyUI jQuery menu widget/EasyUI jQuery datebox widget/How to make use of multi-mode jtsage-datebox plugin?/Step by step guide to make your first WordPress Plugin/Explain MonsterInsight Plugin in WordPress/How to Setup All In One SEO(AIOSEO) Plugin for WordPress?/WordPress SEO: Step-by-Step Guide, Benefits and Plugin/Difference Between Black Hat SEO and White Hat SEO/White Label Local SEO Services : A Complete Guide/SEO Checker | Complete SEO Audit in 9 Steps/Semrush Backlink Checker/Basics of SEMrush/Ubersuggest vs SEMrush: Which one is Better?/Semrush Vs SpyFu | Which Is the Best Tool In 2024?/Semrush in 2024: Exploring the Pros and Cons/Difference between SE Ranking and SEMrush
|
https://www.geeksforgeeks.org/difference-between-se-ranking-and-semrush?ref=asr8
|
CSS
|
Difference between SE Ranking and SEMrush
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Difference between SE Ranking and SEMrush, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, WordPress SEO: Step-by-Step Guide, Benefits and Plugin, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, How to design menu using jQuery EasyUI Mobile ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, Step by step guide to make your first WordPress Plugin, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Basics of SEMrush, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, EasyUI jQuery datebox widget, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Ubersuggest vs SEMrush: Which one is Better?, Onsen UI Fab CSS Components, Semrush Vs SpyFu | Which Is the Best Tool In 2024?, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, Explain MonsterInsight Plugin in WordPress, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, EasyUI jQuery menu widget, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, How to make use of multi-mode jtsage-datebox plugin?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to Setup All In One SEO(AIOSEO) Plugin for WordPress?, SEO Checker | Complete SEO Audit in 9 Steps, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Semrush Backlink Checker, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, White Label Local SEO Services : A Complete Guide, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Semrush in 2024: Exploring the Pros and Cons, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, How to design datalists for mobiles using jQuery EasyUI Mobile ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Difference Between Black Hat SEO and White Hat SEO, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.0458632112, -0.0273283664, -0.0233791806, -8.30974532e-05, 0.028249843, -0.0139142983, 0.000314083678, -0.00182649842, -0.0576054603, 0.00838543847, 0.0090831276, -0.0275389906, -0.00626933249, -0.0571315549, -0.00368261593, -0.00394589501, 0.0138616422, -0.00574935647, 0.0299611576, -0.0104850885, 0.0240110494, -0.0262094308, -0.0232475419, -0.0277496129, -0.0336207375, 0.0120121073, 0.00178865215, 0.016520761, -0.0183768775, 0.0365168042, 0.0166655648, -0.00537089305, 0.022655163, -0.015730923, -0.0301454533, -0.00745737925, 0.0376489051, -0.00543342158, -0.002251036, 0.0444415063, -0.0235108193, 0.0186138302, 0.00954386592, -0.00514710555, -0.0233923439, -0.0179819595, -0.0105179986, -0.0525505021, 0.0235371478, -0.0205620937, 0.00561442599, 0.0361482166, 0.0212597847, 0.0103797773, 0.0284867939, 0.0143092172, 0.0362798534, -0.0296188947, -0.0196274538, 0.0271177441, 0.027854925, 0.0293556154, -0.0203909632, -0.0323833227, -0.0271704, 0.00123658881, -0.0270914156, -0.0527874529, -0.0045284, 0.002251036, -0.0217336863, 0.0165602528, 0.0354373604, -0.0348844752, -0.00912261941, 0.013506216, 0.0232607052, -0.00519317947, -0.0141117573, 0.0462844595, 0.0272757113, 0.0335417539, -0.00171625032, 0.0116830086, 0.0533403382, -0.0509445, -0.0159152187, -0.0592904426, 0.0137168393, 0.00702955108, -0.0128151085, -0.0309879463, 0.015336005, -0.0160863511, -0.00215559732, 0.00822088867, -0.00704271486, 0.0167445485, -0.00731257582, 0.0272493828, 0.00923451316, 0.00239583943, 0.0127624525, -0.0184426978, 0.0226946548, 0.0152833499, -0.0200487, -0.00194168312, -0.00263772719, 0.0059961807, 0.000389365043, -0.0188112892, -0.0276706293, 0.0119331237, -0.0381754637, 0.00968867, -0.00310504739, -0.0434147157, 0.0330678485, -0.00847758539, -0.0462054759, -6.62311359e-05, -0.0189692564, 0.03067201, -0.0265911855, 0.0348581485, -0.00619363971, 0.00858947914, 0.064556025, -0.00207332266, 0.0260382984, 0.0382544473, 0.0139537901, 0.00506154, -0.0126505587, 0.0186928138, 0.0335417539, -0.00650628377, -0.00923451316, -0.0329098813, -0.00720068254, -0.0126110669, -0.0125123374, -0.0140327737, -0.00624300493, -0.0129401656, -0.00781938806, 0.0665042922, -0.0278812516, 0.000503932592, 0.0120515991, -0.0434673727, 0.0219311453, -0.0172974337, -0.0106562199, -0.0165865812, -0.0216547027, -0.0258934963, -0.012591321, 0.0257881843, 0.0189560931, -0.021470407, -0.0151253818, 0.0451523587, 0.00788520742, 0.0165470894, 0.0301191248, -0.0180872716, -0.0388336629, 0.0412821583, -0.02740735, -0.0138221504, -0.0211676359, -0.0364904776, -0.0132626826, -0.00428815791, 0.0330678485, -0.0410715342, -0.000628578768, 0.0120515991, -0.0328045711, -0.00804975722, -0.0332258157, -0.00124728458, 0.0172842704, -0.000619528524, 0.03996576, 0.0249720197, -0.0101362439, 0.00975448918, -0.0394655317, -0.00156321947, 0.0517606623, 0.0330151953, 0.0172579419, 0.00997827668, -0.0326992609, 0.053972207, 0.0240242146, -0.0218126699, -0.0338050313, -0.0253801011, 0.00234647468, 0.0149542503, 0.0232607052, -0.0426248796, 0.0256170519, 0.00778647838, -0.0218126699, 0.00104488875, -0.0531033874, 0.035569, -0.012018689, 0.0122227306, -0.014098594, 0.0190745685, 0.000775027729, -0.0134601416, -0.00126538496, 0.00512406882, -0.0245507732, -0.0110840481, 0.0254459213, 0.0179029759, -0.0458632112, 0.0416244194, 0.00419271924, -0.00794444606, 0.0312512256, 0.00671690702, 0.0151517102, 0.0170868114, -0.0206674058, -0.0124925915, -0.0120450174, 0.0167313851, 0.00140278379, -0.0181794185, -0.042098321, 0.0262357593, -0.000632692478, 0.0176265333, -0.0143750366, -0.00162328, 0.00322187762, -0.0243269857, 0.0515237115, 0.0183242224, -0.000583327666, 0.0157440882, -0.0124070253, -0.0138484789, -0.0367800854, 0.0079247, -0.03156716, -0.00437701447, 0.0695583299, -0.01761337, 0.00718751829, -0.0199565534, 0.043888621, -0.00537089305, 0.0160863511, 0.0210886523, 0.0045284, 0.04086091, 0.011676426, -0.00453169085, -0.000464029348, -0.0149542503, -0.0128940921, -0.03996576, -0.0179161392, 0.0126308128, -0.0514710546, -0.00741130533, 0.0515500419, -0.013506216, 0.0129533298, 0.0183900427, -0.00433423137, -0.0523662046, 0.0345422141, 0.0287237447, -0.0216810312, -0.00421904679, 0.0114723854, -0.00303758215, -0.013901134, 0.0258803312, -0.0202724878, -0.00537089305, 0.0331994891, 0.0165997446, 0.0374909379, -0.00389323919, 0.00366616086, 0.00534785585, -0.000456213253, 0.0157572515, 0.000724017387, 0.0205752589, 0.0334627703, -0.0102547193, -0.0207990464, 0.0312248971, 0.013506216, 0.0061771851, -0.0119331237, -0.0147699555, 0.0369380526, -0.00301125436, 0.0258671679, 0.0314355195, -0.00410057139, 0.0326729305, 0.0440729149, -0.0119791972, -0.0220627859, -0.00556835206, 0.000444283418, -0.0182584021, -0.019140387, 0.0269202832, 0.00787862577, -0.0436516665, -0.0358849354, -0.00893174205, 0.0252616256, 0.00343250064, -0.0143355448, -0.0130849695, -0.0231948849, 0.00402487861, 0.0420456678, -0.0436779968, -0.0054202578, 0.00607187347, 0.00143487088, 0.000933817937, -0.0104324324, 0.030277092, -0.0245771, 0.051839646, 0.0412031747, 0.00541696651, -0.0051767244, 0.0262357593, 0.00252254261, 0.0116303526, 0.000992232934, -0.0284341387, 0.0188639443, 0.00895148795, -0.00111646776, -0.042993471, 0.0154676447, -0.0324623063, 0.00834594667, -0.0102942111, 0.0104850885, -0.0500493497, -0.0234186724, 0.0296188947, -0.0368327424, 0.0178503208, -0.00403146073, 0.035911262, 0.0193378478, 0.00563088106, -0.017363254, -0.00274139317, 0.0405713022, -0.0284604672, -0.0474165604, 0.0366484448, 0.0165075976, 0.0109326625, -0.00972816162, 0.0358849354, 0.0106628016, 0.0315934867, 0.022852622, 0.052234564, 0.0109392451, 0.00146037608, 0.0333048, 0.00162903918, -0.0129006738, -0.0176396966, -0.0241953451, 0.00769433053, -0.0196274538, -0.00103830674, -0.036358837, -0.00780622428, -0.00975448918, 0.00933982432, 0.0293819439, -0.0174685661, 0.0104521783, 0.011353909, -0.0163101386, 0.018850781, -0.0138879707, -0.00658197654, 0.0137431668, -0.0508918427, -0.0249062, 0.0043408135, -0.0204436183, -0.0218784902, -0.041255828, 0.0246297568, 0.0280655473, 0.0400447436, -0.0200750288, 0.0259988066, 0.0243138205, 0.00373856258, -0.0577634275, 0.00981372688, 0.0253801011, -0.00810899492, -0.00886592269, 0.0420719944, 0.00312808435, 0.00357401324, 0.0190350767, 0.016915679, -0.0196274538, -0.0112420162, 0.0250904951, -0.00115678238, 0.0394655317, -0.00334199867, 0.0367011, 0.0497070849, 0.0158625636, -0.00970183313, 0.0205226019, 0.0284078103, 0.0251958054, -0.0628710389, -0.0826696232, 0.00141101121, -0.0450207181, 0.0219838023, -0.0274600051, 0.00382741936, -0.0174027458, -0.00829329062, -0.058816541, 0.0583952963, 0.0514184, -0.00187586329, 0.0288817137, -0.00353123038, 0.0187586322, -0.00741788745, -0.0102086458, 0.0394655317, 0.0270387586, -0.0314091928, -0.00226913649, 0.0287237447, -0.0409925506, 0.0090633817, -0.0151648736, -0.000430708082, 0.0010358385, -0.0660830438, 0.0253142808, 0.0331994891, -0.0102942111, 0.0472585931, 0.025182642, -0.0442572087, 0.02414269, 0.0235239845, 0.0284604672, 0.0646613389, 0.012591321, 0.0140064461, 0.0217468496, 0.00773382233, 0.0462581292, -0.00975448918, -0.00292239757, -0.0293556154, -0.0201408491, 0.0196406171, -0.00920160301, -0.0332258157, 0.00533140078, -0.0270914156, -0.0383334309, -0.0252879541, -0.0296188947, -0.00341275474, 0.0201276839, 0.0528664365, -0.0279339086, 0.00877377484, -0.0376225784, 0.00165701262, -0.0325939469, 0.0455209501, -0.00105311628, -0.0161916614, 0.0586585738, 0.0167840403, -0.0178503208, 0.0370696932, 0.00198282045, 0.0466530509, 0.00979398098, 0.0134272324, 0.00590074202, 0.00532152783, 0.0167313851, 0.0259593148, 0.0320410617, 0.00648324704, 0.026117282, -0.0300401412, 0.00958335772, 0.00340288179, 0.0354373604, -0.0580793619, -0.00630882429, -0.0225103591, 0.0330941789, 0.0030079633, -0.0156519394, 0.0124925915, 0.00479167886, 0.0075495271, 0.0192325357, -0.00627591461, -0.020627914, 0.021667866, -0.021667866, -0.0249325279, -0.0120515991, 0.00145214854, 0.00519317947, -0.018600665, 0.0188639443, 0.0388336629, 0.0213387683, -0.00588099612, 0.0194299947, -0.0135983638, 0.0025291245, -0.0176660251, 0.00183637149, 0.0140591022, 0.0147172995, -0.0143223805, 0.0159020554, 0.00944513641, 0.0106957117, 0.0257486925, -0.00582175842, -0.0400447436, 0.00105640723, 0.0090831276, -0.0146119874, -0.0101625714, 0.00949121, 0.0239715576, -0.00589086907, -0.0318567678, -0.00701638684, 0.0321463719, 0.0139142983, -0.0145198405, 0.0386756957, 0.0349897854, 0.00504179392, 0.0150595624, 0.00436385, 0.0199565534, 0.0253669377, -0.00582504924, 0.0137958229, -0.00778647838, 0.0100111859, 0.0104324324, 0.0264990367, 0.00487066247, -0.0326202773, -0.00826038048, -0.00561113516, 0.0288027301, -0.000342468469, -0.0124531, 0.0214045867, -0.000905844499, 0.0212992765, -0.0051767244, 0.0166524, 0.041650746, -0.0242348369, -0.00963601377, -0.00175574224, 0.0181004349, 0.0290133525, 0.00689132931, -0.0347791649, 0.0231422298, 0.0167577118, -0.0385177247, 0.00474231411, -0.00964917801, 0.0302507635, 0.00220167125, -0.00107039395, -0.00665437803, -0.0216415394, 0.00167429028, -0.0250904951, 0.009004144, 0.00487395376, 0.0350951, -0.00405778829, -0.0185743384, 0.0017787792, -0.0117290821, -0.0471006222, -0.00574606564, 0.0248140506, -0.0183373857, 0.0330415219, -0.0237609353, 0.0032745332, -0.00433423137, -0.0209701769, -0.0197064374, -0.0220496207, 0.00695714913, 0.00518001569, 0.114789672, -0.00611136528, -0.0158625636, 0.00662475917, 0.0657671094, -0.00933324266, -0.0119594513, 0.0134733059, -0.00171789585, -0.0149805788, 0.0188902728, -0.00481800688, -0.0242743287, -0.0198249128, -0.00634173444, 0.00704271486, 0.0151648736, 0.00430790382, -0.00420588301, 0.0286447611, 0.00583163137, -0.000161772638, -0.0110972123, -0.000415487273, -0.0121305827, 0.00943197217, -0.00471927738, 0.0264332183, -0.035174083, -0.0100835878, 0.00979398098, -0.0108405156, 0.00114773214, 0.00939906202, 0.0295135826, -0.00776673248, -0.00724017434, -0.010313957, 0.00617060298, 0.00839202, -0.0197590943, -0.0159547105, 0.0037451447, -0.00972157903, 0.00814190507, -0.029829517, -0.0110379746, 0.02414269, 0.00129006745, 0.00815506931, 0.00106463465, 0.0121042551, -0.0264463816, -0.00687816553, -0.007569273, -0.0155729568, -0.00554531533, 0.00253570639, -0.0165602528, 0.0088001024, -0.0292503033, -0.00919502135, 0.0203119796, -0.00628578756, -0.0202593245, 0.000150254185, -0.0180741083, 0.0130191492, -0.0241953451, -0.0161653347, -0.006753108, 0.00649970165, -0.0280655473, 0.0238530822, 0.013901134, -0.0339366719, 0.00991903897, 0.0202856511, 0.0177186802, 0.0206937343, -0.0154281529, -0.0125781568, 0.017363254, 0.0249720197, 0.0155992843, -0.00652602967, -0.0118409758, 0.00260975375, -0.00684525538, -0.000865529932, -0.00762851071, 0.00472256821, -0.00364970602, 0.000105517312, -0.00433094054, -0.0107352035, 0.00558151631, -0.00221812609, -0.0110972123, 0.0114592211, 0.0231290646, 0.00141430215, 0.0044790348, 0.0226683263, -0.00330086122, 0.00180181605, 3.84377126e-05, -0.00709537091, -0.0513657443, -0.00336997188, -0.0197590943, -0.0276706293, -0.0383334309, -0.0152438572, -0.0106693842, -0.0250641666, 0.0190087482, 0.00193345558, 0.0109919012, 0.0200750288, -0.000946981891, 0.00731257582, -0.00201408472, -0.0337787047, 0.0280655473, 0.0333837867, 0.000951918366, 0.0365168042, 0.00173928728, 0.0432830788, -0.0124465171, -0.0349108, 0.0362272, -0.0310669299, -0.0281182043, 0.00169979548, 0.029882174, 0.000377435208, 0.0314881764, 0.00345882867, -0.00244684983, 0.00266240956, -0.022655163, 0.0458368845, -0.000554531522, 0.00482129771, 0.00561442599, -0.00762851071, -0.00836569257, 0.00748370728, 0.02597248, -0.0206674058, -0.0118212299, -0.0463107862, -0.0191667154, -0.0498124, -0.0371486768, 0.00156321947, 0.00113127718, -0.0214440804, 0.0244849529, -0.00355426734, -0.0258540045, 0.0209438484, -0.00477193296, -0.0259593148, 0.0449680649, -0.0024781141, 0.0266043488, -0.029882174, 0.0271440707, -0.00348515646, 0.00853682309, 0.0234186724, 0.0092674233, -0.0199697167, 0.025182642, -0.00429803086, -0.0399394333, -0.00765483873, -0.0182320755, -0.0166655648, 0.00895807, 0.00779964216, 0.0264595449, 0.0397814661, 0.0152175296, 0.0145724956, 0.0154281529, -0.0250246748, 0.00420917384, -0.0474692136, -0.00808266737, 0.0142697254, 0.00135424163, 0.0172184501, 0.0267359894, -0.0164417773, -0.0157572515, -0.00312643894, -0.00793786347, 0.0154808089, -0.00353781227, -0.00426183, -0.00837227423, 0.035068769, 0.0140459379, 0.0268018078, 0.0141249215, 0.000643388194, 0.0253406093, 0.00812215917, 0.00211116904, 0.0152570214, -0.0119528696, 0.0114328936, -0.00375830848, 0.00587770483, 0.0100309318, -0.0173237622, -0.0189034361, 0.0362008698, 0.0176265333, -0.00320871361, -3.84120031e-05, 0.00364970602, -0.0479167886, -0.019140387, -0.0130388951, 0.00586125, -0.00916869286, 0.0355953276, -0.0156914312, -0.00168169499, 0.000931349699, 0.0193115193, -0.0394918583, 0.0279865637, -0.00844467618, -0.0211281441, 0.0060751643, 0.0273283664, 0.0187454689, -0.0216810312, -0.0192193706, 0.0114197293, 0.00299479929, -0.0477061644, 0.000352752802, -0.0223392285, -0.0512867607, 0.015981039, -0.00237115705, 0.0163759571, 0.0134930518, -0.0216415394, -0.00831961818, 0.00388994813, 0.0057921391, -0.0090436358, -0.0105443262, 0.00978081673, 0.00702955108, 0.024985183, -0.00764167495, 0.0112617621, -0.00266240956, -0.00193674664, 0.00178042462, -0.024537608, 0.00406437041, -0.00966234133, 0.0410978608, -0.0206015874, -0.0189824197, 0.00553215109, 0.0231159013, 0.0216283742, 0.00870795455, -0.0296452213, 0.00827354472, -0.0305667, 0.0261436105, 0.00358388619, 0.000193448403, -0.00322187762, -0.0196669456, -0.0003186088, 0.0302507635, 0.0227209833, -0.0163101386, -0.0231422298, 0.0134601416, 0.000916540215, 0.0368327424, -0.0353057235, 0.00640426297, 0.0314881764, 0.00489369966, -0.0136246914, -0.0139142983, -0.0418876968, -0.0105311628, 0.0343315899, 0.0199170616, 0.0222207531, 0.0113144172, -0.0204041265, -0.00449549, -0.00161916623, -0.00909629185, 0.011103794, -0.0748239085, -0.0259988066, -0.00145708502, -0.0227473117, -0.00351148448, -0.00999802258, -0.00011744714, -0.0122622224, 0.00355426734, 0.0397814661, 0.0235239845, -0.00796419196, -0.0151780378, -0.0142433969, 0.004439543, 0.0220101289, -0.00287961471, 0.0247482322, -0.00963601377, -0.0118409758, -0.00478838803, -0.0156387761, -0.0282761715, 0.00717435451, -0.00608832808, -0.047785148, -0.0307773221, -0.000127422958, 0.0181136, 0.0439939313, -0.0355953276, -0.00236457516, -0.0417823866, -0.0396761559, -0.00212433282, -0.0288553853, -0.0026986103, -0.0315934867, -0.035911262, -0.0157045964, -0.00281050405, 0.0162574816, 0.0133679947, -0.0131310429, -0.0164154489, -0.0212071277, -0.0256565437, -0.013058641, -0.0076087648, 0.0138484789, 0.00779306, 0.000694398535, -0.0155466283, -0.0120581808, 0.01904824, 0.00233166525, -0.0125781568, -0.00783255231, -0.00723359222, 0.016915679, 0.00869479124, 0.00762851071, -0.0265911855, 0.0266438406, -0.0294082705, -0.0101559898, -0.0284341387, 0.0035575584, 0.0191798788, 0.00716119027, 0.00568682794, 0.00830645394, -0.0104258507, 0.00925425906, 0.00387020223, 0.0164154489, 0.00424208399, -0.0044823261, -0.0103534488, 0.000999637647, -0.000100477984, -0.00579543039, -0.029882174, -0.0172184501, -3.10329924e-05, -0.0229184423, -0.016626073, -0.00801026542, 0.00661488622, 0.0193905029, -0.0382807739, -0.00643717311, -0.011801484, 0.00420259219, 0.020680571, -0.00959652197, -0.00657868572, -0.0129533298, 0.00646350114, -0.0271177441, -0.00347528351, 0.00420917384, -0.0331468321, 0.000821512949, 0.0223392285, 0.00127361249, 0.00733890384, -0.0206015874, 0.00709537091, -0.0124925915, 0.0205226019, 0.0196932741, -0.0217995066, 0.0072665019, -0.00620022183, 0.0104324324, -0.0170341544, -0.0140854297, -0.0322253555, -0.0179161392, -0.0105706546, -0.0308826342, -0.0119989431, -0.0282761715, -0.0121371644, -0.00352135743, 0.00446258, 0.0439939313, -0.00347528351, -0.00809583068, -0.0270650871, -0.00468636723, 0.0155466283, 0.0113868192, -0.0289343689, -0.0220627859, -0.000663545507, 0.0177713372, 0.0130125675, -0.00301783625, 0.0200223718, 0.0025883622, 0.0555518828, -0.0117685739, 0.010636474, -0.017758172, 0.00968867, 0.0156914312, 0.0167050567, 0.012913838, 0.0380701534, -0.0302244369, 0.0133745763, 0.00602250872, -0.00551569648, 0.00919502135, -0.00829987228, 0.040808253, 0.000570986478, 0.0106496383, -0.00301125436, 0.0170868114, -0.022563016, -0.00910945516, -0.0134535599, 0.0171526317, 0.00872111879, 0.0167708769, 0.0204567835, 0.00882643089, 0.00557493418, -0.00932007842, 0.00697689503, 0.0102810469, 0.00302277273, -0.00410057139, 0.00570657384, 0.00843151193, 0.0108668432, 0.035068769, 0.0101559898, -0.0316724703, -0.00824063458, 0.000807937642, 0.00194497406, -0.010313957, -0.0210228339, 0.00335351704, -0.00838543847, -0.00630882429, 0.0105969822, 0.0132100265, 0.0213256031, -0.00118064205, 0.0288290568, 0.00785888, -0.000253817474, 0.0147962831, -0.00735206762, -0.0186138302, 0.01278878, 0.00166112627, -0.022365557, 0.00580859417, 0.0336207375, -0.0166524, 0.0264068898, 0.00112963177, 0.00882643089, -0.009004144, 0.0118870493, -0.0244717896, -0.000849075, 0.000953563838, 0.00491673639, 0.0114987129, 0.0263937265, 0.0270387586, 0.00317086722, -0.0236161314, 0.0130652236, -0.0111761959, 0.0117225, 0.0140064461, -0.0200092085, -0.00332718901, 0.00201079389, -0.000379286386, 0.00329427933, -0.0283024982, 0.00252747908, -0.00661488622, 0.0100638419, -0.00658855867, -0.0247613955, -0.00637464412, 0.0225498509, 0.000935463409, 0.00823405292, 0.0382017903, -0.0103929406, -0.0200487, 0.023102738, -0.00280227652, -0.006753108, 0.0206674058, 0.00153113226, -0.0175870415, 0.0106233098, 0.00390311214, -0.00891857781, -0.00358717726, 0.0152833499, 0.0155071365, 0.0235108193, 0.026959775, 0.0108536789, -0.00428157579, 0.0139537901, -0.0175080579, 0.0133877406, 0.0194694865, -0.00680576358, 0.00317415828, -0.00858289748, -0.0297768619, 0.0128019443, 0.0207858812, -0.00863555353, -0.0176396966, 0.0188244525, 0.0245639365, -0.00448561693, 0.00477522379, 0.0204567835, -0.0075495271, 0.00592707, -0.0219574738, -0.0201803409, -0.0110972123, 0.00234976551, 0.0115908608, -0.00121190643, -0.00039820958, 0.00434739562, -0.00362666906, -0.00935298856, 0.0015533464, 0.00942539051, 0.0076087648, 0.0130191492, -0.0171789583, -0.00863555353, 0.0124399355, 0.0171526317, 0.000665191, 0.0389916301, -0.0187717974, -0.00719410041, 0.010958991, 0.0167840403, -0.000524089905, -0.0156914312, 0.00611465611, -0.00297340797, -0.0172842704, -0.0233396888, 0.0196011253, -0.0190219115, -0.00427828496, -0.0216152109, 0.0267359894, 0.00803659298, -0.00084989774, -0.0026986103, -0.00684525538, -0.000342468469, -0.00476535084, -0.0068123457, -0.00753636332, -0.012913838, 0.00398867764, -0.00989271048, -0.0120515991, 0.0131771173, 0.0256170519, -0.00431777677, -0.0133285029, 0.00353781227, -0.0242480021, -0.00477851508, 0.0109919012, -0.0130652236, 0.00672348915, 0.0159415472, -0.0137168393, 0.021523064, 0.0261567738, 0.00269202841, -0.00687816553, 0.0087277, 0.00348844752, -0.000473079563, 0.0127295423, 0.0189297646, 0.0134798875, 0.00514710555, -0.000537253858, -0.0115974424, 0.0174948927, 0.0133482488, 0.0335944071, 0.0283024982, 0.0258408394, 0.0195089784, 0.00261304458, 0.00876719225, -0.00806950312, 0.00858947914, -0.00916869286, -0.0175212212, -0.0103929406, 0.0187191404, 0.00171625032, 0.00137316482, 0.0101823173, 0.00118146476, -0.0312248971, 0.0128216902, 0.0018626994, 0.0260251351, 0.0189297646, -0.0238662474, 0.0137694953, -0.00394589501, -0.000208566387, -0.017165795, 0.0207727179, -0.0107220402, -0.011321, -0.0229974259, 0.0310142729, 0.0153096775, 0.0229184423, -0.00593694299, 0.00619363971, 0.00342591875, 6.53055467e-05, 0.0124531, -0.0404659919, 0.00117981934, 0.00525241718, -0.0067728539, -0.0234581642, 0.0374909379, -0.0231422298, 0.0221286044, -0.00592377875, -0.0199960452, 0.0313828625, 0.000526969496, -0.029039681, -0.0255512334, 0.0303297471, -0.00359046808, 0.0170473196, -0.00981372688, -0.0189692564, -0.0414664522, 0.00473902328, -0.00998485833, 0.00440663332, -0.00134848244, 0.0155071365, -0.00952412, 0.0133745763, 0.0123082958, 0.0182584021, 0.0177713372, 2.91303877e-05, -0.0125057558, -0.0148357749, -0.0187586322, -0.00370565266, 0.00691107521, -0.0374119543, -0.0157704148, -0.00679918192, -0.0145724956, -0.029039681, 0.00572302844, -0.00710195256, 0.0375699215, 0.0468373448, 0.00638780836, 0.000996346702, -0.0207595546, 0.0326992609, -0.0105377445, -0.0151780378, -0.00284505938, 0.0106891301, 0.0455209501, 0.00962284952, -0.0142302336, 0.0110708848, 0.0175343845, -0.00488711754, 0.0017919431, -0.0052359621, 0.0160600226, 0.00928058662, 0.013901134, -0.042940814, 0.0113078356, 0.00899756234, -0.00263608154, -0.0236556232, -0.00288290577, 0.000743763347, -0.00231356476, 0.0149542503, -0.0225893427, -0.000966727792, 0.0030277092, 0.0197459292, -0.0108141871, 0.00979398098, -0.014941087, -0.00132050901, -0.0132890102, 0.00778647838, -0.0149937421, -0.0323569961, -0.00224116305, 0.0139274625, 0.0313038789, 0.000124749029, 0.0125649935, 0.0215098988, -0.00495622819, -0.00282531348, -0.014098594, -0.00865529943, -0.0168235321, 0.00642400887, 0.00877377484, -0.0113275815, -0.0325412937, 0.0365168042, -0.00655564852, 0.00336174457, 0.0161126778, -0.00496281032, -0.00125715754, -0.0247219037, -0.0183242224, 0.0088001024, 0.00231191935, -0.00854340568, -0.0273810215, -0.00126291672, 0.00725333812, -0.0205489304, -0.0346475244, -0.0090568, -0.0170604829, -0.0343315899, -0.00953070167, -0.018008288, 0.025432758, -0.0169815, 0.0129730757, -0.014493512, 0.0191667154, 0.00805633888, 0.0101296622, 0.0397024825, 0.00994536653, 0.00427499367, -0.0114131477, -0.0346475244, 0.00224116305, -0.0279602371, -0.0220101289, -0.018403206, 0.00257190736, -3.63037143e-05, -0.00907654595, -0.00180839805, 0.00535443798, 0.00175738777, 0.0135720354, -0.00848416798, 0.0145724956, 0.00400184188, -0.0441255718, -0.0260382984, -0.00751661696, -0.0151912021, 0.00299315387, 0.000374144234, 0.00369907077, -0.00213420577, 0.0237609353, -0.0033650354, -0.00669716112, -0.00423550187, -0.0271967277, -0.0371223465, 0.0202988163, 0.00366287, -0.0115842782, 0.023050081, -0.0107220402, 0.0230895728, -0.014546168, 0.00763509283, 0.012124001, -0.00387020223, -0.0051372326, -0.00321200443, 0.00180839805, 0.00691765733, -0.0118409758, -0.00964259543, -0.0026788644, 0.00944513641, 0.0201540124, -0.0200092085, 0.0218784902, -0.0224313755, -0.00533140078, -0.011551369, -0.00160929328, -0.0115776965, -0.00368919782, 0.0101625714, 0.00580530334, 0.000228929377, -0.015533465, -0.0107286219, 0.0068320916, -0.0287500732, -0.0158757269, 0.00308365608, 0.00638451707, -0.0183900427, 0.0151517102, -0.000226666816, -0.0101362439, 0.00822088867, -0.00154429628, -0.00181498006, -0.0112091061, -0.0117685739, -0.000310175645, 0.00774040446, -0.013111297, -0.0104455967, 0.00829987228, 0.0193115193, -0.0116369342, 0.0154413171, -0.00427828496, 0.0188639443, -0.0123017142, -0.000791482686, 0.00413677236, 0.0212466195, 0.00670374325, 0.00625287788, 5.60496446e-05, -0.00198117504, -0.00148176751, -0.00724675599, -0.00323339598, -0.0395708419, 0.00462054741, 0.0090436358, -0.00517014274, -0.0207858812, -0.0116237709, 0.00684525538, 0.00270025595, 0.0247482322, 0.0105969822, 0.0352267399, 0.0191008952, -0.000200955968, -0.00428815791, -0.00488053542, 0.0134074865, -0.0148094473, 0.00831961818, -0.00154923275, 0.0215625558, -0.0144276926, -0.0183637142, -0.000610066927, -0.00835252833, -0.00109343079, -0.02414269, 0.00340617285, -0.00113456824, 0.021865325, -0.00822747, 0.0178634841, -0.00291910651, 0.000592789263, -0.00395247713, -0.00388007518, 0.00309023797, -0.000899262552, -0.0207595546, 0.00107944419, 0.0223260652, 0.00185118092, -0.00455801887, -0.0065095746, 0.0108536789, 0.0249456912, 0.00762851071, -0.0182189103, -0.00489699049, -0.0221417695, -0.0132297724, 0.0121964021, 0.00880668499, 0.00207332266, -0.0201013554, 0.00261469022, 0.0153491693, 0.00331402523, -0.00484104361, 0.00280392193, -0.0112420162, -0.0102152275, 0.0174159091, -0.00178700662, 0.0232475419, -0.0100704245, -0.0162048265, 0.0171131399, 0.00463371165, 0.00165043061, -0.00829987228, -0.0173105989, -0.00530836405, -0.0059731435, 0.00820772443, -0.0012291841, -0.00475218706, 0.0160336941, 0.000366533815, 0.0135193793, -0.00870795455, 0.0164022855, -0.0194826499, 0.0152833499, -0.0168761872, -0.0225366876, 0.00219015265, -0.0129270023, -0.009004144, 0.00442308839, -0.0104982527, 0.00349502964, -0.00339300884, 0.00285328692, -0.00716119027, 0.00120614725, -0.00552556943, 0.0229974259, 0.00868820865, 0.00202066684, 0.0170736462, 0.00822747, 0.00810899492, -0.00776673248, -0.0292766318, 0.0127427066, -0.000698100892, -0.0240505431, 0.00333212572, 0.0242085103, -0.00235799304, 0.00761534693, 0.0108997533, 0.00995853078, -0.0276179742, -0.000494059641, 0.0130257318, 0.0117751556, -0.00414335402, 0.0139932819, -0.0064273, -0.00166770827, 0.00612452906, 0.0125649935, 0.0342262797, -0.00858947914, 0.00702296896, -0.0271704, 0.00874744635, 0.0143223805, 0.00227242731, 0.00700322306, -0.0348054916, -0.0151253818, -0.00245672278, 0.00408082549, 0.0079247, -0.0262489226, 0.00331073417, -0.0270914156, 0.0285394508, -0.0167972036, 0.0141907418, -0.00972157903, 0.0198775697, -0.00567366369, -0.0149279227, 0.00876719225, -0.0022707819, -0.00855657, -0.0140459379, -0.0114394752, 0.00897123385, -0.00414664531, -0.0236819517, -0.0100967521, -0.00319061312, 0.00858289748, -0.0171921235, -0.0067136162, -0.00988612883, 0.0103929406, -0.0251563136, -0.0285657775, 0.000795596396, 0.00633515231, -0.008879086, 0.0193641745, -0.0102152275, -0.0212202929, -0.00293227052, 0.00163891213, -0.0154413171, -0.00227407296, 0.0201935042, -0.0214045867, 0.00790495425, -0.00200092094, -0.0139142983, 0.00268380088, 0.00413677236, -0.016428614, -0.0103271212, -0.00488711754, 0.0234581642, 0.021470407, 0.0123609519, -0.00087375741, 0.0134798875, -0.0157045964, -0.00632198853, -0.0108997533, 0.00192687358, -0.00121437467, -0.0301981084, -0.0119660329, -0.00344895571, 0.00424537482, -0.0144276926, -0.00206344971, -0.011748828, 0.0260909554, 0.0123872794, -0.000633926596, -0.00820772443, 0.0112485979, -0.0289606974, -0.0193905029, 0.0111301225, -0.0347791649, 0.00185118092, -0.0133350845, 0.00563088106, -0.0132955927, 0.0117159178, 0.017363254, 0.00485749869, 0.00576910237, -0.00459092855, 0.0146119874, 0.0254590847, -0.0251958054, -0.0162574816, 0.00741130533, -0.00490357261, -0.0205620937, 0.0294082705, -0.00116665533, -0.00328111532, -0.0108536789, 0.000948627363, 0.00648653787, 0.00790495425, 0.025182642, 0.034278933, 0.0193905029, -0.0194431581, 0.00849075, -0.00554531533, 0.00375501765, 0.0052589993, -0.0251431502, 0.00843809359, -0.0293292869, -0.032014735, 0.00124317082, -0.00959652197, 0.0225498509, 0.00866188109, -0.00469953101, -0.0217731781, -0.00706904288, 0.00883301254, -0.0108865891, 0.00394589501, -0.00421904679, -0.0308036506, 0.00968867, 0.0240900349, 0.00969525147, -2.48366778e-05, 0.00859606173, 0.0117225, 0.011426311, -0.0168630239, -0.0019021912, -0.0167972036, 0.0104719242, 0.0107220402, -0.0151122184, 0.0114592211, 0.00362008717, 0.005380766, -0.000575922953, -0.0043408135, -0.00689132931, 0.000631869771, -0.00464029331, 0.00840518437, 0.00148094469, 0.00932666101, -8.39716231e-05, -0.00659184949, 0.0280655473, 0.0115776965, 0.00598630775, 0.000679589051, 0.00100704236, -0.00782597, -0.00446258, 0.00593694299, 2.67907017e-05, -0.0102020632, 0.00724675599, -0.0352004096, -0.00687816553, 0.021470407, 0.00567366369, -3.61494494e-05, 0.00349502964, 0.00750345318, 0.0159942023, -0.0269071199, 0.00194168312, -0.00435068645, 0.00289277872, 0.00799710117, -0.0342526063, -0.00877377484, 0.012913838, 0.0309089608, 0.0238135904, 0.0140327737, 0.0326466039, 0.0130191492, 0.00152455026, 0.00182156195, 0.0213650949, 0.024787724, -0.0217600148, 0.00554531533, 0.0270650871, -0.00746396137, -0.010116498, 0.0201013554, -0.0227209833, -0.0205226019, 0.00439676037, 0.00216547027, -0.0217468496, 0.00666096, -0.00783913396, -0.0199302249, 0.00714144437, 0.00922134891, -0.0052392534, -0.00567695452, 0.00505495816, -0.013433814, -0.00643059099, -0.00328934286, 0.00550253224, 0.00308036502, -0.00211116904, -0.00155581464, -0.0284867939, -0.0075495271, 0.0015780289, -0.00350490259, 0.0261436105, 0.0285394508, -0.00476864213, 0.00155416923, -0.00087375741, 0.0122622224, -0.00317580369, -0.0114197293, -0.0215757191, -0.000924767694, -0.0150200706, -0.0119133778, 0.00262456317, -0.0214967355, -0.0168893524, 0.00411373517, -0.00270519243, 0.0162838101, -0.00331896171, 0.0126176486, -0.0147172995, -0.00700980518, -0.0108602615, 0.0029569529, 0.000803001109, 0.015138546, 0.00429473957, 0.0260777902, 0.0193641745, 0.0119067952, 0.00600605365, 0.0439149477, 0.0260777902, -0.0192588624, -0.00630882429, -0.0172184501, -0.00412689941, 0.00404791534, -0.0116632627, -0.0152438572, 0.021523064, -0.0152570214, -0.0142828887, 0.00723359222, -0.00557164289, 0.023300197, -0.000450454, -0.00561771682, 0.00466991216, 0.0242874939, 0.012268804, 0.0268544648, 0.0197985861, 0.00568353664, 0.0151780378, 0.00585137727, 0.0142302336, -0.0192325357, -0.0101559898, 0.00700980518, 0.00219015265, 0.00677943602, 0.0105640721, 0.0182584021, 0.0149147585, 0.027854925, -0.00596327055, 0.00777331414, 0.012591321, 0.0122029847, 0.000188409074, 0.000559468, 0.0187059771, -0.0123346243, -0.00329921581, -0.0159547105, 0.0102415551, -0.00313960272, 0.00883301254, 0.00870795455, 0.0200487, 0.00317086722, -0.00709537091, 0.00669716112, 0.00733890384, 0.0144803487, 0.0088395942, -0.00933982432, 0.00664779637, 0.00213420577, -0.000123000689, -0.00984663703, -0.00335845351, -0.0147699555, -0.00985980127, -0.0116369342, -0.0151253818, -0.0162311532, -0.0106233098, 0.00497926539, -0.0038438742, 0.0181004349, -0.0115382047, 0.00988612883, -0.00273974775, 0.00573290139, -0.0030787196, 0.00465345755, -0.00338642695, 0.00777331414, 0.00347857457, -0.00162081176, -0.0052195075, -0.0188112892, 0.0197327659, 0.00999802258, -0.00763509283, -0.00985980127, -0.01298624, -0.000167943246, -0.00843809359, 0.042098321, 0.0118541401, 0.00828012638, -0.00479496969, -0.0131507888, 0.00497268327, 0.00309188338, -0.00242874934, 0.0199302249, -0.00742446957, -0.00395247713, -0.00884617679, 0.0121700745, 0.0128875105, 0.0107878596, 0.00841176603, 0.017560713, 0.0092871692, 0.0139932819, -0.0061574392, 0.00912920106, -0.00469294935, 0.00445270725, 0.0183242224, 0.00994536653, -0.0178239923, -0.0175870415, 0.0142433969, 0.0191667154, -0.031619817, 0.0185743384, 0.00460080151, 0.000386691128, -0.0011452639, 0.0163364653, -0.0118409758, 0.0233791806, -0.00160024303, 0.0219574738, -0.00592048792, 0.0155729568, 0.00449219905, -0.00958335772, 0.0119660329, -0.0146383159, 0.00285328692, 0.00694398535, -0.00701638684, -0.0165997446, 0.00651615672, -0.028144531, -0.00628907839, 0.000198179201, -0.0150463982, 0.0101823173, -0.0050977408, 0.00669387029, -0.00211116904, -0.00687158341, 0.00169321347, 0.00453169085, -0.022115441, -0.0109129166, 8.07834804e-05, -0.00739814155, 0.00981372688, -0.0156519394, -0.0129730757, 0.0289606974, 0.00453827297, 0.0044428343, -0.0250773299, 0.0125518292, -0.00278582145, 0.015138546, 0.00736523187, 0.00198775693, 0.00535114668, -0.00512735965, -0.00139373355, 0.009004144, -0.00987954717, 0.00753636332, -0.0190745685, 0.000210109036, -0.0242085103, 0.0145330038, -0.00182649842, 0.00594023382, -0.0369907096, 0.00638122624, -0.0020437038, -0.00217698864, -0.00853682309, 0.0162574816, 0.00342591875, -0.0124465171, 0.00145050313, -0.0395445153, 0.0123214601, -0.0294082705, 0.0244981162, -0.0092476774, -0.0281708594, 0.0250115115, -0.0104653426, -0.00714144437, 0.00228394591, -0.00965576, -0.0135457078, 0.00745737925, 0.0312775522, 0.000814108236, 0.0155203007, 0.00311327493, 0.00342920981, -0.00469953101, -0.00699005928, -0.00972816162, 0.0141249215, 0.0034357917, -0.0254195929, -0.0345948674, -0.0112025244, -0.0174422376, 0.01508589, 0.00694398535, 0.0113275815, 0.00653919345, 0.0325149633, 0.00583492219, -0.0027298748, -0.00179687957, -0.0092674233, -0.00367932487, 0.00179687957, 0.0179424677, 0.00461067446, 0.00563746272, -0.0139801186, -0.00103337027, 0.004439543, -0.0125847394, -0.0087606106, -0.00249786, 0.0321990289, 0.0139669543, 0.0120515991, 0.00503521226, -0.0284867939, 0.00746396137, -0.00311492034, 0.0139932819, -0.0220496207, 0.0326729305, 0.0151253818, 0.0114197293, -0.0116500985, 0.00636806246, -0.0125781568, 0.00379450945, 0.0147699555, 0.00535114668, 0.0052392534, 0.0162179898, 0.0155071365, 0.0160600226, 0.0170604829, -0.0294609275, -0.000541778922, -0.0121569103, 0.000442637916, 0.00429144874, -0.0358849354, 0.0120845092, -0.00562100811, -0.00941880792, 0.00130076311, -0.00584479515, 0.00305403699, -0.00145379407, -0.0273020379, -0.0221022777, -0.0178898126, -0.00820772443, -0.00110659481, 0.00844467618, 0.0146383159, 0.00141923863, 0.00982030854, -0.0126571404, -0.0324096531, -0.00689132931, -0.0116895903, -0.0134930518, 0.0108010238, -0.00408082549, -0.000859770691, 0.0356743112, 0.00475876918, -0.00311327493, 0.0237740986, -0.0122556407, 0.000675475341, 0.0156124486, -0.0219838023, 0.0168630239, 0.00169979548, -0.0219048187, -0.0201145206, -0.00156486488, -0.00805633888, -0.0104126865, -0.000310587027, 0.00329921581, 0.00557822501, 0.00951095577, 0.0229447708, -0.000365299697, 0.00583163137, -0.0102218091, 0.00485420786, 0.0110972123, 0.00294378889, -0.00606529135, -8.39459153e-06, -0.0129335839, 0.00601921743, 0.00326136942, 0.0139274625, 0.00972816162, 0.00473902328, -0.00858947914, 0.000904199, -0.00363654201, -0.00439676037, -0.000986473751, 0.00187915424, -0.0159020554, -0.0142039051, -0.00420917384, -0.0246824119, -0.00794444606, 0.0170868114, 0.000996346702, -0.00386362, 0.00658855867, 0.00680576358, 0.0121437469, 0.0302244369, -0.00489699049, -0.010261301, -0.00609820103, -0.00503521226, 0.00174257823, -0.0177186802, 0.00354439439, -0.00993220229, -0.0123741161, 0.000312438206, 0.0378858559, 0.00943197217, -0.0019021912, -0.00106216641, 0.00501875719, -0.0274863336, -0.0112617621, -0.00137151941, 0.010833933, 0.0297768619, -0.00894490629, -0.0107417861, -0.0087277, 0.00342591875, 0.0423879288, -0.0125057558, 0.00259000785, -0.00705587864, 0.00539722061, 0.00623642281, 0.0195221417, 0.0107022934, -5.91863682e-05, -0.0105245803, 0.00244355877, 0.00316593074, 0.0114526395, -0.00737839565, -0.0115908608, -0.0221680962, 0.000976600801, 0.00647666492, -0.0131573714, 0.00305074616, -0.00401171483, -0.00359375915, 0.000861416163, 0.005380766, 0.000744586112, 0.00972157903, 0.0259066597, 0.00723359222, -0.0224182121, -0.00715460861, 0.0109260809, 0.00481142476, 6.29401475e-05, 0.00197952939, -0.00880668499, -0.0191667154, -0.0164022855, -0.0113473274, -0.00743763335, 0.0109787369, -0.0051964703, 0.0131507888, -0.0240373779, 0.0046633305, 0.00727966614, -0.0258934963, 0.0122819683, -0.000485009397, 0.030277092, 0.0090831276, 0.00035234142, -0.0151517102, -0.00566708157, 0.00262949965, -0.00607845513, 0.00367603381, 0.0283024982, -0.00228723674, 0.00379121839, -0.000206098135, -0.00254064286, 0.00725992024, 0.00570986466, 0.000685348292, 0.0146383159, -0.020680571, 0.0170209911, 0.0321727023, -0.0287237447, 0.00512077753, 0.00534127373, -0.0160073675, 0.00200750283, 0.00357072218, 0.00279240357, -0.0165734161, 0.0145988241, -0.0246429201, 0.00774698658, -0.00993878487, -0.0155466283, -0.0032350414, 0.00958993938, -0.0113275815, 0.0120779267, 0.0087803565, -0.0074902894, 0.000173188251, 0.0193641745, 0.00176067872, -0.0225498509, 0.0144145284, -0.000279116939, 0.00518988864, -0.00507470407, -0.012018689, 0.00966892391, -0.00968208723, 0.00547291338, -0.0133350845, 0.00581188546, -0.0092279315, 0.0121108368, 0.012071345, -0.026564857, 0.0437306501, 0.0198117495, 0.0326729305, 0.0219706371, -0.00402158778, -0.010116498, -0.00218686159, 0.000427828461, 0.0182452388, 0.00794444606, -0.0136246914, 0.00864213519, 0.00629895134, -0.0052195075, -0.0276179742, -0.0215098988, -0.00149081764, -0.00480155181, 0.0124925915, 0.00130734511, 0.0206542425, -0.0172842704, 0.00935298856, -0.00376818166, 0.000759806891, 0.0239189025, 0.000783255207, -0.0161521696, -0.0275389906, -0.0275126621, -0.0159678757, -0.0185216814, 0.00706246076, -0.0100375144, 0.0057723932, 0.0110577205, -0.009004144, 0.0173105989, 0.00249950564, 0.0194694865, 0.00414993614, -0.0199960452, -0.0318041109, 0.0166129079, 0.0186664853, -0.00965576, 0.0369643793, 0.00158954738, -0.0152175296, -0.0216152109, 0.00445270725, 0.0075100353, 0.00294708, 0.00699005928, -0.00579872122, -0.00385045633, 0.0145066762, 0.00962943118, -0.00806292146, 0.0076087648, -0.00547620468, -0.0219706371, 0.0183900427, -0.0108141871, 0.0257092, 0.0167313851, -0.0182320755, 0.0121634929, -0.00026389613, -0.00426183, 0.0149674146, 0.00087375741, -0.00322845951, -0.0202198327, 0.00301783625, 0.00182978949, 0.00866188109, 0.0273020379, 0.0090436358, -0.00769433053, 0.0139142983, 0.00773382233, -0.00933982432, -0.0321200453, 0.0227868035, -0.0151780378, -0.0209701769, 0.00458763773, 0.00693740323, -0.00847758539, 0.0176002048, 0.00508786784, -0.00856973324, -0.010366613, -0.0240505431, -0.00308859255, 0.00588428695, 0.0130191492, -0.010366613, -0.0130323134, 0.0029174611, 0.0117883198, 0.00448561693, -0.0121898204, 0.00451852707, -0.00449549, -0.00825379882, -0.00512077753, 0.00320377713, 0.00249950564, 0.00572302844, 0.00384716527, 0.0147041352, -0.00473573199, 0.027854925, -0.00240242132, 0.0171921235, -0.00649312, -0.00349832047, -0.0061771851, -0.00176067872, 0.0028664507, 0.00554202404, 0.00442637922, -0.0246165916, -0.00475547789, -0.000917363, 0.0147567913, -0.013558872, -0.0209570136, 0.00263608154, -0.026169939, 0.00203876733, 0.0173237622, -0.00766142085, -0.012268804, 0.000944513653, 0.0186664853, 0.00978081673, -0.00388336624, 0.00711511681, -0.0154544804, -0.00891199615, 0.0159152187, 0.00733890384, 0.0145724956, 0.00777989626, -0.000633103889, -0.00102514285, 0.00668728817, 0.0332784727, 0.0128875105, 0.0102481376, 0.0137958229, -0.00645362819, 0.00682550948, 0.00197459292, -0.0174027458, -0.0182715673, -0.0128151085, 0.00317744911, 0.00437372318, -0.00139949273, -0.00870137289, -0.00976107083, -0.00378792756, 0.0221022777, 9.51815528e-05, -0.0110116471, -0.0243664775, 0.0150727266, 0.0196274538, -0.00050516671, 0.0125320833, -0.0186401568, -0.00960310362, -0.0278812516, -0.00433423137, 0.00013955847, -0.00601263577, -0.00361679611, -0.0191272236, 0.00862238929, -0.019785421, 0.0183768775, -0.0228394587, -0.000614180695, 0.00347199268, 0.00403146073, -0.0349897854, -0.00500559295, 0.0150200706, 0.0151517102, -0.00583163137, 0.00747712515, -0.023445, -0.019245699, -0.00365957897, -0.00660501327, 0.0119923614, 0.0252484623, -0.0014291117, -0.0155729568, 0.00756269088, -0.000270683784, -0.0115382047, -0.0180214513, 0.0147831189, 0.000960145844, -0.00770091265, 0.0237346068, -0.00642400887, -0.00833278242, -0.025274789, 0.00239254837, 0.00699664094, -0.00919502135, 0.00426841155, -0.00714144437, 0.00783255231, 0.0177318454, -0.00188902731, -0.0104916701, -0.000996346702, 0.0188639443, 0.00953070167, 0.00253406097, 0.00242874934, -0.0194299947, 0.00531494617, -0.0186664853, -0.0145330038, 0.0256565437, 0.0030589737, -0.00276278472, 0.0111893602, 0.001688277, -0.00499572, 0.00288455118, -0.0162311532, -0.00867504533, 0.0112420162, -0.0044428343, 0.0107549494, -0.0166787282, -0.013506216, -0.0087606106, 0.0166918933, 0.00272822916, -0.0112749254, 0.00628578756, -0.0072665019, -0.0092476774, -0.00995853078, -0.00583821302, -0.00771407643, -0.00504508521, 0.00699005928, 0.0254722498, -0.0134667242, -0.00100868789, 0.00228559133, -0.00070056913, 0.0075495271, -0.0121700745, 0.00209965045, 0.000699335, 0.00142499793, -0.00779964216, -0.00298328092, -0.0212992765, -0.00167346757, 0.00129829487, 0.00709537091, -0.0460475087, 0.0074507976, 0.00127854897, 0.0067333621, 0.0184295345, -0.00424866565, 0.0052787452, -0.00167429028, -0.0145198405, 0.00612123823, -0.0276706293, -0.00793128181, -0.000490357226, -0.000128657077, -0.0135325436, 0.00399855059, -0.00573619269, -0.00717435451, 0.00966234133, -0.0161653347, 0.00692423945, -0.00808266737, -0.0286710896, -0.0227209833, 0.00870137289, -0.00595997972, 0.00075116806, -0.0018956092, -0.0075297812, -0.00787204411, -0.00313631189, -0.0124925915, -0.026169939, 0.0207858812, 0.0330151953, -0.00803001132, 0.0045613097, -0.00453827297, 0.0183110591, -0.00364641496, 0.00806292146, 0.0178239923, -6.48427522e-05, 0.00582504924, 0.0044790348, 0.011321, 0.0114987129, 0.00105229346, 0.00270190137, -0.0165602528, -0.0144276926, 0.0268413, -0.00985321868, 0.0158494, -0.0083262, 0.00119791972, 0.0159415472, -0.0187454689, -0.00449549, 0.0104521783, -0.00809583068, 0.00274468423, -0.00524254423, 0.0149674146, 0.00847758539, 0.0104521783, 0.0239847228, -0.0279865637, 0.00226090895, -0.0250115115, -0.00732574, -0.00940564461, -0.019140387, -0.0324623063, 0.00246824115, -0.0212992765, 0.018455863, -0.0066115954, -0.022563016, -0.0148621034, 0.000559468, -0.00927400496, -0.0253801011, -0.00199104799, -0.00122177938, -0.00414664531, 0.0235898029, 0.0164549407, -0.0320673883, -0.00487395376, 0.0187849607, 0.00421246514, -0.00862897094, -0.00595997972, 0.0117883198, -0.00545974961, 0.0121766562, -0.0127756167, -0.012716379, -0.0168103687, -0.0172052868, -0.00285657775, -0.0291713197, 0.00974132493, -0.0272493828, 0.0294609275, -0.0271440707, -0.0120055247, -0.0233133603, 0.0079247, -0.00627920544, -0.000628167356, 0.0231422298, 0.000101506419, -0.00752319908, -0.00958993938, 0.0220364574, -0.00315770321, -0.0149805788, -0.00248469622, 0.0189297646, 0.0277496129, -0.0233923439, 0.0168630239, -0.00203876733, 0.00247975974, -0.00184459891, -0.0157440882, -0.00863555353, 0.0251299869, 0.00406437041, -0.0116106067, 0.00124563905, -0.0045284, -0.00638122624, 0.0135193793, 0.0168630239, -0.0300927963, 0.021470407, -0.0177318454, 0.000174011, -0.00102020637, 0.0281182043, -0.0162048265, 0.000488711754, -0.00372210774, 0.00357730431, 0.0217336863, -0.0051964703, -0.0186138302, -0.0014941087, -0.00134354597, 0.0224708673, -0.0120121073, 0.0117685739, -0.0100309318, -0.00745737925, -0.0110248104, -0.00955703, 0.0328308977, 0.0120055247, -0.0138879707, -0.00866846275, 0.0348054916, -0.0164812692, 0.0140722655, 0.0121832388, 0.0139142983, -0.0396235, 0.0151253818, -0.017758172, 0.011031393, -0.0299348291, 0.00394589501, 0.0411768444, -0.00269367383, -0.000126805884, -0.0167972036, -0.0248403791, -0.00866188109, -0.00111235399, -0.00307542854, -0.00769433053, -0.016915679, -0.0237740986, -0.00408082549, 0.00498584704, -0.00722701, 0.00709537091, 0.0140196104, 0.0205226019, -0.0228789505, 0.000154059395, -0.00430132169, 0.000474313681, -0.00361679611, 0.0217600148, 0.0153886611, 0.008879086, -0.00387020223, -0.0123741161, -0.0249720197, 0.010583818, 0.00303100026, 0.0104982527, 0.00388007518, 0.00449549, -0.00599947153, -0.000337326288, -0.00793786347, 0.00814848673, 0.0175212212, -0.00156321947, 0.0199433882, -0.0202724878, 0.0250641666, -0.00357072218, 0.0128743462, -0.0111827785, -0.0131178796, -0.00776015036, 0.0119594513, 0.00701638684, 0.028987024, -0.0119791972, 0.000691930298, -0.00592707, 0.00342591875, 0.0182847306, 0.0140196104, -0.00237444812, -0.00246824115, -0.0146383159, 0.0121305827, -0.0142302336, -0.0230895728, 0.0139142983, -0.00375172659, -0.0239189025, -0.0211413093, -0.0243664775, 0.0238267556, -0.0141644133, -0.0139406258, 0.0128743462, -0.0029174611, -0.0160468593, -0.0184690263, 0.00801026542, -0.0317777842, -0.0168893524, 0.0117817381, -0.00384058338, -0.0211939644, -0.00635489821, -0.0188112892, -0.00375830848, -0.0013838606, 0.0112617621, -0.0140722655, 0.00228065485, -0.00720068254, -0.00561442599, 0.015730923, 0.0045613097, 0.0308036506, -0.00281873136, -0.00885275844, -0.00250279647, 0.00385045633, -0.0261304472, 0.00530836405, 0.014941087, 0.00561113516, 0.0156519394, 0.0257355273, 0.0133416662, -0.0315408297, -0.0214045867, 0.0402290411, 0.0168893524, -0.015533465, -0.00191206415, 0.025274789, -0.014493512, -0.00382741936, -0.00500888424, 0.00270190137, -0.012124001, -0.000551240519, -0.0118870493, -0.0196406171, 0.0168630239, 0.00678601768, -0.00706904288, -0.0106496383, 0.00824721623, -0.00422891974, -0.0221812613, 0.016915679, -0.00539722061, 0.00829329062, 0.00862897094, -0.0157177597, 0.00638122624, -0.00465345755, 0.0104126865, -0.0019926934, 0.0204172917, -0.00634502526, -0.00304910052, -0.00882643089, -0.0200750288, 0.0179819595, 0.00581188546, 0.000582093548, 0.0017080229, 0.0182584021, -0.00169650442, -0.00469294935, -0.0051964703, 0.00783913396, 0.0204699468, 0.00375830848, -8.6131331e-05, 0.00382741936, 0.0109458268, 0.0122885499, -0.00982689112, -0.00760218268, 0.00263608154, 0.0129533298, 0.00252089696, -0.00365299685, -0.003623378, 0.0177713372, 0.0177976638, 0.0135720354, -0.0260646269, -0.00347528351, 0.00492331851, 0.0015977748, 0.0190877318, -0.00175574224, 0.00429473957, 0.00546304043, -0.0181925837, -0.00992562063, 0.00661817752, -0.0245112814, 0.0224840324, -0.00681892782, 0.00790495425, 0.00045580187, 0.0153228417, 0.0176002048, -0.00835252833, -0.0101559898, 0.00905021746, -0.0119660329, 0.00163479836, 0.0133153386, 0.011478967, 0.0240637064, 0.0187059771, -0.0204041265, -0.000545481278, 0.0180214513, 0.0107417861, 0.00201902119, 0.0153886611, -0.000420423748, 0.0133943222, 0.00760218268, -0.00267392793, 0.00688474765, -0.0106167281, 0.0236292966]
|
17 Jan, 2024
|
Difference Between SEO and SEM
17 Jan, 2024
SEO is the act of improving the visibility of a website’s outcomes on specific search engines through unpaid forms of online advertising. It is used to increase traffic to a website by improving its rank on the search engine pages.
SEM is the act of improving the visibility of a website outcomes on specific search engines through paid advertisements. It includes Search Engine Optimization, contextual advertising, AdSense, social networking, pay-per-click (PPC), AdWords, and so on.
Difference Between SEO and SEM
Difference Between SEO and SEM
SEO
SEM
SEO stands for Search Engine Optimization.
SEM stands for Search Engine Marketing.
It is a part of SEM.
It is used for traffic generation and is a superset of SEO.
Results will take time to appear.
Immediate result.
Suitable for low-budget companies.
Suitable for big-budget companies.
The Click-Through Rate (CTR) of SEO is higher than SEM.
The Click-Through Rate (CTR) of SEM is lower than SEO.
Traffic potential is unlimited.
Traffic potential is limited depending on the budget.
It is inexpensive.
It is expensive.
Long-term benefits.
Short-term benefits.
SEO improves the visibility of the website.
SEM improves the sales of a small business.
Competition is lesser due to the requirement for organic content.
Competition is higher in the targeted areas.
The SEO search result doesn’t target any audience.
SEM search result targets the selected audience.
Example: Backlinks creation
Example: Google Ads
Interesting Facts:
Only 30% of new businesses state they use SEO for marketing. A simple 12% use PPC promotions(TNW News).
47% of digital marketers state SEO is one of their best strategies but 39% also recognize it as one of the most difficult.(TNW News)
Conclusion
In this article we have learned about the difference Between SEO and SEM, SEO or Search Engine Optimization, it is a method of improving website ranking and visibility on search engine. Whereas SEM or Search Engine Marketing is paid online advertising to boost visibility and drive targeted traffic.
Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
|
CSS/CSS Tutorial/How to Play and Pause CSS Animations using CSS Custom Properties ?/CSS pause-before Property/p5.js | pause() Function/Node.js Stream readable.pause() Method/Node.js Stream readable.resume() Method/Node.js Readable Stream resume Event/Node.js Readable Stream close Event/Node.js Stream readable.destroyed Property/Node.js Stream writable.destroyed Property/Node.js Stream writable.writableFinished Property/Node.js http.ServerResponse.writableFinished Property/Node.js http.ServerResponse.getHeader() Method/Node.js http.ServerResponse.sendDate Method/Node.js Http2ServerResponse.sendDate Method/Node.js Http2ServerResponse.getHeaderNames() Method/Node.js Http2ServerResponse.writeHead() Method/Node response.writeHead() Method/Node.js response.writeContinue() Method/Different types of module used for performing HTTP Request and Response in Node.js/How to get server response from an AJAX request using jQuery ?/How to Replicate Postman POST API Request using AJAX ?/How To Export Specific Request To File Using Postman?/Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?/How to Access Request Parameters in Postman?/What are pre-request scripts in Postman, and how are they used?/How to create a new request in Postman?/How to create and send POST requests in Postman?/Explain the use of environment variables in Postman requests./How to organize requests within a Postman Collection?/How to handle Conditional Requests/Branching in Postman ?/How can you view different types of responses in Postman?/HTTP status codes | Server Error Responses/Express: Specify HTTP status code when throwing error in service/Throwing an Error “cannot read property style of null” in JavaScript/Node.js Error: Cannot GET/ from Running the URL on the Web Browser/How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?/How to Display JavaScript Variable Value in Alert Box ?/How to write an Alert Box in JavaScript ?/How to Customize the Position of an Alert Box using JavaScript ?/How to Change Button Label in Alert Box using JavaScript?/How to change the style of alert box using CSS ?/How To Create an Alert Message Box using CSS?/How to set alert message on button click in jQuery ?/How to set radio button checked by button click in AngularJS ?/Alternative of ng-checked to get the checkbox’s state in AngularJS/JavaScript- Make a Textfield Required if a Checkbox is Checked/How to use TextField Component in Material UI ?/How to use Slider Component in Material UI ?/How to use AppBar Component in Material UI ?/React MUI AppBar API/React MUI ToggleButtonGroup API/How to use ToggleButtonGroup Component in ReactJS ?/How to use ButtonGroup Component in ReactJS?/React Suite Button <ButtonGroup> Props/How React handle or restrict Props to certain types, or require certain Props to exist ?/How to Restrict User to Enter Date Manually in Date Field using AngularJS ?/How to directly update a field by using ng-click in AngularJS ?/What is the use of a double-click event in AngularJS ?/How to get original element from ng-click in AngularJS ?/How to get relative click coordinates on the target element using JQuery?/How to create animations using relative value in jQuery ?/Design a Progress Bar with Smooth Animations using Tailwind CSS/Foundation CSS Progress Bar/Onsen UI CSS Component Basic Progress Bar/Onsen UI CSS Component Basic Card/Onsen UI CSS Component Basic Popover/React Suite Popover <Popover> Props/React Suite Popover Hide Arrow Indicator/React Suite Popover Follow Cursor/React Suite Tooltip Follow Cursor/React Suite Tooltip ts:Placement Props/React Suite Dropdown ts: Placement Props/React Suite Dropdown Dropdown with Icon/React Suite Icon extension Font awesome icons/How to use Font Awesome Icon as a Cursor?/How to Use Font Awesome On Your WordPress Website?/How to Add Custom Logo to WordPress Website ?/How to add FTP like file manager to your WordPress Website ?/How to Setup a Subdomain on Your WordPress Website ?/How To Publish Your Website On Wordpress?/How to Publish Your Front-End Over Surge Cloud Platform ?/How to upload Laravel App to Heroku Cloud Application Platform/How To Deploy a Django Application to Heroku with Git CLI?/How to Deploy a Basic Static HTML Website to Heroku?/How to use Azure Static Web Apps to Deploy an Angular App ?/How to deploy simple frontend server-less (static) React applications on Netlify/How to make a Post request from frontend in react-native ?/How to Post JSON Data from JavaScript Frontend to FastAPI Backend?/How to Post JSON Data to Server ?/JSON Modify an Array Value of a JSON Object/How to Update JSON Object Value Dynamically in jQuery?/How to dynamically update SCSS variables using ReactJS?/Difference Between CSS and SCSS/Create Angular Application with SCSS/Adding Angular Material Component to Angular Application/Onsen UI CSS Component Material Fab/Onsen UI Fab CSS Components/Onsen UI Range CSS Components/Onsen UI Modal CSS Components/How to disable click outside modal to close modal in bootstrap ?/Which tag is used to display additional information when we click to open or close on demand in HTML ?/Which tag is used to define the header for HTML document ?/What is usually included in the header of an HTML document ?/How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?/Tailwind CSS Ring Offset Width/How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?/How to change background color of canvas-type text using Fabric.js ?/How to add vertical skew to a canvas-type text using Fabric.js ?/How to lock vertical scaling of a text canvas using Fabric.js ?/How to lock rotational movement of a canvas circle using Fabric.js ?/How to scale controlling border of a canvas circle using Fabric.js ?/How to set stroke width of a canvas circle using Fabric.js ?/Fabric.js ActiveSelection stroke Property/Fabric.js ActiveSelection cornerStrokeColor Property/Fabric.js | Ellipse cornerStrokeColor Property/Fabric.js | Ellipse cornerColor Property/Fabric.js Image cornerColor Property/Fabric.js | Image borderColor Property/Node.js fs.utimesSync() Method/Node.js | os.tmpdir() Method/Node.js | os.userInfo() Method/Node.js | os.version() Method/How to make bootstrap version 2 tab dropdown?/How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?/How to design checkbox selection for webpage using jQuery EasyUI ?/How to design datalists for mobiles using jQuery EasyUI Mobile ?/How to design menu using jQuery EasyUI Mobile ?/EasyUI jQuery menu widget/EasyUI jQuery datebox widget/How to make use of multi-mode jtsage-datebox plugin?/Step by step guide to make your first WordPress Plugin/Explain MonsterInsight Plugin in WordPress/How to Setup All In One SEO(AIOSEO) Plugin for WordPress?/WordPress SEO: Step-by-Step Guide, Benefits and Plugin/Difference Between Black Hat SEO and White Hat SEO/White Label Local SEO Services : A Complete Guide/SEO Checker | Complete SEO Audit in 9 Steps/Semrush Backlink Checker/Basics of SEMrush/Ubersuggest vs SEMrush: Which one is Better?/Semrush Vs SpyFu | Which Is the Best Tool In 2024?/Semrush in 2024: Exploring the Pros and Cons/Difference between SE Ranking and SEMrush/Difference Between SEO and SEM
|
https://www.geeksforgeeks.org/difference-between-seo-and-sem/?ref=next_article
|
CSS
|
Difference Between SEO and SEM
|
How to make a Post request from frontend in react-native ?, Fabric.js ActiveSelection cornerStrokeColor Property, Node.js http.ServerResponse.getHeader() Method, How to use Azure Static Web Apps to Deploy an Angular App ?, Adding Angular Material Component to Angular Application, Difference between SE Ranking and SEMrush, Node.js Stream readable.destroyed Property, Node.js http.ServerResponse.writableFinished Property, Branching in Postman ?, Foundation CSS Progress Bar, Node.js | os.userInfo() Method, Onsen UI CSS Component Basic Progress Bar, WordPress SEO: Step-by-Step Guide, Benefits and Plugin, CSS pause-before Property, React Suite Popover Follow Cursor, How to Play and Pause CSS Animations using CSS Custom Properties ?, How to get relative click coordinates on the target element using JQuery?, How to use ToggleButtonGroup Component in ReactJS ?, Node.js Stream writable.destroyed Property, from Running the URL on the Web Browser, How to create and send POST requests in Postman?, How To Publish Your Website On Wordpress?, Fabric.js | Ellipse cornerStrokeColor Property, How to lock rotational movement of a canvas circle using Fabric.js ?, Node.js Readable Stream resume Event, Why Sending Postman GET Request Slower than Accessing the Same Endpoint in Browser?, Node response.writeHead() Method, What is the use of a double-click event in AngularJS ?, Fabric.js Image cornerColor Property, How to design menu using jQuery EasyUI Mobile ?, React Suite Tooltip Follow Cursor, How to deploy simple frontend server-less (static) React applications on Netlify, How React handle or restrict Props to certain types, or require certain Props to exist ?, How to Restrict User to Enter Date Manually in Date Field using AngularJS ?, How To Export Specific Request To File Using Postman?, Node.js Error: Cannot GET, How to set alert message on button click in jQuery ?, How to change the style of alert box using CSS ?, What is usually included in the header of an HTML document ?, How to Display Changed Browser URL Without Reloading Through alert using JavaScript ?, React Suite Tooltip ts:Placement Props, Design a Progress Bar with Smooth Animations using Tailwind CSS, How to set radio button checked by button click in AngularJS ?, Different types of module used for performing HTTP Request and Response in Node.js, React MUI ToggleButtonGroup API, Step by step guide to make your first WordPress Plugin, How to lock vertical scaling of a text canvas using Fabric.js ?, React MUI AppBar API, Basics of SEMrush, Node.js response.writeContinue() Method, How to directly update a field by using ng-click in AngularJS ?, CSS Tutorial, Fabric.js ActiveSelection stroke Property, EasyUI jQuery datebox widget, How to Add Custom Logo to WordPress Website ?, Onsen UI CSS Component Basic Card, Ubersuggest vs SEMrush: Which one is Better?, Onsen UI Fab CSS Components, Semrush Vs SpyFu | Which Is the Best Tool In 2024?, How to Create Multiple Selection Dropdown with Checkbox in Bootstrap 5 ?, Fabric.js | Ellipse cornerColor Property, Node.js http.ServerResponse.sendDate Method, How to Replicate Postman POST API Request using AJAX ?, Explain MonsterInsight Plugin in WordPress, What are pre-request scripts in Postman, and how are they used?, How to Use Font Awesome On Your WordPress Website?, How to Display JavaScript Variable Value in Alert Box ?, How To Create an Alert Message Box using CSS?, Node.js Stream readable.pause() Method, Create Angular Application with SCSS, How to Access Request Parameters in Postman?, How to design checkbox selection for webpage using jQuery EasyUI ?, How to Post JSON Data from JavaScript Frontend to FastAPI Backend?, How to use Slider Component in Material UI ?, HTTP status codes | Server Error Responses, How To Deploy a Django Application to Heroku with Git CLI?, How to Post JSON Data to Server ?, How to dynamically update SCSS variables using ReactJS?, EasyUI jQuery menu widget, Difference Between CSS and SCSS, JavaScript- Make a Textfield Required if a Checkbox is Checked, How to Update JSON Object Value Dynamically in jQuery?, How to Publish Your Front-End Over Surge Cloud Platform ?, How to get original element from ng-click in AngularJS ?, React Suite Dropdown ts: Placement Props, Which tag is used to define the header for HTML document ?, How to make use of multi-mode jtsage-datebox plugin?, Node.js Stream readable.resume() Method, Fabric.js | Image borderColor Property, How can you view different types of responses in Postman?, Onsen UI Modal CSS Components, How to upload Laravel App to Heroku Cloud Application Platform, How to Change Button Label in Alert Box using JavaScript?, How to use ButtonGroup Component in ReactJS?, Node.js fs.utimesSync() Method, Onsen UI CSS Component Basic Popover, How to scale controlling border of a canvas circle using Fabric.js ?, Node.js Readable Stream close Event, How to Setup All In One SEO(AIOSEO) Plugin for WordPress?, SEO Checker | Complete SEO Audit in 9 Steps, How to use AppBar Component in Material UI ?, How to make bootstrap version 2 tab dropdown?, Semrush Backlink Checker, Node.js | os.version() Method, How to Set Offset an HTML Anchor Element to Adjust Fixed Header in CSS ?, Explain the use of environment variables in Postman requests., How to Deploy a Basic Static HTML Website to Heroku?, How to disable click outside modal to close modal in bootstrap ?, How to use Font Awesome Icon as a Cursor?, How to get server response from an AJAX request using jQuery ?, How to handle Conditional Requests, React Suite Dropdown Dropdown with Icon, Difference Between SEO and SEM, How to set stroke width of a canvas circle using Fabric.js ?, JSON Modify an Array Value of a JSON Object, Express: Specify HTTP status code when throwing error in service, How to use TextField Component in Material UI ?, Onsen UI Range CSS Components, How to add vertical skew to a canvas-type text using Fabric.js ?, White Label Local SEO Services : A Complete Guide, Node.js | os.tmpdir() Method, Tailwind CSS Ring Offset Width, Alternative of ng-checked to get the checkbox’s state in AngularJS, React Suite Popover Hide Arrow Indicator, Node.js Http2ServerResponse.sendDate Method, How to organize requests within a Postman Collection?, p5.js | pause() Function, Semrush in 2024: Exploring the Pros and Cons, Node.js Http2ServerResponse.getHeaderNames() Method, How to change background color of canvas-type text using Fabric.js ?, How to design datalists for mobiles using jQuery EasyUI Mobile ?, Node.js Http2ServerResponse.writeHead() Method, How to add FTP like file manager to your WordPress Website ?, How to add Background-Color for Text Width Instead of Entire Element Width using CSS ?, Difference Between Black Hat SEO and White Hat SEO, Which tag is used to display additional information when we click to open or close on demand in HTML ?, How to Customize the Position of an Alert Box using JavaScript ?, Throwing an Error “cannot read property style of null” in JavaScript, React Suite Icon extension Font awesome icons, React Suite Button <ButtonGroup> Props, CSS, Node.js Stream writable.writableFinished Property, How to create animations using relative value in jQuery ?, How to write an Alert Box in JavaScript ?, How to Setup a Subdomain on Your WordPress Website ?, How to create a new request in Postman?, React Suite Popover <Popover> Props, Onsen UI CSS Component Material Fab
|
GeeksforGeeks
|
[-0.038348835, -0.0111529445, -0.0183681808, 0.0150964949, 0.0281832386, 0.00165775174, 0.00556186633, 0.0054917587, -0.0680978075, -0.0031227076, 0.0076475665, -0.00882771052, -0.0218385048, -0.0407558605, -0.0229018033, -0.0188589338, 0.0141266733, 0.000896062236, 0.0154820867, 0.0140916193, -8.46220137e-05, -0.00375367561, -0.0199923385, -0.0264772885, -0.0335815214, 0.0176437367, -0.0117371744, 0.0310342796, -0.0226213727, 0.0478600934, 0.0133321211, 0.00503605977, 0.0234392937, -0.00411881926, -0.00976832, 0.0153769245, 0.0152250249, -0.0173516218, 0.00491921371, 0.0297723431, 0.0146407951, 0.0280430242, -0.0191744175, -0.00150147022, -0.0527676232, 0.00559107773, -0.0228901189, -0.0551045425, 0.020634992, -0.00777609693, -0.00167381798, 0.0280897617, 0.0177138429, 0.0356146395, -0.0054041245, 0.0238833092, 0.0246544927, -0.0134139135, -0.0355211645, 0.0090789292, 0.0450090542, -0.0132269599, -0.0446818843, -0.0280430242, -0.0492622443, 0.0216866061, -0.0233341325, -0.0369700529, 0.00641484186, 0.00164752768, -0.0267343502, 0.0344695523, 0.0189407263, -0.00254432019, 0.00490460824, 0.0194665324, 0.0523002408, -0.00389389065, -0.00915487856, 0.0374140665, 0.0102766, 0.0242572166, 0.0159261, 0.00190458877, 0.0648728609, -0.0245610159, -0.0147342719, -0.0445416681, 0.0170244519, -0.0243039541, -0.00633304939, -0.0366428867, 0.0411765054, 0.000939879508, -0.0211724825, 0.0141383577, 0.0220371429, 0.0299359281, -0.0151081793, 0.0365727767, 0.0297723431, -0.0455465466, 0.00602340791, 0.00494550401, 0.0343293361, 0.00369817391, -0.011789755, -0.0147109032, 0.00860570278, 0.0320625231, 0.021487968, -0.0338152125, -0.0173516218, 0.0405221693, -0.0238132011, 0.00531356875, 0.00694064843, -0.0420645364, 0.0531415306, 0.0120000774, -0.072911866, -0.0106329797, -0.00209446345, 0.0123506151, -0.0216982905, 0.0440742858, -0.00975663587, -0.0131568518, 0.0539828204, -0.0225045271, 0.0138462428, -0.00258667697, 0.0214996524, 0.0307071116, 0.000945721753, -0.0403352156, 0.0313380808, -0.0154119786, -0.0119767087, -0.0323429555, 0.00741971703, -0.0135541279, 0.02960876, 0.0111120483, 0.00134153734, 0.00373614882, 0.00113048439, 0.0538893454, -0.0135190748, 0.00583937531, -0.0204714071, -0.0462008826, 0.00251802988, 0.00846548751, 0.00391726, -0.0213477518, 0.0284403, -0.00667190272, -0.0064849495, -0.00120789488, 0.0217099749, -0.0148277488, -0.0109484643, 0.0528143607, -0.0293984376, 0.0013042927, -0.0158326235, -0.0111704711, -0.0140565662, 0.0389564335, -0.020436354, 0.00702244043, -0.0341891199, -0.0304500498, 0.00351122022, -0.0223876815, 0.0267109796, -0.0336749963, -0.0178657435, -0.00444014557, -0.0456867591, -0.000527997559, -0.0252387226, -0.00100122357, 0.00315484032, -0.0274587944, 0.0300527737, 0.0319223106, 0.00319573632, 0.0216982905, -0.0272718407, -0.0048929234, 0.0609468408, 0.0230887569, 0.0110711521, 0.0223876815, -0.0575349368, 0.0147109032, 0.0379048213, -0.0327869691, -0.0291413758, -0.0123389307, -0.00649663387, 0.0281131323, -0.00852391124, -0.0139280353, 0.0354510546, 0.00292699062, 0.000475416891, 0.0548708513, -0.0277859624, 0.0452193767, -0.0300294049, -0.00866412558, 0.0209387913, -0.0100604352, -0.00954047, -0.00677122176, -0.00979753118, 0.0130049521, -0.00609351555, -0.00719770975, 0.0249349214, 0.000748544291, -0.0392602347, 0.000853705627, -0.012479146, -0.0126193613, 0.0173633061, 0.00249320013, -0.000671499, 0.0320625231, -0.0262202267, -0.0297022369, -0.022598004, 0.0159962084, 0.0205298308, 0.0125609376, -0.0212659594, 0.04250855, 0.00649663387, 0.0195716936, -0.00607014634, 0.00547423214, -0.0405922793, -0.0268278271, 0.0296554975, -0.0363624543, -0.0146407951, 0.0125025148, -0.0242104772, -0.0100195389, -0.0530480556, -0.00363390846, -0.0394471884, 0.0124674607, 0.0591707826, -0.0158443078, -0.0157274622, -0.0272251032, 0.0236613024, 0.00913151, 0.0247947071, 0.00910229795, -0.00174246496, 0.0153769245, 0.0318288319, 0.00297080795, -0.0282299779, 0.00778193912, -0.00951125938, -0.0225045271, -0.0106388219, 0.0462242514, -0.0320625231, -0.00952294376, 0.0186953489, -0.0213711206, 0.00657258369, 0.0274120569, -0.0180760659, -0.0434199497, 0.00186077144, 0.00392602338, -0.0253555682, -0.00603509229, 0.00628631143, 0.0153418714, -0.0304500498, 0.0262435973, -0.0147342719, -0.000758768292, 0.0240702629, 0.0327402316, 0.056787122, 0.0110945217, 0.00105307403, -0.000961057784, 0.00774104334, -0.00798642, -0.00642068405, 0.0206583608, 0.0425319187, 0.021780083, -0.0200624466, 0.022235781, 0.0147576416, -0.0155054554, 0.0209855288, -0.0305201579, 0.0245843846, 0.0239183623, 0.0501035377, 0.0239300467, -0.00396984071, 0.0197937, 0.0117722275, 0.0166972838, -0.0222240966, -0.0372271128, -0.0265006572, -0.0101597542, -0.0238248855, 0.0376243889, 0.0230186488, 0.00197761739, -0.0291647445, -0.0122337695, 0.0318054631, 0.0114567438, 0.00388804846, -0.0455465466, -0.0224227346, 0.0152250249, 0.0238015167, -0.0227148496, -0.00987932365, 0.0386058949, -0.00963978935, -0.0134139135, 0.0214295443, -0.0051061674, -0.016475277, 0.0143369958, 0.0326000154, -0.0074606128, -0.0155872479, 0.0243039541, 0.0116320131, -0.000856626779, 0.000617822865, -0.0164519083, 0.0138462428, 0.00256330776, 0.00192503678, -0.0240468923, -0.0500567965, -0.0141734118, -0.00647910684, 0.00387636386, 0.0454530679, -0.0277625937, 0.00592993107, 0.00611104257, -0.00687638298, -0.00978584681, 0.00086685078, 0.0305201579, 0.0261734892, -0.0149212256, -0.0278794393, -0.000302886561, 0.0360119157, -0.0408259705, -0.0250283983, 0.0311978646, -0.00822011102, 0.00342650712, -0.00404871162, 0.0259865355, 0.0200040247, 0.0335581526, 0.0278093331, 0.0325766467, -0.0194899011, -0.0166972838, 0.0178891122, -1.70134063e-05, -0.0295853913, 0.0220488273, -0.0163116921, -0.00385007355, -0.00296350499, -0.0193263181, 0.00435251091, 0.000908477115, -0.014150043, 0.000315849175, 0.0281598698, -0.0301228818, -0.00934183225, 0.0120935543, -0.0157625172, 0.010118858, -0.00592993107, -0.00928340945, -0.0020930029, -0.0545436814, -0.0468552187, 0.0150964949, -0.0117371744, -0.0297022369, -0.0265473966, 0.0173866749, 0.00238365703, 0.0199572854, -0.0353575796, 0.0030526, 0.034913566, 0.0278327018, -0.0424618125, -0.0187537726, 0.00629215362, -0.0104577113, 0.0241637398, 0.0428590886, -0.00364267197, 0.0205415152, 0.0182863884, 0.0170711912, -0.0379749276, -0.0268979333, 0.00574005628, 0.00996111613, -0.000635349774, 0.0095463125, 0.0335815214, 0.0167673919, -0.00823179632, -0.0116378553, 0.00362806628, 0.0127128372, 0.0162649546, -0.0250050295, -0.0901115835, -0.0367597304, -0.033044029, 0.0108666718, -0.0506176576, 0.00179358514, -0.0135658132, -0.0256126281, -0.0354043171, 0.0442612395, 0.0542165115, -0.00852391124, 0.0149562797, -0.0224928427, 0.0296554975, 0.000719332776, 0.031501662, 0.0417139977, 0.0229719114, -0.039073281, 0.0256593674, 0.0112873176, -0.0397276171, -0.0111763133, -0.00795720797, -0.00415387284, 0.0226564258, -0.0431862585, 0.00947620533, 0.0305201579, -0.0117955972, 0.0279028099, 0.0214762818, -0.0214412287, 0.0405221693, 0.0158910472, 0.00990853552, 0.0345396586, -0.0204830915, 0.010644665, 0.00762419729, 0.0116436975, 0.0409895554, 0.0121636614, -0.00495134667, -0.0401248932, -0.040615648, 0.0173282512, -0.0334646739, -0.0258229505, 0.0218268204, -0.00162561901, -0.0153769245, -0.0433498397, -0.0111763133, -0.00354627403, -0.00908477139, 0.0265707653, -0.0267109796, -0.00220984872, -0.0272017326, -0.0197469629, -0.0195249561, 0.0530947931, 0.0230887569, 0.0215113368, 0.0465514213, 0.0200507622, -0.0311511252, 0.030590266, -0.0036864893, 0.0353342108, 0.0168024451, 0.0076475665, 0.0137060285, -0.00761251245, 0.0211491138, 0.0128647378, 0.00338853197, 0.00588027155, 0.0216866061, -0.0378580838, 0.0208219457, -0.0103642344, 0.00284811971, -0.0552914962, -0.00882186834, -0.00437295903, 0.028884314, 0.0214996524, -0.0240702629, 0.0116495397, -0.00347908773, -0.000744162535, 0.00386175816, -0.0164051689, -0.0218268204, 0.0137995044, -0.0245610159, -0.0523469783, -0.0135190748, 0.0037157007, 0.02757564, -0.0100312233, 0.00330089754, 0.0135073904, 0.0435134247, 0.00509448256, 0.00206963369, 0.00212659594, 0.00290216086, 0.0104460269, -0.0246544927, 0.019618433, 0.032389693, 0.00425319187, 0.00487539638, 0.0245610159, 0.0182279665, 0.00954047, -0.0143369958, -0.0106388219, 0.0274354257, 0.0158910472, -0.0233458169, 0.00304967887, -0.0113106864, 0.0173048824, -0.00504774414, -0.0111821555, -0.0311043877, 0.0123155611, 0.0212425906, -0.00874591805, 0.021780083, 0.0149913337, 0.000617457728, 0.00753656263, 0.0137293972, 0.0280430242, 0.0191744175, 0.0012042434, 0.0174334142, -0.0140448809, 0.00375075452, 0.01493291, 0.0152600789, 0.0130400062, -0.00225366605, -0.0117955972, 0.00494258292, -0.00351414154, -0.0144304726, -0.0110536255, -0.0353108421, -0.0183564965, 0.0209621601, -0.00562905287, -0.000898983388, 0.0366662554, -0.00906724483, -0.0121402927, -0.00164606713, 0.0222474653, 0.0195015855, 0.0328570753, -0.0455231741, 0.01365929, 0.0153068174, -0.0486546457, 0.0208102614, -0.00981505867, 0.0201442391, -0.00514414208, -0.0111237327, -0.0124207232, -0.00499516353, 0.0151782865, -0.00357548567, 0.0209972151, -0.0107965646, 0.00870502181, 0.0097332662, -0.0142318346, 0.0101831229, -0.0194431636, -0.0291413758, -0.0175619442, -0.00161685562, -0.000822303235, 0.018601872, -0.0165921226, -0.0151899718, -0.00920161698, -0.0116612241, -0.031314712, -0.0129231606, -0.0105979266, 0.00965731684, 0.101889655, 0.000117667507, 0.00183448114, 0.00979753118, 0.0364325605, -0.0163116921, -0.000435616239, 0.013752766, -0.0189524107, -0.0322494768, -0.000425027072, -0.0137177128, -0.014967964, -0.00857065, 0.00493089855, 0.0132386442, 0.0142668886, 0.0136125516, -0.0160312615, 0.00244354061, 0.00219962467, -0.0202026628, -0.013624236, -0.00342358579, -0.012607676, 0.016603807, 0.00705749448, 0.0232640263, -0.0185668189, -0.000734668807, 0.00747814, -0.00837785378, -0.0146524804, 0.0125258844, 0.0152133405, -0.0129582137, -0.00318697281, 0.00552389165, -0.0128764221, -0.0121636614, -0.00633889204, 0.0183798652, -0.00562613178, -0.0332777202, 0.0131568518, -0.0148511184, -0.0160312615, 0.0196301173, -0.00254285964, 0.0197586473, -0.0275289025, 0.000721523655, -0.00977416243, -0.010971833, 0.00386760035, -0.00355795864, 0.0130750602, 0.00677122176, -0.00891534518, -0.0219553504, 0.000942800601, -0.0167557076, 0.0329271853, -0.00950541627, -0.0494024605, 0.012444092, -0.0146524804, 0.00731455535, -0.0111237327, -0.00636226125, 0.00414510956, 0.0101247, -0.0177488979, 0.00859986059, -0.0127362069, -0.0171880368, 0.00415095175, 0.0235094018, -0.00904387515, -0.0059737484, -0.0063564186, -0.0145356338, 0.0387928486, 0.00119255879, -0.0211491138, -0.00133058312, -0.00620451896, -0.0138696125, 0.0145823723, -0.00174538617, -0.0168258138, -0.00571960863, -0.00754824746, 0.00444014557, 0.00877513, 0.0109017259, 0.0147459572, -0.0169777144, -0.0101305423, 0.00955215469, 0.0411531366, -0.0238599405, 0.0134255979, 0.053608913, 0.00994358864, 0.00999616925, -0.0151549177, -0.00526390923, -0.0423683338, 0.00859401841, -0.0358950719, 0.00604093494, -0.0669293478, -0.028066393, -0.0170478225, 0.0221890435, 0.0440275483, 0.0202026628, 0.000963978935, 0.0223292578, -0.00655505667, -0.000860278204, -0.0115151666, -0.0315717719, 0.0234743487, 0.0243039541, 0.0140098277, 0.0275522713, -0.00979753118, 0.0468552187, -0.00368356798, -0.034025535, 0.032132633, -0.0214645974, -0.0239300467, -0.0165687539, 0.0351005197, -0.00993774645, 0.0219670348, 0.00063571491, -0.0120818699, -0.012151977, -0.0219202973, 0.0404286943, 0.00619867677, 0.00608183071, -0.0081850579, 0.0146407951, 0.00732039753, 0.027084887, 0.0360820256, -0.00964563154, -0.0153652402, -0.0363390855, -0.0415504128, -0.0223058891, -0.0481405258, 0.00061526685, 0.0117488587, -0.010282442, 0.0252854601, -0.00330381887, -0.000574735925, -0.0140215121, -0.0213010143, -0.00677122176, 0.0237898324, 0.0182980727, -0.0107147722, -0.0273886863, -0.00555602415, 0.0165804382, 0.00455114897, 0.00661348, 0.0104284994, 0.00751903607, 0.00206233072, 0.000572545105, -0.0137644513, -0.00350245694, -0.0331608765, 0.00375367561, 0.00869333744, -0.0111295749, -0.00375075452, 0.0281365011, 0.0188005101, 0.0170127675, -0.0146057419, 0.00751903607, -0.00637394562, -0.045125898, 0.0168608688, 0.0282533467, -0.0261267517, 0.0171880368, -0.00680627581, -0.0125609376, -0.0102064926, -0.0113515826, -0.0221189354, 0.0123622995, -0.00754824746, 0.00336516299, -0.0322027393, 0.0306370035, 0.00826684944, 0.0394471884, 0.0209621601, 0.00237781485, 0.00202289526, -0.0112113673, 0.027739225, 0.00863491464, -0.00934183225, 0.0113691092, -0.00928340945, 0.0236846711, 0.0371336378, 0.00538659748, 0.00307889027, 0.0119650234, 0.00699907122, 0.0155171398, -0.000877805054, -0.0163350608, -0.0343760736, -0.00986179709, -0.0318288319, -0.0194081105, 0.0083428, 0.0158793628, 0.0158092547, -0.00410129223, 0.00932430569, 0.023287395, -0.0286739916, 0.0292582214, 0.00254285964, -0.0471590199, -0.0394471884, 0.00337100518, 0.0426955037, -0.0354276858, -0.0123389307, 0.0159962084, -0.00959305093, -0.0487948619, 0.00564073725, -0.00707502151, -0.0120935543, 0.0152483946, 0.0153301861, 0.0129582137, -0.012444092, -0.0128179993, -0.0031081019, 0.0152133405, 0.036549408, 0.00406331755, -0.0299592968, -0.00874007586, -0.0204480384, 0.016241584, -0.00675953738, -0.0170711912, 0.00679459097, 0.0109017259, -0.00333010918, -0.00994943082, 0.0313380808, -0.00133861625, 0.0135190748, -0.0261734892, -0.0231354944, -0.0173866749, 0.0290712677, 0.0295386519, -0.0160546321, -0.0333945677, 0.0141033046, -0.0251919832, 0.0308473259, 0.0180877503, 0.0172230899, -0.0272017326, -0.00186807441, -0.0181812271, 0.0273653176, -0.00109250948, -0.00118598621, -0.0171413, -0.00445475103, -0.032950554, 0.0204246696, -0.0318755694, 0.00511493068, 0.050991565, -0.00141018431, 0.0121870311, 0.00624541519, -0.0275055319, -0.0131217986, 0.0254023056, 0.0076475665, -0.00833695754, 0.00334471487, -0.00636810344, -0.000609789742, -0.00413926737, -0.0372504853, 0.0197235942, -0.0551980175, -0.0216281824, -0.00440509152, -0.01264273, 0.00428240327, 0.0206700452, -0.0122688226, 0.00108082488, 0.0158326235, 0.0447286218, 0.000561225635, -0.0226914808, 0.000640096609, -0.0211023763, 0.00825516507, 0.0227031652, 0.00813831948, 0.0120117618, -0.0208920538, -0.0171997212, 0.00954047, -0.0180410128, -0.0360820256, 0.00356672215, -0.0143369958, -0.0307071116, -0.0249816608, 0.00874007586, 0.00336516299, 0.0527208857, -0.0344695523, -0.00176583417, -0.0554784499, -0.0358483307, 0.0127478912, -0.0204830915, 0.00479944656, -0.0225746352, 5.85941279e-06, -0.0193496868, 0.0140799349, 0.00764172385, 0.00949373189, 0.00404579053, -0.0146057419, -0.0154119786, -0.0152834477, -0.0333945677, -0.00484910607, 0.00366896228, 0.00847133063, 0.011561905, -0.00230770721, 0.003914339, 0.0130283218, 0.0218034517, -0.0107965646, -0.0262903348, 0.0159144159, 0.00847133063, 0.000874883903, -0.019817071, -0.0236613024, 0.0136125516, -0.0167907607, -0.0074898242, -0.0254023056, -0.00936520193, 0.0312913395, 0.0128647378, 0.0272017326, 0.0283468235, -0.0111704711, -0.0175502598, -0.00440509152, 0.000963978935, 9.38418889e-05, 0.00781115051, -0.0127362069, 0.0100604352, -0.00357548567, -0.0381385125, -0.0154937711, 0.0103233382, -0.0188939869, -0.0147109032, -0.00253701746, -0.00372738531, 0.0206583608, 0.0221539885, -0.0179007966, -0.00391141744, -0.0128530525, -0.00458036084, 0.00325415935, -0.0178190041, -0.00937104411, 0.00150731253, -0.000839830143, -0.0326701216, 0.0246544927, 0.0114216898, -0.0153418714, -0.0144655267, -0.00609935774, 0.0147810103, 0.0284403, -0.0246544927, 0.00718602492, -0.0148978569, 0.00390265416, 0.0306837428, -0.00323663233, -0.00577803142, 0.0175969973, 0.0143603655, -0.0214061756, 0.00419476908, -0.0366195142, -0.0188005101, -0.00973910838, -0.00955215469, -0.0116028013, -0.00960473623, -0.0203428771, -0.00753072044, -0.0192211568, 0.0153068174, 0.0152016561, 0.00370985852, -0.0127595756, -0.016930975, -0.0186836645, 0.00295035983, -0.035567902, -0.0141617274, -0.00242747436, 0.0177372135, 0.0173399374, 0.00389389065, 0.0253088288, 0.000946452084, 0.0549175888, -0.00817921571, 0.00175707077, -0.00455699163, 0.00349369342, 0.0208219457, 0.013624236, 0.00536030717, 0.0257061049, -0.011398321, 0.0135424435, 0.0179358516, -0.00258521619, 0.0143253114, 0.00375367561, 0.0379281901, -0.0037157007, 0.0274120569, -0.0061052, 0.0274587944, -0.010907568, -0.00372154289, -0.0130516905, 0.0293283295, -0.0123739848, 0.00215580757, 0.0171296131, 0.00571960863, 0.0135774976, -0.00654337229, 0.0154002942, -0.00750735123, -0.000675880699, -0.00425027078, -0.00836616848, -0.00215872866, 0.0113866366, 0.00925419759, 0.00454530679, 0.00545378402, -0.0179825891, -0.00942362472, -0.00859986059, 0.00694649061, -0.00299417716, -0.00146787707, -0.00458620302, -0.0210673213, 0.00132912246, 0.0404988, 0.0146174263, 0.00683548721, 0.0190108325, -0.00207985751, 0.00221715169, 0.0230069645, -0.00213828054, 0.00968652777, -0.000291567121, -0.0120585, -0.00358132785, 0.00403994834, 0.0194782168, -0.0138696125, 0.021616498, 0.00759498589, 0.0200507622, -0.00262173056, -0.0245843846, -0.0134022282, 0.00920161698, -0.00453362241, 0.00950541627, 0.0165804382, 0.013460652, 0.0396808796, 0.0105044497, 0.00622204598, 0.0107965646, -0.0123038767, -0.0274821632, 0.000596279395, -0.0299359281, -2.6358799e-05, 0.0125141991, -0.0116320131, 0.000227301862, -0.0027181285, 0.0152133405, -0.00926004071, 0.00919577479, -0.0125726229, -0.0184967108, -0.00258667697, 0.0250283983, -0.0192328412, 0.0100312233, 0.0393537097, -0.00478776218, -0.0212192219, 0.0134840207, -0.00913151, 0.001289687, 0.0018593109, 0.0157274622, -0.0161364228, 0.0112230517, -0.00343819149, -0.024467539, -0.00211491133, 0.00573421409, 0.0103058117, 0.0118306512, 0.00922498666, -0.0048374217, -0.00243769819, 0.0277625937, -0.00697570248, -0.00141018431, 0.00129772013, 0.00552389165, 0.00978584681, -0.00663100695, -0.0131101133, 0.0231121257, 0.000429043663, -0.00882771052, -0.0121753467, 0.00972158182, 0.0160078928, -0.00681796, 0.0151666021, 0.0186953489, -0.0218034517, 0.011789755, -0.0163584314, -0.0157625172, -0.01378782, 0.0127946297, -0.0119650234, 0.0159261, -0.00385299465, 0.0165921226, 0.0235561412, -0.00532525359, -0.00235152431, 0.00688806782, -0.0107907224, 0.0235094018, -0.00859401841, -0.0301929899, 0.00691727921, 0.00904387515, 0.00758914324, 0.0325766467, -0.0269914102, -0.0137177128, 0.00553557603, -0.00149489765, -0.0135424435, -0.0212309062, 0.00785204675, 0.00209738454, 0.000513026665, -0.0318522, 0.0202494, -0.0250517689, 0.00318113063, -0.039891202, 0.0181344897, 0.00178774283, -0.00595622137, 0.0327636, 0.00763003947, 0.0267109796, -0.000478338043, -0.0285104085, -0.0153301861, -0.00602925, -0.00440509152, -0.0117079625, -0.0105687147, 0.02128933, 0.00336224167, -0.0121987155, -0.0171413, 0.0242104772, -0.0241871085, -0.000397641328, -0.00177605823, -0.00874007586, 0.0145706879, 0.0175853129, 0.00712760212, -0.0159027316, 0.032132633, 0.0126310457, -0.00952878594, -0.00198345981, 0.00442846073, -0.0273185801, 0.0015730384, 0.018146174, 0.0100896461, 0.00656089932, -0.00965147372, -0.0231354944, 0.0184149183, -0.00230040425, 0.0257528443, 0.00094499148, 0.00595330028, 0.0203195084, 0.00182279653, -0.00778193912, -0.0238949936, 0.0359651782, 0.0179007966, -0.0057605044, -0.0222591497, 0.0263604429, -0.011953339, -0.00612272695, 0.00701075606, -0.0098033743, -0.0123155611, 0.0191977862, -0.000756577414, 0.025939798, 0.020927107, -0.0164168533, 0.00154966919, 0.028066393, -0.00410421332, 0.00429116702, 0.00190750987, -0.00265094219, -0.0110769942, -0.00882186834, 0.0246311221, 0.00602340791, 0.0261501204, 0.00334471487, 0.00592993107, 0.0242572166, -3.84998239e-05, -0.00985011179, -0.0393069722, 0.00384131, 0.00293575414, -0.00888613332, -0.0197703317, 0.038348835, -0.0181695428, 0.019945601, 0.000792361505, -0.0101422267, 0.00239826273, 0.00823763851, -0.0314782932, -0.0206817295, 0.035474427, -0.000613806304, -0.00979168899, 0.0160312615, -0.0240468923, -0.0359885469, 0.000392894464, 0.00495718885, -0.00244208, 0.00755993184, -0.00353458943, 0.019945601, -0.022562949, 0.00444890885, 0.025776213, 0.0206466764, -0.00777025474, -0.0321793705, -0.0140215121, -0.00769430492, 0.0202260315, -0.00765340868, -0.0362456068, 0.0054917587, -6.35349788e-05, -0.00551220682, -0.0258930586, 0.00275464286, 0.00783452, 0.0332543515, 0.0090789292, -0.00205356721, 0.00256330776, -0.0148978569, 0.0419009514, -0.00760082807, -0.0146875335, -0.00204626448, 0.031501662, 0.0375776514, 0.0106563494, -0.000388512737, -3.64915322e-05, 0.0262435973, -0.0145590035, 0.0152834477, -0.00409837114, 0.0131451674, -0.00684717158, 0.0188005101, -0.0278093331, 0.0144538423, 0.00529019954, 0.00903803296, -0.0271549951, 0.00999032706, 0.00852975342, 0.0325065404, 0.01493291, 0.00437295903, 0.0426721349, -0.00135906425, 0.0204129852, -0.00500392728, -0.00137513061, -0.00120059203, 0.00450148946, -0.00540120341, 0.0123739848, 0.000609424547, -0.0248881839, -0.00317236711, 0.0124674607, -0.00223029684, -0.0042152172, 0.00567871239, 0.0303799435, 0.00219962467, -0.0211140607, -0.0121870311, -0.00726781692, -0.0216281824, -0.003446955, -0.000449491694, 0.00178774283, -0.010644665, 0.0127712609, -0.00326584396, 0.015131548, 0.0203896146, -0.0063272072, 0.00389096956, 0.00171617465, -0.0213360675, 0.0290245302, -0.0120234462, -0.0259164274, -0.0208920538, -0.0181578584, 0.01365929, -0.0151666021, -0.00629215362, -0.0170361362, -0.0107790371, -0.0153418714, -0.0192912631, -0.0302163586, 0.0254957825, 0.00150585198, -0.0195483249, 0.00534278, -0.0111704711, 0.0150380721, 0.00814416166, 0.0154470326, 0.0148744872, 0.0293984376, -0.000498420908, -0.0297022369, 0.00737297861, -0.00473518157, -0.0207401533, -0.00495426776, 0.00702828309, -0.000767531747, 0.00677122176, -0.00881018303, 0.020634992, 0.00151461537, 0.0137995044, 0.00159494695, 0.00106037688, 0.011889074, -0.048234, -0.0227732733, -0.0124324076, -0.0221656729, -0.00230916776, 0.0109543065, -0.0173282512, 0.0109543065, 0.0218501892, 0.00204480393, -0.00640315702, 0.00439632824, -0.0315951407, -0.0190458875, 0.0181695428, 0.000148339561, -0.013460652, -0.00175853132, -0.00653168792, 0.0325532779, 0.00376243913, -0.017947536, -0.0118306512, 0.0102240192, -0.00614609616, 0.0264071804, 0.00392310228, 0.0150731253, -0.0110068871, -0.00639731484, 0.000123144666, 0.000256148196, 0.0130049521, -0.0188472494, 0.012969899, -0.00755408965, 0.0051938016, -0.0210556369, 0.00407500193, -0.00979753118, -0.0229368564, 0.0190692563, 0.0257294755, -0.0137060285, -0.00324247475, -0.00772351632, 0.0204129852, -0.00899713673, -0.0246544927, -0.016732337, 0.0248648152, -0.0253789369, 0.0119241271, -0.0139163509, 0.00398152508, 0.00723276334, 0.00533109577, -0.021125745, -0.0168024451, -0.00659011072, -0.0139046665, 0.00288901571, -0.0120935543, -0.0125609376, -0.0130400062, 0.030099513, -0.0253789369, 0.0372037441, 0.00897961, 0.0327168629, 0.00992606208, -0.0146758491, 0.00187245605, 0.0214762818, 0.00366604119, 0.0164986458, 0.00323955342, 0.00117430161, 0.00942946691, -0.00463586254, -0.00292260898, -0.0424384438, 0.0210089, -0.000339766062, -0.0103934454, -0.0180877503, -0.0245376453, -0.0122688226, 0.00179942744, 0.0034206647, 0.030426681, 0.0558056198, 0.013951405, -0.000789440353, -0.0116144856, -0.00419476908, -0.00250780582, -0.00443430338, 0.00673032599, 0.0230420176, 0.0182980727, -0.019618433, 0.000640461803, -0.0159962084, 0.00504482305, 0.000185036493, -0.0281832386, 0.00627462659, -0.00926004071, -0.0113866366, -0.00345279742, 0.0130049521, -0.00893287174, -0.0105511881, 0.0120701846, -0.00696401764, -0.0109776752, -0.00179358514, -0.0194665324, -0.0144655267, 0.0030934962, -0.0103116538, -0.00786957331, -0.00783452, 0.00764172385, 0.00595330028, 0.016148109, -0.0250517689, -0.00945867877, -0.0308239572, -0.0113574248, -0.0121636614, 0.0166388601, -0.00789878517, -0.00729118614, -0.0011509324, 0.0164168533, -0.0158443078, -0.00523177674, -0.0146407951, -0.0215463899, -0.0130516905, 0.0210089, -0.0031636036, 0.0260800123, -0.025449045, -0.0329739228, -0.00464170473, -0.00693480624, 0.00633304939, -0.00376536022, 0.00668942975, -0.018274704, 0.0279028099, 0.0114158476, -0.00514706317, -0.000112555499, 0.0114450594, -0.0262903348, 0.00370693719, 0.000597374863, 0.00900297891, -0.000236978158, 0.0118540199, -0.00806821138, -0.0158793628, -0.0096748434, -0.0185083952, -0.0240702629, 0.0103876032, 0.00211491133, -0.00147006789, 0.00142844149, -0.00496595213, -0.00695233326, 0.0125492532, -0.0206934158, 0.00620451896, 0.0172114056, 0.0129932677, 0.000850784476, 0.0125375688, 0.00117868336, 0.00189582526, -0.039073281, 0.00890366, 0.005518049, -0.0205999389, 0.00587442936, 0.028393561, 0.00230916776, -0.00275318231, 0.00660763774, 0.00715097133, -0.0157742016, -0.000178281334, 0.0025676894, 0.0240936317, 0.0185901877, 0.0183564965, -0.0218268204, -0.0120935543, 0.0061052, -0.00559692038, 0.0253789369, 0.0142318346, 0.0225395802, -0.0318054631, 0.0162182152, 0.00959305093, -0.00344111281, 0.00209008157, -0.0177138429, -0.0238949936, 0.0127595756, 0.000441093405, 0.0165921226, -0.00996695831, 0.00793968141, -0.0154470326, 0.00831358787, -0.0223058891, 0.0113165285, -0.00235298509, 0.0249115527, 0.00475562969, -0.00433790544, 0.00723860553, 0.00547131104, 0.00838953815, -0.0158676784, 0.00282329, 0.0210673213, 0.00886276364, -0.0136359204, 0.00129772013, 0.00847133063, 0.0306370035, -0.016113054, -0.00698738685, -0.00841874909, -0.0123389307, -0.00496887323, -0.0427656136, -0.0173048824, 0.000534205, -0.0180994347, 0.00685301423, -0.0120818699, -0.00861738808, -0.0186836645, 0.0215931293, -0.00326292263, 0.00246252795, 0.0096164206, -0.00737297861, 0.0134840207, 0.0159728397, -0.0073496094, -0.00178043987, 0.00734376675, -0.0142552042, 0.00774104334, -0.0177722666, 0.0302630961, 0.00624541519, 0.00565242209, 0.00545086293, 0.0413634591, -0.0230069645, 0.0121870311, -0.016440222, 0.0036864893, -0.0155405095, -0.0228200108, 0.010054593, -0.0138462428, -0.00645573763, 0.00317528821, 0.00442553964, -0.0145356338, 0.0192795787, 0.00947036315, -0.00552389165, -0.0134957051, -0.00246252795, -0.0194782168, -0.0123622995, 0.00779362395, -0.044938948, 0.00280722347, -0.00211783266, -0.00405455381, -0.00457159709, 0.0176086817, 0.0213243831, 0.00478192, -0.0030526, -0.00446059369, 0.026430551, 0.0251919832, -0.0250985064, -0.00177605823, 0.00766509306, -0.00533109577, -0.00969237, 0.0195483249, 0.00439048605, 0.00252241152, -0.00526975142, -0.00660763774, 0.0212659594, 0.0231939182, 0.0155171398, 0.0119650234, 0.00998448487, -0.00478192, 0.0134255979, 0.00172639871, -0.00412758254, -0.0105044497, -0.0218852442, 0.013624236, -0.0100020124, -0.0113924788, 0.00683548721, 0.00410421332, 0.0127946297, -0.000261260197, -0.00583061203, -0.00979753118, -0.00111660897, 0.00934767444, -0.0140098277, -0.000219086127, 0.000654337229, -0.0280897617, 0.00786373112, 0.0243974309, -0.00317236711, -2.08360034e-05, 0.0166388601, 0.000632063486, 0.0031197865, -0.0123506151, -0.0011684593, -0.000437807117, 0.0134372823, -0.00897376798, -0.0193496868, 0.000123418518, -0.00474978704, -0.00929509383, -0.00817921571, 0.00261150673, -0.0152483946, 0.00505358679, 0.0255658906, 0.00521424972, 0.0101655964, 0.0206934158, 0.00368356798, -0.00790462736, 0.0273886863, 0.0225512646, -0.0140448809, 0.00772351632, -0.00683548721, -0.00403702725, 0.0078871008, 0.0254023056, 0.00828437693, -0.00232815533, 0.0148978569, -0.0397977233, 0.00785204675, 0.0184967108, 0.015458717, -0.00632136501, 0.00966900121, -0.00782283489, 0.0320157856, -0.0223643109, 0.0287441, 0.0168725532, 0.0104577113, -0.010936779, -0.0360820256, 0.00195424818, 0.0134957051, 0.0293516982, 0.00596206356, 0.00679459097, 0.0240468923, 0.0213010143, 0.00100341451, -0.00612856913, 0.0119650234, 0.00685885642, -0.0189874638, -0.01162617, 0.0135658132, -0.0182162803, -0.0358717032, 0.0197235942, -0.0216515511, 0.0129348449, -0.0217917673, -0.00750735123, -0.0171179287, -0.00106037688, -0.0111938408, 0.0018534686, 0.0165921226, 0.00153360283, 0.00251949043, -0.00388804846, -0.0133788595, -0.00939441286, -0.0279962849, 0.00949957408, -0.0111587867, -0.0196301173, -0.012151977, 0.0084245922, -0.0241403691, -0.00702828309, 0.000313110591, -0.015657356, 0.0294919144, 0.0218034517, 0.0042999303, 0.019618433, -0.0105979266, 0.000155459857, -0.00811495, -0.0233575013, -0.00391726, 0.0199923385, -0.0111062061, -0.0236028787, -0.00846548751, -0.00218940061, -0.0191510487, -0.00151315483, -0.0176437367, -0.00614025397, -0.00328921294, 0.00823763851, -0.0101071736, -0.0222942047, -0.0146174263, 0.000799664354, 0.0120234462, 0.0180877503, 0.00388220605, 0.0130166374, 0.00489000231, 0.0181929115, 0.000146878985, 0.0494959392, 0.0154704014, -0.00181987544, 0.00321326312, -0.0156339854, 0.00196739333, 0.00755993184, -0.0167673919, 0.00786957331, 0.00568747567, -0.00838953815, -0.0021076086, 0.0215931293, -0.0180176422, 0.00131962879, -0.00296058389, 0.00222299388, 0.0144071039, 0.00928340945, 0.00868749525, 0.0103525501, 0.025215352, -0.00139119686, 0.00985595491, -0.00321326312, 0.0149212256, -0.0115151666, -0.0148978569, 0.00890950207, -0.00909645576, 0.00833111536, 0.0135307591, 0.0118306512, 0.00198053848, 0.0311277565, -0.0020857, 0.0130166374, -0.0105862413, 0.0081266351, -0.00926004071, 0.0163116921, 0.00740803219, -0.00677122176, 0.0129348449, -0.0114392173, 0.00357548567, -0.0169426613, 0.0222124122, 0.0128881065, -0.00132985273, 0.0130049521, -0.00315776141, 0.0172698293, 0.0228316952, 0.0299359281, -0.00757745886, -0.0211841669, -0.00217187381, 0.000244098454, -0.00289631868, -0.0266876109, 0.00650831871, -0.00447812025, -0.00831943, 0.00266116625, -0.0182980727, -0.0190342031, -0.00652584527, 0.0252620913, -0.000667847518, 0.0198404398, -0.00293283304, 0.00523469783, -0.00514122099, 0.0194782168, 0.00754824746, 0.00753656263, 0.00088218681, 0.0108374599, 0.00159056531, -0.00415387284, 0.00311394408, -0.0111471023, 0.0137177128, 0.00522885565, -0.0119650234, -0.0186719801, -0.0109192524, 0.0114450594, -0.0153068174, 0.0334413052, 0.0106972456, 0.0139280353, -0.000767531747, -0.000680992729, -0.0072210785, 0.0108900415, -0.00800394639, 0.0126544144, 0.000225293566, 0.0102298614, -0.00327460724, -0.000594088517, 0.00400489429, 0.0125141991, 0.003406059, 0.0082434807, 0.0136008663, -0.00134957058, 0.0164051689, 0.0140799349, -0.0106096109, 0.00623957301, 0.00332426676, 0.0143603655, -0.0195716936, -0.00616946537, 0.00151899713, 0.0211491138, -0.0227265339, 0.0256359987, 0.0155054554, -0.00541288778, 0.000435616239, 0.00357840676, -0.0171529837, 0.00931262132, 0.00684132939, 0.00120059203, -0.016113054, 0.0209037382, -0.000511201, -0.00120205258, 0.00680627581, -0.0145940576, -0.00569623942, 0.00971574, -0.0146524804, -0.0138111897, 0.0220371429, -0.0378814526, -0.024233846, 0.0028510408, -0.00641484186, -0.0278327018, 0.000963248662, -0.00779362395, -0.00498640025, 0.0024493828, 0.0139981424, -0.0102941263, -0.0217683967, -0.00406623865, -0.0170478225, 0.0125025148, 0.00615193835, -0.0270147808, -0.00942362472, 0.0168141294, 0.00911398325, -0.00166359404, -0.0202377159, 0.017947536, 0.0034323493, 0.00529312063, 0.0128764221, -0.024233846, 0.0121286083, -0.0101363845, 0.0182863884, 0.0098033743, -0.00615778053, 0.00419184798, -0.0188355651, -0.0105803991, -0.0180059578, 0.00654921448, -0.00130283216, 0.00174830726, -0.0372504853, 0.00041589851, 0.000101783764, 0.0031081019, -0.00765925087, 0.015131548, -0.00521424972, -0.00223906012, 0.0308940653, -0.0515056886, 0.00953462813, -0.0349369347, 0.030590266, -0.0221539885, -0.0344228111, 0.0202610847, -0.00490460824, 0.000514852407, 0.00521717081, -0.0125141991, -0.0231705494, -0.00213535945, 0.0177255273, -0.00594745809, 0.0188472494, -0.0177956354, 0.0101130158, 0.00891534518, 0.00770598929, -0.0117021203, -0.0031782093, 0.00135249167, -0.0155288242, -0.0325065404, 0.000913589145, -0.0149212256, 0.0117079625, 0.0130867446, 0.00713344431, 0.0210906919, 0.0195600092, -0.00519964425, 0.0077877813, -0.0146407951, 0.00756577402, -0.0163350608, -0.00159202586, 0.0345630273, 0.0140215121, 0.0105628725, -0.0197469629, -0.00793383922, -0.0123622995, -0.00304967887, -0.00961057842, 0.00962810498, 0.0115151666, 0.00100998709, -0.00448104134, 0.00496887323, -0.0268979333, 0.00899713673, -0.00926588289, -0.00753656263, -0.0110185714, 0.026594134, 0.003701095, 0.016148109, -0.0192678943, -0.00207985751, 0.000184945209, 0.0237547792, 0.0135307591, 0.0142435189, 0.00573713519, 0.0122805079, 0.0143486811, 0.0337918438, 0.000627681729, -0.00571960863, 0.00747229764, -0.0136476047, 0.00754824746, 0.0132503286, -0.0143603655, -0.00494842511, -0.00740219, -0.0181228034, 0.0102298614, 0.0170828756, -0.00625709957, -0.00906140171, -0.0315717719, -0.00845380314, -0.013951405, -0.00497763697, -0.0154002942, 0.018111119, 0.0126310457, -0.0145590035, 0.013098429, -0.00776441209, -0.00852391124, -0.000412977359, -0.0245610159, 0.00130648364, 0.00274880067, -0.00269329874, 0.0116203278, 0.0370167904, 0.00535154389, 0.0116904359, 0.0219202973, -0.0193613712, -0.0123739848, 0.0196534861, 0.00366019877, 0.0143603655, 0.00933599, -0.0112230517, -0.00623957301, 0.0105862413, -0.0179709047, 0.00243915897, 0.0175385755, 0.00777609693, 0.015622301, 0.0207518376, 0.00732039753, 0.0138345584, 0.00266992953, -0.00685301423, -0.000163401739, -0.00590364076, -0.0134255979, -0.00386467925, -8.73491808e-06, -0.00452485867, 0.0164986458, 0.0198988616, -0.0111120483, 0.0164635926, -0.0191393644, -0.0213594362, 0.00966900121, -0.0116436975, 0.0114392173, -0.00249758177, 0.0122688226, -0.0156807248, -0.0224227346, 0.0219202973, -0.00805068482, 0.0245610159, 0.0178306904, -0.0145122651, 0.00163584307, 0.0111120483, 0.00404871162, 0.0104635535, 0.0354977958, 0.00978584681, -0.0220838822, -0.00158326235, 0.0100779617, 0.0143486811, -0.00539536122, 0.0123038767, -0.0329271853, -0.0224227346, 0.00634473423, 0.034749981, 0.00294159632, 0.0070808637, 0.00112464209, 0.00883355271, -0.00551220682, -0.00725613255, -0.00266116625, -0.010936779, 0.00148540398, 0.000420280208, -0.0144888954, -0.00361053925, 0.0031343922, 0.0389798023, 0.0255425218, -0.00478192, 0.00262027, 0.0222007278, -0.0116787506, 0.0178774279, 0.0210089, 0.00486079091, 0.0136359204, -0.00422982266, 0.000393989874, 0.0160896853, 0.0103116538, -0.0115502207, -0.026594134, 0.00121957948, 0.0132386442, -0.0114742704, -0.00590948295, -0.00783452, 0.0017234775, 0.0102240192, -0.00737297861, 0.00878681429, -0.0024493828, 0.0122805079, 0.0155521939, -0.0179007966, 0.00823763851, 0.00718018273, -0.0151782865, 0.00416847877, -0.00631552283, 0.000844942173, -0.00927756727, -0.0366428867, -0.000709473912, -0.00397860399, 0.0149796484, 0.0148277488, 0.0333712, -0.0146524804, 0.0119066006, 0.0118364934, -0.00368356798, 0.026757719, -0.00470304862, 0.0156339854, -0.00126850873, -0.00581600657, -0.0124674607, 0.00453070085, -0.0129114753, -0.0151432334, 0.0040311846, 0.0208920538, 0.0127011528, 0.00949957408, -0.0128530525, -0.0152600789, -0.00615778053, -0.00118160446, -0.00506235, 0.0180643816, -0.00776441209, 0.0118131237, 0.0129348449, -0.00963978935, 0.00129333849, 0.00777025474, -0.0109893605, 0.00187391671, 0.013297067, 0.00660179509, -0.00829021912, 0.0140448809, -0.0171296131, 0.0275055319, -0.00856480654, -0.00921330228, -0.00973910838, 0.00684132939, 0.000339218357, 0.0106037688, 0.00847133063, -0.0196067486, -0.00904971734, 0.00476439297, 0.0107498262, -0.0117138047, 0.0167673919, -0.00271666795, 0.0107965646, -0.00774688553, 0.000971281843, -0.000177551046, -0.00111879979, 0.00304091536, -0.0185901877, -0.00395815587, -0.0201091859, 0.00805068482, 0.0200975, -0.0248648152, 0.0306136347, 0.0115502207, 0.0351939946, 0.0182045959, -0.0109659908, -0.00975663587, 0.00388220605, -0.00911982544, -0.000973472663, 0.0153185017, 3.39811704e-05, 0.0123856692, 0.0166739151, -0.00276632747, -0.0231471788, -0.035731487, 0.0196418017, -0.0049221348, -0.0146758491, -0.00508571928, 0.0267343502, -0.00927756727, 0.0118364934, -0.0009858876, -0.0164168533, 0.0253555682, 0.00121957948, -0.0026085854, -0.0263137035, -0.0120935543, -0.0205999389, -0.00227703503, 0.00843627658, -0.0142435189, -0.000181658907, 0.022562949, -0.00763588166, 0.0197586473, -0.0116028013, 0.0145590035, 0.00102167169, -0.00434374763, -0.0216982905, 0.0168959219, 0.00198053848, -0.000880726206, 0.0325065404, -0.00951710157, -0.0125843072, -0.0211607981, 0.00396107696, -0.00300878286, 0.0158443078, 0.0121052386, -0.0201208703, -0.00347616663, 0.00404286943, 0.00738466298, -0.000885838235, 0.0167907607, 0.00341190118, -0.0369934216, 0.00846548751, -0.0073496094, 0.0231471788, 0.0173165668, -0.00271666795, 0.00851806812, -0.00715681352, -0.00696401764, -0.0107790371, -0.00163438253, -0.0119241271, -0.0237547792, 0.00868165307, 0.00592116779, 0.00147152843, 0.0265707653, 0.00978000462, 0.00598835433, -0.00706333667, -0.0083428, -0.0122688226, -0.0353809483, 0.00323371124, -0.00788125861, -0.044050917, -0.00966900121, -0.0003512681, -0.011334056, 0.00888029113, 0.0146524804, -0.0286038853, -0.00978000462, -0.0227148496, -0.00559984148, 0.000485640921, 0.0155405095, -0.00318697281, -0.0128997909, 0.00214120164, -0.00845380314, 0.00204626448, -0.00398736726, 0.00214412296, -0.00723276334, -0.0221539885, -0.00286710705, 0.0186252426, 0.00413634628, 0.00204772502, 0.00841874909, 0.0163818, -0.00559107773, 0.0239534173, -0.0165804382, 0.00611104257, 0.0087225493, -0.0190225188, -0.0180059578, 0.0178306904, -0.00676537957, 0.00297957123, -0.0229018033, -0.0208686832, 0.00268453523, -0.00390265416, 0.0177956354, -0.0130166374, -0.0194899011, 0.00205648853, -0.0120351315, 0.0128647378, 0.0108433031, 0.00112683303, -0.000523615861, 0.0137177128, 0.0294451751, -0.00133788597, 0.00562321069, 0.0102123348, -0.0185200814, 0.0046241777, -0.00043853739, 0.0107030878, 0.0156690404, 0.000369525253, 0.00118671649, -0.0105979266, 0.00644989545, 0.0241637398, 0.0093067782, 0.00556770852, 0.0103525501, -0.0070516523, -0.00581600657, -0.00538951857, -0.00771183148, -0.00700491387, -0.0223759972, 0.00130502298, -0.00236174837, 0.00471765455, -0.0135658132, -0.00372738531, 0.000511201, 0.00992022, -0.0104051307, -0.0318288319, -0.0330206603, 0.0159962084, 0.0183214433, 0.0102649154, -0.00300878286, 0.00678874878, -0.0297723431, -0.0172698293, -0.00202435581, 0.0117605431, -0.000848593598, -0.00136563682, -0.0181695428, -3.69023182e-05, -0.00491921371, 0.0283701923, -0.0196768548, -0.0294218063, -0.0105044497, 0.0197235942, -0.0247947071, -0.0143720498, 0.0210556369, 0.0147225875, -0.0122805079, -0.0124090379, -0.0145005807, -0.0072210785, -0.0076183551, -0.00286418595, -0.0158910472, 0.0282299779, -0.00441677636, -0.0143019427, 0.0015409058, -0.00999616925, -0.028790839, -0.00729702879, 0.0188355651, -0.00220400654, -0.011427532, 0.0062687844, -0.0257294755, -0.0152016561, -0.0252854601, -0.0250751376, 0.00528143626, -0.0109309368, 0.00220692763, 0.0114917979, 0.0157040935, 0.00441969745, -0.00410421332, -0.0168374982, -0.0177372135, 0.00315191899, -0.000407500193, 0.00275756395, 0.0102999695, -0.023053702, 0.00318697281, 0.0119299702, -0.0199339166, 0.0347733498, 0.0144071039, 0.00347032421, 0.00238657813, 0.00206087017, -0.0180994347, 0.0119182849, -0.0194197949, 0.000709473912, 0.0252387226, 0.0123155611, -0.00632136501, 0.00315484032, -0.0214061756, 0.00454530679, 0.00845380314, 0.00961057842, -0.00335055706, 0.019817071, 0.00603509229, 0.00340021658, -0.00562905287, 0.00147517992, -0.0268278271, -0.000892410812, 0.0114801126, 0.0135541279, 3.13338787e-05, 0.00664269133, -0.0044839629, -0.0130166374, 0.00839538, -0.0018505475, 0.00583937531, -0.00202289526, -0.00308765378, 0.00836616848, -0.00941194, -0.0180760659, -0.00647910684, 0.00645573763, -0.00225366605, -0.0208920538, -0.00982090086, 0.0118715465, 0.0152717633, -0.00137586088, -0.0106505072, 0.000159567731, -0.000901174266, -0.00820842665, 0.0117079625, -0.0364325605, 0.00162123737, -0.00614025397, 0.0190108325, 0.00330966106, -0.00330966106, -0.000307998591, -0.0141033046, 0.011526851, -0.00802147295, 0.00332426676, -0.020074131, -0.0250751376, -0.033207614, 0.00595037919, -0.00589195639, 0.00607014634, -0.00340021658, 0.0034352704, 0.00826684944, -0.0136359204, -0.0136826588, -0.0220488273, 0.0322728455, 0.0175969973, -0.00896792579, 0.00986179709, -0.0134022282, 0.0206233077, -0.00962226279, 0.0202961396, 0.00270644389, -0.00504190195, 0.00817337353, -0.00963978935, 0.0152717633, -0.00729702879, -0.0128413681, -0.00296204444, 0.00413634628, 0.00990853552, 0.0157975703, 0.00885692146, 0.0128764221, -0.000713490474, -0.00330089754, 0.0143486811, -0.0108316178, 0.000410056207, 0.00843043439, -0.00110127288, -0.00629215362, 0.00113267521, 0.0151081793, 0.00218209787, -0.0168608688, 0.0325065404, -0.0244909078, -0.0231004413, -0.0115852747, -0.00615778053, -0.0112172095, -0.0290245302, -0.0286739916, -0.000630602881, 0.00449272618, 0.0149095412, 0.00194256369, -0.00796889234, -0.0217567123, -0.000130721382, -0.00864075683, -0.0191977862, -0.00976247806, -0.00098296639, 0.00779946614, 0.0215580743, 0.0136476047, -0.0175152048, 0.00256915, 0.00206379127, -0.00226827175, -0.00555310305, -0.0167673919, 0.00790462736, -0.0233808719, 0.00478776218, 0.00177021592, 0.00612856913, -0.00559984148, -0.00124586979, -0.0160896853, -0.0188005101, 0.0211140607, -0.0455932841, 0.01378782, -0.0246311221, 0.00173662265, -0.00927172508, 0.00431745732, -0.0041860058, -0.000633889169, 0.015295133, -0.00948204752, -0.00613441132, 0.00227265339, 0.0368532091, -0.00183156, 0.0018242572, -0.00975663587, 0.00379457162, 0.00982090086, -0.0250517689, 0.0034206647, 0.00206963369, 0.0183915496, -0.00327460724, -0.00374783343, -0.0146758491, 0.0432563648, -0.00130064134, -0.0147459572, 0.0120585, -0.00815584604, -0.0107556684, 0.0205765683, 0.0123856692, 0.00392602338, 0.0119007584, -0.00726781692, -0.00268307468, -0.00365143549, 0.0250751376, -0.0132620139, -0.0167907607, 0.00694649061, 0.000535665604, 0.022235781, -0.011299002, -0.0156924091, 0.00158472301, 0.000837639265, 0.0218618736, 0.00218063733, 0.0115443785, -0.00820258446, -0.00900297891, 0.000446570542, -0.0101597542, 0.0177138429, 0.00589779858, 0.00341190118, -0.00853559561, 0.032389693, -6.70038426e-05, 0.0254957825, -0.0159494691, 0.0058890353, -0.0317587256, 0.0164051689, -0.0180059578, 0.0105511881, -0.0234042406, 0.013951405, 0.0208219457, -0.00174684671, 0.0031373133, -0.0295152832, -0.0180410128, 0.00802731607, -0.00823179632, -0.00177605823, -0.00410129223, -0.00808573887, -0.038091775, -0.0104869222, -0.0107206143, -0.0154704014, 0.00526098814, 0.000509010104, 0.0297723431, 0.00442846073, 0.00941778254, 0.00430577248, 0.0144304726, -0.00803315826, 0.00512077287, 0.00377412373, 0.0244441703, 0.000155916292, 0.00239680219, -0.0261734892, -0.000913589145, 0.00604677713, 0.0233575013, 0.00445767259, 0.0165804382, -0.00579263736, 0.0067536952, -0.00623957301, 0.00612856913, 0.0155405095, 0.0290011615, 0.0175385755, -0.00533985905, 0.0301228818, -0.00476147188, 0.00798057765, -0.0279962849, -0.000901904539, -0.00372738531, 0.00164752768, -0.00368064689, 0.0126193613, 0.000984426937, 0.00276632747, -0.0066251643, 0.0151432334, 0.0259631667, -0.00673616817, -0.00682964502, -0.0088393949, -0.0135774976, -0.0045978874, -0.013297067, -0.0183915496, 0.0057897158, 0.0060584615, -0.00736129377, -0.0274120569, -0.0186836645, 0.0152016561, 0.00476147188, -0.00697570248, 0.0306603722, -0.00966315903, -0.00543917809, -0.0018447052, 0.0279261786, -0.0175619442, -0.0334413052, 0.00752487825, -0.00430285139, -0.00656089932, -0.0196067486, -0.0153185017, -0.0061869924, -0.00724444771, 0.0201559234, -0.00612856913, 0.00850054156, 0.0104284994, 0.00387928495, 0.0124207232, -0.00461541442, 0.0199923385, 0.000244281022, -0.00312854978, 0.00153798459, 0.00847717281, -0.0122921923, -0.020436354, 0.00542749371, 0.00949957408, 0.022072196, 0.0161597934, 0.00795136578, -0.0217917673, -0.0384189449, 0.0306837428, 0.0240001548, -0.0116553819, -0.0118306512, 0.00793383922, -0.0123973535, -0.00559692038, -0.00145838328, -0.00864075683, -0.0052200919, 0.0187888257, -0.0105102919, -0.0200273935, 0.025449045, -0.0185083952, -0.00942946691, -0.000244281022, -0.00347616663, -0.00238073594, -0.0324831679, 0.0288375765, -0.00239096, 0.0195483249, 0.0116378553, -0.032950554, 0.0170595068, -0.0130750602, 0.0365260392, -0.0224928427, 0.0191627331, -0.00498932134, -0.0207167845, -0.0169076063, -0.0175853129, -0.0127128372, 0.0100429077, -0.00725613255, -0.0092483554, 0.00230624666, 0.00906724483, 0.00581308501, -0.00127727212, 0.0109426221, 0.0109250946, 0.00147517992, -0.0152483946, -0.0102006504, 0.030426681, -0.00218501897, -0.00242309249, 0.0018709955, -0.0200507622, 0.00545962621, 0.00404871162, -0.00170449, -0.00827853475, 0.0151899718, 0.0236846711, -0.00504482305, -0.00811495, -0.00958136655, 0.00289631868, -0.0165336989, 0.0301462505, -0.000680992729, 0.00732039753, 0.0162649546, -0.0180994347, -0.0195015855, -0.0110945217, -0.00907308701, 0.0102590732, -0.00941778254, -0.0039727618, -0.00287294947, -0.00845380314, 0.00554726087, -0.0177722666, -0.0021631103, 0.0140215121, -0.0128647378, 0.00108593691, 0.0158793628, 0.0122805079, 0.00639731484, -0.00099099963, -0.0186953489, 0.0193613712, 0.00401073648, 0.0176320523, -0.00487831794, 0.00107060082, 0.0146174263, 0.000939879508, -0.0184850264, 0.00536907045, 0.0145356338, -0.0114392173, 0.0236729868]
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.