,92      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./01 8MonadIO with extra Applicative and Functor superclasses Randomly shuffle items in list GRepeatedy execute action, collecting results, until it returns Nothing _Apply action to elements one at a time until one succeeds. Throw last error if all fail. Throw 2 error if list is empty. |Apply action to elements one at a time until one succeeds. Throw last error if all fail. Throw given error if list is empty 3lift IOE monad to ErrorT monad over some MonadIO m DRun action while catching explicit error and rethrowing in IO monad 2Change or insert value of key in association list bit-or all numbers together =Concat first and second together with period in between. Eg. "hello" <.> "world" = " hello.world" Is field's value a 1 or True (MongoDB use both Int and Bools for truth values). Error if field not in document or field not a Num or Bool. yRead N bytes from hande, blocking until all N bytes are read. If EOF is reached before N bytes then raise EOF exception. aHexadecimal string representation of a byte string. Each byte yields two hexadecimal characters. ,Two char hexadecimal representation of byte     !" !" !" !"#%Thread-safe and pipelined connection 34>Mutex on handle, so only one thread at a time can write to it 5vQueue of threads waiting for responses. Every time a response arrive we pop the next thread and give it the response. 6$*An IO sink and source where value of type o are sent and values of type i are received. %&'()IO monad with explicit error 7IIf first action throws an exception then run second action then re-throw *2Create new Pipeline over given handle. You should + pipeline when finished, which will also close handle. If pipeline is not closed but eventually garbage collected, it will be closed along with handle. +%Close pipe and underlying connection ,8AListen for responses and supply them to waiting threads in order -QSend message to destination; the destination must not response (otherwise future .2s will get these responses instead of their own). 0 Throw IOError and close pipeline if send fails .'Send message to destination and return promise of response from one message only. The destination must reply to the message (otherwise promises will have the wrong responses in them). R Throw IOError and closes pipeline if send fails, likewise for promised response. #$%&'()*+,-. )$%&'(#*-.+, #$%&'(%&'()*+,-.X/0123`For backward compatability: Set when the server supports the AwaitData query option. if it doesn'?t, a replica slave client should sleep a little between getMore's 46Query error. Returned with one document containing an $err" field holding the error message. 5eSet when getMore is called but the cursor id is not valid at the server. Returned with zero results. 6/A reply is a message received in response to a B 7890 = cursor finished :;<=[Get partial results from a _mongos_ if some shards are down, instead of throwing an error. >Use with TailableCursor. If we are at the end of the data, block for a while rather than returning no data. After a timeout period, we do return as normal. = | Exhaust -- ^ Stream the data down full blast in multiple more packages, on the assumption that the client will fully read all data queried. Faster when you are pulling a lot of data and know you want to pull it all down. Note: the client is not allowed to not read all the data unless it closes the connection. ; Exhaust commented out because not compatible with current # implementation ?The server normally times out idle cursors after 10 minutes to prevent a memory leak in case a client forgets to close a cursor. Set this option to allow a cursor to live forever until it is closed. @RAllow query of replica slave. Normally these return an error except for namespace local. AnTailable means cursor is not closed when the last data is retrieved. Rather, the cursor marks the final object'ss position. You can resume using the cursor later, from where it was located, if more data were received. Like any  latent cursor, the cursor may become invalid at some point  for example if the final object it references were deleted. Thus, you should be prepared to requery on CursorNotFound exception. B+A request is a message that is sent with a 76 expected in return CDEFGHIJ-Number of initial matching documents to skip KThe number of document to return in each batch response from the server. 0 means use Mongo default. Negative means close cursor after first batch and use absolute value as batch size. L[]& = return all documents in collection M[] = return whole document NOPIf set, the database will remove only the first matching document in the collection. Otherwise all matching documents will be removed QRsIf set, the database will update all matching objects in the collection. Otherwise only updates first matching doc SjIf set, the database will insert the supplied object into the collection if no matching document is found TUIf set, the database will not stop processing a bulk insert if one fails (eg due to duplicate IDs). This makes bulk insert behave similarly to a series of single inserts, except lastError will be set if any insert fails, not just the last one. (new in 1.9.1) V1A notice is a message that is sent with no reply WXYZ[\]^_`abcde9:2A fresh request id is generated for every message ;fBDatabase name and collection name with period (.) in between. Eg. "myDb.myCollection" <>Message received from a Mongo server in response to a Request =DA write notice(s) with getLastError request, or just query request.  Note, that requestId will be out of order because request ids will be generated for notices after the request id supplied was generated. This is ok because the mongo server does not care about order just uniqueness. g3Thread-safe TCP connection with pipelined requests hCreate pipe over handle i_Send notices as a contiguous batch to server with no reply. Throw IOError if connection fails. jSend notices and request as a contiguous batch to server and return reply promise, which will block when invoked until reply arrives. This call and resulting promise will throw IOError if connection fails. >Write message to socket ?read response from socket @Generate fresh request id APNote, does not write message length (first int32), assumes caller will write it BNNote, does not read message length (first int32), assumes it was already read CDEFGHIJKLMNOPQRkl>/0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijkl>fghijVb]YWcde^_`aZ[\XTUQSROPNBGCHIJKLMDEF<A@?>=6789:;254310/kl>/0125433456789:;789:;<A@?>==>?@AB GCHIJKLMDEFCDEFGHIJKLMNOPPQSRRSTUUVb]YWcde^_`aZ[\XWXYZ[\]^_`abcdefghijklmAA command is a special query or action against the database. See  ,http://www.mongodb.org/display/DOCS/Commands for details. nJResult of running a MapReduce has some stats besides the output. See http:www.mongodb.orgdisplayDOCS/ MapReduce#MapReduce-Resultobject op;Leave old data but combine entries with the same key via MR's reduce function qELeave old data but overwrite entries with the same key with new data r0Clear all old data and replace it with new data stqWrite results to given collection, in other database if specified. Follow merge policy when entry already exists uReturn results directly instead of writing them to an output collection. Results must fit within 16MB limit of a single document v(key, value) -> final_valuep. A finalize function may be run after reduction. Such a function is optional and is not necessary for many map/]reduce cases. The finalize function takes a key and a value, and returns a finalized value. w (key, [value] ) -> value. The reduce function receives a key and an array of values and returns an aggregate result value. The MapReduce engine may invoke reduce functions iteratively; thus, these functions must be idempotent. That is, the following must hold for your reduce function: reduce(k, [reduce(k,vs)]) == reduce(k,vs). If you need to perform an operation only once, use a finalize function. The output of emit (the 2nd param) and reduce should be the same format to make iterative reduce possible. x () -> void+. The map function references the variable thisK to inspect the current object under consideration. The function must call emit(key,value)O at least once, but may be invoked any number of times, as may be appropriate. yMaps every document in collection to a list of (key, value) pairs, then for each unique key reduces all its associated values to a single result. There are additional parameters that may be set to tweak this basic operation.  This implements the latest version of map-reduce that requires MongoDB 1.7.4 or greater. To map-reduce against an older server use runCommand directly as described in http:www.mongodb.orgdisplayDOCS/ MapReduce. z{|}~6Operate on only those documents selected. Default is [] meaning all documents.  Default is [] meaning no sort Default is 0 meaning no limit NOutput to a collection with a certain merge policy. Default is no collection (u). Note, you don'1t want this default if your result set is large. HFunction to apply to all the results when finished. Default is Nothing. 5Variables (environment) that can be accessed from mapreducefinalize. Default is []. <Provide statistics on job execution time. Default is False. !Fields to group by, or function ( doc -> key) returning a  key object to be used as the grouping key. Use KeyF instead of Key to specify a key that is not an existing member of the object (or, to access embedded members). KGroups documents in collection by key then reduces (aggregates) each group Fields to group by (doc, agg) -> (). The reduce function reduces (aggregates) the objects iterated. Typical operations of a reduce function include summing and counting. It takes two arguments, the current document being iterated over and the aggregation value, and updates the aggregate value. agg/. Initial aggregation value supplied to reduce 9Condition that must be true for a row to be considered. [] means always true. agg -> () | result. An optional function to be run on each item in the result set just before the item is returned. Can either modify the item (e.g., add an average field given a count and a total) or return a replacement object (returning a new object with just _id and average fields). &Iterator over results of a query. Use  to iterate or  to get all results. A cursor is closed when it is explicitly closed, all results have been read from it, garbage collected, or not used for over 10 minutes (unless ? option was specified in )). Reading from a closed cursor raises a . Note, a cursor is not closed when the pipe is closed, so you can open another pipe to the same server and continue using the cursor. STCursorId = 0 means cursor is finished. Documents is remaining documents to serve in current batch. Limit is remaining limit for next fetch. UV A promised batch which may fail dThe number of document to return in each batch response from the server. 0 means use Mongo default. <Fields to sort by. Each one is associated with 1 or -1. Eg. ["x" =: 1, "y" =: -1] means sort by x ascending then y descending Maximum number of documents to return, i.e. cursor will close after iterating over this number of documents. 0 means no limit. 9Fields to return, analogous to the select clause in SQL. []6 means return whole document (analogous to * in SQL). ["x" =: 1, "y" =: 1] means return only x and y fields of each document. ["x" =: 0] means return all fields except x. Use M to create a basic query with defaults, then modify if desired. For example, (select sel col) {limit = 10}  Default = [] [] = all fields. Default = [] :Number of initial matching documents to skip. Default = 0 AMaximum number of documents to return, 0 = no limit. Default = 0 Sort results by this order, [] = no sort. Default = [] xIf true assures no duplicates are returned, or objects missed, which were present at both the start and end of the query's execution (even if the object were updated). If an object is new during the query, or deleted during the query, it may or may not be returned, even with snapshot mode. Note that short query responses (less than 1MB) are always effectively snapshotted. Default = False pThe number of document to return in each batch response from the server. 0 means use Mongo default. Default = 0 "Force MongoDB to use this index, [] = no hint. Default = [] WXread from slave ok Yread from master only /Update operations on fields in a document. See  Hhttp://www.mongodb.org/display/DOCS/Updating#Updating-ModifierOperations Z[Receive an acknowledgment after every write, and raise exception if one says the write failed. This is acomplished by sending the getLastError command, with given  parameters, after every write. \hSubmit writes without receiving acknowledgments. Fast. Assumes writes succeed even though they may not.  or n that selects documents in collection that match selector. The choice of type depends on use, for example, in find (select sel col) it is a Query, and in delete (select sel col) it is a Selection. :Filter for a query, analogous to the where clause in SQL. []& matches all documents in collection. ["x" =: a, "y" =: b] is analogous to where x = a and y = b in SQL. See  ,http://www.mongodb.org/display/DOCS/Querying for full selector syntax. 4Selects documents in collection that match selector -Collection name (not prefixed with database) If you stack a monad on top of 0 then make it an instance of this class and use [ to execute a DB Action within it. Instances already exist for the basic mtl transformers. ],Values needed when executing a db operation ^operations query/update this database _operations read/;write to this pipelined TCP connection to a MongoDB server `read/*write operation will use this access mode a1Parameters for getLastError command. For example ["w" =: 2]o tells the server to wait for the write to reach at least two servers in replica set before acknowledging. See  7http://www.mongodb.org/display/DOCS/Last+Error+Commands for more options. $Type of reads and writes to perform MRead-write action, slave not OK, every write is confirmed with getLastError. 5Read-write action, slave not OK, every write is fire & forget. 9Read-only action, reading stale data from a slave is OK. Error code from getLastError eA connection failure, or a read or write exception like cursor expired or inserting a duplicate key. k Note, unexpected data from the server is not a Failure, rather it is a programming error (you should call ba in this case) because the client and server are incompatible and requires a programming change. & found no document matching selection MError observed by getLastError after a write, error description is in string 8Query failed for some reason as described in the string Cursor expired because it wasn't accessed for over 10 minutes, or this cursor came from a different server that the one you are currently connected to (perhaps a fail over happen between servers in a replica set) TCP connection (Pipeline6) failed. May work if you try again on the same Mongo  Connection which will create a new Pipe. bA monad on top of m (which must be a MonadIO) that may access the database and may fail with a DB  cRun action against database on server at other end of pipe. Use access mode for any reads and writes. Return Left on connection failure or read/write failure. Same as  [] Same as  Run action with given  defghBSend notices as a contiguous batch to server with no reply. Throw  if pipe fails. iSend notices and request as a contiguous batch to server and return reply promise, which will block when invoked until reply arrives. This call will throw / if pipe fails on send, and promise will throw  if pipe fails on receive. &List all databases residing on server Current database in use "Run action against given database Authenticate with the current database (if server is running in secure mode). Return whether authentication was successful or not. Reauthentication is required for every new pipe. &List all collections in this database fAdd Javascript predicate to selector, in which case a document must match both selector and predicate j+Send write to server, and if write-mode is Safe- then include getLastError request and raise  if it reports an error. /Insert document into collection and return its "_id"7 value, which is created automatically if not supplied Same as  except don' t return _id 2Insert documents into collection and return their "_id" values, which are created automatically if not supplied. If a document fails to be inserted (eg. due to duplicate key) then remaining docs are aborted, and LastError is set. Same as  except don't return _ids 2Insert documents into collection and return their "_id" values, which are created automatically if not supplied. If a document fails to be inserted (eg. due to duplicate key) then remaining docs are still inserted. LastError is set if any doc fails, not just last one. Same as  except don't return _ids k2Insert documents into collection and return their "_id"9 values, which are created automatically if not supplied l.Assign a unique value to _id field if missing BSave document to collection, meaning insert it if its new (has no "_id") field) or update it if its not new (has "_id" field) 8Replace first document in selection with given document bReplace first document in selection with given document, or insert document if selection is empty 7Update all documents in selection using given modifier mBUpdate first document in selection using updater document, unless R? option is supplied then update all documents in selection. If SX option is supplied then treat updater as document and insert it if selection is empty. "Delete all documents in selection #Delete first document in selection n)Delete all documents in selection unless P> option is given then only delete first document in selection opSelects documents in collection that match selector. It uses no query options, projects all fields, does not skip any documents, does not limit result size, uses default batch size, does not sort, does not hint, and does not snapshot. !Fetch documents satisfying query DFetch first document satisfying query or Nothing if none satisfy it Same as  except throw  if none match ,Return performance stats of query execution HFetch number of documents satisfying query (including effect of skip and/or limit if present) 5Fetch distinct values of field in selected documents q]Translate Query to Protocol.Query. If first arg is true then add special $explain attribute. rBGiven batchSize and limit return P.qBatchSize and remaining limit s3Send notices and request and return promised batch t"Convert Reply to Batch or Failure u7Demand and wait for result, raise failure if exception vCreate new cursor. If you don't read all results then close it. Cursor will be closed automatically when all results are read from it or when eventually garbage collected. QReturn next batch of documents in query result, which will be empty if finished. >Return next document in query result, or Nothing if finished. 2Return next N documents or less if end is reached +Return remaining documents in query result w1Translate Group data into expected document form OExecute group query and return resulting aggregate value for each distinct key x5Translate MapReduce data into expected document form y,Translate MROut into expected document form MapReduce on collection with given map and reduce functions. Remaining attributes are set to their defaults, which are stated in their comments. 8Run MapReduce and return cursor of results. Error if map/)reduce fails (because of bad Javascript) kRun MapReduce and return a MR result document containing stats and the results if Inlined. Error if the map/+reduce failed (because of bad Javascript). 7Run command against the database and return its result  &runCommand1 foo = runCommand [foo =: 1]Run code on server z{& is treated the same as a programming b. In other words, don' t use it. }01<=>?Amnopqrstuvwxyz{|}~}10<A?>=yz{|}~xwvsutorqpnmvmnorqppqrsuttuvwxy z{|}~z{|}~ |uResult of isMaster command on host in replica set. Returned fields are: setName, ismaster, secondary, hosts, [primary]-. primary only present when ismaster = false SMaintains a connection (created on demand) to each server in the named replica set }~ZRun command against admin database on server connected to pipe. Fail if connection fails. Default MongoDB port = 27017 Host on  Display host as " host:port" / TODO: Distinguish Service and UnixSocket port  Read string " hostname:port" as Host hosthame (PortNumber port) or "hostname" as  host hostname> (default port). Fail if string does not match either syntax. * TODO: handle Service and UnixSocket port  Read string " hostname:port" as Host hostname (PortNumber port) or "hostname" as  host hostname? (default port). Error if string does not match either syntax.  (and ) fails if it can'?t connect within this many seconds (default is 6 seconds). Use  'connect\'' (and 'openReplicaSet\'') if you want to ignore this global and specify your own timeout. Note, this timeout only applies to initial connection establishment, not when reading/writing to the connection. nConnect to Host returning pipelined TCP connection. Throw IOError if connection refused or no response within . Connect to Host returning pipelined TCP connection. Throw IOError if connection refused or no response within given number of seconds. name of connected replica set Open connections (on demand) to servers in replica set. Supplied hosts is seed list. At least one of them must be a live member of the named replica set, otherwise fail. The value of m at the time of this call is the timeout used for future member connect attempts. To use your own value call 'openReplicaSet\'' instead. Open connections (on demand) to servers in replica set. Supplied hosts is seed list. At least one of them must be a live member of the named replica set, otherwise fail. Supplied seconds timeout is used for connect attempts to members. %Close all connections to replica set SReturn connection to current primary of replica set. Fail if no primary available. QReturn connection to a random secondary, or primary if no secondaries available. .Primary of replica set or Nothing if there isn't one /Non-arbiter, non-hidden members of replica set BFetch replica info from any server and update members accordingly Return new or existing connection to member of replica set. If pipe is already known for host it is given, but we still test if it is open.  )+,g) g+,:Cache the indexes we create so repeatedly calling ensureIndex only hits database the first time. Clear cache every once in a while so if someone else deletes index we will recreate it on ensureIndex. Create collection with given options. You only need to call this to set options, otherwise a collection is created automatically on first use with no options. -Rename first collection to second collection Delete the given collection! Return True if collection existed (and was deleted); return False if collection did not exist (and no action). This operation takes a while  iSpec of index of ordered keys on collection. Name is generated from keys. Unique and dropDups are False.  -Create index if we did not already create one. May be called repeatedly with practically no performance hit, because we remember if we already called this for the same index (although this memory gets wiped out every 15 minutes, in case another client drops the index and we want to create it again).  ECreate index on the server. This call goes to the server every time.  Remove the index  #Get all indexes on this collection $Drop all indexes on this collection Ainitialize cache and fork thread that clears it every 15 minutes %Get index cache for current database 'reset index cache for current database !Fetch all users of this database cAdd user with password with read-only access if bool is True or read-write access if bool is False "admin" database QCopy database from given host to the server I am connected to. Fails and returns ok = 0 if we don'Mt have permission to read from given server (use copyDatabase in this case). KCopy database from given host to the server I am connected to. If username &8 password is supplied use them to read from given host. Delete the given database! BAttempt to fix any corrupt records. This operation takes a while.  !8See currently running operation on the database, if any "#.      !"#.      !"#.      !"#  )+,01<=>?Agmnopqrstuvwxyz{|}~      !"#$cPool of maximum N resources. Resources may expire on their own or be killed. Resources will initially be created on demand up N resources then recycled in random fashion. N may be changed by resizing the pool. Random is preferred to round-robin to distribute effect of pathological use cases that use every Xth resource the most and N is a multiple of X.  Resources *must* close/(kill themselves when garbage collected (0 relies on this). %&'([Creator, destroyer, and checker of resources of type r. Creator may throw error or type e. )*+,-8Create new pool of initial max size, which must be >= 1 .VReturn a random live resource in pool or create new one if expired or not yet created /current max size of pool 0resize max size of pool. When shrinking some resource will be dropped without closing since they may still be in use. They are expected to close themselves when garbage collected. 1AKill all resources in pool so subsequent access creates new ones $%&'()*+,-./01()*+,-$%&'./01$%&'%&'()*+,)*+,-./01   !"#$%&'()*+,-./01234456789:;<=>?@ABCDEEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuv<=wxyz{|}~UU      !"#$%&'())*+,,-./01234 563789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVVWXYZ[\]^^_`a bcdefg<=hijklmnopqrstuvwx yz{|}~ mongoDB-1.0.2Control.Monad.MVarDatabase.MongoDB.ConnectionDatabase.MongoDB.Internal.UtilSystem.IO.Pipeline"Database.MongoDB.Internal.ProtocolDatabase.MongoDB.QueryDatabase.MongoDB.AdminSystem.IO.PoolDatabase.MongoDBbaseGHC.MVarMVartransformers-0.2.2.0Control.Monad.IO.ClassliftIOnetwork-2.3.0.7NetworkService PortNumber UnixSocketPortIDMonadIO'shuffleloop untilSuccess untilSuccess'whenJustliftIOErunIOE updateAssocsbitOr<.>true1hGetN byteStringHexbyteHex MonadMVar modifyMVaraddMVarFinalizer newEmptyMVarnewMVartakeMVarputMVarreadMVarswapMVar tryTakeMVar tryPutMVar isEmptyMVar modifyMVar_withMVarPipelineIOStream writeStream readStream closeStreamIOE newPipelinecloseisClosedsendcallNoncePasswordUsername ResponseFlag AwaitCapable QueryErrorCursorNotFoundReplyrResponseFlags rCursorId rStartingFrom rDocuments QueryOptionPartial AwaitDataNoCursorTimeoutSlaveOKTailableCursorRequestGetMoregFullCollection gBatchSize gCursorIdQueryqOptionsqFullCollectionqSkip qBatchSize qSelector qProjectorCursorId DeleteOption SingleRemove UpdateOption MultiUpdateUpsert InsertOption KeepGoingNotice KillCursors kCursorIdsDeletedFullCollectiondOptions dSelectorUpdateuFullCollectionuOptions uSelectoruUpdaterInsertiFullCollectioniOptions iDocumentsFullCollectionPipenewPipepwHashpwKeyCommandMRResultMRMergeReduceMergeReplaceMROutOutputInline FinalizeFun ReduceFunMapFun MapReducerCollrMaprReducerSelectrSortrLimitrOut rFinalizerScoperVerboseGroupKeyKeyFKeyGroupgCollgKeygReducegInitialgCond gFinalizeCursor BatchSizeOrderLimit Projectoroptions selectionprojectskiplimitsortsnapshot batchSizehintModifierSelectselectSelector Selectionselectorcoll CollectionDatabaseMonadDB BaseMonadliftDB GetLastError AccessMode ConfirmWritesUnconfirmedWrites ReadStaleOk ErrorCodeFailure DocNotFound WriteFailure QueryFailureCursorNotFoundFailureConnectionFailureActionaccessmasterslaveOk accessMode allDatabases thisDatabaseuseDbauthallCollectionswhereJSinsertinsert_ insertMany insertMany_ insertAll insertAll_savereplacerepsertmodifydelete deleteOnefindfindOnefetchexplaincountdistinct nextBatchnextnextNrest closeCursorisCursorClosedgroup mapReducerunMRrunMR' runCommand runCommand1eval ReplicaSetReplicaSetNameSecsHost defaultPorthost showHostPort readHostPortM readHostPortglobalConnectTimeoutconnectconnect' replSetNameopenReplicaSetopenReplicaSet'closeReplicaSetprimary secondaryOkOpNumMilliSecProfilingLevelIndexiColliKeyiNameiUnique iDropDups IndexNameCollectionOptionMaxItems MaxByteSizeCappedcreateCollectionrenameCollectiondropCollectionvalidateCollectionindex ensureIndex createIndex dropIndex getIndexes dropIndexesallUsersaddUser removeUseradmin cloneDatabase copyDatabase dropDatabaserepairDatabaseserverBuildInfo serverVersioncollectionStatsdataSize storageSizetotalIndexSize totalSizegetProfilingLevelsetProfilingLeveldbStats currentOpkillOp serverStatusPoolfactory resourcesFactory newResource killResource isExpirednewPool aResourcepoolSizeresizekillAllControl.Monad.Trans.ErrorstrMsgvStream responseQueue listenThread onExceptionlisten ResponseTo RequestIdOpcodeResponseMessage writeMessage readMessage genRequestId putHeader getHeadernOpcode putNoticeiBitiBitsuBituBitsdBitdBitsqOpcode putRequestqBitqBits replyOpcodegetReplyrFlagsrBitBatch DelayedBatchReadModeStaleOkFresh WriteModeConfirm NoConfirmContextmyPipe myAccessMode myDatabaseGHC.ErrerrorreadMode writeMode myReadMode myWriteModewriteinsert'assignIdupdatedelete'readModeOptionquery queryRequestbatchSizeRemainingLimitrequest fromReplyfulfill newCursor groupDocument mrDocumentmrOutDoc$fErrorFailureGHC.Basefail ReplicaInfo adminCommand statedPrimary possibleHosts updateMembersfetchReplicaInfo connectionAllSlowOff IndexCache DbIndexCachecoptElem idxDocumentgenName dbIndexCacheclearDbIndexCachefetchIndexCacheresetIndexCachecompact-string-fix-0.3.2Data.CompactString.UTF8unpack bson-0.1.6 Data.Bson genObjectId timestamp typeOfValtypedcastfval=?=:mergeexcludeincludeatvalueAtlookuplookDocumentvaluelabel:=FieldLabelFloatStringDocArrayBinFunUuidMd5UserDefObjIdBoolUTCNullRegExJavaScrSymInt32Int64StampMinMaxValuecast'valValBinaryFunctionUUIDMD5 UserDefinedRegex JavascriptSymbol MongoStampMinKeyMaxKey MinMaxKeyOidObjectId Data.UStringuUString