From 07d933518083577001f7980e5bde60e00b73ca0d Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Sat, 1 Mar 2025 14:12:29 +0800 Subject: [PATCH] :wastebasket: Clean up code --- .idea/Passport.iml | 12 - .idea/codeStyles/Project.xml | 59 - .idea/codeStyles/codeStyleConfig.xml | 5 - .idea/dataSources.local.xml | 43 - .idea/dataSources.xml | 19 - .../723637bc-6ce3-4bbe-afb3-d88730c75a1b.xml | 6598 ---------- .../_src_/database/passport.EoyGSA.meta | 1 - .../passport.EoyGSA/schema/public.abK9xQ.meta | 2 - .../74bcf3ef-a2b9-435b-b9e5-f32902a33b25.xml | 10553 ---------------- .../_src_/database/hy_passport.gNOKQQ.meta | 1 - .../schema/public.abK9xQ.meta | 2 - .idea/inspectionProfiles/Project_Default.xml | 6 - .idea/jsLibraryMappings.xml | 6 - .idea/modules.xml | 8 - .idea/vcs.xml | 6 - .idea/workspace.xml | 192 - go.mod | 1 + go.sum | 10 +- pkg/internal/services/accounts.go | 5 +- .../{http => web}/admin/badges_api.go | 2 +- .../{http => web}/admin/factors_api.go | 2 +- pkg/internal/{http => web}/admin/index.go | 2 +- .../{http => web}/admin/notify_api.go | 2 +- .../{http => web}/admin/permissions_api.go | 2 +- pkg/internal/{http => web}/admin/users_api.go | 2 +- .../{http => web}/api/accounts_api.go | 2 +- pkg/internal/{http => web}/api/auth_api.go | 2 +- pkg/internal/{http => web}/api/avatar_api.go | 2 +- .../{http => web}/api/bot_token_api.go | 2 +- pkg/internal/{http => web}/api/bots_api.go | 2 +- .../{http => web}/api/check_in_api.go | 2 +- .../{http => web}/api/contacts_api.go | 30 +- pkg/internal/{http => web}/api/events_api.go | 2 +- pkg/internal/{http => web}/api/factors_api.go | 2 +- pkg/internal/{http => web}/api/index.go | 2 +- .../{http => web}/api/notifications_api.go | 2 +- pkg/internal/{http => web}/api/notify_api.go | 2 +- pkg/internal/{http => web}/api/oauth_api.go | 2 +- .../{http => web}/api/password_api.go | 2 +- .../{http => web}/api/preferences_api.go | 2 +- .../{http => web}/api/realm_members_api.go | 2 +- pkg/internal/{http => web}/api/realms_api.go | 5 +- .../{http => web}/api/relationships_api.go | 2 +- pkg/internal/{http => web}/api/reports_api.go | 2 +- .../{http => web}/api/security_api.go | 2 +- .../{http => web}/api/statuses_api.go | 2 +- .../{http => web}/api/userinfo_api.go | 2 +- .../{http => web}/api/well_known_api.go | 0 pkg/internal/{http => web}/exts/auth.go | 0 pkg/internal/{http => web}/exts/request.go | 0 pkg/internal/{http => web}/server.go | 26 +- pkg/main.go | 11 +- 52 files changed, 71 insertions(+), 17582 deletions(-) delete mode 100644 .idea/Passport.iml delete mode 100644 .idea/codeStyles/Project.xml delete mode 100644 .idea/codeStyles/codeStyleConfig.xml delete mode 100644 .idea/dataSources.local.xml delete mode 100644 .idea/dataSources.xml delete mode 100644 .idea/dataSources/723637bc-6ce3-4bbe-afb3-d88730c75a1b.xml delete mode 100644 .idea/dataSources/723637bc-6ce3-4bbe-afb3-d88730c75a1b/storage_v2/_src_/database/passport.EoyGSA.meta delete mode 100644 .idea/dataSources/723637bc-6ce3-4bbe-afb3-d88730c75a1b/storage_v2/_src_/database/passport.EoyGSA/schema/public.abK9xQ.meta delete mode 100644 .idea/dataSources/74bcf3ef-a2b9-435b-b9e5-f32902a33b25.xml delete mode 100644 .idea/dataSources/74bcf3ef-a2b9-435b-b9e5-f32902a33b25/storage_v2/_src_/database/hy_passport.gNOKQQ.meta delete mode 100644 .idea/dataSources/74bcf3ef-a2b9-435b-b9e5-f32902a33b25/storage_v2/_src_/database/hy_passport.gNOKQQ/schema/public.abK9xQ.meta delete mode 100644 .idea/inspectionProfiles/Project_Default.xml delete mode 100644 .idea/jsLibraryMappings.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/vcs.xml delete mode 100644 .idea/workspace.xml rename pkg/internal/{http => web}/admin/badges_api.go (96%) rename pkg/internal/{http => web}/admin/factors_api.go (94%) rename pkg/internal/{http => web}/admin/index.go (90%) rename pkg/internal/{http => web}/admin/notify_api.go (98%) rename pkg/internal/{http => web}/admin/permissions_api.go (95%) rename pkg/internal/{http => web}/admin/users_api.go (97%) rename pkg/internal/{http => web}/api/accounts_api.go (99%) rename pkg/internal/{http => web}/api/auth_api.go (98%) rename pkg/internal/{http => web}/api/avatar_api.go (97%) rename pkg/internal/{http => web}/api/bot_token_api.go (98%) rename pkg/internal/{http => web}/api/bots_api.go (97%) rename pkg/internal/{http => web}/api/check_in_api.go (97%) rename pkg/internal/{http => web}/api/contacts_api.go (85%) rename pkg/internal/{http => web}/api/events_api.go (94%) rename pkg/internal/{http => web}/api/factors_api.go (98%) rename pkg/internal/{http => web}/api/index.go (99%) rename pkg/internal/{http => web}/api/notifications_api.go (98%) rename pkg/internal/{http => web}/api/notify_api.go (98%) rename pkg/internal/{http => web}/api/oauth_api.go (98%) rename pkg/internal/{http => web}/api/password_api.go (95%) rename pkg/internal/{http => web}/api/preferences_api.go (97%) rename pkg/internal/{http => web}/api/realm_members_api.go (98%) rename pkg/internal/{http => web}/api/realms_api.go (98%) rename pkg/internal/{http => web}/api/relationships_api.go (99%) rename pkg/internal/{http => web}/api/reports_api.go (96%) rename pkg/internal/{http => web}/api/security_api.go (95%) rename pkg/internal/{http => web}/api/statuses_api.go (98%) rename pkg/internal/{http => web}/api/userinfo_api.go (98%) rename pkg/internal/{http => web}/api/well_known_api.go (100%) rename pkg/internal/{http => web}/exts/auth.go (100%) rename pkg/internal/{http => web}/exts/request.go (100%) rename pkg/internal/{http => web}/server.go (76%) diff --git a/.idea/Passport.iml b/.idea/Passport.iml deleted file mode 100644 index 677a786..0000000 --- a/.idea/Passport.iml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml deleted file mode 100644 index c0eeaef..0000000 --- a/.idea/codeStyles/Project.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml deleted file mode 100644 index 79ee123..0000000 --- a/.idea/codeStyles/codeStyleConfig.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/dataSources.local.xml b/.idea/dataSources.local.xml deleted file mode 100644 index 7075a83..0000000 --- a/.idea/dataSources.local.xml +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - " - - - master_key - postgres - - - - - - - - - - - - - - - - - - - " - - - master_key - postgres - - - - - - - - - - \ No newline at end of file diff --git a/.idea/dataSources.xml b/.idea/dataSources.xml deleted file mode 100644 index 81ec136..0000000 --- a/.idea/dataSources.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - postgresql - true - org.postgresql.Driver - jdbc:postgresql://localhost:5432/hy_passport - $ProjectFileDir$ - - - postgresql - true - org.postgresql.Driver - jdbc:postgresql://id.solsynth.dev:5432/passport - $ProjectFileDir$ - - - \ No newline at end of file diff --git a/.idea/dataSources/723637bc-6ce3-4bbe-afb3-d88730c75a1b.xml b/.idea/dataSources/723637bc-6ce3-4bbe-afb3-d88730c75a1b.xml deleted file mode 100644 index c4e5736..0000000 --- a/.idea/dataSources/723637bc-6ce3-4bbe-afb3-d88730c75a1b.xml +++ /dev/null @@ -1,6598 +0,0 @@ - - - - - mdy - 1||-9223372036854775808|c|G -1||10|c|G -1||10|C|G -1||10|T|G -4||-9223372036854775808|c|G -4||10|c|G -4||10|C|G -4||10|T|G - 41831 - 16.2 - 1711890954 - true ACDT -true ACSST -false ACST -false ACT -false ACWST -true ADT -true AEDT -true AESST -false AEST -false AFT -true AKDT -false AKST -true ALMST -false ALMT -false AMST -false AMT -false ANAST -false ANAT -false ARST -false ART -false AST -true AWSST -false AWST -true AZOST -false AZOT -false AZST -false AZT -false Africa/Abidjan -false Africa/Accra -false Africa/Addis_Ababa -false Africa/Algiers -false Africa/Asmara -false Africa/Asmera -false Africa/Bamako -false Africa/Bangui -false Africa/Banjul -false Africa/Bissau -false Africa/Blantyre -false Africa/Brazzaville -false Africa/Bujumbura -true Africa/Cairo -false Africa/Casablanca -true Africa/Ceuta -false Africa/Conakry -false Africa/Dakar -false Africa/Dar_es_Salaam -false Africa/Djibouti -false Africa/Douala -false Africa/El_Aaiun -false Africa/Freetown -false Africa/Gaborone -false Africa/Harare -false Africa/Johannesburg -false Africa/Juba -false Africa/Kampala -false Africa/Khartoum -false Africa/Kigali -false Africa/Kinshasa -false Africa/Lagos -false Africa/Libreville -false Africa/Lome -false Africa/Luanda -false Africa/Lubumbashi -false Africa/Lusaka -false Africa/Malabo -false Africa/Maputo -false Africa/Maseru -false Africa/Mbabane -false Africa/Mogadishu -false Africa/Monrovia -false Africa/Nairobi -false Africa/Ndjamena -false Africa/Niamey -false Africa/Nouakchott -false Africa/Ouagadougou -false Africa/Porto-Novo -false Africa/Sao_Tome -false Africa/Timbuktu -false Africa/Tripoli -false Africa/Tunis -false Africa/Windhoek -true America/Adak -true America/Anchorage -false America/Anguilla -false America/Antigua -false America/Araguaina -false America/Argentina/Buenos_Aires -false America/Argentina/Catamarca -false America/Argentina/ComodRivadavia -false America/Argentina/Cordoba -false America/Argentina/Jujuy -false America/Argentina/La_Rioja -false America/Argentina/Mendoza -false America/Argentina/Rio_Gallegos -false America/Argentina/Salta -false America/Argentina/San_Juan -false America/Argentina/San_Luis -false America/Argentina/Tucuman -false America/Argentina/Ushuaia -false America/Aruba -false America/Asuncion -false America/Atikokan -true America/Atka -false America/Bahia -false America/Bahia_Banderas -false America/Barbados -false America/Belem -false America/Belize -false America/Blanc-Sablon -false America/Boa_Vista -false America/Bogota -true America/Boise -false America/Buenos_Aires -true America/Cambridge_Bay -false America/Campo_Grande -false America/Cancun -false America/Caracas -false America/Catamarca -false America/Cayenne -false America/Cayman -true America/Chicago -false America/Chihuahua -true America/Ciudad_Juarez -false America/Coral_Harbour -false America/Cordoba -false America/Costa_Rica -false America/Creston -false America/Cuiaba -false America/Curacao -false America/Danmarkshavn -false America/Dawson -false America/Dawson_Creek -true America/Denver -true America/Detroit -false America/Dominica -true America/Edmonton -false America/Eirunepe -false America/El_Salvador -true America/Ensenada -false America/Fort_Nelson -true America/Fort_Wayne -false America/Fortaleza -true America/Glace_Bay -true America/Godthab -true America/Goose_Bay -true America/Grand_Turk -false America/Grenada -false America/Guadeloupe -false America/Guatemala -false America/Guayaquil -false America/Guyana -true America/Halifax -true America/Havana -false America/Hermosillo -true America/Indiana/Indianapolis -true America/Indiana/Knox -true America/Indiana/Marengo -true America/Indiana/Petersburg -true America/Indiana/Tell_City -true America/Indiana/Vevay -true America/Indiana/Vincennes -true America/Indiana/Winamac -true America/Indianapolis -true America/Inuvik -true America/Iqaluit -false America/Jamaica -false America/Jujuy -true America/Juneau -true America/Kentucky/Louisville -true America/Kentucky/Monticello -true America/Knox_IN -false America/Kralendijk -false America/La_Paz -false America/Lima -true America/Los_Angeles -true America/Louisville -false America/Lower_Princes -false America/Maceio -false America/Managua -false America/Manaus -false America/Marigot -false America/Martinique -true America/Matamoros -false America/Mazatlan -false America/Mendoza -true America/Menominee -false America/Merida -true America/Metlakatla -false America/Mexico_City -true America/Miquelon -true America/Moncton -false America/Monterrey -false America/Montevideo -true America/Montreal -false America/Montserrat -true America/Nassau -true America/New_York -true America/Nipigon -true America/Nome -false America/Noronha -true America/North_Dakota/Beulah -true America/North_Dakota/Center -true America/North_Dakota/New_Salem -true America/Nuuk -true America/Ojinaga -false America/Panama -true America/Pangnirtung -false America/Paramaribo -false America/Phoenix -true America/Port-au-Prince -false America/Port_of_Spain -false America/Porto_Acre -false America/Porto_Velho -false America/Puerto_Rico -false America/Punta_Arenas -true America/Rainy_River -true America/Rankin_Inlet -false America/Recife -false America/Regina -true America/Resolute -false America/Rio_Branco -false America/Rosario -true America/Santa_Isabel -false America/Santarem -false America/Santiago -false America/Santo_Domingo -false America/Sao_Paulo -true America/Scoresbysund -true America/Shiprock -true America/Sitka -false America/St_Barthelemy -true America/St_Johns -false America/St_Kitts -false America/St_Lucia -false America/St_Thomas -false America/St_Vincent -false America/Swift_Current -false America/Tegucigalpa -true America/Thule -true America/Thunder_Bay -true America/Tijuana -true America/Toronto -false America/Tortola -true America/Vancouver -false America/Virgin -false America/Whitehorse -true America/Winnipeg -true America/Yakutat -true America/Yellowknife -false Antarctica/Casey -false Antarctica/Davis -false Antarctica/DumontDUrville -false Antarctica/Macquarie -false Antarctica/Mawson -false Antarctica/McMurdo -false Antarctica/Palmer -false Antarctica/Rothera -false Antarctica/South_Pole -false Antarctica/Syowa -true Antarctica/Troll -false Antarctica/Vostok -true Arctic/Longyearbyen -false Asia/Aden -false Asia/Almaty -false Asia/Amman -false Asia/Anadyr -false Asia/Aqtau -false Asia/Aqtobe -false Asia/Ashgabat -false Asia/Ashkhabad -false Asia/Atyrau -false Asia/Baghdad -false Asia/Bahrain -false Asia/Baku -false Asia/Bangkok -false Asia/Barnaul -true Asia/Beirut -false Asia/Bishkek -false Asia/Brunei -false Asia/Calcutta -false Asia/Chita -false Asia/Choibalsan -false Asia/Chongqing -false Asia/Chungking -false Asia/Colombo -false Asia/Dacca -false Asia/Damascus -false Asia/Dhaka -false Asia/Dili -false Asia/Dubai -false Asia/Dushanbe -true Asia/Famagusta -true Asia/Gaza -false Asia/Harbin -true Asia/Hebron -false Asia/Ho_Chi_Minh -false Asia/Hong_Kong -false Asia/Hovd -false Asia/Irkutsk -false Asia/Istanbul -false Asia/Jakarta -false Asia/Jayapura -true Asia/Jerusalem -false Asia/Kabul -false Asia/Kamchatka -false Asia/Karachi -false Asia/Kashgar -false Asia/Kathmandu -false Asia/Katmandu -false Asia/Khandyga -false Asia/Kolkata -false Asia/Krasnoyarsk -false Asia/Kuala_Lumpur -false Asia/Kuching -false Asia/Kuwait -false Asia/Macao -false Asia/Macau -false Asia/Magadan -false Asia/Makassar -false Asia/Manila -false Asia/Muscat -true Asia/Nicosia -false Asia/Novokuznetsk -false Asia/Novosibirsk -false Asia/Omsk -false Asia/Oral -false Asia/Phnom_Penh -false Asia/Pontianak -false Asia/Pyongyang -false Asia/Qatar -false Asia/Qostanay -false Asia/Qyzylorda -false Asia/Rangoon -false Asia/Riyadh -false Asia/Saigon -false Asia/Sakhalin -false Asia/Samarkand -false Asia/Seoul -false Asia/Shanghai -false Asia/Singapore -false Asia/Srednekolymsk -false Asia/Taipei -false Asia/Tashkent -false Asia/Tbilisi -false Asia/Tehran -true Asia/Tel_Aviv -false Asia/Thimbu -false Asia/Thimphu -false Asia/Tokyo -false Asia/Tomsk -false Asia/Ujung_Pandang -false Asia/Ulaanbaatar -false Asia/Ulan_Bator -false Asia/Urumqi -false Asia/Ust-Nera -false Asia/Vientiane -false Asia/Vladivostok -false Asia/Yakutsk -false Asia/Yangon -false Asia/Yekaterinburg -false Asia/Yerevan -true Atlantic/Azores -true Atlantic/Bermuda -true Atlantic/Canary -false Atlantic/Cape_Verde -true Atlantic/Faeroe -true Atlantic/Faroe -true Atlantic/Jan_Mayen -true Atlantic/Madeira -false Atlantic/Reykjavik -false Atlantic/South_Georgia -false Atlantic/St_Helena -false Atlantic/Stanley -false Australia/ACT -false Australia/Adelaide -false Australia/Brisbane -false Australia/Broken_Hill -false Australia/Canberra -false Australia/Currie -false Australia/Darwin -false Australia/Eucla -false Australia/Hobart -false Australia/LHI -false Australia/Lindeman -false Australia/Lord_Howe -false Australia/Melbourne -false Australia/NSW -false Australia/North -false Australia/Perth -false Australia/Queensland -false Australia/South -false Australia/Sydney -false Australia/Tasmania -false Australia/Victoria -false Australia/West -false Australia/Yancowinna -true BDST -false BDT -false BNT -false BORT -false BOT -false BRA -true BRST -false BRT -true BST -false BTT -false Brazil/Acre -false Brazil/DeNoronha -false Brazil/East -false Brazil/West -true CADT -false CAST -false CCT -true CDT -true CEST -false CET -true CETDST -true CHADT -false CHAST -false CHUT -false CKT -true CLST -false CLT -false COT -false CST -true CST6CDT -false CXT -true Canada/Atlantic -true Canada/Central -true Canada/Eastern -true Canada/Mountain -true Canada/Newfoundland -true Canada/Pacific -false Canada/Saskatchewan -false Canada/Yukon -false Chile/Continental -false Chile/EasterIsland -true Cuba -false DAVT -false DDUT -false EASST -false EAST -false EAT -true EDT -true EEST -false EET -true EETDST -true EGST -false EGT -false EST -true EST5EDT -true Egypt -false Eire -false Etc/GMT -false Etc/GMT+0 -false Etc/GMT+1 -false Etc/GMT+10 -false Etc/GMT+11 -false Etc/GMT+12 -false Etc/GMT+2 -false Etc/GMT+3 -false Etc/GMT+4 -false Etc/GMT+5 -false Etc/GMT+6 -false Etc/GMT+7 -false Etc/GMT+8 -false Etc/GMT+9 -false Etc/GMT-0 -false Etc/GMT-1 -false Etc/GMT-10 -false Etc/GMT-11 -false Etc/GMT-12 -false Etc/GMT-13 -false Etc/GMT-14 -false Etc/GMT-2 -false Etc/GMT-3 -false Etc/GMT-4 -false Etc/GMT-5 -false Etc/GMT-6 -false Etc/GMT-7 -false Etc/GMT-8 -false Etc/GMT-9 -false Etc/GMT0 -false Etc/Greenwich -false Etc/UCT -false Etc/UTC -false Etc/Universal -false Etc/Zulu -true Europe/Amsterdam -true Europe/Andorra -false Europe/Astrakhan -true Europe/Athens -true Europe/Belfast -true Europe/Belgrade -true Europe/Berlin -true Europe/Bratislava -true Europe/Brussels -true Europe/Bucharest -true Europe/Budapest -true Europe/Busingen -true Europe/Chisinau -true Europe/Copenhagen -false Europe/Dublin -true Europe/Gibraltar -true Europe/Guernsey -true Europe/Helsinki -true Europe/Isle_of_Man -false Europe/Istanbul -true Europe/Jersey -false Europe/Kaliningrad -true Europe/Kiev -false Europe/Kirov -true Europe/Kyiv -true Europe/Lisbon -true Europe/Ljubljana -true Europe/London -true Europe/Luxembourg -true Europe/Madrid -true Europe/Malta -true Europe/Mariehamn -false Europe/Minsk -true Europe/Monaco -false Europe/Moscow -true Europe/Nicosia -true Europe/Oslo -true Europe/Paris -true Europe/Podgorica -true Europe/Prague -true Europe/Riga -true Europe/Rome -false Europe/Samara -true Europe/San_Marino -true Europe/Sarajevo -false Europe/Saratov -false Europe/Simferopol -true Europe/Skopje -true Europe/Sofia -true Europe/Stockholm -true Europe/Tallinn -true Europe/Tirane -true Europe/Tiraspol -false Europe/Ulyanovsk -true Europe/Uzhgorod -true Europe/Vaduz -true Europe/Vatican -true Europe/Vienna -true Europe/Vilnius -false Europe/Volgograd -true Europe/Warsaw -true Europe/Zagreb -true Europe/Zaporozhye -true Europe/Zurich -false FET -true FJST -false FJT -false FKST -false FKT -true FNST -false FNT -false Factory -false GALT -false GAMT -true GB -true GB-Eire -false GEST -false GET -false GFT -false GILT -false GMT -false GMT+0 -false GMT-0 -false GMT0 -false GYT -false Greenwich -false HKT -false HST -false Hongkong -false ICT -true IDT -false IOT -false IRKST -false IRKT -false IRT -false IST -false Iceland -false Indian/Antananarivo -false Indian/Chagos -false Indian/Christmas -false Indian/Cocos -false Indian/Comoro -false Indian/Kerguelen -false Indian/Mahe -false Indian/Maldives -false Indian/Mauritius -false Indian/Mayotte -false Indian/Reunion -false Iran -true Israel -false JAYT -false JST -false Jamaica -false Japan -true KDT -true KGST -false KGT -false KOST -false KRAST -false KRAT -false KST -false Kwajalein -false LHDT -false LHST -false LIGT -false LINT -false LKT -false Libya -false MAGST -false MAGT -false MART -false MAWT -true MDT -true MEST -true MESZ -true MET -true METDST -false MEZ -false MHT -false MMT -false MPT -true MSD -false MSK -false MST -true MST7MDT -true MUST -false MUT -false MVT -false MYT -true Mexico/BajaNorte -false Mexico/BajaSur -false Mexico/General -true NDT -false NFT -false NOVST -false NOVT -false NPT -false NST -false NUT -false NZ -false NZ-CHAT -true NZDT -false NZST -false NZT -true Navajo -false OMSST -false OMST -true PDT -false PET -false PETST -false PETT -false PGT -false PHT -true PKST -false PKT -true PMDT -false PMST -false PONT -false PRC -false PST -true PST8PDT -false PWT -true PYST -false PYT -false Pacific/Apia -false Pacific/Auckland -false Pacific/Bougainville -false Pacific/Chatham -false Pacific/Chuuk -false Pacific/Easter -false Pacific/Efate -false Pacific/Enderbury -false Pacific/Fakaofo -false Pacific/Fiji -false Pacific/Funafuti -false Pacific/Galapagos -false Pacific/Gambier -false Pacific/Guadalcanal -false Pacific/Guam -false Pacific/Honolulu -false Pacific/Johnston -false Pacific/Kanton -false Pacific/Kiritimati -false Pacific/Kosrae -false Pacific/Kwajalein -false Pacific/Majuro -false Pacific/Marquesas -false Pacific/Midway -false Pacific/Nauru -false Pacific/Niue -false Pacific/Norfolk -false Pacific/Noumea -false Pacific/Pago_Pago -false Pacific/Palau -false Pacific/Pitcairn -false Pacific/Pohnpei -false Pacific/Ponape -false Pacific/Port_Moresby -false Pacific/Rarotonga -false Pacific/Saipan -false Pacific/Samoa -false Pacific/Tahiti -false Pacific/Tarawa -false Pacific/Tongatapu -false Pacific/Truk -false Pacific/Wake -false Pacific/Wallis -false Pacific/Yap -true Poland -true Portugal -false RET -false ROC -false ROK -true SADT -false SAST -false SCT -false SGT -false Singapore -false TAHT -false TFT -false TJT -false TKT -false TMT -false TOT -false TRUT -false TVT -false Turkey -false UCT -true ULAST -false ULAT -true US/Alaska -true US/Aleutian -false US/Arizona -true US/Central -true US/East-Indiana -true US/Eastern -false US/Hawaii -true US/Indiana-Starke -true US/Michigan -true US/Mountain -true US/Pacific -false US/Samoa -false UT -false UTC -true UYST -false UYT -true UZST -false UZT -false Universal -false VET -false VLAST -false VLAT -false VOLT -false VUT -false W-SU -true WADT -false WAKT -false WAST -false WAT -true WDT -true WET -true WETDST -false WFT -true WGST -false WGT -false XJT -false YAKST -false YAKT -false YAPT -true YEKST -false YEKT -false Z -false Zulu -false localtime -false posix/Africa/Abidjan -false posix/Africa/Accra -false posix/Africa/Addis_Ababa -false posix/Africa/Algiers -false posix/Africa/Asmara -false posix/Africa/Asmera -false posix/Africa/Bamako -false posix/Africa/Bangui -false posix/Africa/Banjul -false posix/Africa/Bissau -false posix/Africa/Blantyre -false posix/Africa/Brazzaville -false posix/Africa/Bujumbura -true posix/Africa/Cairo -false posix/Africa/Casablanca -true posix/Africa/Ceuta -false posix/Africa/Conakry -false posix/Africa/Dakar -false posix/Africa/Dar_es_Salaam -false posix/Africa/Djibouti -false posix/Africa/Douala -false posix/Africa/El_Aaiun -false posix/Africa/Freetown -false posix/Africa/Gaborone -false posix/Africa/Harare -false posix/Africa/Johannesburg -false posix/Africa/Juba -false posix/Africa/Kampala -false posix/Africa/Khartoum -false posix/Africa/Kigali -false posix/Africa/Kinshasa -false posix/Africa/Lagos -false posix/Africa/Libreville -false posix/Africa/Lome -false posix/Africa/Luanda -false posix/Africa/Lubumbashi -false posix/Africa/Lusaka -false posix/Africa/Malabo -false posix/Africa/Maputo -false posix/Africa/Maseru -false posix/Africa/Mbabane -false posix/Africa/Mogadishu -false posix/Africa/Monrovia -false posix/Africa/Nairobi -false posix/Africa/Ndjamena -false posix/Africa/Niamey -false posix/Africa/Nouakchott -false posix/Africa/Ouagadougou -false posix/Africa/Porto-Novo -false posix/Africa/Sao_Tome -false posix/Africa/Timbuktu -false posix/Africa/Tripoli -false posix/Africa/Tunis -false posix/Africa/Windhoek -true posix/America/Adak -true posix/America/Anchorage -false posix/America/Anguilla -false posix/America/Antigua -false posix/America/Araguaina -false posix/America/Argentina/Buenos_Aires -false posix/America/Argentina/Catamarca -false posix/America/Argentina/ComodRivadavia -false posix/America/Argentina/Cordoba -false posix/America/Argentina/Jujuy -false posix/America/Argentina/La_Rioja -false posix/America/Argentina/Mendoza -false posix/America/Argentina/Rio_Gallegos -false posix/America/Argentina/Salta -false posix/America/Argentina/San_Juan -false posix/America/Argentina/San_Luis -false posix/America/Argentina/Tucuman -false posix/America/Argentina/Ushuaia -false posix/America/Aruba -false posix/America/Asuncion -false posix/America/Atikokan -true posix/America/Atka -false posix/America/Bahia -false posix/America/Bahia_Banderas -false posix/America/Barbados -false posix/America/Belem -false posix/America/Belize -false posix/America/Blanc-Sablon -false posix/America/Boa_Vista -false posix/America/Bogota -true posix/America/Boise -false posix/America/Buenos_Aires -true posix/America/Cambridge_Bay -false posix/America/Campo_Grande -false posix/America/Cancun -false posix/America/Caracas -false posix/America/Catamarca -false posix/America/Cayenne -false posix/America/Cayman -true posix/America/Chicago -false posix/America/Chihuahua -true posix/America/Ciudad_Juarez -false posix/America/Coral_Harbour -false posix/America/Cordoba -false posix/America/Costa_Rica -false posix/America/Creston -false posix/America/Cuiaba -false posix/America/Curacao -false posix/America/Danmarkshavn -false posix/America/Dawson -false posix/America/Dawson_Creek -true posix/America/Denver -true posix/America/Detroit -false posix/America/Dominica -true posix/America/Edmonton -false posix/America/Eirunepe -false posix/America/El_Salvador -true posix/America/Ensenada -false posix/America/Fort_Nelson -true posix/America/Fort_Wayne -false posix/America/Fortaleza -true posix/America/Glace_Bay -true posix/America/Godthab -true posix/America/Goose_Bay -true posix/America/Grand_Turk -false posix/America/Grenada -false posix/America/Guadeloupe -false posix/America/Guatemala -false posix/America/Guayaquil -false posix/America/Guyana -true posix/America/Halifax -true posix/America/Havana -false posix/America/Hermosillo -true posix/America/Indiana/Indianapolis -true posix/America/Indiana/Knox -true posix/America/Indiana/Marengo -true posix/America/Indiana/Petersburg -true posix/America/Indiana/Tell_City -true posix/America/Indiana/Vevay -true posix/America/Indiana/Vincennes -true posix/America/Indiana/Winamac -true posix/America/Indianapolis -true posix/America/Inuvik -true posix/America/Iqaluit -false posix/America/Jamaica -false posix/America/Jujuy -true posix/America/Juneau -true posix/America/Kentucky/Louisville -true posix/America/Kentucky/Monticello -true posix/America/Knox_IN -false posix/America/Kralendijk -false posix/America/La_Paz -false posix/America/Lima -true posix/America/Los_Angeles -true posix/America/Louisville -false posix/America/Lower_Princes -false posix/America/Maceio -false posix/America/Managua -false posix/America/Manaus -false posix/America/Marigot -false posix/America/Martinique -true posix/America/Matamoros -false posix/America/Mazatlan -false posix/America/Mendoza -true posix/America/Menominee -false posix/America/Merida -true posix/America/Metlakatla -false posix/America/Mexico_City -true posix/America/Miquelon -true posix/America/Moncton -false posix/America/Monterrey -false posix/America/Montevideo -true posix/America/Montreal -false posix/America/Montserrat -true posix/America/Nassau -true posix/America/New_York -true posix/America/Nipigon -true posix/America/Nome -false posix/America/Noronha -true posix/America/North_Dakota/Beulah -true posix/America/North_Dakota/Center -true posix/America/North_Dakota/New_Salem -true posix/America/Nuuk -true posix/America/Ojinaga -false posix/America/Panama -true posix/America/Pangnirtung -false posix/America/Paramaribo -false posix/America/Phoenix -true posix/America/Port-au-Prince -false posix/America/Port_of_Spain -false posix/America/Porto_Acre -false posix/America/Porto_Velho -false posix/America/Puerto_Rico -false posix/America/Punta_Arenas -true posix/America/Rainy_River -true posix/America/Rankin_Inlet -false posix/America/Recife -false posix/America/Regina -true posix/America/Resolute -false posix/America/Rio_Branco -false posix/America/Rosario -true posix/America/Santa_Isabel -false posix/America/Santarem -false posix/America/Santiago -false posix/America/Santo_Domingo -false posix/America/Sao_Paulo -true posix/America/Scoresbysund -true posix/America/Shiprock -true posix/America/Sitka -false posix/America/St_Barthelemy -true posix/America/St_Johns -false posix/America/St_Kitts -false posix/America/St_Lucia -false posix/America/St_Thomas -false posix/America/St_Vincent -false posix/America/Swift_Current -false posix/America/Tegucigalpa -true posix/America/Thule -true posix/America/Thunder_Bay -true posix/America/Tijuana -true posix/America/Toronto -false posix/America/Tortola -true posix/America/Vancouver -false posix/America/Virgin -false posix/America/Whitehorse -true posix/America/Winnipeg -true posix/America/Yakutat -true posix/America/Yellowknife -false posix/Antarctica/Casey -false posix/Antarctica/Davis -false posix/Antarctica/DumontDUrville -false posix/Antarctica/Macquarie -false posix/Antarctica/Mawson -false posix/Antarctica/McMurdo -false posix/Antarctica/Palmer -false posix/Antarctica/Rothera -false posix/Antarctica/South_Pole -false posix/Antarctica/Syowa -true posix/Antarctica/Troll -false posix/Antarctica/Vostok -true posix/Arctic/Longyearbyen -false posix/Asia/Aden -false posix/Asia/Almaty -false posix/Asia/Amman -false posix/Asia/Anadyr -false posix/Asia/Aqtau -false posix/Asia/Aqtobe -false posix/Asia/Ashgabat -false posix/Asia/Ashkhabad -false posix/Asia/Atyrau -false posix/Asia/Baghdad -false posix/Asia/Bahrain -false posix/Asia/Baku -false posix/Asia/Bangkok -false posix/Asia/Barnaul -true posix/Asia/Beirut -false posix/Asia/Bishkek -false posix/Asia/Brunei -false posix/Asia/Calcutta -false posix/Asia/Chita -false posix/Asia/Choibalsan -false posix/Asia/Chongqing -false posix/Asia/Chungking -false posix/Asia/Colombo -false posix/Asia/Dacca -false posix/Asia/Damascus -false posix/Asia/Dhaka -false posix/Asia/Dili -false posix/Asia/Dubai -false posix/Asia/Dushanbe -true posix/Asia/Famagusta -true posix/Asia/Gaza -false posix/Asia/Harbin -true posix/Asia/Hebron -false posix/Asia/Ho_Chi_Minh -false posix/Asia/Hong_Kong -false posix/Asia/Hovd -false posix/Asia/Irkutsk -false posix/Asia/Istanbul -false posix/Asia/Jakarta -false posix/Asia/Jayapura -true posix/Asia/Jerusalem -false posix/Asia/Kabul -false posix/Asia/Kamchatka -false posix/Asia/Karachi -false posix/Asia/Kashgar -false posix/Asia/Kathmandu -false posix/Asia/Katmandu -false posix/Asia/Khandyga -false posix/Asia/Kolkata -false posix/Asia/Krasnoyarsk -false posix/Asia/Kuala_Lumpur -false posix/Asia/Kuching -false posix/Asia/Kuwait -false posix/Asia/Macao -false posix/Asia/Macau -false posix/Asia/Magadan -false posix/Asia/Makassar -false posix/Asia/Manila -false posix/Asia/Muscat -true posix/Asia/Nicosia -false posix/Asia/Novokuznetsk -false posix/Asia/Novosibirsk -false posix/Asia/Omsk -false posix/Asia/Oral -false posix/Asia/Phnom_Penh -false posix/Asia/Pontianak -false posix/Asia/Pyongyang -false posix/Asia/Qatar -false posix/Asia/Qostanay -false posix/Asia/Qyzylorda -false posix/Asia/Rangoon -false posix/Asia/Riyadh -false posix/Asia/Saigon -false posix/Asia/Sakhalin -false posix/Asia/Samarkand -false posix/Asia/Seoul -false posix/Asia/Shanghai -false posix/Asia/Singapore -false posix/Asia/Srednekolymsk -false posix/Asia/Taipei -false posix/Asia/Tashkent -false posix/Asia/Tbilisi -false posix/Asia/Tehran -true posix/Asia/Tel_Aviv -false posix/Asia/Thimbu -false posix/Asia/Thimphu -false posix/Asia/Tokyo -false posix/Asia/Tomsk -false posix/Asia/Ujung_Pandang -false posix/Asia/Ulaanbaatar -false posix/Asia/Ulan_Bator -false posix/Asia/Urumqi -false posix/Asia/Ust-Nera -false posix/Asia/Vientiane -false posix/Asia/Vladivostok -false posix/Asia/Yakutsk -false posix/Asia/Yangon -false posix/Asia/Yekaterinburg -false posix/Asia/Yerevan -true posix/Atlantic/Azores -true posix/Atlantic/Bermuda -true posix/Atlantic/Canary -false posix/Atlantic/Cape_Verde -true posix/Atlantic/Faeroe -true posix/Atlantic/Faroe -true posix/Atlantic/Jan_Mayen -true posix/Atlantic/Madeira -false posix/Atlantic/Reykjavik -false posix/Atlantic/South_Georgia -false posix/Atlantic/St_Helena -false posix/Atlantic/Stanley -false posix/Australia/ACT -false posix/Australia/Adelaide -false posix/Australia/Brisbane -false posix/Australia/Broken_Hill -false posix/Australia/Canberra -false posix/Australia/Currie -false posix/Australia/Darwin -false posix/Australia/Eucla -false posix/Australia/Hobart -false posix/Australia/LHI -false posix/Australia/Lindeman -false posix/Australia/Lord_Howe -false posix/Australia/Melbourne -false posix/Australia/NSW -false posix/Australia/North -false posix/Australia/Perth -false posix/Australia/Queensland -false posix/Australia/South -false posix/Australia/Sydney -false posix/Australia/Tasmania -false posix/Australia/Victoria -false posix/Australia/West -false posix/Australia/Yancowinna -false posix/Brazil/Acre -false posix/Brazil/DeNoronha -false posix/Brazil/East -false posix/Brazil/West -true posix/CET -true posix/CST6CDT -true posix/Canada/Atlantic -true posix/Canada/Central -true posix/Canada/Eastern -true posix/Canada/Mountain -true posix/Canada/Newfoundland -true posix/Canada/Pacific -false posix/Canada/Saskatchewan -false posix/Canada/Yukon -false posix/Chile/Continental -false posix/Chile/EasterIsland -true posix/Cuba -true posix/EET -false posix/EST -true posix/EST5EDT -true posix/Egypt -false posix/Eire -false posix/Etc/GMT -false posix/Etc/GMT+0 -false posix/Etc/GMT+1 -false posix/Etc/GMT+10 -false posix/Etc/GMT+11 -false posix/Etc/GMT+12 -false posix/Etc/GMT+2 -false posix/Etc/GMT+3 -false posix/Etc/GMT+4 -false posix/Etc/GMT+5 -false posix/Etc/GMT+6 -false posix/Etc/GMT+7 -false posix/Etc/GMT+8 -false posix/Etc/GMT+9 -false posix/Etc/GMT-0 -false posix/Etc/GMT-1 -false posix/Etc/GMT-10 -false posix/Etc/GMT-11 -false posix/Etc/GMT-12 -false posix/Etc/GMT-13 -false posix/Etc/GMT-14 -false posix/Etc/GMT-2 -false posix/Etc/GMT-3 -false posix/Etc/GMT-4 -false posix/Etc/GMT-5 -false posix/Etc/GMT-6 -false posix/Etc/GMT-7 -false posix/Etc/GMT-8 -false posix/Etc/GMT-9 -false posix/Etc/GMT0 -false posix/Etc/Greenwich -false posix/Etc/UCT -false posix/Etc/UTC -false posix/Etc/Universal -false posix/Etc/Zulu -true posix/Europe/Amsterdam -true posix/Europe/Andorra -false posix/Europe/Astrakhan -true posix/Europe/Athens -true posix/Europe/Belfast -true posix/Europe/Belgrade -true posix/Europe/Berlin -true posix/Europe/Bratislava -true posix/Europe/Brussels -true posix/Europe/Bucharest -true posix/Europe/Budapest -true posix/Europe/Busingen -true posix/Europe/Chisinau -true posix/Europe/Copenhagen -false posix/Europe/Dublin -true posix/Europe/Gibraltar -true posix/Europe/Guernsey -true posix/Europe/Helsinki -true posix/Europe/Isle_of_Man -false posix/Europe/Istanbul -true posix/Europe/Jersey -false posix/Europe/Kaliningrad -true posix/Europe/Kiev -false posix/Europe/Kirov -true posix/Europe/Kyiv -true posix/Europe/Lisbon -true posix/Europe/Ljubljana -true posix/Europe/London -true posix/Europe/Luxembourg -true posix/Europe/Madrid -true posix/Europe/Malta -true posix/Europe/Mariehamn -false posix/Europe/Minsk -true posix/Europe/Monaco -false posix/Europe/Moscow -true posix/Europe/Nicosia -true posix/Europe/Oslo -true posix/Europe/Paris -true posix/Europe/Podgorica -true posix/Europe/Prague -true posix/Europe/Riga -true posix/Europe/Rome -false posix/Europe/Samara -true posix/Europe/San_Marino -true posix/Europe/Sarajevo -false posix/Europe/Saratov -false posix/Europe/Simferopol -true posix/Europe/Skopje -true posix/Europe/Sofia -true posix/Europe/Stockholm -true posix/Europe/Tallinn -true posix/Europe/Tirane -true posix/Europe/Tiraspol -false posix/Europe/Ulyanovsk -true posix/Europe/Uzhgorod -true posix/Europe/Vaduz -true posix/Europe/Vatican -true posix/Europe/Vienna -true posix/Europe/Vilnius -false posix/Europe/Volgograd -true posix/Europe/Warsaw -true posix/Europe/Zagreb -true posix/Europe/Zaporozhye -true posix/Europe/Zurich -false posix/Factory -true posix/GB -true posix/GB-Eire -false posix/GMT -false posix/GMT+0 -false posix/GMT-0 -false posix/GMT0 -false posix/Greenwich -false posix/HST -false posix/Hongkong -false posix/Iceland -false posix/Indian/Antananarivo -false posix/Indian/Chagos -false posix/Indian/Christmas -false posix/Indian/Cocos -false posix/Indian/Comoro -false posix/Indian/Kerguelen -false posix/Indian/Mahe -false posix/Indian/Maldives -false posix/Indian/Mauritius -false posix/Indian/Mayotte -false posix/Indian/Reunion -false posix/Iran -true posix/Israel -false posix/Jamaica -false posix/Japan -false posix/Kwajalein -false posix/Libya -true posix/MET -false posix/MST -true posix/MST7MDT -true posix/Mexico/BajaNorte -false posix/Mexico/BajaSur -false posix/Mexico/General -false posix/NZ -false posix/NZ-CHAT -true posix/Navajo -false posix/PRC -true posix/PST8PDT -false posix/Pacific/Apia -false posix/Pacific/Auckland -false posix/Pacific/Bougainville -false posix/Pacific/Chatham -false posix/Pacific/Chuuk -false posix/Pacific/Easter -false posix/Pacific/Efate -false posix/Pacific/Enderbury -false posix/Pacific/Fakaofo -false posix/Pacific/Fiji -false posix/Pacific/Funafuti -false posix/Pacific/Galapagos -false posix/Pacific/Gambier -false posix/Pacific/Guadalcanal -false posix/Pacific/Guam -false posix/Pacific/Honolulu -false posix/Pacific/Johnston -false posix/Pacific/Kanton -false posix/Pacific/Kiritimati -false posix/Pacific/Kosrae -false posix/Pacific/Kwajalein -false posix/Pacific/Majuro -false posix/Pacific/Marquesas -false posix/Pacific/Midway -false posix/Pacific/Nauru -false posix/Pacific/Niue -false posix/Pacific/Norfolk -false posix/Pacific/Noumea -false posix/Pacific/Pago_Pago -false posix/Pacific/Palau -false posix/Pacific/Pitcairn -false posix/Pacific/Pohnpei -false posix/Pacific/Ponape -false posix/Pacific/Port_Moresby -false posix/Pacific/Rarotonga -false posix/Pacific/Saipan -false posix/Pacific/Samoa -false posix/Pacific/Tahiti -false posix/Pacific/Tarawa -false posix/Pacific/Tongatapu -false posix/Pacific/Truk -false posix/Pacific/Wake -false posix/Pacific/Wallis -false posix/Pacific/Yap -true posix/Poland -true posix/Portugal -false posix/ROC -false posix/ROK -false posix/Singapore -false posix/Turkey -false posix/UCT -true posix/US/Alaska -true posix/US/Aleutian -false posix/US/Arizona -true posix/US/Central -true posix/US/East-Indiana -true posix/US/Eastern -false posix/US/Hawaii -true posix/US/Indiana-Starke -true posix/US/Michigan -true posix/US/Mountain -true posix/US/Pacific -false posix/US/Samoa -false posix/UTC -false posix/Universal -false posix/W-SU -true posix/WET -false posix/Zulu -true posixrules - - - - 1 - 11||10|C|G -11||-9223372036854775808|U|G -11||10|U|G -2200||6171|C|G -2200||-9223372036854775808|U|G -2200||6171|U|G -13193||10|C|G -13193||-9223372036854775808|U|G -13193||10|U|G - 41831 - 16388 - postgres - - - default administrative connection database - 5 - postgres - - - 16389 - postgres - - - 16390 - postgres - - - 6171 - - - 6181 - - - 6182 - - - 3373 - 3374 -3375 -3377 - - - 3374 - - - 3375 - - - 3377 - - - 4569 - - - 4570 - - - 4571 - - - 4200 - - - 4544 - - - 4550 - - - 6304 - - - 1 - 1 - 1 - 1 - 10 - 1 - 1 - - - 1 - 16969 - 1 - - - 1663 - 1 - postgres - - - 1664 - 1 - postgres - - - block range index (BRIN) access method - 3580 - 1 - index - 335 - brinhandler - pg_catalog - - - b-tree index access method - 403 - 1 - index - 330 - bthandler - pg_catalog - - - GIN index access method - 2742 - 1 - index - 333 - ginhandler - pg_catalog - - - GiST index access method - 783 - 1 - index - 332 - gisthandler - pg_catalog - - - hash index access method - 405 - 1 - index - 331 - hashhandler - pg_catalog - - - heap table access method - 2 - 1 - table - 3 - heap_tableam_handler - pg_catalog - - - SP-GiST index access method - 4000 - 1 - index - 334 - spghandler - pg_catalog - - - explicit - function - 10035 - 1 - 2558 - int4 - pg_catalog - 16 - bool - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10201 - 1 - 2971 - text - pg_catalog - 16 - bool - pg_catalog - 1042 - bpchar - pg_catalog - - - assignment - function - 10191 - 1 - 2971 - text - pg_catalog - 16 - bool - pg_catalog - 25 - text - pg_catalog - - - assignment - function - 10196 - 1 - 2971 - text - pg_catalog - 16 - bool - pg_catalog - 1043 - varchar - pg_catalog - - - explicit - function - 10143 - 1 - 77 - int4 - pg_catalog - 18 - char - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10133 - 1 - 946 - text - pg_catalog - 18 - char - pg_catalog - 1043 - varchar - pg_catalog - - - implicit - function - 10131 - 1 - 946 - text - pg_catalog - 18 - char - pg_catalog - 25 - text - pg_catalog - - - assignment - function - 10132 - 1 - 860 - bpchar - pg_catalog - 18 - char - pg_catalog - 1042 - bpchar - pg_catalog - - - assignment - function - 10135 - 1 - 408 - bpchar - pg_catalog - 19 - name - pg_catalog - 1042 - bpchar - pg_catalog - - - implicit - function - 10134 - 1 - 406 - text - pg_catalog - 19 - name - pg_catalog - 25 - text - pg_catalog - - - assignment - function - 10136 - 1 - 1401 - varchar - pg_catalog - 19 - name - pg_catalog - 1043 - varchar - pg_catalog - - - implicit - function - 10090 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 2206 - regtype - pg_catalog - - - implicit - function - 10060 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 2203 - regoper - pg_catalog - - - implicit - function - 10003 - 1 - 482 - float8 - pg_catalog - 20 - int8 - pg_catalog - 701 - float8 - pg_catalog - - - implicit - function - 10069 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 2204 - regoperator - pg_catalog - - - assignment - function - 10001 - 1 - 480 - int4 - pg_catalog - 20 - int8 - pg_catalog - 23 - int4 - pg_catalog - - - implicit - function - 10044 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 24 - regproc - pg_catalog - - - implicit - function - 10113 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 4096 - regrole - pg_catalog - - - implicit - function - 10120 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 4089 - regnamespace - pg_catalog - - - implicit - function - 10002 - 1 - 652 - float4 - pg_catalog - 20 - int8 - pg_catalog - 700 - float4 - pg_catalog - - - implicit - function - 10104 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 3769 - regdictionary - pg_catalog - - - implicit - function - 10083 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 4191 - regcollation - pg_catalog - - - assignment - function - 10033 - 1 - 3812 - money - pg_catalog - 20 - int8 - pg_catalog - 790 - money - pg_catalog - - - implicit - function - 10037 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 26 - oid - pg_catalog - - - implicit - function - 10097 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 3734 - regconfig - pg_catalog - - - assignment - function - 10000 - 1 - 714 - int2 - pg_catalog - 20 - int8 - pg_catalog - 21 - int2 - pg_catalog - - - explicit - function - 10185 - 1 - 2075 - bit - pg_catalog - 20 - int8 - pg_catalog - 1560 - bit - pg_catalog - - - implicit - function - 10004 - 1 - 1781 - numeric - pg_catalog - 20 - int8 - pg_catalog - 1700 - numeric - pg_catalog - - - implicit - function - 10053 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 2202 - regprocedure - pg_catalog - - - implicit - function - 10076 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 2205 - regclass - pg_catalog - - - implicit - function - 10045 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 24 - regproc - pg_catalog - - - implicit - function - 10091 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 2206 - regtype - pg_catalog - - - implicit - function - 10084 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 4191 - regcollation - pg_catalog - - - implicit - function - 10070 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 2204 - regoperator - pg_catalog - - - implicit - function - 10038 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 26 - oid - pg_catalog - - - implicit - function - 10009 - 1 - 1782 - numeric - pg_catalog - 21 - int2 - pg_catalog - 1700 - numeric - pg_catalog - - - implicit - function - 10077 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 2205 - regclass - pg_catalog - - - implicit - function - 10006 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 23 - int4 - pg_catalog - - - implicit - function - 10054 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 2202 - regprocedure - pg_catalog - - - implicit - function - 10007 - 1 - 236 - float4 - pg_catalog - 21 - int2 - pg_catalog - 700 - float4 - pg_catalog - - - implicit - function - 10005 - 1 - 754 - int8 - pg_catalog - 21 - int2 - pg_catalog - 20 - int8 - pg_catalog - - - implicit - function - 10114 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 4096 - regrole - pg_catalog - - - implicit - function - 10008 - 1 - 235 - float8 - pg_catalog - 21 - int2 - pg_catalog - 701 - float8 - pg_catalog - - - implicit - function - 10105 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 3769 - regdictionary - pg_catalog - - - implicit - function - 10121 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 4089 - regnamespace - pg_catalog - - - implicit - function - 10061 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 2203 - regoper - pg_catalog - - - implicit - function - 10098 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 3734 - regconfig - pg_catalog - - - implicit - binary - 10078 - 1 - 23 - int4 - pg_catalog - 2205 - regclass - pg_catalog - - - implicit - binary - 10085 - 1 - 23 - int4 - pg_catalog - 4191 - regcollation - pg_catalog - - - implicit - binary - 10115 - 1 - 23 - int4 - pg_catalog - 4096 - regrole - pg_catalog - - - explicit - function - 10144 - 1 - 78 - char - pg_catalog - 23 - int4 - pg_catalog - 18 - char - pg_catalog - - - implicit - binary - 10122 - 1 - 23 - int4 - pg_catalog - 4089 - regnamespace - pg_catalog - - - implicit - function - 10010 - 1 - 481 - int8 - pg_catalog - 23 - int4 - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10106 - 1 - 23 - int4 - pg_catalog - 3769 - regdictionary - pg_catalog - - - implicit - binary - 10099 - 1 - 23 - int4 - pg_catalog - 3734 - regconfig - pg_catalog - - - assignment - function - 10011 - 1 - 314 - int2 - pg_catalog - 23 - int4 - pg_catalog - 21 - int2 - pg_catalog - - - implicit - binary - 10092 - 1 - 23 - int4 - pg_catalog - 2206 - regtype - pg_catalog - - - implicit - binary - 10071 - 1 - 23 - int4 - pg_catalog - 2204 - regoperator - pg_catalog - - - implicit - binary - 10062 - 1 - 23 - int4 - pg_catalog - 2203 - regoper - pg_catalog - - - implicit - binary - 10046 - 1 - 23 - int4 - pg_catalog - 24 - regproc - pg_catalog - - - implicit - binary - 10055 - 1 - 23 - int4 - pg_catalog - 2202 - regprocedure - pg_catalog - - - explicit - function - 10034 - 1 - 2557 - bool - pg_catalog - 23 - int4 - pg_catalog - 16 - bool - pg_catalog - - - implicit - function - 10014 - 1 - 1740 - numeric - pg_catalog - 23 - int4 - pg_catalog - 1700 - numeric - pg_catalog - - - implicit - binary - 10039 - 1 - 23 - int4 - pg_catalog - 26 - oid - pg_catalog - - - explicit - function - 10186 - 1 - 1683 - bit - pg_catalog - 23 - int4 - pg_catalog - 1560 - bit - pg_catalog - - - implicit - function - 10012 - 1 - 318 - float4 - pg_catalog - 23 - int4 - pg_catalog - 700 - float4 - pg_catalog - - - implicit - function - 10013 - 1 - 316 - float8 - pg_catalog - 23 - int4 - pg_catalog - 701 - float8 - pg_catalog - - - assignment - function - 10032 - 1 - 3811 - money - pg_catalog - 23 - int4 - pg_catalog - 790 - money - pg_catalog - - - assignment - binary - 10048 - 1 - 24 - regproc - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10047 - 1 - 1288 - int8 - pg_catalog - 24 - regproc - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10043 - 1 - 24 - regproc - pg_catalog - 26 - oid - pg_catalog - - - implicit - binary - 10049 - 1 - 24 - regproc - pg_catalog - 2202 - regprocedure - pg_catalog - - - implicit - binary - 10125 - 1 - 25 - text - pg_catalog - 1042 - bpchar - pg_catalog - - - implicit - function - 10140 - 1 - 407 - name - pg_catalog - 25 - text - pg_catalog - 19 - name - pg_catalog - - - assignment - function - 10137 - 1 - 944 - char - pg_catalog - 25 - text - pg_catalog - 18 - char - pg_catalog - - - implicit - binary - 10126 - 1 - 25 - text - pg_catalog - 1043 - varchar - pg_catalog - - - explicit - function - 10193 - 1 - 2896 - xml - pg_catalog - 25 - text - pg_catalog - 142 - xml - pg_catalog - - - implicit - function - 10109 - 1 - 1079 - regclass - pg_catalog - 25 - text - pg_catalog - 2205 - regclass - pg_catalog - - - implicit - binary - 10074 - 1 - 26 - oid - pg_catalog - 2205 - regclass - pg_catalog - - - implicit - binary - 10051 - 1 - 26 - oid - pg_catalog - 2202 - regprocedure - pg_catalog - - - implicit - binary - 10095 - 1 - 26 - oid - pg_catalog - 3734 - regconfig - pg_catalog - - - implicit - binary - 10058 - 1 - 26 - oid - pg_catalog - 2203 - regoper - pg_catalog - - - implicit - binary - 10081 - 1 - 26 - oid - pg_catalog - 4191 - regcollation - pg_catalog - - - implicit - binary - 10067 - 1 - 26 - oid - pg_catalog - 2204 - regoperator - pg_catalog - - - implicit - binary - 10042 - 1 - 26 - oid - pg_catalog - 24 - regproc - pg_catalog - - - assignment - function - 10040 - 1 - 1288 - int8 - pg_catalog - 26 - oid - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10111 - 1 - 26 - oid - pg_catalog - 4096 - regrole - pg_catalog - - - implicit - binary - 10102 - 1 - 26 - oid - pg_catalog - 3769 - regdictionary - pg_catalog - - - implicit - binary - 10088 - 1 - 26 - oid - pg_catalog - 2206 - regtype - pg_catalog - - - assignment - binary - 10041 - 1 - 26 - oid - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10118 - 1 - 26 - oid - pg_catalog - 4089 - regnamespace - pg_catalog - - - assignment - io - 10214 - 1 - 114 - json - pg_catalog - 3802 - jsonb - pg_catalog - - - assignment - binary - 10202 - 1 - 142 - xml - pg_catalog - 1042 - bpchar - pg_catalog - - - assignment - binary - 10197 - 1 - 142 - xml - pg_catalog - 1043 - varchar - pg_catalog - - - assignment - binary - 10192 - 1 - 142 - xml - pg_catalog - 25 - text - pg_catalog - - - implicit - binary - 10145 - 1 - 194 - pg_node_tree - pg_catalog - 25 - text - pg_catalog - - - assignment - function - 10165 - 1 - 4091 - box - pg_catalog - 600 - point - pg_catalog - 603 - box - pg_catalog - - - explicit - function - 10166 - 1 - 1532 - point - pg_catalog - 601 - lseg - pg_catalog - 600 - point - pg_catalog - - - assignment - function - 10167 - 1 - 1449 - polygon - pg_catalog - 602 - path - pg_catalog - 604 - polygon - pg_catalog - - - explicit - function - 10168 - 1 - 1534 - point - pg_catalog - 603 - box - pg_catalog - 600 - point - pg_catalog - - - explicit - function - 10171 - 1 - 1479 - circle - pg_catalog - 603 - box - pg_catalog - 718 - circle - pg_catalog - - - explicit - function - 10169 - 1 - 1541 - lseg - pg_catalog - 603 - box - pg_catalog - 601 - lseg - pg_catalog - - - assignment - function - 10170 - 1 - 1448 - polygon - pg_catalog - 603 - box - pg_catalog - 604 - polygon - pg_catalog - - - explicit - function - 10172 - 1 - 1540 - point - pg_catalog - 604 - polygon - pg_catalog - 600 - point - pg_catalog - - - explicit - function - 10175 - 1 - 1474 - circle - pg_catalog - 604 - polygon - pg_catalog - 718 - circle - pg_catalog - - - explicit - function - 10174 - 1 - 1446 - box - pg_catalog - 604 - polygon - pg_catalog - 603 - box - pg_catalog - - - assignment - function - 10173 - 1 - 1447 - path - pg_catalog - 604 - polygon - pg_catalog - 602 - path - pg_catalog - - - assignment - function - 10194 - 1 - 730 - text - pg_catalog - 650 - cidr - pg_catalog - 1043 - varchar - pg_catalog - - - assignment - function - 10199 - 1 - 730 - text - pg_catalog - 650 - cidr - pg_catalog - 1042 - bpchar - pg_catalog - - - assignment - function - 10189 - 1 - 730 - text - pg_catalog - 650 - cidr - pg_catalog - 25 - text - pg_catalog - - - implicit - binary - 10181 - 1 - 650 - cidr - pg_catalog - 869 - inet - pg_catalog - - - assignment - function - 10016 - 1 - 238 - int2 - pg_catalog - 700 - float4 - pg_catalog - 21 - int2 - pg_catalog - - - assignment - function - 10015 - 1 - 653 - int8 - pg_catalog - 700 - float4 - pg_catalog - 20 - int8 - pg_catalog - - - implicit - function - 10018 - 1 - 311 - float8 - pg_catalog - 700 - float4 - pg_catalog - 701 - float8 - pg_catalog - - - assignment - function - 10019 - 1 - 1742 - numeric - pg_catalog - 700 - float4 - pg_catalog - 1700 - numeric - pg_catalog - - - assignment - function - 10017 - 1 - 319 - int4 - pg_catalog - 700 - float4 - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10024 - 1 - 1743 - numeric - pg_catalog - 701 - float8 - pg_catalog - 1700 - numeric - pg_catalog - - - assignment - function - 10020 - 1 - 483 - int8 - pg_catalog - 701 - float8 - pg_catalog - 20 - int8 - pg_catalog - - - assignment - function - 10021 - 1 - 237 - int2 - pg_catalog - 701 - float8 - pg_catalog - 21 - int2 - pg_catalog - - - assignment - function - 10022 - 1 - 317 - int4 - pg_catalog - 701 - float8 - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10023 - 1 - 312 - float4 - pg_catalog - 701 - float8 - pg_catalog - 700 - float4 - pg_catalog - - - explicit - function - 10178 - 1 - 1544 - polygon - pg_catalog - 718 - circle - pg_catalog - 604 - polygon - pg_catalog - - - explicit - function - 10176 - 1 - 1416 - point - pg_catalog - 718 - circle - pg_catalog - 600 - point - pg_catalog - - - explicit - function - 10177 - 1 - 1480 - box - pg_catalog - 718 - circle - pg_catalog - 603 - box - pg_catalog - - - implicit - function - 10180 - 1 - 4124 - macaddr - pg_catalog - 774 - macaddr8 - pg_catalog - 829 - macaddr - pg_catalog - - - assignment - function - 10030 - 1 - 3823 - numeric - pg_catalog - 790 - money - pg_catalog - 1700 - numeric - pg_catalog - - - implicit - function - 10179 - 1 - 4123 - macaddr8 - pg_catalog - 829 - macaddr - pg_catalog - 774 - macaddr8 - pg_catalog - - - assignment - function - 10195 - 1 - 730 - text - pg_catalog - 869 - inet - pg_catalog - 1043 - varchar - pg_catalog - - - assignment - function - 10190 - 1 - 730 - text - pg_catalog - 869 - inet - pg_catalog - 25 - text - pg_catalog - - - assignment - function - 10182 - 1 - 1715 - cidr - pg_catalog - 869 - inet - pg_catalog - 650 - cidr - pg_catalog - - - assignment - function - 10200 - 1 - 730 - text - pg_catalog - 869 - inet - pg_catalog - 1042 - bpchar - pg_catalog - - - implicit - function - 10204 - 1 - 668 - bpchar - pg_catalog - 1042 - bpchar - pg_catalog - 1042 - bpchar - pg_catalog - - - implicit - function - 10128 - 1 - 401 - text - pg_catalog - 1042 - bpchar - pg_catalog - 1043 - varchar - pg_catalog - - - explicit - function - 10203 - 1 - 2896 - xml - pg_catalog - 1042 - bpchar - pg_catalog - 142 - xml - pg_catalog - - - implicit - function - 10127 - 1 - 401 - text - pg_catalog - 1042 - bpchar - pg_catalog - 25 - text - pg_catalog - - - assignment - function - 10138 - 1 - 944 - char - pg_catalog - 1042 - bpchar - pg_catalog - 18 - char - pg_catalog - - - implicit - function - 10141 - 1 - 409 - name - pg_catalog - 1042 - bpchar - pg_catalog - 19 - name - pg_catalog - - - implicit - binary - 10129 - 1 - 1043 - varchar - pg_catalog - 25 - text - pg_catalog - - - implicit - function - 10142 - 1 - 1400 - name - pg_catalog - 1043 - varchar - pg_catalog - 19 - name - pg_catalog - - - implicit - binary - 10130 - 1 - 1043 - varchar - pg_catalog - 1042 - bpchar - pg_catalog - - - explicit - function - 10198 - 1 - 2896 - xml - pg_catalog - 1043 - varchar - pg_catalog - 142 - xml - pg_catalog - - - implicit - function - 10110 - 1 - 1079 - regclass - pg_catalog - 1043 - varchar - pg_catalog - 2205 - regclass - pg_catalog - - - implicit - function - 10205 - 1 - 669 - varchar - pg_catalog - 1043 - varchar - pg_catalog - 1043 - varchar - pg_catalog - - - assignment - function - 10139 - 1 - 944 - char - pg_catalog - 1043 - varchar - pg_catalog - 18 - char - pg_catalog - - - implicit - function - 10152 - 1 - 2024 - timestamp - pg_catalog - 1082 - date - pg_catalog - 1114 - timestamp - pg_catalog - - - implicit - function - 10153 - 1 - 1174 - timestamptz - pg_catalog - 1082 - date - pg_catalog - 1184 - timestamptz - pg_catalog - - - implicit - function - 10206 - 1 - 1968 - time - pg_catalog - 1083 - time - pg_catalog - 1083 - time - pg_catalog - - - implicit - function - 10155 - 1 - 2047 - timetz - pg_catalog - 1083 - time - pg_catalog - 1266 - timetz - pg_catalog - - - implicit - function - 10154 - 1 - 1370 - interval - pg_catalog - 1083 - time - pg_catalog - 1186 - interval - pg_catalog - - - implicit - function - 10158 - 1 - 2028 - timestamptz - pg_catalog - 1114 - timestamp - pg_catalog - 1184 - timestamptz - pg_catalog - - - assignment - function - 10156 - 1 - 2029 - date - pg_catalog - 1114 - timestamp - pg_catalog - 1082 - date - pg_catalog - - - assignment - function - 10157 - 1 - 1316 - time - pg_catalog - 1114 - timestamp - pg_catalog - 1083 - time - pg_catalog - - - implicit - function - 10207 - 1 - 1961 - timestamp - pg_catalog - 1114 - timestamp - pg_catalog - 1114 - timestamp - pg_catalog - - - assignment - function - 10159 - 1 - 1178 - date - pg_catalog - 1184 - timestamptz - pg_catalog - 1082 - date - pg_catalog - - - assignment - function - 10162 - 1 - 1388 - timetz - pg_catalog - 1184 - timestamptz - pg_catalog - 1266 - timetz - pg_catalog - - - assignment - function - 10160 - 1 - 2019 - time - pg_catalog - 1184 - timestamptz - pg_catalog - 1083 - time - pg_catalog - - - assignment - function - 10161 - 1 - 2027 - timestamp - pg_catalog - 1184 - timestamptz - pg_catalog - 1114 - timestamp - pg_catalog - - - implicit - function - 10208 - 1 - 1967 - timestamptz - pg_catalog - 1184 - timestamptz - pg_catalog - 1184 - timestamptz - pg_catalog - - - implicit - function - 10209 - 1 - 1200 - interval - pg_catalog - 1186 - interval - pg_catalog - 1186 - interval - pg_catalog - - - assignment - function - 10163 - 1 - 1419 - time - pg_catalog - 1186 - interval - pg_catalog - 1083 - time - pg_catalog - - - assignment - function - 10164 - 1 - 2046 - time - pg_catalog - 1266 - timetz - pg_catalog - 1083 - time - pg_catalog - - - implicit - function - 10210 - 1 - 1969 - timetz - pg_catalog - 1266 - timetz - pg_catalog - 1266 - timetz - pg_catalog - - - explicit - function - 10187 - 1 - 2076 - int8 - pg_catalog - 1560 - bit - pg_catalog - 20 - int8 - pg_catalog - - - implicit - function - 10211 - 1 - 1685 - bit - pg_catalog - 1560 - bit - pg_catalog - 1560 - bit - pg_catalog - - - implicit - binary - 10183 - 1 - 1560 - bit - pg_catalog - 1562 - varbit - pg_catalog - - - explicit - function - 10188 - 1 - 1684 - int4 - pg_catalog - 1560 - bit - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10184 - 1 - 1562 - varbit - pg_catalog - 1560 - bit - pg_catalog - - - implicit - function - 10212 - 1 - 1687 - varbit - pg_catalog - 1562 - varbit - pg_catalog - 1562 - varbit - pg_catalog - - - assignment - function - 10025 - 1 - 1779 - int8 - pg_catalog - 1700 - numeric - pg_catalog - 20 - int8 - pg_catalog - - - assignment - function - 10026 - 1 - 1783 - int2 - pg_catalog - 1700 - numeric - pg_catalog - 21 - int2 - pg_catalog - - - assignment - function - 10027 - 1 - 1744 - int4 - pg_catalog - 1700 - numeric - pg_catalog - 23 - int4 - pg_catalog - - - implicit - function - 10213 - 1 - 1703 - numeric - pg_catalog - 1700 - numeric - pg_catalog - 1700 - numeric - pg_catalog - - - implicit - function - 10029 - 1 - 1746 - float8 - pg_catalog - 1700 - numeric - pg_catalog - 701 - float8 - pg_catalog - - - assignment - function - 10031 - 1 - 3824 - money - pg_catalog - 1700 - numeric - pg_catalog - 790 - money - pg_catalog - - - implicit - function - 10028 - 1 - 1745 - float4 - pg_catalog - 1700 - numeric - pg_catalog - 700 - float4 - pg_catalog - - - assignment - binary - 10057 - 1 - 2202 - regprocedure - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10052 - 1 - 2202 - regprocedure - pg_catalog - 26 - oid - pg_catalog - - - assignment - function - 10056 - 1 - 1288 - int8 - pg_catalog - 2202 - regprocedure - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10050 - 1 - 2202 - regprocedure - pg_catalog - 24 - regproc - pg_catalog - - - implicit - binary - 10065 - 1 - 2203 - regoper - pg_catalog - 2204 - regoperator - pg_catalog - - - assignment - function - 10063 - 1 - 1288 - int8 - pg_catalog - 2203 - regoper - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10059 - 1 - 2203 - regoper - pg_catalog - 26 - oid - pg_catalog - - - assignment - binary - 10064 - 1 - 2203 - regoper - pg_catalog - 23 - int4 - pg_catalog - - - assignment - binary - 10073 - 1 - 2204 - regoperator - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10068 - 1 - 2204 - regoperator - pg_catalog - 26 - oid - pg_catalog - - - assignment - function - 10072 - 1 - 1288 - int8 - pg_catalog - 2204 - regoperator - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10066 - 1 - 2204 - regoperator - pg_catalog - 2203 - regoper - pg_catalog - - - assignment - function - 10079 - 1 - 1288 - int8 - pg_catalog - 2205 - regclass - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10075 - 1 - 2205 - regclass - pg_catalog - 26 - oid - pg_catalog - - - assignment - binary - 10080 - 1 - 2205 - regclass - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10093 - 1 - 1288 - int8 - pg_catalog - 2206 - regtype - pg_catalog - 20 - int8 - pg_catalog - - - assignment - binary - 10094 - 1 - 2206 - regtype - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10089 - 1 - 2206 - regtype - pg_catalog - 26 - oid - pg_catalog - - - implicit - binary - 10146 - 1 - 3361 - pg_ndistinct - pg_catalog - 17 - bytea - pg_catalog - - - implicit - io - 10147 - 1 - 3361 - pg_ndistinct - pg_catalog - 25 - text - pg_catalog - - - implicit - binary - 10148 - 1 - 3402 - pg_dependencies - pg_catalog - 17 - bytea - pg_catalog - - - implicit - io - 10149 - 1 - 3402 - pg_dependencies - pg_catalog - 25 - text - pg_catalog - - - implicit - binary - 10096 - 1 - 3734 - regconfig - pg_catalog - 26 - oid - pg_catalog - - - assignment - function - 10100 - 1 - 1288 - int8 - pg_catalog - 3734 - regconfig - pg_catalog - 20 - int8 - pg_catalog - - - assignment - binary - 10101 - 1 - 3734 - regconfig - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10103 - 1 - 3769 - regdictionary - pg_catalog - 26 - oid - pg_catalog - - - assignment - binary - 10108 - 1 - 3769 - regdictionary - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10107 - 1 - 1288 - int8 - pg_catalog - 3769 - regdictionary - pg_catalog - 20 - int8 - pg_catalog - - - assignment - io - 10215 - 1 - 3802 - jsonb - pg_catalog - 114 - json - pg_catalog - - - explicit - function - 10218 - 1 - 3450 - int2 - pg_catalog - 3802 - jsonb - pg_catalog - 21 - int2 - pg_catalog - - - explicit - function - 10220 - 1 - 3452 - int8 - pg_catalog - 3802 - jsonb - pg_catalog - 20 - int8 - pg_catalog - - - explicit - function - 10219 - 1 - 3451 - int4 - pg_catalog - 3802 - jsonb - pg_catalog - 23 - int4 - pg_catalog - - - explicit - function - 10216 - 1 - 3556 - bool - pg_catalog - 3802 - jsonb - pg_catalog - 16 - bool - pg_catalog - - - explicit - function - 10221 - 1 - 3453 - float4 - pg_catalog - 3802 - jsonb - pg_catalog - 700 - float4 - pg_catalog - - - explicit - function - 10217 - 1 - 3449 - numeric - pg_catalog - 3802 - jsonb - pg_catalog - 1700 - numeric - pg_catalog - - - explicit - function - 10222 - 1 - 2580 - float8 - pg_catalog - 3802 - jsonb - pg_catalog - 701 - float8 - pg_catalog - - - explicit - function - 10223 - 1 - 4281 - int4multirange - pg_catalog - 3904 - int4range - pg_catalog - 4451 - int4multirange - pg_catalog - - - explicit - function - 10225 - 1 - 4284 - nummultirange - pg_catalog - 3906 - numrange - pg_catalog - 4532 - nummultirange - pg_catalog - - - explicit - function - 10227 - 1 - 4287 - tsmultirange - pg_catalog - 3908 - tsrange - pg_catalog - 4533 - tsmultirange - pg_catalog - - - explicit - function - 10228 - 1 - 4290 - tstzmultirange - pg_catalog - 3910 - tstzrange - pg_catalog - 4534 - tstzmultirange - pg_catalog - - - explicit - function - 10226 - 1 - 4293 - datemultirange - pg_catalog - 3912 - daterange - pg_catalog - 4535 - datemultirange - pg_catalog - - - explicit - function - 10224 - 1 - 4296 - int8multirange - pg_catalog - 3926 - int8range - pg_catalog - 4536 - int8multirange - pg_catalog - - - assignment - binary - 10124 - 1 - 4089 - regnamespace - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10123 - 1 - 1288 - int8 - pg_catalog - 4089 - regnamespace - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10119 - 1 - 4089 - regnamespace - pg_catalog - 26 - oid - pg_catalog - - - assignment - binary - 10117 - 1 - 4096 - regrole - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10112 - 1 - 4096 - regrole - pg_catalog - 26 - oid - pg_catalog - - - assignment - function - 10116 - 1 - 1288 - int8 - pg_catalog - 4096 - regrole - pg_catalog - 20 - int8 - pg_catalog - - - assignment - function - 10086 - 1 - 1288 - int8 - pg_catalog - 4191 - regcollation - pg_catalog - 20 - int8 - pg_catalog - - - assignment - binary - 10087 - 1 - 4191 - regcollation - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10082 - 1 - 4191 - regcollation - pg_catalog - 26 - oid - pg_catalog - - - implicit - binary - 10150 - 1 - 5017 - pg_mcv_list - pg_catalog - 17 - bytea - pg_catalog - - - implicit - io - 10151 - 1 - 5017 - pg_mcv_list - pg_catalog - 25 - text - pg_catalog - - - explicit - function - 10036 - 1 - 5071 - xid - pg_catalog - 5069 - xid8 - pg_catalog - 28 - xid - pg_catalog - - - PL/pgSQL procedural language - 13545 - 683 - 1.0 - 11 - pg_catalog - 13546 -13547 -13548 -13549 - - - dynamically-loaded C functions - 13 - 1 - fmgr_c_validator - pg_catalog - - - built-in functions - 12 - 1 - fmgr_internal_validator - pg_catalog - - - PL/pgSQL procedural language - plpgsql_call_handler - pg_catalog - plpgsql_inline_handler - pg_catalog - 13549 - 683 - 1 - plpgsql_validator - pg_catalog - - - SQL-language functions - 14 - 1 - 1 - fmgr_sql_validator - pg_catalog - - - 13193 - 529 - postgres - - - system catalog schema - 11 - 523 - postgres - - - standard public schema - 1 - 41831 - 2024-05-05.03:47:26 - 2200 - 523 - pg_database_owner - - - 16396 - 1 - 1 - 747 - bigint|0s - postgres - - - 17069 - 1 - 1 - 3790 - bigint|0s - postgres - - - 16981 - 1 - 1 - 1416 - bigint|0s - postgres - - - 16402 - 1 - 1 - 752 - bigint|0s - postgres - - - 16408 - 1 - 1 - 757 - bigint|0s - postgres - - - 16414 - 1 - 1 - 762 - bigint|0s - postgres - - - 16426 - 1 - 1 - 772 - bigint|0s - postgres - - - 16438 - 1 - 1 - 782 - bigint|0s - postgres - - - 16444 - 1 - 1 - 787 - bigint|0s - postgres - - - 16450 - 1 - 1 - 792 - bigint|0s - postgres - - - 16456 - 1 - 1 - 797 - bigint|0s - postgres - - - 17805 - 1 - 1 - 25805 - bigint|0s - postgres - - - 18214 - 1 - 1 - 39862 - bigint|0s - postgres - - - 18203 - 1 - 1 - 39859 - bigint|0s - postgres - - - 16391 - 25784 - 2 - postgres -
- - 17070 - 25781 - 2 - postgres -
- - 16982 - 25777 - 2 - postgres -
- - 16397 - 25774 - 2 - postgres -
- - 16403 - 25770 - 2 - postgres -
- - 16409 - 25767 - 2 - postgres -
- - 16421 - 25764 - 2 - postgres -
- - 17806 - 25805 - 2 - postgres -
- - 16433 - 25757 - 2 - postgres -
- - 16439 - 25754 - 2 - postgres -
- - 16445 - 1 - 25751 - 2 - postgres -
- - 18215 - 39862 - 2 - postgres -
- - 18204 - 39862 - 2 - postgres -
- - 16451 - 25748 - 2 - postgres -
- - nextval('identity_account_contacts_id_seq'::regclass) - 1 - 1 - 800 - bigint|0s - 16396 - 20 - - - 2 - 745 - timestamp with time zone|0s - 1184 - - - 3 - 745 - timestamp with time zone|0s - 1184 - - - 4 - 745 - timestamp with time zone|0s - 1184 - - - 5 - 745 - smallint|0s - 21 - - - 6 - 745 - text|0s - 25 - - - 7 - 745 - boolean|0s - 16 - - - 8 - 745 - boolean|0s - 16 - - - 9 - 745 - timestamp with time zone|0s - 1184 - - - 10 - 745 - bigint|0s - 20 - - - account_id - 16510 - 860 - 1 - 16403 - - - account_id - 17780 - 25797 - 1 - 16403 - - - id - 16468 - 1 - 833 - 1 - 403 - - - content - 16490 - 844 - 1 - 403 - default - 100 - pg_catalog - - - content - 17778 - 25796 - 1 - 403 - default - 100 - pg_catalog - - - deleted_at - 16491 - 845 - 403 - - - deleted_at - 17785 - 25798 - 403 - - - 16469 - 1 - 833 - 16468 - - - 17779 - 25796 - 17778 - - - nextval('identity_account_friendships_id_seq'::regclass) - 1 - 1 - 3790 - bigint|0s - 17069 - 20 - - - 2 - 3790 - timestamp with time zone|0s - 1184 - - - 3 - 3790 - timestamp with time zone|0s - 1184 - - - 4 - 3790 - timestamp with time zone|0s - 1184 - - - 5 - 3790 - bigint|0s - 20 - - - 6 - 3790 - bigint|0s - 20 - - - 7 - 3790 - smallint|0s - 21 - - - 8 - 7471 - bigint|0s - 20 - - - account_id - 17076 - 3790 - 1 - 16403 - - - account_id - 17786 - 25799 - 1 - 16403 - - - related_id - 17081 - 3790 - 1 - 16403 - - - related_id - 17791 - 25800 - 1 - 16403 - - - id - 17074 - 1 - 3790 - 1 - 403 - - - deleted_at - 17086 - 3791 - 403 - - - deleted_at - 17796 - 25801 - 403 - - - 17075 - 1 - 3790 - 17074 - - - nextval('identity_account_pages_id_seq'::regclass) - 1 - 1 - 1416 - bigint|0s - 16981 - 20 - - - 2 - 1416 - timestamp with time zone|0s - 1184 - - - 3 - 1416 - timestamp with time zone|0s - 1184 - - - 4 - 1416 - timestamp with time zone|0s - 1184 - - - 5 - 1416 - text|0s - 25 - - - 6 - 1416 - text|0s - 25 - - - 7 - 1416 - text|0s - 25 - - - 8 - 1416 - jsonb|0s - 3802 - - - 9 - 1416 - bigint|0s - 20 - - - account_id - 16990 - 1416 - 1 - 16403 - - - account_id - 17772 - 25794 - 1 - 16403 - - - id - 16988 - 1 - 1416 - 1 - 403 - - - deleted_at - 16995 - 1417 - 403 - - - deleted_at - 17777 - 25795 - 403 - - - 16989 - 1 - 1416 - 16988 - - - nextval('identity_account_profiles_id_seq'::regclass) - 1 - 1 - 801 - bigint|0s - 16402 - 20 - - - 2 - 750 - timestamp with time zone|0s - 1184 - - - 3 - 750 - timestamp with time zone|0s - 1184 - - - 4 - 750 - timestamp with time zone|0s - 1184 - - - 5 - 750 - text|0s - 25 - - - 6 - 750 - text|0s - 25 - - - 7 - 750 - bigint|0s - 20 - - - 8 - 750 - timestamp with time zone|0s - 1184 - - - 9 - 750 - bigint|0s - 20 - - - account_id - 16540 - 866 - 1 - 16403 - - - account_id - 17766 - 25792 - 1 - 16403 - - - id - 16470 - 1 - 834 - 1 - 403 - - - deleted_at - 16492 - 846 - 403 - - - deleted_at - 17771 - 25793 - 403 - - - 16471 - 1 - 834 - 16470 - - - nextval('identity_accounts_id_seq'::regclass) - 1 - 1 - 802 - bigint|0s - 16408 - 20 - - - 2 - 755 - timestamp with time zone|0s - 1184 - - - 3 - 755 - timestamp with time zone|0s - 1184 - - - 4 - 755 - timestamp with time zone|0s - 1184 - - - 5 - 755 - text|0s - 25 - - - 6 - 755 - text|0s - 25 - - - 7 - 755 - text|0s - 25 - - - 8 - 755 - text|0s - 25 - - - 9 - 755 - timestamp with time zone|0s - 1184 - - - 10 - 755 - bigint|0s - 20 - - - 11 - 755 - text|0s - 25 - - - id - 16472 - 1 - 835 - 1 - 403 - - - name - 16494 - 848 - 1 - 403 - default - 100 - pg_catalog - - - name - 17757 - 25788 - 1 - 403 - default - 100 - pg_catalog - - - deleted_at - 16493 - 847 - 403 - - - deleted_at - 17759 - 25789 - 403 - - - 16473 - 1 - 835 - 16472 - - - 17758 - 25788 - 17757 - - - nextval('identity_action_events_id_seq'::regclass) - 1 - 1 - 803 - bigint|0s - 16414 - 20 - - - 2 - 760 - timestamp with time zone|0s - 1184 - - - 3 - 760 - timestamp with time zone|0s - 1184 - - - 4 - 760 - timestamp with time zone|0s - 1184 - - - 5 - 760 - text|0s - 25 - - - 6 - 760 - text|0s - 25 - - - 7 - 760 - text|0s - 25 - - - 8 - 760 - text|0s - 25 - - - 9 - 760 - text|0s - 25 - - - 10 - 760 - bigint|0s - 20 - - - account_id - 16515 - 861 - 1 - 16403 - - - account_id - 17831 - 25809 - 1 - 16403 - - - id - 16474 - 1 - 836 - 1 - 403 - - - deleted_at - 16495 - 849 - 403 - - - deleted_at - 17836 - 25810 - 403 - - - 16475 - 1 - 836 - 16474 - - - nextval('identity_auth_factors_id_seq'::regclass) - 1 - 1 - 805 - bigint|0s - 16426 - 20 - - - 2 - 770 - timestamp with time zone|0s - 1184 - - - 3 - 770 - timestamp with time zone|0s - 1184 - - - 4 - 770 - timestamp with time zone|0s - 1184 - - - 5 - 770 - smallint|0s - 21 - - - 6 - 770 - text|0s - 25 - - - 7 - 770 - jsonb|0s - 3802 - - - 8 - 770 - bigint|0s - 20 - - - account_id - 16520 - 862 - 1 - 16403 - - - account_id - 17760 - 25790 - 1 - 16403 - - - id - 16478 - 1 - 838 - 1 - 403 - - - deleted_at - 16497 - 851 - 403 - - - deleted_at - 17765 - 25791 - 403 - - - 16479 - 1 - 838 - 16478 - - - nextval('passport_auth_tickets_id_seq'::regclass) - 1 - 1 - 25805 - bigint|0s - 17805 - 20 - - - 2 - 25805 - timestamp with time zone|0s - 1184 - - - 3 - 25805 - timestamp with time zone|0s - 1184 - - - 4 - 25805 - timestamp with time zone|0s - 1184 - - - 5 - 25805 - text|0s - 25 - - - 6 - 25805 - text|0s - 25 - - - 7 - 25805 - text|0s - 25 - - - 8 - 25805 - boolean|0s - 16 - - - 9 - 25805 - boolean|0s - 16 - - - 10 - 25805 - jsonb|0s - 3802 - - - 11 - 25805 - jsonb|0s - 3802 - - - 12 - 25805 - text|0s - 25 - - - 13 - 25805 - text|0s - 25 - - - 14 - 25805 - text|0s - 25 - - - 15 - 25805 - timestamp with time zone|0s - 1184 - - - 16 - 25805 - timestamp with time zone|0s - 1184 - - - 17 - 25805 - timestamp with time zone|0s - 1184 - - - 18 - 25805 - bigint|0s - 20 - - - 19 - 25805 - bigint|0s - 20 - - - client_id - 17819 - 25805 - 1 - 16451 - - - account_id - 17814 - 25805 - 1 - 16403 - - - id - 1 - 17812 - 1 - 25805 - 1 - 403 - - - deleted_at - 17824 - 25806 - 403 - - - 1 - 17813 - 1 - 25805 - 17812 - - - nextval('identity_magic_tokens_id_seq'::regclass) - 1 - 1 - 807 - bigint|0s - 16438 - 20 - - - 2 - 780 - timestamp with time zone|0s - 1184 - - - 3 - 780 - timestamp with time zone|0s - 1184 - - - 4 - 780 - timestamp with time zone|0s - 1184 - - - 5 - 780 - text|0s - 25 - - - 6 - 780 - smallint|0s - 21 - - - 7 - 780 - bigint|0s - 20 - - - 8 - 780 - timestamp with time zone|0s - 1184 - - - assign_to - 16525 - 863 - 1 - 16403 - - - assign_to - 17825 - 25807 - 1 - 16403 - - - id - 16482 - 1 - 840 - 1 - 403 - - - deleted_at - 16499 - 853 - 403 - - - deleted_at - 17830 - 25808 - 403 - - - 16483 - 1 - 840 - 16482 - - - nextval('identity_notification_subscribers_id_seq'::regclass) - 1 - 1 - 808 - bigint|0s - 16444 - 20 - - - 2 - 785 - timestamp with time zone|0s - 1184 - - - 3 - 785 - timestamp with time zone|0s - 1184 - - - 4 - 785 - timestamp with time zone|0s - 1184 - - - 5 - 785 - text|0s - 25 - - - 6 - 785 - text|0s - 25 - - - 7 - 785 - text|0s - 25 - - - 8 - 785 - bigint|0s - 20 - - - account_id - 16535 - 865 - 1 - 16403 - - - account_id - 17850 - 25815 - 1 - 16403 - - - id - 16484 - 1 - 841 - 1 - 403 - - - device_id - 16501 - 855 - 1 - 403 - default - 100 - pg_catalog - - - device_id - 17848 - 25814 - 1 - 403 - default - 100 - pg_catalog - - - deleted_at - 16500 - 854 - 403 - - - deleted_at - 17855 - 25816 - 403 - - - 16485 - 1 - 841 - 16484 - - - 17849 - 25814 - 17848 - - - nextval('identity_notifications_id_seq'::regclass) - 1 - 1 - 809 - bigint|0s - 16450 - 20 - - - 2 - 790 - timestamp with time zone|0s - 1184 - - - 3 - 790 - timestamp with time zone|0s - 1184 - - - 4 - 790 - timestamp with time zone|0s - 1184 - - - 5 - 790 - text|0s - 25 - - - 6 - 790 - text|0s - 25 - - - 7 - 790 - jsonb|0s - 3802 - - - 8 - 790 - boolean|0s - 16 - - - 9 - 790 - timestamp with time zone|0s - 1184 - - - 10 - 790 - bigint|0s - 20 - - - 11 - 790 - bigint|0s - 20 - - - sender_id - 16560 - 870 - 1 - 16451 - - - sender_id - 17837 - 25811 - 1 - 16451 - - - recipient_id - 16530 - 864 - 1 - 16403 - - - recipient_id - 17842 - 25812 - 1 - 16403 - - - id - 16486 - 1 - 842 - 1 - 403 - - - deleted_at - 16502 - 856 - 403 - - - deleted_at - 17847 - 25813 - 403 - - - 16487 - 1 - 842 - 16486 - - - nextval('passport_realm_members_id_seq'::regclass) - 1 - 1 - 39862 - bigint|0s - 18214 - 20 - - - 2 - 39862 - timestamp with time zone|0s - 1184 - - - 3 - 39862 - timestamp with time zone|0s - 1184 - - - 4 - 39862 - timestamp with time zone|0s - 1184 - - - 5 - 39862 - bigint|0s - 20 - - - 6 - 39862 - bigint|0s - 20 - - - 7 - 39862 - bigint|0s - 20 - - - realm_id - 18226 - 39862 - 1 - 18204 - - - account_id - 18232 - 39898 - 1 - 16403 - - - account_id - 18221 - 39862 - 1 - 16403 - - - id - 1 - 18219 - 1 - 39862 - 1 - 403 - - - deleted_at - 18231 - 39863 - 403 - - - 1 - 18220 - 1 - 39862 - 18219 - - - nextval('passport_realms_id_seq'::regclass) - 1 - 1 - 39859 - bigint|0s - 18203 - 20 - - - 2 - 39859 - timestamp with time zone|0s - 1184 - - - 3 - 39859 - timestamp with time zone|0s - 1184 - - - 4 - 39859 - timestamp with time zone|0s - 1184 - - - 5 - 39859 - text|0s - 25 - - - 6 - 39859 - text|0s - 25 - - - 7 - 39859 - text|0s - 25 - - - 8 - 39859 - boolean|0s - 16 - - - 9 - 39859 - boolean|0s - 16 - - - 10 - 39859 - bigint|0s - 20 - - - id - 1 - 18210 - 1 - 39859 - 1 - 403 - - - alias - 18212 - 39860 - 1 - 403 - default - 100 - pg_catalog - - - deleted_at - 18213 - 39861 - 403 - - - 1 - 18211 - 1 - 39859 - 18210 - - - nextval('identity_third_clients_id_seq'::regclass) - 1 - 1 - 810 - bigint|0s - 16456 - 20 - - - 2 - 795 - timestamp with time zone|0s - 1184 - - - 3 - 795 - timestamp with time zone|0s - 1184 - - - 4 - 795 - timestamp with time zone|0s - 1184 - - - 5 - 795 - text|0s - 25 - - - 6 - 795 - text|0s - 25 - - - 7 - 795 - text|0s - 25 - - - 8 - 795 - text|0s - 25 - - - 9 - 795 - jsonb|0s - 3802 - - - 10 - 795 - jsonb|0s - 3802 - - - 11 - 795 - boolean|0s - 16 - - - 12 - 795 - bigint|0s - 20 - - - account_id - 16550 - 868 - 1 - 16403 - - - account_id - 17799 - 25803 - 1 - 16403 - - - id - 16488 - 1 - 843 - 1 - 403 - - - alias - 16503 - 857 - 1 - 403 - default - 100 - pg_catalog - - - alias - 17797 - 25802 - 1 - 403 - default - 100 - pg_catalog - - - deleted_at - 16504 - 858 - 403 - - - deleted_at - 17804 - 25804 - 403 - - - 16489 - 1 - 843 - 16488 - - - 17798 - 25802 - 17797 - -
-
\ No newline at end of file diff --git a/.idea/dataSources/723637bc-6ce3-4bbe-afb3-d88730c75a1b/storage_v2/_src_/database/passport.EoyGSA.meta b/.idea/dataSources/723637bc-6ce3-4bbe-afb3-d88730c75a1b/storage_v2/_src_/database/passport.EoyGSA.meta deleted file mode 100644 index 34548cf..0000000 --- a/.idea/dataSources/723637bc-6ce3-4bbe-afb3-d88730c75a1b/storage_v2/_src_/database/passport.EoyGSA.meta +++ /dev/null @@ -1 +0,0 @@ -#n:passport \ No newline at end of file diff --git a/.idea/dataSources/723637bc-6ce3-4bbe-afb3-d88730c75a1b/storage_v2/_src_/database/passport.EoyGSA/schema/public.abK9xQ.meta b/.idea/dataSources/723637bc-6ce3-4bbe-afb3-d88730c75a1b/storage_v2/_src_/database/passport.EoyGSA/schema/public.abK9xQ.meta deleted file mode 100644 index 25fb2ed..0000000 --- a/.idea/dataSources/723637bc-6ce3-4bbe-afb3-d88730c75a1b/storage_v2/_src_/database/passport.EoyGSA/schema/public.abK9xQ.meta +++ /dev/null @@ -1,2 +0,0 @@ -#n:public -! [41831, 0, null, null, -2147483648, -2147483648] diff --git a/.idea/dataSources/74bcf3ef-a2b9-435b-b9e5-f32902a33b25.xml b/.idea/dataSources/74bcf3ef-a2b9-435b-b9e5-f32902a33b25.xml deleted file mode 100644 index 737498f..0000000 --- a/.idea/dataSources/74bcf3ef-a2b9-435b-b9e5-f32902a33b25.xml +++ /dev/null @@ -1,10553 +0,0 @@ - - - - - mdy - 11321 - 16.4 - 1730514664 - true ACDT -true ACSST -false ACST -false ACT -false ACWST -true ADT -true AEDT -true AESST -false AEST -false AFT -true AKDT -false AKST -true ALMST -false ALMT -false AMST -false AMT -false ANAST -false ANAT -false ARST -false ART -false AST -true AWSST -false AWST -true AZOST -false AZOT -false AZST -false AZT -false Africa/Abidjan -false Africa/Accra -false Africa/Addis_Ababa -false Africa/Algiers -false Africa/Asmara -false Africa/Asmera -false Africa/Bamako -false Africa/Bangui -false Africa/Banjul -false Africa/Bissau -false Africa/Blantyre -false Africa/Brazzaville -false Africa/Bujumbura -false Africa/Cairo -false Africa/Casablanca -false Africa/Ceuta -false Africa/Conakry -false Africa/Dakar -false Africa/Dar_es_Salaam -false Africa/Djibouti -false Africa/Douala -false Africa/El_Aaiun -false Africa/Freetown -false Africa/Gaborone -false Africa/Harare -false Africa/Johannesburg -false Africa/Juba -false Africa/Kampala -false Africa/Khartoum -false Africa/Kigali -false Africa/Kinshasa -false Africa/Lagos -false Africa/Libreville -false Africa/Lome -false Africa/Luanda -false Africa/Lubumbashi -false Africa/Lusaka -false Africa/Malabo -false Africa/Maputo -false Africa/Maseru -false Africa/Mbabane -false Africa/Mogadishu -false Africa/Monrovia -false Africa/Nairobi -false Africa/Ndjamena -false Africa/Niamey -false Africa/Nouakchott -false Africa/Ouagadougou -false Africa/Porto-Novo -false Africa/Sao_Tome -false Africa/Timbuktu -false Africa/Tripoli -false Africa/Tunis -false Africa/Windhoek -true America/Adak -true America/Anchorage -false America/Anguilla -false America/Antigua -false America/Araguaina -false America/Argentina/Buenos_Aires -false America/Argentina/Catamarca -false America/Argentina/ComodRivadavia -false America/Argentina/Cordoba -false America/Argentina/Jujuy -false America/Argentina/La_Rioja -false America/Argentina/Mendoza -false America/Argentina/Rio_Gallegos -false America/Argentina/Salta -false America/Argentina/San_Juan -false America/Argentina/San_Luis -false America/Argentina/Tucuman -false America/Argentina/Ushuaia -false America/Aruba -true America/Asuncion -false America/Atikokan -true America/Atka -false America/Bahia -false America/Bahia_Banderas -false America/Barbados -false America/Belem -false America/Belize -false America/Blanc-Sablon -false America/Boa_Vista -false America/Bogota -true America/Boise -false America/Buenos_Aires -true America/Cambridge_Bay -false America/Campo_Grande -false America/Cancun -false America/Caracas -false America/Catamarca -false America/Cayenne -false America/Cayman -true America/Chicago -false America/Chihuahua -true America/Ciudad_Juarez -false America/Coral_Harbour -false America/Cordoba -false America/Costa_Rica -false America/Creston -false America/Cuiaba -false America/Curacao -false America/Danmarkshavn -false America/Dawson -false America/Dawson_Creek -true America/Denver -true America/Detroit -false America/Dominica -true America/Edmonton -false America/Eirunepe -false America/El_Salvador -true America/Ensenada -false America/Fort_Nelson -true America/Fort_Wayne -false America/Fortaleza -true America/Glace_Bay -false America/Godthab -true America/Goose_Bay -true America/Grand_Turk -false America/Grenada -false America/Guadeloupe -false America/Guatemala -false America/Guayaquil -false America/Guyana -true America/Halifax -true America/Havana -false America/Hermosillo -true America/Indiana/Indianapolis -true America/Indiana/Knox -true America/Indiana/Marengo -true America/Indiana/Petersburg -true America/Indiana/Tell_City -true America/Indiana/Vevay -true America/Indiana/Vincennes -true America/Indiana/Winamac -true America/Indianapolis -true America/Inuvik -true America/Iqaluit -false America/Jamaica -false America/Jujuy -true America/Juneau -true America/Kentucky/Louisville -true America/Kentucky/Monticello -true America/Knox_IN -false America/Kralendijk -false America/La_Paz -false America/Lima -true America/Los_Angeles -true America/Louisville -false America/Lower_Princes -false America/Maceio -false America/Managua -false America/Manaus -false America/Marigot -false America/Martinique -true America/Matamoros -false America/Mazatlan -false America/Mendoza -true America/Menominee -false America/Merida -true America/Metlakatla -false America/Mexico_City -true America/Miquelon -true America/Moncton -false America/Monterrey -false America/Montevideo -true America/Montreal -false America/Montserrat -true America/Nassau -true America/New_York -true America/Nipigon -true America/Nome -false America/Noronha -true America/North_Dakota/Beulah -true America/North_Dakota/Center -true America/North_Dakota/New_Salem -false America/Nuuk -true America/Ojinaga -false America/Panama -true America/Pangnirtung -false America/Paramaribo -false America/Phoenix -true America/Port-au-Prince -false America/Port_of_Spain -false America/Porto_Acre -false America/Porto_Velho -false America/Puerto_Rico -false America/Punta_Arenas -true America/Rainy_River -true America/Rankin_Inlet -false America/Recife -false America/Regina -true America/Resolute -false America/Rio_Branco -false America/Rosario -true America/Santa_Isabel -false America/Santarem -true America/Santiago -false America/Santo_Domingo -false America/Sao_Paulo -false America/Scoresbysund -true America/Shiprock -true America/Sitka -false America/St_Barthelemy -true America/St_Johns -false America/St_Kitts -false America/St_Lucia -false America/St_Thomas -false America/St_Vincent -false America/Swift_Current -false America/Tegucigalpa -true America/Thule -true America/Thunder_Bay -true America/Tijuana -true America/Toronto -false America/Tortola -true America/Vancouver -false America/Virgin -false America/Whitehorse -true America/Winnipeg -true America/Yakutat -true America/Yellowknife -false Antarctica/Casey -false Antarctica/Davis -false Antarctica/DumontDUrville -true Antarctica/Macquarie -false Antarctica/Mawson -true Antarctica/McMurdo -false Antarctica/Palmer -false Antarctica/Rothera -true Antarctica/South_Pole -false Antarctica/Syowa -false Antarctica/Troll -false Antarctica/Vostok -false Arctic/Longyearbyen -false Asia/Aden -false Asia/Almaty -false Asia/Amman -false Asia/Anadyr -false Asia/Aqtau -false Asia/Aqtobe -false Asia/Ashgabat -false Asia/Ashkhabad -false Asia/Atyrau -false Asia/Baghdad -false Asia/Bahrain -false Asia/Baku -false Asia/Bangkok -false Asia/Barnaul -false Asia/Beirut -false Asia/Bishkek -false Asia/Brunei -false Asia/Calcutta -false Asia/Chita -false Asia/Choibalsan -false Asia/Chongqing -false Asia/Chungking -false Asia/Colombo -false Asia/Dacca -false Asia/Damascus -false Asia/Dhaka -false Asia/Dili -false Asia/Dubai -false Asia/Dushanbe -false Asia/Famagusta -false Asia/Gaza -false Asia/Harbin -false Asia/Hebron -false Asia/Ho_Chi_Minh -false Asia/Hong_Kong -false Asia/Hovd -false Asia/Irkutsk -false Asia/Istanbul -false Asia/Jakarta -false Asia/Jayapura -false Asia/Jerusalem -false Asia/Kabul -false Asia/Kamchatka -false Asia/Karachi -false Asia/Kashgar -false Asia/Kathmandu -false Asia/Katmandu -false Asia/Khandyga -false Asia/Kolkata -false Asia/Krasnoyarsk -false Asia/Kuala_Lumpur -false Asia/Kuching -false Asia/Kuwait -false Asia/Macao -false Asia/Macau -false Asia/Magadan -false Asia/Makassar -false Asia/Manila -false Asia/Muscat -false Asia/Nicosia -false Asia/Novokuznetsk -false Asia/Novosibirsk -false Asia/Omsk -false Asia/Oral -false Asia/Phnom_Penh -false Asia/Pontianak -false Asia/Pyongyang -false Asia/Qatar -false Asia/Qostanay -false Asia/Qyzylorda -false Asia/Rangoon -false Asia/Riyadh -false Asia/Saigon -false Asia/Sakhalin -false Asia/Samarkand -false Asia/Seoul -false Asia/Shanghai -false Asia/Singapore -false Asia/Srednekolymsk -false Asia/Taipei -false Asia/Tashkent -false Asia/Tbilisi -false Asia/Tehran -false Asia/Tel_Aviv -false Asia/Thimbu -false Asia/Thimphu -false Asia/Tokyo -false Asia/Tomsk -false Asia/Ujung_Pandang -false Asia/Ulaanbaatar -false Asia/Ulan_Bator -false Asia/Urumqi -false Asia/Ust-Nera -false Asia/Vientiane -false Asia/Vladivostok -false Asia/Yakutsk -false Asia/Yangon -false Asia/Yekaterinburg -false Asia/Yerevan -false Atlantic/Azores -true Atlantic/Bermuda -false Atlantic/Canary -false Atlantic/Cape_Verde -false Atlantic/Faeroe -false Atlantic/Faroe -false Atlantic/Jan_Mayen -false Atlantic/Madeira -false Atlantic/Reykjavik -false Atlantic/South_Georgia -false Atlantic/St_Helena -false Atlantic/Stanley -true Australia/ACT -true Australia/Adelaide -false Australia/Brisbane -true Australia/Broken_Hill -true Australia/Canberra -true Australia/Currie -false Australia/Darwin -false Australia/Eucla -true Australia/Hobart -true Australia/LHI -false Australia/Lindeman -true Australia/Lord_Howe -true Australia/Melbourne -true Australia/NSW -false Australia/North -false Australia/Perth -false Australia/Queensland -true Australia/South -true Australia/Sydney -true Australia/Tasmania -true Australia/Victoria -false Australia/West -true Australia/Yancowinna -true BDST -false BDT -false BNT -false BORT -false BOT -false BRA -true BRST -false BRT -true BST -false BTT -false Brazil/Acre -false Brazil/DeNoronha -false Brazil/East -false Brazil/West -true CADT -false CAST -false CCT -true CDT -true CEST -false CET -true CETDST -true CHADT -false CHAST -false CHUT -false CKT -true CLST -true CLT -false COT -false CST -true CST6CDT -false CXT -true Canada/Atlantic -true Canada/Central -true Canada/Eastern -true Canada/Mountain -true Canada/Newfoundland -true Canada/Pacific -false Canada/Saskatchewan -false Canada/Yukon -true Chile/Continental -true Chile/EasterIsland -true Cuba -false DAVT -false DDUT -true EASST -true EAST -false EAT -true EDT -true EEST -false EET -true EETDST -true EGST -false EGT -false EST -true EST5EDT -false Egypt -true Eire -false Etc/GMT -false Etc/GMT+0 -false Etc/GMT+1 -false Etc/GMT+10 -false Etc/GMT+11 -false Etc/GMT+12 -false Etc/GMT+2 -false Etc/GMT+3 -false Etc/GMT+4 -false Etc/GMT+5 -false Etc/GMT+6 -false Etc/GMT+7 -false Etc/GMT+8 -false Etc/GMT+9 -false Etc/GMT-0 -false Etc/GMT-1 -false Etc/GMT-10 -false Etc/GMT-11 -false Etc/GMT-12 -false Etc/GMT-13 -false Etc/GMT-14 -false Etc/GMT-2 -false Etc/GMT-3 -false Etc/GMT-4 -false Etc/GMT-5 -false Etc/GMT-6 -false Etc/GMT-7 -false Etc/GMT-8 -false Etc/GMT-9 -false Etc/GMT0 -false Etc/Greenwich -false Etc/UCT -false Etc/UTC -false Etc/Universal -false Etc/Zulu -false Europe/Amsterdam -false Europe/Andorra -false Europe/Astrakhan -false Europe/Athens -false Europe/Belfast -false Europe/Belgrade -false Europe/Berlin -false Europe/Bratislava -false Europe/Brussels -false Europe/Bucharest -false Europe/Budapest -false Europe/Busingen -false Europe/Chisinau -false Europe/Copenhagen -true Europe/Dublin -false Europe/Gibraltar -false Europe/Guernsey -false Europe/Helsinki -false Europe/Isle_of_Man -false Europe/Istanbul -false Europe/Jersey -false Europe/Kaliningrad -false Europe/Kiev -false Europe/Kirov -false Europe/Kyiv -false Europe/Lisbon -false Europe/Ljubljana -false Europe/London -false Europe/Luxembourg -false Europe/Madrid -false Europe/Malta -false Europe/Mariehamn -false Europe/Minsk -false Europe/Monaco -false Europe/Moscow -false Europe/Nicosia -false Europe/Oslo -false Europe/Paris -false Europe/Podgorica -false Europe/Prague -false Europe/Riga -false Europe/Rome -false Europe/Samara -false Europe/San_Marino -false Europe/Sarajevo -false Europe/Saratov -false Europe/Simferopol -false Europe/Skopje -false Europe/Sofia -false Europe/Stockholm -false Europe/Tallinn -false Europe/Tirane -false Europe/Tiraspol -false Europe/Ulyanovsk -false Europe/Uzhgorod -false Europe/Vaduz -false Europe/Vatican -false Europe/Vienna -false Europe/Vilnius -false Europe/Volgograd -false Europe/Warsaw -false Europe/Zagreb -false Europe/Zaporozhye -false Europe/Zurich -false FET -true FJST -false FJT -false FKST -false FKT -true FNST -false FNT -false Factory -false GALT -false GAMT -false GB -false GB-Eire -false GEST -false GET -false GFT -false GILT -false GMT -false GMT+0 -false GMT-0 -false GMT0 -false GYT -false Greenwich -false HKT -false HST -false Hongkong -false ICT -true IDT -false IOT -false IRKST -false IRKT -false IRT -false IST -false Iceland -false Indian/Antananarivo -false Indian/Chagos -false Indian/Christmas -false Indian/Cocos -false Indian/Comoro -false Indian/Kerguelen -false Indian/Mahe -false Indian/Maldives -false Indian/Mauritius -false Indian/Mayotte -false Indian/Reunion -false Iran -false Israel -false JAYT -false JST -false Jamaica -false Japan -true KDT -true KGST -false KGT -false KOST -false KRAST -false KRAT -false KST -false Kwajalein -true LHDT -false LHST -false LIGT -false LINT -false LKT -false Libya -false MAGST -false MAGT -false MART -false MAWT -true MDT -true MEST -true MESZ -false MET -true METDST -false MEZ -false MHT -false MMT -false MPT -true MSD -false MSK -false MST -true MST7MDT -true MUST -false MUT -false MVT -false MYT -true Mexico/BajaNorte -false Mexico/BajaSur -false Mexico/General -true NDT -false NFT -false NOVST -false NOVT -false NPT -false NST -false NUT -true NZ -true NZ-CHAT -true NZDT -false NZST -false NZT -true Navajo -false OMSST -false OMST -true PDT -false PET -false PETST -false PETT -false PGT -false PHT -true PKST -false PKT -true PMDT -false PMST -false PONT -false PRC -false PST -true PST8PDT -false PWT -true PYST -true PYT -false Pacific/Apia -true Pacific/Auckland -false Pacific/Bougainville -true Pacific/Chatham -false Pacific/Chuuk -true Pacific/Easter -false Pacific/Efate -false Pacific/Enderbury -false Pacific/Fakaofo -false Pacific/Fiji -false Pacific/Funafuti -false Pacific/Galapagos -false Pacific/Gambier -false Pacific/Guadalcanal -false Pacific/Guam -false Pacific/Honolulu -false Pacific/Johnston -false Pacific/Kanton -false Pacific/Kiritimati -false Pacific/Kosrae -false Pacific/Kwajalein -false Pacific/Majuro -false Pacific/Marquesas -false Pacific/Midway -false Pacific/Nauru -false Pacific/Niue -true Pacific/Norfolk -false Pacific/Noumea -false Pacific/Pago_Pago -false Pacific/Palau -false Pacific/Pitcairn -false Pacific/Pohnpei -false Pacific/Ponape -false Pacific/Port_Moresby -false Pacific/Rarotonga -false Pacific/Saipan -false Pacific/Samoa -false Pacific/Tahiti -false Pacific/Tarawa -false Pacific/Tongatapu -false Pacific/Truk -false Pacific/Wake -false Pacific/Wallis -false Pacific/Yap -false Poland -false Portugal -false RET -false ROC -false ROK -true SADT -false SAST -false SCT -false SGT -false Singapore -false TAHT -false TFT -false TJT -false TKT -false TMT -false TOT -false TRUT -false TVT -false Turkey -false UCT -true ULAST -false ULAT -true US/Alaska -true US/Aleutian -false US/Arizona -true US/Central -true US/East-Indiana -true US/Eastern -false US/Hawaii -true US/Indiana-Starke -true US/Michigan -true US/Mountain -true US/Pacific -false US/Samoa -false UT -false UTC -true UYST -false UYT -true UZST -false UZT -false Universal -false VET -false VLAST -false VLAT -false VOLT -false VUT -false W-SU -true WADT -false WAKT -false WAST -false WAT -true WDT -false WET -true WETDST -false WFT -true WGST -false WGT -false XJT -false YAKST -false YAKT -false YAPT -true YEKST -false YEKT -false Z -false Zulu - - - - 47631 - postgres - - - 20328 - postgres - - - 37790 - postgres - - - 47537 - postgres - - - 1 - 11||10|C|G -11||-9223372036854775808|U|G -11||10|U|G -2200||6171|C|G -2200||-9223372036854775808|U|G -2200||6171|U|G -13474||10|C|G -13474||-9223372036854775808|U|G -13474||10|U|G - 37312 - postgres - - - default administrative connection database - 5 - littlesheep - - - 49004 - postgres - - - 11||10|C|G -11||-9223372036854775808|U|G -11||10|U|G -2200||6171|C|G -2200||-9223372036854775808|U|G -2200||6171|U|G -13474||10|C|G -13474||-9223372036854775808|U|G -13474||10|U|G - 11321 - 48913 - postgres - - - 11||10|C|G -11||-9223372036854775808|U|G -11||10|U|G -2200||6171|C|G -2200||-9223372036854775808|U|G -2200||6171|U|G -13474||10|C|G -13474||-9223372036854775808|U|G -13474||10|U|G - 11254 - 48573 - postgres - - - 1 - 1 - 1 - 1 - 10 - 1 - 1 - - - 4544 - - - 6304 - - - 6171 - - - 4571 - - - 3373 - 3374 -3375 -3377 - - - 6181 - - - 3374 - - - 3375 - - - 4569 - - - 4200 - - - 3377 - - - 4550 - - - 6182 - - - 4570 - - - 1 - 18757 - 1 - - - 1663 - 1 - littlesheep - - - 1664 - 1 - littlesheep - - - 13474 - 529 - littlesheep - - - system catalog schema - 11 - 523 - littlesheep - - - standard public schema - 1 - 2200 - 523 - pg_database_owner - - - block range index (BRIN) access method - 3580 - 1 - index - 335 - brinhandler - pg_catalog - - - b-tree index access method - 403 - 1 - index - 330 - bthandler - pg_catalog - - - GIN index access method - 2742 - 1 - index - 333 - ginhandler - pg_catalog - - - GiST index access method - 783 - 1 - index - 332 - gisthandler - pg_catalog - - - hash index access method - 405 - 1 - index - 331 - hashhandler - pg_catalog - - - heap table access method - 2 - 1 - table - 3 - heap_tableam_handler - pg_catalog - - - SP-GiST index access method - 4000 - 1 - index - 334 - spghandler - pg_catalog - - - explicit - function - 10035 - 1 - 2558 - int4 - pg_catalog - 16 - bool - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10201 - 1 - 2971 - text - pg_catalog - 16 - bool - pg_catalog - 1042 - bpchar - pg_catalog - - - assignment - function - 10191 - 1 - 2971 - text - pg_catalog - 16 - bool - pg_catalog - 25 - text - pg_catalog - - - assignment - function - 10196 - 1 - 2971 - text - pg_catalog - 16 - bool - pg_catalog - 1043 - varchar - pg_catalog - - - explicit - function - 10143 - 1 - 77 - int4 - pg_catalog - 18 - char - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10133 - 1 - 946 - text - pg_catalog - 18 - char - pg_catalog - 1043 - varchar - pg_catalog - - - implicit - function - 10131 - 1 - 946 - text - pg_catalog - 18 - char - pg_catalog - 25 - text - pg_catalog - - - assignment - function - 10132 - 1 - 860 - bpchar - pg_catalog - 18 - char - pg_catalog - 1042 - bpchar - pg_catalog - - - assignment - function - 10135 - 1 - 408 - bpchar - pg_catalog - 19 - name - pg_catalog - 1042 - bpchar - pg_catalog - - - implicit - function - 10134 - 1 - 406 - text - pg_catalog - 19 - name - pg_catalog - 25 - text - pg_catalog - - - assignment - function - 10136 - 1 - 1401 - varchar - pg_catalog - 19 - name - pg_catalog - 1043 - varchar - pg_catalog - - - implicit - function - 10090 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 2206 - regtype - pg_catalog - - - implicit - function - 10060 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 2203 - regoper - pg_catalog - - - implicit - function - 10003 - 1 - 482 - float8 - pg_catalog - 20 - int8 - pg_catalog - 701 - float8 - pg_catalog - - - implicit - function - 10069 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 2204 - regoperator - pg_catalog - - - assignment - function - 10001 - 1 - 480 - int4 - pg_catalog - 20 - int8 - pg_catalog - 23 - int4 - pg_catalog - - - implicit - function - 10044 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 24 - regproc - pg_catalog - - - implicit - function - 10113 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 4096 - regrole - pg_catalog - - - implicit - function - 10120 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 4089 - regnamespace - pg_catalog - - - implicit - function - 10002 - 1 - 652 - float4 - pg_catalog - 20 - int8 - pg_catalog - 700 - float4 - pg_catalog - - - implicit - function - 10104 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 3769 - regdictionary - pg_catalog - - - implicit - function - 10083 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 4191 - regcollation - pg_catalog - - - assignment - function - 10033 - 1 - 3812 - money - pg_catalog - 20 - int8 - pg_catalog - 790 - money - pg_catalog - - - implicit - function - 10037 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 26 - oid - pg_catalog - - - implicit - function - 10097 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 3734 - regconfig - pg_catalog - - - assignment - function - 10000 - 1 - 714 - int2 - pg_catalog - 20 - int8 - pg_catalog - 21 - int2 - pg_catalog - - - explicit - function - 10185 - 1 - 2075 - bit - pg_catalog - 20 - int8 - pg_catalog - 1560 - bit - pg_catalog - - - implicit - function - 10004 - 1 - 1781 - numeric - pg_catalog - 20 - int8 - pg_catalog - 1700 - numeric - pg_catalog - - - implicit - function - 10053 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 2202 - regprocedure - pg_catalog - - - implicit - function - 10076 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 2205 - regclass - pg_catalog - - - implicit - function - 10045 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 24 - regproc - pg_catalog - - - implicit - function - 10091 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 2206 - regtype - pg_catalog - - - implicit - function - 10084 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 4191 - regcollation - pg_catalog - - - implicit - function - 10070 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 2204 - regoperator - pg_catalog - - - implicit - function - 10038 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 26 - oid - pg_catalog - - - implicit - function - 10009 - 1 - 1782 - numeric - pg_catalog - 21 - int2 - pg_catalog - 1700 - numeric - pg_catalog - - - implicit - function - 10077 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 2205 - regclass - pg_catalog - - - implicit - function - 10006 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 23 - int4 - pg_catalog - - - implicit - function - 10054 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 2202 - regprocedure - pg_catalog - - - implicit - function - 10007 - 1 - 236 - float4 - pg_catalog - 21 - int2 - pg_catalog - 700 - float4 - pg_catalog - - - implicit - function - 10005 - 1 - 754 - int8 - pg_catalog - 21 - int2 - pg_catalog - 20 - int8 - pg_catalog - - - implicit - function - 10114 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 4096 - regrole - pg_catalog - - - implicit - function - 10008 - 1 - 235 - float8 - pg_catalog - 21 - int2 - pg_catalog - 701 - float8 - pg_catalog - - - implicit - function - 10105 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 3769 - regdictionary - pg_catalog - - - implicit - function - 10121 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 4089 - regnamespace - pg_catalog - - - implicit - function - 10061 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 2203 - regoper - pg_catalog - - - implicit - function - 10098 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 3734 - regconfig - pg_catalog - - - implicit - binary - 10078 - 1 - 23 - int4 - pg_catalog - 2205 - regclass - pg_catalog - - - implicit - binary - 10085 - 1 - 23 - int4 - pg_catalog - 4191 - regcollation - pg_catalog - - - implicit - binary - 10115 - 1 - 23 - int4 - pg_catalog - 4096 - regrole - pg_catalog - - - explicit - function - 10144 - 1 - 78 - char - pg_catalog - 23 - int4 - pg_catalog - 18 - char - pg_catalog - - - implicit - binary - 10122 - 1 - 23 - int4 - pg_catalog - 4089 - regnamespace - pg_catalog - - - implicit - function - 10010 - 1 - 481 - int8 - pg_catalog - 23 - int4 - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10106 - 1 - 23 - int4 - pg_catalog - 3769 - regdictionary - pg_catalog - - - implicit - binary - 10099 - 1 - 23 - int4 - pg_catalog - 3734 - regconfig - pg_catalog - - - assignment - function - 10011 - 1 - 314 - int2 - pg_catalog - 23 - int4 - pg_catalog - 21 - int2 - pg_catalog - - - implicit - binary - 10092 - 1 - 23 - int4 - pg_catalog - 2206 - regtype - pg_catalog - - - implicit - binary - 10071 - 1 - 23 - int4 - pg_catalog - 2204 - regoperator - pg_catalog - - - implicit - binary - 10062 - 1 - 23 - int4 - pg_catalog - 2203 - regoper - pg_catalog - - - implicit - binary - 10046 - 1 - 23 - int4 - pg_catalog - 24 - regproc - pg_catalog - - - implicit - binary - 10055 - 1 - 23 - int4 - pg_catalog - 2202 - regprocedure - pg_catalog - - - explicit - function - 10034 - 1 - 2557 - bool - pg_catalog - 23 - int4 - pg_catalog - 16 - bool - pg_catalog - - - implicit - function - 10014 - 1 - 1740 - numeric - pg_catalog - 23 - int4 - pg_catalog - 1700 - numeric - pg_catalog - - - implicit - binary - 10039 - 1 - 23 - int4 - pg_catalog - 26 - oid - pg_catalog - - - explicit - function - 10186 - 1 - 1683 - bit - pg_catalog - 23 - int4 - pg_catalog - 1560 - bit - pg_catalog - - - implicit - function - 10012 - 1 - 318 - float4 - pg_catalog - 23 - int4 - pg_catalog - 700 - float4 - pg_catalog - - - implicit - function - 10013 - 1 - 316 - float8 - pg_catalog - 23 - int4 - pg_catalog - 701 - float8 - pg_catalog - - - assignment - function - 10032 - 1 - 3811 - money - pg_catalog - 23 - int4 - pg_catalog - 790 - money - pg_catalog - - - assignment - binary - 10048 - 1 - 24 - regproc - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10047 - 1 - 1288 - int8 - pg_catalog - 24 - regproc - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10043 - 1 - 24 - regproc - pg_catalog - 26 - oid - pg_catalog - - - implicit - binary - 10049 - 1 - 24 - regproc - pg_catalog - 2202 - regprocedure - pg_catalog - - - implicit - binary - 10125 - 1 - 25 - text - pg_catalog - 1042 - bpchar - pg_catalog - - - implicit - function - 10140 - 1 - 407 - name - pg_catalog - 25 - text - pg_catalog - 19 - name - pg_catalog - - - assignment - function - 10137 - 1 - 944 - char - pg_catalog - 25 - text - pg_catalog - 18 - char - pg_catalog - - - implicit - binary - 10126 - 1 - 25 - text - pg_catalog - 1043 - varchar - pg_catalog - - - explicit - function - 10193 - 1 - 2896 - xml - pg_catalog - 25 - text - pg_catalog - 142 - xml - pg_catalog - - - implicit - function - 10109 - 1 - 1079 - regclass - pg_catalog - 25 - text - pg_catalog - 2205 - regclass - pg_catalog - - - implicit - binary - 10074 - 1 - 26 - oid - pg_catalog - 2205 - regclass - pg_catalog - - - implicit - binary - 10051 - 1 - 26 - oid - pg_catalog - 2202 - regprocedure - pg_catalog - - - implicit - binary - 10095 - 1 - 26 - oid - pg_catalog - 3734 - regconfig - pg_catalog - - - implicit - binary - 10058 - 1 - 26 - oid - pg_catalog - 2203 - regoper - pg_catalog - - - implicit - binary - 10081 - 1 - 26 - oid - pg_catalog - 4191 - regcollation - pg_catalog - - - implicit - binary - 10067 - 1 - 26 - oid - pg_catalog - 2204 - regoperator - pg_catalog - - - implicit - binary - 10042 - 1 - 26 - oid - pg_catalog - 24 - regproc - pg_catalog - - - assignment - function - 10040 - 1 - 1288 - int8 - pg_catalog - 26 - oid - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10111 - 1 - 26 - oid - pg_catalog - 4096 - regrole - pg_catalog - - - implicit - binary - 10102 - 1 - 26 - oid - pg_catalog - 3769 - regdictionary - pg_catalog - - - implicit - binary - 10088 - 1 - 26 - oid - pg_catalog - 2206 - regtype - pg_catalog - - - assignment - binary - 10041 - 1 - 26 - oid - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10118 - 1 - 26 - oid - pg_catalog - 4089 - regnamespace - pg_catalog - - - assignment - io - 10214 - 1 - 114 - json - pg_catalog - 3802 - jsonb - pg_catalog - - - assignment - binary - 10202 - 1 - 142 - xml - pg_catalog - 1042 - bpchar - pg_catalog - - - assignment - binary - 10197 - 1 - 142 - xml - pg_catalog - 1043 - varchar - pg_catalog - - - assignment - binary - 10192 - 1 - 142 - xml - pg_catalog - 25 - text - pg_catalog - - - implicit - binary - 10145 - 1 - 194 - pg_node_tree - pg_catalog - 25 - text - pg_catalog - - - assignment - function - 10165 - 1 - 4091 - box - pg_catalog - 600 - point - pg_catalog - 603 - box - pg_catalog - - - explicit - function - 10166 - 1 - 1532 - point - pg_catalog - 601 - lseg - pg_catalog - 600 - point - pg_catalog - - - assignment - function - 10167 - 1 - 1449 - polygon - pg_catalog - 602 - path - pg_catalog - 604 - polygon - pg_catalog - - - explicit - function - 10168 - 1 - 1534 - point - pg_catalog - 603 - box - pg_catalog - 600 - point - pg_catalog - - - explicit - function - 10171 - 1 - 1479 - circle - pg_catalog - 603 - box - pg_catalog - 718 - circle - pg_catalog - - - explicit - function - 10169 - 1 - 1541 - lseg - pg_catalog - 603 - box - pg_catalog - 601 - lseg - pg_catalog - - - assignment - function - 10170 - 1 - 1448 - polygon - pg_catalog - 603 - box - pg_catalog - 604 - polygon - pg_catalog - - - explicit - function - 10172 - 1 - 1540 - point - pg_catalog - 604 - polygon - pg_catalog - 600 - point - pg_catalog - - - explicit - function - 10175 - 1 - 1474 - circle - pg_catalog - 604 - polygon - pg_catalog - 718 - circle - pg_catalog - - - explicit - function - 10174 - 1 - 1446 - box - pg_catalog - 604 - polygon - pg_catalog - 603 - box - pg_catalog - - - assignment - function - 10173 - 1 - 1447 - path - pg_catalog - 604 - polygon - pg_catalog - 602 - path - pg_catalog - - - assignment - function - 10194 - 1 - 730 - text - pg_catalog - 650 - cidr - pg_catalog - 1043 - varchar - pg_catalog - - - assignment - function - 10199 - 1 - 730 - text - pg_catalog - 650 - cidr - pg_catalog - 1042 - bpchar - pg_catalog - - - assignment - function - 10189 - 1 - 730 - text - pg_catalog - 650 - cidr - pg_catalog - 25 - text - pg_catalog - - - implicit - binary - 10181 - 1 - 650 - cidr - pg_catalog - 869 - inet - pg_catalog - - - assignment - function - 10016 - 1 - 238 - int2 - pg_catalog - 700 - float4 - pg_catalog - 21 - int2 - pg_catalog - - - assignment - function - 10015 - 1 - 653 - int8 - pg_catalog - 700 - float4 - pg_catalog - 20 - int8 - pg_catalog - - - implicit - function - 10018 - 1 - 311 - float8 - pg_catalog - 700 - float4 - pg_catalog - 701 - float8 - pg_catalog - - - assignment - function - 10019 - 1 - 1742 - numeric - pg_catalog - 700 - float4 - pg_catalog - 1700 - numeric - pg_catalog - - - assignment - function - 10017 - 1 - 319 - int4 - pg_catalog - 700 - float4 - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10024 - 1 - 1743 - numeric - pg_catalog - 701 - float8 - pg_catalog - 1700 - numeric - pg_catalog - - - assignment - function - 10020 - 1 - 483 - int8 - pg_catalog - 701 - float8 - pg_catalog - 20 - int8 - pg_catalog - - - assignment - function - 10021 - 1 - 237 - int2 - pg_catalog - 701 - float8 - pg_catalog - 21 - int2 - pg_catalog - - - assignment - function - 10022 - 1 - 317 - int4 - pg_catalog - 701 - float8 - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10023 - 1 - 312 - float4 - pg_catalog - 701 - float8 - pg_catalog - 700 - float4 - pg_catalog - - - explicit - function - 10178 - 1 - 1544 - polygon - pg_catalog - 718 - circle - pg_catalog - 604 - polygon - pg_catalog - - - explicit - function - 10176 - 1 - 1416 - point - pg_catalog - 718 - circle - pg_catalog - 600 - point - pg_catalog - - - explicit - function - 10177 - 1 - 1480 - box - pg_catalog - 718 - circle - pg_catalog - 603 - box - pg_catalog - - - implicit - function - 10180 - 1 - 4124 - macaddr - pg_catalog - 774 - macaddr8 - pg_catalog - 829 - macaddr - pg_catalog - - - assignment - function - 10030 - 1 - 3823 - numeric - pg_catalog - 790 - money - pg_catalog - 1700 - numeric - pg_catalog - - - implicit - function - 10179 - 1 - 4123 - macaddr8 - pg_catalog - 829 - macaddr - pg_catalog - 774 - macaddr8 - pg_catalog - - - assignment - function - 10195 - 1 - 730 - text - pg_catalog - 869 - inet - pg_catalog - 1043 - varchar - pg_catalog - - - assignment - function - 10190 - 1 - 730 - text - pg_catalog - 869 - inet - pg_catalog - 25 - text - pg_catalog - - - assignment - function - 10182 - 1 - 1715 - cidr - pg_catalog - 869 - inet - pg_catalog - 650 - cidr - pg_catalog - - - assignment - function - 10200 - 1 - 730 - text - pg_catalog - 869 - inet - pg_catalog - 1042 - bpchar - pg_catalog - - - implicit - function - 10204 - 1 - 668 - bpchar - pg_catalog - 1042 - bpchar - pg_catalog - 1042 - bpchar - pg_catalog - - - implicit - function - 10128 - 1 - 401 - text - pg_catalog - 1042 - bpchar - pg_catalog - 1043 - varchar - pg_catalog - - - explicit - function - 10203 - 1 - 2896 - xml - pg_catalog - 1042 - bpchar - pg_catalog - 142 - xml - pg_catalog - - - implicit - function - 10127 - 1 - 401 - text - pg_catalog - 1042 - bpchar - pg_catalog - 25 - text - pg_catalog - - - assignment - function - 10138 - 1 - 944 - char - pg_catalog - 1042 - bpchar - pg_catalog - 18 - char - pg_catalog - - - implicit - function - 10141 - 1 - 409 - name - pg_catalog - 1042 - bpchar - pg_catalog - 19 - name - pg_catalog - - - implicit - binary - 10129 - 1 - 1043 - varchar - pg_catalog - 25 - text - pg_catalog - - - implicit - function - 10142 - 1 - 1400 - name - pg_catalog - 1043 - varchar - pg_catalog - 19 - name - pg_catalog - - - implicit - binary - 10130 - 1 - 1043 - varchar - pg_catalog - 1042 - bpchar - pg_catalog - - - explicit - function - 10198 - 1 - 2896 - xml - pg_catalog - 1043 - varchar - pg_catalog - 142 - xml - pg_catalog - - - implicit - function - 10110 - 1 - 1079 - regclass - pg_catalog - 1043 - varchar - pg_catalog - 2205 - regclass - pg_catalog - - - implicit - function - 10205 - 1 - 669 - varchar - pg_catalog - 1043 - varchar - pg_catalog - 1043 - varchar - pg_catalog - - - assignment - function - 10139 - 1 - 944 - char - pg_catalog - 1043 - varchar - pg_catalog - 18 - char - pg_catalog - - - implicit - function - 10152 - 1 - 2024 - timestamp - pg_catalog - 1082 - date - pg_catalog - 1114 - timestamp - pg_catalog - - - implicit - function - 10153 - 1 - 1174 - timestamptz - pg_catalog - 1082 - date - pg_catalog - 1184 - timestamptz - pg_catalog - - - implicit - function - 10206 - 1 - 1968 - time - pg_catalog - 1083 - time - pg_catalog - 1083 - time - pg_catalog - - - implicit - function - 10155 - 1 - 2047 - timetz - pg_catalog - 1083 - time - pg_catalog - 1266 - timetz - pg_catalog - - - implicit - function - 10154 - 1 - 1370 - interval - pg_catalog - 1083 - time - pg_catalog - 1186 - interval - pg_catalog - - - implicit - function - 10158 - 1 - 2028 - timestamptz - pg_catalog - 1114 - timestamp - pg_catalog - 1184 - timestamptz - pg_catalog - - - assignment - function - 10156 - 1 - 2029 - date - pg_catalog - 1114 - timestamp - pg_catalog - 1082 - date - pg_catalog - - - assignment - function - 10157 - 1 - 1316 - time - pg_catalog - 1114 - timestamp - pg_catalog - 1083 - time - pg_catalog - - - implicit - function - 10207 - 1 - 1961 - timestamp - pg_catalog - 1114 - timestamp - pg_catalog - 1114 - timestamp - pg_catalog - - - assignment - function - 10159 - 1 - 1178 - date - pg_catalog - 1184 - timestamptz - pg_catalog - 1082 - date - pg_catalog - - - assignment - function - 10162 - 1 - 1388 - timetz - pg_catalog - 1184 - timestamptz - pg_catalog - 1266 - timetz - pg_catalog - - - assignment - function - 10160 - 1 - 2019 - time - pg_catalog - 1184 - timestamptz - pg_catalog - 1083 - time - pg_catalog - - - assignment - function - 10161 - 1 - 2027 - timestamp - pg_catalog - 1184 - timestamptz - pg_catalog - 1114 - timestamp - pg_catalog - - - implicit - function - 10208 - 1 - 1967 - timestamptz - pg_catalog - 1184 - timestamptz - pg_catalog - 1184 - timestamptz - pg_catalog - - - implicit - function - 10209 - 1 - 1200 - interval - pg_catalog - 1186 - interval - pg_catalog - 1186 - interval - pg_catalog - - - assignment - function - 10163 - 1 - 1419 - time - pg_catalog - 1186 - interval - pg_catalog - 1083 - time - pg_catalog - - - assignment - function - 10164 - 1 - 2046 - time - pg_catalog - 1266 - timetz - pg_catalog - 1083 - time - pg_catalog - - - implicit - function - 10210 - 1 - 1969 - timetz - pg_catalog - 1266 - timetz - pg_catalog - 1266 - timetz - pg_catalog - - - explicit - function - 10187 - 1 - 2076 - int8 - pg_catalog - 1560 - bit - pg_catalog - 20 - int8 - pg_catalog - - - implicit - function - 10211 - 1 - 1685 - bit - pg_catalog - 1560 - bit - pg_catalog - 1560 - bit - pg_catalog - - - implicit - binary - 10183 - 1 - 1560 - bit - pg_catalog - 1562 - varbit - pg_catalog - - - explicit - function - 10188 - 1 - 1684 - int4 - pg_catalog - 1560 - bit - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10184 - 1 - 1562 - varbit - pg_catalog - 1560 - bit - pg_catalog - - - implicit - function - 10212 - 1 - 1687 - varbit - pg_catalog - 1562 - varbit - pg_catalog - 1562 - varbit - pg_catalog - - - assignment - function - 10025 - 1 - 1779 - int8 - pg_catalog - 1700 - numeric - pg_catalog - 20 - int8 - pg_catalog - - - assignment - function - 10026 - 1 - 1783 - int2 - pg_catalog - 1700 - numeric - pg_catalog - 21 - int2 - pg_catalog - - - assignment - function - 10027 - 1 - 1744 - int4 - pg_catalog - 1700 - numeric - pg_catalog - 23 - int4 - pg_catalog - - - implicit - function - 10213 - 1 - 1703 - numeric - pg_catalog - 1700 - numeric - pg_catalog - 1700 - numeric - pg_catalog - - - implicit - function - 10029 - 1 - 1746 - float8 - pg_catalog - 1700 - numeric - pg_catalog - 701 - float8 - pg_catalog - - - assignment - function - 10031 - 1 - 3824 - money - pg_catalog - 1700 - numeric - pg_catalog - 790 - money - pg_catalog - - - implicit - function - 10028 - 1 - 1745 - float4 - pg_catalog - 1700 - numeric - pg_catalog - 700 - float4 - pg_catalog - - - assignment - binary - 10057 - 1 - 2202 - regprocedure - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10052 - 1 - 2202 - regprocedure - pg_catalog - 26 - oid - pg_catalog - - - assignment - function - 10056 - 1 - 1288 - int8 - pg_catalog - 2202 - regprocedure - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10050 - 1 - 2202 - regprocedure - pg_catalog - 24 - regproc - pg_catalog - - - implicit - binary - 10065 - 1 - 2203 - regoper - pg_catalog - 2204 - regoperator - pg_catalog - - - assignment - function - 10063 - 1 - 1288 - int8 - pg_catalog - 2203 - regoper - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10059 - 1 - 2203 - regoper - pg_catalog - 26 - oid - pg_catalog - - - assignment - binary - 10064 - 1 - 2203 - regoper - pg_catalog - 23 - int4 - pg_catalog - - - assignment - binary - 10073 - 1 - 2204 - regoperator - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10068 - 1 - 2204 - regoperator - pg_catalog - 26 - oid - pg_catalog - - - assignment - function - 10072 - 1 - 1288 - int8 - pg_catalog - 2204 - regoperator - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10066 - 1 - 2204 - regoperator - pg_catalog - 2203 - regoper - pg_catalog - - - assignment - function - 10079 - 1 - 1288 - int8 - pg_catalog - 2205 - regclass - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10075 - 1 - 2205 - regclass - pg_catalog - 26 - oid - pg_catalog - - - assignment - binary - 10080 - 1 - 2205 - regclass - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10093 - 1 - 1288 - int8 - pg_catalog - 2206 - regtype - pg_catalog - 20 - int8 - pg_catalog - - - assignment - binary - 10094 - 1 - 2206 - regtype - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10089 - 1 - 2206 - regtype - pg_catalog - 26 - oid - pg_catalog - - - implicit - binary - 10146 - 1 - 3361 - pg_ndistinct - pg_catalog - 17 - bytea - pg_catalog - - - implicit - io - 10147 - 1 - 3361 - pg_ndistinct - pg_catalog - 25 - text - pg_catalog - - - implicit - binary - 10148 - 1 - 3402 - pg_dependencies - pg_catalog - 17 - bytea - pg_catalog - - - implicit - io - 10149 - 1 - 3402 - pg_dependencies - pg_catalog - 25 - text - pg_catalog - - - implicit - binary - 10096 - 1 - 3734 - regconfig - pg_catalog - 26 - oid - pg_catalog - - - assignment - function - 10100 - 1 - 1288 - int8 - pg_catalog - 3734 - regconfig - pg_catalog - 20 - int8 - pg_catalog - - - assignment - binary - 10101 - 1 - 3734 - regconfig - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10103 - 1 - 3769 - regdictionary - pg_catalog - 26 - oid - pg_catalog - - - assignment - binary - 10108 - 1 - 3769 - regdictionary - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10107 - 1 - 1288 - int8 - pg_catalog - 3769 - regdictionary - pg_catalog - 20 - int8 - pg_catalog - - - assignment - io - 10215 - 1 - 3802 - jsonb - pg_catalog - 114 - json - pg_catalog - - - explicit - function - 10218 - 1 - 3450 - int2 - pg_catalog - 3802 - jsonb - pg_catalog - 21 - int2 - pg_catalog - - - explicit - function - 10220 - 1 - 3452 - int8 - pg_catalog - 3802 - jsonb - pg_catalog - 20 - int8 - pg_catalog - - - explicit - function - 10219 - 1 - 3451 - int4 - pg_catalog - 3802 - jsonb - pg_catalog - 23 - int4 - pg_catalog - - - explicit - function - 10216 - 1 - 3556 - bool - pg_catalog - 3802 - jsonb - pg_catalog - 16 - bool - pg_catalog - - - explicit - function - 10221 - 1 - 3453 - float4 - pg_catalog - 3802 - jsonb - pg_catalog - 700 - float4 - pg_catalog - - - explicit - function - 10217 - 1 - 3449 - numeric - pg_catalog - 3802 - jsonb - pg_catalog - 1700 - numeric - pg_catalog - - - explicit - function - 10222 - 1 - 2580 - float8 - pg_catalog - 3802 - jsonb - pg_catalog - 701 - float8 - pg_catalog - - - explicit - function - 10223 - 1 - 4281 - int4multirange - pg_catalog - 3904 - int4range - pg_catalog - 4451 - int4multirange - pg_catalog - - - explicit - function - 10225 - 1 - 4284 - nummultirange - pg_catalog - 3906 - numrange - pg_catalog - 4532 - nummultirange - pg_catalog - - - explicit - function - 10227 - 1 - 4287 - tsmultirange - pg_catalog - 3908 - tsrange - pg_catalog - 4533 - tsmultirange - pg_catalog - - - explicit - function - 10228 - 1 - 4290 - tstzmultirange - pg_catalog - 3910 - tstzrange - pg_catalog - 4534 - tstzmultirange - pg_catalog - - - explicit - function - 10226 - 1 - 4293 - datemultirange - pg_catalog - 3912 - daterange - pg_catalog - 4535 - datemultirange - pg_catalog - - - explicit - function - 10224 - 1 - 4296 - int8multirange - pg_catalog - 3926 - int8range - pg_catalog - 4536 - int8multirange - pg_catalog - - - assignment - binary - 10124 - 1 - 4089 - regnamespace - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10123 - 1 - 1288 - int8 - pg_catalog - 4089 - regnamespace - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10119 - 1 - 4089 - regnamespace - pg_catalog - 26 - oid - pg_catalog - - - assignment - binary - 10117 - 1 - 4096 - regrole - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10112 - 1 - 4096 - regrole - pg_catalog - 26 - oid - pg_catalog - - - assignment - function - 10116 - 1 - 1288 - int8 - pg_catalog - 4096 - regrole - pg_catalog - 20 - int8 - pg_catalog - - - assignment - function - 10086 - 1 - 1288 - int8 - pg_catalog - 4191 - regcollation - pg_catalog - 20 - int8 - pg_catalog - - - assignment - binary - 10087 - 1 - 4191 - regcollation - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10082 - 1 - 4191 - regcollation - pg_catalog - 26 - oid - pg_catalog - - - implicit - binary - 10150 - 1 - 5017 - pg_mcv_list - pg_catalog - 17 - bytea - pg_catalog - - - implicit - io - 10151 - 1 - 5017 - pg_mcv_list - pg_catalog - 25 - text - pg_catalog - - - explicit - function - 10036 - 1 - 5071 - xid - pg_catalog - 5069 - xid8 - pg_catalog - 28 - xid - pg_catalog - - - PL/pgSQL procedural language - 13826 - 683 - 1.0 - 11 - pg_catalog - 13827 -13828 -13829 -13830 - - - dynamically-loaded C functions - 13 - 1 - fmgr_c_validator - pg_catalog - - - built-in functions - 12 - 1 - fmgr_internal_validator - pg_catalog - - - PL/pgSQL procedural language - plpgsql_call_handler - pg_catalog - plpgsql_inline_handler - pg_catalog - 13830 - 683 - 1 - plpgsql_validator - pg_catalog - - - SQL-language functions - 14 - 1 - 1 - fmgr_sql_validator - pg_catalog - - - 13474 - 529 - littlesheep - - - system catalog schema - 11 - 523 - littlesheep - - - standard public schema - 1 - 11321 - 2024-11-02.18:10:42 - 2200 - 523 - pg_database_owner - - - block range index (BRIN) access method - 3580 - 1 - index - 335 - brinhandler - pg_catalog - - - b-tree index access method - 403 - 1 - index - 330 - bthandler - pg_catalog - - - GIN index access method - 2742 - 1 - index - 333 - ginhandler - pg_catalog - - - GiST index access method - 783 - 1 - index - 332 - gisthandler - pg_catalog - - - hash index access method - 405 - 1 - index - 331 - hashhandler - pg_catalog - - - heap table access method - 2 - 1 - table - 3 - heap_tableam_handler - pg_catalog - - - SP-GiST index access method - 4000 - 1 - index - 334 - spghandler - pg_catalog - - - explicit - function - 10035 - 1 - 2558 - int4 - pg_catalog - 16 - bool - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10201 - 1 - 2971 - text - pg_catalog - 16 - bool - pg_catalog - 1042 - bpchar - pg_catalog - - - assignment - function - 10191 - 1 - 2971 - text - pg_catalog - 16 - bool - pg_catalog - 25 - text - pg_catalog - - - assignment - function - 10196 - 1 - 2971 - text - pg_catalog - 16 - bool - pg_catalog - 1043 - varchar - pg_catalog - - - explicit - function - 10143 - 1 - 77 - int4 - pg_catalog - 18 - char - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10133 - 1 - 946 - text - pg_catalog - 18 - char - pg_catalog - 1043 - varchar - pg_catalog - - - implicit - function - 10131 - 1 - 946 - text - pg_catalog - 18 - char - pg_catalog - 25 - text - pg_catalog - - - assignment - function - 10132 - 1 - 860 - bpchar - pg_catalog - 18 - char - pg_catalog - 1042 - bpchar - pg_catalog - - - assignment - function - 10135 - 1 - 408 - bpchar - pg_catalog - 19 - name - pg_catalog - 1042 - bpchar - pg_catalog - - - implicit - function - 10134 - 1 - 406 - text - pg_catalog - 19 - name - pg_catalog - 25 - text - pg_catalog - - - assignment - function - 10136 - 1 - 1401 - varchar - pg_catalog - 19 - name - pg_catalog - 1043 - varchar - pg_catalog - - - implicit - function - 10090 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 2206 - regtype - pg_catalog - - - implicit - function - 10060 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 2203 - regoper - pg_catalog - - - implicit - function - 10003 - 1 - 482 - float8 - pg_catalog - 20 - int8 - pg_catalog - 701 - float8 - pg_catalog - - - implicit - function - 10069 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 2204 - regoperator - pg_catalog - - - assignment - function - 10001 - 1 - 480 - int4 - pg_catalog - 20 - int8 - pg_catalog - 23 - int4 - pg_catalog - - - implicit - function - 10044 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 24 - regproc - pg_catalog - - - implicit - function - 10113 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 4096 - regrole - pg_catalog - - - implicit - function - 10120 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 4089 - regnamespace - pg_catalog - - - implicit - function - 10002 - 1 - 652 - float4 - pg_catalog - 20 - int8 - pg_catalog - 700 - float4 - pg_catalog - - - implicit - function - 10104 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 3769 - regdictionary - pg_catalog - - - implicit - function - 10083 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 4191 - regcollation - pg_catalog - - - assignment - function - 10033 - 1 - 3812 - money - pg_catalog - 20 - int8 - pg_catalog - 790 - money - pg_catalog - - - implicit - function - 10037 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 26 - oid - pg_catalog - - - implicit - function - 10097 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 3734 - regconfig - pg_catalog - - - assignment - function - 10000 - 1 - 714 - int2 - pg_catalog - 20 - int8 - pg_catalog - 21 - int2 - pg_catalog - - - explicit - function - 10185 - 1 - 2075 - bit - pg_catalog - 20 - int8 - pg_catalog - 1560 - bit - pg_catalog - - - implicit - function - 10004 - 1 - 1781 - numeric - pg_catalog - 20 - int8 - pg_catalog - 1700 - numeric - pg_catalog - - - implicit - function - 10053 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 2202 - regprocedure - pg_catalog - - - implicit - function - 10076 - 1 - 1287 - oid - pg_catalog - 20 - int8 - pg_catalog - 2205 - regclass - pg_catalog - - - implicit - function - 10045 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 24 - regproc - pg_catalog - - - implicit - function - 10091 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 2206 - regtype - pg_catalog - - - implicit - function - 10084 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 4191 - regcollation - pg_catalog - - - implicit - function - 10070 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 2204 - regoperator - pg_catalog - - - implicit - function - 10038 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 26 - oid - pg_catalog - - - implicit - function - 10009 - 1 - 1782 - numeric - pg_catalog - 21 - int2 - pg_catalog - 1700 - numeric - pg_catalog - - - implicit - function - 10077 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 2205 - regclass - pg_catalog - - - implicit - function - 10006 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 23 - int4 - pg_catalog - - - implicit - function - 10054 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 2202 - regprocedure - pg_catalog - - - implicit - function - 10007 - 1 - 236 - float4 - pg_catalog - 21 - int2 - pg_catalog - 700 - float4 - pg_catalog - - - implicit - function - 10005 - 1 - 754 - int8 - pg_catalog - 21 - int2 - pg_catalog - 20 - int8 - pg_catalog - - - implicit - function - 10114 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 4096 - regrole - pg_catalog - - - implicit - function - 10008 - 1 - 235 - float8 - pg_catalog - 21 - int2 - pg_catalog - 701 - float8 - pg_catalog - - - implicit - function - 10105 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 3769 - regdictionary - pg_catalog - - - implicit - function - 10121 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 4089 - regnamespace - pg_catalog - - - implicit - function - 10061 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 2203 - regoper - pg_catalog - - - implicit - function - 10098 - 1 - 313 - int4 - pg_catalog - 21 - int2 - pg_catalog - 3734 - regconfig - pg_catalog - - - implicit - binary - 10078 - 1 - 23 - int4 - pg_catalog - 2205 - regclass - pg_catalog - - - implicit - binary - 10085 - 1 - 23 - int4 - pg_catalog - 4191 - regcollation - pg_catalog - - - implicit - binary - 10115 - 1 - 23 - int4 - pg_catalog - 4096 - regrole - pg_catalog - - - explicit - function - 10144 - 1 - 78 - char - pg_catalog - 23 - int4 - pg_catalog - 18 - char - pg_catalog - - - implicit - binary - 10122 - 1 - 23 - int4 - pg_catalog - 4089 - regnamespace - pg_catalog - - - implicit - function - 10010 - 1 - 481 - int8 - pg_catalog - 23 - int4 - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10106 - 1 - 23 - int4 - pg_catalog - 3769 - regdictionary - pg_catalog - - - implicit - binary - 10099 - 1 - 23 - int4 - pg_catalog - 3734 - regconfig - pg_catalog - - - assignment - function - 10011 - 1 - 314 - int2 - pg_catalog - 23 - int4 - pg_catalog - 21 - int2 - pg_catalog - - - implicit - binary - 10092 - 1 - 23 - int4 - pg_catalog - 2206 - regtype - pg_catalog - - - implicit - binary - 10071 - 1 - 23 - int4 - pg_catalog - 2204 - regoperator - pg_catalog - - - implicit - binary - 10062 - 1 - 23 - int4 - pg_catalog - 2203 - regoper - pg_catalog - - - implicit - binary - 10046 - 1 - 23 - int4 - pg_catalog - 24 - regproc - pg_catalog - - - implicit - binary - 10055 - 1 - 23 - int4 - pg_catalog - 2202 - regprocedure - pg_catalog - - - explicit - function - 10034 - 1 - 2557 - bool - pg_catalog - 23 - int4 - pg_catalog - 16 - bool - pg_catalog - - - implicit - function - 10014 - 1 - 1740 - numeric - pg_catalog - 23 - int4 - pg_catalog - 1700 - numeric - pg_catalog - - - implicit - binary - 10039 - 1 - 23 - int4 - pg_catalog - 26 - oid - pg_catalog - - - explicit - function - 10186 - 1 - 1683 - bit - pg_catalog - 23 - int4 - pg_catalog - 1560 - bit - pg_catalog - - - implicit - function - 10012 - 1 - 318 - float4 - pg_catalog - 23 - int4 - pg_catalog - 700 - float4 - pg_catalog - - - implicit - function - 10013 - 1 - 316 - float8 - pg_catalog - 23 - int4 - pg_catalog - 701 - float8 - pg_catalog - - - assignment - function - 10032 - 1 - 3811 - money - pg_catalog - 23 - int4 - pg_catalog - 790 - money - pg_catalog - - - assignment - binary - 10048 - 1 - 24 - regproc - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10047 - 1 - 1288 - int8 - pg_catalog - 24 - regproc - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10043 - 1 - 24 - regproc - pg_catalog - 26 - oid - pg_catalog - - - implicit - binary - 10049 - 1 - 24 - regproc - pg_catalog - 2202 - regprocedure - pg_catalog - - - implicit - binary - 10125 - 1 - 25 - text - pg_catalog - 1042 - bpchar - pg_catalog - - - implicit - function - 10140 - 1 - 407 - name - pg_catalog - 25 - text - pg_catalog - 19 - name - pg_catalog - - - assignment - function - 10137 - 1 - 944 - char - pg_catalog - 25 - text - pg_catalog - 18 - char - pg_catalog - - - implicit - binary - 10126 - 1 - 25 - text - pg_catalog - 1043 - varchar - pg_catalog - - - explicit - function - 10193 - 1 - 2896 - xml - pg_catalog - 25 - text - pg_catalog - 142 - xml - pg_catalog - - - implicit - function - 10109 - 1 - 1079 - regclass - pg_catalog - 25 - text - pg_catalog - 2205 - regclass - pg_catalog - - - implicit - binary - 10074 - 1 - 26 - oid - pg_catalog - 2205 - regclass - pg_catalog - - - implicit - binary - 10051 - 1 - 26 - oid - pg_catalog - 2202 - regprocedure - pg_catalog - - - implicit - binary - 10095 - 1 - 26 - oid - pg_catalog - 3734 - regconfig - pg_catalog - - - implicit - binary - 10058 - 1 - 26 - oid - pg_catalog - 2203 - regoper - pg_catalog - - - implicit - binary - 10081 - 1 - 26 - oid - pg_catalog - 4191 - regcollation - pg_catalog - - - implicit - binary - 10067 - 1 - 26 - oid - pg_catalog - 2204 - regoperator - pg_catalog - - - implicit - binary - 10042 - 1 - 26 - oid - pg_catalog - 24 - regproc - pg_catalog - - - assignment - function - 10040 - 1 - 1288 - int8 - pg_catalog - 26 - oid - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10111 - 1 - 26 - oid - pg_catalog - 4096 - regrole - pg_catalog - - - implicit - binary - 10102 - 1 - 26 - oid - pg_catalog - 3769 - regdictionary - pg_catalog - - - implicit - binary - 10088 - 1 - 26 - oid - pg_catalog - 2206 - regtype - pg_catalog - - - assignment - binary - 10041 - 1 - 26 - oid - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10118 - 1 - 26 - oid - pg_catalog - 4089 - regnamespace - pg_catalog - - - assignment - io - 10214 - 1 - 114 - json - pg_catalog - 3802 - jsonb - pg_catalog - - - assignment - binary - 10202 - 1 - 142 - xml - pg_catalog - 1042 - bpchar - pg_catalog - - - assignment - binary - 10197 - 1 - 142 - xml - pg_catalog - 1043 - varchar - pg_catalog - - - assignment - binary - 10192 - 1 - 142 - xml - pg_catalog - 25 - text - pg_catalog - - - implicit - binary - 10145 - 1 - 194 - pg_node_tree - pg_catalog - 25 - text - pg_catalog - - - assignment - function - 10165 - 1 - 4091 - box - pg_catalog - 600 - point - pg_catalog - 603 - box - pg_catalog - - - explicit - function - 10166 - 1 - 1532 - point - pg_catalog - 601 - lseg - pg_catalog - 600 - point - pg_catalog - - - assignment - function - 10167 - 1 - 1449 - polygon - pg_catalog - 602 - path - pg_catalog - 604 - polygon - pg_catalog - - - explicit - function - 10168 - 1 - 1534 - point - pg_catalog - 603 - box - pg_catalog - 600 - point - pg_catalog - - - explicit - function - 10171 - 1 - 1479 - circle - pg_catalog - 603 - box - pg_catalog - 718 - circle - pg_catalog - - - explicit - function - 10169 - 1 - 1541 - lseg - pg_catalog - 603 - box - pg_catalog - 601 - lseg - pg_catalog - - - assignment - function - 10170 - 1 - 1448 - polygon - pg_catalog - 603 - box - pg_catalog - 604 - polygon - pg_catalog - - - explicit - function - 10172 - 1 - 1540 - point - pg_catalog - 604 - polygon - pg_catalog - 600 - point - pg_catalog - - - explicit - function - 10175 - 1 - 1474 - circle - pg_catalog - 604 - polygon - pg_catalog - 718 - circle - pg_catalog - - - explicit - function - 10174 - 1 - 1446 - box - pg_catalog - 604 - polygon - pg_catalog - 603 - box - pg_catalog - - - assignment - function - 10173 - 1 - 1447 - path - pg_catalog - 604 - polygon - pg_catalog - 602 - path - pg_catalog - - - assignment - function - 10194 - 1 - 730 - text - pg_catalog - 650 - cidr - pg_catalog - 1043 - varchar - pg_catalog - - - assignment - function - 10199 - 1 - 730 - text - pg_catalog - 650 - cidr - pg_catalog - 1042 - bpchar - pg_catalog - - - assignment - function - 10189 - 1 - 730 - text - pg_catalog - 650 - cidr - pg_catalog - 25 - text - pg_catalog - - - implicit - binary - 10181 - 1 - 650 - cidr - pg_catalog - 869 - inet - pg_catalog - - - assignment - function - 10016 - 1 - 238 - int2 - pg_catalog - 700 - float4 - pg_catalog - 21 - int2 - pg_catalog - - - assignment - function - 10015 - 1 - 653 - int8 - pg_catalog - 700 - float4 - pg_catalog - 20 - int8 - pg_catalog - - - implicit - function - 10018 - 1 - 311 - float8 - pg_catalog - 700 - float4 - pg_catalog - 701 - float8 - pg_catalog - - - assignment - function - 10019 - 1 - 1742 - numeric - pg_catalog - 700 - float4 - pg_catalog - 1700 - numeric - pg_catalog - - - assignment - function - 10017 - 1 - 319 - int4 - pg_catalog - 700 - float4 - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10024 - 1 - 1743 - numeric - pg_catalog - 701 - float8 - pg_catalog - 1700 - numeric - pg_catalog - - - assignment - function - 10020 - 1 - 483 - int8 - pg_catalog - 701 - float8 - pg_catalog - 20 - int8 - pg_catalog - - - assignment - function - 10021 - 1 - 237 - int2 - pg_catalog - 701 - float8 - pg_catalog - 21 - int2 - pg_catalog - - - assignment - function - 10022 - 1 - 317 - int4 - pg_catalog - 701 - float8 - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10023 - 1 - 312 - float4 - pg_catalog - 701 - float8 - pg_catalog - 700 - float4 - pg_catalog - - - explicit - function - 10178 - 1 - 1544 - polygon - pg_catalog - 718 - circle - pg_catalog - 604 - polygon - pg_catalog - - - explicit - function - 10176 - 1 - 1416 - point - pg_catalog - 718 - circle - pg_catalog - 600 - point - pg_catalog - - - explicit - function - 10177 - 1 - 1480 - box - pg_catalog - 718 - circle - pg_catalog - 603 - box - pg_catalog - - - implicit - function - 10180 - 1 - 4124 - macaddr - pg_catalog - 774 - macaddr8 - pg_catalog - 829 - macaddr - pg_catalog - - - assignment - function - 10030 - 1 - 3823 - numeric - pg_catalog - 790 - money - pg_catalog - 1700 - numeric - pg_catalog - - - implicit - function - 10179 - 1 - 4123 - macaddr8 - pg_catalog - 829 - macaddr - pg_catalog - 774 - macaddr8 - pg_catalog - - - assignment - function - 10195 - 1 - 730 - text - pg_catalog - 869 - inet - pg_catalog - 1043 - varchar - pg_catalog - - - assignment - function - 10190 - 1 - 730 - text - pg_catalog - 869 - inet - pg_catalog - 25 - text - pg_catalog - - - assignment - function - 10182 - 1 - 1715 - cidr - pg_catalog - 869 - inet - pg_catalog - 650 - cidr - pg_catalog - - - assignment - function - 10200 - 1 - 730 - text - pg_catalog - 869 - inet - pg_catalog - 1042 - bpchar - pg_catalog - - - implicit - function - 10204 - 1 - 668 - bpchar - pg_catalog - 1042 - bpchar - pg_catalog - 1042 - bpchar - pg_catalog - - - implicit - function - 10128 - 1 - 401 - text - pg_catalog - 1042 - bpchar - pg_catalog - 1043 - varchar - pg_catalog - - - explicit - function - 10203 - 1 - 2896 - xml - pg_catalog - 1042 - bpchar - pg_catalog - 142 - xml - pg_catalog - - - implicit - function - 10127 - 1 - 401 - text - pg_catalog - 1042 - bpchar - pg_catalog - 25 - text - pg_catalog - - - assignment - function - 10138 - 1 - 944 - char - pg_catalog - 1042 - bpchar - pg_catalog - 18 - char - pg_catalog - - - implicit - function - 10141 - 1 - 409 - name - pg_catalog - 1042 - bpchar - pg_catalog - 19 - name - pg_catalog - - - implicit - binary - 10129 - 1 - 1043 - varchar - pg_catalog - 25 - text - pg_catalog - - - implicit - function - 10142 - 1 - 1400 - name - pg_catalog - 1043 - varchar - pg_catalog - 19 - name - pg_catalog - - - implicit - binary - 10130 - 1 - 1043 - varchar - pg_catalog - 1042 - bpchar - pg_catalog - - - explicit - function - 10198 - 1 - 2896 - xml - pg_catalog - 1043 - varchar - pg_catalog - 142 - xml - pg_catalog - - - implicit - function - 10110 - 1 - 1079 - regclass - pg_catalog - 1043 - varchar - pg_catalog - 2205 - regclass - pg_catalog - - - implicit - function - 10205 - 1 - 669 - varchar - pg_catalog - 1043 - varchar - pg_catalog - 1043 - varchar - pg_catalog - - - assignment - function - 10139 - 1 - 944 - char - pg_catalog - 1043 - varchar - pg_catalog - 18 - char - pg_catalog - - - implicit - function - 10152 - 1 - 2024 - timestamp - pg_catalog - 1082 - date - pg_catalog - 1114 - timestamp - pg_catalog - - - implicit - function - 10153 - 1 - 1174 - timestamptz - pg_catalog - 1082 - date - pg_catalog - 1184 - timestamptz - pg_catalog - - - implicit - function - 10206 - 1 - 1968 - time - pg_catalog - 1083 - time - pg_catalog - 1083 - time - pg_catalog - - - implicit - function - 10155 - 1 - 2047 - timetz - pg_catalog - 1083 - time - pg_catalog - 1266 - timetz - pg_catalog - - - implicit - function - 10154 - 1 - 1370 - interval - pg_catalog - 1083 - time - pg_catalog - 1186 - interval - pg_catalog - - - implicit - function - 10158 - 1 - 2028 - timestamptz - pg_catalog - 1114 - timestamp - pg_catalog - 1184 - timestamptz - pg_catalog - - - assignment - function - 10156 - 1 - 2029 - date - pg_catalog - 1114 - timestamp - pg_catalog - 1082 - date - pg_catalog - - - assignment - function - 10157 - 1 - 1316 - time - pg_catalog - 1114 - timestamp - pg_catalog - 1083 - time - pg_catalog - - - implicit - function - 10207 - 1 - 1961 - timestamp - pg_catalog - 1114 - timestamp - pg_catalog - 1114 - timestamp - pg_catalog - - - assignment - function - 10159 - 1 - 1178 - date - pg_catalog - 1184 - timestamptz - pg_catalog - 1082 - date - pg_catalog - - - assignment - function - 10162 - 1 - 1388 - timetz - pg_catalog - 1184 - timestamptz - pg_catalog - 1266 - timetz - pg_catalog - - - assignment - function - 10160 - 1 - 2019 - time - pg_catalog - 1184 - timestamptz - pg_catalog - 1083 - time - pg_catalog - - - assignment - function - 10161 - 1 - 2027 - timestamp - pg_catalog - 1184 - timestamptz - pg_catalog - 1114 - timestamp - pg_catalog - - - implicit - function - 10208 - 1 - 1967 - timestamptz - pg_catalog - 1184 - timestamptz - pg_catalog - 1184 - timestamptz - pg_catalog - - - implicit - function - 10209 - 1 - 1200 - interval - pg_catalog - 1186 - interval - pg_catalog - 1186 - interval - pg_catalog - - - assignment - function - 10163 - 1 - 1419 - time - pg_catalog - 1186 - interval - pg_catalog - 1083 - time - pg_catalog - - - assignment - function - 10164 - 1 - 2046 - time - pg_catalog - 1266 - timetz - pg_catalog - 1083 - time - pg_catalog - - - implicit - function - 10210 - 1 - 1969 - timetz - pg_catalog - 1266 - timetz - pg_catalog - 1266 - timetz - pg_catalog - - - explicit - function - 10187 - 1 - 2076 - int8 - pg_catalog - 1560 - bit - pg_catalog - 20 - int8 - pg_catalog - - - implicit - function - 10211 - 1 - 1685 - bit - pg_catalog - 1560 - bit - pg_catalog - 1560 - bit - pg_catalog - - - implicit - binary - 10183 - 1 - 1560 - bit - pg_catalog - 1562 - varbit - pg_catalog - - - explicit - function - 10188 - 1 - 1684 - int4 - pg_catalog - 1560 - bit - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10184 - 1 - 1562 - varbit - pg_catalog - 1560 - bit - pg_catalog - - - implicit - function - 10212 - 1 - 1687 - varbit - pg_catalog - 1562 - varbit - pg_catalog - 1562 - varbit - pg_catalog - - - assignment - function - 10025 - 1 - 1779 - int8 - pg_catalog - 1700 - numeric - pg_catalog - 20 - int8 - pg_catalog - - - assignment - function - 10026 - 1 - 1783 - int2 - pg_catalog - 1700 - numeric - pg_catalog - 21 - int2 - pg_catalog - - - assignment - function - 10027 - 1 - 1744 - int4 - pg_catalog - 1700 - numeric - pg_catalog - 23 - int4 - pg_catalog - - - implicit - function - 10213 - 1 - 1703 - numeric - pg_catalog - 1700 - numeric - pg_catalog - 1700 - numeric - pg_catalog - - - implicit - function - 10029 - 1 - 1746 - float8 - pg_catalog - 1700 - numeric - pg_catalog - 701 - float8 - pg_catalog - - - assignment - function - 10031 - 1 - 3824 - money - pg_catalog - 1700 - numeric - pg_catalog - 790 - money - pg_catalog - - - implicit - function - 10028 - 1 - 1745 - float4 - pg_catalog - 1700 - numeric - pg_catalog - 700 - float4 - pg_catalog - - - assignment - binary - 10057 - 1 - 2202 - regprocedure - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10052 - 1 - 2202 - regprocedure - pg_catalog - 26 - oid - pg_catalog - - - assignment - function - 10056 - 1 - 1288 - int8 - pg_catalog - 2202 - regprocedure - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10050 - 1 - 2202 - regprocedure - pg_catalog - 24 - regproc - pg_catalog - - - implicit - binary - 10065 - 1 - 2203 - regoper - pg_catalog - 2204 - regoperator - pg_catalog - - - assignment - function - 10063 - 1 - 1288 - int8 - pg_catalog - 2203 - regoper - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10059 - 1 - 2203 - regoper - pg_catalog - 26 - oid - pg_catalog - - - assignment - binary - 10064 - 1 - 2203 - regoper - pg_catalog - 23 - int4 - pg_catalog - - - assignment - binary - 10073 - 1 - 2204 - regoperator - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10068 - 1 - 2204 - regoperator - pg_catalog - 26 - oid - pg_catalog - - - assignment - function - 10072 - 1 - 1288 - int8 - pg_catalog - 2204 - regoperator - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10066 - 1 - 2204 - regoperator - pg_catalog - 2203 - regoper - pg_catalog - - - assignment - function - 10079 - 1 - 1288 - int8 - pg_catalog - 2205 - regclass - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10075 - 1 - 2205 - regclass - pg_catalog - 26 - oid - pg_catalog - - - assignment - binary - 10080 - 1 - 2205 - regclass - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10093 - 1 - 1288 - int8 - pg_catalog - 2206 - regtype - pg_catalog - 20 - int8 - pg_catalog - - - assignment - binary - 10094 - 1 - 2206 - regtype - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10089 - 1 - 2206 - regtype - pg_catalog - 26 - oid - pg_catalog - - - implicit - binary - 10146 - 1 - 3361 - pg_ndistinct - pg_catalog - 17 - bytea - pg_catalog - - - implicit - io - 10147 - 1 - 3361 - pg_ndistinct - pg_catalog - 25 - text - pg_catalog - - - implicit - binary - 10148 - 1 - 3402 - pg_dependencies - pg_catalog - 17 - bytea - pg_catalog - - - implicit - io - 10149 - 1 - 3402 - pg_dependencies - pg_catalog - 25 - text - pg_catalog - - - implicit - binary - 10096 - 1 - 3734 - regconfig - pg_catalog - 26 - oid - pg_catalog - - - assignment - function - 10100 - 1 - 1288 - int8 - pg_catalog - 3734 - regconfig - pg_catalog - 20 - int8 - pg_catalog - - - assignment - binary - 10101 - 1 - 3734 - regconfig - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10103 - 1 - 3769 - regdictionary - pg_catalog - 26 - oid - pg_catalog - - - assignment - binary - 10108 - 1 - 3769 - regdictionary - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10107 - 1 - 1288 - int8 - pg_catalog - 3769 - regdictionary - pg_catalog - 20 - int8 - pg_catalog - - - assignment - io - 10215 - 1 - 3802 - jsonb - pg_catalog - 114 - json - pg_catalog - - - explicit - function - 10218 - 1 - 3450 - int2 - pg_catalog - 3802 - jsonb - pg_catalog - 21 - int2 - pg_catalog - - - explicit - function - 10220 - 1 - 3452 - int8 - pg_catalog - 3802 - jsonb - pg_catalog - 20 - int8 - pg_catalog - - - explicit - function - 10219 - 1 - 3451 - int4 - pg_catalog - 3802 - jsonb - pg_catalog - 23 - int4 - pg_catalog - - - explicit - function - 10216 - 1 - 3556 - bool - pg_catalog - 3802 - jsonb - pg_catalog - 16 - bool - pg_catalog - - - explicit - function - 10221 - 1 - 3453 - float4 - pg_catalog - 3802 - jsonb - pg_catalog - 700 - float4 - pg_catalog - - - explicit - function - 10217 - 1 - 3449 - numeric - pg_catalog - 3802 - jsonb - pg_catalog - 1700 - numeric - pg_catalog - - - explicit - function - 10222 - 1 - 2580 - float8 - pg_catalog - 3802 - jsonb - pg_catalog - 701 - float8 - pg_catalog - - - explicit - function - 10223 - 1 - 4281 - int4multirange - pg_catalog - 3904 - int4range - pg_catalog - 4451 - int4multirange - pg_catalog - - - explicit - function - 10225 - 1 - 4284 - nummultirange - pg_catalog - 3906 - numrange - pg_catalog - 4532 - nummultirange - pg_catalog - - - explicit - function - 10227 - 1 - 4287 - tsmultirange - pg_catalog - 3908 - tsrange - pg_catalog - 4533 - tsmultirange - pg_catalog - - - explicit - function - 10228 - 1 - 4290 - tstzmultirange - pg_catalog - 3910 - tstzrange - pg_catalog - 4534 - tstzmultirange - pg_catalog - - - explicit - function - 10226 - 1 - 4293 - datemultirange - pg_catalog - 3912 - daterange - pg_catalog - 4535 - datemultirange - pg_catalog - - - explicit - function - 10224 - 1 - 4296 - int8multirange - pg_catalog - 3926 - int8range - pg_catalog - 4536 - int8multirange - pg_catalog - - - assignment - binary - 10124 - 1 - 4089 - regnamespace - pg_catalog - 23 - int4 - pg_catalog - - - assignment - function - 10123 - 1 - 1288 - int8 - pg_catalog - 4089 - regnamespace - pg_catalog - 20 - int8 - pg_catalog - - - implicit - binary - 10119 - 1 - 4089 - regnamespace - pg_catalog - 26 - oid - pg_catalog - - - assignment - binary - 10117 - 1 - 4096 - regrole - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10112 - 1 - 4096 - regrole - pg_catalog - 26 - oid - pg_catalog - - - assignment - function - 10116 - 1 - 1288 - int8 - pg_catalog - 4096 - regrole - pg_catalog - 20 - int8 - pg_catalog - - - assignment - function - 10086 - 1 - 1288 - int8 - pg_catalog - 4191 - regcollation - pg_catalog - 20 - int8 - pg_catalog - - - assignment - binary - 10087 - 1 - 4191 - regcollation - pg_catalog - 23 - int4 - pg_catalog - - - implicit - binary - 10082 - 1 - 4191 - regcollation - pg_catalog - 26 - oid - pg_catalog - - - implicit - binary - 10150 - 1 - 5017 - pg_mcv_list - pg_catalog - 17 - bytea - pg_catalog - - - implicit - io - 10151 - 1 - 5017 - pg_mcv_list - pg_catalog - 25 - text - pg_catalog - - - explicit - function - 10036 - 1 - 5071 - xid - pg_catalog - 5069 - xid8 - pg_catalog - 28 - xid - pg_catalog - - - PL/pgSQL procedural language - 13826 - 683 - 1.0 - 11 - pg_catalog - 13827 -13828 -13829 -13830 - - - dynamically-loaded C functions - 13 - 1 - fmgr_c_validator - pg_catalog - - - built-in functions - 12 - 1 - fmgr_internal_validator - pg_catalog - - - PL/pgSQL procedural language - plpgsql_call_handler - pg_catalog - plpgsql_inline_handler - pg_catalog - 13830 - 683 - 1 - plpgsql_validator - pg_catalog - - - SQL-language functions - 14 - 1 - 1 - fmgr_sql_validator - pg_catalog - - - 13474 - 529 - littlesheep - - - system catalog schema - 11 - 523 - littlesheep - - - standard public schema - 1 - 11254 - 2024-11-02.11:36:21 - 2200 - 523 - pg_database_owner - - - 48923 - 1 - 1 - 11213 - bigint|0s - postgres - - - 48938 - 1 - 1 - 11215 - bigint|0s - postgres - - - 48964 - 1 - 1 - 11218 - bigint|0s - postgres - - - 48979 - 1 - 1 - 11220 - bigint|0s - postgres - - - 48924 - 11213 - 2 - postgres -
- - 48939 - 11215 - 2 - postgres -
- - 48965 - 11218 - 2 - postgres -
- - 48980 - 11220 - 2 - postgres -
- - 48898 - 1 - 1 - 11209 - bigint|0s - postgres - - - 48664 - 1 - 1 - 11174 - bigint|0s - postgres - - - 48616 - 1 - 1 - 11168 - bigint|0s - postgres - - - 48606 - 1 - 1 - 11166 - bigint|0s - postgres - - - 48649 - 1 - 1 - 11172 - bigint|0s - postgres - - - 48680 - 1 - 1 - 11177 - bigint|0s - postgres - - - 48585 - 1 - 1 - 11163 - bigint|0s - postgres - - - 48779 - 1 - 1 - 11192 - bigint|0s - postgres - - - 48835 - 1 - 1 - 11201 - bigint|0s - postgres - - - 48825 - 1 - 1 - 11199 - bigint|0s - postgres - - - 48634 - 1 - 1 - 11170 - bigint|0s - postgres - - - 48743 - 1 - 1 - 11185 - bigint|0s - postgres - - - 48710 - 1 - 1 - 11181 - bigint|0s - postgres - - - 48758 - 1 - 1 - 11187 - bigint|0s - postgres - - - 48809 - 1 - 1 - 11196 - bigint|0s - postgres - - - 48794 - 1 - 1 - 11194 - bigint|0s - postgres - - - 48883 - 1 - 1 - 11207 - bigint|0s - postgres - - - 48868 - 1 - 1 - 11205 - bigint|0s - postgres - - - 48725 - 1 - 1 - 11183 - bigint|0s - postgres - - - 48574 - 1 - 1 - 11160 - bigint|0s - postgres - - - 48855 - 1 - 1 - 11203 - bigint|0s - postgres - - - 48700 - 1 - 1 - 11179 - bigint|0s - postgres - - - 48768 - 1 - 1 - 11189 - bigint|0s - postgres - - - 48899 - 11209 - 2 - postgres -
- - 48665 - 11174 - 2 - postgres -
- - 48617 - 11168 - 2 - postgres -
- - 48607 - 11168 - 2 - postgres -
- - 48650 - 11172 - 2 - postgres -
- - 48681 - 11177 - 2 - postgres -
- - 48586 - 11163 - 2 - postgres -
- - 48780 - 11192 - 2 - postgres -
- - 48836 - 11201 - 2 - postgres -
- - 48826 - 11199 - 2 - postgres -
- - 48635 - 11170 - 2 - postgres -
- - 48744 - 11185 - 2 - postgres -
- - 48711 - 11181 - 2 - postgres -
- - 48759 - 11187 - 2 - postgres -
- - 48810 - 11196 - 2 - postgres -
- - 48795 - 11194 - 2 - postgres -
- - 48884 - 11207 - 2 - postgres -
- - 48869 - 11205 - 2 - postgres -
- - 48726 - 11183 - 2 - postgres -
- - 48575 - 11163 - 2 - postgres -
- - 48856 - 11203 - 2 - postgres -
- - 48701 - 11179 - 2 - postgres -
- - 48769 - 11189 - 2 - postgres -
- - nextval('attachment_pools_id_seq'::regclass) - 1 - 1 - 11213 - bigint|0s - 48923 - 20 - - - 2 - 11213 - timestamp with time zone|0s - 1184 - - - 3 - 11213 - timestamp with time zone|0s - 1184 - - - 4 - 11213 - timestamp with time zone|0s - 1184 - - - 5 - 11213 - text|0s - 25 - - - 6 - 11213 - text|0s - 25 - - - 7 - 11213 - text|0s - 25 - - - 8 - 11213 - jsonb|0s - 3802 - - - 9 - 11213 - bigint|0s - 20 - - - id - 1 - 48930 - 1 - 11213 - 1 - 403 - - - deleted_at - 48937 - 11214 - 403 - - - 1 - 48931 - 1 - 11213 - 48930 - - - nextval('attachments_id_seq'::regclass) - 1 - 1 - 11215 - bigint|0s - 48938 - 20 - - - 2 - 11215 - timestamp with time zone|0s - 1184 - - - 3 - 11215 - timestamp with time zone|0s - 1184 - - - 4 - 11215 - timestamp with time zone|0s - 1184 - - - 5 - 11215 - text|0s - 25 - - - 6 - 11215 - text|0s - 25 - - - 7 - 11215 - bigint|0s - 20 - - - 8 - 11215 - text|0s - 25 - - - 9 - 11215 - text|0s - 25 - - - 10 - 11215 - text|0s - 25 - - - 11 - 11215 - text|0s - 25 - - - 12 - 11215 - smallint|0s - 21 - - - 13 - 11215 - bigint|0s - 20 - - - 14 - 11215 - jsonb|0s - 3802 - - - 15 - 11215 - timestamp with time zone|0s - 1184 - - - 16 - 11215 - jsonb|0s - 3802 - - - 17 - 11215 - boolean|0s - 16 - - - 18 - 11215 - boolean|0s - 16 - - - 19 - 11215 - boolean|0s - 16 - - - 20 - 11215 - boolean|0s - 16 - - - 21 - 11215 - bigint|0s - 20 - - - 22 - 11215 - bigint|0s - 20 - - - 23 - 11215 - bigint|0s - 20 - - - ref_id - 48952 - 11215 - 1 - 48939 - - - pool_id - 48957 - 11215 - 1 - 48924 - - - id - 1 - 48945 - 1 - 11215 - 1 - 403 - - - rid - 48963 - 11217 - 1 - 403 - default - 100 - pg_catalog - - - deleted_at - 48962 - 11216 - 403 - - - 1 - 48946 - 1 - 11215 - 48945 - - - nextval('sticker_packs_id_seq'::regclass) - 1 - 1 - 11218 - bigint|0s - 48964 - 20 - - - 2 - 11218 - timestamp with time zone|0s - 1184 - - - 3 - 11218 - timestamp with time zone|0s - 1184 - - - 4 - 11218 - timestamp with time zone|0s - 1184 - - - 5 - 11218 - text|0s - 25 - - - 6 - 11218 - text|0s - 25 - - - 7 - 11218 - text|0s - 25 - - - 8 - 11218 - bigint|0s - 20 - - - id - 1 - 48971 - 1 - 11218 - 1 - 403 - - - deleted_at - 48978 - 11219 - 403 - - - 1 - 48972 - 1 - 11218 - 48971 - - - nextval('stickers_id_seq'::regclass) - 1 - 1 - 11220 - bigint|0s - 48979 - 20 - - - 2 - 11220 - timestamp with time zone|0s - 1184 - - - 3 - 11220 - timestamp with time zone|0s - 1184 - - - 4 - 11220 - timestamp with time zone|0s - 1184 - - - 5 - 11220 - text|0s - 25 - - - 6 - 11220 - text|0s - 25 - - - 7 - 11220 - bigint|0s - 20 - - - 8 - 11220 - bigint|0s - 20 - - - 9 - 11220 - bigint|0s - 20 - - - attachment_id - 48988 - 11220 - 1 - 48939 - - - pack_id - 48998 - cascade - 11220 - 1 - 48965 - - - id - 1 - 48986 - 1 - 11220 - 1 - 403 - - - deleted_at - 49003 - 11221 - 403 - - - 1 - 48987 - 1 - 11220 - 48986 - - - nextval('abuse_reports_id_seq'::regclass) - 1 - 1 - 11209 - bigint|0s - 48898 - 20 - - - 2 - 11209 - timestamp with time zone|0s - 1184 - - - 3 - 11209 - timestamp with time zone|0s - 1184 - - - 4 - 11209 - timestamp with time zone|0s - 1184 - - - 5 - 11209 - text|0s - 25 - - - 6 - 11209 - text|0s - 25 - - - 7 - 11209 - text|0s - 25 - - - 8 - 11209 - bigint|0s - 20 - - - account_id - 48907 - 11209 - 1 - 48586 - - - id - 1 - 48905 - 1 - 11209 - 1 - 403 - - - deleted_at - 48912 - 11210 - 403 - - - 1 - 48906 - 1 - 11209 - 48905 - - - nextval('account_contacts_id_seq'::regclass) - 1 - 1 - 11174 - bigint|0s - 48664 - 20 - - - 2 - 11174 - timestamp with time zone|0s - 1184 - - - 3 - 11174 - timestamp with time zone|0s - 1184 - - - 4 - 11174 - timestamp with time zone|0s - 1184 - - - 5 - 11174 - smallint|0s - 21 - - - 6 - 11174 - text|0s - 25 - - - 7 - 11174 - boolean|0s - 16 - - - 8 - 11174 - boolean|0s - 16 - - - 9 - 11174 - timestamp with time zone|0s - 1184 - - - 10 - 11174 - bigint|0s - 20 - - - account_id - 48673 - 11174 - 1 - 48586 - - - id - 1 - 48671 - 1 - 11174 - 1 - 403 - - - content - 48678 - 11175 - 1 - 403 - default - 100 - pg_catalog - - - deleted_at - 48679 - 11176 - 403 - - - 1 - 48672 - 1 - 11174 - 48671 - - - nextval('account_group_members_id_seq'::regclass) - 1 - 1 - 11168 - bigint|0s - 48616 - 20 - - - 2 - 11168 - timestamp with time zone|0s - 1184 - - - 3 - 11168 - timestamp with time zone|0s - 1184 - - - 4 - 11168 - timestamp with time zone|0s - 1184 - - - 5 - 11168 - bigint|0s - 20 - - - 6 - 11168 - bigint|0s - 20 - - - account_id - 48623 - 11168 - 1 - 48586 - - - group_id - 48628 - 11168 - 1 - 48607 - - - id - 1 - 48621 - 1 - 11168 - 1 - 403 - - - deleted_at - 48633 - 11169 - 403 - - - 1 - 48622 - 1 - 11168 - 48621 - - - nextval('account_groups_id_seq'::regclass) - 1 - 1 - 11166 - bigint|0s - 48606 - 20 - - - 2 - 11166 - timestamp with time zone|0s - 1184 - - - 3 - 11166 - timestamp with time zone|0s - 1184 - - - 4 - 11166 - timestamp with time zone|0s - 1184 - - - 5 - 11166 - text|0s - 25 - - - 6 - 11166 - jsonb|0s - 3802 - - - id - 1 - 48613 - 1 - 11166 - 1 - 403 - - - deleted_at - 48615 - 11167 - 403 - - - 1 - 48614 - 1 - 11166 - 48613 - - - nextval('account_profiles_id_seq'::regclass) - 1 - 1 - 11172 - bigint|0s - 48649 - 20 - - - 2 - 11172 - timestamp with time zone|0s - 1184 - - - 3 - 11172 - timestamp with time zone|0s - 1184 - - - 4 - 11172 - timestamp with time zone|0s - 1184 - - - 5 - 11172 - text|0s - 25 - - - 6 - 11172 - text|0s - 25 - - - 7 - 11172 - bigint|0s - 20 - - - 8 - 11172 - timestamp with time zone|0s - 1184 - - - 9 - 11172 - timestamp with time zone|0s - 1184 - - - 10 - 11172 - bigint|0s - 20 - - - account_id - 48658 - 11172 - 1 - 48586 - - - id - 1 - 48656 - 1 - 11172 - 1 - 403 - - - deleted_at - 48663 - 11173 - 403 - - - 1 - 48657 - 1 - 11172 - 48656 - - - nextval('account_relationships_id_seq'::regclass) - 1 - 1 - 11177 - bigint|0s - 48680 - 20 - - - 2 - 11177 - timestamp with time zone|0s - 1184 - - - 3 - 11177 - timestamp with time zone|0s - 1184 - - - 4 - 11177 - timestamp with time zone|0s - 1184 - - - 5 - 11177 - bigint|0s - 20 - - - 6 - 11177 - bigint|0s - 20 - - - 7 - 11177 - smallint|0s - 21 - - - 8 - 11177 - jsonb|0s - 3802 - - - account_id - 48694 - 11177 - 1 - 48586 - - - related_id - 48689 - 11177 - 1 - 48586 - - - id - 1 - 48687 - 1 - 11177 - 1 - 403 - - - deleted_at - 48699 - 11178 - 403 - - - 1 - 48688 - 1 - 11177 - 48687 - - - nextval('accounts_id_seq'::regclass) - 1 - 1 - 11163 - bigint|0s - 48585 - 20 - - - 2 - 11163 - timestamp with time zone|0s - 1184 - - - 3 - 11163 - timestamp with time zone|0s - 1184 - - - 4 - 11163 - timestamp with time zone|0s - 1184 - - - 5 - 11163 - text|0s - 25 - - - 6 - 11163 - text|0s - 25 - - - 7 - 11163 - text|0s - 25 - - - 8 - 11163 - text|0s - 25 - - - 9 - 11163 - text|0s - 25 - - - 10 - 11163 - timestamp with time zone|0s - 1184 - - - 11 - 11163 - timestamp with time zone|0s - 1184 - - - 12 - 11163 - jsonb|0s - 3802 - - - 13 - 11163 - bigint|0s - 20 - - - 14 - 11163 - bigint|0s - 20 - - - automated_id - 48594 - 11163 - 1 - 48586 - - - affiliated_id - 48599 - 11163 - 1 - 48575 - - - id - 1 - 48592 - 1 - 11163 - 1 - 403 - - - name - 48604 - 11164 - 1 - 403 - default - 100 - pg_catalog - - - deleted_at - 48605 - 11165 - 403 - - - 1 - 48593 - 1 - 11163 - 48592 - - - nextval('action_events_id_seq'::regclass) - 1 - 1 - 11192 - bigint|0s - 48779 - 20 - - - 2 - 11192 - timestamp with time zone|0s - 1184 - - - 3 - 11192 - timestamp with time zone|0s - 1184 - - - 4 - 11192 - timestamp with time zone|0s - 1184 - - - 5 - 11192 - text|0s - 25 - - - 6 - 11192 - text|0s - 25 - - - 7 - 11192 - text|0s - 25 - - - 8 - 11192 - text|0s - 25 - - - 9 - 11192 - text|0s - 25 - - - 10 - 11192 - bigint|0s - 20 - - - account_id - 48788 - 11192 - 1 - 48586 - - - id - 1 - 48786 - 1 - 11192 - 1 - 403 - - - deleted_at - 48793 - 11193 - 403 - - - 1 - 48787 - 1 - 11192 - 48786 - - - nextval('api_keys_id_seq'::regclass) - 1 - 1 - 11201 - bigint|0s - 48835 - 20 - - - 2 - 11201 - timestamp with time zone|0s - 1184 - - - 3 - 11201 - timestamp with time zone|0s - 1184 - - - 4 - 11201 - timestamp with time zone|0s - 1184 - - - 5 - 11201 - text|0s - 25 - - - 6 - 11201 - text|0s - 25 - - - 7 - 11201 - bigint|0s - 20 - - - 8 - 11201 - bigint|0s - 20 - - - 9 - 11201 - bigint|0s - 20 - - - ticket_id - 48844 - 11201 - 1 - 48744 - - - account_id - 48849 - 11201 - 1 - 48586 - - - id - 1 - 48842 - 1 - 11201 - 1 - 403 - - - deleted_at - 48854 - 11202 - 403 - - - 1 - 48843 - 1 - 11201 - 48842 - - - nextval('audit_records_id_seq'::regclass) - 1 - 1 - 11199 - bigint|0s - 48825 - 20 - - - 2 - 11199 - timestamp with time zone|0s - 1184 - - - 3 - 11199 - timestamp with time zone|0s - 1184 - - - 4 - 11199 - timestamp with time zone|0s - 1184 - - - 5 - 11199 - text|0s - 25 - - - 6 - 11199 - jsonb|0s - 3802 - - - 7 - 11199 - text|0s - 25 - - - 8 - 11199 - text|0s - 25 - - - 9 - 11199 - bigint|0s - 20 - - - id - 1 - 48832 - 1 - 11199 - 1 - 403 - - - deleted_at - 48834 - 11200 - 403 - - - 1 - 48833 - 1 - 11199 - 48832 - - - nextval('auth_factors_id_seq'::regclass) - 1 - 1 - 11170 - bigint|0s - 48634 - 20 - - - 2 - 11170 - timestamp with time zone|0s - 1184 - - - 3 - 11170 - timestamp with time zone|0s - 1184 - - - 4 - 11170 - timestamp with time zone|0s - 1184 - - - 5 - 11170 - smallint|0s - 21 - - - 6 - 11170 - text|0s - 25 - - - 7 - 11170 - jsonb|0s - 3802 - - - 8 - 11170 - bigint|0s - 20 - - - account_id - 48643 - 11170 - 1 - 48586 - - - id - 1 - 48641 - 1 - 11170 - 1 - 403 - - - deleted_at - 48648 - 11171 - 403 - - - 1 - 48642 - 1 - 11170 - 48641 - - - nextval('auth_tickets_id_seq'::regclass) - 1 - 1 - 11185 - bigint|0s - 48743 - 20 - - - 2 - 11185 - timestamp with time zone|0s - 1184 - - - 3 - 11185 - timestamp with time zone|0s - 1184 - - - 4 - 11185 - timestamp with time zone|0s - 1184 - - - 5 - 11185 - text|0s - 25 - - - 6 - 11185 - text|0s - 25 - - - 7 - 11185 - text|0s - 25 - - - 8 - 11185 - bigint|0s - 20 - - - 9 - 11185 - jsonb|0s - 3802 - - - 10 - 11185 - jsonb|0s - 3802 - - - 11 - 11185 - jsonb|0s - 3802 - - - 12 - 11185 - text|0s - 25 - - - 13 - 11185 - text|0s - 25 - - - 14 - 11185 - text|0s - 25 - - - 15 - 11185 - timestamp with time zone|0s - 1184 - - - 16 - 11185 - timestamp with time zone|0s - 1184 - - - 17 - 11185 - timestamp with time zone|0s - 1184 - - - 18 - 11185 - text|0s - 25 - - - 19 - 11185 - bigint|0s - 20 - - - 20 - 11185 - bigint|0s - 20 - - - account_id - 48752 - 11185 - 1 - 48586 - - - id - 1 - 48750 - 1 - 11185 - 1 - 403 - - - deleted_at - 48757 - 11186 - 403 - - - 1 - 48751 - 1 - 11185 - 48750 - - - nextval('badges_id_seq'::regclass) - 1 - 1 - 11181 - bigint|0s - 48710 - 20 - - - 2 - 11181 - timestamp with time zone|0s - 1184 - - - 3 - 11181 - timestamp with time zone|0s - 1184 - - - 4 - 11181 - timestamp with time zone|0s - 1184 - - - 5 - 11181 - text|0s - 25 - - - 6 - 11181 - jsonb|0s - 3802 - - - 7 - 11181 - bigint|0s - 20 - - - account_id - 48719 - 11181 - 1 - 48586 - - - id - 1 - 48717 - 1 - 11181 - 1 - 403 - - - deleted_at - 48724 - 11182 - 403 - - - 1 - 48718 - 1 - 11181 - 48717 - - - nextval('magic_tokens_id_seq'::regclass) - 1 - 1 - 11187 - bigint|0s - 48758 - 20 - - - 2 - 11187 - timestamp with time zone|0s - 1184 - - - 3 - 11187 - timestamp with time zone|0s - 1184 - - - 4 - 11187 - timestamp with time zone|0s - 1184 - - - 5 - 11187 - text|0s - 25 - - - 6 - 11187 - smallint|0s - 21 - - - 7 - 11187 - bigint|0s - 20 - - - 8 - 11187 - timestamp with time zone|0s - 1184 - - - id - 1 - 48765 - 1 - 11187 - 1 - 403 - - - deleted_at - 48767 - 11188 - 403 - - - 1 - 48766 - 1 - 11187 - 48765 - - - nextval('notification_subscribers_id_seq'::regclass) - 1 - 1 - 11196 - bigint|0s - 48809 - 20 - - - 2 - 11196 - timestamp with time zone|0s - 1184 - - - 3 - 11196 - timestamp with time zone|0s - 1184 - - - 4 - 11196 - timestamp with time zone|0s - 1184 - - - 5 - 11196 - text|0s - 25 - - - 6 - 11196 - text|0s - 25 - - - 7 - 11196 - text|0s - 25 - - - 8 - 11196 - text|0s - 25 - - - 9 - 11196 - bigint|0s - 20 - - - account_id - 48818 - 11196 - 1 - 48586 - - - id - 1 - 48816 - 1 - 11196 - 1 - 403 - - - device_id - 48823 - 11197 - 1 - 403 - default - 100 - pg_catalog - - - deleted_at - 48824 - 11198 - 403 - - - 1 - 48817 - 1 - 11196 - 48816 - - - nextval('notifications_id_seq'::regclass) - 1 - 1 - 11194 - bigint|0s - 48794 - 20 - - - 2 - 11194 - timestamp with time zone|0s - 1184 - - - 3 - 11194 - timestamp with time zone|0s - 1184 - - - 4 - 11194 - timestamp with time zone|0s - 1184 - - - 5 - 11194 - text|0s - 25 - - - 6 - 11194 - text|0s - 25 - - - 7 - 11194 - text|0s - 25 - - - 8 - 11194 - text|0s - 25 - - - 9 - 11194 - jsonb|0s - 3802 - - - 10 - 11194 - bigint|0s - 20 - - - 11 - 11194 - bigint|0s - 20 - - - 12 - 11194 - bigint|0s - 20 - - - 13 - 11194 - timestamp with time zone|0s - 1184 - - - account_id - 48803 - 11194 - 1 - 48586 - - - id - 1 - 48801 - 1 - 11194 - 1 - 403 - - - deleted_at - 48808 - 11195 - 403 - - - 1 - 48802 - 1 - 11194 - 48801 - - - nextval('preference_auths_id_seq'::regclass) - 1 - 1 - 11207 - bigint|0s - 48883 - 20 - - - 2 - 11207 - timestamp with time zone|0s - 1184 - - - 3 - 11207 - timestamp with time zone|0s - 1184 - - - 4 - 11207 - timestamp with time zone|0s - 1184 - - - 5 - 11207 - jsonb|0s - 3802 - - - 6 - 11207 - bigint|0s - 20 - - - account_id - 48892 - 11207 - 1 - 48586 - - - id - 1 - 48890 - 1 - 11207 - 1 - 403 - - - deleted_at - 48897 - 11208 - 403 - - - 1 - 48891 - 1 - 11207 - 48890 - - - nextval('preference_notifications_id_seq'::regclass) - 1 - 1 - 11205 - bigint|0s - 48868 - 20 - - - 2 - 11205 - timestamp with time zone|0s - 1184 - - - 3 - 11205 - timestamp with time zone|0s - 1184 - - - 4 - 11205 - timestamp with time zone|0s - 1184 - - - 5 - 11205 - jsonb|0s - 3802 - - - 6 - 11205 - bigint|0s - 20 - - - account_id - 48877 - 11205 - 1 - 48586 - - - id - 1 - 48875 - 1 - 11205 - 1 - 403 - - - deleted_at - 48882 - 11206 - 403 - - - 1 - 48876 - 1 - 11205 - 48875 - - - nextval('realm_members_id_seq'::regclass) - 1 - 1 - 11183 - bigint|0s - 48725 - 20 - - - 2 - 11183 - timestamp with time zone|0s - 1184 - - - 3 - 11183 - timestamp with time zone|0s - 1184 - - - 4 - 11183 - timestamp with time zone|0s - 1184 - - - 5 - 11183 - bigint|0s - 20 - - - 6 - 11183 - bigint|0s - 20 - - - 7 - 11183 - bigint|0s - 20 - - - realm_id - 48732 - 11183 - 1 - 48575 - - - account_id - 48737 - 11183 - 1 - 48586 - - - id - 1 - 48730 - 1 - 11183 - 1 - 403 - - - deleted_at - 48742 - 11184 - 403 - - - 1 - 48731 - 1 - 11183 - 48730 - - - nextval('realms_id_seq'::regclass) - 1 - 1 - 11160 - bigint|0s - 48574 - 20 - - - 2 - 11160 - timestamp with time zone|0s - 1184 - - - 3 - 11160 - timestamp with time zone|0s - 1184 - - - 4 - 11160 - timestamp with time zone|0s - 1184 - - - 5 - 11160 - text|0s - 25 - - - 6 - 11160 - text|0s - 25 - - - 7 - 11160 - text|0s - 25 - - - 8 - 11160 - text|0s - 25 - - - 9 - 11160 - text|0s - 25 - - - 10 - 11160 - jsonb|0s - 3802 - - - 11 - 11160 - boolean|0s - 16 - - - 12 - 11160 - boolean|0s - 16 - - - 13 - 11160 - bigint|0s - 20 - - - id - 1 - 48581 - 1 - 11160 - 1 - 403 - - - alias - 48583 - 11161 - 1 - 403 - default - 100 - pg_catalog - - - deleted_at - 48584 - 11162 - 403 - - - 1 - 48582 - 1 - 11160 - 48581 - - - nextval('sign_records_id_seq'::regclass) - 1 - 1 - 11203 - bigint|0s - 48855 - 20 - - - 2 - 11203 - timestamp with time zone|0s - 1184 - - - 3 - 11203 - timestamp with time zone|0s - 1184 - - - 4 - 11203 - timestamp with time zone|0s - 1184 - - - 5 - 11203 - bigint|0s - 20 - - - 6 - 11203 - bigint|0s - 20 - - - 7 - 11203 - bigint|0s - 20 - - - account_id - 48862 - 11203 - 1 - 48586 - - - id - 1 - 48860 - 1 - 11203 - 1 - 403 - - - deleted_at - 48867 - 11204 - 403 - - - 1 - 48861 - 1 - 11203 - 48860 - - - nextval('statuses_id_seq'::regclass) - 1 - 1 - 11179 - bigint|0s - 48700 - 20 - - - 2 - 11179 - timestamp with time zone|0s - 1184 - - - 3 - 11179 - timestamp with time zone|0s - 1184 - - - 4 - 11179 - timestamp with time zone|0s - 1184 - - - 5 - 11179 - text|0s - 25 - - - 6 - 11179 - text|0s - 25 - - - 7 - 11179 - smallint|0s - 21 - - - 8 - 11179 - boolean|0s - 16 - - - 9 - 11179 - boolean|0s - 16 - - - 10 - 11179 - timestamp with time zone|0s - 1184 - - - 11 - 11179 - bigint|0s - 20 - - - id - 1 - 48707 - 1 - 11179 - 1 - 403 - - - deleted_at - 48709 - 11180 - 403 - - - 1 - 48708 - 1 - 11179 - 48707 - - - nextval('third_clients_id_seq'::regclass) - 1 - 1 - 11189 - bigint|0s - 48768 - 20 - - - 2 - 11189 - timestamp with time zone|0s - 1184 - - - 3 - 11189 - timestamp with time zone|0s - 1184 - - - 4 - 11189 - timestamp with time zone|0s - 1184 - - - 5 - 11189 - text|0s - 25 - - - 6 - 11189 - text|0s - 25 - - - 7 - 11189 - text|0s - 25 - - - 8 - 11189 - text|0s - 25 - - - 9 - 11189 - jsonb|0s - 3802 - - - 10 - 11189 - jsonb|0s - 3802 - - - 11 - 11189 - boolean|0s - 16 - - - 12 - 11189 - bigint|0s - 20 - - - id - 1 - 48775 - 1 - 11189 - 1 - 403 - - - alias - 48777 - 11190 - 1 - 403 - default - 100 - pg_catalog - - - deleted_at - 48778 - 11191 - 403 - - - 1 - 48776 - 1 - 11189 - 48775 - -
-
\ No newline at end of file diff --git a/.idea/dataSources/74bcf3ef-a2b9-435b-b9e5-f32902a33b25/storage_v2/_src_/database/hy_passport.gNOKQQ.meta b/.idea/dataSources/74bcf3ef-a2b9-435b-b9e5-f32902a33b25/storage_v2/_src_/database/hy_passport.gNOKQQ.meta deleted file mode 100644 index 951b9f0..0000000 --- a/.idea/dataSources/74bcf3ef-a2b9-435b-b9e5-f32902a33b25/storage_v2/_src_/database/hy_passport.gNOKQQ.meta +++ /dev/null @@ -1 +0,0 @@ -#n:hy_passport \ No newline at end of file diff --git a/.idea/dataSources/74bcf3ef-a2b9-435b-b9e5-f32902a33b25/storage_v2/_src_/database/hy_passport.gNOKQQ/schema/public.abK9xQ.meta b/.idea/dataSources/74bcf3ef-a2b9-435b-b9e5-f32902a33b25/storage_v2/_src_/database/hy_passport.gNOKQQ/schema/public.abK9xQ.meta deleted file mode 100644 index 547df85..0000000 --- a/.idea/dataSources/74bcf3ef-a2b9-435b-b9e5-f32902a33b25/storage_v2/_src_/database/hy_passport.gNOKQQ/schema/public.abK9xQ.meta +++ /dev/null @@ -1,2 +0,0 @@ -#n:public -! [10209, 0, null, null, -2147483648, -2147483648] diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml deleted file mode 100644 index 03d9549..0000000 --- a/.idea/inspectionProfiles/Project_Default.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/jsLibraryMappings.xml b/.idea/jsLibraryMappings.xml deleted file mode 100644 index 079368f..0000000 --- a/.idea/jsLibraryMappings.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 18e9cd7..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1dd..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml deleted file mode 100644 index a885242..0000000 --- a/.idea/workspace.xml +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - - - - - - - - - - - - {} - { - "isMigrated": true -} - - - { - "customColor": "", - "associatedIndex": 6 -} - - - - { - "keyToString": { - "DefaultGoTemplateProperty": "Go File", - "Go Build.Backend.executor": "Run", - "Go 构建.Backend.executor": "Run", - "RunOnceActivity.ShowReadmeOnStart": "true", - "RunOnceActivity.git.unshallow": "true", - "RunOnceActivity.go.formatter.settings.were.checked": "true", - "RunOnceActivity.go.migrated.go.modules.settings": "true", - "RunOnceActivity.go.modules.automatic.dependencies.download": "true", - "RunOnceActivity.go.modules.go.list.on.any.changes.was.set": "true", - "git-widget-placeholder": "master", - "go.import.settings.migrated": "true", - "go.sdk.automatically.set": "true", - "last_opened_file_path": "/Users/littlesheep/Documents/Projects/Hypernet/Passport", - "node.js.detected.package.eslint": "true", - "node.js.selected.package.eslint": "(autodetect)", - "nodejs_package_manager_path": "npm", - "run.code.analysis.last.selected.profile": "pProject Default", - "settings.editor.selected.configurable": "preferences.intentionPowerPack", - "ts.external.directory.path": "/Users/littlesheep/Documents/Projects/Hydrogen/Passport/web/node_modules/typescript/lib", - "vue.rearranger.settings.migration": "true" - }, - "keyToStringList": { - "DatabaseDriversLRU": [ - "postgresql" - ] - } -} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - true - - \ No newline at end of file diff --git a/go.mod b/go.mod index 3024fe0..38693cd 100644 --- a/go.mod +++ b/go.mod @@ -12,6 +12,7 @@ require ( github.com/fatih/color v1.18.0 github.com/go-playground/validator/v10 v10.22.1 github.com/goccy/go-json v0.10.3 + github.com/gofiber/contrib/fiberzerolog v1.0.2 github.com/gofiber/fiber/v2 v2.52.5 github.com/golang-jwt/jwt/v5 v5.2.1 github.com/google/uuid v1.6.0 diff --git a/go.sum b/go.sum index 9e9caad..ab37ca5 100644 --- a/go.sum +++ b/go.sum @@ -33,19 +33,15 @@ cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9 dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= filippo.io/edwards25519 v1.1.0 h1:FNf4tywRC1HmFuKW5xopWpigGjJKiJSV0Cqo0cJWDaA= filippo.io/edwards25519 v1.1.0/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4= -git.solsynth.dev/hypernet/nexus v0.0.0-20241123050605-25ab1371739b h1:8yB9kMwEMY/nIbmDDxrhH5sTypgmK5PIIiIfP5QXx4s= -git.solsynth.dev/hypernet/nexus v0.0.0-20241123050605-25ab1371739b/go.mod h1:PhLCv2lsNoscPVJbkWnxwQnJ141lc4RIEkVffrHwl4s= -git.solsynth.dev/hypernet/nexus v0.0.0-20250202054714-6de240179f9c h1:z0//UGRwyZq1TIvn5/fGK5GCXr837KLFD3K0AkaKDyY= -git.solsynth.dev/hypernet/nexus v0.0.0-20250202054714-6de240179f9c/go.mod h1:v+rpf1ZDRi8moaThTAkj5DMQU+rw96YTHcN8/7n/p2Y= git.solsynth.dev/hypernet/nexus v0.0.0-20250216103838-15c39609b897 h1:AmLZ/r70e2E06Bq1kdOFirH+Izv5w1vpmeQ+rJrfdTg= git.solsynth.dev/hypernet/nexus v0.0.0-20250216103838-15c39609b897/go.mod h1:v+rpf1ZDRi8moaThTAkj5DMQU+rw96YTHcN8/7n/p2Y= -git.solsynth.dev/hypernet/pusher v0.0.0-20241228030233-50ff8304e465 h1:KFtv9lF0JMUGsq1uHwQvop8PTyqdiLuUQuRrd5WmzPk= -git.solsynth.dev/hypernet/pusher v0.0.0-20241228030233-50ff8304e465/go.mod h1:XHTqFU/vBe4JiuAjl87GUcL8+w/IizSNoqH6n3WkQFc= git.solsynth.dev/hypernet/pusher v0.0.0-20250216145944-5fb769823a88 h1:2HEENe9KUrdaJeNBzx9lsuXQGyzWqCgnLTKQnr8xFr8= git.solsynth.dev/hypernet/pusher v0.0.0-20250216145944-5fb769823a88/go.mod h1:ildzMtLagNsLK0Rkw4Hgk2TrrwqZnjwJIUx0MNZwcDY= git.solsynth.dev/hypernet/wallet v0.0.0-20250129150034-87b94cdb5488 h1:/9Ol+PfDQFAYtHo0kk6sxqiEsZ6epb6yUEsZJxy14Mk= git.solsynth.dev/hypernet/wallet v0.0.0-20250129150034-87b94cdb5488/go.mod h1:jd1MTBI5NPHne22nq7nR7kyl4iYb9kV2A+tpXi7HOYY= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/BurntSushi/toml v1.4.0 h1:kuoIxZQy2WRRk1pttg9asf+WVv6tWQuBNVmK8+nqPr0= +github.com/BurntSushi/toml v1.4.0/go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= @@ -129,6 +125,8 @@ github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/me github.com/goccy/go-json v0.10.3 h1:KZ5WoDbxAIgm2HNbYckL0se1fHD6rz5j4ywS6ebzDqA= github.com/goccy/go-json v0.10.3/go.mod h1:oq7eo15ShAhp70Anwd5lgX2pLfOS3QCiwU/PULtXL6M= github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= +github.com/gofiber/contrib/fiberzerolog v1.0.2 h1:LMa/luarQVeINoRwZLHtLQYepLPDIwUNB5OmdZKk+s8= +github.com/gofiber/contrib/fiberzerolog v1.0.2/go.mod h1:aTPsgArSgxRWcUeJ/K6PiICz3mbQENR1QOR426QwOoQ= github.com/gofiber/fiber/v2 v2.36.0/go.mod h1:tgCr+lierLwLoVHHO/jn3Niannv34WRkQETU8wiL9fQ= github.com/gofiber/fiber/v2 v2.52.5 h1:tWoP1MJQjGEe4GB5TUGOi7P2E0ZMMRx5ZTG4rT+yGMo= github.com/gofiber/fiber/v2 v2.52.5/go.mod h1:KEOE+cXMhXG0zHc9d8+E38hoX+ZN7bhOtgeF2oT6jrQ= diff --git a/pkg/internal/services/accounts.go b/pkg/internal/services/accounts.go index 86cf734..1acc9f8 100644 --- a/pkg/internal/services/accounts.go +++ b/pkg/internal/services/accounts.go @@ -342,11 +342,12 @@ func DeleteAccount(id uint) error { return err } else { InvalidAuthCacheWithUser(id) - _, _ = proto.NewDirectoryServiceClient(gap.Nx.GetNexusGrpcConn()).BroadcastEvent(context.Background(), &proto.EventInfo{ + conn := gap.Nx.GetNexusGrpcConn() + _, _ = proto.NewDirectoryServiceClient(conn).BroadcastEvent(context.Background(), &proto.EventInfo{ Event: "deletion", Data: nex.EncodeMap(map[string]any{ "type": "account", - "id": fmt.Sprintf("%d", id), + "id": id, }), }) } diff --git a/pkg/internal/http/admin/badges_api.go b/pkg/internal/web/admin/badges_api.go similarity index 96% rename from pkg/internal/http/admin/badges_api.go rename to pkg/internal/web/admin/badges_api.go index 0fc51bf..99d96d5 100644 --- a/pkg/internal/http/admin/badges_api.go +++ b/pkg/internal/web/admin/badges_api.go @@ -3,7 +3,7 @@ package admin import ( "fmt" "git.solsynth.dev/hypernet/passport/pkg/authkit/models" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "git.solsynth.dev/hypernet/passport/pkg/internal/database" "git.solsynth.dev/hypernet/passport/pkg/internal/services" diff --git a/pkg/internal/http/admin/factors_api.go b/pkg/internal/web/admin/factors_api.go similarity index 94% rename from pkg/internal/http/admin/factors_api.go rename to pkg/internal/web/admin/factors_api.go index e54005e..9e96639 100644 --- a/pkg/internal/http/admin/factors_api.go +++ b/pkg/internal/web/admin/factors_api.go @@ -3,7 +3,7 @@ package admin import ( "git.solsynth.dev/hypernet/passport/pkg/authkit/models" "git.solsynth.dev/hypernet/passport/pkg/internal/database" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" jsoniter "github.com/json-iterator/go" "github.com/samber/lo" diff --git a/pkg/internal/http/admin/index.go b/pkg/internal/web/admin/index.go similarity index 90% rename from pkg/internal/http/admin/index.go rename to pkg/internal/web/admin/index.go index ba4986a..bcc14b7 100644 --- a/pkg/internal/http/admin/index.go +++ b/pkg/internal/web/admin/index.go @@ -4,7 +4,7 @@ import ( "github.com/gofiber/fiber/v2" ) -func MapAdminAPIs(app *fiber.App, baseURL string) { +func MapControllers(app *fiber.App, baseURL string) { admin := app.Group(baseURL) { admin.Post("/badges", grantBadge) diff --git a/pkg/internal/http/admin/notify_api.go b/pkg/internal/web/admin/notify_api.go similarity index 98% rename from pkg/internal/http/admin/notify_api.go rename to pkg/internal/web/admin/notify_api.go index caba8ab..9d78c5f 100644 --- a/pkg/internal/http/admin/notify_api.go +++ b/pkg/internal/web/admin/notify_api.go @@ -3,8 +3,8 @@ package admin import ( "git.solsynth.dev/hypernet/passport/pkg/authkit/models" "git.solsynth.dev/hypernet/passport/pkg/internal/database" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" "git.solsynth.dev/hypernet/passport/pkg/internal/services" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" "github.com/rs/zerolog/log" ) diff --git a/pkg/internal/http/admin/permissions_api.go b/pkg/internal/web/admin/permissions_api.go similarity index 95% rename from pkg/internal/http/admin/permissions_api.go rename to pkg/internal/web/admin/permissions_api.go index 8abd44a..059f839 100644 --- a/pkg/internal/http/admin/permissions_api.go +++ b/pkg/internal/web/admin/permissions_api.go @@ -5,8 +5,8 @@ import ( "git.solsynth.dev/hypernet/passport/pkg/authkit/models" "git.solsynth.dev/hypernet/passport/pkg/internal/database" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" "git.solsynth.dev/hypernet/passport/pkg/internal/services" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" ) diff --git a/pkg/internal/http/admin/users_api.go b/pkg/internal/web/admin/users_api.go similarity index 97% rename from pkg/internal/http/admin/users_api.go rename to pkg/internal/web/admin/users_api.go index e0b9d9a..98c3610 100644 --- a/pkg/internal/http/admin/users_api.go +++ b/pkg/internal/web/admin/users_api.go @@ -4,8 +4,8 @@ import ( "fmt" "git.solsynth.dev/hypernet/passport/pkg/authkit/models" "git.solsynth.dev/hypernet/passport/pkg/internal/database" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" "git.solsynth.dev/hypernet/passport/pkg/internal/services" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" ) diff --git a/pkg/internal/http/api/accounts_api.go b/pkg/internal/web/api/accounts_api.go similarity index 99% rename from pkg/internal/http/api/accounts_api.go rename to pkg/internal/web/api/accounts_api.go index 729987b..366923f 100644 --- a/pkg/internal/http/api/accounts_api.go +++ b/pkg/internal/web/api/accounts_api.go @@ -9,7 +9,7 @@ import ( "git.solsynth.dev/hypernet/nexus/pkg/nex/sec" "gorm.io/gorm" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "git.solsynth.dev/hypernet/passport/pkg/authkit/models" "git.solsynth.dev/hypernet/passport/pkg/internal/database" diff --git a/pkg/internal/http/api/auth_api.go b/pkg/internal/web/api/auth_api.go similarity index 98% rename from pkg/internal/http/api/auth_api.go rename to pkg/internal/web/api/auth_api.go index 998a6fa..0d2ec1e 100644 --- a/pkg/internal/http/api/auth_api.go +++ b/pkg/internal/web/api/auth_api.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" diff --git a/pkg/internal/http/api/avatar_api.go b/pkg/internal/web/api/avatar_api.go similarity index 97% rename from pkg/internal/http/api/avatar_api.go rename to pkg/internal/web/api/avatar_api.go index 0418487..74ca4ae 100644 --- a/pkg/internal/http/api/avatar_api.go +++ b/pkg/internal/web/api/avatar_api.go @@ -3,8 +3,8 @@ package api import ( "git.solsynth.dev/hypernet/passport/pkg/authkit/models" "git.solsynth.dev/hypernet/passport/pkg/internal/database" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" "git.solsynth.dev/hypernet/passport/pkg/internal/services" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" "strconv" ) diff --git a/pkg/internal/http/api/bot_token_api.go b/pkg/internal/web/api/bot_token_api.go similarity index 98% rename from pkg/internal/http/api/bot_token_api.go rename to pkg/internal/web/api/bot_token_api.go index 84aa36d..8246979 100644 --- a/pkg/internal/http/api/bot_token_api.go +++ b/pkg/internal/web/api/bot_token_api.go @@ -4,8 +4,8 @@ import ( "fmt" "git.solsynth.dev/hypernet/passport/pkg/authkit/models" "git.solsynth.dev/hypernet/passport/pkg/internal/database" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" "git.solsynth.dev/hypernet/passport/pkg/internal/services" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" "gorm.io/gorm" ) diff --git a/pkg/internal/http/api/bots_api.go b/pkg/internal/web/api/bots_api.go similarity index 97% rename from pkg/internal/http/api/bots_api.go rename to pkg/internal/web/api/bots_api.go index 84a6d27..f0ed99b 100644 --- a/pkg/internal/http/api/bots_api.go +++ b/pkg/internal/web/api/bots_api.go @@ -3,8 +3,8 @@ package api import ( "git.solsynth.dev/hypernet/passport/pkg/authkit/models" "git.solsynth.dev/hypernet/passport/pkg/internal/database" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" "git.solsynth.dev/hypernet/passport/pkg/internal/services" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" "github.com/samber/lo" "gorm.io/datatypes" diff --git a/pkg/internal/http/api/check_in_api.go b/pkg/internal/web/api/check_in_api.go similarity index 97% rename from pkg/internal/http/api/check_in_api.go rename to pkg/internal/web/api/check_in_api.go index ba47505..de88dca 100644 --- a/pkg/internal/http/api/check_in_api.go +++ b/pkg/internal/web/api/check_in_api.go @@ -3,8 +3,8 @@ package api import ( "git.solsynth.dev/hypernet/passport/pkg/authkit/models" "git.solsynth.dev/hypernet/passport/pkg/internal/database" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" "git.solsynth.dev/hypernet/passport/pkg/internal/services" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" "strconv" ) diff --git a/pkg/internal/http/api/contacts_api.go b/pkg/internal/web/api/contacts_api.go similarity index 85% rename from pkg/internal/http/api/contacts_api.go rename to pkg/internal/web/api/contacts_api.go index e95c0ae..d09fdfd 100644 --- a/pkg/internal/http/api/contacts_api.go +++ b/pkg/internal/web/api/contacts_api.go @@ -4,7 +4,7 @@ import ( "git.solsynth.dev/hypernet/nexus/pkg/nex/sec" "git.solsynth.dev/hypernet/passport/pkg/authkit/models" "git.solsynth.dev/hypernet/passport/pkg/internal/database" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" ) @@ -45,9 +45,9 @@ func createContact(c *fiber.Ctx) error { user := c.Locals("user").(models.Account) var data struct { - Type int8 `json:"type"` - Content string `json:"content" validate:"required"` - IsPublic bool `json:"is_public"` + Type int8 `json:"type"` + Content string `json:"content" validate:"required"` + IsPublic bool `json:"is_public"` } if err := exts.BindAndValidate(c, &data); err != nil { @@ -55,13 +55,13 @@ func createContact(c *fiber.Ctx) error { } contact := models.AccountContact{ - Type: data.Type, - Content: data.Content, - IsPublic: data.IsPublic, - IsPrimary: false, - VerifiedAt: nil, - AccountID: user.ID, - } + Type: data.Type, + Content: data.Content, + IsPublic: data.IsPublic, + IsPrimary: false, + VerifiedAt: nil, + AccountID: user.ID, + } if err := database.C.Create(&contact).Error; err != nil { return fiber.NewError(fiber.StatusInternalServerError, err.Error()) } @@ -78,9 +78,9 @@ func updateContact(c *fiber.Ctx) error { contactId, _ := c.ParamsInt("contactId") var data struct { - Type int8 `json:"type"` - Content string `json:"content" validate:"required"` - IsPublic bool `json:"is_public"` + Type int8 `json:"type"` + Content string `json:"content" validate:"required"` + IsPublic bool `json:"is_public"` } if err := exts.BindAndValidate(c, &data); err != nil { @@ -124,4 +124,4 @@ func deleteContact(c *fiber.Ctx) error { } return c.SendStatus(fiber.StatusOK) -} \ No newline at end of file +} diff --git a/pkg/internal/http/api/events_api.go b/pkg/internal/web/api/events_api.go similarity index 94% rename from pkg/internal/http/api/events_api.go rename to pkg/internal/web/api/events_api.go index 45148f0..f8a6ac8 100644 --- a/pkg/internal/http/api/events_api.go +++ b/pkg/internal/web/api/events_api.go @@ -3,7 +3,7 @@ package api import ( "git.solsynth.dev/hypernet/passport/pkg/authkit/models" "git.solsynth.dev/hypernet/passport/pkg/internal/database" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" ) diff --git a/pkg/internal/http/api/factors_api.go b/pkg/internal/web/api/factors_api.go similarity index 98% rename from pkg/internal/http/api/factors_api.go rename to pkg/internal/web/api/factors_api.go index db23315..1521791 100644 --- a/pkg/internal/http/api/factors_api.go +++ b/pkg/internal/web/api/factors_api.go @@ -5,8 +5,8 @@ import ( "git.solsynth.dev/hypernet/passport/pkg/authkit/models" "git.solsynth.dev/hypernet/passport/pkg/internal/database" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" "git.solsynth.dev/hypernet/passport/pkg/internal/services" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" "github.com/pquerna/otp/totp" "github.com/samber/lo" diff --git a/pkg/internal/http/api/index.go b/pkg/internal/web/api/index.go similarity index 99% rename from pkg/internal/http/api/index.go rename to pkg/internal/web/api/index.go index 8cf03d2..1b7516e 100644 --- a/pkg/internal/http/api/index.go +++ b/pkg/internal/web/api/index.go @@ -4,7 +4,7 @@ import ( "github.com/gofiber/fiber/v2" ) -func MapAPIs(app *fiber.App, baseURL string) { +func MapControllers(app *fiber.App, baseURL string) { api := app.Group(baseURL).Name("API") { api.Get("/well-known/openid-configuration", getOidcConfiguration) diff --git a/pkg/internal/http/api/notifications_api.go b/pkg/internal/web/api/notifications_api.go similarity index 98% rename from pkg/internal/http/api/notifications_api.go rename to pkg/internal/web/api/notifications_api.go index 91b33d8..27c4c9e 100644 --- a/pkg/internal/http/api/notifications_api.go +++ b/pkg/internal/web/api/notifications_api.go @@ -6,8 +6,8 @@ import ( "git.solsynth.dev/hypernet/passport/pkg/authkit/models" "git.solsynth.dev/hypernet/passport/pkg/internal/database" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" "git.solsynth.dev/hypernet/passport/pkg/internal/services" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" "github.com/samber/lo" ) diff --git a/pkg/internal/http/api/notify_api.go b/pkg/internal/web/api/notify_api.go similarity index 98% rename from pkg/internal/http/api/notify_api.go rename to pkg/internal/web/api/notify_api.go index ec7490f..5eacef6 100644 --- a/pkg/internal/http/api/notify_api.go +++ b/pkg/internal/web/api/notify_api.go @@ -5,8 +5,8 @@ import ( "git.solsynth.dev/hypernet/passport/pkg/authkit/models" "git.solsynth.dev/hypernet/passport/pkg/internal/database" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" "git.solsynth.dev/hypernet/passport/pkg/internal/services" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" ) diff --git a/pkg/internal/http/api/oauth_api.go b/pkg/internal/web/api/oauth_api.go similarity index 98% rename from pkg/internal/http/api/oauth_api.go rename to pkg/internal/web/api/oauth_api.go index f323810..eb56405 100755 --- a/pkg/internal/http/api/oauth_api.go +++ b/pkg/internal/web/api/oauth_api.go @@ -4,7 +4,7 @@ import ( "strings" "time" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "git.solsynth.dev/hypernet/passport/pkg/authkit/models" "git.solsynth.dev/hypernet/passport/pkg/internal/database" diff --git a/pkg/internal/http/api/password_api.go b/pkg/internal/web/api/password_api.go similarity index 95% rename from pkg/internal/http/api/password_api.go rename to pkg/internal/web/api/password_api.go index 066c133..08311b0 100644 --- a/pkg/internal/http/api/password_api.go +++ b/pkg/internal/web/api/password_api.go @@ -1,8 +1,8 @@ package api import ( - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" "git.solsynth.dev/hypernet/passport/pkg/internal/services" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" ) diff --git a/pkg/internal/http/api/preferences_api.go b/pkg/internal/web/api/preferences_api.go similarity index 97% rename from pkg/internal/http/api/preferences_api.go rename to pkg/internal/web/api/preferences_api.go index c01b4b8..e95abc6 100644 --- a/pkg/internal/http/api/preferences_api.go +++ b/pkg/internal/web/api/preferences_api.go @@ -2,8 +2,8 @@ package api import ( "git.solsynth.dev/hypernet/passport/pkg/authkit/models" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" "git.solsynth.dev/hypernet/passport/pkg/internal/services" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" ) diff --git a/pkg/internal/http/api/realm_members_api.go b/pkg/internal/web/api/realm_members_api.go similarity index 98% rename from pkg/internal/http/api/realm_members_api.go rename to pkg/internal/web/api/realm_members_api.go index c571111..09e355b 100644 --- a/pkg/internal/http/api/realm_members_api.go +++ b/pkg/internal/web/api/realm_members_api.go @@ -3,8 +3,8 @@ package api import ( "git.solsynth.dev/hypernet/passport/pkg/authkit/models" "git.solsynth.dev/hypernet/passport/pkg/internal/database" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" "git.solsynth.dev/hypernet/passport/pkg/internal/services" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" "strconv" ) diff --git a/pkg/internal/http/api/realms_api.go b/pkg/internal/web/api/realms_api.go similarity index 98% rename from pkg/internal/http/api/realms_api.go rename to pkg/internal/web/api/realms_api.go index 308d220..ba6b332 100644 --- a/pkg/internal/http/api/realms_api.go +++ b/pkg/internal/web/api/realms_api.go @@ -1,12 +1,13 @@ package api import ( + "strconv" + "git.solsynth.dev/hypernet/passport/pkg/authkit/models" "git.solsynth.dev/hypernet/passport/pkg/internal/database" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" "git.solsynth.dev/hypernet/passport/pkg/internal/services" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" - "strconv" ) func getRealm(c *fiber.Ctx) error { diff --git a/pkg/internal/http/api/relationships_api.go b/pkg/internal/web/api/relationships_api.go similarity index 99% rename from pkg/internal/http/api/relationships_api.go rename to pkg/internal/web/api/relationships_api.go index 3e505ff..e0356bd 100644 --- a/pkg/internal/http/api/relationships_api.go +++ b/pkg/internal/web/api/relationships_api.go @@ -5,8 +5,8 @@ import ( "strings" "git.solsynth.dev/hypernet/passport/pkg/authkit/models" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" "git.solsynth.dev/hypernet/passport/pkg/internal/services" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" "github.com/samber/lo" ) diff --git a/pkg/internal/http/api/reports_api.go b/pkg/internal/web/api/reports_api.go similarity index 96% rename from pkg/internal/http/api/reports_api.go rename to pkg/internal/web/api/reports_api.go index 879a5e4..05c5a7a 100644 --- a/pkg/internal/http/api/reports_api.go +++ b/pkg/internal/web/api/reports_api.go @@ -2,8 +2,8 @@ package api import ( "git.solsynth.dev/hypernet/passport/pkg/authkit/models" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" "git.solsynth.dev/hypernet/passport/pkg/internal/services" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" ) diff --git a/pkg/internal/http/api/security_api.go b/pkg/internal/web/api/security_api.go similarity index 95% rename from pkg/internal/http/api/security_api.go rename to pkg/internal/web/api/security_api.go index 8bffd78..8531694 100644 --- a/pkg/internal/http/api/security_api.go +++ b/pkg/internal/web/api/security_api.go @@ -3,7 +3,7 @@ package api import ( "git.solsynth.dev/hypernet/passport/pkg/authkit/models" "git.solsynth.dev/hypernet/passport/pkg/internal/database" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" ) diff --git a/pkg/internal/http/api/statuses_api.go b/pkg/internal/web/api/statuses_api.go similarity index 98% rename from pkg/internal/http/api/statuses_api.go rename to pkg/internal/web/api/statuses_api.go index 0501c4d..a4ab3dd 100644 --- a/pkg/internal/http/api/statuses_api.go +++ b/pkg/internal/web/api/statuses_api.go @@ -7,8 +7,8 @@ import ( "git.solsynth.dev/hypernet/passport/pkg/authkit/models" "git.solsynth.dev/hypernet/passport/pkg/internal/database" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" "git.solsynth.dev/hypernet/passport/pkg/internal/services" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/gofiber/fiber/v2" "github.com/samber/lo" ) diff --git a/pkg/internal/http/api/userinfo_api.go b/pkg/internal/web/api/userinfo_api.go similarity index 98% rename from pkg/internal/http/api/userinfo_api.go rename to pkg/internal/web/api/userinfo_api.go index c54942d..c283dcb 100644 --- a/pkg/internal/http/api/userinfo_api.go +++ b/pkg/internal/web/api/userinfo_api.go @@ -9,7 +9,7 @@ import ( "git.solsynth.dev/hypernet/nexus/pkg/nex/sec" "git.solsynth.dev/hypernet/passport/pkg/authkit/models" localCache "git.solsynth.dev/hypernet/passport/pkg/internal/cache" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/exts" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/exts" "github.com/eko/gocache/lib/v4/cache" "github.com/eko/gocache/lib/v4/marshaler" "gorm.io/gorm" diff --git a/pkg/internal/http/api/well_known_api.go b/pkg/internal/web/api/well_known_api.go similarity index 100% rename from pkg/internal/http/api/well_known_api.go rename to pkg/internal/web/api/well_known_api.go diff --git a/pkg/internal/http/exts/auth.go b/pkg/internal/web/exts/auth.go similarity index 100% rename from pkg/internal/http/exts/auth.go rename to pkg/internal/web/exts/auth.go diff --git a/pkg/internal/http/exts/request.go b/pkg/internal/web/exts/request.go similarity index 100% rename from pkg/internal/http/exts/request.go rename to pkg/internal/web/exts/request.go diff --git a/pkg/internal/http/server.go b/pkg/internal/web/server.go similarity index 76% rename from pkg/internal/http/server.go rename to pkg/internal/web/server.go index cffe8f0..9e115ae 100644 --- a/pkg/internal/http/server.go +++ b/pkg/internal/web/server.go @@ -1,16 +1,17 @@ -package http +package web import ( - "git.solsynth.dev/hypernet/nexus/pkg/nex/sec" - "git.solsynth.dev/hypernet/passport/pkg/authkit" "strings" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/admin" - "git.solsynth.dev/hypernet/passport/pkg/internal/http/api" + "git.solsynth.dev/hypernet/nexus/pkg/nex/sec" + "git.solsynth.dev/hypernet/passport/pkg/authkit" + + "git.solsynth.dev/hypernet/passport/pkg/internal/web/admin" + "git.solsynth.dev/hypernet/passport/pkg/internal/web/api" + "github.com/gofiber/contrib/fiberzerolog" "github.com/gofiber/fiber/v2" "github.com/gofiber/fiber/v2/middleware/cors" "github.com/gofiber/fiber/v2/middleware/idempotency" - "github.com/gofiber/fiber/v2/middleware/logger" jsoniter "github.com/json-iterator/go" "github.com/rs/zerolog/log" "github.com/spf13/viper" @@ -26,8 +27,8 @@ func NewServer() *App { app := fiber.New(fiber.Config{ DisableStartupMessage: true, EnableIPValidation: true, - ServerHeader: "Hypernet.Passport", - AppName: "Hypernet.Passport", + ServerHeader: "HyperNet.Passport", + AppName: "HyperNet.Passport", ProxyHeader: fiber.HeaderXForwardedFor, JSONEncoder: jsoniter.ConfigCompatibleWithStandardLibrary.Marshal, JSONDecoder: jsoniter.ConfigCompatibleWithStandardLibrary.Unmarshal, @@ -51,16 +52,15 @@ func NewServer() *App { }, })) - app.Use(logger.New(logger.Config{ - Format: "${status} | ${latency} | ${method} ${path}\n", - Output: log.Logger, + app.Use(fiberzerolog.New(fiberzerolog.Config{ + Logger: &log.Logger, })) app.Use(sec.ContextMiddleware(IReader)) app.Use(authkit.ParseAccountMiddleware) - admin.MapAdminAPIs(app, "/api/admin") - api.MapAPIs(app, "/api") + admin.MapControllers(app, "/api/admin") + api.MapControllers(app, "/api") return &App{app} } diff --git a/pkg/main.go b/pkg/main.go index 43c54cc..5236a03 100644 --- a/pkg/main.go +++ b/pkg/main.go @@ -2,18 +2,19 @@ package main import ( "fmt" - "git.solsynth.dev/hypernet/nexus/pkg/nex/sec" - "github.com/fatih/color" "os" "os/signal" "syscall" + "git.solsynth.dev/hypernet/nexus/pkg/nex/sec" + "github.com/fatih/color" + pkg "git.solsynth.dev/hypernet/passport/pkg/internal" "git.solsynth.dev/hypernet/passport/pkg/internal/gap" "git.solsynth.dev/hypernet/passport/pkg/internal/grpc" - "git.solsynth.dev/hypernet/passport/pkg/internal/http" "git.solsynth.dev/hypernet/passport/pkg/internal/services" + "git.solsynth.dev/hypernet/passport/pkg/internal/web" "github.com/robfig/cron/v3" "git.solsynth.dev/hypernet/passport/pkg/internal/cache" @@ -55,7 +56,7 @@ func main() { if reader, err := sec.NewInternalTokenReader(viper.GetString("security.internal_public_key")); err != nil { log.Error().Err(err).Msg("An error occurred when reading internal public key for jwt. Authentication related features will be disabled.") } else { - http.IReader = reader + web.IReader = reader log.Info().Msg("Internal jwt public key loaded.") } if reader, err := sec.NewJwtReader(viper.GetString("security.public_key")); err != nil { @@ -89,7 +90,7 @@ func main() { } // App - go http.NewServer().Listen() + go web.NewServer().Listen() // Grpc App go grpc.NewServer().Listen()