├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── dotnet.yml ├── .gitignore ├── .gitmodules ├── .tokeignore ├── Database ├── Database Report.txt ├── Dynamic.sql ├── Oficial │ ├── README │ ├── chrBloodlines.sql │ ├── chrCareerSpecialities.sql │ ├── chrCareers.sql │ ├── chrRaceSkills.sql │ ├── chrSchoolAgents.sql │ ├── chrSchools.sql │ ├── crpNPCCorporationTrades.sql │ ├── crpNPCCorporations.sql │ ├── crpNPCTickerNames.sql │ ├── crpStatic.sql │ ├── crtRecommendations.sql │ ├── crtRelationships.sql │ ├── dgmAttributeTypes.sql │ ├── dgmTypeAttributes.sql │ ├── dgmTypeEffects.sql │ ├── eveConstants.sql │ ├── eveMessages.sql │ ├── eveRoles.sql │ ├── invShipTypes.sql │ ├── invTypes.sql │ ├── mapCelestialDescriptions.sql │ └── mapLocationWormholeClasses.sql ├── Procedures │ ├── 001-agtGetAgents.sql │ ├── 002-agtGetInfo.sql │ ├── 003-mktWalletGetBalance.sql │ ├── 004-mktWalletCreate.sql │ ├── 005-mktWalletSetBalance.sql │ ├── 006-mktWalletGet.sql │ ├── 007-mktCreateJournalEntry.sql │ ├── 008-mktRecordTransaction.sql │ ├── 009-mktBillsGetReceivable.sql │ ├── 010-mktBillsGetPayable.sql │ ├── 011-chrBookmarksGet.sql │ ├── 012-chrBookmarksDelete.sql │ ├── 013-chrBookmarksCreate.sql │ ├── 014-crpAlliancesUpdate.sql │ ├── 015-crpAlliancesList.sql │ ├── 016-crpAlliancesGet.sql │ ├── 017-crpAlliancesGetRelationships.sql │ ├── 018-crpAllianceGetMembersPublic.sql │ ├── 019-crpAlliancesGetMembersPrivate.sql │ ├── 020-crpAlliancesUpdateRelationship.sql │ ├── 021-crpAlliancesRemoveRelationship.sql │ ├── 022-crpAlliancesUpdateSupportedExecutor.sql │ ├── 023-crpAlliancesListApplications.sql │ ├── 024-crpAlliancesUpdateApplication.sql │ ├── 025-crpAlliancesHousekeepApplications.sql │ ├── 026-crpAlliancesCreate.sql │ ├── 027-crpGetAllianceApplication.sql │ ├── 028-crpListFactionCorporations.sql │ ├── 029-crpListFactionStationCount.sql │ ├── 030-crpListFactionRegions.sql │ ├── 031-crpListFactionConstellations.sql │ ├── 032-crpListFactionSolarSystems.sql │ ├── 033-crpListFactionRaces.sql │ ├── 034-crpListNPCInfo.sql │ ├── 035-crpListNPCDivisions.sql │ ├── 036-crpGetRoleGroups.sql │ ├── 037-crpGetRoles.sql │ ├── 038-crpGetTitlesTemplate.sql │ ├── 039-crpGetTitles.sql │ ├── 040-crpGetRecruitmentAdTypes.sql │ ├── 041-crpListMedals.sql │ ├── 042-crpListMedalDetails.sql │ ├── 043-crpListApplications.sql │ ├── 044-crpListShareholders.sql │ ├── 045-cluResolveClientAddress.sql │ ├── 046-cluRegisterClientAddress.sql │ ├── 047-cluResetClientAddresses.sql │ ├── 048-invSetItemNode.sql │ ├── 049-invGetItemNode.sql │ ├── 050-invClearNodeAssociation.sql │ ├── 051-cluResolveCharacter.sql │ ├── 052-cluRegisterAddress.sql │ ├── 053-cluResolveAddress.sql │ ├── 055-cluRegisterSingleNode.sql │ ├── 056-cluCleanup.sql │ ├── 057-actExists.sql │ ├── 058-actLogin.sql │ ├── 059-actCreate.sql │ ├── 060-mktBillsCreate.sql │ ├── 061-crtGetCharacterCertificates.sql │ ├── 062-crtUpdateVisibilityFlags.sql │ ├── 063-crtGrantCertificate.sql │ ├── 064-crtGetRelationships.sql │ ├── 065-mapCalculateJumps.sql │ ├── 066-invDestroyItem.sql │ ├── 067-mktGetKeyMap.sql │ ├── 068-chrGetPublicInfo.sql │ ├── 069-chrGetPublicInfo3.sql │ ├── 070-crpAuditLogCreate.sql │ ├── 071-crpAuditRoleCreate.sql │ ├── 072-crpGetAuditLog.sql │ ├── 073-crpGetAuditRole.sql │ ├── 074-chrGetOnlineCount.sql │ ├── 075-chrClearLoginStatus.sql │ ├── 076-crpVotesHousekeeping.sql │ ├── 077-crpAdsHousekeeping.sql │ ├── 078-crpAdsGetAffectedByHousekeeping.sql │ ├── 079-crpVotesGetAffectedByHousekeeping.sql │ ├── 080-crpVotesGetType.sql │ ├── 081-crpSharesGet.sql │ ├── 082-crpSharesSet.sql │ ├── 083-crpVotesGetRate.sql │ ├── 084-crpVotesApply.sql │ ├── 085-crpVotesIsExpired.sql │ ├── 086-crpOfficeGetAtStation.sql │ ├── 087-crpOfficeDestroyOrImpound.sql │ ├── 088-crpOfficesGetExpired.sql │ ├── 089-crpVotesHasEnded.sql │ ├── 090-crpVotesGetCorporation.sql │ ├── 091-crpVotesExists.sql │ ├── 092-crpVotesHasVoted.sql │ ├── 093-invItemsLockedGetLocations.sql │ ├── 094-invItemsLockedGetAtLocation.sql │ ├── 095-invItemsLockedAdd.sql │ ├── 096-invItemsGetType.sql │ ├── 097-invItemsLockedRemove.sql │ ├── 098-crpVotesGetAsSanctionable.sql │ ├── 099-invItemsLockedRemoveByID.sql │ ├── 100-conGet.sql │ ├── 101-conGetItemPreloadValues.sql │ ├── 102-conAddItem.sql │ ├── 103-conGetItems.sql │ ├── 103-conSaveInfo.sql │ ├── 104-conGetMaximumBid.sql │ ├── 105-conGetOutbids.sql │ ├── 106-conPlaceBid.sql │ ├── 107-invGetItemsAtLocationByType.sql │ ├── 108-conGetRequestedItemsAtLocation.sql │ ├── 109-conDestroy.sql │ ├── 110-crpOfficesGetAtStation.sql │ ├── 111-invItemsLockedAnyAtStation.sql │ ├── 112-crpGetTaxRate.sql │ └── 113-invItemsGetAtLocationForOwner.sql ├── README ├── Server │ ├── 00-account.sql │ ├── 01-character.sql │ ├── 02-corporations.sql │ ├── 03-liveupdates.sql │ ├── 04-entity.sql │ ├── 05-chrFriends.sql │ ├── 06-chatlist.sql │ ├── 07-mktTransactions.sql │ ├── 08-chrSkillHistory.sql │ ├── 09-chrCertificates.sql │ ├── 10-chrMedals.sql │ ├── 11-chrStandingTransactions.sql │ ├── 12-chrCombatLogs.sql │ ├── 13-market_journal.sql │ ├── 14-chrLPbalance.sql │ ├── 15-chrBounties.sql │ ├── 16-crpRoleGroups.sql │ ├── 17-crpRoles.sql │ ├── 18-crpTitles.sql │ ├── 19-crpOffices.sql │ ├── 20-crpRecruitmentAdTypes.sql │ ├── 21-crpRecruitmentAds.sql │ ├── 22-crpMedals.sql │ ├── 23-chrShipInsurances.sql │ ├── 24-chrBookmarks.sql │ ├── 25-evemail.sql │ ├── 26-stations.sql │ ├── 27-mktOrders.sql │ ├── 28-mktHistoryOld.sql │ ├── 29-conContracts.sql │ ├── 30-conBids.sql │ ├── 31-conItems.sql │ ├── 32-invBlueprints.sql │ ├── 33-dgmExpressions.sql │ ├── 34-eveGraphics.sql │ ├── 35-ramAssemblyLines.sql │ ├── 36-mktRefTypes.sql │ ├── 37-newLiveUpdates.sql │ ├── 38-mktWallet.sql │ ├── 39-mktKeyMap.sql │ ├── 40-crpShares.sql │ ├── 41-mktBills.sql │ ├── 42-staticCharacters.sql │ ├── 43-crpCeos.sql │ ├── 44-eveConstants.sql │ ├── 45-charactersToEntity.sql │ ├── 46-newLiveUpdates.sql │ ├── 47-chrApplications.sql │ ├── 48-crpVotes.sql │ ├── 49-crpAlliances.sql │ ├── 50-allRelationships.sql │ ├── 51-newLiveUpdates.sql │ ├── 52-crpApplications.sql │ ├── 53-orchestation.sql │ ├── 54-cluAddresses.sql │ ├── 55-crpAudit.sql │ ├── 56-invBlueprintTypes.sql │ └── 57-invItemsLocked.sql ├── Static.sql └── Utils │ ├── Merge-Oficial.bat │ ├── Merge-Oficial.sh │ ├── Merge-Server.bat │ └── Merge-Server.sh ├── LICENSE ├── README.md ├── Server ├── .idea │ └── .idea.EVESharp │ │ └── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── dataSources.xml │ │ ├── indexLayout.xml │ │ └── vcs.xml ├── EVESharp.API │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── CharacterController.cs │ │ ├── ImagesController.cs │ │ └── ServerController.cs │ ├── EVESharp.API.csproj │ ├── Formatters │ │ └── CustomXmlFormatter.cs │ ├── Models │ │ ├── AccountRow.cs │ │ ├── AttributesModel.cs │ │ ├── CertificateRow.cs │ │ ├── CharacterModel.cs │ │ ├── CharacterRow.cs │ │ ├── CorporationRoleRow.cs │ │ ├── EVEApiModel.cs │ │ ├── MarketOrderRow.cs │ │ ├── Rowset.cs │ │ ├── RowsetModel.cs │ │ ├── ServerStatusModel.cs │ │ ├── SkillQueueRow.cs │ │ ├── SkillRow.cs │ │ └── TitleRow.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ └── appsettings.json ├── EVESharp.ASP.Common │ ├── EVESharp.ASP.Common.csproj │ └── Providers │ │ └── DatabaseConfiguration.cs ├── EVESharp.Common │ ├── Checksum │ │ ├── Adler32.cs │ │ └── CRC32.cs │ ├── Compression │ │ ├── ZeroCompressionOpcode.cs │ │ ├── ZeroCompressionUtils.cs │ │ └── ZlibHelper.cs │ ├── Configuration │ │ ├── Attributes │ │ │ ├── ConfigSection.cs │ │ │ ├── ConfigValue.cs │ │ │ ├── EnumConfigValue.cs │ │ │ └── TransformConfigValue.cs │ │ ├── Database.cs │ │ ├── FileLog.cs │ │ ├── Loader.cs │ │ ├── LogLite.cs │ │ ├── Logging.cs │ │ └── MachoNet.cs │ ├── Constants │ │ └── Network.cs │ ├── EVESharp.Common.csproj │ ├── Extensions.cs │ ├── HexDump.cs │ └── Logging │ │ ├── LogLiteSink.cs │ │ └── LoggingExtensions.cs ├── EVESharp.Database │ ├── Account │ │ ├── AccountType.cs │ │ └── Roles.cs │ ├── Alliances │ │ ├── ApplicationEntry.cs │ │ ├── ApplicationStatus.cs │ │ └── Relationships.cs │ ├── Certificates │ │ └── Relationship.cs │ ├── Characters │ │ └── SkillHistoryReason.cs │ ├── Chat │ │ ├── ChannelType.cs │ │ └── Roles.cs │ ├── Configuration │ │ ├── Constant.cs │ │ ├── Constants.cs │ │ └── IConstants.cs │ ├── Corporations │ │ ├── CorporationLogEvent.cs │ │ ├── CorporationOffice.cs │ │ ├── CorporationRole.cs │ │ ├── CorporationRoleExtensions.cs │ │ └── CorporationVotes.cs │ ├── Database.cs │ ├── DatabaseAccessor.cs │ ├── DbLock.cs │ ├── Dogma │ │ ├── Association.cs │ │ ├── Compiler.cs │ │ ├── Effect.cs │ │ ├── EffectCategory.cs │ │ ├── EffectOperand.cs │ │ ├── EffectsEnum.cs │ │ ├── Environment.cs │ │ ├── Expression.cs │ │ ├── Extensions.cs │ │ └── IExpressions.cs │ ├── EVEMath │ │ └── Skills.cs │ ├── EVESharp.Database.csproj │ ├── Exceptions │ │ └── ItemNotLoadedException.cs │ ├── Extensions │ │ ├── AccountDB.cs │ │ ├── AgentDB.cs │ │ ├── AlliancesDB.cs │ │ ├── AuditingDB.cs │ │ ├── BillsDB.cs │ │ ├── BookmarkDB.cs │ │ ├── CertificatesDB.cs │ │ ├── CharacterDB.cs │ │ ├── ClusterDB.cs │ │ ├── ConnectionExtensions.cs │ │ ├── ContractsDB.cs │ │ ├── CorporationsDB.cs │ │ ├── Inventory │ │ │ ├── AttributeDB.cs │ │ │ ├── BlueprintDB.cs │ │ │ ├── CharacterInformationDB.cs │ │ │ ├── DogmaDB.cs │ │ │ ├── InventoryItemsDB.cs │ │ │ └── StationDB.cs │ │ ├── ItemDB.cs │ │ ├── LockExtensions.cs │ │ ├── MailDB.cs │ │ ├── MapDB.cs │ │ ├── SettingsDB.cs │ │ ├── StationsDB.cs │ │ └── WalletDB.cs │ ├── IDatabase.cs │ ├── Inventory │ │ ├── Attributes │ │ │ ├── Attribute.cs │ │ │ ├── AttributeList.cs │ │ │ ├── AttributeType.cs │ │ │ ├── AttributeTypes.cs │ │ │ ├── IAttributes.cs │ │ │ ├── IDefaultAttributes.cs │ │ │ └── Modifier.cs │ │ ├── Categories │ │ │ ├── Category.cs │ │ │ ├── CategoryID.cs │ │ │ └── ICategories.cs │ │ ├── Characters │ │ │ ├── Ancestry.cs │ │ │ ├── Bloodline.cs │ │ │ ├── IAncestries.cs │ │ │ └── IBloodlines.cs │ │ ├── Containers.cs │ │ ├── Flags.cs │ │ ├── Groups │ │ │ ├── Group.cs │ │ │ ├── GroupID.cs │ │ │ └── IGroups.cs │ │ ├── ItemRanges.cs │ │ ├── Stations │ │ │ ├── Operation.cs │ │ │ ├── Service.cs │ │ │ └── Type.cs │ │ └── Types │ │ │ ├── ITypes.cs │ │ │ ├── Information │ │ │ ├── Alliance.cs │ │ │ ├── Blueprint.cs │ │ │ ├── Character.cs │ │ │ ├── Constellation.cs │ │ │ ├── Corporation.cs │ │ │ ├── Faction.cs │ │ │ ├── Item.cs │ │ │ ├── Region.cs │ │ │ ├── SolarSystem.cs │ │ │ └── Station.cs │ │ │ ├── Type.cs │ │ │ └── TypeID.cs │ ├── Market │ │ ├── BillTypes.cs │ │ ├── Contract.cs │ │ ├── ContractStatus.cs │ │ ├── ContractTypes.cs │ │ ├── MarketOrder.cs │ │ ├── MarketReference.cs │ │ ├── PreloadedContractItem.cs │ │ ├── RequestedContractItem.cs │ │ ├── TransactionType.cs │ │ └── WalletKeys.cs │ ├── ReaderExtensions.cs │ ├── Standings │ │ └── EventType.cs │ ├── Types │ │ ├── CRowset.cs │ │ ├── IndexRowset.cs │ │ ├── KeyVal.cs │ │ ├── Row.cs │ │ └── Rowset.cs │ └── WrappedDbDataReader.cs ├── EVESharp.Destiny │ ├── Ball.cs │ ├── BallData.cs │ ├── BallFlag.cs │ ├── BallHeader.cs │ ├── BallMode.cs │ ├── CloakMode.cs │ ├── EVESharp.Destiny.csproj │ ├── ExtraBallHeader.cs │ ├── FollowState.cs │ ├── FormationState.cs │ ├── GotoState.cs │ ├── Header.cs │ ├── MiniBall.cs │ ├── MissileState.cs │ ├── MushroomState.cs │ ├── PrettyPrinter.cs │ ├── TrollState.cs │ ├── UpdateReader.cs │ ├── Utility.cs │ ├── Vector3.cs │ ├── WarpState.cs │ └── Zlib.cs ├── EVESharp.EVE.Unit │ ├── EVESharp.EVE.Unit.csproj │ ├── Packets │ │ ├── AuthenticationReqTests.cs │ │ ├── AuthenticationRspTests.cs │ │ ├── ClientCommandTests.cs │ │ └── LowLevelVersionExchangeTest.cs │ └── Types │ │ └── Network │ │ ├── PyAddressAnyTests.cs │ │ ├── PyAddressBroadcastTests.cs │ │ ├── PyAddressClientTests.cs │ │ ├── PyAddressNodeTests.cs │ │ └── PyExceptionTests.cs ├── EVESharp.EVE │ ├── Accounts │ │ ├── LoginQueueEntry.cs │ │ └── LoginStatus.cs │ ├── Configuration │ │ ├── Attributes │ │ │ └── RoleListConfigValue.cs │ │ └── Constants.cs │ ├── Corporations │ │ ├── IAudit.cs │ │ ├── IShares.cs │ │ └── ISharesAccount.cs │ ├── Data │ │ ├── Cache.cs │ │ ├── Inventory │ │ │ ├── IFactions.cs │ │ │ ├── IItems.cs │ │ │ ├── IMetaInventories.cs │ │ │ ├── ISolarSystems.cs │ │ │ ├── IStations.cs │ │ │ └── Items │ │ │ │ ├── Dogma │ │ │ │ ├── GodmaShipEffect.cs │ │ │ │ └── GodmaShipEffectsList.cs │ │ │ │ ├── ItemEntity.cs │ │ │ │ ├── ItemInventory.cs │ │ │ │ ├── ItemInventoryByOwnerID.cs │ │ │ │ └── Types │ │ │ │ ├── Alliance.cs │ │ │ │ ├── Blueprint.cs │ │ │ │ ├── Character.cs │ │ │ │ ├── Clone.cs │ │ │ │ ├── Constellation.cs │ │ │ │ ├── Container.cs │ │ │ │ ├── Corporation.cs │ │ │ │ ├── EVESystem.cs │ │ │ │ ├── Faction.cs │ │ │ │ ├── Implant.cs │ │ │ │ ├── Item.cs │ │ │ │ ├── OfficeFolder.cs │ │ │ │ ├── Region.cs │ │ │ │ ├── Ship.cs │ │ │ │ ├── ShipModule.cs │ │ │ │ ├── Skill.cs │ │ │ │ ├── SolarSystem.cs │ │ │ │ └── Station.cs │ │ ├── Messages │ │ │ └── MLS.cs │ │ └── Version.cs │ ├── Dogma │ │ ├── Exception │ │ │ └── DogmaMachineException.cs │ │ ├── IDogmaItems.cs │ │ ├── Interpreter │ │ │ ├── Environment.cs │ │ │ ├── Interpreter.cs │ │ │ └── Opcodes │ │ │ │ ├── Opcode.cs │ │ │ │ ├── OpcodeADD.cs │ │ │ │ ├── OpcodeAIM.cs │ │ │ │ ├── OpcodeAND.cs │ │ │ │ ├── OpcodeATT.cs │ │ │ │ ├── OpcodeCOMBINE.cs │ │ │ │ ├── OpcodeDEFASSOCIATION.cs │ │ │ │ ├── OpcodeDEFATTRIBUTE.cs │ │ │ │ ├── OpcodeDEFENVIDX.cs │ │ │ │ ├── OpcodeDEFINT.cs │ │ │ │ ├── OpcodeDEFSTRING.cs │ │ │ │ ├── OpcodeEFF.cs │ │ │ │ ├── OpcodeGET.cs │ │ │ │ ├── OpcodeGT.cs │ │ │ │ ├── OpcodeGTE.cs │ │ │ │ ├── OpcodeIF.cs │ │ │ │ ├── OpcodeOR.cs │ │ │ │ ├── OpcodeRIM.cs │ │ │ │ ├── OpcodeRunnable.cs │ │ │ │ ├── OpcodeSET.cs │ │ │ │ ├── OpcodeSKILLCHECK.cs │ │ │ │ ├── OpcodeUE.cs │ │ │ │ ├── OpcodeWithBooleanOutput.cs │ │ │ │ ├── OpcodeWithDoubleOutput.cs │ │ │ │ └── OpcodeWithIntegerOutput.cs │ │ └── ItemEffects.cs │ ├── EVESharp.EVE.csproj │ ├── Exceptions │ │ ├── CanOnlyDoInStations.cs │ │ ├── CustomError.cs │ │ ├── CustomInfo.cs │ │ ├── Internal │ │ │ └── SkillMissingException.cs │ │ ├── LSC │ │ │ ├── ChatCustomChannelNameTooLong.cs │ │ │ ├── ChtAlreadyInChannel.cs │ │ │ ├── ChtCannotInviteSelf.cs │ │ │ ├── ChtCharNotReachable.cs │ │ │ ├── ChtNPC.cs │ │ │ ├── ChtWrongRole.cs │ │ │ ├── LSCCannotAccessControl.cs │ │ │ ├── LSCCannotDestroy.cs │ │ │ ├── LSCCannotJoin.cs │ │ │ ├── LSCCannotSendMessage.cs │ │ │ └── LSCStandardException.cs │ │ ├── NotEnoughMoney.cs │ │ ├── SkillRequired.cs │ │ ├── UserError.cs │ │ ├── allianceRegistry │ │ │ └── CanNotDeclareExecutorInFirstWeek.cs │ │ ├── certificateMgr │ │ │ ├── CertificateAlreadyGranted.cs │ │ │ ├── CertificateCertPrerequisitesNotMet.cs │ │ │ └── CertificateSkillPrerequisitesNotMet.cs │ │ ├── character │ │ │ ├── BannedBloodline.cs │ │ │ ├── CharNameInvalid.cs │ │ │ ├── CharNameInvalidBannedWord.cs │ │ │ ├── CharNameInvalidMaxLength.cs │ │ │ ├── CharNameInvalidMaxSpaces.cs │ │ │ ├── CharNameInvalidMinLength.cs │ │ │ ├── CharNameInvalidSomeChar.cs │ │ │ ├── CharNameInvalidTaken.cs │ │ │ ├── FailedPlugInImplant.cs │ │ │ ├── OnlyOneImplantActive.cs │ │ │ └── PrereqImplantMissing.cs │ │ ├── contractMgr │ │ │ ├── ConAuctionAlreadyClaimed.cs │ │ │ ├── ConBidTooLow.cs │ │ │ ├── ConCannotTradeContraband.cs │ │ │ ├── ConCannotTradeCurrentShip.cs │ │ │ ├── ConCannotTradeDamagedItem.cs │ │ │ ├── ConCannotTradeItemSanity.cs │ │ │ ├── ConCannotTradeNonSingletonShip.cs │ │ │ ├── ConContractExpired.cs │ │ │ ├── ConContractNotFound.cs │ │ │ ├── ConContractNotOutstanding.cs │ │ │ ├── ConCorpContractRoleMissing.cs │ │ │ ├── ConDestinationSame.cs │ │ │ ├── ConDurationZero.cs │ │ │ ├── ConExceedsMaxVolume.cs │ │ │ ├── ConMinMaxPriceError.cs │ │ │ ├── ConNPCNotAllowed.cs │ │ │ ├── ConNotYourContract.cs │ │ │ ├── ConReturnItemsMissingNonSingleton.cs │ │ │ ├── ConTooManyContracts.cs │ │ │ └── ConWrongRegion.cs │ │ ├── corpRegistry │ │ │ ├── AllianceCreateFailCorpInAlliance.cs │ │ │ ├── AllianceNameInvalidBannedWord.cs │ │ │ ├── AllianceNameInvalidFirstChar.cs │ │ │ ├── AllianceNameInvalidLastChar.cs │ │ │ ├── AllianceNameInvalidMaxLength.cs │ │ │ ├── AllianceNameInvalidMinLength.cs │ │ │ ├── AllianceNameInvalidSomeChar.cs │ │ │ ├── AllianceNameInvalidTaken.cs │ │ │ ├── AllianceShortNameInvalid.cs │ │ │ ├── AllianceShortNameInvalidTaken.cs │ │ │ ├── CEOCannotCreateCorporation.cs │ │ │ ├── CanOnlyCreateCorpInStation.cs │ │ │ ├── CantRunForCEOAtTheMoment.cs │ │ │ ├── CorpNameInvalidBannedWord.cs │ │ │ ├── CorpNameInvalidMaxLength.cs │ │ │ ├── CorpNameInvalidMinLength.cs │ │ │ ├── CorpNameInvalidTaken.cs │ │ │ ├── CorpTickerNameInvalid.cs │ │ │ ├── CorpTickerNameInvalidTaken.cs │ │ │ ├── CorpVoteCaseClosed.cs │ │ │ ├── CrpAccessDenied.cs │ │ │ ├── CrpAlreadyVoted.cs │ │ │ ├── CrpCantQuitDefaultCorporation.cs │ │ │ ├── CrpCantQuitNotCompletedStasisPeriod.cs │ │ │ ├── CrpCantQuitNotCompletedStasisPeriodIsBlocked.cs │ │ │ ├── CrpCantQuitNotInStasis.cs │ │ │ ├── CrpOnlyDirectorsCanProposeVotes.cs │ │ │ ├── CrpRolesDenied.cs │ │ │ ├── NotEnoughShares.cs │ │ │ ├── OnlyActiveCEOCanCreateAlliance.cs │ │ │ ├── OnlyCEOCanPayoutDividends.cs │ │ │ └── PlayerCantCreateCorporation.cs │ │ ├── corpStationMgr │ │ │ ├── CrpJunkContainsLockedItem.cs │ │ │ ├── CrpJunkOnlyAvailableToDirector.cs │ │ │ ├── CrpJunkPriceChanged.cs │ │ │ ├── CrpOnlyDirectorCanCancelRent.cs │ │ │ ├── MedicalThisCloneIsWorse.cs │ │ │ ├── MedicalYouAlreadyHaveACloneContractAtThatStation.cs │ │ │ ├── NoOfficeAtStation.cs │ │ │ ├── NoOfficesAreAvailableForRenting.cs │ │ │ ├── RentingAnOfficeCostsMore.cs │ │ │ ├── RentingOfficeQuotesOnlyGivenToActiveCEOsOrEquivale.cs │ │ │ ├── RentingOfficeRequestDenied.cs │ │ │ └── RentingYouHaveAnOfficeHere.cs │ │ ├── corporationSvc │ │ │ ├── ConfirmCreatingMedal.cs │ │ │ ├── ConfirmGivingMedal.cs │ │ │ ├── MedalDescriptionInvalid.cs │ │ │ ├── MedalDescriptionTooLong.cs │ │ │ ├── MedalNameInvalid.cs │ │ │ └── MedalNameTooLong.cs │ │ ├── dogma │ │ │ └── EffectNotActivatible.cs │ │ ├── facWarMgr │ │ │ └── FactionCharJoinDenied.cs │ │ ├── insuranceSvc │ │ │ ├── InsureShipFailed.cs │ │ │ ├── InsureShipFailedMultipleContracts.cs │ │ │ └── InsureShipFailedSingleContract.cs │ │ ├── inventory │ │ │ ├── AssembleCCFirst.cs │ │ │ ├── CanNotUnassembleThisItemType.cs │ │ │ ├── CannotDestroyFittedItem.cs │ │ │ ├── CannotMergeSingletonItems.cs │ │ │ ├── CannotRemoveUpgradeManually.cs │ │ │ ├── CantFitToCapsule.cs │ │ │ ├── CantMoveActiveShip.cs │ │ │ ├── CantTakeInSpaceCapsule.cs │ │ │ ├── ItemNotContainer.cs │ │ │ ├── NoFreeShipSlots.cs │ │ │ ├── NotEnoughCargoSpace.cs │ │ │ ├── NotEnoughQuantity.cs │ │ │ └── TheItemIsNotYoursToTake.cs │ │ ├── jumpCloneSvc │ │ │ ├── JumpCantDestroyNonLocalClone.cs │ │ │ ├── JumpCharStoringMaxClones.cs │ │ │ ├── JumpCharStoringMaxClonesNone.cs │ │ │ └── MktNotOwner.cs │ │ ├── machoNet │ │ │ └── WrongMachoNode.cs │ │ ├── marketProxy │ │ │ ├── MarketExceededOrderCount.cs │ │ │ ├── MktAsksMustSpecifyItems.cs │ │ │ ├── MktCantSellItem2.cs │ │ │ ├── MktCantSellItemOutsideStation.cs │ │ │ ├── MktInvalidRegion.cs │ │ │ ├── MktOrderDelay.cs │ │ │ ├── MktOrderDidNotMatch.cs │ │ │ ├── RepackageBeforeSelling.cs │ │ │ └── RepairBeforeSelling.cs │ │ ├── repairSvc │ │ │ ├── CantRepackageDamagedItem.cs │ │ │ ├── ConfirmRepackageSomethingWithUpgrades.cs │ │ │ └── RepairUnassembleVoidsContract.cs │ │ ├── reprocessingSvc │ │ │ └── QuantityLessThanMinimumPortion.cs │ │ ├── ship │ │ │ ├── AssembleOwnShipsOnly.cs │ │ │ ├── ShipAlreadyAssembled.cs │ │ │ └── ShipHasSkillPrerequisites.cs │ │ ├── skillMgr │ │ │ ├── CharacterAlreadyKnowsSkill.cs │ │ │ ├── RespecAttributesMisallocated.cs │ │ │ ├── RespecAttributesTooHigh.cs │ │ │ └── RespecAttributesTooLow.cs │ │ └── slash │ │ │ └── SlashError.cs │ ├── ITimers.cs │ ├── Market │ │ ├── IContract.cs │ │ ├── IContracts.cs │ │ ├── IWallet.cs │ │ └── IWallets.cs │ ├── Messages │ │ ├── IMessage.cs │ │ ├── Processor │ │ │ ├── IQueueProcessor.cs │ │ │ ├── SynchronousProcessor.cs │ │ │ └── ThreadedProcessor.cs │ │ └── Queue │ │ │ ├── IMessageQueue.cs │ │ │ └── MessageQueue.cs │ ├── Network │ │ ├── Caching │ │ │ ├── CacheObjectType.cs │ │ │ └── ICacheStorage.cs │ │ ├── IClusterManager.cs │ │ ├── IMachoNet.cs │ │ ├── Messages │ │ │ └── MachoMessage.cs │ │ ├── RunMode.cs │ │ ├── Services │ │ │ ├── AccessLevel.cs │ │ │ ├── BoundService.cs │ │ │ ├── ClientBoundService.cs │ │ │ ├── Exceptions │ │ │ │ ├── MissingCallException.cs │ │ │ │ ├── MissingServiceException.cs │ │ │ │ └── UnauthorizedCallException.cs │ │ │ ├── IBoundServiceManager.cs │ │ │ ├── IRemoteServiceManager.cs │ │ │ ├── IServiceManager.cs │ │ │ ├── MultiClientBoundService.cs │ │ │ ├── RemoteCall.cs │ │ │ ├── Service.cs │ │ │ ├── ServiceBindParams.cs │ │ │ ├── ServiceCall.cs │ │ │ ├── SparseRowset.cs │ │ │ └── Validators │ │ │ │ ├── CallValidator.cs │ │ │ │ ├── MustBeCharacter.cs │ │ │ │ ├── MustBeInStation.cs │ │ │ │ ├── MustHaveCorporationRole.cs │ │ │ │ ├── MustHaveRole.cs │ │ │ │ ├── MustHaveSessionValue.cs │ │ │ │ ├── MustNotBeCharacter.cs │ │ │ │ ├── MustNotHaveCorporationRole.cs │ │ │ │ └── MustNotHaveSessionValue.cs │ │ ├── Sockets │ │ │ ├── EVEListener.cs │ │ │ ├── EVESocket.cs │ │ │ ├── IEVEListener.cs │ │ │ ├── IEVESocket.cs │ │ │ ├── ReceiveCallbackState.cs │ │ │ └── StreamPacketizer.cs │ │ └── Transports │ │ │ ├── IMachoTransport.cs │ │ │ ├── ITransportManager.cs │ │ │ ├── MachoClientTransport.cs │ │ │ ├── MachoNodeTransport.cs │ │ │ ├── MachoProxyTransport.cs │ │ │ ├── MachoServerTransport.cs │ │ │ └── MachoUnauthenticatedTransport.cs │ ├── Notifications │ │ ├── Alliances │ │ │ ├── OnAllianceApplicationChanged.cs │ │ │ ├── OnAllianceChanged.cs │ │ │ ├── OnAllianceMemberChanged.cs │ │ │ └── OnAllianceRelationshipChanged.cs │ │ ├── Certificates │ │ │ └── OnCertificateIssued.cs │ │ ├── Character │ │ │ └── OnStandingSet.cs │ │ ├── Chat │ │ │ ├── OnContactLoggedOn.cs │ │ │ └── OnLSC.cs │ │ ├── Clones │ │ │ └── OnJumpCloneCacheInvalidated.cs │ │ ├── ComparisonType.cs │ │ ├── Contracts │ │ │ ├── OnContractAccepted.cs │ │ │ ├── OnContractAssigned.cs │ │ │ └── OnContractOutbid.cs │ │ ├── Corporations │ │ │ ├── OnCorporationApplicationChanged.cs │ │ │ ├── OnCorporationChanged.cs │ │ │ ├── OnCorporationMedalAdded.cs │ │ │ ├── OnCorporationMemberChanged.cs │ │ │ ├── OnCorporationRecruitmentAdChanged.cs │ │ │ ├── OnCorporationVoteCaseChanged.cs │ │ │ ├── OnCorporationVoteChanged.cs │ │ │ ├── OnLockedItemChange.cs │ │ │ ├── OnMedalIssued.cs │ │ │ ├── OnMedalStatusChanged.cs │ │ │ ├── OnOfficeRentalChanged.cs │ │ │ ├── OnSanctionedActionChanged.cs │ │ │ └── OnTitleChanged.cs │ │ ├── IDogmaNotifications.cs │ │ ├── INotificationSender.cs │ │ ├── Inventory │ │ │ ├── ItemChange.cs │ │ │ ├── OnCfgDataChanged.cs │ │ │ ├── OnGodmaShipEffect.cs │ │ │ ├── OnItemChange.cs │ │ │ ├── OnModuleAttributeChange.cs │ │ │ └── OnModuleAttributeChanges.cs │ │ ├── Market │ │ │ └── OnOwnOrderChanged.cs │ │ ├── Network │ │ │ └── OnMachoObjectDisconnect.cs │ │ ├── NotificationIdType.cs │ │ ├── Skills │ │ │ ├── OnGodmaMultipleSkillsTrained.cs │ │ │ ├── OnSkillInjected.cs │ │ │ ├── OnSkillStartTraining.cs │ │ │ ├── OnSkillTrained.cs │ │ │ └── OnSkillTrainingStopped.cs │ │ ├── Station │ │ │ ├── OnCharNoLongerInStation.cs │ │ │ └── OnCharNowInStation.cs │ │ └── Wallet │ │ │ ├── OnAccountChange.cs │ │ │ ├── OnBillReceived.cs │ │ │ └── OnShareChange.cs │ ├── OldDatabase │ │ ├── ChatDB.cs │ │ ├── ConfigDB.cs │ │ ├── ContractDB.cs │ │ ├── CorporationDB.cs │ │ ├── FactoryDB.cs │ │ ├── InsuranceDB.cs │ │ ├── ItemDB.cs │ │ ├── LookupDB.cs │ │ ├── MarketDB.cs │ │ ├── OldCharacterDB.cs │ │ ├── RAMDB.cs │ │ ├── RepairDB.cs │ │ ├── ReprocessingDB.cs │ │ ├── SkillDB.cs │ │ ├── StandingDB.cs │ │ ├── StationDB.cs │ │ └── TutorialsDB.cs │ ├── Packets │ │ ├── AuthenticationReq.cs │ │ ├── AuthenticationRsp.cs │ │ ├── ClientCommand.cs │ │ ├── Complex │ │ │ ├── CachedHint.cs │ │ │ ├── CachedMethodCallResult.cs │ │ │ ├── CachedObject.cs │ │ │ ├── ClientNotification.cs │ │ │ ├── InterNodeNotification.cs │ │ │ ├── ItemInfo.cs │ │ │ └── WarInfo.cs │ │ ├── Exceptions │ │ │ └── ProvisionalResponse.cs │ │ ├── GPSTransportClosed.cs │ │ ├── HandshakeAck.cs │ │ ├── IdentificationReq.cs │ │ ├── IdentificationRsp.cs │ │ ├── LowLevelVersionExchange.cs │ │ ├── PlaceboRequest.cs │ │ ├── SessionChangeNotification.cs │ │ └── SessionInitialStateNotification.cs │ ├── Permissions │ │ ├── Inventory.cs │ │ └── Market.cs │ ├── Relationships │ │ └── IStandings.cs │ ├── Sessions │ │ ├── ISessionManager.cs │ │ ├── Session.cs │ │ ├── SessionChange.cs │ │ ├── SessionExtensions.cs │ │ └── SessionManager.cs │ ├── Timer.cs │ └── Types │ │ └── Network │ │ ├── MachoErrorType.cs │ │ ├── PyAddress.cs │ │ ├── PyAddressAny.cs │ │ ├── PyAddressBroadcast.cs │ │ ├── PyAddressClient.cs │ │ ├── PyAddressNode.cs │ │ ├── PyException.cs │ │ └── PyPacket.cs ├── EVESharp.Node.Unit │ ├── ArchitectureTests │ │ ├── MarketTests │ │ │ └── WalletTests.cs │ │ └── ServiceManagerTests │ │ │ ├── ExampleService.cs │ │ │ ├── ExtraRestrictedService.cs │ │ │ ├── LocationService.cs │ │ │ ├── RestrictedService.cs │ │ │ ├── ServiceManagerTests.cs │ │ │ ├── SolarSystemService.cs │ │ │ ├── StationService.cs │ │ │ └── TestingServiceManager.cs │ ├── BehaviourTestSetup.cs │ ├── BehaviourTests │ │ ├── ClientBehaviourTest │ │ │ ├── TestEveClientSocket.cs │ │ │ ├── TestMachoClientTransport.cs │ │ │ ├── TestMachoServerTransport.cs │ │ │ ├── Tests │ │ │ │ ├── ClientInstance.cs │ │ │ │ ├── CommunicationSimulationTests.cs │ │ │ │ ├── NodeInstance.cs │ │ │ │ ├── ProxyInstance.cs │ │ │ │ └── SingleInstance.cs │ │ │ └── TransportManager.cs │ │ └── ServiceTests │ │ │ └── bookmarkTests.cs │ ├── EVESharp.Node.Unit.csproj │ ├── ItemAttributeArithmeticTests.cs │ ├── MemoryDatabase │ │ ├── Accounts.cs │ │ ├── Patches │ │ │ ├── Accounts.cs │ │ │ ├── Cluster.cs │ │ │ ├── Items.cs │ │ │ ├── Settings.cs │ │ │ └── Wallets.cs │ │ └── Wallets.cs │ └── Utils │ │ ├── Database.cs │ │ ├── HarmonyExtensions.cs │ │ ├── Inventory.cs │ │ ├── Service.cs │ │ └── Sessions.cs ├── EVESharp.Node │ ├── Accounts │ │ └── LoginQueue.cs │ ├── Agents │ │ └── AgentManager.cs │ ├── Cache │ │ └── CacheStorage.cs │ ├── Chat │ │ └── MailManager.cs │ ├── Client │ │ └── Notifications │ │ │ └── Database │ │ │ └── OnObjectPublicAttributesUpdated.cs │ ├── Configuration │ │ ├── Authentication.cs │ │ ├── Character.cs │ │ ├── Cluster.cs │ │ └── General.cs │ ├── Corporations │ │ ├── Audit.cs │ │ ├── Shares.cs │ │ └── SharesAccount.cs │ ├── Data │ │ └── Inventory │ │ │ ├── Ancestries.cs │ │ │ ├── Attributes.cs │ │ │ ├── Bloodlines.cs │ │ │ ├── Categories.cs │ │ │ ├── DefaultAttributes.cs │ │ │ ├── Exceptions │ │ │ └── ItemNotLoadedException.cs │ │ │ ├── Factions.cs │ │ │ ├── Groups.cs │ │ │ ├── Items.cs │ │ │ ├── MetaInventories.cs │ │ │ ├── SolarSystems.cs │ │ │ ├── Stations.cs │ │ │ └── Types.cs │ ├── Dogma │ │ ├── DogmaItems.cs │ │ ├── DogmaNotifications.cs │ │ ├── EffectsManager.cs │ │ └── Expressions.cs │ ├── EVESharp.Node.csproj │ ├── Market │ │ ├── Contract.cs │ │ ├── Contracts.cs │ │ ├── Wallet.cs │ │ └── Wallets.cs │ ├── Notifications │ │ ├── Nodes │ │ │ ├── Corps │ │ │ │ ├── OnCorporationChanged.cs │ │ │ │ ├── OnCorporationMemberChanged.cs │ │ │ │ ├── OnCorporationMemberUpdated.cs │ │ │ │ ├── OnCorporationOfficeRented.cs │ │ │ │ ├── OnCorporationOfficeUnrented.cs │ │ │ │ └── OnOfficeFolderDestroyed.cs │ │ │ └── Inventory │ │ │ │ └── OnItemChange.cs │ │ └── NotificationSender.cs │ ├── Program.cs │ ├── Relationships │ │ └── Standings.cs │ ├── Server │ │ ├── Node │ │ │ ├── MachoNet.cs │ │ │ └── Messages │ │ │ │ └── MessageQueue.cs │ │ ├── Proxy │ │ │ ├── MachoNet.cs │ │ │ └── Messages │ │ │ │ └── MessageQueue.cs │ │ ├── Shared │ │ │ ├── ClusterManager.cs │ │ │ ├── Exceptions │ │ │ │ └── RedirectCallRequest.cs │ │ │ ├── Handlers │ │ │ │ ├── LocalCallHandler.cs │ │ │ │ ├── LocalNotificationHandler.cs │ │ │ │ └── LocalPingHandler.cs │ │ │ ├── Helpers │ │ │ │ └── PacketCallHelper.cs │ │ │ ├── Messages │ │ │ │ ├── MachoMessageProcessor.cs │ │ │ │ └── MessageQueue.cs │ │ │ └── Transports │ │ │ │ └── TransportManager.cs │ │ └── Single │ │ │ ├── MachoNet.cs │ │ │ └── Messages │ │ │ └── MessageQueue.cs │ ├── Services │ │ ├── Account │ │ │ ├── account.cs │ │ │ ├── billMgr.cs │ │ │ └── userSvc.cs │ │ ├── Alliances │ │ │ └── allianceRegistry.cs │ │ ├── Authentication │ │ │ └── authentication.cs │ │ ├── BoundServiceManager.cs │ │ ├── CacheSvc │ │ │ └── objectCaching.cs │ │ ├── Characters │ │ │ ├── agentMgr.cs │ │ │ ├── bookmark.cs │ │ │ ├── certificateMgr.cs │ │ │ ├── character.cs │ │ │ ├── charmgr.cs │ │ │ ├── jumpCloneSvc.cs │ │ │ ├── onlineStatus.cs │ │ │ └── skillMgr.cs │ │ ├── Chat │ │ │ ├── LSC.cs │ │ │ └── voiceMgr.cs │ │ ├── Config │ │ │ └── config.cs │ │ ├── Contracts │ │ │ └── contractMgr.cs │ │ ├── Corporations │ │ │ ├── LPSvc.cs │ │ │ ├── MembersSparseRowsetService.cs │ │ │ ├── OfficesSparseRowsetService.cs │ │ │ ├── corpRegistry.cs │ │ │ ├── corpmgr.cs │ │ │ └── corporationSvc.cs │ │ ├── Data │ │ │ └── lookupSvc.cs │ │ ├── Database │ │ │ └── SparseRowsetDatabaseService.cs │ │ ├── Dogma │ │ │ └── dogmaIM.cs │ │ ├── Inventory │ │ │ ├── BoundInventory.cs │ │ │ ├── factory.cs │ │ │ ├── insuranceSvc.cs │ │ │ ├── invbroker.cs │ │ │ └── ship.cs │ │ ├── Market │ │ │ └── marketProxy.cs │ │ ├── Navigation │ │ │ └── map.cs │ │ ├── Network │ │ │ ├── alert.cs │ │ │ ├── clientStatsMgr.cs │ │ │ ├── machoNet.cs │ │ │ └── slash.cs │ │ ├── RemoteServiceManager.cs │ │ ├── ServiceManager.cs │ │ ├── Stations │ │ │ ├── corpStationMgr.cs │ │ │ ├── ramProxy.cs │ │ │ ├── repairSvc.cs │ │ │ ├── reprocessingSvc.cs │ │ │ ├── station.cs │ │ │ └── stationSvc.cs │ │ ├── Tutorial │ │ │ ├── petitioner.cs │ │ │ └── tutorialSvc.cs │ │ └── War │ │ │ ├── facWarMgr.cs │ │ │ ├── standing2.cs │ │ │ └── warRegistry.cs │ ├── Sessions │ │ └── SessionManager.cs │ ├── SimpleInject │ │ └── SerilogContextualLoggerInjectionBehavior.cs │ └── Timers.cs ├── EVESharp.Orchestrator │ ├── Controllers │ │ └── NodesController.cs │ ├── EVESharp.Orchestrator.csproj │ ├── Models │ │ └── Node.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Providers │ │ ├── IStartupInfoProvider.cs │ │ └── StartupInfoProvider.cs │ ├── Repositories │ │ ├── ClusterRepository.cs │ │ └── IClusterRepository.cs │ └── appsettings.json ├── EVESharp.TestExtensions │ ├── EVESharp.TestExtensions.csproj │ └── PyAssert.cs ├── EVESharp.Types.Unit │ ├── EVESharp.Types.Unit.csproj │ ├── Marshaling │ │ ├── BooleanMarshalingTests.cs │ │ ├── DecimalMarshalingTests.cs │ │ ├── IntegerMarshalingTests.cs │ │ ├── ListMarshalingTests.cs │ │ ├── MarshalData │ │ │ └── PackedRowMarshalData.cs │ │ ├── PackedRowMarshallingTests.cs │ │ ├── SavedListMarshaling.cs │ │ ├── StringMarshalingTests.cs │ │ ├── SubStreamMarshalingTests.cs │ │ ├── TokenMarshalingTests.cs │ │ └── TupleMarshalingTests.cs │ └── Types │ │ └── Primitives │ │ ├── PyBoolTests.cs │ │ ├── PyBufferTests.cs │ │ ├── PyChecksumedStreamTests.cs │ │ ├── PyDecimalTests.cs │ │ ├── PyDictionaryTests.cs │ │ ├── PyIntegerTests.cs │ │ ├── PyListTests.cs │ │ ├── PyNoneTests.cs │ │ ├── PyObjectDataTests.cs │ │ ├── PyObjectTests.cs │ │ ├── PyPackedRowTests.cs │ │ ├── PyStringTests.cs │ │ ├── PySubStreamTests.cs │ │ ├── PySubStructTests.cs │ │ ├── PyTokenTests.cs │ │ └── PyTupleTests.cs ├── EVESharp.Types │ ├── Collections │ │ ├── IPyDictionaryEnumerable.cs │ │ ├── IPyDictionaryEnumerator.cs │ │ ├── IPyEnumerable.cs │ │ ├── IPyEnumerator.cs │ │ ├── PyDictionary.cs │ │ ├── PyDictionaryEnumerator.cs │ │ ├── PyDictionaryKeyValuePair.cs │ │ ├── PyEnumerator.cs │ │ ├── PyList.cs │ │ └── PyTuple.cs │ ├── DBRowDescriptor.cs │ ├── EVESharp.Types.csproj │ ├── Extensions.cs │ ├── FieldType.cs │ ├── PrettyPrinter.cs │ ├── PyBool.cs │ ├── PyBuffer.cs │ ├── PyChecksumedStream.cs │ ├── PyDataType.cs │ ├── PyDecimal.cs │ ├── PyInteger.cs │ ├── PyNone.cs │ ├── PyObject.cs │ ├── PyObjectData.cs │ ├── PyPackedRow.cs │ ├── PyString.cs │ ├── PySubStream.cs │ ├── PySubStruct.cs │ ├── PyToken.cs │ └── Serialization │ │ ├── Marshal.cs │ │ ├── Opcode.cs │ │ ├── Specification.cs │ │ ├── StringTableUtils.cs │ │ └── Unmarshal.cs ├── EVESharp.sln └── EVESharp.sln.DotSettings └── Tools ├── EveLivePatches ├── allianceWindows.py ├── createLivePatchCodeExport.py ├── disableTutorials.py ├── godmaPrimeItem.py ├── inboxPatches.py ├── recruitmentEntryLoad.py └── recruitmentEntryStartup.py ├── LogServer-To-LogLite-Bridge ├── .gitignore ├── CMakeLists.txt ├── loglite.c ├── loglite.h ├── logserver.c ├── logserver.h └── main.c ├── client scripts ├── GraphicsBrowserForConsole.py └── GraphicsBrowserForInsider.py ├── evedec ├── .gitignore ├── README.md ├── evedec.ini ├── evedec.py ├── spark_parser │ ├── __init__.py │ ├── ast.py │ ├── scanner.py │ ├── spark.py │ └── version.py ├── uncompyle2 │ ├── __init__.py │ ├── disas.py │ ├── magics.py │ ├── opcode │ │ ├── __init__.py │ │ ├── opcode_23.py │ │ ├── opcode_24.py │ │ ├── opcode_25.py │ │ ├── opcode_26.py │ │ └── opcode_27.py │ ├── parser.py │ ├── scanner.py │ ├── scanner25.py │ ├── scanner26.py │ ├── scanner27.py │ ├── spark.py │ ├── verify.py │ └── walker.py ├── uncompyle6 │ ├── .gitignore │ ├── __init__.py │ ├── disas.py │ ├── linenumbers.py │ ├── main.py │ ├── parser.py │ ├── parsers │ │ ├── __init__.py │ │ ├── parse10.py │ │ ├── parse11.py │ │ ├── parse12.py │ │ ├── parse13.py │ │ ├── parse14.py │ │ ├── parse15.py │ │ ├── parse16.py │ │ ├── parse2.py │ │ ├── parse21.py │ │ ├── parse22.py │ │ ├── parse23.py │ │ ├── parse24.py │ │ ├── parse25.py │ │ ├── parse26.py │ │ ├── parse27.py │ │ ├── parse3.py │ │ ├── parse30.py │ │ ├── parse31.py │ │ ├── parse32.py │ │ ├── parse33.py │ │ ├── parse34.py │ │ ├── parse35.py │ │ ├── parse36.py │ │ ├── parse37.py │ │ ├── parse37base.py │ │ ├── parse38.py │ │ ├── reducecheck │ │ │ ├── __init__.py │ │ │ ├── and_check.py │ │ │ ├── and_not_check.py │ │ │ ├── aug_assign.py │ │ │ ├── except_handler.py │ │ │ ├── except_handler_else.py │ │ │ ├── ifelsestmt.py │ │ │ ├── iflaststmt.py │ │ │ ├── ifstmt.py │ │ │ ├── ifstmts_jump.py │ │ │ ├── or_check.py │ │ │ ├── testtrue.py │ │ │ ├── tryelsestmt.py │ │ │ ├── tryelsestmtl3.py │ │ │ ├── tryexcept.py │ │ │ ├── while1elsestmt.py │ │ │ └── while1stmt.py │ │ └── treenode.py │ ├── scanner.py │ ├── scanners │ │ ├── __init__.py │ │ ├── pypy27.py │ │ ├── pypy32.py │ │ ├── pypy33.py │ │ ├── pypy35.py │ │ ├── pypy36.py │ │ ├── scanner10.py │ │ ├── scanner11.py │ │ ├── scanner12.py │ │ ├── scanner13.py │ │ ├── scanner14.py │ │ ├── scanner15.py │ │ ├── scanner16.py │ │ ├── scanner2.py │ │ ├── scanner21.py │ │ ├── scanner22.py │ │ ├── scanner23.py │ │ ├── scanner24.py │ │ ├── scanner25.py │ │ ├── scanner26.py │ │ ├── scanner27.py │ │ ├── scanner3.py │ │ ├── scanner30.py │ │ ├── scanner31.py │ │ ├── scanner32.py │ │ ├── scanner33.py │ │ ├── scanner34.py │ │ ├── scanner35.py │ │ ├── scanner36.py │ │ ├── scanner37.py │ │ ├── scanner37base.py │ │ ├── scanner38.py │ │ ├── scanner39.py │ │ └── tok.py │ ├── semantics │ │ ├── __init__.py │ │ ├── aligner.py │ │ ├── check_ast.py │ │ ├── consts.py │ │ ├── customize.py │ │ ├── customize25.py │ │ ├── customize26_27.py │ │ ├── customize3.py │ │ ├── customize35.py │ │ ├── customize36.py │ │ ├── customize37.py │ │ ├── customize38.py │ │ ├── fragments.py │ │ ├── helper.py │ │ ├── linemap.py │ │ ├── make_function2.py │ │ ├── make_function3.py │ │ ├── make_function36.py │ │ ├── parser_error.py │ │ ├── pysource.py │ │ └── transform.py │ ├── show.py │ ├── util.py │ ├── verify.py │ └── version.py └── xdis │ ├── .gitignore │ ├── __init__.py │ ├── bytecode.py │ ├── codetype │ ├── .gitignore │ ├── __init__.py │ ├── base.py │ ├── code13.py │ ├── code15.py │ ├── code20.py │ ├── code30.py │ └── code38.py │ ├── cross_dis.py │ ├── disasm.py │ ├── dropbox │ ├── __init__.py │ └── decrypt25.py │ ├── instruction.py │ ├── lineoffsets.py │ ├── load.py │ ├── magics.py │ ├── marsh.py │ ├── namedtuple23.py │ ├── namedtuple24.py │ ├── op_imports.py │ ├── opcodes │ ├── __init__.py │ ├── base.py │ ├── opcode_10.py │ ├── opcode_11.py │ ├── opcode_13.py │ ├── opcode_14.py │ ├── opcode_15.py │ ├── opcode_16.py │ ├── opcode_20.py │ ├── opcode_21.py │ ├── opcode_22.py │ ├── opcode_23.py │ ├── opcode_24.py │ ├── opcode_25.py │ ├── opcode_26.py │ ├── opcode_26pypy.py │ ├── opcode_27.py │ ├── opcode_27pypy.py │ ├── opcode_2x.py │ ├── opcode_30.py │ ├── opcode_31.py │ ├── opcode_32.py │ ├── opcode_32pypy.py │ ├── opcode_33.py │ ├── opcode_33pypy.py │ ├── opcode_34.py │ ├── opcode_35.py │ ├── opcode_35pypy.py │ ├── opcode_36.py │ ├── opcode_36pypy.py │ ├── opcode_37.py │ ├── opcode_37pypy.py │ ├── opcode_38.py │ ├── opcode_39.py │ └── opcode_3x.py │ ├── std.py │ ├── unmarshal.py │ ├── util.py │ ├── verify.py │ ├── version.py │ ├── version_info.py │ └── wordcode.py └── precalculateSolarSystemJumps ├── .gitignore ├── precalculateSolarSystemJumps.py └── requirements.txt /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/.gitmodules -------------------------------------------------------------------------------- /.tokeignore: -------------------------------------------------------------------------------- 1 | /Database/ 2 | /Documentation/ 3 | /Tools/ -------------------------------------------------------------------------------- /Database/Database Report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Database Report.txt -------------------------------------------------------------------------------- /Database/Dynamic.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Dynamic.sql -------------------------------------------------------------------------------- /Database/Oficial/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/README -------------------------------------------------------------------------------- /Database/Oficial/chrBloodlines.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/chrBloodlines.sql -------------------------------------------------------------------------------- /Database/Oficial/chrCareerSpecialities.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/chrCareerSpecialities.sql -------------------------------------------------------------------------------- /Database/Oficial/chrCareers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/chrCareers.sql -------------------------------------------------------------------------------- /Database/Oficial/chrRaceSkills.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/chrRaceSkills.sql -------------------------------------------------------------------------------- /Database/Oficial/chrSchoolAgents.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/chrSchoolAgents.sql -------------------------------------------------------------------------------- /Database/Oficial/chrSchools.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/chrSchools.sql -------------------------------------------------------------------------------- /Database/Oficial/crpNPCCorporationTrades.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/crpNPCCorporationTrades.sql -------------------------------------------------------------------------------- /Database/Oficial/crpNPCCorporations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/crpNPCCorporations.sql -------------------------------------------------------------------------------- /Database/Oficial/crpNPCTickerNames.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/crpNPCTickerNames.sql -------------------------------------------------------------------------------- /Database/Oficial/crpStatic.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/crpStatic.sql -------------------------------------------------------------------------------- /Database/Oficial/crtRecommendations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/crtRecommendations.sql -------------------------------------------------------------------------------- /Database/Oficial/crtRelationships.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/crtRelationships.sql -------------------------------------------------------------------------------- /Database/Oficial/dgmAttributeTypes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/dgmAttributeTypes.sql -------------------------------------------------------------------------------- /Database/Oficial/dgmTypeAttributes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/dgmTypeAttributes.sql -------------------------------------------------------------------------------- /Database/Oficial/dgmTypeEffects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/dgmTypeEffects.sql -------------------------------------------------------------------------------- /Database/Oficial/eveConstants.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/eveConstants.sql -------------------------------------------------------------------------------- /Database/Oficial/eveMessages.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/eveMessages.sql -------------------------------------------------------------------------------- /Database/Oficial/eveRoles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/eveRoles.sql -------------------------------------------------------------------------------- /Database/Oficial/invShipTypes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/invShipTypes.sql -------------------------------------------------------------------------------- /Database/Oficial/invTypes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/invTypes.sql -------------------------------------------------------------------------------- /Database/Oficial/mapCelestialDescriptions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/mapCelestialDescriptions.sql -------------------------------------------------------------------------------- /Database/Oficial/mapLocationWormholeClasses.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Oficial/mapLocationWormholeClasses.sql -------------------------------------------------------------------------------- /Database/Procedures/001-agtGetAgents.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/001-agtGetAgents.sql -------------------------------------------------------------------------------- /Database/Procedures/002-agtGetInfo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/002-agtGetInfo.sql -------------------------------------------------------------------------------- /Database/Procedures/003-mktWalletGetBalance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/003-mktWalletGetBalance.sql -------------------------------------------------------------------------------- /Database/Procedures/004-mktWalletCreate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/004-mktWalletCreate.sql -------------------------------------------------------------------------------- /Database/Procedures/005-mktWalletSetBalance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/005-mktWalletSetBalance.sql -------------------------------------------------------------------------------- /Database/Procedures/006-mktWalletGet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/006-mktWalletGet.sql -------------------------------------------------------------------------------- /Database/Procedures/007-mktCreateJournalEntry.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/007-mktCreateJournalEntry.sql -------------------------------------------------------------------------------- /Database/Procedures/008-mktRecordTransaction.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/008-mktRecordTransaction.sql -------------------------------------------------------------------------------- /Database/Procedures/009-mktBillsGetReceivable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/009-mktBillsGetReceivable.sql -------------------------------------------------------------------------------- /Database/Procedures/010-mktBillsGetPayable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/010-mktBillsGetPayable.sql -------------------------------------------------------------------------------- /Database/Procedures/011-chrBookmarksGet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/011-chrBookmarksGet.sql -------------------------------------------------------------------------------- /Database/Procedures/012-chrBookmarksDelete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/012-chrBookmarksDelete.sql -------------------------------------------------------------------------------- /Database/Procedures/013-chrBookmarksCreate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/013-chrBookmarksCreate.sql -------------------------------------------------------------------------------- /Database/Procedures/014-crpAlliancesUpdate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/014-crpAlliancesUpdate.sql -------------------------------------------------------------------------------- /Database/Procedures/015-crpAlliancesList.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/015-crpAlliancesList.sql -------------------------------------------------------------------------------- /Database/Procedures/016-crpAlliancesGet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/016-crpAlliancesGet.sql -------------------------------------------------------------------------------- /Database/Procedures/017-crpAlliancesGetRelationships.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/017-crpAlliancesGetRelationships.sql -------------------------------------------------------------------------------- /Database/Procedures/018-crpAllianceGetMembersPublic.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/018-crpAllianceGetMembersPublic.sql -------------------------------------------------------------------------------- /Database/Procedures/019-crpAlliancesGetMembersPrivate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/019-crpAlliancesGetMembersPrivate.sql -------------------------------------------------------------------------------- /Database/Procedures/020-crpAlliancesUpdateRelationship.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/020-crpAlliancesUpdateRelationship.sql -------------------------------------------------------------------------------- /Database/Procedures/021-crpAlliancesRemoveRelationship.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/021-crpAlliancesRemoveRelationship.sql -------------------------------------------------------------------------------- /Database/Procedures/023-crpAlliancesListApplications.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/023-crpAlliancesListApplications.sql -------------------------------------------------------------------------------- /Database/Procedures/024-crpAlliancesUpdateApplication.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/024-crpAlliancesUpdateApplication.sql -------------------------------------------------------------------------------- /Database/Procedures/026-crpAlliancesCreate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/026-crpAlliancesCreate.sql -------------------------------------------------------------------------------- /Database/Procedures/027-crpGetAllianceApplication.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/027-crpGetAllianceApplication.sql -------------------------------------------------------------------------------- /Database/Procedures/028-crpListFactionCorporations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/028-crpListFactionCorporations.sql -------------------------------------------------------------------------------- /Database/Procedures/029-crpListFactionStationCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/029-crpListFactionStationCount.sql -------------------------------------------------------------------------------- /Database/Procedures/030-crpListFactionRegions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/030-crpListFactionRegions.sql -------------------------------------------------------------------------------- /Database/Procedures/031-crpListFactionConstellations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/031-crpListFactionConstellations.sql -------------------------------------------------------------------------------- /Database/Procedures/032-crpListFactionSolarSystems.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/032-crpListFactionSolarSystems.sql -------------------------------------------------------------------------------- /Database/Procedures/033-crpListFactionRaces.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/033-crpListFactionRaces.sql -------------------------------------------------------------------------------- /Database/Procedures/034-crpListNPCInfo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/034-crpListNPCInfo.sql -------------------------------------------------------------------------------- /Database/Procedures/035-crpListNPCDivisions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/035-crpListNPCDivisions.sql -------------------------------------------------------------------------------- /Database/Procedures/036-crpGetRoleGroups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/036-crpGetRoleGroups.sql -------------------------------------------------------------------------------- /Database/Procedures/037-crpGetRoles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/037-crpGetRoles.sql -------------------------------------------------------------------------------- /Database/Procedures/038-crpGetTitlesTemplate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/038-crpGetTitlesTemplate.sql -------------------------------------------------------------------------------- /Database/Procedures/039-crpGetTitles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/039-crpGetTitles.sql -------------------------------------------------------------------------------- /Database/Procedures/040-crpGetRecruitmentAdTypes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/040-crpGetRecruitmentAdTypes.sql -------------------------------------------------------------------------------- /Database/Procedures/041-crpListMedals.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/041-crpListMedals.sql -------------------------------------------------------------------------------- /Database/Procedures/042-crpListMedalDetails.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/042-crpListMedalDetails.sql -------------------------------------------------------------------------------- /Database/Procedures/043-crpListApplications.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/043-crpListApplications.sql -------------------------------------------------------------------------------- /Database/Procedures/044-crpListShareholders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/044-crpListShareholders.sql -------------------------------------------------------------------------------- /Database/Procedures/045-cluResolveClientAddress.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/045-cluResolveClientAddress.sql -------------------------------------------------------------------------------- /Database/Procedures/046-cluRegisterClientAddress.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/046-cluRegisterClientAddress.sql -------------------------------------------------------------------------------- /Database/Procedures/047-cluResetClientAddresses.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/047-cluResetClientAddresses.sql -------------------------------------------------------------------------------- /Database/Procedures/048-invSetItemNode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/048-invSetItemNode.sql -------------------------------------------------------------------------------- /Database/Procedures/049-invGetItemNode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/049-invGetItemNode.sql -------------------------------------------------------------------------------- /Database/Procedures/050-invClearNodeAssociation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/050-invClearNodeAssociation.sql -------------------------------------------------------------------------------- /Database/Procedures/051-cluResolveCharacter.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/051-cluResolveCharacter.sql -------------------------------------------------------------------------------- /Database/Procedures/052-cluRegisterAddress.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/052-cluRegisterAddress.sql -------------------------------------------------------------------------------- /Database/Procedures/053-cluResolveAddress.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/053-cluResolveAddress.sql -------------------------------------------------------------------------------- /Database/Procedures/055-cluRegisterSingleNode.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/055-cluRegisterSingleNode.sql -------------------------------------------------------------------------------- /Database/Procedures/056-cluCleanup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/056-cluCleanup.sql -------------------------------------------------------------------------------- /Database/Procedures/057-actExists.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/057-actExists.sql -------------------------------------------------------------------------------- /Database/Procedures/058-actLogin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/058-actLogin.sql -------------------------------------------------------------------------------- /Database/Procedures/059-actCreate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/059-actCreate.sql -------------------------------------------------------------------------------- /Database/Procedures/060-mktBillsCreate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/060-mktBillsCreate.sql -------------------------------------------------------------------------------- /Database/Procedures/061-crtGetCharacterCertificates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/061-crtGetCharacterCertificates.sql -------------------------------------------------------------------------------- /Database/Procedures/062-crtUpdateVisibilityFlags.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/062-crtUpdateVisibilityFlags.sql -------------------------------------------------------------------------------- /Database/Procedures/063-crtGrantCertificate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/063-crtGrantCertificate.sql -------------------------------------------------------------------------------- /Database/Procedures/064-crtGetRelationships.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/064-crtGetRelationships.sql -------------------------------------------------------------------------------- /Database/Procedures/065-mapCalculateJumps.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/065-mapCalculateJumps.sql -------------------------------------------------------------------------------- /Database/Procedures/066-invDestroyItem.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/066-invDestroyItem.sql -------------------------------------------------------------------------------- /Database/Procedures/067-mktGetKeyMap.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/067-mktGetKeyMap.sql -------------------------------------------------------------------------------- /Database/Procedures/068-chrGetPublicInfo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/068-chrGetPublicInfo.sql -------------------------------------------------------------------------------- /Database/Procedures/069-chrGetPublicInfo3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/069-chrGetPublicInfo3.sql -------------------------------------------------------------------------------- /Database/Procedures/070-crpAuditLogCreate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/070-crpAuditLogCreate.sql -------------------------------------------------------------------------------- /Database/Procedures/071-crpAuditRoleCreate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/071-crpAuditRoleCreate.sql -------------------------------------------------------------------------------- /Database/Procedures/072-crpGetAuditLog.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/072-crpGetAuditLog.sql -------------------------------------------------------------------------------- /Database/Procedures/073-crpGetAuditRole.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/073-crpGetAuditRole.sql -------------------------------------------------------------------------------- /Database/Procedures/074-chrGetOnlineCount.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/074-chrGetOnlineCount.sql -------------------------------------------------------------------------------- /Database/Procedures/075-chrClearLoginStatus.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/075-chrClearLoginStatus.sql -------------------------------------------------------------------------------- /Database/Procedures/076-crpVotesHousekeeping.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/076-crpVotesHousekeeping.sql -------------------------------------------------------------------------------- /Database/Procedures/077-crpAdsHousekeeping.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/077-crpAdsHousekeeping.sql -------------------------------------------------------------------------------- /Database/Procedures/080-crpVotesGetType.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/080-crpVotesGetType.sql -------------------------------------------------------------------------------- /Database/Procedures/081-crpSharesGet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/081-crpSharesGet.sql -------------------------------------------------------------------------------- /Database/Procedures/082-crpSharesSet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/082-crpSharesSet.sql -------------------------------------------------------------------------------- /Database/Procedures/083-crpVotesGetRate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/083-crpVotesGetRate.sql -------------------------------------------------------------------------------- /Database/Procedures/084-crpVotesApply.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/084-crpVotesApply.sql -------------------------------------------------------------------------------- /Database/Procedures/085-crpVotesIsExpired.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/085-crpVotesIsExpired.sql -------------------------------------------------------------------------------- /Database/Procedures/086-crpOfficeGetAtStation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/086-crpOfficeGetAtStation.sql -------------------------------------------------------------------------------- /Database/Procedures/087-crpOfficeDestroyOrImpound.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/087-crpOfficeDestroyOrImpound.sql -------------------------------------------------------------------------------- /Database/Procedures/088-crpOfficesGetExpired.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/088-crpOfficesGetExpired.sql -------------------------------------------------------------------------------- /Database/Procedures/089-crpVotesHasEnded.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/089-crpVotesHasEnded.sql -------------------------------------------------------------------------------- /Database/Procedures/090-crpVotesGetCorporation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/090-crpVotesGetCorporation.sql -------------------------------------------------------------------------------- /Database/Procedures/091-crpVotesExists.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/091-crpVotesExists.sql -------------------------------------------------------------------------------- /Database/Procedures/092-crpVotesHasVoted.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/092-crpVotesHasVoted.sql -------------------------------------------------------------------------------- /Database/Procedures/093-invItemsLockedGetLocations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/093-invItemsLockedGetLocations.sql -------------------------------------------------------------------------------- /Database/Procedures/094-invItemsLockedGetAtLocation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/094-invItemsLockedGetAtLocation.sql -------------------------------------------------------------------------------- /Database/Procedures/095-invItemsLockedAdd.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/095-invItemsLockedAdd.sql -------------------------------------------------------------------------------- /Database/Procedures/096-invItemsGetType.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/096-invItemsGetType.sql -------------------------------------------------------------------------------- /Database/Procedures/097-invItemsLockedRemove.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/097-invItemsLockedRemove.sql -------------------------------------------------------------------------------- /Database/Procedures/098-crpVotesGetAsSanctionable.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/098-crpVotesGetAsSanctionable.sql -------------------------------------------------------------------------------- /Database/Procedures/099-invItemsLockedRemoveByID.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/099-invItemsLockedRemoveByID.sql -------------------------------------------------------------------------------- /Database/Procedures/100-conGet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/100-conGet.sql -------------------------------------------------------------------------------- /Database/Procedures/101-conGetItemPreloadValues.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/101-conGetItemPreloadValues.sql -------------------------------------------------------------------------------- /Database/Procedures/102-conAddItem.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/102-conAddItem.sql -------------------------------------------------------------------------------- /Database/Procedures/103-conGetItems.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/103-conGetItems.sql -------------------------------------------------------------------------------- /Database/Procedures/103-conSaveInfo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/103-conSaveInfo.sql -------------------------------------------------------------------------------- /Database/Procedures/104-conGetMaximumBid.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/104-conGetMaximumBid.sql -------------------------------------------------------------------------------- /Database/Procedures/105-conGetOutbids.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/105-conGetOutbids.sql -------------------------------------------------------------------------------- /Database/Procedures/106-conPlaceBid.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/106-conPlaceBid.sql -------------------------------------------------------------------------------- /Database/Procedures/107-invGetItemsAtLocationByType.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/107-invGetItemsAtLocationByType.sql -------------------------------------------------------------------------------- /Database/Procedures/108-conGetRequestedItemsAtLocation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/108-conGetRequestedItemsAtLocation.sql -------------------------------------------------------------------------------- /Database/Procedures/109-conDestroy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/109-conDestroy.sql -------------------------------------------------------------------------------- /Database/Procedures/110-crpOfficesGetAtStation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/110-crpOfficesGetAtStation.sql -------------------------------------------------------------------------------- /Database/Procedures/111-invItemsLockedAnyAtStation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/111-invItemsLockedAnyAtStation.sql -------------------------------------------------------------------------------- /Database/Procedures/112-crpGetTaxRate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/112-crpGetTaxRate.sql -------------------------------------------------------------------------------- /Database/Procedures/113-invItemsGetAtLocationForOwner.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Procedures/113-invItemsGetAtLocationForOwner.sql -------------------------------------------------------------------------------- /Database/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/README -------------------------------------------------------------------------------- /Database/Server/00-account.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/00-account.sql -------------------------------------------------------------------------------- /Database/Server/01-character.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/01-character.sql -------------------------------------------------------------------------------- /Database/Server/02-corporations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/02-corporations.sql -------------------------------------------------------------------------------- /Database/Server/03-liveupdates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/03-liveupdates.sql -------------------------------------------------------------------------------- /Database/Server/04-entity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/04-entity.sql -------------------------------------------------------------------------------- /Database/Server/05-chrFriends.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/05-chrFriends.sql -------------------------------------------------------------------------------- /Database/Server/06-chatlist.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/06-chatlist.sql -------------------------------------------------------------------------------- /Database/Server/07-mktTransactions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/07-mktTransactions.sql -------------------------------------------------------------------------------- /Database/Server/08-chrSkillHistory.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/08-chrSkillHistory.sql -------------------------------------------------------------------------------- /Database/Server/09-chrCertificates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/09-chrCertificates.sql -------------------------------------------------------------------------------- /Database/Server/10-chrMedals.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/10-chrMedals.sql -------------------------------------------------------------------------------- /Database/Server/11-chrStandingTransactions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/11-chrStandingTransactions.sql -------------------------------------------------------------------------------- /Database/Server/12-chrCombatLogs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/12-chrCombatLogs.sql -------------------------------------------------------------------------------- /Database/Server/13-market_journal.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/13-market_journal.sql -------------------------------------------------------------------------------- /Database/Server/14-chrLPbalance.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/14-chrLPbalance.sql -------------------------------------------------------------------------------- /Database/Server/15-chrBounties.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/15-chrBounties.sql -------------------------------------------------------------------------------- /Database/Server/16-crpRoleGroups.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/16-crpRoleGroups.sql -------------------------------------------------------------------------------- /Database/Server/17-crpRoles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/17-crpRoles.sql -------------------------------------------------------------------------------- /Database/Server/18-crpTitles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/18-crpTitles.sql -------------------------------------------------------------------------------- /Database/Server/19-crpOffices.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/19-crpOffices.sql -------------------------------------------------------------------------------- /Database/Server/20-crpRecruitmentAdTypes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/20-crpRecruitmentAdTypes.sql -------------------------------------------------------------------------------- /Database/Server/21-crpRecruitmentAds.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/21-crpRecruitmentAds.sql -------------------------------------------------------------------------------- /Database/Server/22-crpMedals.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/22-crpMedals.sql -------------------------------------------------------------------------------- /Database/Server/23-chrShipInsurances.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/23-chrShipInsurances.sql -------------------------------------------------------------------------------- /Database/Server/24-chrBookmarks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/24-chrBookmarks.sql -------------------------------------------------------------------------------- /Database/Server/25-evemail.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/25-evemail.sql -------------------------------------------------------------------------------- /Database/Server/26-stations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/26-stations.sql -------------------------------------------------------------------------------- /Database/Server/27-mktOrders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/27-mktOrders.sql -------------------------------------------------------------------------------- /Database/Server/28-mktHistoryOld.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/28-mktHistoryOld.sql -------------------------------------------------------------------------------- /Database/Server/29-conContracts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/29-conContracts.sql -------------------------------------------------------------------------------- /Database/Server/30-conBids.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/30-conBids.sql -------------------------------------------------------------------------------- /Database/Server/31-conItems.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/31-conItems.sql -------------------------------------------------------------------------------- /Database/Server/32-invBlueprints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/32-invBlueprints.sql -------------------------------------------------------------------------------- /Database/Server/33-dgmExpressions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/33-dgmExpressions.sql -------------------------------------------------------------------------------- /Database/Server/34-eveGraphics.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/34-eveGraphics.sql -------------------------------------------------------------------------------- /Database/Server/35-ramAssemblyLines.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/35-ramAssemblyLines.sql -------------------------------------------------------------------------------- /Database/Server/36-mktRefTypes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/36-mktRefTypes.sql -------------------------------------------------------------------------------- /Database/Server/37-newLiveUpdates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/37-newLiveUpdates.sql -------------------------------------------------------------------------------- /Database/Server/38-mktWallet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/38-mktWallet.sql -------------------------------------------------------------------------------- /Database/Server/39-mktKeyMap.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/39-mktKeyMap.sql -------------------------------------------------------------------------------- /Database/Server/40-crpShares.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/40-crpShares.sql -------------------------------------------------------------------------------- /Database/Server/41-mktBills.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/41-mktBills.sql -------------------------------------------------------------------------------- /Database/Server/42-staticCharacters.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/42-staticCharacters.sql -------------------------------------------------------------------------------- /Database/Server/43-crpCeos.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/43-crpCeos.sql -------------------------------------------------------------------------------- /Database/Server/44-eveConstants.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/44-eveConstants.sql -------------------------------------------------------------------------------- /Database/Server/45-charactersToEntity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/45-charactersToEntity.sql -------------------------------------------------------------------------------- /Database/Server/46-newLiveUpdates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/46-newLiveUpdates.sql -------------------------------------------------------------------------------- /Database/Server/47-chrApplications.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/47-chrApplications.sql -------------------------------------------------------------------------------- /Database/Server/48-crpVotes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/48-crpVotes.sql -------------------------------------------------------------------------------- /Database/Server/49-crpAlliances.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/49-crpAlliances.sql -------------------------------------------------------------------------------- /Database/Server/50-allRelationships.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/50-allRelationships.sql -------------------------------------------------------------------------------- /Database/Server/51-newLiveUpdates.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/51-newLiveUpdates.sql -------------------------------------------------------------------------------- /Database/Server/52-crpApplications.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/52-crpApplications.sql -------------------------------------------------------------------------------- /Database/Server/53-orchestation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/53-orchestation.sql -------------------------------------------------------------------------------- /Database/Server/54-cluAddresses.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/54-cluAddresses.sql -------------------------------------------------------------------------------- /Database/Server/55-crpAudit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/55-crpAudit.sql -------------------------------------------------------------------------------- /Database/Server/56-invBlueprintTypes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/56-invBlueprintTypes.sql -------------------------------------------------------------------------------- /Database/Server/57-invItemsLocked.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Server/57-invItemsLocked.sql -------------------------------------------------------------------------------- /Database/Static.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Static.sql -------------------------------------------------------------------------------- /Database/Utils/Merge-Oficial.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Utils/Merge-Oficial.bat -------------------------------------------------------------------------------- /Database/Utils/Merge-Oficial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Utils/Merge-Oficial.sh -------------------------------------------------------------------------------- /Database/Utils/Merge-Server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Utils/Merge-Server.bat -------------------------------------------------------------------------------- /Database/Utils/Merge-Server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Database/Utils/Merge-Server.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/README.md -------------------------------------------------------------------------------- /Server/.idea/.idea.EVESharp/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/.idea/.idea.EVESharp/.idea/.gitignore -------------------------------------------------------------------------------- /Server/.idea/.idea.EVESharp/.idea/.name: -------------------------------------------------------------------------------- 1 | EVESharp -------------------------------------------------------------------------------- /Server/.idea/.idea.EVESharp/.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/.idea/.idea.EVESharp/.idea/dataSources.xml -------------------------------------------------------------------------------- /Server/.idea/.idea.EVESharp/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/.idea/.idea.EVESharp/.idea/indexLayout.xml -------------------------------------------------------------------------------- /Server/.idea/.idea.EVESharp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/.idea/.idea.EVESharp/.idea/vcs.xml -------------------------------------------------------------------------------- /Server/EVESharp.API/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Controllers/AccountController.cs -------------------------------------------------------------------------------- /Server/EVESharp.API/Controllers/CharacterController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Controllers/CharacterController.cs -------------------------------------------------------------------------------- /Server/EVESharp.API/Controllers/ImagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Controllers/ImagesController.cs -------------------------------------------------------------------------------- /Server/EVESharp.API/Controllers/ServerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Controllers/ServerController.cs -------------------------------------------------------------------------------- /Server/EVESharp.API/EVESharp.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/EVESharp.API.csproj -------------------------------------------------------------------------------- /Server/EVESharp.API/Formatters/CustomXmlFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Formatters/CustomXmlFormatter.cs -------------------------------------------------------------------------------- /Server/EVESharp.API/Models/AccountRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Models/AccountRow.cs -------------------------------------------------------------------------------- /Server/EVESharp.API/Models/AttributesModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Models/AttributesModel.cs -------------------------------------------------------------------------------- /Server/EVESharp.API/Models/CertificateRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Models/CertificateRow.cs -------------------------------------------------------------------------------- /Server/EVESharp.API/Models/CharacterModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Models/CharacterModel.cs -------------------------------------------------------------------------------- /Server/EVESharp.API/Models/CharacterRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Models/CharacterRow.cs -------------------------------------------------------------------------------- /Server/EVESharp.API/Models/CorporationRoleRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Models/CorporationRoleRow.cs -------------------------------------------------------------------------------- /Server/EVESharp.API/Models/EVEApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Models/EVEApiModel.cs -------------------------------------------------------------------------------- /Server/EVESharp.API/Models/MarketOrderRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Models/MarketOrderRow.cs -------------------------------------------------------------------------------- /Server/EVESharp.API/Models/Rowset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Models/Rowset.cs -------------------------------------------------------------------------------- /Server/EVESharp.API/Models/RowsetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Models/RowsetModel.cs -------------------------------------------------------------------------------- /Server/EVESharp.API/Models/ServerStatusModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Models/ServerStatusModel.cs -------------------------------------------------------------------------------- /Server/EVESharp.API/Models/SkillQueueRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Models/SkillQueueRow.cs -------------------------------------------------------------------------------- /Server/EVESharp.API/Models/SkillRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Models/SkillRow.cs -------------------------------------------------------------------------------- /Server/EVESharp.API/Models/TitleRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Models/TitleRow.cs -------------------------------------------------------------------------------- /Server/EVESharp.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Program.cs -------------------------------------------------------------------------------- /Server/EVESharp.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /Server/EVESharp.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/appsettings.Development.json -------------------------------------------------------------------------------- /Server/EVESharp.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.API/appsettings.json -------------------------------------------------------------------------------- /Server/EVESharp.ASP.Common/EVESharp.ASP.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.ASP.Common/EVESharp.ASP.Common.csproj -------------------------------------------------------------------------------- /Server/EVESharp.Common/Checksum/Adler32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Common/Checksum/Adler32.cs -------------------------------------------------------------------------------- /Server/EVESharp.Common/Checksum/CRC32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Common/Checksum/CRC32.cs -------------------------------------------------------------------------------- /Server/EVESharp.Common/Compression/ZeroCompressionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Common/Compression/ZeroCompressionUtils.cs -------------------------------------------------------------------------------- /Server/EVESharp.Common/Compression/ZlibHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Common/Compression/ZlibHelper.cs -------------------------------------------------------------------------------- /Server/EVESharp.Common/Configuration/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Common/Configuration/Database.cs -------------------------------------------------------------------------------- /Server/EVESharp.Common/Configuration/FileLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Common/Configuration/FileLog.cs -------------------------------------------------------------------------------- /Server/EVESharp.Common/Configuration/Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Common/Configuration/Loader.cs -------------------------------------------------------------------------------- /Server/EVESharp.Common/Configuration/LogLite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Common/Configuration/LogLite.cs -------------------------------------------------------------------------------- /Server/EVESharp.Common/Configuration/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Common/Configuration/Logging.cs -------------------------------------------------------------------------------- /Server/EVESharp.Common/Configuration/MachoNet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Common/Configuration/MachoNet.cs -------------------------------------------------------------------------------- /Server/EVESharp.Common/Constants/Network.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Common/Constants/Network.cs -------------------------------------------------------------------------------- /Server/EVESharp.Common/EVESharp.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Common/EVESharp.Common.csproj -------------------------------------------------------------------------------- /Server/EVESharp.Common/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Common/Extensions.cs -------------------------------------------------------------------------------- /Server/EVESharp.Common/HexDump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Common/HexDump.cs -------------------------------------------------------------------------------- /Server/EVESharp.Common/Logging/LogLiteSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Common/Logging/LogLiteSink.cs -------------------------------------------------------------------------------- /Server/EVESharp.Common/Logging/LoggingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Common/Logging/LoggingExtensions.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Account/AccountType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Account/AccountType.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Account/Roles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Account/Roles.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Alliances/ApplicationEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Alliances/ApplicationEntry.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Alliances/ApplicationStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Alliances/ApplicationStatus.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Alliances/Relationships.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Alliances/Relationships.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Certificates/Relationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Certificates/Relationship.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Characters/SkillHistoryReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Characters/SkillHistoryReason.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Chat/ChannelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Chat/ChannelType.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Chat/Roles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Chat/Roles.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Configuration/Constant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Configuration/Constant.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Configuration/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Configuration/Constants.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Configuration/IConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Configuration/IConstants.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Corporations/CorporationRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Corporations/CorporationRole.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Database.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/DatabaseAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/DatabaseAccessor.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/DbLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/DbLock.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Dogma/Association.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Dogma/Association.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Dogma/Compiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Dogma/Compiler.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Dogma/Effect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Dogma/Effect.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Dogma/EffectCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Dogma/EffectCategory.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Dogma/EffectOperand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Dogma/EffectOperand.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Dogma/EffectsEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Dogma/EffectsEnum.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Dogma/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Dogma/Environment.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Dogma/Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Dogma/Expression.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Dogma/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Dogma/Extensions.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Dogma/IExpressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Dogma/IExpressions.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/EVEMath/Skills.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/EVEMath/Skills.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/EVESharp.Database.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/EVESharp.Database.csproj -------------------------------------------------------------------------------- /Server/EVESharp.Database/Extensions/AccountDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Extensions/AccountDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Extensions/AgentDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Extensions/AgentDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Extensions/AlliancesDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Extensions/AlliancesDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Extensions/AuditingDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Extensions/AuditingDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Extensions/BillsDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Extensions/BillsDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Extensions/BookmarkDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Extensions/BookmarkDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Extensions/CertificatesDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Extensions/CertificatesDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Extensions/CharacterDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Extensions/CharacterDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Extensions/ClusterDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Extensions/ClusterDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Extensions/ContractsDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Extensions/ContractsDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Extensions/CorporationsDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Extensions/CorporationsDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Extensions/Inventory/DogmaDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Extensions/Inventory/DogmaDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Extensions/ItemDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Extensions/ItemDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Extensions/LockExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Extensions/LockExtensions.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Extensions/MailDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Extensions/MailDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Extensions/MapDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Extensions/MapDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Extensions/SettingsDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Extensions/SettingsDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Extensions/StationsDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Extensions/StationsDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Extensions/WalletDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Extensions/WalletDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/IDatabase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/IDatabase.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Inventory/Containers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Inventory/Containers.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Inventory/Flags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Inventory/Flags.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Inventory/Groups/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Inventory/Groups/Group.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Inventory/Groups/GroupID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Inventory/Groups/GroupID.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Inventory/Groups/IGroups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Inventory/Groups/IGroups.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Inventory/ItemRanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Inventory/ItemRanges.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Inventory/Stations/Operation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Inventory/Stations/Operation.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Inventory/Stations/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Inventory/Stations/Service.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Inventory/Stations/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Inventory/Stations/Type.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Inventory/Types/ITypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Inventory/Types/ITypes.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Inventory/Types/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Inventory/Types/Type.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Inventory/Types/TypeID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Inventory/Types/TypeID.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Market/BillTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Market/BillTypes.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Market/Contract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Market/Contract.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Market/ContractStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Market/ContractStatus.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Market/ContractTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Market/ContractTypes.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Market/MarketOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Market/MarketOrder.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Market/MarketReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Market/MarketReference.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Market/PreloadedContractItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Market/PreloadedContractItem.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Market/RequestedContractItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Market/RequestedContractItem.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Market/TransactionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Market/TransactionType.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Market/WalletKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Market/WalletKeys.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/ReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/ReaderExtensions.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Standings/EventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Standings/EventType.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Types/CRowset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Types/CRowset.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Types/IndexRowset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Types/IndexRowset.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Types/KeyVal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Types/KeyVal.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Types/Row.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Types/Row.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/Types/Rowset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/Types/Rowset.cs -------------------------------------------------------------------------------- /Server/EVESharp.Database/WrappedDbDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Database/WrappedDbDataReader.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/Ball.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/Ball.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/BallData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/BallData.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/BallFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/BallFlag.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/BallHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/BallHeader.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/BallMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/BallMode.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/CloakMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/CloakMode.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/EVESharp.Destiny.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/EVESharp.Destiny.csproj -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/ExtraBallHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/ExtraBallHeader.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/FollowState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/FollowState.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/FormationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/FormationState.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/GotoState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/GotoState.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/Header.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/MiniBall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/MiniBall.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/MissileState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/MissileState.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/MushroomState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/MushroomState.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/PrettyPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/PrettyPrinter.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/TrollState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/TrollState.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/UpdateReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/UpdateReader.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/Utility.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/Vector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/Vector3.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/WarpState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/WarpState.cs -------------------------------------------------------------------------------- /Server/EVESharp.Destiny/Zlib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Destiny/Zlib.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE.Unit/EVESharp.EVE.Unit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE.Unit/EVESharp.EVE.Unit.csproj -------------------------------------------------------------------------------- /Server/EVESharp.EVE.Unit/Packets/ClientCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE.Unit/Packets/ClientCommandTests.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Accounts/LoginQueueEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Accounts/LoginQueueEntry.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Accounts/LoginStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Accounts/LoginStatus.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Configuration/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Configuration/Constants.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Corporations/IAudit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Corporations/IAudit.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Corporations/IShares.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Corporations/IShares.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Corporations/ISharesAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Corporations/ISharesAccount.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Data/Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Data/Cache.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Data/Inventory/IFactions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Data/Inventory/IFactions.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Data/Inventory/IItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Data/Inventory/IItems.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Data/Inventory/IMetaInventories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Data/Inventory/IMetaInventories.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Data/Inventory/ISolarSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Data/Inventory/ISolarSystems.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Data/Inventory/IStations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Data/Inventory/IStations.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Data/Inventory/Items/ItemEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Data/Inventory/Items/ItemEntity.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Data/Inventory/Items/Types/Clone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Data/Inventory/Items/Types/Clone.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Data/Inventory/Items/Types/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Data/Inventory/Items/Types/Item.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Data/Inventory/Items/Types/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Data/Inventory/Items/Types/Region.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Data/Inventory/Items/Types/Ship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Data/Inventory/Items/Types/Ship.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Data/Inventory/Items/Types/Skill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Data/Inventory/Items/Types/Skill.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Data/Messages/MLS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Data/Messages/MLS.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Data/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Data/Version.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Dogma/IDogmaItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Dogma/IDogmaItems.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Dogma/Interpreter/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Dogma/Interpreter/Environment.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Dogma/Interpreter/Interpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Dogma/Interpreter/Interpreter.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Dogma/Interpreter/Opcodes/Opcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Dogma/Interpreter/Opcodes/Opcode.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Dogma/ItemEffects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Dogma/ItemEffects.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/EVESharp.EVE.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/EVESharp.EVE.csproj -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Exceptions/CanOnlyDoInStations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Exceptions/CanOnlyDoInStations.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Exceptions/CustomError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Exceptions/CustomError.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Exceptions/CustomInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Exceptions/CustomInfo.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Exceptions/LSC/ChtNPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Exceptions/LSC/ChtNPC.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Exceptions/LSC/ChtWrongRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Exceptions/LSC/ChtWrongRole.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Exceptions/LSC/LSCCannotDestroy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Exceptions/LSC/LSCCannotDestroy.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Exceptions/LSC/LSCCannotJoin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Exceptions/LSC/LSCCannotJoin.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Exceptions/NotEnoughMoney.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Exceptions/NotEnoughMoney.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Exceptions/SkillRequired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Exceptions/SkillRequired.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Exceptions/UserError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Exceptions/UserError.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Exceptions/slash/SlashError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Exceptions/slash/SlashError.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/ITimers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/ITimers.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Market/IContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Market/IContract.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Market/IContracts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Market/IContracts.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Market/IWallet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Market/IWallet.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Market/IWallets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Market/IWallets.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Messages/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Messages/IMessage.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Messages/Queue/IMessageQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Messages/Queue/IMessageQueue.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Messages/Queue/MessageQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Messages/Queue/MessageQueue.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Network/Caching/CacheObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Network/Caching/CacheObjectType.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Network/Caching/ICacheStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Network/Caching/ICacheStorage.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Network/IClusterManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Network/IClusterManager.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Network/IMachoNet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Network/IMachoNet.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Network/Messages/MachoMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Network/Messages/MachoMessage.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Network/RunMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Network/RunMode.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Network/Services/AccessLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Network/Services/AccessLevel.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Network/Services/BoundService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Network/Services/BoundService.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Network/Services/IServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Network/Services/IServiceManager.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Network/Services/RemoteCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Network/Services/RemoteCall.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Network/Services/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Network/Services/Service.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Network/Services/ServiceCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Network/Services/ServiceCall.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Network/Services/SparseRowset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Network/Services/SparseRowset.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Network/Sockets/EVEListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Network/Sockets/EVEListener.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Network/Sockets/EVESocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Network/Sockets/EVESocket.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Network/Sockets/IEVEListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Network/Sockets/IEVEListener.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Network/Sockets/IEVESocket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Network/Sockets/IEVESocket.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Network/Sockets/StreamPacketizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Network/Sockets/StreamPacketizer.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Notifications/Chat/OnLSC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Notifications/Chat/OnLSC.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Notifications/ComparisonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Notifications/ComparisonType.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Notifications/IDogmaNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Notifications/IDogmaNotifications.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Notifications/INotificationSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Notifications/INotificationSender.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Notifications/NotificationIdType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Notifications/NotificationIdType.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/OldDatabase/ChatDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/OldDatabase/ChatDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/OldDatabase/ConfigDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/OldDatabase/ConfigDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/OldDatabase/ContractDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/OldDatabase/ContractDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/OldDatabase/CorporationDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/OldDatabase/CorporationDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/OldDatabase/FactoryDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/OldDatabase/FactoryDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/OldDatabase/InsuranceDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/OldDatabase/InsuranceDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/OldDatabase/ItemDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/OldDatabase/ItemDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/OldDatabase/LookupDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/OldDatabase/LookupDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/OldDatabase/MarketDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/OldDatabase/MarketDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/OldDatabase/OldCharacterDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/OldDatabase/OldCharacterDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/OldDatabase/RAMDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/OldDatabase/RAMDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/OldDatabase/RepairDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/OldDatabase/RepairDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/OldDatabase/ReprocessingDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/OldDatabase/ReprocessingDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/OldDatabase/SkillDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/OldDatabase/SkillDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/OldDatabase/StandingDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/OldDatabase/StandingDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/OldDatabase/StationDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/OldDatabase/StationDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/OldDatabase/TutorialsDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/OldDatabase/TutorialsDB.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Packets/AuthenticationReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Packets/AuthenticationReq.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Packets/AuthenticationRsp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Packets/AuthenticationRsp.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Packets/ClientCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Packets/ClientCommand.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Packets/Complex/CachedHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Packets/Complex/CachedHint.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Packets/Complex/CachedObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Packets/Complex/CachedObject.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Packets/Complex/ItemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Packets/Complex/ItemInfo.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Packets/Complex/WarInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Packets/Complex/WarInfo.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Packets/GPSTransportClosed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Packets/GPSTransportClosed.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Packets/HandshakeAck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Packets/HandshakeAck.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Packets/IdentificationReq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Packets/IdentificationReq.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Packets/IdentificationRsp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Packets/IdentificationRsp.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Packets/LowLevelVersionExchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Packets/LowLevelVersionExchange.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Packets/PlaceboRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Packets/PlaceboRequest.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Packets/SessionChangeNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Packets/SessionChangeNotification.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Permissions/Inventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Permissions/Inventory.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Permissions/Market.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Permissions/Market.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Relationships/IStandings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Relationships/IStandings.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Sessions/ISessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Sessions/ISessionManager.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Sessions/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Sessions/Session.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Sessions/SessionChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Sessions/SessionChange.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Sessions/SessionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Sessions/SessionExtensions.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Sessions/SessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Sessions/SessionManager.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Timer.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Types/Network/MachoErrorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Types/Network/MachoErrorType.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Types/Network/PyAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Types/Network/PyAddress.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Types/Network/PyAddressAny.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Types/Network/PyAddressAny.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Types/Network/PyAddressBroadcast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Types/Network/PyAddressBroadcast.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Types/Network/PyAddressClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Types/Network/PyAddressClient.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Types/Network/PyAddressNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Types/Network/PyAddressNode.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Types/Network/PyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Types/Network/PyException.cs -------------------------------------------------------------------------------- /Server/EVESharp.EVE/Types/Network/PyPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.EVE/Types/Network/PyPacket.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node.Unit/BehaviourTestSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node.Unit/BehaviourTestSetup.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node.Unit/EVESharp.Node.Unit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node.Unit/EVESharp.Node.Unit.csproj -------------------------------------------------------------------------------- /Server/EVESharp.Node.Unit/MemoryDatabase/Accounts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node.Unit/MemoryDatabase/Accounts.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node.Unit/MemoryDatabase/Wallets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node.Unit/MemoryDatabase/Wallets.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node.Unit/Utils/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node.Unit/Utils/Database.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node.Unit/Utils/HarmonyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node.Unit/Utils/HarmonyExtensions.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node.Unit/Utils/Inventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node.Unit/Utils/Inventory.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node.Unit/Utils/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node.Unit/Utils/Service.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node.Unit/Utils/Sessions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node.Unit/Utils/Sessions.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Accounts/LoginQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Accounts/LoginQueue.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Agents/AgentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Agents/AgentManager.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Cache/CacheStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Cache/CacheStorage.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Chat/MailManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Chat/MailManager.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Configuration/Authentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Configuration/Authentication.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Configuration/Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Configuration/Character.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Configuration/Cluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Configuration/Cluster.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Configuration/General.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Configuration/General.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Corporations/Audit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Corporations/Audit.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Corporations/Shares.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Corporations/Shares.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Corporations/SharesAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Corporations/SharesAccount.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Data/Inventory/Ancestries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Data/Inventory/Ancestries.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Data/Inventory/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Data/Inventory/Attributes.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Data/Inventory/Bloodlines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Data/Inventory/Bloodlines.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Data/Inventory/Categories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Data/Inventory/Categories.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Data/Inventory/DefaultAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Data/Inventory/DefaultAttributes.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Data/Inventory/Factions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Data/Inventory/Factions.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Data/Inventory/Groups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Data/Inventory/Groups.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Data/Inventory/Items.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Data/Inventory/Items.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Data/Inventory/MetaInventories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Data/Inventory/MetaInventories.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Data/Inventory/SolarSystems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Data/Inventory/SolarSystems.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Data/Inventory/Stations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Data/Inventory/Stations.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Data/Inventory/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Data/Inventory/Types.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Dogma/DogmaItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Dogma/DogmaItems.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Dogma/DogmaNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Dogma/DogmaNotifications.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Dogma/EffectsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Dogma/EffectsManager.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Dogma/Expressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Dogma/Expressions.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/EVESharp.Node.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/EVESharp.Node.csproj -------------------------------------------------------------------------------- /Server/EVESharp.Node/Market/Contract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Market/Contract.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Market/Contracts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Market/Contracts.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Market/Wallet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Market/Wallet.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Market/Wallets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Market/Wallets.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Notifications/NotificationSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Notifications/NotificationSender.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Program.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Relationships/Standings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Relationships/Standings.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Server/Node/MachoNet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Server/Node/MachoNet.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Server/Proxy/MachoNet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Server/Proxy/MachoNet.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Server/Shared/ClusterManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Server/Shared/ClusterManager.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Server/Single/MachoNet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Server/Single/MachoNet.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Account/account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Account/account.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Account/billMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Account/billMgr.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Account/userSvc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Account/userSvc.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/BoundServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/BoundServiceManager.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/CacheSvc/objectCaching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/CacheSvc/objectCaching.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Characters/agentMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Characters/agentMgr.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Characters/bookmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Characters/bookmark.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Characters/character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Characters/character.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Characters/charmgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Characters/charmgr.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Characters/jumpCloneSvc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Characters/jumpCloneSvc.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Characters/onlineStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Characters/onlineStatus.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Characters/skillMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Characters/skillMgr.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Chat/LSC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Chat/LSC.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Chat/voiceMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Chat/voiceMgr.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Config/config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Config/config.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Contracts/contractMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Contracts/contractMgr.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Corporations/LPSvc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Corporations/LPSvc.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Corporations/corpmgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Corporations/corpmgr.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Data/lookupSvc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Data/lookupSvc.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Dogma/dogmaIM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Dogma/dogmaIM.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Inventory/factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Inventory/factory.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Inventory/insuranceSvc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Inventory/insuranceSvc.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Inventory/invbroker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Inventory/invbroker.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Inventory/ship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Inventory/ship.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Market/marketProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Market/marketProxy.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Navigation/map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Navigation/map.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Network/alert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Network/alert.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Network/clientStatsMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Network/clientStatsMgr.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Network/machoNet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Network/machoNet.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Network/slash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Network/slash.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/RemoteServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/RemoteServiceManager.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/ServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/ServiceManager.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Stations/corpStationMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Stations/corpStationMgr.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Stations/ramProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Stations/ramProxy.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Stations/repairSvc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Stations/repairSvc.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Stations/station.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Stations/station.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Stations/stationSvc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Stations/stationSvc.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Tutorial/petitioner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Tutorial/petitioner.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/Tutorial/tutorialSvc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/Tutorial/tutorialSvc.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/War/facWarMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/War/facWarMgr.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/War/standing2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/War/standing2.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Services/War/warRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Services/War/warRegistry.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Sessions/SessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Sessions/SessionManager.cs -------------------------------------------------------------------------------- /Server/EVESharp.Node/Timers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Node/Timers.cs -------------------------------------------------------------------------------- /Server/EVESharp.Orchestrator/Models/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Orchestrator/Models/Node.cs -------------------------------------------------------------------------------- /Server/EVESharp.Orchestrator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Orchestrator/Program.cs -------------------------------------------------------------------------------- /Server/EVESharp.Orchestrator/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Orchestrator/appsettings.json -------------------------------------------------------------------------------- /Server/EVESharp.TestExtensions/PyAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.TestExtensions/PyAssert.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types.Unit/EVESharp.Types.Unit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types.Unit/EVESharp.Types.Unit.csproj -------------------------------------------------------------------------------- /Server/EVESharp.Types/Collections/IPyEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/Collections/IPyEnumerable.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/Collections/IPyEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/Collections/IPyEnumerator.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/Collections/PyDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/Collections/PyDictionary.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/Collections/PyEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/Collections/PyEnumerator.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/Collections/PyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/Collections/PyList.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/Collections/PyTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/Collections/PyTuple.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/DBRowDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/DBRowDescriptor.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/EVESharp.Types.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/EVESharp.Types.csproj -------------------------------------------------------------------------------- /Server/EVESharp.Types/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/Extensions.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/FieldType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/FieldType.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/PrettyPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/PrettyPrinter.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/PyBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/PyBool.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/PyBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/PyBuffer.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/PyChecksumedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/PyChecksumedStream.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/PyDataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/PyDataType.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/PyDecimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/PyDecimal.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/PyInteger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/PyInteger.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/PyNone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/PyNone.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/PyObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/PyObject.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/PyObjectData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/PyObjectData.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/PyPackedRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/PyPackedRow.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/PyString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/PyString.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/PySubStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/PySubStream.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/PySubStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/PySubStruct.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/PyToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/PyToken.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/Serialization/Marshal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/Serialization/Marshal.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/Serialization/Opcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/Serialization/Opcode.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/Serialization/Specification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/Serialization/Specification.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/Serialization/StringTableUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/Serialization/StringTableUtils.cs -------------------------------------------------------------------------------- /Server/EVESharp.Types/Serialization/Unmarshal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.Types/Serialization/Unmarshal.cs -------------------------------------------------------------------------------- /Server/EVESharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.sln -------------------------------------------------------------------------------- /Server/EVESharp.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Server/EVESharp.sln.DotSettings -------------------------------------------------------------------------------- /Tools/EveLivePatches/allianceWindows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/EveLivePatches/allianceWindows.py -------------------------------------------------------------------------------- /Tools/EveLivePatches/createLivePatchCodeExport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/EveLivePatches/createLivePatchCodeExport.py -------------------------------------------------------------------------------- /Tools/EveLivePatches/disableTutorials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/EveLivePatches/disableTutorials.py -------------------------------------------------------------------------------- /Tools/EveLivePatches/godmaPrimeItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/EveLivePatches/godmaPrimeItem.py -------------------------------------------------------------------------------- /Tools/EveLivePatches/inboxPatches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/EveLivePatches/inboxPatches.py -------------------------------------------------------------------------------- /Tools/EveLivePatches/recruitmentEntryLoad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/EveLivePatches/recruitmentEntryLoad.py -------------------------------------------------------------------------------- /Tools/EveLivePatches/recruitmentEntryStartup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/EveLivePatches/recruitmentEntryStartup.py -------------------------------------------------------------------------------- /Tools/LogServer-To-LogLite-Bridge/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/LogServer-To-LogLite-Bridge/.gitignore -------------------------------------------------------------------------------- /Tools/LogServer-To-LogLite-Bridge/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/LogServer-To-LogLite-Bridge/CMakeLists.txt -------------------------------------------------------------------------------- /Tools/LogServer-To-LogLite-Bridge/loglite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/LogServer-To-LogLite-Bridge/loglite.c -------------------------------------------------------------------------------- /Tools/LogServer-To-LogLite-Bridge/loglite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/LogServer-To-LogLite-Bridge/loglite.h -------------------------------------------------------------------------------- /Tools/LogServer-To-LogLite-Bridge/logserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/LogServer-To-LogLite-Bridge/logserver.c -------------------------------------------------------------------------------- /Tools/LogServer-To-LogLite-Bridge/logserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/LogServer-To-LogLite-Bridge/logserver.h -------------------------------------------------------------------------------- /Tools/LogServer-To-LogLite-Bridge/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/LogServer-To-LogLite-Bridge/main.c -------------------------------------------------------------------------------- /Tools/client scripts/GraphicsBrowserForConsole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/client scripts/GraphicsBrowserForConsole.py -------------------------------------------------------------------------------- /Tools/client scripts/GraphicsBrowserForInsider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/client scripts/GraphicsBrowserForInsider.py -------------------------------------------------------------------------------- /Tools/evedec/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/.gitignore -------------------------------------------------------------------------------- /Tools/evedec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/README.md -------------------------------------------------------------------------------- /Tools/evedec/evedec.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/evedec.ini -------------------------------------------------------------------------------- /Tools/evedec/evedec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/evedec.py -------------------------------------------------------------------------------- /Tools/evedec/spark_parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/spark_parser/__init__.py -------------------------------------------------------------------------------- /Tools/evedec/spark_parser/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/spark_parser/ast.py -------------------------------------------------------------------------------- /Tools/evedec/spark_parser/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/spark_parser/scanner.py -------------------------------------------------------------------------------- /Tools/evedec/spark_parser/spark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/spark_parser/spark.py -------------------------------------------------------------------------------- /Tools/evedec/spark_parser/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/spark_parser/version.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle2/__init__.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle2/disas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle2/disas.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle2/magics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle2/magics.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle2/opcode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/evedec/uncompyle2/opcode/opcode_23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle2/opcode/opcode_23.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle2/opcode/opcode_24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle2/opcode/opcode_24.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle2/opcode/opcode_25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle2/opcode/opcode_25.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle2/opcode/opcode_26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle2/opcode/opcode_26.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle2/opcode/opcode_27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle2/opcode/opcode_27.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle2/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle2/parser.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle2/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle2/scanner.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle2/scanner25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle2/scanner25.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle2/scanner26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle2/scanner26.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle2/scanner27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle2/scanner27.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle2/spark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle2/spark.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle2/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle2/verify.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle2/walker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle2/walker.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/.gitignore: -------------------------------------------------------------------------------- 1 | /.python-version 2 | -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/__init__.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/disas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/disas.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/linenumbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/linenumbers.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/main.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parser.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/__init__.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse10.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse11.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse12.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse13.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse14.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse15.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse16.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse2.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse21.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse22.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse23.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse24.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse25.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse26.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse27.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse3.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse30.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse30.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse31.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse32.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse33.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse34.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse35.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse36.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse37.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse37base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse37base.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/parse38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/parse38.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/reducecheck/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/reducecheck/__init__.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/reducecheck/and_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/reducecheck/and_check.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/reducecheck/ifstmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/reducecheck/ifstmt.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/reducecheck/or_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/reducecheck/or_check.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/reducecheck/testtrue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/reducecheck/testtrue.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/reducecheck/tryexcept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/reducecheck/tryexcept.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/parsers/treenode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/parsers/treenode.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanner.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/__init__.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/pypy27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/pypy27.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/pypy32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/pypy32.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/pypy33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/pypy33.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/pypy35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/pypy35.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/pypy36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/pypy36.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner10.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner11.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner12.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner13.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner14.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner15.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner16.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner2.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner21.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner22.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner23.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner24.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner25.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner26.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner27.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner3.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner30.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner30.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner31.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner32.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner33.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner34.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner35.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner36.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner37.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner37base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner37base.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner38.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/scanner39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/scanner39.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/scanners/tok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/scanners/tok.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/aligner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/semantics/aligner.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/check_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/semantics/check_ast.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/semantics/consts.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/customize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/semantics/customize.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/customize25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/semantics/customize25.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/customize26_27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/semantics/customize26_27.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/customize3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/semantics/customize3.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/customize35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/semantics/customize35.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/customize36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/semantics/customize36.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/customize37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/semantics/customize37.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/customize38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/semantics/customize38.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/fragments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/semantics/fragments.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/semantics/helper.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/linemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/semantics/linemap.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/make_function2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/semantics/make_function2.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/make_function3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/semantics/make_function3.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/make_function36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/semantics/make_function36.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/parser_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/semantics/parser_error.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/pysource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/semantics/pysource.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/semantics/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/semantics/transform.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/show.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/util.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/verify.py -------------------------------------------------------------------------------- /Tools/evedec/uncompyle6/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/uncompyle6/version.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/.gitignore: -------------------------------------------------------------------------------- 1 | /.coverage 2 | /.mypy_cache 3 | -------------------------------------------------------------------------------- /Tools/evedec/xdis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/__init__.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/bytecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/bytecode.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/codetype/.gitignore: -------------------------------------------------------------------------------- 1 | /.coverage 2 | /.mypy_cache 3 | -------------------------------------------------------------------------------- /Tools/evedec/xdis/codetype/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/codetype/__init__.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/codetype/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/codetype/base.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/codetype/code13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/codetype/code13.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/codetype/code15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/codetype/code15.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/codetype/code20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/codetype/code20.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/codetype/code30.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/codetype/code30.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/codetype/code38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/codetype/code38.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/cross_dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/cross_dis.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/disasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/disasm.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/dropbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/dropbox/__init__.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/dropbox/decrypt25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/dropbox/decrypt25.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/instruction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/instruction.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/lineoffsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/lineoffsets.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/load.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/magics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/magics.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/marsh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/marsh.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/namedtuple23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/namedtuple23.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/namedtuple24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/namedtuple24.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/op_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/op_imports.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/base.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_10.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_11.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_13.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_14.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_15.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_16.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_20.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_21.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_22.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_23.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_24.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_25.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_26.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_26pypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_26pypy.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_27.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_27pypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_27pypy.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_2x.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_30.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_30.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_31.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_32.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_32pypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_32pypy.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_33.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_33pypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_33pypy.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_34.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_35.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_35pypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_35pypy.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_36.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_36pypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_36pypy.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_37.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_37pypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_37pypy.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_38.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_39.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/opcodes/opcode_3x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/opcodes/opcode_3x.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/std.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/std.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/unmarshal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/unmarshal.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/util.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/verify.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/version.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/version_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/version_info.py -------------------------------------------------------------------------------- /Tools/evedec/xdis/wordcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Almamu/EVESharp/HEAD/Tools/evedec/xdis/wordcode.py -------------------------------------------------------------------------------- /Tools/precalculateSolarSystemJumps/.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | -------------------------------------------------------------------------------- /Tools/precalculateSolarSystemJumps/requirements.txt: -------------------------------------------------------------------------------- 1 | scipy 2 | PyMySQL 3 | --------------------------------------------------------------------------------